

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--ink-900);
  color: var(--bone-100);
  font-family: var(--font-text);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
::selection { background: rgba(201,163,104,0.26); color: var(--bone-100); }
:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; }

.s-treat { filter: contrast(1.06) saturate(0.97) brightness(1.0); }

.s-container { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: clamp(20px, 5vw, 56px); }
.s-narrow { max-width: 880px; }
.s-section { padding-block: clamp(72px, 11vw, 148px); position: relative; }
.s-section.tight { padding-block: clamp(56px, 8vw, 104px); }

.s-eyebrow {
  font-family: var(--font-mono); font-weight: var(--w-med);
  font-size: var(--t-label); letter-spacing: var(--track-label);
  text-transform: uppercase; color: var(--gold-500);
  display: inline-flex; align-items: center; gap: 14px;
}
.s-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--gold-500); flex: none; }
.s-eyebrow.no-rule::before { display: none; }

.s-rule-short { width: 48px; height: 2px; background: var(--gold-500); border: 0; margin: 0; }

.s-header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 56px);
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.s-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,7,6,0.72) 0%, rgba(8,7,6,0.34) 55%, transparent 100%);
  transition: opacity var(--dur) var(--ease);
}
.s-header.scrolled::before { opacity: 0; }
.s-header.scrolled {
  padding: 13px clamp(20px, 5vw, 56px);
  background: rgba(11,10,9,0.82);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  backdrop-filter: saturate(1.1) blur(14px);
  border-bottom: 1px solid var(--hair);
}
.s-header .ln-logo .word .name { font-size: 16px; letter-spacing: 0.16em; transition: font-size var(--dur) var(--ease); }
.s-header.scrolled .ln-mark { --mk: 36px; }
.s-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 34px); }
.s-nav a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--bone-300); position: relative; padding: 6px 0;
  transition: color var(--dur) var(--ease);
}
.s-nav a:hover { color: var(--gold-400); }
.s-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:0; height:1px; background:var(--gold-500); transition: right var(--dur) var(--ease); }
.s-nav a:hover::after { right: 0; }
.s-header .ln-btn { padding: 11px 22px; }

.s-burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 10px; margin: -10px;
}
.s-burger span { width: 26px; height: 1.5px; background: var(--bone-100); transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }

.s-mobile {
  position: fixed; inset: 0; z-index: 90; background: var(--ink-900);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: clamp(28px, 8vw, 64px);
  transform: translateY(-100%); transition: transform var(--dur-slow) var(--ease);
  pointer-events: none;
}
.s-mobile.open { transform: translateY(0); pointer-events: auto; }
.s-mobile .m-close { position: absolute; top: 22px; right: clamp(20px, 5vw, 40px); background: none; border: 0; color: var(--bone-300); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; cursor: pointer; padding: 10px; }
.s-mobile .m-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 24px; }
.s-mobile a { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 9vw, 48px); color: var(--bone-100); line-height: 1.3; letter-spacing: -0.01em; }
.s-mobile a:hover, .s-mobile a:active { color: var(--gold-400); }
.s-mobile a .idx { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--bone-500); margin-right: 16px; vertical-align: middle; }
.s-mobile .m-cta { margin-top: 36px; }

@media (max-width: 880px) {
  .s-nav { display: none; }
  .s-header > .ln-btn { display: none; }
  .s-burger { display: flex; }
}

.s-hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.04fr 0.96fr; background: var(--ink-900); overflow: hidden; }
.s-hero.short { min-height: 86svh; }
.s-hero .s-hero-left {
  position: relative; z-index: 3;
  padding: clamp(96px, 12vh, 150px) clamp(24px, 5vw, 72px) clamp(40px, 7vh, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.s-hero-eyebrow { margin-bottom: 26px; }
.s-hero h1 {
  font-family: var(--font-display); font-weight: var(--w-semi);
  font-size: clamp(34px, 4.6vw, 70px); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--fg); margin: 0; text-wrap: balance;
}
.s-hero h1 em { font-style: italic; color: var(--gold-400); font-weight: var(--w-med); }
.s-hero .s-hero-sub {
  font-family: var(--font-text); font-weight: var(--w-light); font-size: clamp(15px, 1.4vw, 19px);
  color: var(--bone-300); max-width: 44ch; margin: clamp(20px,3vh,30px) 0 clamp(28px,4vh,38px); line-height: 1.6;
}
.s-hero .s-hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.s-hero .s-hero-right { position: relative; border-left: 1px solid var(--hair); overflow: hidden; }
.s-hero .s-hero-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--focal, 50% 24%); }
.s-hero .s-hero-right .s-frame-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,7,6,0) 50%, rgba(8,7,6,0.72)); }

