@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Secular+One&display=swap");

:root {
  --gm-background: #000000;
  --gm-surface: #111117;
  --gm-surface-strong: #191923;
  --gm-text-primary: #ffffff;
  --gm-text-secondary: #d5d6df;
  --gm-accent-blue: #268aef;
  --gm-accent-pink: #ff34a2;
  --gm-accent-purple: #625fea;
  --gm-focus-ring: #ff34a2;
  --gm-border: rgb(255 255 255 / 16%);
  --gm-border-glow: rgb(38 138 239 / 45%);
  --font-heading: "Secular One", sans-serif;
  --font-body: "Roboto", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: clamp(1rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at 12% 8%, rgb(98 95 234 / 24%) 0%, transparent 38%),
    radial-gradient(circle at 88% 15%, rgb(255 52 162 / 18%) 0%, transparent 32%),
    linear-gradient(160deg, #000000 0%, #08080d 55%, #0d1020 100%);
  color: var(--gm-text-primary);
  font-family: var(--font-body);
}

.page-container {
  width: min(100%, 58rem);
  margin: 0 auto;
  display: grid;
  gap: clamp(1rem, 2.8vw, 1.75rem);
}

.brand-header {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.logo-primary {
  width: clamp(9.5rem, 26vw, 13rem);
  height: auto;
}

.logo-tagline {
  width: clamp(9.25rem, 24vw, 12rem);
  height: auto;
  opacity: 0.92;
}

.message-panel {
  width: min(100%, 58rem);
  display: grid;
  justify-items: start;
  gap: clamp(0.8rem, 2.2vw, 1.15rem);
  padding: clamp(1.4rem, 5vw, 2.4rem);
  text-align: left;
  border: 1px solid var(--gm-border);
  border-radius: 1.5rem;
  background:
    linear-gradient(120deg, rgb(255 255 255 / 2%) 0%, rgb(255 255 255 / 5%) 100%),
    linear-gradient(175deg, var(--gm-surface-strong) 0%, var(--gm-surface) 100%);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 2%),
    0 20px 56px rgb(0 0 0 / 45%),
    0 0 28px rgb(38 138 239 / 10%);
}

.eyebrow {
  margin: 0;
  color: var(--gm-accent-pink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.headline {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  font-weight: 500;
  line-height: 1.12;
}

.copy-stack {
  display: grid;
  gap: 0.95rem;
}

.support-text {
  margin: 0;
  color: var(--gm-text-secondary);
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.inline-link {
  color: var(--gm-accent-blue);
  font-weight: 700;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.destination {
  color: var(--gm-accent-blue);
  font-weight: 700;
}

.faq-panel {
  width: min(100%, 58rem);
  display: grid;
  gap: 0.5rem;
  padding: clamp(1.2rem, 4vw, 2.2rem) 0 0;
}

.section-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2rem, 6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.qa-list {
  display: grid;
  border-top: 1px solid rgb(255 255 255 / 70%);
  border-bottom: 1px solid rgb(255 255 255 / 70%);
}

.qa-item {
  border-top: 1px solid rgb(255 255 255 / 32%);
}

.qa-item:first-child {
  border-top: 0;
}

.qa-item[open] {
  background: rgb(255 255 255 / 2%);
}

.qa-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  font-size: clamp(1.05rem, 2.3vw, 1.375rem);
  line-height: 1.35;
  font-weight: 400;
  color: var(--gm-text-primary);
  user-select: none;
}

.qa-question::-webkit-details-marker {
  display: none;
}

.qa-question::after {
  content: "+";
  flex-shrink: 0;
  color: var(--gm-accent-pink);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 700;
}

.qa-item[open] > .qa-question::after {
  content: "\2212";
}

.qa-question:focus-visible {
  outline: 2px solid var(--gm-focus-ring);
  outline-offset: 2px;
}

.qa-answer {
  margin: 0;
  padding: 0 2.2rem 1.25rem 0;
  color: var(--gm-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.02rem);
  line-height: 1.62;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
  padding: 0.4rem 1.8rem;
  border: 2px solid transparent;
  border-radius: 35px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.cta-primary:hover {
  border-color: var(--gm-border-glow);
  background-color: #151527;
  box-shadow: 0 8px 24px rgb(38 138 239 / 28%);
}

.cta-primary:focus-visible {
  outline: 3px solid var(--gm-focus-ring);
  outline-offset: 3px;
}

.cta-primary:active {
  transform: translateY(1px);
}

.brand-footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  opacity: 0.92;
}

.footer-label {
  color: var(--gm-text-secondary);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-parent {
  width: clamp(7rem, 20vw, 10rem);
  height: auto;
}

@media (max-width: 32rem) {
  .page-container {
    gap: 0.9rem;
  }

  .message-panel,
  .faq-panel {
    border-radius: 1.15rem;
  }

  .faq-panel {
    border-radius: 0;
  }

  .qa-question {
    font-size: 1.05rem;
    padding: 1rem 0;
  }

  .qa-answer {
    padding: 0 1.6rem 1rem 0;
  }

  .cta-primary {
    width: 100%;
  }

  .brand-footer {
    flex-direction: column;
    gap: 0.4rem;
  }
}
