/* ================= GRIT GEO — Design System ================= */

:root {
  --black: #0D0D0D;
  --black-soft: #131211;
  --black-elevated: #1a1815;
  --black-card: #17150f;
  --gold: #A67C45;
  --gold-bright: #D3A968;
  --gold-dim: rgba(166, 124, 69, 0.14);
  --gold-border: rgba(166, 124, 69, 0.3);
  --white: #F5F1EA;
  --gray: #A39C90;
  --gray-dim: #8F887B;

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
.faq-question:focus-visible { outline-offset: -2px; }

@media (prefers-contrast: more) {
  :root { --gray: #C9C3B8; --gray-dim: #A39C90; --gold-border: rgba(211,169,104,0.7); }
  .reason-card, .stat-tile, .capability-card, .price-card, .mini-card, .panel-mock,
  .chart-card, .compare-card, .grit-table th, .grit-table td {
    border-color: rgba(211,169,104,0.55);
  }
}
ul { padding: 0; margin: 0; list-style: none; }
p { margin: 0; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 760px; }

/* ---------- Noise / texture ---------- */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography scale (optical sizing per apple-design) ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--white); font-weight: 600; margin: 0; }

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin-bottom: 18px;
}

.section-intro, .lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--gray);
  max-width: 680px;
  margin-bottom: 8px;
}

.fine-print {
  font-size: 0.8rem;
  color: var(--gray-dim);
  letter-spacing: 0.01em;
  margin-top: 16px;
}

strong { color: var(--white); font-weight: 600; }
em { color: var(--gold-bright); font-style: normal; }

/* ---------- Layout rhythm ---------- */
.section { padding: 108px 0; position: relative; }
.section-tight { padding: 64px 0; }
.section-elevated {
  background: linear-gradient(180deg, var(--black-soft), var(--black));
  border-top: 1px solid rgba(166,124,69,0.08);
  border-bottom: 1px solid rgba(166,124,69,0.08);
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .br-desktop { display: none; }
}
@media (max-width: 480px) {
  .hero { min-height: 100svh; padding-top: 96px; padding-bottom: 40px; justify-content: flex-start; }
  .hero-title { margin-bottom: 18px; }
  .hero-sub { margin-bottom: 26px; }
  .hero-cta { margin-bottom: 36px; }
}

/* ================= NAV ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease-spring), backdrop-filter 0.4s var(--ease-spring), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,13,13,0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: rgba(166,124,69,0.18);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.02em; color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; color: var(--gray); transition: color 0.2s var(--ease-spring);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-cta { font-size: 0.85rem; padding: 9px 18px !important; }
.nav-burger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  width: 44px; height: 44px;
}
.nav-burger span { width: 20px; height: 2px; background: var(--white); transition: transform 0.3s var(--ease-spring), opacity 0.3s; }
.nav-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-active span:nth-child(2) { opacity: 0; }
.nav-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(13,13,13,0.6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-spring);
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }
.nav-scrim[hidden] { display: none; }

.nav-mobile { display: none; }
.nav-mobile[hidden] { display: none; }
@media (max-width: 860px) {
  .nav-mobile {
    display: flex; flex-direction: column; gap: 4px; padding: 0 24px 20px;
    background: rgba(13,13,13,0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    position: absolute; top: 100%; left: 0; right: 0; z-index: 95;
    opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity 0.28s var(--ease-spring), transform 0.32s var(--ease-spring);
  }
  .nav-mobile.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
}
.nav-mobile a { padding: 14px 0; color: var(--gray); border-bottom: 1px solid rgba(166,124,69,0.1); font-size: 0.95rem; }
.nav-mobile .btn { margin-top: 14px; text-align: center; border-bottom: none; padding: 14px 28px; }
.nav-mobile .btn-primary { color: #17130a; }

@media (prefers-reduced-motion: reduce) {
  .nav-mobile, .nav-scrim { transition: opacity 0.15s linear; transform: none !important; }
}

@media (max-width: 860px) {
  .nav-links, .nav-inner .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.15s var(--ease-spring), box-shadow 0.25s var(--ease-spring), background 0.25s, border-color 0.25s;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #17130a;
  box-shadow: 0 8px 30px -8px rgba(166,124,69,0.55);
}
.btn-primary:hover { box-shadow: 0 12px 36px -6px rgba(166,124,69,0.7); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(166,124,69,0.08); color: var(--white); border-color: var(--gold-border);
}
.btn-ghost:hover { background: rgba(166,124,69,0.16); border-color: var(--gold); }
.btn-block { width: 100%; margin-top: 24px; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ================= HERO ================= */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; padding: 140px 0 80px; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(166,124,69,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166,124,69,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent 75%);
}
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(166,124,69,0.28), transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.hero-glow-bottom { top: auto; bottom: -30%; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 980px; margin: 0 auto; }
.hero .eyebrow { display: block; text-align: center; }
.hero-title {
  font-size: clamp(2.2rem, 5.6vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-title span { display: block; }
.reveal-gold { color: var(--gold-bright); }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--gray);
  max-width: 640px; margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-platforms { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-platforms > span { font-size: 0.78rem; color: var(--gray-dim); text-transform: uppercase; letter-spacing: 0.12em; }
.platform-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 560px; }
.pill {
  font-size: 0.8rem; padding: 7px 16px; border-radius: 999px;
  border: 1px solid rgba(166,124,69,0.25); color: var(--gray);
  background: rgba(166,124,69,0.05);
}
.pill-sm { font-size: 0.7rem; padding: 5px 11px; }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1.5px solid rgba(166,124,69,0.4); border-radius: 14px;
}
.scroll-hint span {
  display: block; width: 4px; height: 8px; border-radius: 2px; background: var(--gold);
  margin: 6px auto 0; animation: scrollhint 1.8s infinite var(--ease-spring);
}
@keyframes scrollhint {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .scroll-hint span { animation: none; } }