.s-ticks { position: absolute; inset: clamp(14px,2vw,22px); pointer-events: none; z-index: 2; }
.s-ticks span { position: absolute; width: 15px; height: 15px; }
.s-ticks .tl { top: 0; left: 0; border-top: 1px solid var(--hair-gold); border-left: 1px solid var(--hair-gold); }
.s-ticks .tr { top: 0; right: 0; border-top: 1px solid var(--hair-gold); border-right: 1px solid var(--hair-gold); }
.s-ticks .bl { bottom: 0; left: 0; border-bottom: 1px solid var(--hair-gold); border-left: 1px solid var(--hair-gold); }
.s-ticks .br { bottom: 0; right: 0; border-bottom: 1px solid var(--hair-gold); border-right: 1px solid var(--hair-gold); }
.s-frame-cap { position: absolute; left: clamp(20px,2.4vw,30px); bottom: clamp(18px,2.4vw,28px); z-index: 3; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-300); }
.s-scroll-hint { position: absolute; left: clamp(24px,5vw,72px); bottom: 30px; z-index: 3; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-500); display: flex; align-items: center; gap: 10px; }
.s-scroll-hint::after { content:""; width: 36px; height: 1px; background: var(--bone-700); animation: s-pull 2.6s var(--ease) infinite; transform-origin: left; }
@keyframes s-pull { 0%,100%{ transform: scaleX(0.4); opacity:0.5; } 50%{ transform: scaleX(1); opacity:1; } }

@media (max-width: 860px) {
  .s-hero, .s-hero.short { grid-template-columns: 1fr; min-height: auto; }
  .s-hero .s-hero-right { order: -1; border-left: 0; border-bottom: 1px solid var(--hair); aspect-ratio: 4/5; height: auto; max-height: 72svh; }
  .s-hero .s-hero-right img { object-position: var(--focal-m, var(--focal, 50% 20%)); }
  .s-hero .s-hero-left { padding-top: clamp(34px,6vh,56px); padding-bottom: clamp(40px,8vh,64px); }
  .s-scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .s-hero .s-hero-right { aspect-ratio: 3/4; max-height: 66svh; }
}

.s-statement {
  font-family: var(--font-display); font-weight: var(--w-semi);
  font-size: clamp(28px, 4vw, 56px); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--fg); margin: 0; text-wrap: balance;
}
.s-statement em { font-style: italic; color: var(--gold-400); font-weight: var(--w-med); }
.s-statement .mute { color: var(--bone-500); }
.s-lead { font-family: var(--font-text); font-weight: var(--w-light); font-size: clamp(17px, 1.8vw, 21px); line-height: 1.62; color: var(--bone-300); margin: 0; text-wrap: pretty; }
.s-body { font-family: var(--font-text); font-weight: var(--w-reg); font-size: var(--t-body-lg); line-height: var(--lh-body); color: var(--bone-300); text-wrap: pretty; }
.s-body strong, .s-lead strong { color: var(--bone-100); font-weight: var(--w-semi); }
.s-h2 { font-family: var(--font-display); font-weight: var(--w-semi); font-size: var(--t-h2); line-height: 1.1; letter-spacing: -0.01em; color: var(--fg); margin: 0; text-wrap: balance; }
.s-h3 { font-family: var(--font-display); font-weight: var(--w-med); font-size: var(--t-h3); line-height: 1.2; color: var(--fg); margin: 0; }

.s-sechead { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(40px, 6vw, 72px); }
.s-sechead.center { align-items: center; text-align: center; }

