/* ============================================================
   CRANIUMS LANDING — local styles
   Builds on tokens.css. All variables come from there.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--color-bg);
}

/* light-mode override (tweak: theme = "light") */
body[data-theme="light"] {
  --color-bg: #f4f1ea;
  --color-bg-raised: #ffffff;
  --color-surface: #ffffff;
  --color-surface-hi: #f8f6f0;
  --color-border: #e3dfd6;
  --color-border-strong: #cfc9bd;
  --color-fg: #0c0c14;
  --color-fg-muted: #4a4955;
  --color-fg-subtle: #6e6b7a;

  --ink-900: #ffffff;
  --ink-800: #f4f1ea;
  --ink-700: #ffffff;
  --ink-600: #ffffff;
  --ink-500: #f0ece2;
  --ink-400: #d8d4c9;
  --ink-300: #a8a4b1;
  --bone-100: #0c0c14;
  --bone-200: #1c1c28;
  --bone-300: #4a4955;
  --bone-400: #6e6b7a;
  --shadow-card: 0 1px 0 rgba(0,0,0,0.02) inset, 0 8px 24px rgba(12,12,20,0.06);
  --shadow-lift: 0 18px 48px rgba(12,12,20,0.10);
}

/* dynamic accent override (tweak: accent) */
body[data-accent="cyan"] {
  --color-primary: var(--cyan);
  --color-primary-hover: var(--cyan-bright);
  --color-primary-press: #18a8ad;
  --color-link: var(--cyan-bright);
  --shadow-glow-violet: 0 0 0 1px rgba(34,225,233,0.35), 0 12px 40px var(--cyan-glow);
}
body[data-accent="magenta"] {
  --color-primary: var(--magenta);
  --color-primary-hover: #ff5fa3;
  --color-primary-press: #c41f6f;
  --color-link: #ff5fa3;
  --shadow-glow-violet: 0 0 0 1px rgba(242,62,143,0.35), 0 12px 40px var(--magenta-glow);
}

/* ---------- layout primitives ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-7);
}
@media (max-width: 768px) {
  .container { padding: 0 var(--space-5); }
}

.section {
  position: relative;
  padding: var(--space-9) 0;
}
.section + .section { padding-top: var(--space-8); }

.eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  color: var(--color-fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 12px var(--color-primary);
}

.t-display-lp {
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: var(--fw-semibold);
  margin: 0;
  text-wrap: balance;
}
.t-display-lp .accent { color: var(--color-primary); }
.t-display-lp .num {
  font-weight: var(--fw-light);
  letter-spacing: -0.035em;
  background: var(--gradient-stat);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 15px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }
.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-glow-violet);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(0.98); background: var(--color-primary-press); }
.btn-secondary {
  background: transparent;
  color: var(--color-fg);
  box-shadow: inset 0 0 0 1px var(--color-border);
}
.btn-secondary:hover {
  background: var(--color-surface);
  box-shadow: inset 0 0 0 1px var(--color-border-strong);
}
.btn-ghost {
  background: transparent; color: var(--color-fg);
}
.btn-ghost:hover { color: var(--color-primary-hover); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ---------- chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: var(--fw-semibold);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  box-shadow: inset 0 0 0 1px var(--color-border);
  color: var(--color-fg);
}
.chip-violet {
  background: rgba(123,92,255,0.12);
  color: var(--violet-bright);
  box-shadow: inset 0 0 0 1px rgba(123,92,255,0.3);
}
.chip-live {
  background: rgba(200,255,77,0.12);
  color: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(200,255,77,0.3);
}
.chip-live .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ---------- panels / cards ---------- */
.panel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  position: relative;
}
.panel-bordered {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--color-border);
}
.panel-glow {
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(123,92,255,0.20), 0 24px 80px rgba(123,92,255,0.10);
}

