:root {
  color-scheme: dark;
  --night-sky: #07090e;
  --night-surface: #12161f;
  --night-card: #1a2030;
  --night-elevated: #222a3c;
  --aurora: #8ba4ff;
  --aurora-dim: #5e73c7;
  --amber: #e4b86a;
  --teal: #5fcbb8;
  --text-primary: #f3f5fa;
  --text-secondary: #b4bccc;
  --text-muted: #7d8699;
  --max-width: 1160px;
  --radius: 22px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--night-sky);
  color: var(--text-primary);
  line-height: 1.6;
  padding-bottom: 84px;
}

.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(139, 164, 255, 0.22), transparent 32%),
    radial-gradient(circle at 82% 4%, rgba(228, 184, 106, 0.12), transparent 26%),
    radial-gradient(circle at 70% 70%, rgba(95, 203, 184, 0.08), transparent 30%),
    linear-gradient(180deg, #0b1020 0%, #07090e 42%, #081214 100%);
}

a {
  color: var(--aurora);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 9, 14, 0.72);
  border-bottom: 1px solid rgba(139, 164, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--aurora), var(--teal));
  display: grid;
  place-items: center;
  color: var(--night-sky);
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
}

.nav a:hover {
  color: var(--text-primary);
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(139, 164, 255, 0.12);
  color: var(--aurora);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
.hero h1 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.hero-lead,
.section-heading p,
.story-card p,
.pain-card p,
.pricing-card p,
.step-card p,
.faq-list p {
  color: var(--text-secondary);
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 52ch;
  margin: 0;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.trust-row {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.trust-row li {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.trust-row li::before {
  content: "●";
  color: var(--teal);
  margin-right: 8px;
  font-size: 0.6rem;
}

.button {
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 16px;
  padding: 14px 22px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.button-primary {
  background: linear-gradient(135deg, #c9d4ff, var(--aurora));
  color: #10131c;
  box-shadow: 0 14px 36px rgba(139, 164, 255, 0.28);
}

.button-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(139, 164, 255, 0.28);
}

.button-compact {
  padding: 10px 16px;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.phone {
  width: min(320px, 100%);
  margin-left: auto;
}

.phone-bezel {
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(180deg, #343c52, #151922);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.phone-notch {
  width: 96px;
  height: 18px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #07090e;
}

.phone-screen {
  border-radius: 26px;
  min-height: 520px;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, #101522, #07090e);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-header {
  text-align: center;
}

.mock-header p {
  margin: 0;
  font-weight: 600;
}

.mock-header span,
.mock-status,
.mock-card small {
  color: var(--amber);
  font-size: 0.75rem;
}

.mock-status {
  margin: 0;
  text-align: center;
  color: var(--text-secondary);
}

.mock-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mock-chips span,
.mock-card {
  background: var(--night-card);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.mock-chips .on,
.mock-card.on {
  background: rgba(139, 164, 255, 0.18);
  color: var(--text-primary);
}

.mock-card {
  border-radius: 18px;
  padding: 12px;
}

.mock-card div:first-child {
  display: flex;
  justify-content: space-between;
}

.mock-bar {
  height: 5px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--aurora);
}

.mock-dock {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-radius: 16px;
  background: rgba(34, 42, 60, 0.9);
  font-size: 0.8rem;
}

.glow-card {
  position: absolute;
  left: 0;
  bottom: 36px;
  width: min(230px, 70%);
  padding: 16px;
  border-radius: 18px;
  background: rgba(18, 22, 31, 0.88);
  border: 1px solid rgba(228, 184, 106, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.glow-card p {
  margin: 6px 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.section {
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 32px;
  max-width: 720px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pain-grid,
.story-grid,
.sound-board,
.pricing-grid,
.steps-grid {
  display: grid;
  gap: 16px;
}

.pain-grid,
.story-grid,
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pain-card,
.story-card,
.sound-tile,
.pricing-card,
.step-card,
.success-card {
  background: rgba(26, 32, 48, 0.78);
  border: 1px solid rgba(139, 164, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
}

.pain-card h3,
.story-card h3,
.sound-tile h3,
.pricing-card h3,
.step-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
}

.story-card span,
.sound-tile small,
.badge {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sound-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sound-tile.pro {
  background: linear-gradient(180deg, rgba(139, 164, 255, 0.14), rgba(26, 32, 48, 0.86));
}

.pricing-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}

.pricing-card.highlight {
  background: linear-gradient(180deg, rgba(139, 164, 255, 0.2), rgba(18, 22, 31, 0.94));
  border-color: rgba(139, 164, 255, 0.32);
  box-shadow: 0 20px 60px rgba(8, 10, 18, 0.45);
}

.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  margin: 8px 0 0;
}

.price.muted {
  color: var(--text-secondary);
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-note {
  color: var(--text-muted);
  margin-top: 4px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.fine-print {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(139, 164, 255, 0.16);
  color: var(--aurora);
  font-weight: 700;
  margin-bottom: 14px;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.faq-list details {
  border-bottom: 1px solid rgba(139, 164, 255, 0.12);
  padding: 16px 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 10px 0 0;
}

.final-cta {
  padding: 0 0 72px;
}

.final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(139, 164, 255, 0.18), rgba(95, 203, 184, 0.08));
  border: 1px solid rgba(139, 164, 255, 0.2);
}

.final-cta h2,
.final-cta p {
  margin: 8px 0 0;
}

.site-footer {
  border-top: 1px solid rgba(139, 164, 255, 0.1);
  padding: 28px 0 40px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(7, 9, 14, 0.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(139, 164, 255, 0.12);
}

.mobile-cta .button {
  width: 100%;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.success-card {
  width: min(560px, calc(100% - 40px));
  text-align: center;
}

.success-card h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
}

.license-box {
  margin: 24px 0;
  padding: 18px;
  border-radius: 16px;
  background: rgba(7, 9, 14, 0.85);
  border: 1px dashed rgba(228, 184, 106, 0.45);
  font-family: Consolas, "Courier New", monospace;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--amber);
  word-break: break-all;
}

.hidden {
  display: none !important;
}

.status-text {
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .hero-grid,
  .pain-grid,
  .story-grid,
  .sound-board,
  .pricing-grid,
  .steps-grid,
  .faq-wrap,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .nav,
  .header-inner .button-compact {
    display: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .phone {
    margin: 0 auto;
  }

  .glow-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .mobile-cta {
    display: block;
  }

  .final-cta-inner {
    display: block;
  }

  .final-cta .button {
    width: 100%;
    margin-top: 18px;
  }
}