.s-moments { display: flex; flex-direction: column; border-top: 1px solid var(--hair); }
.s-moment {
  display: grid; grid-template-columns: minmax(58px, 0.4fr) 1.6fr 2fr; gap: clamp(16px, 3vw, 40px);
  align-items: baseline; padding: clamp(22px, 3vw, 34px) 0; border-bottom: 1px solid var(--hair);
  transition: background var(--dur) var(--ease);
}
.s-moment:hover { background: linear-gradient(90deg, rgba(201,163,104,0.04), transparent 70%); }
.s-moment .m-no { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--gold-500); }
.s-moment .m-title { font-family: var(--font-display); font-weight: var(--w-med); font-size: clamp(20px, 2.2vw, 28px); color: var(--bone-100); line-height: 1.15; }
.s-moment .m-desc { font-family: var(--font-text); font-weight: var(--w-light); font-size: 15.5px; line-height: 1.6; color: var(--bone-300); }
@media (max-width: 720px) {
  .s-moment { grid-template-columns: 44px 1fr; row-gap: 8px; }
  .s-moment .m-desc { grid-column: 2; }
}

.s-paths { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(16px, 2vw, 24px); }
.s-path {
  background: var(--ink-800); border: 1px solid var(--hair); padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; min-height: 340px; position: relative;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.s-path:hover { border-color: var(--hair-gold); transform: translateY(-2px); }
.s-path.primary { background: linear-gradient(180deg, rgba(201,163,104,0.05), transparent 60%), var(--ink-800); border-color: var(--hair-gold); }
.s-path .p-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-500); }
.s-path .p-name { font-family: var(--font-display); font-weight: var(--w-semi); font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -0.01em; margin: 18px 0 0; line-height: 1.06; }
.s-path .p-desc { font-family: var(--font-text); font-weight: var(--w-light); font-size: 16px; line-height: 1.6; color: var(--bone-300); margin: 16px 0 0; }
.s-path .p-for { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--bone-300); margin: 18px 0 0; padding-left: 16px; border-left: 1px solid var(--hair-gold); }
.s-path .p-foot { margin-top: auto; padding-top: 28px; }
@media (max-width: 720px) { .s-paths { grid-template-columns: 1fr; } .s-path { min-height: 0; } }

.s-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.s-pillar { background: var(--ink-900); padding: clamp(26px, 3vw, 44px); }
.s-pillar .pl-no { font-family: var(--font-display); font-style: italic; font-size: 28px; color: var(--gold-500); line-height: 1; }
.s-pillar .pl-t { font-family: var(--font-display); font-weight: var(--w-med); font-size: clamp(19px, 2vw, 24px); margin: 16px 0 12px; color: var(--bone-100); }
.s-pillar .pl-d { font-family: var(--font-text); font-weight: var(--w-light); font-size: 15.5px; line-height: 1.62; color: var(--bone-300); margin: 0; }
@media (max-width: 720px) { .s-pillars { grid-template-columns: 1fr; } }

.s-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.s-list li { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--hair); }
.s-list li > * { min-width: 0; }
.s-list li::before { content: "↳"; font-family: var(--font-mono); color: var(--gold-500); font-size: 15px; line-height: 1.6; }
.s-list li .li-t { font-family: var(--font-text); font-weight: var(--w-med); font-size: 16.5px; color: var(--bone-100); }
.s-list li .li-d { font-family: var(--font-text); font-weight: var(--w-light); font-size: 15px; color: var(--bone-300); line-height: 1.55; }

.s-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.s-outcome { background: var(--ink-900); padding: clamp(24px,2.6vw,34px); }
.s-outcome .o-no { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--gold-500); }
.s-outcome p { font-family: var(--font-text); font-weight: var(--w-reg); font-size: 16px; line-height: 1.55; color: var(--bone-100); margin: 14px 0 0; }
.s-outcome p strong { color: var(--gold-300); font-weight: var(--w-med); }
@media (max-width: 860px) { .s-outcomes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .s-outcomes { grid-template-columns: 1fr; } }