/* ---------- sticky nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: backdrop-filter var(--dur-base) var(--ease-standard),
              background var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  max-width: 1200px; margin: 0 auto;
  padding-left: var(--space-7); padding-right: var(--space-7);
}
.nav.scrolled {
  background: rgba(12,12,20,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--color-border);
}
body[data-theme="light"] .nav.scrolled { background: rgba(244,241,234,0.78); }
.nav-logo { height: 34px; display: block; }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; color: var(--color-fg-muted);
}
.nav-links a { color: var(--color-fg-muted); transition: color var(--dur-fast); }
.nav-links a:hover { color: var(--color-fg); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px; padding-bottom: var(--space-9);
  overflow: hidden;
  isolation: isolate;
}
.aurora {
  position: absolute; inset: -10%;
  z-index: -1;
  background: var(--gradient-aurora);
  filter: blur(40px);
  opacity: 1;
  animation: aurora-drift 20s ease-in-out infinite alternate;
}
body[data-theme="light"] .aurora { opacity: 0.55; }
@keyframes aurora-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-3%, 2%, 0) scale(1.06); }
  100% { transform: translate3d(2%, -2%, 0) scale(1.02); }
}
.aurora-grain {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 3px 3px;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-7); }
}

/* iridescent orb (hero visual) */
.orb-wrap { position: relative; aspect-ratio: 1; max-width: 480px; margin-left: auto; }
.orb {
  position: absolute; inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.30), transparent 50%),
    conic-gradient(from 120deg,
      #7b5cff 0%,
      #22e1e9 25%,
      #f23e8f 50%,
      #c8ff4d 75%,
      #7b5cff 100%);
  filter: blur(0.5px);
  box-shadow:
    0 0 80px rgba(123,92,255,0.45),
    0 0 160px rgba(34,225,233,0.20),
    inset 0 -40px 80px rgba(0,0,0,0.50);
  animation: orb-rot 28s linear infinite;
}
.orb::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(0,0,0,0.5), transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.10), transparent 60%);
}
.orb-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(123,92,255,0.4);
  animation: orb-spin 40s linear infinite;
}
.orb-ring.r2 { inset: -8%; border-color: rgba(34,225,233,0.25); animation-duration: 60s; animation-direction: reverse; transform: rotate(20deg); }
.orb-ring.r3 { inset: -16%; border-color: rgba(242,62,143,0.18); animation-duration: 80s; }
@keyframes orb-rot { from { filter: hue-rotate(0deg) blur(0.5px); } to { filter: hue-rotate(360deg) blur(0.5px); } }
@keyframes orb-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* small floating glyphs orbiting */
.orb-dot {
  position: absolute; width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

/* ---------- iridescent micro-objects (decorative for inner sections) ---------- */
.iri {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  pointer-events: none;
}
.iri-blob {
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.4), transparent 55%),
    conic-gradient(from 90deg, #7b5cff, #22e1e9, #f23e8f, #c8ff4d, #7b5cff);
  opacity: 0.55;
  filter: blur(1px);
}