/* ================= REVEAL ANIMATION HOOKS (driven by JS springs) =================
   Hidden ONLY once script.js confirms it's running (html.js-ready, set synchronously
   in <head>). Without that class — JS blocked, slow, erroring, or a non-JS crawler —
   every section stays visible by default. Progressive enhancement, not a bet on JS. */
.js-ready [data-reveal], .js-ready [data-reveal-up] {
  opacity: 0;
  will-change: transform, opacity;
}
.js-ready [data-reveal] { transform: translateY(14px); }
.js-ready [data-reveal-up] { transform: translateY(28px); }
.is-revealed { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-reveal], .js-ready [data-reveal-up] { opacity: 1; transform: none; }
}

/* ================= PARA QUEM ================= */
.para-quem { max-width: 780px; }
.para-quem h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.25; letter-spacing: -0.01em; margin: 8px 0 16px; }

/* ================= COMPARE CARDS ================= */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0 32px; }
@media (max-width: 780px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card {
  border-radius: 20px; padding: 32px; border: 1px solid rgba(166,124,69,0.14);
}
.compare-bad { background: var(--black-card); }
.compare-real { background: linear-gradient(160deg, rgba(166,124,69,0.1), var(--black-card)); border-color: var(--gold-border); }
.compare-label { font-size: 0.72rem; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 18px; font-weight: 600; }
.compare-card ul li {
  padding: 12px 0 12px 26px; position: relative; color: var(--gray); font-size: 0.95rem; line-height: 1.5;
  border-top: 1px solid rgba(166,124,69,0.08);
}
.compare-card ul li:first-child { border-top: none; }
.compare-bad li::before { content: "×"; position: absolute; left: 0; color: var(--gray-dim); font-weight: 700; }
.compare-real li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.pull-quote {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.4; color: var(--white); border-left: 3px solid var(--gold);
  padding: 4px 0 4px 28px; margin: 40px 0 0; max-width: 760px; letter-spacing: -0.01em;
}

/* ================= REASON CARDS ================= */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }
.reason-card {
  background: var(--black-card); border: 1px solid rgba(166,124,69,0.12);
  border-radius: 20px; padding: 30px; transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}
.reason-card:hover { transform: translateY(-4px); border-color: var(--gold-border); }
.reason-index { font-family: var(--font-display); color: var(--gold); font-size: 0.85rem; font-weight: 700; }
.reason-card h3 { font-size: 1.15rem; margin: 14px 0 10px; line-height: 1.3; }
.reason-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.55; }