.s-filter { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 22px); }
.s-filter-col { border: 1px solid var(--hair); padding: clamp(26px, 3vw, 40px); background: var(--ink-850); }
.s-filter-col.yes { border-color: var(--hair-gold); }
.s-filter-col h4 { font-family: var(--font-display); font-weight: var(--w-med); font-size: clamp(20px,2.2vw,26px); margin: 0 0 6px; color: var(--bone-100); }
.s-filter-col .fk { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 22px; display: block; }
.s-filter-col.yes .fk { color: var(--gold-500); }
.s-filter-col.no .fk { color: var(--bone-500); }
.s-filter-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.s-filter-col li { display: flex; gap: 14px; align-items: baseline; font-family: var(--font-text); font-weight: var(--w-light); font-size: 15.5px; line-height: 1.5; color: var(--bone-300); }
.s-filter-col li::before { font-family: var(--font-mono); font-size: 13px; line-height: 1.4; flex: none; }
.s-filter-col.yes li::before { content: "+"; color: var(--gold-500); }
.s-filter-col.no li::before { content: "—"; color: var(--bone-700); }
@media (max-width: 720px) { .s-filter { grid-template-columns: 1fr; } }

.s-quote { border-left: 1px solid var(--hair-gold); padding: 6px 0 6px clamp(22px, 3vw, 38px); }
.s-quote blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: var(--w-reg); font-size: clamp(20px, 2.6vw, 30px); line-height: 1.32; color: var(--bone-100); text-wrap: pretty; }
.s-quote .q-by { margin-top: 22px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-300); }
.s-quote .q-by b { color: var(--gold-400); font-weight: var(--w-semi); }
.s-quote .q-by .ctx { color: var(--bone-500); }

.s-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px,2vw,22px); }
.s-tcard { background: var(--ink-800); border: 1px solid var(--hair); overflow: hidden; display: flex; flex-direction: column; transition: border-color var(--dur) var(--ease); }
.s-tcard:hover { border-color: var(--hair-gold); }
.s-tcard .t-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--ink-850); border-bottom: 1px solid var(--hair); }
.s-tcard .t-media img { width: 100%; height: 100%; object-fit: cover; }
.s-tcard .t-media .t-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8,7,6,0.6)); }
.s-tcard .t-media .t-flag { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-300); }
.s-tcard .t-body { padding: clamp(22px,2.4vw,30px); }
.s-tcard blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-size: clamp(17px,1.8vw,20px); line-height: 1.4; color: var(--bone-100); }
.s-tcard .t-by { margin-top: 18px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-300); }
.s-tcard .t-by b { color: var(--gold-400); font-weight: var(--w-semi); }
@media (max-width: 720px) { .s-proof { grid-template-columns: 1fr; } }

.s-stats { display: flex; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap; border-top: 1px solid var(--hair); padding-top: 28px; }
.s-stat .st-n { font-family: var(--font-display); font-weight: var(--w-semi); font-size: clamp(30px, 3.4vw, 46px); color: var(--gold-500); line-height: 1; letter-spacing: -0.01em; }
.s-stat .st-l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-500); margin-top: 10px; }