/* ---------- hero typography ---------- */
.hero-eyebrow { margin-bottom: var(--space-5); }
.hero-headline { margin: 0 0 var(--space-5) 0; max-width: 900px; }
.hero-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--color-fg-muted);
  max-width: 540px;
  margin: 0 0 var(--space-6) 0;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin-bottom: var(--space-5);
}
.hero-microcopy {
  font-size: 13px; color: var(--color-fg-subtle);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.hero-microcopy .sep { color: var(--color-border-strong); }

/* trust strip */
.trust {
  margin-top: var(--space-9);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  display: flex; align-items: center; gap: var(--space-6);
  flex-wrap: wrap; justify-content: space-between;
}
.trust-label {
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: var(--fw-semibold);
  color: var(--color-fg-subtle);
}
.trust-row { display: flex; gap: var(--space-7); align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num {
  font-size: 24px; font-weight: var(--fw-light);
  letter-spacing: -0.03em;
  background: var(--gradient-stat);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.trust-cap { font-size: 12px; color: var(--color-fg-subtle); }

/* ---------- opening section ---------- */
.opening-grid {
  display: grid; gap: var(--space-7);
  grid-template-columns: 5fr 7fr;
  align-items: start;
}
@media (max-width: 980px) { .opening-grid { grid-template-columns: 1fr; } }
.opening-headline {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}
.opening-headline .strike { text-decoration: line-through; color: var(--color-fg-subtle); text-decoration-color: var(--magenta); }
.opening-headline .accent { color: var(--color-primary); }
.opening-body { font-size: 17px; line-height: 1.6; color: var(--color-fg-muted); }
.opening-body + .opening-body { margin-top: var(--space-4); }
.opening-body strong { color: var(--color-fg); font-weight: var(--fw-semibold); }

/* ---------- pain section ---------- */
.pain-header { max-width: 720px; margin-bottom: var(--space-7); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (max-width: 760px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  transition: all var(--dur-base) var(--ease-standard);
  position: relative;
  overflow: hidden;
}
.pain-card:hover {
  background: var(--color-surface-hi);
  transform: translateY(-2px);
}
.pain-card .ic {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(123,92,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.pain-card .ic svg { width: 20px; height: 20px; }
.pain-card p { font-size: 15px; line-height: 1.5; color: var(--color-fg-muted); margin: 0; }
.pain-card p strong { color: var(--color-fg); font-weight: var(--fw-semibold); }

.pain-cta {
  margin-top: var(--space-7);
  font-size: 17px;
  color: var(--color-fg);
  font-weight: var(--fw-regular);
  max-width: 720px;
}
.pain-cta em { color: var(--color-primary); font-style: normal; font-weight: var(--fw-semibold); }

/* ---------- solution pillars ---------- */
.pillars {
  display: grid; gap: var(--space-5);
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-7);
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: var(--space-3);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.pillar::before {
  content: ""; position: absolute; inset: -50% -20% auto auto;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary), transparent 60%);
  opacity: 0.10;
  z-index: -1;
  transition: opacity var(--dur-slow) var(--ease-standard);
}
.pillar:hover::before { opacity: 0.20; }
.pillar-num {
  font-size: 14px; font-weight: var(--fw-semibold);
  font-family: var(--font-mono);
  color: var(--color-primary);
}
.pillar-title {
  font-size: 22px; font-weight: var(--fw-semibold);
  letter-spacing: -0.01em; line-height: 1.15;
  margin: 0;
}
.pillar-body { font-size: 15px; line-height: 1.55; color: var(--color-fg-muted); margin: 0; }

/* ---------- benefits ---------- */
.benefits-grid {
  display: grid; gap: var(--space-5);
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-7);
}
@media (max-width: 880px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--color-border);
}
.benefit-ic {
  width: 32px; height: 32px; color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.benefit-title {
  font-size: 17px; font-weight: var(--fw-semibold);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}
.benefit-body { font-size: 14px; line-height: 1.55; color: var(--color-fg-muted); margin: 0; }

/* ---------- social proof / case ---------- */
.cred-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); flex-wrap: wrap;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-7);
}
.cred-item { display: flex; flex-direction: column; gap: 4px; }
.cred-num {
  font-size: 32px; font-weight: var(--fw-light);
  letter-spacing: -0.03em;
  background: var(--gradient-stat);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cred-cap { font-size: 12px; color: var(--color-fg-subtle); }
.cred-divider { width: 1px; align-self: stretch; background: var(--color-border); }
@media (max-width: 760px) { .cred-divider { display: none; } }

.case {
  padding: var(--space-7);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  display: grid; grid-template-columns: 7fr 5fr; gap: var(--space-7);
  align-items: center;
}
@media (max-width: 980px) { .case { grid-template-columns: 1fr; } }
.case-eyebrow { color: var(--cyan); }
.case-title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em; line-height: 1.18;
  margin: 12px 0 var(--space-4) 0;
}
.case-lede { font-size: 15px; color: var(--color-fg-muted); line-height: 1.55; }
.case-kpis {
  display: grid; gap: var(--space-4);
  margin: var(--space-5) 0;
}
.case-kpi {
  display: flex; gap: var(--space-3); align-items: flex-start;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-bg-raised);
  position: relative;
}
.case-kpi .marker {
  position: absolute; top: 6px; right: 8px;
  font-size: 9px; font-family: var(--font-mono);
  color: var(--magenta); text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-kpi-num {
  font-size: 28px; font-weight: var(--fw-light);
  letter-spacing: -0.03em;
  background: var(--gradient-stat);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; flex-shrink: 0; min-width: 80px;
}
.case-kpi-text { font-size: 14px; line-height: 1.45; color: var(--color-fg-muted); }
.case-kpi-text strong { color: var(--color-fg); font-weight: var(--fw-semibold); }

.case-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 30%, rgba(123,92,255,0.5), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(34,225,233,0.35), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(242,62,143,0.25), transparent 60%),
    var(--ink-700);
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: var(--space-5);
  box-shadow: inset 0 0 0 1px var(--color-border);
}
.case-visual-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 1;
}
.case-visual::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, transparent 0%, transparent 70%, rgba(6,10,8,0.85) 100%),
    linear-gradient(90deg, transparent 60%, rgba(6,10,8,0.5) 100%);
  pointer-events: none;
}
.case-visual::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background:
    radial-gradient(circle at 100% 100%, rgba(123,92,255,0.15), transparent 50%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.case-visual-tag {
  position: relative;
  z-index: 4;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--bone-100);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote {
  margin-top: var(--space-7);
  padding: var(--space-7);
  border-left: 2px solid var(--color-primary);
  background: var(--color-surface);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.quote p {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: var(--fw-light);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-fg);
  margin: 0 0 var(--space-4) 0;
  font-style: italic;
}
.quote .who {
  font-size: 14px; color: var(--color-fg-muted);
  display: flex; align-items: center; gap: 10px;
}
.quote .who strong { color: var(--color-fg); font-weight: var(--fw-semibold); }

.authority {
  margin-top: var(--space-7);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  display: grid; grid-template-columns: 80px 1fr; gap: var(--space-5);
  align-items: center;
}
.authority-portrait {
  width: 80px; height: 80px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-raised);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 0 0 2px rgba(123,92,255,0.25),
    0 0 24px rgba(123,92,255,0.20);
}
.authority-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.authority p { font-size: 14px; color: var(--color-fg-muted); line-height: 1.55; margin: 0; }
.authority p strong { color: var(--color-fg); font-weight: var(--fw-semibold); }

