/* ===== Lander ===== */

/* Top bar */
.topbar {
  position: relative; z-index: 20;
  padding-top: var(--safe-t);
  background: rgba(5,5,5,.82);
  -webkit-backdrop-filter: saturate(160%) blur(12px); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-in { display: flex; align-items: center; justify-content: center; height: 60px; }
.badge-row { text-align: center; margin: 0 0 14px; }
.logo { width: 120px; height: 32px; background: transparent; }
.logo.slot::before { background: none; border: 1px dashed var(--line); border-radius: 6px; font-size: 9px; }
.logo img { object-fit: contain; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 11px; border-radius: 999px; border: 1px solid rgba(227,59,54,.4); background: rgba(227,59,54,.1);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(227,59,54,.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(227,59,54,0); } 100% { box-shadow: 0 0 0 0 rgba(227,59,54,0); } }

/* Hero */
.hero { padding: 26px 0 30px; }
.hero .eyebrow { text-align: center; letter-spacing: .08em; font-size: 12px; max-width: 320px; margin: 0 auto; }
.hero-h { font-size: clamp(36px, 10.5vw, 52px); text-align: center; margin: 12px 0 10px; text-transform: uppercase; }
.fast { font-style: italic; color: var(--accent); padding-right: .06em; }
.hero-sub { text-align: center; margin: 0 0 18px; font-size: 16px; }

/* Phones: vertical 9:16, sized so it never takes more than ~72% of the screen height */
.vsl {
  position: relative; aspect-ratio: 9 / 16;
  width: min(100%, calc(72svh * 9 / 16)); margin: 8px auto 28px;
  border-radius: var(--radius); overflow: hidden; background: #000;
  border: 1.5px solid rgba(227,59,54,.75);
  box-shadow: 0 0 0 1px rgba(227,59,54,.25), 0 0 28px 4px rgba(227,59,54,.45), 0 0 80px 10px rgba(227,59,54,.22);
}
@media (min-width: 720px) {
  .vsl.wide { aspect-ratio: 16 / 9; width: 100%; }
}
.vsl-embed { width: 100%; position: relative; }
.vsl-poster { position: absolute; inset: 0; display: block; }
.vsl iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-play {
  position: absolute; inset: 0; border: 0; cursor: pointer; background: rgba(0,0,0,.18);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.play-ring {
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; padding-left: 4px;
  background: var(--accent); box-shadow: 0 0 0 10px rgba(227,59,54,.22), 0 12px 30px rgba(0,0,0,.5);
  animation: ring 2.2s ease-in-out infinite;
}
@keyframes ring { 50% { box-shadow: 0 0 0 16px rgba(227,59,54,.08), 0 12px 30px rgba(0,0,0,.5); } }
.play-label { font-size: 13px; font-weight: 600; letter-spacing: .02em; background: rgba(0,0,0,.55); padding: 6px 12px; border-radius: 999px; }

.cta-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; color: var(--ink-3); margin: 12px 0 0; text-align: center; }

/* Proof strip */
.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(0,0,0,.45); }
.proof-in { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; padding-top: 16px; padding-bottom: 16px; }
.proof-in div + div { border-left: 1px solid var(--line); }
.proof-in strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.proof-in span { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }

/* Sections */
.section { padding: 52px 0; }
.section.alt { background: var(--bg-2); }
.h2 { font-size: clamp(28px, 8vw, 38px); margin: 10px 0 24px; }