.s-price {
  border: 1px solid var(--hair-gold); background:
    radial-gradient(120% 120% at 0% 0%, rgba(201,163,104,0.07), transparent 55%), var(--ink-850);
  padding: clamp(32px, 4vw, 56px); position: relative; overflow: hidden;
}
.s-price .pr-name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-500); }
.s-price .pr-hero { font-family: var(--font-display); font-weight: var(--w-semi); font-size: clamp(48px, 7vw, 84px); line-height: 1; letter-spacing: -0.02em; color: var(--bone-100); margin: 20px 0 0; }
.s-price .pr-hero small { font-family: var(--font-text); font-weight: var(--w-light); font-size: 0.3em; color: var(--bone-500); letter-spacing: 0; vertical-align: middle; }
.s-price .pr-sub { font-family: var(--font-text); font-weight: var(--w-light); font-size: 18px; color: var(--bone-300); margin: 16px 0 0; }
.s-price .pr-sub b { color: var(--bone-100); font-weight: var(--w-semi); }
.s-price .pr-divider { height: 1px; background: var(--hair); margin: clamp(28px,3vw,40px) 0; }
.s-price .pr-incl { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.s-price .pr-incl li { list-style: none; display: flex; gap: 12px; align-items: baseline; font-family: var(--font-text); font-weight: var(--w-light); font-size: 15px; color: var(--bone-300); }
.s-price .pr-incl li::before { content: "·"; color: var(--gold-500); font-size: 20px; line-height: 1; flex: none; }
.s-price .pr-note { font-family: var(--font-text); font-style: italic; font-weight: var(--w-light); font-size: 14.5px; color: var(--bone-500); margin: 28px 0 0; line-height: 1.6; }
.s-price .pr-foot { margin-top: 30px; }
@media (max-width: 600px) { .s-price .pr-incl { grid-template-columns: 1fr; } }

.s-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.s-step { background: var(--ink-900); padding: clamp(24px,2.6vw,34px); }
.s-step .stp-n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--gold-500); }
.s-step .stp-t { font-family: var(--font-display); font-weight: var(--w-med); font-size: 19px; margin: 14px 0 10px; color: var(--bone-100); }
.s-step .stp-d { font-family: var(--font-text); font-weight: var(--w-light); font-size: 14.5px; line-height: 1.55; color: var(--bone-300); margin: 0; }
@media (max-width: 860px) { .s-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .s-steps { grid-template-columns: 1fr; } }

.s-faq { border-top: 1px solid var(--hair); }
.s-faq-item { border-bottom: 1px solid var(--hair); }
.s-faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: clamp(22px,2.6vw,30px) 0; color: var(--bone-100);
  font-family: var(--font-display); font-weight: var(--w-med); font-size: clamp(18px,2vw,23px); line-height: 1.3; }
.s-faq-q .fq-i { font-family: var(--font-mono); font-size: 18px; color: var(--gold-500); flex: none; transition: transform var(--dur) var(--ease); line-height: 1; }
.s-faq-item.open .fq-i { transform: rotate(45deg); }
.s-faq-a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease); }
.s-faq-a-inner { padding: 0 0 clamp(22px,2.6vw,30px); font-family: var(--font-text); font-weight: var(--w-light); font-size: 16.5px; line-height: 1.65; color: var(--bone-300); max-width: 70ch; }

.s-cta-band { position: relative; text-align: center; overflow: hidden;
  background: radial-gradient(80% 120% at 50% 120%, rgba(201,163,104,0.12), transparent 55%), var(--ink-900); }
.s-cta-band .s-statement { margin-inline: auto; max-width: 22ch; }
.s-cta-band .cb-sub { font-family: var(--font-text); font-weight: var(--w-light); font-size: 18px; color: var(--bone-300); max-width: 52ch; margin: 24px auto 36px; line-height: 1.6; }
.s-cta-band .cb-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-500); margin-top: 26px; }

.s-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.s-feature.reverse .s-feature-media { order: 2; }
.s-feature-media { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--hair); }
.s-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.s-feature-media .fm-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,7,6,0.55)); }
.s-feature-media .fm-cap { position: absolute; left: 20px; bottom: 18px; z-index: 2; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-300); }
.s-feature-text { display: flex; flex-direction: column; gap: 22px; }
@media (max-width: 820px) {
  .s-feature { grid-template-columns: 1fr; gap: 32px; }
  .s-feature.reverse .s-feature-media { order: 0; }
  .s-feature-media { aspect-ratio: 4/5; max-height: 70svh; margin-inline: auto; width: 100%; }
}

.s-footer { border-top: 1px solid var(--hair); background: var(--ink-850); }
.s-footer .s-container { padding-block: clamp(56px, 7vw, 88px); }
.s-footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px,4vw,56px); }
.s-footer .f-sig .ln-logo { margin-bottom: 22px; }
.s-footer .f-tagline { font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--bone-300); line-height: 1.4; max-width: 30ch; }
.s-footer .f-col h5 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-500); margin: 0 0 18px; }
.s-footer .f-col a, .s-footer .f-col span { display: block; font-family: var(--font-text); font-weight: var(--w-light); font-size: 15px; color: var(--bone-300); padding: 7px 0; transition: color var(--dur) var(--ease); }
.s-footer .f-col a:hover { color: var(--gold-400); }
.s-footer-bot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: clamp(40px,5vw,64px); padding-top: 26px; border-top: 1px solid var(--hair); }
.s-footer-bot span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--bone-700); }
@media (max-width: 760px) { .s-footer-top { grid-template-columns: 1fr; gap: 36px; } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 90ms; }
.reveal.d2 { transition-delay: 180ms; }
.reveal.d3 { transition-delay: 270ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .s-scroll-hint::after { animation: none; }
}