.stat-callout {
  display: flex; align-items: center; gap: 28px; margin-top: 24px;
  background: linear-gradient(120deg, rgba(166,124,69,0.14), transparent);
  border: 1px solid var(--gold-border); border-radius: 20px; padding: 32px 36px;
}
.stat-callout-number {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700;
  color: var(--gold-bright); letter-spacing: -0.02em; flex-shrink: 0;
}
.stat-callout p { color: var(--gray); font-size: 0.98rem; line-height: 1.5; max-width: 480px; }
@media (max-width: 640px) { .stat-callout { flex-direction: column; align-items: flex-start; gap: 12px; } }

/* ================= OBJECTION LIST ================= */
.objection-list { display: flex; flex-direction: column; margin-top: 44px; }
.objection-item {
  display: flex; gap: 24px; padding: 28px 0; border-top: 1px solid rgba(166,124,69,0.12);
}
.objection-item:last-child { border-bottom: 1px solid rgba(166,124,69,0.12); }
.objection-num {
  font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0; width: 44px;
}
.objection-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.objection-item p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; max-width: 640px; }

.closing-banner {
  margin-top: 36px; padding: 30px 34px; border-radius: 20px;
  background: var(--gold); color: #17130a;
}
.closing-banner p { font-size: 1.05rem; line-height: 1.55; font-weight: 500; }

/* ================= TABLE ================= */
.table-wrap {
  position: relative; overflow-x: auto; margin-top: 36px; border-radius: 20px;
  border: 1px solid rgba(166,124,69,0.14);
}
.table-wrap:focus-visible { outline-offset: -2px; }
.table-wrap::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 28px;
  pointer-events: none; background: linear-gradient(90deg, transparent, rgba(23,21,15,0.85));
}
@media (min-width: 720px) { .table-wrap::after { display: none; } }
.grit-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.grit-table th {
  text-align: left; font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase; padding: 18px 22px; background: var(--black-card);
  border-bottom: 1px solid rgba(166,124,69,0.16);
}
.grit-table td {
  padding: 18px 22px; font-size: 0.92rem; color: var(--gray); border-bottom: 1px solid rgba(166,124,69,0.08);
  vertical-align: top; background: var(--black-elevated);
}
.grit-table td:last-child { color: var(--white); }
.grit-table tr:last-child td { border-bottom: none; }
.grit-table-price td:last-child { color: var(--gold-bright); font-weight: 600; text-align: right; }
.total-row td { background: rgba(166,124,69,0.1); color: var(--white) !important; font-weight: 700; font-size: 1rem; }

.alt-compare {
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  margin-top: 24px; padding: 32px 36px; border-radius: 20px;
  border: 1px dashed rgba(166,124,69,0.35); background: var(--black-card);
}
.alt-compare-label { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 10px; font-weight: 600; }
.alt-compare-text h3 { font-size: 1.15rem; margin-bottom: 10px; }
.alt-compare-text p { color: var(--gray); font-size: 0.88rem; line-height: 1.55; max-width: 520px; }
.alt-compare-value {
  flex-shrink: 0; text-align: right; font-family: var(--font-display); font-weight: 700;
  color: var(--gray); white-space: nowrap;
}
.alt-compare-value span { font-size: 1.7rem; }
.alt-compare-value small { display: block; font-size: 0.78rem; font-weight: 500; color: var(--gray-dim); }
@media (max-width: 720px) {
  .alt-compare { flex-direction: column; align-items: flex-start; }
  .alt-compare-value { text-align: left; }
}

/* ================= STAT GRID ================= */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 900px) { .stat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-tile {
  background: var(--black-card); border: 1px solid rgba(166,124,69,0.14); border-radius: 18px; padding: 26px;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}
.stat-tile:hover { transform: translateY(-4px); border-color: var(--gold-border); }
.stat-number {
  display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.6rem); font-weight: 700;
  color: var(--gold-bright); letter-spacing: -0.02em; margin-bottom: 10px;
}
.stat-tile p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }
.stat-tile p em { color: var(--gray-dim); font-size: 0.8em; }

