:root {
  --bg: #0f0b23;
  --bg-alt: #171133;
  --bg-accent-2: #1f1646;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.07);
  --card-border: rgba(255, 255, 255, 0.12);
  --card-border-strong: rgba(255, 255, 255, 0.2);
  --text: #f5f6fb;
  --muted: rgba(245, 246, 251, 0.74);
  --accent: #9e59ff;
  --accent-strong: #8b49f1;
  --shadow-soft: 0 8px 24px rgba(5, 3, 16, 0.35);
  --shadow-strong: 0 18px 48px rgba(5, 3, 16, 0.45);
  --radius: 14px;
  --radius-sm: 10px;
  --container: min(1100px, 94vw);
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  z-index: 200;
  padding: 0.65rem 1.1rem;
  background: linear-gradient(135deg, var(--accent) 0%, #7f45e8 100%);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 0% 0%, rgba(158, 89, 255, 0.2), transparent 52%),
    radial-gradient(700px 420px at 100% 8%, rgba(69, 153, 255, 0.16), transparent 58%),
    radial-gradient(760px 500px at 50% 100%, rgba(158, 89, 255, 0.12), transparent 64%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  font: 400 16px/1.65 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-strong);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* Blur lives on .site-header-backdrop only so .site-nav is not under a filtered
   ancestor — WebKit uses that as the containing block for position:fixed and
   pins the mobile sheet to the wrong place. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
}

.site-header-backdrop {
  grid-column: 1;
  grid-row: 1;
  min-height: 72px;
  align-self: stretch;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(22, 16, 48, 0.9), rgba(15, 11, 35, 0.84));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header-main {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  position: relative;
  z-index: 1;
}

.nav-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font: 700 1.16rem/1.2 Outfit, Inter, sans-serif;
  letter-spacing: 0.01em;
  color: var(--text);
}

.brand-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(158, 89, 255, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(158, 89, 255, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(158, 89, 255, 0); }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 500;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  text-shadow: 0 0 18px rgba(158, 89, 255, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 0.72rem 1.06rem;
  border: 1px solid transparent;
  font-size: 0.93rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-nav,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #7f45e8 100%);
  box-shadow: 0 10px 28px rgba(158, 89, 255, 0.36);
}

.btn-nav:hover,
.btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #ae70ff 0%, var(--accent-strong) 100%);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(158, 89, 255, 0.45);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--card-border);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--card-border-strong);
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: 0.2s ease;
}

body.nav-open .menu-btn span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-btn span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-btn span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 5.2rem 0 3.2rem;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.hero-signal {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-orbit {
  position: absolute;
  right: -130px;
  top: -110px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(158, 89, 255, 0.28), rgba(158, 89, 255, 0.08) 45%, rgba(158, 89, 255, 0) 72%);
  filter: blur(6px);
  animation: orbit-shift 8.5s ease-in-out infinite;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  width: 100%;
  height: 220px;
  opacity: 0.72;
}

.hero-wave-base,
.hero-wave-glow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-wave-base {
  stroke: rgba(171, 125, 255, 0.34);
  stroke-width: 2.2;
}

.hero-wave-glow {
  stroke: rgba(187, 149, 255, 0.95);
  stroke-width: 3.4;
  filter: drop-shadow(0 0 14px rgba(158, 89, 255, 0.62));
  stroke-dasharray: 28 220;
  stroke-dashoffset: 0;
  animation: wave-run 4.2s linear infinite;
}

@keyframes wave-run {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -248;
  }
}

@keyframes orbit-shift {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translateY(14px) scale(1.03);
    opacity: 0.9;
  }
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Outfit, Inter, sans-serif;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2rem, 4.7vw, 3.3rem);
  letter-spacing: -0.02em;
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.45rem, 3.3vw, 2.15rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1rem;
}

.hero-copy,
.section-copy,
.micro {
  color: var(--muted);
}

.hero-copy {
  margin: 1rem 0 1.2rem;
  max-width: 58ch;
}

.micro {
  margin: 0.8rem 0 0;
  font-size: 0.87rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--card-border-strong);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-panel h2 {
  font-size: 1.08rem;
  margin: 0;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #86efac;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86efac;
  animation: pulse-dot 2s ease-in-out infinite;
}

