/* ============================================================
   Life Training — Landing Page styles
   ============================================================ */

@import url("./tokens.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--fg-1);
  background: var(--bg-1);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* Accent override token — driven by Tweaks */
:root {
  --accent: var(--life-violet);
  --accent-hover: var(--life-violet-600);
  --accent-deep: var(--life-violet-700);
  --accent-soft: var(--life-violet-100);
  --accent-fg: #fff;
  --hl-bg: var(--accent);
  --section-pad-y: clamp(72px, 9vw, 128px);
}

/* ============================================================
   LAYOUT — container & sections
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}
section { position: relative; }
.section-pad { padding-top: var(--section-pad-y); padding-bottom: var(--section-pad-y); }

/* Light surfaces */
.bg-white { background: #FFFFFF; color: var(--fg-1); }
.bg-soft  { background: #F8F9FA; color: var(--fg-1); }
/* Dark surfaces */
.bg-ink   { background: #0A0A0A; color: var(--fg-on-dark-1); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--fg-on-dark-1); }

/* ============================================================
   TYPE helpers
   ============================================================ */
.eyebrow {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .star { color: var(--accent); font-weight: 900; }
.bg-ink .eyebrow { color: var(--fg-on-dark-2); }

.display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.06;
  text-wrap: balance;
  margin: 0;
}
.display-xl { font-size: clamp(36px, 5vw, 72px); line-height: 1.08; }
.display-lg { font-size: clamp(40px, 5.6vw, 80px); }
.display-md { font-size: clamp(34px, 4.2vw, 60px); }
.display-sm { font-size: clamp(28px, 3.2vw, 44px); }
.h3-life    { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.2; letter-spacing: -0.01em; margin: 0; }
.h4-life    { font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1.25; letter-spacing: -0.005em; margin: 0; }

.lead {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
}
.bg-ink .lead { color: var(--fg-on-dark-2); }

.body-life { font-size: 16px; line-height: 1.55; color: var(--fg-2); margin: 0; text-wrap: pretty; }
.bg-ink .body-life { color: var(--fg-on-dark-2); }

/* Chip — the signature violet highlight */
.hl {
  background: var(--hl-bg);
  color: #fff;
  padding: 0 0.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 4px;
  line-height: inherit;
}
.hl-ink { background: #0A0A0A; color: #fff; padding: 0 0.08em; box-decoration-break: clone; -webkit-box-decoration-break: clone; border-radius: 4px; }
.hl-out {
  border: 1.5px solid currentColor;
  padding: 0 0.08em;
  border-radius: 4px;
  display: inline-block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out), border-color var(--dur-2) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-ghost-light {
  background: transparent;
  color: #0A0A0A;
  border-color: rgba(0,0,0,0.18);
}
.btn-ghost-light:hover { border-color: #0A0A0A; }
.btn-lg { height: 64px; padding: 0 36px; font-size: 17px; }
.btn-sm { height: 44px; padding: 0 20px; font-size: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.site-nav .brand .ast { color: var(--accent); }
.site-nav .links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
}
.site-nav .links a:hover { color: #fff; }
@media (max-width: 720px) {
  .site-nav .links { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background-color: #2A1255;
  background-image: url('../assets/hero-bg.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(64px, 8vw, 120px);
  min-height: 88vh;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,8,42,0.92) 0%, rgba(20,8,42,0.75) 40%, rgba(20,8,42,0.18) 70%, rgba(20,8,42,0) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero .copy-col { max-width: 720px; }
@media (max-width: 980px) {
  .hero { background-position: 70% bottom; min-height: auto; }
  .hero::before { background: linear-gradient(180deg, rgba(20,8,42,0.85) 0%, rgba(20,8,42,0.7) 50%, rgba(20,8,42,0.55) 100%); }
}
.hero .eyebrow { color: var(--fg-on-dark-2); margin-bottom: 28px; }
.hero h1 { margin: 0 0 28px; }
.hero .subhead { margin: 0 0 36px; color: rgba(255,255,255,0.75); font-size: clamp(17px, 1.3vw, 20px); line-height: 1.5; max-width: 56ch; text-wrap: pretty; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 56px; }
.hero .cta-meta { color: rgba(255,255,255,0.55); font-size: 13px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 32px;
  max-width: 720px;
}
.hero-stats .stat { padding-right: 24px; }
.hero-stats .stat + .stat { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.14); }
.hero-stats .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stats .num .accent { color: var(--accent); }
.hero-stats .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.35;
  text-wrap: pretty;
}

.hero .visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .visual img.elemento {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 32px 80px rgba(107,31,224,0.42));
}
.hero .ghost-ast {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}
.hero .ghost-ast svg { width: 1400px; height: 1400px; position: absolute; right: -300px; top: -200px; color: var(--accent); }

.hero .play-card {
  position: absolute;
  left: -40px;
  bottom: -28px;
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero .play-card .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #1FB66E;
  box-shadow: 0 0 0 4px rgba(31,182,110,0.18);
}
.hero .play-card .small { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; text-transform: uppercase; }
.hero .play-card .big { font-size: 14px; color: #fff; font-weight: 500; }
@media (max-width: 980px) {
  .hero .play-card { display: none; }
}

/* Trusted-by strip */
.trusted {
  background: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
}
.trusted .inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 28px 0;
}
.trusted .label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.trusted .logos { display: flex; flex-wrap: wrap; gap: 32px 56px; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: rgba(255,255,255,0.75); }

/* ============================================================
   SECTION — Common section header (eyebrow + display title)
   ============================================================ */
.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-bottom: clamp(48px, 5vw, 80px);
}
.sec-head h2 { margin: 0; }
.sec-head .lead { margin-top: 4px; }

/* ============================================================
   SECTION 2 — Problem
   ============================================================ */
.problem .grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 900px) { .problem .grid { grid-template-columns: 1fr; } }

.problem .copy p { font-size: 18px; line-height: 1.55; margin: 0 0 22px; color: var(--fg-1); text-wrap: pretty; }
.problem .copy p:last-child { color: var(--fg-2); }
.problem .copy strong { color: var(--fg-1); }

.stat-card {
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 4px;
  transition: border-color var(--dur-2) var(--ease-out);
}
.stat-card:hover { border-color: rgba(0,0,0,0.4); }
.stat-card .big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--accent);
}
.stat-card .desc { font-size: 15px; line-height: 1.5; color: var(--fg-2); margin: 0; }
.stat-stack { display: grid; grid-template-columns: 1fr; gap: 12px; }

/* ============================================================
   SECTION 3 — Comparativo (table)
   ============================================================ */
.compare {
  background: #0A0A0A;
  color: #fff;
}
.compare-table {
  border-top: 1px solid rgba(255,255,255,0.16);
}
.compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.compare-row > div {
  padding: 22px 24px;
  font-size: 15px;
  line-height: 1.35;
  display: flex;
  align-items: center;
}
.compare-row > div + div { border-left: 1px solid rgba(255,255,255,0.10); }
.compare-row .row-label { color: rgba(255,255,255,0.72); font-weight: 500; }
.compare-row.head > div { padding-top: 28px; padding-bottom: 28px; }
.compare-row.head .col-head {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.compare-row.head .col-life {
  color: var(--accent);
  position: relative;
}
.compare-row .cell-life {
  background: rgba(107,31,224,0.10);
  color: #fff;
  font-weight: 500;
}
.compare-row.head .cell-life { background: rgba(107,31,224,0.16); }
.cell-good { color: var(--accent); font-weight: 700; }
.cell-bad { color: rgba(255,255,255,0.45); }
.cell-meh { color: rgba(255,255,255,0.7); }
.icon-check { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 860px) {
  .compare-row { grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); font-size: 13px; }
  .compare-row > div { padding: 14px 12px; font-size: 13px; }
  .compare-row.head .col-head { font-size: 11px; }
}

/* ============================================================
   SECTION 4 — Solução
   ============================================================ */
.solution .cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 760px) { .solution .cards { grid-template-columns: 1fr; } }

.feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 4px;
  transition: border-color var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
  min-height: 280px;
}
.feature-card:hover { border-color: rgba(0,0,0,0.4); transform: translateY(-2px); }
.feature-card .ico {
  width: 48px; height: 48px;
  border-radius: 4px;
  background: rgba(107,31,224,0.08);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.feature-card .ico svg { width: 26px; height: 26px; }
.feature-card h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.2; letter-spacing: -0.01em; }
.feature-card p { margin: 0; color: var(--fg-2); font-size: 15px; line-height: 1.5; text-wrap: pretty; }