.s-grain { position: relative; }

.s-divider { height: 1px; background: var(--hair); border: 0; margin: 0; }
.s-mt-s { margin-top: 16px; } .s-mt-m { margin-top: 28px; } .s-mt-l { margin-top: 44px; }
.s-glow { background: radial-gradient(110% 80% at 12% 0%, rgba(201,163,104,0.08), transparent 52%), var(--ink-900); }

.s-hero h1, .s-statement, .s-h2, .s-h3, .s-price .pr-hero,
.s-tcard blockquote, .s-quote blockquote, .s-pillar .pl-no,
.s-moment .m-title, .s-path .p-name, .s-faq-q, .s-cta-band .s-statement {
  font-optical-sizing: auto;
}
.s-hero h1 { line-height: 1.0; }
.s-statement { line-height: 1.1; }

.s-cine-media { position: relative; }
.s-cine-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(70% 60% at 12% 8%, var(--glow-teal), transparent 60%),
    radial-gradient(80% 70% at 95% 100%, rgba(201,163,104,0.10), transparent 62%);
  mix-blend-mode: screen;
}
.s-cine-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,7,6,0.30) 0%, transparent 22%, transparent 60%, rgba(8,7,6,0.55) 100%),
    radial-gradient(120% 100% at 50% 50%, transparent 58%, var(--vignette) 100%);
}
.s-cine-media > img, .s-cine-media > .s-treat { position: relative; z-index: 0; }

.s-hero .s-hero-right::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(60% 55% at 10% 6%, var(--glow-teal), transparent 60%),
    radial-gradient(120% 100% at 50% 50%, transparent 60%, var(--vignette) 100%);
  mix-blend-mode: screen;
}
.s-feature-media { position: relative; }
.s-feature-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(70% 60% at 14% 8%, var(--glow-teal), transparent 62%);
  mix-blend-mode: screen;
}
.s-feature-media .fm-scrim { z-index: 2; }
.s-feature-media .fm-cap { z-index: 3; }
.s-hero .s-frame-scrim, .s-hero .s-ticks, .s-hero .s-frame-cap { z-index: 2; }

.s-cine { background:
  radial-gradient(90% 70% at 8% 0%, rgba(201,163,104,0.08), transparent 52%),
  radial-gradient(80% 70% at 100% 100%, var(--glow-teal), transparent 55%),
  var(--ink-900); }

.s-burger { position: relative; z-index: 95; width: 46px; height: 46px; align-items: center; justify-content: center; }
.s-burger span { display: block; }
.s-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.s-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.s-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.s-mobile { visibility: hidden; transition: transform var(--dur-slow) var(--ease), visibility 0s linear var(--dur-slow); }
.s-mobile.open { visibility: visible; transition: transform var(--dur-slow) var(--ease), visibility 0s; }
.s-mobile .ln-logo { position: absolute; top: 20px; left: clamp(20px,5vw,40px); }

.s-mobile .ln-logo, .s-mobile .m-foot a, .s-mobile .m-foot .ln-btn, .s-mobile .m-contact a { font-size: 15px; }
.s-mobile .m-foot .ln-btn { font-family: var(--font-text); font-weight: var(--w-semi); }
.s-mobile a.m-link { display: flex; align-items: baseline; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--hair); }
.s-mobile a.m-link:last-of-type { border-bottom: 0; }
.s-mobile .m-foot { margin-top: clamp(24px,5vh,40px); display: flex; flex-direction: column; gap: 14px; }
.s-mobile .m-contact { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-500); }
.s-mobile .m-contact a { color: var(--gold-400); }

