:root {
  --bg: #07090e;
  --bg-2: #0b0e15;
  --panel: #10141d;
  --ink: #f2f0ea;
  --ink-dim: rgba(242, 240, 234, 0.62);
  --gold: #c9a44c;
  --gold-soft: rgba(201, 164, 76, 0.16);
  --line: rgba(201, 164, 76, 0.22);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}

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

html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #0a0c10; }

/* ---------- Fixed nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 34px;
  background: linear-gradient(180deg, rgba(7,9,14,0.85), rgba(7,9,14,0));
  backdrop-filter: blur(6px);
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--gold); color: #0a0c10; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  background: rgba(5, 6, 10, 0.97);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu > a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.5rem;
}
.mobile-menu > a:not(.btn):hover { color: var(--gold); }

/* ---------- Scrub sections ---------- */
.scrub { position: relative; }
.scrub .sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh; /* stable on iOS/Android when the browser bar collapses */
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}
.scrub canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.scrub .vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 40%, rgba(4,5,9,0.72) 100%),
    linear-gradient(180deg, rgba(4,5,9,0.55) 0%, transparent 26%, transparent 68%, rgba(4,5,9,0.8) 100%);
}
#hero { height: 520vh; }
#solution-scrub { height: 460vh; }

.reveal-line {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5vw;
  opacity: 0;
  will-change: opacity, transform;
  z-index: 10;
  pointer-events: none;
}
.reveal-line .btn { pointer-events: auto; }
.reveal-line h1, .reveal-line h2 { max-width: 1100px; }
.reveal-line::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(62% 58% at 50% 50%, rgba(3,4,8,0.78), rgba(3,4,8,0.5) 55%, transparent 78%);
}
.reveal-line .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.reveal-line h1, .reveal-line h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6.2vw, 5.4rem);
  line-height: 1.08;
  text-shadow: 0 4px 40px rgba(0,0,0,0.65);
}
.reveal-line h1 em, .reveal-line h2 em {
  font-style: italic;
  color: var(--gold);
}
.reveal-line p {
  margin-top: 20px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--ink-dim);
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.reveal-line .btn { margin-top: 30px; }

.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ink-dim);
  animation: bob 2s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}
.btn-gold {
  background: linear-gradient(135deg, #dcb75e, var(--gold) 60%, #a8853a);
  color: #0a0c10;
  box-shadow: 0 8px 30px rgba(201, 164, 76, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,164,76,0.5); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Generic sections ---------- */
section.panel {
  position: relative;
  padding: 110px 8vw;
  background: var(--bg);
}
section.panel.alt { background: var(--bg-2); }
.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.15;
  max-width: 820px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  margin-top: 18px;
  color: var(--ink-dim);
  max-width: 620px;
  line-height: 1.7;
  font-size: 1.02rem;
}

/* ---------- Trust bar ---------- */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 44px;
  padding: 34px 6vw;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust span {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.trust span b { color: var(--gold); font-weight: 700; }

/* ---------- Cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 36px 30px;
  transition: transform 0.3s, border-color 0.3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line); }
.card .icon { font-size: 1.7rem; margin-bottom: 18px; display: block; }
.card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}
.card p { color: var(--ink-dim); line-height: 1.7; font-size: 0.95rem; }

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.step {
  position: relative;
  padding: 32px 26px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
}
.step .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.85;
}
.step h3 { font-size: 1.05rem; margin: 14px 0 10px; font-weight: 700; }
.step p { color: var(--ink-dim); font-size: 0.9rem; line-height: 1.65; }
.step .day {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ---------- Deliverables ---------- */
.grid-deliver {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

/* ---------- Stats ---------- */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  text-align: center;
}
.stat .stat-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold);
}
.stat .stat-label {
  margin-top: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.price-card:hover { transform: translateY(-5px); }
.price-card.popular {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,164,76,0.09), var(--panel) 45%);
  box-shadow: 0 20px 60px rgba(201,164,76,0.12);
}
.badge-popular {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0c10;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .tier {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.price-card .amount {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: var(--ink);
  margin-top: 14px;
}
.price-card .amount sup { font-size: 1.4rem; color: var(--gold); margin-right: 4px; }
.price-card .per { color: var(--ink-dim); font-size: 0.85rem; margin-top: 4px; }
.price-card .tagline {
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.92rem;
  font-style: italic;
  font-family: var(--serif);
}
.price-card ul {
  list-style: none;
  margin: 26px 0 34px;
  flex: 1;
}
.price-card li {
  padding: 9px 0;
  color: var(--ink-dim);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-card li::before { content: "✓  "; color: var(--gold); font-weight: 700; }
.price-card li.no { opacity: 0.38; }
.price-card li b { color: var(--gold); }
.price-card li.no::before { content: "—  "; }
.price-card .btn { text-align: center; }
.pricing-note {
  margin-top: 34px;
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.9rem;
  line-height: 1.8;
}
.pricing-note b { color: var(--gold); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 50px; max-width: 860px; }
.faq-list details {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 6px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  font-family: var(--sans);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  color: var(--ink-dim);
  line-height: 1.75;
  padding-bottom: 22px;
  max-width: 760px;
}

/* ---------- Contact / CTA ---------- */
.cta-final {
  text-align: center;
  padding: 140px 8vw;
  background:
    radial-gradient(70% 55% at 50% 0%, rgba(201,164,76,0.12), transparent 65%),
    var(--bg);
}
.cta-final .section-title { margin: 0 auto; }
.cta-final .section-sub { margin-left: auto; margin-right: auto; }
.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.cta-contact { margin-top: 34px; color: var(--ink-dim); font-size: 0.95rem; line-height: 2; }
.cta-contact a { color: var(--gold); text-decoration: none; }

/* ---------- Footer ---------- */
footer {
  padding: 60px 8vw 40px;
  background: #05060a;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.foot-grid h4 {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.foot-grid p, .foot-grid a {
  display: block;
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 2;
}
.foot-grid a:hover { color: var(--gold); }
.foot-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.foot-brand em { color: var(--gold); font-style: normal; }
.copyright {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: rgba(242,240,234,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-deliver, .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .foot-grid { grid-template-columns: 1fr; }
}
@media (min-width: 981px) {
  .mobile-menu { display: none; }
}
@media (max-width: 600px) {
  section.panel { padding: 80px 7vw; }
  .steps { grid-template-columns: 1fr; }
  .stats { gap: 34px; }
  #hero { height: 420vh; }
  #solution-scrub { height: 380vh; }
  .nav { padding: 14px 18px; }
  .nav-brand { font-size: 0.98rem; }
  .nav-cta { display: none; } /* WhatsApp lives in the burger menu on phones */
}