.panel-sub {
  margin: 0.35rem 0 0.7rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.live-waits {
  border-top: 1px solid var(--card-border);
  padding-top: 0.7rem;
}

.waits-loading,
.waits-error {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.waits-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.45rem 0.15rem;
  font-size: 0.88rem;
  border-radius: 8px;
}

.waits-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.waits-row .value {
  color: var(--accent);
  font-weight: 600;
}

/* Scroll-in animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-1 { transition-delay: 0.05s; }
.reveal.reveal-2 { transition-delay: 0.1s; }
.reveal.reveal-3 { transition-delay: 0.15s; }
.reveal.reveal-4 { transition-delay: 0.2s; }
.reveal.reveal-5 { transition-delay: 0.25s; }
.reveal.reveal-6 { transition-delay: 0.3s; }

.trust {
  padding: 0 0 0.6rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.trust-grid article:hover {
  transform: translateY(-2px);
  border-color: var(--card-border-strong);
  box-shadow: var(--shadow-strong);
}

.trust-grid p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.section .container > .eyebrow,
.section .container > h2,
.section .container > .section-copy,
.section .container > .cards,
.section .container > .pricing,
.section .container > .faq,
.section .container > .hero-actions {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.section.revealed .container > .eyebrow { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.section.revealed .container > h2 { transition-delay: 0.06s; opacity: 1; transform: translateY(0); }
.section.revealed .container > .section-copy { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.section.revealed .container > .cards,
.section.revealed .container > .pricing,
.section.revealed .container > .faq { transition-delay: 0.14s; opacity: 1; transform: translateY(0); }
.section.revealed .container > .hero-actions { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }

.steps {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.section-alt.revealed .steps {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.section {
  padding: 3.6rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.section-copy {
  margin: 0.65rem 0 1.25rem;
  max-width: 66ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-strong);
  box-shadow: var(--shadow-strong);
}

.card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.steps {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.steps li {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.steps li:hover {
  transform: translateY(-2px);
  border-color: var(--card-border-strong);
}

.steps span {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.steps p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.price {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.price:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-strong);
  box-shadow: var(--shadow-strong);
}

.price.featured {
  border-color: rgba(158, 89, 255, 0.58);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(174, 112, 255, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(158, 89, 255, 0.2), rgba(158, 89, 255, 0.06));
}

.price-value {
  margin: 0.35rem 0 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: Outfit, Inter, sans-serif;
}

.price ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.price li + li {
  margin-top: 0.3rem;
}

.faq {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.faq-details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.faq-details:hover {
  border-color: var(--card-border-strong);
}

.faq-details[open] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border-color: var(--card-border-strong);
}

.faq-details summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 2.5rem 1rem 1rem;
  font-family: Outfit, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  position: relative;
}

.faq-details summary::-webkit-details-marker {
  display: none;
}

.faq-details summary::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-details[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}

.faq-details summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius-sm);
}

.faq-details .faq-answer {
  padding: 0 1rem 1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-disclaimer {
  margin-top: 0.75rem !important;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem !important;
  line-height: 1.55;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
}

.legal-page h2 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.legal-list li + li {
  margin-top: 0.45rem;
}

.live-waits.is-refreshing {
  opacity: 0.72;
  transition: opacity 0.25s ease;
}

.cta {
  text-align: center;
}

.cta .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.cta .hero-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--card-border);
  padding: 2.2rem 0;
  background: linear-gradient(180deg, rgba(13, 10, 30, 0.4), rgba(13, 10, 30, 0.7));
}

.site-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font: 700 1.05rem/1.2 Outfit, Inter, sans-serif;
  color: var(--text);
}

.footer-grid p {
  margin: 0;
}

.footer-grid p:last-child {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
  max-width: 74ch;
}

/* Forms */
.form-input {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.72rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
}

.form-input:focus {
  outline: none;
  border-color: rgba(158, 89, 255, 0.66);
  box-shadow: 0 0 0 2px rgba(158, 89, 255, 0.2);
}

.form-input::placeholder {
  color: var(--muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23f5f6fb' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 2rem;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-status {
  margin-top: 1rem;
  padding: 0.72rem 0.82rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.form-status--success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}

.form-status--error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

@media (max-width: 980px) {
  .hero-grid,
  .cards,
  .steps,
  .pricing {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-btn {
    display: inline-flex;
  }

  /* Full-width bottom sheet — edge-to-edge with safe areas, reads as one surface */
  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    max-height: min(72vh, 560px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* Off-screen: own height + small gap (keeps iOS transform stable) */
    transform: translateY(calc(100% + 24px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.28s ease, visibility 0.28s;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px 22px 0 0;
    /* No backdrop-filter here — WebKit often blurs the sheet’s own text/icons. */
    background: linear-gradient(180deg, #1e1838 0%, #14102a 38%, #0f0b23 100%);
    padding: 0.5rem max(1.25rem, env(safe-area-inset-right, 0px)) max(1rem, calc(0.65rem + env(safe-area-inset-bottom, 0px))) max(1.25rem, env(safe-area-inset-left, 0px));
    z-index: 80;
    box-sizing: border-box;
    box-shadow: 0 -16px 48px rgba(5, 3, 16, 0.55), 0 -1px 0 rgba(158, 89, 255, 0.12);
  }

  /* Decorative sheet handle */
  .site-nav::before {
    content: "";
    display: block;
    width: 40px;
    height: 5px;
    margin: 0.35rem auto 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    border: none;
    border-radius: 0;
    background: transparent;
    /* Align with sheet padding — no extra horizontal inset */
    padding: 0.7rem 0;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.15s ease, opacity 0.15s ease;
  }

  .site-nav a:not(.btn-nav):active {
    opacity: 0.85;
  }

  .site-nav .btn-nav {
    margin-top: 0.75rem;
    padding: 0.85rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent) 0%, #7f45e8 100%);
    box-shadow: 0 8px 24px rgba(158, 89, 255, 0.35);
    color: #fff;
    font-weight: 600;
  }

  .site-nav .btn-nav:hover {
    color: #fff;
  }

  body.nav-open {
    overflow: hidden;
  }

  /* Below .site-header (50): sheet lives inside header’s stacking context, so overlay
     must not sit above 50 or it captures all taps and nav links never receive clicks. */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    /* Solid scrim only — backdrop blur on overlay blurs the header/page oddly on iOS */
    background: rgba(5, 3, 16, 0.72);
    z-index: 40;
  }

  body.nav-open .nav-overlay {
    display: block;
  }

  .hero {
    padding-top: 4.1rem;
  }

  .hero-orbit {
    right: -190px;
    top: -170px;
    width: 380px;
    height: 380px;
  }

  .hero-wave {
    height: 170px;
    opacity: 0.55;
  }

  h1 {
    font-size: clamp(1.75rem, 8.7vw, 2.5rem);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal.revealed {
    opacity: 1 !important;
    transform: none !important;
  }

  .section .container > .eyebrow,
  .section .container > h2,
  .section .container > .section-copy,
  .section .container > .cards,
  .section .container > .pricing,
  .section .container > .faq,
  .section .container > .hero-actions,
  .section-alt .steps {
    opacity: 1 !important;
    transform: none !important;
  }

  .faq-details summary::after {
    transition: none;
  }
}