/* ---------- offer table ---------- */
.offer-card {
  position: relative;
  padding: var(--space-7);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(123,92,255,0.15), 0 30px 80px rgba(123,92,255,0.12);
  margin-top: var(--space-7);
  overflow: hidden;
  isolation: isolate;
}
.offer-card::before {
  content: ""; position: absolute; inset: -1px;
  background: linear-gradient(135deg, var(--violet) 0%, transparent 30%, transparent 70%, var(--cyan) 100%);
  z-index: -1;
  border-radius: var(--radius-xl);
  opacity: 0.4;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
}
.offer-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.offer-title {
  font-size: 22px; font-weight: var(--fw-semibold);
  letter-spacing: -0.01em; line-height: 1.2;
  margin: 0;
  display: flex; align-items: center; gap: 12px;
}
.offer-title .ic { width: 28px; height: 28px; color: var(--color-primary); }
.offer-rows {
  display: flex; flex-direction: column;
  padding: var(--space-2) 0;
}
.offer-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: var(--space-4);
  align-items: baseline;
  padding: var(--space-4) 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 15px;
}
.offer-row:last-child { border-bottom: none; }
.offer-row .check { color: var(--lime); margin-top: 6px; }
.offer-row .label { color: var(--color-fg); font-weight: var(--fw-semibold); }
.offer-row .label .desc { display:block; font-weight: var(--fw-regular); color: var(--color-fg-muted); font-size: 13px; margin-top: 4px; line-height: 1.5; }
.offer-row .value {
  font-family: var(--font-mono); font-size: 14px;
  color: var(--color-fg-muted);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.offer-section-head {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-5) 0 var(--space-3) 0;
  border-top: 1px dashed var(--color-border);
}
.offer-section-head:first-child { border-top: none; padding-top: 0; }
.offer-section-head .tag {
  font-size: 11px; font-family: var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--magenta);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(242,62,143,0.10);
  box-shadow: inset 0 0 0 1px rgba(242,62,143,0.3);
}
.offer-section-head .desc { font-size: 13px; color: var(--color-fg-muted); }
.offer-foot {
  margin-top: var(--space-5); padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-5);
  align-items: center;
}
@media (max-width: 760px) { .offer-foot { grid-template-columns: 1fr; } }
.offer-total {
  display: flex; flex-direction: column; gap: 4px;
}
.offer-total .line {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 14px; color: var(--color-fg-muted);
}
.offer-total .line .v { font-family: var(--font-mono); }
.offer-total .strike { text-decoration: line-through; }
.offer-total .now {
  font-size: 28px; font-weight: var(--fw-semibold); letter-spacing: -0.02em;
  color: var(--color-fg);
}
.offer-total .now .free {
  background: var(--gradient-stat);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.offer-availability {
  font-size: 12px; color: var(--color-fg-muted);
  display: flex; align-items: center; gap: 8px;
  margin-top: 4px;
}

/* ---------- objections ---------- */
.objection {
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.objection:last-child { border-bottom: none; }
@media (max-width: 880px) { .objection { grid-template-columns: 1fr; gap: var(--space-3); } }
.objection-q {
  font-size: 19px; font-weight: var(--fw-semibold);
  letter-spacing: -0.01em; line-height: 1.3;
  color: var(--color-fg);
}
.objection-q::before {
  content: "Você diz:";
  display: block;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: var(--fw-semibold);
  color: var(--magenta);
  margin-bottom: 8px;
}
.objection-a { font-size: 15px; line-height: 1.6; color: var(--color-fg-muted); }
.objection-a::before {
  content: "Craniums:";
  display: block;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: var(--fw-semibold);
  color: var(--violet-bright);
  margin-bottom: 8px;
}
.objection-a strong { color: var(--color-fg); font-weight: var(--fw-semibold); }

/* ---------- guarantee ---------- */
.guarantee {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-6);
  padding: var(--space-7);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  margin-top: var(--space-6);
}
.guarantee-shield {
  width: 80px; height: 80px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--violet-bright), var(--violet) 60%, var(--violet-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow-violet);
  flex-shrink: 0;
}
.guarantee-shield svg { width: 36px; height: 36px; color: #fff; }
.guarantee p { font-size: 17px; line-height: 1.55; color: var(--color-fg); margin: 0; }
.guarantee p + p { margin-top: var(--space-3); font-size: 14px; color: var(--color-fg-muted); }
.guarantee strong { color: var(--color-fg); font-weight: var(--fw-semibold); }
@media (max-width: 760px) { .guarantee { grid-template-columns: 1fr; } }

/* ---------- urgency ---------- */
.urgency {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7);
  align-items: start;
}
@media (max-width: 880px) { .urgency { grid-template-columns: 1fr; } }
.urgency-counter {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.urgency-counter::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(242,62,143,0.15), transparent 60%);
  pointer-events: none;
}
.urgency-counter-head {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: var(--fw-semibold);
  color: var(--magenta);
  margin-bottom: var(--space-4);
}
.urgency-slots {
  display: flex; gap: var(--space-3);
  margin-bottom: var(--space-4);
  position: relative;
}
.slot {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 18px;
  color: var(--color-fg-subtle);
  transition: all var(--dur-base) var(--ease-standard);
  position: relative;
}
.slot.taken {
  background: var(--color-surface-hi);
  border-style: solid; border-color: var(--color-border);
  color: var(--color-fg-muted);
}
.slot.taken::after {
  content: "ocupada";
  position: absolute; bottom: -16px;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-fg-subtle);
  font-family: var(--font-sans);
}
.slot.available {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(123,92,255,0.06);
  box-shadow: 0 0 24px rgba(123,92,255,0.20);
  position: relative;
}
.slot.available::after {
  content: "disponível";
  position: absolute; bottom: -16px;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
}
.urgency-numline {
  display: flex; gap: 16px; align-items: baseline;
  font-size: 14px; color: var(--color-fg-muted);
  margin-top: 28px;
}
.urgency-numline strong {
  font-size: 24px; font-weight: var(--fw-light);
  letter-spacing: -0.02em;
  background: var(--gradient-stat);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none; border: none;
  padding: var(--space-5) 0;
  font-family: var(--font-sans);
  font-size: 17px; font-weight: var(--fw-semibold);
  letter-spacing: -0.005em;
  color: var(--color-fg);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  transition: color var(--dur-fast);
}
.faq-q:hover { color: var(--color-primary); }
.faq-q .chev {
  width: 20px; height: 20px;
  transition: transform var(--dur-base) var(--ease-standard);
  flex-shrink: 0;
  color: var(--color-fg-muted);
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--color-primary); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-standard);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 var(--space-5) 0;
  font-size: 15px; line-height: 1.6; color: var(--color-fg-muted);
  max-width: 800px;
}
.faq-a-inner strong { color: var(--color-fg); font-weight: var(--fw-semibold); }