.s-stickycta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px clamp(16px,5vw,24px) calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(11,10,9,0.90); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-top: 1px solid var(--hair-gold);
  transform: translateY(110%); transition: transform var(--dur) var(--ease);
}
.s-stickycta.show { transform: translateY(0); }
.s-stickycta .sc-label { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.s-stickycta .sc-k { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-500); }
.s-stickycta .sc-v { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--bone-100); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s-stickycta .ln-btn { flex: none; padding: 13px 20px; }
@media (max-width: 720px) { .s-stickycta { display: flex; } body.has-stickycta { padding-bottom: 76px; } }

/* Botao flutuante de WhatsApp — global, aparece apos rolar; sobrio (sem icone verde/emoji) */
.s-wafloat {
  position: fixed; right: clamp(16px,2.5vw,26px); bottom: clamp(16px,2.5vw,26px); z-index: 75;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold-500); color: var(--ink-900);
  font-family: var(--font-mono); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 20px; text-decoration: none; border-radius: var(--r-0);
  box-shadow: 0 14px 34px -12px rgba(0,0,0,0.7);
  opacity: 0; transform: translateY(14px) scale(0.98); pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.s-wafloat.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.s-wafloat:hover { background: var(--gold-400); transform: translateY(-2px); }
.s-wafloat:active { background: var(--gold-600); transform: translateY(0); }
@media (max-width: 720px) {
  .s-wafloat { font-size: 11px; padding: 12px 15px; letter-spacing: 0.1em; }
  body.has-stickycta .s-wafloat { display: none; }
}

/* Video em destaque (16:9 responsivo) + mockup de aula online (dispositivos flutuando sobre glow dourado) */
.s-video { position: relative; width: 100%; max-width: 1080px; margin: clamp(28px,4vw,40px) auto 0; aspect-ratio: 16 / 9; border: 1px solid var(--hair-gold); background: var(--ink-850); overflow: hidden; }
.s-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.s-mockup { aspect-ratio: 1 / 1; border: none; background: radial-gradient(50% 48% at 50% 50%, rgba(224,199,154,0.60), rgba(201,163,104,0.22) 45%, transparent 72%); }
.s-mockup img { object-fit: contain; }
.s-mockup .fm-scrim { display: none; }
@media (max-width: 720px) {
  /* vídeo em tela cheia no celular (rompe o padding lateral do container) */
  .s-video { width: 100vw; max-width: 100vw; margin-inline: calc(50% - 50vw); border-inline: 0; }
}

.s-feature-quote { position: relative; overflow: hidden; border: 1px solid var(--hair); background: var(--ink-850); }
.s-feature-quote .fq-media { position: absolute; inset: 0; z-index: 0; }
.s-feature-quote .fq-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.s-feature-quote .fq-veil { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(9,8,7,0.94) 0%, rgba(9,8,7,0.82) 42%, rgba(9,8,7,0.5) 100%),
              radial-gradient(80% 80% at 100% 100%, var(--glow-teal), transparent 55%); }
.s-feature-quote .fq-body { position: relative; z-index: 2; padding: clamp(36px,6vw,80px); max-width: 760px; }
.s-feature-quote blockquote { margin: 0; font-family: var(--font-display); font-weight: var(--w-light); font-style: italic;
  font-size: clamp(24px,3.4vw,42px); line-height: 1.28; letter-spacing: -0.015em; color: var(--bone-100); text-wrap: pretty; }
.s-feature-quote blockquote b { font-weight: var(--w-med); font-style: italic; color: var(--gold-300); }
.s-feature-quote .fq-by { margin-top: 28px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-300); }
.s-feature-quote .fq-by b { color: var(--gold-400); font-weight: var(--w-semi); }