/* ================= CYCLE ================= */
.cycle { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin: 48px 0 56px; }
.cycle-line { display: none; }
@media (min-width: 980px) {
  .cycle-line {
    display: block; position: absolute; top: 22px; left: 0; width: 100%; height: 2px;
    z-index: 0; stroke: rgba(166,124,69,0.2); stroke-width: 1; overflow: visible;
  }
}
@media (max-width: 980px) { .cycle { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cycle { grid-template-columns: 1fr; } }
.cycle-step { position: relative; z-index: 1; background: var(--black); }
.cycle-index {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--gold-border); background: var(--black-card);
  font-family: var(--font-display); color: var(--gold); font-weight: 700; font-size: 0.9rem; margin-bottom: 16px;
}
.cycle-step h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.3; }
.cycle-step p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }

.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split-reverse { direction: rtl; } .split-reverse > * { direction: ltr; }
@media (max-width: 860px) { .split-2 { grid-template-columns: 1fr; } .split-reverse { direction: ltr; } }
.mini-card {
  background: var(--black-card); border: 1px solid rgba(166,124,69,0.14); border-radius: 18px; padding: 28px;
}
.mini-card-label { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.mini-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.55; }
.check-list li {
  position: relative; padding: 8px 0 8px 26px; color: var(--gray); font-size: 0.92rem; line-height: 1.5;
}
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.check-list li strong { color: var(--white); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  font-size: 0.75rem; padding: 6px 13px; border-radius: 999px; border: 1px solid rgba(166,124,69,0.25);
  color: var(--gold-bright); background: rgba(166,124,69,0.08);
}

/* ================= CHART ================= */
.chart-card { background: var(--black-card); border: 1px solid rgba(166,124,69,0.14); border-radius: 20px; padding: 28px; }
.chart-svg { width: 100%; height: auto; }
.chart-grid line { stroke: rgba(166,124,69,0.08); stroke-width: 1; }
.chart-line { fill: none; stroke-width: 2.5; stroke-linecap: round; }
.chart-line-flat { stroke: var(--gray-dim); stroke-dasharray: 4 6; }
.chart-line-paid { stroke: #8a6a4a; }
.chart-line-geo {
  stroke: var(--gold-bright); stroke-width: 3.5;
  filter: drop-shadow(0 0 8px rgba(211,169,104,0.5));
}
.chart-legend { display: flex; gap: 22px; margin-top: 18px; flex-wrap: wrap; }
.chart-legend span { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray); }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot-geo { background: var(--gold-bright); }
.dot-paid { background: #8a6a4a; }
.dot-flat { background: var(--gray-dim); }

/* ================= PANEL MOCK ================= */
.panel-mock {
  background: var(--black-card); border: 1px solid var(--gold-border); border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.panel-mock-head {
  display: flex; align-items: center; gap: 8px; padding: 16px 20px;
  background: var(--black-elevated); border-bottom: 1px solid rgba(166,124,69,0.14);
}
.panel-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(166,124,69,0.3); }
.panel-mock-title { margin-left: 10px; font-size: 0.82rem; color: var(--gray); font-family: var(--font-display); }
.panel-mock-body { padding: 28px; }
.panel-brand-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
.panel-brand-name { font-size: 0.8rem; color: var(--gray-dim); margin-bottom: 4px; }
.panel-brand-score { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold-bright); letter-spacing: -0.02em; }
.panel-badge { font-size: 0.75rem; color: var(--gray); background: rgba(166,124,69,0.1); padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(166,124,69,0.18); }
.panel-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.panel-bar-row { display: grid; grid-template-columns: 100px 1fr; align-items: center; gap: 12px; }
.panel-bar-row span { font-size: 0.8rem; color: var(--gray); }
.panel-bar { height: 8px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.panel-bar-fill {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 1.1s var(--ease-spring-soft);
}
.panel-bar-fill.dim { background: linear-gradient(90deg, #5a4a34, #6e5a3e); }
.panel-bar-fill.is-filled { width: var(--w); }
@media (prefers-reduced-motion: reduce) { .panel-bar-fill { transition: none; } }
.platform-row-mini { justify-content: flex-start; max-width: none; }

/* ================= SIMULATOR ================= */
.simulator {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; margin-top: 44px;
  background: var(--black-card); border: 1px solid rgba(166,124,69,0.14); border-radius: 24px; padding: 40px;
}
@media (max-width: 860px) { .simulator { grid-template-columns: 1fr; } }
.slider-field { margin-bottom: 30px; }
.slider-label { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; }
@media (max-width: 420px) {
  .slider-label { flex-direction: column; align-items: flex-start; gap: 4px; }
}
.slider-label span { color: var(--gray); }
.slider-label output { color: var(--gold-bright); font-weight: 600; font-family: var(--font-display); }

input[type="range"] {
  -webkit-appearance: none; width: 100%; height: 4px; border-radius: 999px;
  background: rgba(166,124,69,0.18); outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-bright); border: 3px solid var(--black);
  box-shadow: 0 0 0 1px var(--gold-border), 0 4px 12px rgba(166,124,69,0.5);
  transition: transform 0.15s var(--ease-spring);
}
input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.2); }
input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%; background: var(--gold-bright);
  border: 3px solid var(--black); cursor: pointer;
}