/* Avatar special card */
.avatar-card {
  background: #0A0A0A;
  color: #fff;
  border-radius: 4px;
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 820px) { .avatar-card { grid-template-columns: 1fr; } }
.avatar-card h3 { margin: 0; font-family: var(--font-display); font-weight: 900; letter-spacing: -0.02em; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; }
.avatar-card .small-eb { color: rgba(255,255,255,0.55); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 24px; display: block; }
.avatar-card .options { display: flex; flex-direction: column; gap: 12px; }
.avatar-card .opt {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 22px 24px;
  border-radius: 4px;
}
.avatar-card .opt .dot {
  width: 12px; height: 12px; border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.avatar-card .opt .dot.a { background: var(--accent); box-shadow: 0 0 0 4px rgba(107,31,224,0.20); }
.avatar-card .opt .dot.b { background: #1FB66E; box-shadow: 0 0 0 4px rgba(31,182,110,0.20); }
.avatar-card .opt .lbl-title { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.avatar-card .opt .lbl-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.avatar-card .ghost-ast {
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  color: var(--accent);
  opacity: 0.08;
  pointer-events: none;
}

/* ============================================================
   SECTION 5 — How it works (timeline)
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
  counter-reset: step;
}
@media (max-width: 880px) { .timeline { grid-template-columns: 1fr; } }
.timeline .step {
  position: relative;
  padding: 32px 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.timeline .step + .step { padding-left: 32px; border-left: 1px dashed rgba(0,0,0,0.18); }
@media (max-width: 880px) {
  .timeline .step + .step { padding-left: 0; border-left: none; border-top: 1px dashed rgba(0,0,0,0.18); padding-top: 32px; margin-top: 16px; }
}
.timeline .num-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 4px;
}
.timeline .num-circle.c1 { background: var(--accent); }
.timeline .num-circle.c2 { background: #0A0A0A; }
.timeline .num-circle.c3 { background: #1FB66E; }
.timeline .step-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: flex-start;
}
.timeline .step h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.15; letter-spacing: -0.01em; }
.timeline .step p { margin: 0; color: var(--fg-2); font-size: 15px; line-height: 1.55; text-wrap: pretty; }

/* ============================================================
   SECTION 6 — Para quem
   ============================================================ */
.audience .cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.10);
}
@media (max-width: 760px) { .audience .cards { grid-template-columns: 1fr; } }
.audience-card {
  background: #F8F9FA;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 260px;
  transition: background var(--dur-2) var(--ease-out);
}
.audience-card:hover { background: #fff; }
.audience-card .ico {
  width: 44px; height: 44px;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.audience-card .ico svg { width: 36px; height: 36px; }
.audience-card h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.2; letter-spacing: -0.01em; }
.audience-card p { margin: 0; color: var(--fg-2); font-size: 15px; line-height: 1.55; text-wrap: pretty; }

/* ============================================================
   SECTION 7 — Incluído
   ============================================================ */
.included .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.10);
}
@media (max-width: 900px) { .included .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .included .grid { grid-template-columns: 1fr; } }
.include-card {
  background: #fff;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
}
.include-card .ico { width: 36px; height: 36px; color: var(--accent); }
.include-card .ico svg { width: 100%; height: 100%; }
.include-card h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.2; letter-spacing: -0.01em; }
.include-card p { margin: 0; color: var(--fg-2); font-size: 14px; line-height: 1.5; text-wrap: pretty; }