/* Transformations */
.featured { display: grid; gap: 12px; margin-bottom: 12px; }
.ba { margin: 0; border-radius: var(--radius); aspect-ratio: 1 / 1; border: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.grid .ba { border-radius: var(--radius-sm); }
.grid[data-collapsed="true"] .ba:nth-child(n+7) { display: none; }
.more { margin-top: 16px; }
.fine { font-size: 12px; color: var(--ink-3); margin: 18px 0 0; }

/* Testimonial rail */
.rail {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 4px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))) 8px;
  scroll-padding: 0 max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.tcard {
  flex: 0 0 84%; max-width: 380px; scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.qmark { color: var(--accent); opacity: .9; }
.tquote { margin: 0; font-size: 15px; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.tcard.open .tquote { -webkit-line-clamp: unset; display: block; }
.tmore { align-self: flex-start; background: none; border: 0; padding: 0; color: var(--accent); font-weight: 600; font-size: 14px; cursor: pointer; }
.tperson { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; }
.avatar.slot::before { font-size: 0; }
.tname { font-weight: 600; }
.tlost { margin-left: auto; font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--good); background: rgba(62,207,142,.1); padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.rail-hint { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--ink-3); margin-top: 10px; }
.rail-dots { display: flex; gap: 5px; }
.rail-dots i { width: 6px; height: 6px; border-radius: 3px; background: var(--line); transition: width .2s, background .2s; }
.rail-dots i.on { width: 18px; background: var(--accent); }

/* CTA blocks */
.cta-block { text-align: center; }
.cta-block .h2 { margin-bottom: 8px; }
.cta-block .muted { margin: 0 0 20px; }
.cta-block.final { padding-bottom: 64px; }
.cta-block.final .h2 { margin-bottom: 22px; }

/* Story */
.story-media { border-radius: var(--radius); aspect-ratio: 4 / 5; margin-bottom: 20px; border: 1px solid var(--line); }
.story-copy p { margin: 0 0 14px; }

/* Benefits tabs */
.tabs {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin: 0 calc(var(--gutter) * -1) 18px; padding: 0 var(--gutter);
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none; border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 10px 16px;
  font-weight: 600; font-size: 14px; cursor: pointer; color: var(--ink-2); transition: all .15s;
}
.tab[aria-selected="true"] { background: #fff; color: #000; border-color: #fff; }
.benefits { display: grid; gap: 10px; }
.benefit { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 16px 14px; animation: fadeUp .35s ease both; }
.benefit h3 { font-family: var(--font-display); font-size: 17px; margin: 0 0 4px; }
.benefit p { margin: 0; color: var(--ink-2); font-size: 15px; }
.benefit cite { display: block; margin-top: 8px; font-style: normal; font-size: 11px; color: var(--ink-3); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 28px 0 calc(110px + var(--safe-b)); font-size: 12px; color: var(--ink-3); }
.footer p { margin: 0 0 8px; }
.footer .disclaimers { margin-top: 12px; }
.footer .disclaimers p { margin-top: 10px; line-height: 1.5; }

/* Sticky CTA */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  padding: 12px var(--gutter) calc(12px + var(--safe-b));
  background: rgba(5,5,5,.96); border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .3s ease;
}
.sticky.show { transform: none; }
.sticky .btn { max-width: calc(var(--max) - var(--gutter) * 2); margin: 0 auto; }

/* Larger screens: keep the phone-first column, just give it room */
@media (min-width: 720px) {
  .featured { grid-template-columns: repeat(3, 1fr); }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .grid[data-collapsed="true"] .ba:nth-child(n+7) { display: block; }
  .grid[data-collapsed="true"] .ba:nth-child(n+10) { display: none; }
  :root { --max: 760px; }
  .hero .wrap, .cta-block .wrap { max-width: 600px; }
}

/* Once a real image loads, let it keep its own proportions */
.ba.loaded { aspect-ratio: auto; }
.ba.loaded img { height: auto; }

/* Centered section headings, sections separated by a divider line */
.section .eyebrow, .section .h2, .section .fine, .story-copy { text-align: center; }
.section + .section, .proof-strip + .section, .section + .cta-block { border-top: 1px solid var(--line); }
.section.alt { background: none; }
.rail-hint { justify-content: center; gap: 12px; }
.tabs { justify-content: safe center; }

/* Testimonial with no photo: initial in a brand-red circle */
.avatar.initials { display: grid; place-items: center; background: rgba(227,59,54,.14); border: 1.5px solid rgba(227,59,54,.5); color: var(--accent); font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.avatar.slot { border: 1.5px solid var(--line); }

/* About-us video */
.story-video { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #000; }
.story-video wistia-player { display: block; }
.story-cta { margin-top: 22px; }

/* Desktop: give the transformation photos much more room (the rest of the page keeps its column) */
@media (min-width: 1000px) {
  .section .wrap:has(#tgrid) { max-width: 1240px; }
  .grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .grid .ba { border-radius: var(--radius); }
  .section .wrap:has(#tgrid) .more,
  .section .wrap:has(#tgrid) .cta { max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 1400px) {
  .section .wrap:has(#tgrid) { max-width: 1360px; }
}