.simulator-outputs { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.sim-output {
  background: var(--black-elevated); border: 1px solid rgba(166,124,69,0.14); border-radius: 16px; padding: 22px 26px;
}
.sim-output-value {
  display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700;
  color: var(--white); letter-spacing: -0.01em; margin-bottom: 6px;
}
.sim-output-label { font-size: 0.82rem; color: var(--gray-dim); }
.sim-output-highlight { background: linear-gradient(120deg, rgba(166,124,69,0.22), rgba(166,124,69,0.06)); border-color: var(--gold-border); }
.sim-output-highlight .sim-output-value { color: var(--gold-bright); }

/* ================= CAPABILITIES ================= */
.capabilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 980px) { .capabilities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .capabilities-grid { grid-template-columns: 1fr; } }
.capability-card {
  background: var(--black-card); border: 1px solid rgba(166,124,69,0.12); border-radius: 18px; padding: 24px;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}
.capability-card:hover { transform: translateY(-4px); border-color: var(--gold-border); }
.capability-card h3 { font-size: 1rem; margin-bottom: 10px; }
.capability-card p { font-size: 0.86rem; color: var(--gray); line-height: 1.5; }

/* ================= RESULTS NOTE ================= */
.results-note { text-align: center; max-width: 720px; margin: 0 auto; }
.results-note h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 10px 0 16px; letter-spacing: -0.01em; }
.results-note .lede { margin: 0 auto; }