/* ============================================================
   SECTION 8 — Prova social
   ============================================================ */
.proof {
  background: #0A0A0A;
  color: #fff;
  text-align: center;
}
.proof .big-stat {
  text-align: center;
  margin: 40px auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.proof .big-stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 18vw, 280px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent);
  position: relative;
}
.proof .big-stat .num .x { color: #fff; }
.proof .big-stat .num::after {
  content: "";
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(closest-side, rgba(107,31,224,0.35), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.proof .big-stat .cap {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.01em;
  max-width: 30ch;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.proof .testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}
@media (max-width: 820px) { .proof .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-radius: 4px;
}
.testimonial .quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
  text-wrap: pretty;
}
.testimonial .quote::before { content: "“"; color: var(--accent); margin-right: 4px; }
.testimonial .quote::after { content: "”"; color: var(--accent); }
.testimonial .who {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.testimonial .who strong { color: #fff; font-weight: 500; display: block; margin-bottom: 2px; }

/* ============================================================
   SECTION 9 — FAQ
   ============================================================ */
.faq .list { border-top: 1px solid rgba(0,0,0,0.14); }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.14);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #0A0A0A;
  cursor: pointer;
}
.faq-q:hover { color: var(--accent); }
.faq-q .ind {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-3) var(--ease-out);
}
.faq-item.open .faq-q .ind { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-4) var(--ease-out);
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 60px 28px 0; color: var(--fg-2); font-size: 16px; line-height: 1.55; max-width: 70ch; text-wrap: pretty; }