.s-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.6vw,20px); }
.s-qcard { border: 1px solid var(--hair); background: var(--ink-800); padding: clamp(26px,2.4vw,34px); display: flex; flex-direction: column; position: relative; transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.s-qcard:hover { border-color: var(--hair-gold); transform: translateY(-2px); }
.s-qcard .qc-mark { font-family: var(--font-display); font-style: italic; font-size: 46px; line-height: 0.6; color: var(--gold-500); opacity: 0.5; height: 26px; }
.s-qcard blockquote { margin: 0; font-family: var(--font-display); font-weight: var(--w-light); font-style: italic; font-size: clamp(17px,1.5vw,20px); line-height: 1.42; color: var(--bone-100); text-wrap: pretty; }
.s-qcard blockquote b { color: var(--gold-300); font-weight: var(--w-med); font-style: italic; }
.s-qcard .qc-by { margin-top: auto; padding-top: 22px; display: flex; flex-direction: column; gap: 4px; }
.s-qcard .qc-name { font-family: var(--font-text); font-weight: var(--w-semi); font-size: 14.5px; color: var(--bone-100); letter-spacing: 0.01em; }
.s-qcard .qc-ctx { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-500); }
@media (max-width: 900px) { .s-quotes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .s-quotes { grid-template-columns: 1fr; } }

.s-screens-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.s-screens-hint { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-500); display: flex; align-items: center; gap: 10px; }
.s-screens-hint::after { content: "→"; color: var(--gold-500); }
.s-screens {
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(240px, 74vw, 300px);
  gap: clamp(12px,1.4vw,18px); overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px; margin: 0 calc(-1 * clamp(20px,5vw,56px)); padding-inline: clamp(20px,5vw,56px);
  scrollbar-width: thin; scrollbar-color: var(--ink-600) transparent;
}
.s-screens::-webkit-scrollbar { height: 6px; }
.s-screens::-webkit-scrollbar-thumb { background: var(--ink-600); border-radius: 999px; }
.s-screens::-webkit-scrollbar-track { background: transparent; }
.s-screen { scroll-snap-align: start; border: 1px solid var(--hair); background: var(--ink-850); overflow: hidden; position: relative; transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.s-screen:hover { border-color: var(--hair-gold); transform: translateY(-3px); }
.s-screen img { width: 100%; aspect-ratio: 9/16; object-fit: cover; object-position: 50% 0%; display: block; cursor: zoom-in; }
.s-screen .sc-flag { position: absolute; left: 12px; bottom: 11px; z-index: 2; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-300); }
.s-screen .sc-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 62%, rgba(8,7,6,0.78)); pointer-events: none; }
.s-screen.s-screen-stat { display: flex; align-items: center; justify-content: center; aspect-ratio: 9/16; border-color: var(--hair-gold); background: var(--ink-800); }
.s-screen-stat .stt { text-align: center; padding: 22px; }
.s-screen-stat .stt-n { font-family: var(--font-display); font-style: italic; font-weight: var(--w-light); font-size: 52px; line-height: 1; color: var(--gold-500); }
.s-screen-stat .stt-l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-400, var(--bone-500)); color: var(--bone-500); margin-top: 14px; }

@media (min-width: 1024px) {
  .s-screens { grid-auto-columns: 340px; overflow-x: auto; margin-inline: 0; padding-inline: 0; }
}

/* Carrossel de prova — navegação por setas (desktop) + zoom em lightbox */
.s-screens-wrap { position: relative; }
.s-screens-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; display: none; align-items: center; justify-content: center; background: var(--ink-900); border: 1px solid var(--hair-gold); color: var(--gold-500); font-family: var(--font-text); font-size: 20px; line-height: 1; cursor: pointer; transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.s-screens-nav:hover { color: var(--bone-100); border-color: var(--gold-500); }
.s-screens-nav[disabled] { opacity: 0.28; cursor: default; }
.s-screens-nav.prev { left: -10px; }
.s-screens-nav.next { right: -10px; }
@media (min-width: 1024px) { .s-screens-wrap.has-nav .s-screens-nav { display: flex; } }

.s-lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: clamp(16px,4vw,48px); background: rgba(8,7,6,0.92); }
.s-lightbox.open { display: flex; }
.s-lightbox img { max-width: min(440px, 92vw); max-height: 88vh; width: auto; height: auto; border: 1px solid var(--hair-gold); display: block; }
.s-lightbox-close { position: absolute; top: clamp(14px,3vw,26px); right: clamp(14px,3vw,26px); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--hair); color: var(--bone-300); font-family: var(--font-text); font-size: 22px; line-height: 1; cursor: pointer; transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.s-lightbox-close:hover { border-color: var(--gold-500); color: var(--bone-100); }