/* ---------- final CTA ---------- */
.final {
  position: relative;
  padding: var(--space-9) 0;
  overflow: hidden;
  isolation: isolate;
}
.final .aurora { opacity: 0.7; }
.final-inner {
  position: relative;
  text-align: center;
  max-width: 880px; margin: 0 auto;
}
.final h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04; font-weight: var(--fw-semibold);
  margin: 0 0 var(--space-5) 0;
  text-wrap: balance;
}
.final h2 .accent { color: var(--color-primary); }
.final p {
  font-size: 18px; line-height: 1.55; color: var(--color-fg-muted);
  max-width: 640px; margin: 0 auto var(--space-7) auto;
}
.final-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5);
  text-align: left;
  margin: var(--space-7) auto;
  max-width: 880px;
}
@media (max-width: 760px) { .final-options { grid-template-columns: 1fr; } }
.option-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}
.option-card.bad { opacity: 0.65; }
.option-card.good { box-shadow: var(--shadow-card), 0 0 0 1px var(--color-primary), 0 24px 60px rgba(123,92,255,0.15); }
.option-card .label {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: var(--fw-semibold);
  color: var(--color-fg-muted);
  margin-bottom: var(--space-3);
}
.option-card.good .label { color: var(--color-primary); }
.option-card h4 {
  font-size: 18px; font-weight: var(--fw-semibold);
  letter-spacing: -0.01em; margin: 0 0 var(--space-3) 0;
  line-height: 1.3;
}
.option-card p {
  font-size: 14px; line-height: 1.55; color: var(--color-fg-muted);
  margin: 0; max-width: none; text-align: left;
}