/* ============================================================
   SECTION 10 — Form CTA
   ============================================================ */
.cta-final {
  background: #0A0A0A;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-final .ghost-ast {
  position: absolute;
  right: -200px; top: -120px;
  width: 720px; height: 720px;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
}
.cta-final .ghost-ast-2 {
  position: absolute;
  left: -160px; bottom: -180px;
  width: 520px; height: 520px;
  color: var(--accent);
  opacity: 0.05;
  pointer-events: none;
}
.cta-final h2 { max-width: 22ch; margin: 0 0 28px; position: relative; }
.cta-final .lead { color: rgba(255,255,255,0.75); max-width: 64ch; position: relative; margin-bottom: 56px; }

.form-shell {
  background: #fff;
  border-radius: 4px;
  padding: 56px 56px 48px;
  position: relative;
  box-shadow: 0 30px 80px rgba(107,31,224,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--life-black);
}
.form-grid { display: flex; flex-direction: column; gap: 36px; }
.form-head { display: flex; flex-direction: column; gap: 14px; max-width: 56ch; }
.form-head .small {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.form-h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--life-black);
}
.form-head .body-life { color: var(--fg-2); margin: 0; max-width: 52ch; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.field input {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-bottom: 1.5px solid rgba(0,0,0,0.18);
  background: transparent;
  padding: 12px 0 14px;
  font: inherit;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.3;
  color: var(--life-black);
  border-radius: 0;
  outline: none;
  transition: border-color var(--dur-2) var(--ease-out);
}
.field input::placeholder { color: var(--fg-3); }
.field input:hover { border-bottom-color: rgba(0,0,0,0.32); }
.field input:focus { border-bottom-color: var(--life-violet); }
.field-msg {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #C0252A;
  margin-top: 2px;
}
.field-err input { border-bottom-color: #C0252A; }
.field-err input:focus { border-bottom-color: #C0252A; }

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 8px;
}
.form-footer .btn[disabled] { opacity: 0.6; cursor: progress; }
.form-fineprint {
  font-size: 12px;
  color: var(--fg-3);
  max-width: 56ch;
  margin: 0;
  line-height: 1.5;
}

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 8px 0;
}
.form-success .small {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.form-success-mark {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--life-violet);
  color: #fff;
  margin-bottom: 8px;
}
.form-success-h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--life-black);
  max-width: 22ch;
}
.form-success .body-life { color: var(--fg-2); max-width: 52ch; }

@media (max-width: 720px) {
  .form-shell { padding: 32px 24px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 56px 0 32px;
  font-size: 14px;
}
.site-footer .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 24px;
}
.site-footer .brand-line { color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 28px; letter-spacing: -0.02em; }
.site-footer .brand-line .ast { color: var(--accent); }
.site-footer .lead-foot { color: rgba(255,255,255,0.7); max-width: 50ch; margin-top: 8px; font-size: 15px; line-height: 1.5; }
.site-footer .columns { display: flex; gap: 64px; flex-wrap: wrap; }
.site-footer .col h4 { margin: 0 0 12px; color: #fff; font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.site-footer .col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer .col a:hover { color: #fff; }
.site-footer .bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; letter-spacing: 0.04em; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }


/* ============================================================
   WORDPRESS INTEGRATION SAFEGUARDS
   Ensures the landing page design remains 100% identical to the
   original design by preventing WordPress theme styles from leaking in.
   ============================================================ */

.lp-life-plugin-wrapper,
.lp-life-plugin-wrapper * {
  box-sizing: border-box !important;
}

/* Force Aeonik / custom sans-serif fonts */
.lp-life-plugin-wrapper,
.lp-life-plugin-wrapper p,
.lp-life-plugin-wrapper span,
.lp-life-plugin-wrapper a,
.lp-life-plugin-wrapper li,
.lp-life-plugin-wrapper button,
.lp-life-plugin-wrapper label,
.lp-life-plugin-wrapper input {
  font-family: var(--font-sans) !important;
}

.lp-life-plugin-wrapper .display,
.lp-life-plugin-wrapper .display-xl,
.lp-life-plugin-wrapper .display-lg,
.lp-life-plugin-wrapper .display-md,
.lp-life-plugin-wrapper .display-sm,
.lp-life-plugin-wrapper h1,
.lp-life-plugin-wrapper h2,
.lp-life-plugin-wrapper h3,
.lp-life-plugin-wrapper h4,
.lp-life-plugin-wrapper .h3-life,
.lp-life-plugin-wrapper .h4-life {
  font-family: var(--font-display) !important;
}