/* ================= BILLING TOGGLE ================= */
.billing-toggle-wrap { display: flex; justify-content: center; margin-top: 32px; }
.billing-toggle {
  position: relative; display: inline-flex; padding: 4px;
  background: var(--black-card); border: 1px solid rgba(166,124,69,0.22); border-radius: 999px;
}
.billing-toggle-indicator {
  position: absolute; top: 4px; left: 4px; height: calc(100% - 8px); width: 0;
  border-radius: 999px; background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  transition: transform 0.34s var(--ease-spring), width 0.34s var(--ease-spring);
  z-index: 0;
}
.billing-option {
  position: relative; z-index: 1; display: flex; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer; white-space: nowrap;
  padding: 11px 22px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  color: var(--gray); transition: color 0.25s var(--ease-spring);
}
.billing-option.is-active { color: #17130a; }
.billing-badge {
  font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 999px;
  background: rgba(166,124,69,0.18); color: var(--gold-bright); transition: background 0.25s, color 0.25s;
}
.billing-option.is-active .billing-badge { background: rgba(23,19,10,0.16); color: #17130a; }

@media (prefers-reduced-motion: reduce) {
  .billing-toggle-indicator, .billing-option, .billing-badge { transition: none; }
}

/* ================= PRICING ================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
@media (max-width: 940px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.price-card {
  position: relative; background: var(--black-card); border: 1px solid rgba(166,124,69,0.14);
  border-radius: 22px; padding: 36px 32px; transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-featured { border-color: var(--gold); background: linear-gradient(165deg, rgba(166,124,69,0.14), var(--black-card)); }
.price-badge {
  position: absolute; top: -13px; left: 32px; background: var(--gold); color: #17130a;
  font-size: 0.7rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; letter-spacing: 0.05em;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-volume { color: var(--gold-bright); font-size: 0.9rem; font-weight: 600; margin-bottom: 18px; }
.price-strike {
  font-size: 0.82rem; color: var(--gray-dim); text-decoration: line-through;
  text-decoration-color: rgba(166,124,69,0.5); margin-bottom: 4px;
}
.price-strike[hidden] { display: none; }
.price-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.price-suffix { font-size: 0.95rem; font-weight: 500; color: var(--gray-dim); }
.price-term { font-size: 0.78rem; color: var(--gold-bright); font-weight: 600; margin-bottom: 10px; }
.price-desc { color: var(--gray); font-size: 0.88rem; line-height: 1.5; margin-bottom: 22px; min-height: 42px; }
.price-card .check-list { border-top: 1px solid rgba(166,124,69,0.12); padding-top: 18px; }

/* ================= FAQ ================= */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid rgba(166,124,69,0.14); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: none; border: none; color: var(--white); text-align: left; cursor: pointer;
  padding: 24px 0; font-family: var(--font-body); font-size: 1rem; font-weight: 500;
}
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--gold); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-spring);
}
.faq-icon::before { width: 100%; height: 2px; }
.faq-icon::after { width: 2px; height: 100%; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer { height: 0; overflow: hidden; }
.faq-answer p { padding-bottom: 24px; color: var(--gray); font-size: 0.92rem; line-height: 1.6; max-width: 640px; }

/* ================= CLOSING ================= */
.hero-closing {
  text-align: center; padding: 140px 0 120px; position: relative; overflow: hidden;
}
.closing-title {
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; letter-spacing: -0.02em;
  max-width: 780px; margin: 0 auto 20px; position: relative; z-index: 1;
}
.closing-sub { color: var(--gray); font-size: 1.05rem; margin-bottom: 36px; position: relative; z-index: 1; }
.hero-closing .btn { position: relative; z-index: 1; }

/* ================= FOOTER ================= */
.footer { border-top: 1px solid rgba(166,124,69,0.14); padding: 32px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-inner p { color: var(--gray-dim); font-size: 0.82rem; }

/* ================= LEAD FORM MODAL ================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(13,13,13,0); backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
  opacity: 0; pointer-events: none;
  /* No CSS transition here — a single JS spring (modalSpring) drives overlay
     and card opacity/blur/scale together every frame, so open/close stays
     one continuous, interruptible material instead of two timed layers. */
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.is-open { pointer-events: auto; }
.modal-card {
  position: relative; width: 100%; max-width: 440px;
  background: var(--black-card); border: 1px solid var(--gold-border); border-radius: 24px;
  padding: 40px; box-shadow: 0 40px 90px -20px rgba(0,0,0,0.65);
  transform: scale(0.94) translateY(10px); opacity: 0;
}
.modal-close {
  position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(166,124,69,0.1); border: 1px solid rgba(166,124,69,0.2); color: var(--gray);
  cursor: pointer; transition: background 0.2s var(--ease-spring), color 0.2s var(--ease-spring);
}
.modal-close:hover { background: rgba(166,124,69,0.2); color: var(--white); }
.modal-card h3 { font-size: 1.35rem; letter-spacing: -0.01em; margin-bottom: 8px; padding-right: 24px; }
.modal-sub { color: var(--gray); font-size: 0.9rem; line-height: 1.5; margin-bottom: 26px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-field label { font-size: 0.78rem; color: var(--gray-dim); letter-spacing: 0.02em; }
.form-field input {
  background: var(--black-elevated); border: 1px solid rgba(166,124,69,0.22); border-radius: 12px;
  padding: 13px 15px; color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s var(--ease-spring);
}
.form-field input::placeholder { color: var(--gray-dim); }
.form-field input:focus { border-color: var(--gold); outline: none; }
.form-error { color: #E0876B; font-size: 0.85rem; margin: -4px 0 16px; }
#modalSuccessView h3 { color: var(--gold-bright); }

@media (max-width: 520px) {
  .modal-card { padding: 32px 24px; }
}
/* Reduced motion and reduced transparency for the modal are both handled in
   script.js (REDUCED_MOTION / REDUCED_TRANSPARENCY) since a single JS spring
   now drives its opacity/blur/scale inline, frame by frame. */

body.modal-locked, body.nav-locked { overflow: hidden; }

/* ================= REDUCED TRANSPARENCY ================= */
@media (prefers-reduced-transparency: reduce) {
  .nav.scrolled { background: var(--black); backdrop-filter: none; }
}