/* ---------- PS ---------- */
.ps-block {
  padding: var(--space-7);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  margin-top: var(--space-7);
  position: relative;
  overflow: hidden;
}
.ps-block::before {
  content: "PS";
  position: absolute;
  top: -10px; right: 20px;
  font-size: 120px;
  font-weight: var(--fw-black);
  color: var(--color-primary);
  opacity: 0.07;
  letter-spacing: -0.05em;
  line-height: 1;
}
.ps-block p {
  font-size: 17px; line-height: 1.6; color: var(--color-fg);
  margin: 0 0 var(--space-5) 0;
  position: relative;
}
.ps-block p strong { font-weight: var(--fw-semibold); }
.ps-block .quote-inline {
  font-style: italic; color: var(--color-primary);
  font-weight: var(--fw-light);
}

/* ---------- footer ---------- */
.footer {
  padding: var(--space-8) 0 var(--space-7);
  background: var(--ink-900);
  border-top: 1px solid var(--color-border);
}
body[data-theme="light"] .footer { background: #ebe7dc; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-6);
  margin-bottom: var(--space-7);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h5 {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: var(--fw-semibold); color: var(--color-fg-subtle);
  margin: 0 0 var(--space-4) 0;
}
.footer-col a {
  display: block;
  font-size: 14px; color: var(--color-fg-muted);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--color-fg); }
.footer-tagline {
  font-size: 14px; color: var(--color-fg-muted);
  line-height: 1.5; margin: var(--space-4) 0 0 0;
  max-width: 320px;
}
.footer-bottom {
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
  display: flex; justify-content: space-between; gap: var(--space-4);
  font-size: 12px; color: var(--color-fg-subtle);
  flex-wrap: wrap;
}

