:root {
  --bg: #08090e;
  --bg-warm: #0c0e17;
  --ink: #f0eeeb;
  --muted: #9a968f;
  --warm: #c8bfb0;
  --teal: #2afadf;
  --magenta: #ff4fd8;
  --card: rgba(16, 18, 28, 0.9);
  --border: rgba(255, 255, 255, 0.07);
  --border-warm: rgba(200, 191, 176, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ AMBIENT BACKGROUND ============ */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.ambient .orb-1 {
  top: -15%;
  right: -8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255,79,216,0.07), transparent 70%);
  animation: drift-1 14s ease-in-out infinite alternate;
}
.ambient .orb-2 {
  top: 25%;
  left: -12%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(42,250,223,0.05), transparent 70%);
  animation: drift-2 11s ease-in-out infinite alternate-reverse;
}
.ambient .orb-3 {
  bottom: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42,250,223,0.03), transparent 70%);
  animation: drift-1 16s ease-in-out infinite alternate-reverse;
}
@keyframes drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(25px, -18px) scale(1.04); }
}
@keyframes drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-20px, 15px) scale(1.03); }
}

/* ============ NAV ============ */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 9, 14, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.nav-logo span {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--teal), var(--magenta));
  color: #0a0d16;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(42, 250, 223, 0.25);
}
.nav-download svg {
  width: 14px;
  height: 14px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: border-color 0.2s ease;
}
.hamburger:hover {
  border-color: rgba(255,255,255,0.15);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -2px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(8, 9, 14, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.6rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a:hover {
  color: var(--teal);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 72px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.15s forwards;
}

.hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.6rem, 7.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal) 20%, var(--magenta) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--warm);
  max-width: 500px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.45s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  background: linear-gradient(135deg, var(--teal), var(--magenta));
  color: #0a0d16;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 6px 24px rgba(42, 250, 223, 0.18),
    0 3px 12px rgba(255, 79, 216, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 36px rgba(42, 250, 223, 0.28),
    0 5px 16px rgba(255, 79, 216, 0.18);
}
.hero-cta svg {
  width: 18px;
  height: 18px;
}

.hero-meta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.75s forwards;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.5;
}

/* ============ SECTION BASE ============ */
section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  max-width: 880px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--warm);
  max-width: 520px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ EXAMPLE QUESTION CARD ============ */
.question-section {
  text-align: center;
}
.question-section .section-desc {
  margin: 0 auto;
}

.question-card {
  position: relative;
  max-width: 400px;
  margin: 48px auto 0;
  background: linear-gradient(155deg, rgba(22, 26, 44, 0.95), rgba(12, 14, 24, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 44px 32px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.45),
    0 0 0 1px rgba(42, 250, 223, 0.04);
  overflow: hidden;
}
.question-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
}

.question-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  padding: 5px 14px;
  border: 1px solid rgba(42, 250, 223, 0.18);
  border-radius: 999px;
}

.question-text {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.38;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.question-hint {
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ============ SITUATIONS ============ */
.situations-section {
  text-align: center;
}

.situations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.situation {
  background: rgba(16, 18, 28, 0.65);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 22px;
  text-align: center;
  transition: all 0.35s ease;
}
.situation:hover {
  border-color: rgba(42, 250, 223, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.situation-emoji {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.situation-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.situation-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ============ PRICING ============ */
.pricing-section {
  text-align: center;
}
.pricing-section .section-desc {
  margin: 0 auto;
}

.price-box {
  max-width: 460px;
  margin: 48px auto 0;
  background: linear-gradient(155deg, rgba(22, 26, 44, 0.92), rgba(12, 14, 24, 0.98));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
}

.price-free {
  font-size: 0.95rem;
  color: var(--warm);
  margin-bottom: 6px;
}

.price-main {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.price-main span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}

.price-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 30px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.price-features li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--warm);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-features li:last-child {
  border-bottom: none;
}
.price-features .check {
  color: var(--teal);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.price-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--teal), var(--magenta));
  color: #0a0d16;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(42, 250, 223, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  justify-content: center;
}
.price-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(42, 250, 223, 0.28);
}
.price-cta svg {
  width: 18px;
  height: 18px;
}

/* ============ FOOTER ============ */
footer {
  position: relative;
  z-index: 1;
  padding: 64px 24px 40px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--warm);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.footer-socials a:hover {
  border-color: rgba(42, 250, 223, 0.25);
  color: var(--ink);
}
.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--ink);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(8, 9, 14, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background: linear-gradient(135deg, var(--teal), var(--magenta));
  color: #0a0d16;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 14px;
  text-decoration: none;
}
.sticky-cta a svg {
  width: 17px;
  height: 17px;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 700px) {
  .hamburger {
    display: flex;
  }
  .nav-download {
    display: none;
  }

  .hero {
    padding: 100px 20px 56px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .hero-sub {
    font-size: 1rem;
  }

  section {
    padding: 72px 20px;
  }

  .situations {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .situation {
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .situation-emoji {
    margin-bottom: 0;
    font-size: 1.7rem;
    flex-shrink: 0;
  }
  .situation-text { flex: 1; }
  .situation-title { font-size: 1.1rem; }

  .question-card {
    padding: 32px 22px;
    margin-top: 36px;
  }
  .question-text {
    font-size: 1.3rem;
  }

  .price-box {
    padding: 32px 22px;
  }
  .price-main {
    font-size: 2.8rem;
  }

  .sticky-cta {
    display: block;
  }
  footer {
    padding-bottom: 100px;
  }

  .footer-socials {
    gap: 8px;
  }
  .footer-socials a {
    padding: 9px 14px;
    font-size: 0.8rem;
  }
}

@media (min-width: 701px) {
  .hamburger { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