/* Fix navigation bar to the top of the page, bypassing parent overflow limits of WP themes */
.lp-life-plugin-wrapper .site-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
}

/* Adjust position for logged-in users when WordPress Admin Bar is visible */
.admin-bar .lp-life-plugin-wrapper .site-nav {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  .admin-bar .lp-life-plugin-wrapper .site-nav {
    top: 46px !important;
  }
}

/* Compensate fixed navigation height (72px) in the Hero top padding to prevent overlap */
.lp-life-plugin-wrapper .hero {
  padding-top: calc(clamp(64px, 8vw, 120px) + 72px) !important;
}

/* Navigation Brand and Links safety resets */
.lp-life-plugin-wrapper .site-nav a.brand {
  color: #ffffff !important;
}

.lp-life-plugin-wrapper .site-nav a.brand span {
  color: #ffffff !important;
}

.lp-life-plugin-wrapper .site-nav a.brand .ast {
  color: var(--accent) !important;
}

.lp-life-plugin-wrapper .site-nav a.brand span:last-child {
  color: rgba(255,255,255,0.45) !important;
}

.lp-life-plugin-wrapper .site-nav .links a {
  color: rgba(255,255,255,0.75) !important;
}

.lp-life-plugin-wrapper .site-nav .links a:hover {
  color: #ffffff !important;
}

/* Override WordPress theme heading colors dynamically based on parent section colors */
.lp-life-plugin-wrapper h1,
.lp-life-plugin-wrapper h2,
.lp-life-plugin-wrapper h3,
.lp-life-plugin-wrapper h4,
.lp-life-plugin-wrapper h5,
.lp-life-plugin-wrapper h6 {
  color: inherit !important;
  margin: 0;
  padding: 0;
}

/* Reset default margins and line heights that WordPress themes apply */
.lp-life-plugin-wrapper p {
  margin: 0;
  line-height: 1.55 !important;
}

.lp-life-plugin-wrapper a {
  color: inherit !important;
  text-decoration: none !important;
}

.lp-life-plugin-wrapper a:hover {
  color: inherit !important;
  text-decoration: none !important;
}

/* Safeguard Button styles against aggressive theme CSS overrides */
.lp-life-plugin-wrapper .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out), border-color var(--dur-2) var(--ease-out) !important;
}

.lp-life-plugin-wrapper .btn:active {
  transform: translateY(1px) !important;
}

.lp-life-plugin-wrapper .btn-primary {
  background: var(--accent) !important;
  color: var(--accent-fg) !important;
  border: 1.5px solid transparent !important;
}

.lp-life-plugin-wrapper .btn-primary:hover {
  background: var(--accent-hover) !important;
  color: var(--accent-fg) !important;
}

.lp-life-plugin-wrapper .btn-ghost-dark {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.25) !important;
}

.lp-life-plugin-wrapper .btn-ghost-dark:hover {
  border-color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
}

.lp-life-plugin-wrapper .btn-ghost-light {
  background: transparent !important;
  color: #0A0A0A !important;
  border: 1.5px solid rgba(0,0,0,0.18) !important;
}

.lp-life-plugin-wrapper .btn-ghost-light:hover {
  border-color: #0A0A0A !important;
  background: rgba(0,0,0,0.04) !important;
}

/* Form inputs normalization to prevent theme overrides */
.lp-life-plugin-wrapper .field input {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 0 !important;
  border-bottom: 1.5px solid rgba(0,0,0,0.18) !important;
  background: transparent !important;
  padding: 12px 0 14px !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
  color: var(--life-black) !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  width: 100% !important;
  transition: border-color var(--dur-2) var(--ease-out) !important;
}

.lp-life-plugin-wrapper .field input:hover {
  border-bottom-color: rgba(0,0,0,0.32) !important;
}

.lp-life-plugin-wrapper .field input:focus {
  border-bottom-color: var(--accent) !important;
}

.lp-life-plugin-wrapper .field-err input {
  border-bottom-color: #C0252A !important;
}

/* Prevent list styles from theme breaking footer or sections */
.lp-life-plugin-wrapper ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.lp-life-plugin-wrapper li {
  margin: 0 !important;
  padding: 0 !important;
}