/* ---------- lead magnet sticky bar ---------- */
.leadbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(12,12,20,0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  transform: translateY(110%);
  transition: transform var(--dur-slow) var(--ease-emphasis);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.4);
}
body[data-theme="light"] .leadbar {
  background: rgba(255,255,255,0.88);
}
.leadbar.visible { transform: translateY(0); }
.leadbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px var(--space-7);
  display: flex; align-items: center; gap: var(--space-5);
}
.leadbar-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(34,225,233,0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.leadbar-text {
  flex: 1; display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.leadbar-title {
  font-size: 14px; font-weight: var(--fw-semibold);
  color: var(--color-fg);
}
.leadbar-sub {
  font-size: 12px; color: var(--color-fg-muted);
}
.leadbar-close {
  background: none; border: none; cursor: pointer;
  color: var(--color-fg-subtle); padding: 8px;
  border-radius: 50%;
  transition: color var(--dur-fast), background var(--dur-fast);
  flex-shrink: 0;
}
.leadbar-close:hover { color: var(--color-fg); background: var(--color-surface); }
@media (max-width: 640px) {
  .leadbar-inner { padding: 12px var(--space-4); gap: var(--space-3); }
  .leadbar-sub { display: none; }
}

/* ---------- modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6,6,11,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-standard);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--color-bg-raised);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift), 0 0 0 1px var(--color-border);
  max-width: 520px; width: 100%;
  max-height: 90vh; overflow: auto;
  padding: var(--space-7);
  transform: translateY(20px) scale(0.98);
  transition: transform var(--dur-slow) var(--ease-emphasis);
  position: relative;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; cursor: pointer;
  color: var(--color-fg-muted); padding: 8px;
  border-radius: 50%;
}
.modal-close:hover { color: var(--color-fg); }
.modal h3 {
  font-size: 26px; font-weight: var(--fw-semibold);
  letter-spacing: -0.015em; margin: 0 0 var(--space-3) 0;
  padding-right: 40px;
}
.modal-sub { font-size: 14px; color: var(--color-fg-muted); margin-bottom: var(--space-6); }
.field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: var(--space-4);
}
.field label {
  font-size: 12px; font-weight: var(--fw-semibold);
  color: var(--color-fg-muted);
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-family: var(--font-sans); font-size: 15px;
  color: var(--color-fg);
  transition: border-color var(--dur-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(123,92,255,0.18);
}
.modal-foot {
  margin-top: var(--space-6);
  display: flex; gap: var(--space-3); align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.modal-foot .note { font-size: 12px; color: var(--color-fg-subtle); }

.modal-success {
  text-align: center;
  padding: var(--space-5) 0;
}
.modal-success .check-ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(200,255,77,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--lime);
}

/* ---------- scroll reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-slow) var(--ease-emphasis),
              transform var(--dur-slow) var(--ease-emphasis);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- divider ---------- */
.section-head {
  max-width: 760px;
  margin-bottom: var(--space-7);
}
.section-head h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: var(--space-3) 0 0 0;
  text-wrap: balance;
}
.section-head h2 .accent { color: var(--color-primary); }
.section-head p {
  font-size: 17px; line-height: 1.55;
  color: var(--color-fg-muted);
  max-width: 640px;
  margin: var(--space-4) 0 0 0;
}

/* ---------- utility ---------- */
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-7 { margin-top: var(--space-7); }

/* Hide tweaks UI when not in tweak mode (handled by panel itself) */

/* ---------- positioning band ---------- */
.positioning-band {
  isolation: isolate;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(12,12,20,0.4) 50%,
    transparent 100%);
}
body[data-theme="light"] .positioning-band {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255,255,255,0.4) 50%,
    transparent 100%);
}
/* sharp soft aurora wash, no blur — pure CSS gradients */
.positioning-aurora {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 80% at 5% 50%, rgba(123,92,255,0.18) 0%, transparent 55%),
    radial-gradient(50% 90% at 95% 50%, rgba(34,225,233,0.14) 0%, transparent 55%),
    radial-gradient(40% 60% at 50% 100%, rgba(242,62,143,0.10) 0%, transparent 60%);
}
body[data-theme="light"] .positioning-aurora {
  background:
    radial-gradient(60% 80% at 5% 50%, rgba(123,92,255,0.10) 0%, transparent 55%),
    radial-gradient(50% 90% at 95% 50%, rgba(34,225,233,0.10) 0%, transparent 55%);
}
/* thin sharp arcs — Solana-style sweep, crisp at any zoom */
.positioning-arc {
  position: absolute; z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: transparent;
}
.positioning-arc-1 {
  width: 1400px; height: 1400px;
  top: -1100px; left: 50%;
  transform: translateX(-50%);
  border: 1px solid transparent;
  background:
    conic-gradient(from 235deg at 50% 50%,
      transparent 0deg,
      transparent 80deg,
      rgba(123,92,255,0.55) 110deg,
      rgba(34,225,233,0.55) 140deg,
      rgba(242,62,143,0.45) 170deg,
      transparent 200deg,
      transparent 360deg);
  -webkit-mask:
    radial-gradient(circle at 50% 50%, transparent 698px, #000 700px, #000 702px, transparent 704px);
          mask:
    radial-gradient(circle at 50% 50%, transparent 698px, #000 700px, #000 702px, transparent 704px);
}
.positioning-arc-2 {
  width: 1800px; height: 1800px;
  bottom: -1450px; left: 50%;
  transform: translateX(-50%);
  background:
    conic-gradient(from 55deg at 50% 50%,
      transparent 0deg,
      transparent 80deg,
      rgba(34,225,233,0.40) 110deg,
      rgba(123,92,255,0.45) 140deg,
      rgba(200,255,77,0.30) 170deg,
      transparent 200deg,
      transparent 360deg);
  -webkit-mask:
    radial-gradient(circle at 50% 50%, transparent 898px, #000 900px, #000 902px, transparent 904px);
          mask:
    radial-gradient(circle at 50% 50%, transparent 898px, #000 900px, #000 902px, transparent 904px);
}
