/* ==========================================================================
   TESTLOOK — custom.css
   Paste into WordPress → Appearance → Customize → Additional CSS
   (or Elementor → Site Settings → Custom CSS). Fonts live in css/fonts.css.
   Mobile-first: base styles are for phones, larger screens are layered on.
   ========================================================================== */

:root {
  /* Ink & paper */
  --tl-ink: #0B1D45;
  --tl-navy: #0D2756;
  --tl-paper: #F5F1E8;          /* matches the hero video background */
  --tl-cream: #FBF9F4;          /* page background */
  --tl-white: #FFFFFF;
  --tl-line: #E7E1D3;
  --tl-line-strong: #D6CEBC;
  --tl-text: #16213F;
  --tl-muted: #4E5875;
  --tl-soft: #7A8199;

  /* Brand (from the logo) */
  --tl-green: #16B58A;
  --tl-teal: #13B7C6;
  --tl-blue: #0A8CF0;
  --tl-mint: #DDF6EC;
  --tl-sky: #E3F1FD;
  --tl-brand-gradient: linear-gradient(100deg, #16C79A 0%, #13B7C6 50%, #0A8CF0 100%);

  /* Interaction accent: dark saffron + yellow */
  --tl-saffron: #D9480F;
  --tl-saffron-2: #F08C00;
  --tl-yellow: #FAB005;
  --tl-peach: #FFF1E0;
  --tl-hover-gradient: linear-gradient(90deg, #D9480F 0%, #F08C00 55%, #FAB005 100%);

  /* Type */
  --tl-font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --tl-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --tl-font-hand: "Caveat", "Segoe Print", cursive;

  /* Layout */
  --tl-container: 1200px;
  --tl-gutter: 20px;
  --tl-header-h: 68px;
  --tl-radius: 22px;
  --tl-radius-sm: 14px;
  --tl-section-y: 52px;
  --tl-ease: cubic-bezier(.22, 1, .36, 1);
}
@media (min-width: 768px) { :root { --tl-gutter: 32px; --tl-section-y: 68px; --tl-header-h: 76px; } }
@media (min-width: 1200px) { :root { --tl-section-y: 84px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--tl-header-h) + 16px); overflow-x: clip; }
body {
  margin: 0;
  background: var(--tl-cream);
  color: var(--tl-text);
  font-family: var(--tl-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;               /* 'clip' (not 'hidden') keeps sticky elements working */
  padding-top: var(--tl-header-h); /* space for the fixed header */
}
body.has-hero-under-header { padding-top: 0; }
[hidden] { display: none !important; }
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--tl-font-display); color: var(--tl-ink); letter-spacing: -.03em; line-height: 1.05; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
::selection { background: #FFD8A8; color: var(--tl-ink); }

:focus-visible { outline: 3px solid var(--tl-saffron-2); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  background: var(--tl-ink); color: #fff; padding: 12px 18px; border-radius: 999px;
  text-decoration: none; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }

.site-container { width: 100%; max-width: calc(var(--tl-container) + var(--tl-gutter) * 2); margin: 0 auto; padding: 0 var(--tl-gutter); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--tl-saffron);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--tl-hover-gradient); }
.eyebrow.is-light { color: #FFC078; }
.section-title { font-size: clamp(2rem, 1.3rem + 3.4vw, 3.6rem); font-weight: 700; margin-top: 14px; max-width: 18ch; }
.section-title.is-wide { max-width: 24ch; }
.section-lead { margin-top: 18px; font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem); color: var(--tl-muted); max-width: 58ch; }
.hand-note { font-family: var(--tl-font-hand); font-weight: 600; font-size: 1.55rem; line-height: 1.1; color: var(--tl-saffron); }
.text-gradient { background: var(--tl-brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.marker {
  position: relative; white-space: nowrap; z-index: 0;
  background: linear-gradient(transparent 58%, rgba(250, 176, 5, .55) 58%, rgba(240, 140, 0, .45) 92%, transparent 92%) no-repeat 0 0 / 0% 100%;
  transition: background-size 1.1s var(--tl-ease) .5s;
}
.is-ready .marker, .marker.is-drawn { background-size: 100% 100%; }
.section-head { margin-bottom: 28px; }
.section-head.is-center { text-align: center; }
.section-head.is-center .section-title, .section-head.is-center .section-lead { margin-left: auto; margin-right: auto; }
@media (min-width: 900px) {
  .section-head.is-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: end; margin-bottom: 40px; }
  .section-head.is-split .section-lead { margin-top: 0; }
}

/* Heading word reveal (JS wraps words in .word > .word-inner) */
.word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.word-inner { display: inline-block; will-change: transform; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 0 10px 0 24px;
  border-radius: 999px; border: 1.5px solid transparent;
  font-size: 15.5px; font-weight: 600; line-height: 1; letter-spacing: -.005em;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: color .3s var(--tl-ease), border-color .3s var(--tl-ease), transform .3s var(--tl-ease), box-shadow .3s var(--tl-ease);
}
.btn::before { /* saffron fill that slides in on hover */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--tl-hover-gradient);
  transform: translateY(101%); border-radius: inherit;
  transition: transform .45s var(--tl-ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn-icon {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; flex: none;
  transition: transform .45s var(--tl-ease), background .3s;
}
.btn-icon svg { width: 16px; height: 16px; }
.btn:hover .btn-icon { transform: rotate(-45deg); }
.btn-primary { background: var(--tl-ink); color: #fff; box-shadow: 0 10px 24px -12px rgba(11, 29, 69, .55); }
.btn-primary .btn-icon { background: rgba(255, 255, 255, .14); }
.btn-primary:hover { box-shadow: 0 16px 34px -14px rgba(217, 72, 15, .6); }
.btn-outline { background: transparent; color: var(--tl-ink); border-color: var(--tl-line-strong); }
.btn-outline .btn-icon { background: rgba(11, 29, 69, .07); }
.btn-outline:hover { color: #fff; border-color: transparent; }
.btn-outline:hover .btn-icon, .btn-light:hover .btn-icon { background: rgba(255, 255, 255, .2); }
.btn-light { background: #fff; color: var(--tl-ink); }
.btn-light .btn-icon { background: var(--tl-peach); color: var(--tl-saffron); }
.btn-light:hover { color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn-ghost-light .btn-icon { background: rgba(255, 255, 255, .1); }
.btn-ghost-light:hover { border-color: transparent; }
.btn-sm { min-height: 44px; font-size: 14.5px; padding: 0 8px 0 18px; gap: 10px; }
.btn-sm .btn-icon { width: 30px; height: 30px; }
.btn-plain { padding: 0 24px; }

.btn-row { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.btn-row .btn { width: 100%; justify-content: space-between; }
@media (min-width: 560px) {
  .btn-row { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 14px; }
  .btn-row .btn { width: auto; justify-content: center; }
}

.text-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
  font-weight: 600; color: var(--tl-ink); text-decoration: none;
  background: linear-gradient(var(--tl-saffron-2), var(--tl-saffron-2)) no-repeat 0 100% / 0 2px;
  padding-bottom: 3px; transition: background-size .35s var(--tl-ease), color .25s;
}
.text-link:hover { background-size: 100% 2px; color: var(--tl-saffron); }
.text-link span { transition: transform .3s var(--tl-ease); }
.text-link:hover span { transform: translateX(4px); }

/* ---------- Header (fixed so it never scrolls away) ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: var(--tl-header-h);
  background: rgba(251, 249, 244, .82);
  -webkit-backdrop-filter: saturate(160%) blur(14px); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--tl-line); background: rgba(251, 249, 244, .94); box-shadow: 0 8px 30px -18px rgba(11, 29, 69, .35); }
.scroll-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: var(--tl-hover-gradient); transform-origin: 0 50%; transform: scaleX(0); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 20px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
.brand-icon { width: 38px; height: auto; }
.brand-wordmark { width: 118px; height: auto; }
@media (min-width: 768px) { .brand-icon { width: 42px; } .brand-wordmark { width: 128px; } }

.main-nav { display: none; }
.header-cta { display: none; }
@media (min-width: 1180px) {
  .main-nav { display: flex; align-items: center; gap: 0; margin-left: auto; }
  .header-cta { display: inline-flex; margin-left: 12px; }
}
.nav-link {
  position: relative; display: inline-flex; align-items: center; height: 44px; padding: 0 12px;
  font-size: 14px; font-weight: 550; color: var(--tl-ink); text-decoration: none; border-radius: 999px; white-space: nowrap;
  transition: color .25s, background .25s;
}
.nav-link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 7px; height: 2px; border-radius: 2px;
  background: var(--tl-hover-gradient); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--tl-ease);
}
.nav-link:hover, .nav-link.is-active {
  color: var(--tl-saffron);
  background-image: var(--tl-hover-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  margin-left: auto; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--tl-line-strong);
  background: #fff; display: grid; place-items: center; cursor: pointer; position: relative; z-index: 960;
  transition: background .3s, border-color .3s;
}
.menu-toggle span, .menu-toggle span::before { content: ""; display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--tl-ink); transition: transform .35s var(--tl-ease), background .3s; }
.menu-toggle span { position: relative; transform: translateY(-3px); }
.menu-toggle span::before { position: absolute; top: 6px; left: 0; }
.menu-open .menu-toggle { background: var(--tl-saffron); border-color: var(--tl-saffron); }
.menu-open .menu-toggle span { transform: translateY(0) rotate(45deg); background: #fff; }
.menu-open .menu-toggle span::before { transform: translateY(-6px) rotate(-90deg); background: #fff; }
@media (min-width: 1180px) { .menu-toggle { display: none; } }

/* Mobile menu (full screen) */
.mobile-menu {
  position: fixed; inset: 0; z-index: 950; background: var(--tl-ink); color: #fff;
  padding: calc(var(--tl-header-h) + 20px) var(--tl-gutter) 32px;
  display: flex; flex-direction: column; overflow-y: auto;
  visibility: hidden; opacity: 0; transition: opacity .35s var(--tl-ease), visibility 0s .35s;
}
.menu-open .mobile-menu { visibility: visible; opacity: 1; transition: opacity .35s var(--tl-ease); }
.menu-open { overflow: hidden; }
.menu-open .site-header { z-index: 1000; background: transparent; border-color: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
.brand-wordmark-light { display: none; }
.menu-open .brand-wordmark-dark { display: none; }
.menu-open .brand-wordmark-light { display: block; }
.mobile-menu-links { list-style: none; display: flex; flex-direction: column; }
.mobile-menu-links a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--tl-font-display); font-size: clamp(1.7rem, 7vw, 2.4rem); font-weight: 600; letter-spacing: -.03em;
  text-decoration: none; color: #fff; transition: color .25s, padding .35s var(--tl-ease);
}
.mobile-menu-links a small { font-family: var(--tl-font-body); font-size: 12px; letter-spacing: .1em; color: rgba(255, 255, 255, .45); font-weight: 500; }
.mobile-menu-links a:hover, .mobile-menu-links a.is-active { color: #FFA94D; padding-left: 8px; }
.mobile-menu-foot { margin-top: auto; padding-top: 28px; display: grid; gap: 16px; }
.mobile-menu-foot .btn { width: 100%; justify-content: space-between; }
.mobile-menu-foot p { color: rgba(255, 255, 255, .55); font-size: 14px; }

/* ---------- Hero (video background, no frame) ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--tl-header-h) + 32px) 0 56px;
  background: var(--tl-paper);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg video, .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero-bg::after { /* readability overlay — becomes Elementor "Background Overlay" */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(245, 241, 232, .9) 0%, rgba(245, 241, 232, .78) 45%, rgba(245, 241, 232, .96) 100%);
}
@media (min-width: 900px) {
  .hero { padding-bottom: 72px; }
  .hero-bg video, .hero-bg img { object-position: 85% 50%; }
  .hero-bg::after { background: linear-gradient(90deg, rgba(245, 241, 232, .98) 0%, rgba(245, 241, 232, .9) 34%, rgba(245, 241, 232, .15) 58%, rgba(245, 241, 232, 0) 70%); }
}
.hero-content { max-width: 640px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px; border-radius: 999px;
  background: #fff; border: 1px solid var(--tl-line); font-size: 13.5px; font-weight: 550; color: var(--tl-ink); text-decoration: none;
  box-shadow: 0 6px 20px -12px rgba(11, 29, 69, .35); transition: border-color .3s, color .3s;
}
.hero-pill:hover { border-color: #FFC078; color: var(--tl-saffron); }
.hero-pill .pulse { position: relative; width: 22px; height: 22px; border-radius: 50%; background: var(--tl-mint); display: grid; place-items: center; }
.hero-pill .pulse::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--tl-green); box-shadow: 0 0 0 0 rgba(22, 181, 138, .6); animation: tl-pulse 2s infinite; }
@keyframes tl-pulse { 70% { box-shadow: 0 0 0 9px rgba(22, 181, 138, 0); } 100% { box-shadow: 0 0 0 0 rgba(22, 181, 138, 0); } }
.hero-title { margin-top: 22px; font-size: clamp(2.7rem, 1.6rem + 5.6vw, 5.4rem); line-height: .98; letter-spacing: -.045em; font-weight: 750; }
.hero-copy { margin-top: 22px; font-size: clamp(1.05rem, .98rem + .4vw, 1.25rem); color: var(--tl-muted); max-width: 50ch; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px; list-style: none; }
.hero-proof li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 550; color: var(--tl-ink); }
.hero-proof svg { width: 18px; height: 18px; color: var(--tl-green); flex: none; }
.hero-scroll { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); display: none; font-family: var(--tl-font-hand); font-size: 1.3rem; color: var(--tl-muted); text-decoration: none; }
@media (min-width: 900px) and (min-height: 760px) { .hero-scroll { display: flex; flex-direction: column; align-items: center; gap: 2px; } }
.hero-scroll svg { width: 18px; animation: tl-bob 1.8s ease-in-out infinite; }
@keyframes tl-bob { 50% { transform: translateY(6px); } }
.hero-note { display: none; }
@media (min-width: 900px) { .hero-note { display: inline-flex; align-items: center; gap: 6px; margin-left: 6px; } .hero-note svg { width: 54px; color: var(--tl-saffron); transform: scaleX(-1) rotate(-8deg); } }

@media (max-width: 899px) {
  .hero { min-height: 0; align-items: flex-start; padding-bottom: 360px; }
  .hero-bg { top: auto; height: 540px; -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 22%, #000 55%); mask-image: linear-gradient(180deg, transparent 0%, transparent 22%, #000 55%); }
  .hero-bg video, .hero-bg img { object-position: 80% 50%; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(245, 241, 232, .85) 0%, rgba(245, 241, 232, .1) 55%, rgba(245, 241, 232, 0) 100%); }
}

/* ---------- Marquee ---------- */
.marquee { background: var(--tl-ink); color: #fff; overflow: hidden; padding: 16px 0; transform: rotate(-1.2deg); margin: -10px -10px 0; position: relative; z-index: 2; }
.marquee-track { display: flex; width: max-content; animation: tl-marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 22px; padding-right: 22px; font-family: var(--tl-font-display); font-size: clamp(1.1rem, 1rem + .6vw, 1.5rem); font-weight: 600; letter-spacing: -.02em; white-space: nowrap; }
.marquee-item i { width: 9px; height: 9px; border-radius: 50%; background: var(--tl-hover-gradient); flex: none; }
@keyframes tl-marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: var(--tl-section-y) 0; position: relative; }
.section-tint { background: var(--tl-paper); }
.section-white { background: #fff; }
.section-dark { background: var(--tl-ink); color: rgba(255, 255, 255, .78); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-lead { color: rgba(255, 255, 255, .7); }
.section-dark.has-spotlight { --mx: 50%; --my: 30%; }
.section-dark.has-spotlight::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px circle at var(--mx) var(--my), rgba(240, 140, 0, .13), transparent 60%); }
.grain::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- Problem: the old way ---------- */
.oldway-grid { display: grid; gap: 40px; }
@media (min-width: 960px) { .oldway-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; } }
.oldway-list { list-style: none; border-top: 1px solid var(--tl-line-strong); }
.oldway-item { display: grid; grid-template-columns: 34px 1fr; gap: 6px 10px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--tl-line-strong); }
.oldway-item .oldway-time { grid-column: 2; justify-self: start; }
@media (min-width: 560px) { .oldway-item { grid-template-columns: 44px 1fr auto; gap: 14px; align-items: center; } .oldway-item .oldway-time { grid-column: auto; } }
.oldway-num { font-family: var(--tl-font-display); font-weight: 600; color: var(--tl-soft); font-size: 14px; }
.oldway-text { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); font-weight: 550; color: var(--tl-ink); }
.oldway-text span { background: linear-gradient(90deg, #D9480F, #F08C00 55%, #FAB005) no-repeat 0 58% / 0% 3px; -webkit-box-decoration-break: clone; box-decoration-break: clone; transition: background-size .8s var(--tl-ease); transition-delay: calc(var(--i, 0) * .18s + .2s); }
.oldway-list.is-struck .oldway-text span { background-size: 100% 3px; }
.oldway-list.is-struck .oldway-text { color: var(--tl-soft); transition: color .4s calc(var(--i, 0) * .18s + .5s); }
.oldway-time { font-size: 13px; font-weight: 600; color: var(--tl-saffron); background: var(--tl-peach); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.oldway-after { margin-top: 24px; display: flex; gap: 12px; align-items: flex-start; }
.oldway-after svg { width: 46px; flex: none; color: var(--tl-saffron); margin-top: -4px; }
.big-quote { font-family: var(--tl-font-display); font-size: clamp(1.9rem, 1.2rem + 3.2vw, 3.4rem); line-height: 1.06; letter-spacing: -.035em; color: var(--tl-ink); font-weight: 650; }
.big-quote em { font-style: normal; color: var(--tl-saffron); }

/* ---------- How it works: expandable steps ---------- */
.how-steps { position: relative; display: grid; gap: 28px; list-style: none; }
@media (min-width: 760px) { .how-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
@media (min-width: 1100px) { .how-steps { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.step { position: relative; display: flex; flex-direction: column; transition: opacity .35s var(--tl-ease), transform .35s var(--tl-ease); }
.step-media { position: relative; height: 300px; display: grid; place-items: end center; isolation: isolate; }
.step-media::before { content: ""; position: absolute; z-index: -1; left: 50%; bottom: 8%; width: 78%; aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, var(--step-tint, #E4F6EE) 0%, transparent 68%); }
.step-media img { height: 300px; max-height: 100%; width: auto; filter: drop-shadow(0 18px 22px rgba(11, 29, 69, .22)); transition: transform .6s var(--tl-ease); }
.step:hover .step-media img { transform: translateY(-6px) rotate(-1.5deg); }
.step:nth-child(1) { --step-tint: #C9F2E0; }
.step:nth-child(2) { --step-tint: #D7E6FB; }
.step:nth-child(3) { --step-tint: #FFE1BF; }
.step:nth-child(4) { --step-tint: #E0DAFB; }
.step-body { padding: 18px 4px 0; display: flex; flex-direction: column; flex: 1; }
.step-num { font-family: var(--tl-font-hand); font-size: 1.45rem; color: var(--tl-saffron); line-height: 1; }
.step-title { margin-top: 6px; font-size: 1.35rem; letter-spacing: -.025em; }
.step-copy { margin-top: 8px; color: var(--tl-muted); font-size: 15px; }
.step-explore {
  margin-top: 16px; align-self: flex-start; display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px; padding: 0 8px 0 18px; border-radius: 999px; border: 1.5px solid var(--tl-line-strong); background: #fff;
  font-weight: 600; font-size: 14.5px; color: var(--tl-ink); cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
  transition: color .3s, border-color .3s;
}
.step-explore::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--tl-hover-gradient); transform: translateX(-101%); transition: transform .45s var(--tl-ease); }
.step-explore:hover, .step-explore:focus-visible { color: #fff; border-color: transparent; }
.step-explore:hover::before, .step-explore:focus-visible::before { transform: translateX(0); }
.step-explore .btn-icon { width: 30px; height: 30px; background: var(--tl-peach); color: var(--tl-saffron); }
.step-explore:hover .btn-icon { background: rgba(255, 255, 255, .22); color: #fff; transform: rotate(90deg); }
.step-detail { display: none; }
.step-close {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: var(--tl-ink); color: #fff; display: none; place-items: center; cursor: pointer; transition: background .3s, transform .3s;
}
.step-close:hover { background: var(--tl-saffron); transform: rotate(90deg); }
.step-close svg { width: 18px; height: 18px; }
.step-detail-kicker { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--tl-saffron); }
.step-detail h3 { margin-top: 12px; font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem); max-width: 18ch; }
.step-detail p { margin-top: 14px; color: var(--tl-muted); }
.step-detail ul { margin-top: 18px; list-style: none; display: grid; gap: 10px; }
.step-detail li { position: relative; padding-left: 28px; color: var(--tl-ink); font-weight: 500; }
.step-detail li::before { content: ""; position: absolute; left: 0; top: .45em; width: 16px; height: 9px; border-left: 2.5px solid var(--tl-green); border-bottom: 2.5px solid var(--tl-green); transform: rotate(-45deg); }

/* expanded — phones/tablets: opens in place under the card */
.step.is-expanded .step-detail { display: block; padding: 20px 4px 4px; }
.step.is-expanded .step-explore { display: none; }
.step.is-expanded .step-close { display: grid; }
/* expanded — tablet & desktop: card takes over the whole steps area */
@media (min-width: 760px) {
  .how-steps.has-open .step:not(.is-expanded) { opacity: 0; transform: scale(.96); pointer-events: none; }
  .step.is-expanded {
    position: absolute; inset: 0; z-index: 5; display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: center;
    background: #fff; border-radius: calc(var(--tl-radius) + 6px); padding: 20px 20px 0; box-shadow: 0 40px 80px -40px rgba(11, 29, 69, .35);
  }
  .step.is-expanded .step-media { height: 100%; max-height: 100%; }
  .step.is-expanded .step-media::before { width: 90%; bottom: 10%; }
  .step.is-expanded .step-body { padding: 0 48px 0 0; justify-content: center; }
  .step.is-expanded .step-body > .step-num, .step.is-expanded .step-body > .step-title, .step.is-expanded .step-body > .step-copy { display: none; }
  .step.is-expanded .step-detail { padding: 0; }
}

/* ---------- Interactive demo ---------- */
.demo { display: grid; gap: 20px; }
@media (min-width: 960px) { .demo { grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: stretch; } }
.demo-progress { display: flex; gap: 6px; list-style: none; margin-bottom: 22px; flex-wrap: wrap; }
.demo-progress li { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--tl-soft); padding: 6px 12px 6px 6px; border-radius: 999px; background: rgba(11, 29, 69, .05); transition: all .35s var(--tl-ease); }
.demo-progress li b { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: #fff; font-size: 12px; }
.demo-progress li.is-current { background: var(--tl-ink); color: #fff; }
.demo-progress li.is-current b { background: var(--tl-hover-gradient); color: #fff; }
.demo-progress li.is-done { color: var(--tl-green); background: var(--tl-mint); }
.demo-paper {
  position: relative; overflow: hidden; background: #FFFEFA; border-radius: 6px; padding: 28px 22px 28px 56px; min-height: 360px;
  background-image: linear-gradient(90deg, transparent 40px, #F2A3A3 40px, #F2A3A3 42px, transparent 42px), repeating-linear-gradient(transparent 0 31px, #D7E4F4 31px 32px);
  box-shadow: 0 1px 0 #EAE3D3, 0 26px 50px -30px rgba(11, 29, 69, .45); transform: rotate(-1deg);
}
.demo-paper-title { font-family: var(--tl-font-hand); font-size: 1.7rem; color: #1E3A8A; line-height: 32px; }
.demo-paper ol { list-style: none; margin-top: 12px; }
.demo-paper li { font-family: var(--tl-font-hand); font-size: 1.45rem; color: #1E3A8A; line-height: 32px; }
.demo-paper li span { display: block; color: #3B5BA9; font-size: 1.3rem; }
.demo-beam { position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--tl-brand-gradient); box-shadow: 0 0 18px 5px rgba(19, 183, 198, .5); opacity: 0; }
.demo-beam::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 90px; background: linear-gradient(0deg, rgba(19, 183, 198, .2), transparent); }
.demo-paper.is-scanning .demo-beam { animation: tl-demo-beam 1.6s var(--tl-ease) forwards; }
@keyframes tl-demo-beam { 0% { top: 0; opacity: 1; } 92% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
.demo-screen { position: relative; border-radius: var(--tl-radius); background: var(--tl-ink); color: #fff; padding: 24px 20px; min-height: 420px; display: flex; flex-direction: column; overflow: hidden; }
@media (min-width: 600px) { .demo-screen { padding: 30px; } }
.demo-screen-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; color: rgba(255, 255, 255, .6); }
.demo-screen-head strong { color: #fff; font-family: var(--tl-font-display); font-size: 1.1rem; letter-spacing: -.02em; }
.demo-tag { display: inline-flex; gap: 6px; align-items: center; padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, .08); font-size: 12px; font-weight: 600; color: #8CE99A; }
.demo-stage { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 18px 0; }
.demo-empty { font-family: var(--tl-font-hand); font-size: 1.6rem; color: rgba(255, 255, 255, .5); text-align: center; }
.demo-q { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.demo-q-title { font-weight: 600; color: #fff; font-size: 15.5px; display: flex; gap: 10px; }
.demo-q-title b { flex: none; font-size: 11px; background: rgba(255, 255, 255, .12); border-radius: 6px; padding: 3px 7px; height: fit-content; margin-top: 2px; }
.demo-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.demo-opt { font-size: 14px; padding: 9px 12px; border-radius: 10px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .85); text-align: left; }
.demo-opt.is-correct { background: rgba(22, 181, 138, .22); border-color: rgba(22, 181, 138, .6); color: #B2F2D8; }
button.demo-opt { cursor: pointer; min-height: 48px; transition: background .25s, border-color .25s; }
button.demo-opt:hover { border-color: #FFA94D; background: rgba(240, 140, 0, .14); }
button.demo-opt.is-wrong { background: rgba(250, 82, 82, .18); border-color: rgba(250, 82, 82, .55); }
.demo-room { text-align: center; }
.demo-room small { display: block; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.demo-code { font-family: var(--tl-font-display); font-size: clamp(2.6rem, 2rem + 3vw, 4rem); font-weight: 700; letter-spacing: .02em; margin-top: 6px; background: linear-gradient(90deg, #FFA94D, #FFD43B); -webkit-background-clip: text; background-clip: text; color: transparent; }
.demo-share { display: inline-flex; gap: 10px; align-items: center; margin-top: 16px; padding: 10px 16px; border-radius: 12px; background: rgba(37, 211, 102, .14); color: #8CE99A; font-weight: 600; font-size: 14px; }
.demo-joined { display: flex; justify-content: center; margin-top: 18px; }
.demo-joined span { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff; border: 2px solid var(--tl-ink); margin-left: -8px; }
.demo-result { text-align: center; }
.demo-score { font-family: var(--tl-font-display); font-size: clamp(3rem, 2.4rem + 3vw, 4.4rem); font-weight: 700; color: #fff; line-height: 1; }
.demo-board { list-style: none; margin: 20px auto 0; max-width: 340px; display: grid; gap: 8px; text-align: left; }
.demo-board li { display: flex; justify-content: space-between; padding: 10px 14px; border-radius: 12px; background: rgba(255, 255, 255, .06); font-size: 14.5px; }
.demo-board li.is-you { background: linear-gradient(90deg, rgba(217, 72, 15, .35), rgba(250, 176, 5, .25)); color: #fff; font-weight: 600; }
.demo-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.demo-actions .btn { flex: 1 1 auto; justify-content: space-between; }
.demo-hint { margin-top: 14px; font-size: 13px; color: var(--tl-soft); }

/* ---------- Feature rows ---------- */
.feature-rows { display: grid; gap: 48px; }
.feature-row { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) {
  .feature-row { grid-template-columns: 1.1fr .9fr; gap: 64px; }
  .feature-row.is-flipped .feature-visual { order: 2; }
}
.feature-visual { position: relative; }
.feature-visual .hand-note { position: absolute; right: 4%; bottom: 6%; transform: rotate(-4deg); z-index: 3; }
.feature-copy h3 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); max-width: 16ch; }
.feature-copy p { margin-top: 14px; color: var(--tl-muted); font-size: 1.05rem; }
.tick-list { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.tick-list li { position: relative; padding-left: 32px; font-weight: 500; color: var(--tl-ink); }
.tick-list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--tl-mint); }
.tick-list li::after { content: ""; position: absolute; left: 7px; top: 8px; width: 9px; height: 5px; border-left: 2px solid var(--tl-green); border-bottom: 2px solid var(--tl-green); transform: rotate(-45deg); }
.section-dark .tick-list li { color: #fff; }
.section-dark .tick-list li::before { background: rgba(22, 181, 138, .2); }

/* Small feature list (icon list — no boxes) */
.mini-features { display: grid; gap: 0; margin-top: 44px; border-top: 1px solid var(--tl-line-strong); list-style: none; }
@media (min-width: 640px) { .mini-features { grid-template-columns: 1fr 1fr; column-gap: 40px; } }
@media (min-width: 1000px) { .mini-features { grid-template-columns: repeat(3, 1fr); } }
.mini-feature { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--tl-line-strong); }
.mini-feature-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--tl-peach); color: var(--tl-saffron); transition: transform .4s var(--tl-ease), background .3s, color .3s; }
.mini-feature:hover .mini-feature-icon { transform: rotate(-8deg) scale(1.06); background: var(--tl-saffron); color: #fff; }
.mini-feature-icon svg { width: 22px; height: 22px; }
.mini-feature h3 { font-size: 1.1rem; letter-spacing: -.02em; font-family: var(--tl-font-body); font-weight: 650; }
.mini-feature p { margin-top: 4px; color: var(--tl-muted); font-size: 14.5px; }

/* ---------- Audience tabs ---------- */
.tabs-list { display: flex; gap: 6px; padding: 6px; border-radius: 999px; background: rgba(255, 255, 255, .07); width: fit-content; max-width: 100%; overflow-x: auto; scrollbar-width: none; margin-bottom: 36px; }
.tabs-list::-webkit-scrollbar { display: none; }
.tab-btn { min-height: 44px; padding: 0 18px; border-radius: 999px; border: 0; background: transparent; color: rgba(255, 255, 255, .7); font-weight: 600; font-size: 15px; cursor: pointer; white-space: nowrap; transition: color .25s, background .35s var(--tl-ease); }
.tab-btn:hover { color: #FFC078; }
.tab-btn[aria-selected="true"] { background: var(--tl-hover-gradient); color: #fff; }
.tab-panel { display: grid; gap: 28px; }
.tab-panel[hidden] { display: none; }
@media (min-width: 900px) { .tab-panel { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }
.tab-panel h3 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.7rem); max-width: 16ch; }
.tab-panel .tab-intro { margin-top: 14px; font-size: 1.08rem; }
.scenario { border-left: 2px solid rgba(255, 169, 77, .6); padding: 4px 0 4px 22px; }
.scenario .hand-note { color: #FFC078; font-size: 1.6rem; }
.scenario ol { list-style: none; margin-top: 12px; display: grid; gap: 14px; counter-reset: sc; }
.scenario li { counter-increment: sc; display: grid; grid-template-columns: 58px 1fr; gap: 10px; color: rgba(255, 255, 255, .85); }
.scenario li::before { content: attr(data-time); font-size: 13px; font-weight: 600; color: #fff; opacity: .6; padding-top: 2px; }

/* ---------- Comparison ---------- */
.compare { display: grid; gap: 16px; }
@media (min-width: 860px) { .compare { grid-template-columns: 1fr 1fr; gap: 0; } }
.compare-col { padding: 28px 24px; border-radius: var(--tl-radius); }
@media (min-width: 600px) { .compare-col { padding: 36px; } }
.compare-col h3 { font-size: 1.35rem; display: flex; align-items: center; gap: 12px; }
.compare-col ul { list-style: none; margin-top: 22px; display: grid; gap: 0; }
.compare-col li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; padding: 14px 0; border-top: 1px dashed var(--tl-line-strong); }
.compare-col li svg { width: 20px; height: 20px; margin-top: 2px; }
.compare-old { background: transparent; border: 1.5px dashed var(--tl-line-strong); color: var(--tl-muted); }
.compare-old li svg { color: #C92A2A; opacity: .75; }
.compare-new { background: var(--tl-ink); color: rgba(255, 255, 255, .85); box-shadow: 0 40px 70px -40px rgba(11, 29, 69, .6); }
@media (min-width: 860px) { .compare-new { transform: translateX(-18px) rotate(1deg); } .compare-old { margin-top: 28px; } }
.compare-new h3 { color: #fff; }
.compare-new h3 img { width: 110px; }
.compare-new li { border-top-color: rgba(255, 255, 255, .14); }
.compare-new li svg { color: #63E6BE; }

/* ---------- Principles / numbered editorial list ---------- */
.principles { list-style: none; display: grid; border-top: 1px solid var(--tl-line-strong); }
@media (min-width: 900px) { .principles { grid-template-columns: repeat(2, 1fr); column-gap: 56px; } }
.principle { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 28px 0; border-bottom: 1px solid var(--tl-line-strong); }
.principle-num { font-family: var(--tl-font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--tl-saffron-2); }
.principle h3 { font-size: 1.3rem; }
.principle p { margin-top: 8px; color: var(--tl-muted); }

/* ---------- Team ---------- */
.team-grid { display: grid; gap: 40px; list-style: none; }
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.team-member { position: relative; }
.team-portrait { position: relative; aspect-ratio: 4 / 4.4; border-radius: var(--tl-radius); overflow: hidden; display: grid; place-items: center; background: var(--portrait-bg, var(--tl-mint)); }
.team-member:nth-child(1) { --portrait-bg: linear-gradient(160deg, #FFE8CC, #FFD8A8); --initial: #D9480F; }
.team-member:nth-child(2) { --portrait-bg: linear-gradient(160deg, #D3F9D8, #C3FAE8); --initial: #087F5B; }
.team-member:nth-child(3) { --portrait-bg: linear-gradient(160deg, #D0EBFF, #E5DBFF); --initial: #1864AB; }
.team-initials { font-family: var(--tl-font-display); font-size: clamp(4.5rem, 3rem + 6vw, 7rem); font-weight: 700; letter-spacing: -.06em; color: var(--initial); opacity: .9; transition: transform .6s var(--tl-ease); }
.team-member:hover .team-initials { transform: scale(1.08) rotate(-3deg); }
.team-portrait .hand-note { position: absolute; left: 18px; bottom: 14px; color: var(--tl-ink); font-size: 1.35rem; transform: rotate(-3deg); }
.team-member h3 { margin-top: 18px; font-size: 1.45rem; }
.team-role { margin-top: 4px; font-weight: 600; color: var(--tl-saffron); font-size: 14.5px; }
.team-member p { margin-top: 10px; color: var(--tl-muted); font-size: 15px; }

/* ---------- Roadmap ---------- */
.roadmap { list-style: none; display: grid; gap: 0; position: relative; }
@media (min-width: 900px) { .roadmap { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.roadmap-item { position: relative; padding: 0 0 36px 36px; }
.roadmap-item::before { content: ""; position: absolute; left: 7px; top: 22px; bottom: 0; width: 2px; background: rgba(255, 255, 255, .15); }
.roadmap-item:last-child::before { display: none; }
.roadmap-dot { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .35); background: var(--tl-ink); }
.roadmap-item.is-now .roadmap-dot { border-color: #FFA94D; background: #FFA94D; box-shadow: 0 0 0 6px rgba(255, 169, 77, .18); }
@media (min-width: 900px) {
  .roadmap-item { padding: 40px 0 0; }
  .roadmap-item::before { left: 22px; right: -32px; top: 11px; bottom: auto; width: auto; height: 2px; }
  .roadmap-dot { top: 4px; }
}
.roadmap-label { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: #FFC078; }
.roadmap-item h3 { margin-top: 8px; font-size: 1.4rem; }
.roadmap-item p { margin-top: 8px; color: rgba(255, 255, 255, .7); font-size: 15px; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; gap: 32px; }
@media (min-width: 960px) { .faq-layout { grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; } .faq-layout .section-head { position: sticky; top: calc(var(--tl-header-h) + 32px); } }
.faq-list { border-top: 1px solid var(--tl-line-strong); }
.faq-group-title { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--tl-saffron); padding: 36px 0 10px; font-family: var(--tl-font-body); }
.faq-item { border-bottom: 1px solid var(--tl-line-strong); }
.faq-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 0; min-height: 64px; background: none; border: 0; cursor: pointer; text-align: left; font-weight: 600; font-size: 1.07rem; color: var(--tl-ink); transition: color .25s; }
.faq-trigger:hover { color: var(--tl-saffron); }
.faq-icon { position: relative; flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--tl-line-strong); transition: background .3s, border-color .3s, transform .4s var(--tl-ease); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; border-radius: 2px; background: currentColor; transform: translate(-50%, -50%); transition: transform .35s var(--tl-ease); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-trigger[aria-expanded="true"] .faq-icon { background: var(--tl-hover-gradient); border-color: transparent; color: #fff; transform: rotate(180deg); }
.faq-trigger[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--tl-ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 48px 24px 0; color: var(--tl-muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* ---------- CTA block ---------- */
.cta-block { position: relative; overflow: hidden; isolation: isolate; border-radius: calc(var(--tl-radius) + 8px); background: var(--tl-ink); color: rgba(255, 255, 255, .8); padding: 44px 22px; }
@media (min-width: 768px) { .cta-block { padding: 72px 64px; } }
.cta-block::before { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; right: -160px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(240, 140, 0, .45), transparent 65%); filter: blur(10px); }
.cta-block::after { content: ""; position: absolute; z-index: -1; width: 460px; height: 460px; left: -180px; bottom: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(19, 183, 198, .35), transparent 65%); }
.cta-grid { display: grid; gap: 36px; }
@media (min-width: 960px) { .cta-grid { grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; } }
.cta-block h2 { color: #fff; font-size: clamp(2.2rem, 1.4rem + 3.6vw, 4rem); letter-spacing: -.04em; max-width: 14ch; }
.cta-block p { margin-top: 16px; font-size: 1.08rem; max-width: 46ch; }
.cta-share { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; color: #8CE99A; font-weight: 600; text-decoration: none; }
.cta-share:hover { color: #FFD43B; }
.cta-share svg { width: 22px; height: 22px; }

/* ---------- Forms (static; becomes a Text Editor widget in Elementor) ---------- */
.lead-form { display: grid; gap: 14px; }
.lead-form .form-row { display: grid; gap: 14px; }
@media (min-width: 560px) { .lead-form .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: grid; gap: 6px; }
.form-field label { font-size: 13.5px; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-height: 52px; padding: 14px 16px; border-radius: 14px; font-size: 16px;
  border: 1.5px solid var(--tl-line-strong); background: #fff; color: var(--tl-ink); transition: border-color .25s, box-shadow .25s;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--tl-saffron-2); box-shadow: 0 0 0 4px rgba(240, 140, 0, .18); }
.on-dark .form-field label { color: rgba(255, 255, 255, .8); }
.on-dark .form-field input, .on-dark .form-field select { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .18); color: #fff; }
.on-dark .form-field select option { color: var(--tl-ink); }
.on-dark .form-field input::placeholder { color: rgba(255, 255, 255, .4); }
.lead-form .btn { width: 100%; justify-content: space-between; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--tl-soft); }
.on-dark .form-note { color: rgba(255, 255, 255, .5); }
.form-success { display: none; padding: 16px 18px; border-radius: 14px; background: var(--tl-mint); color: #087F5B; font-weight: 600; }
.lead-form.is-sent .form-success { display: block; }
.footer-news.is-sent .form-success { display: block; }
.form-error { padding: 12px 16px; border-radius: 14px; background: var(--tl-peach); color: #A33A0B; font-size: 14px; font-weight: 600; line-height: 1.5; overflow-wrap: anywhere; }
.form-error a { color: inherit; }
.footer-news .form-error { margin-top: 10px; max-width: 420px; }
form .btn[disabled] { opacity: .7; cursor: progress; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; isolation: isolate; padding: 44px 0 40px; background: var(--tl-paper); }
@media (min-width: 768px) { .page-hero { padding: 64px 0 56px; } }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: radial-gradient(rgba(13, 39, 86, .1) 1.2px, transparent 1.3px); background-size: 26px 26px; -webkit-mask-image: linear-gradient(90deg, transparent 20%, #000 90%); mask-image: linear-gradient(90deg, transparent 20%, #000 90%); }
.page-hero::after { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; right: -140px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(19, 183, 198, .22), transparent 65%); }
.breadcrumb { display: flex; gap: 8px; font-size: 13.5px; color: var(--tl-soft); list-style: none; margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a { color: var(--tl-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--tl-saffron); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .6; }
.page-title { font-size: clamp(2.5rem, 1.5rem + 5vw, 5rem); line-height: 1; letter-spacing: -.045em; max-width: 15ch; font-weight: 750; }
.page-lead { margin-top: 20px; font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); color: var(--tl-muted); max-width: 56ch; }
.page-hero .hand-note { display: inline-block; margin-top: 18px; transform: rotate(-2deg); }
.page-hero-visual { display: none; }
@media (min-width: 1000px) {
  .page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
  .page-hero-visual { display: block; position: relative; }
  .page-hero-visual .phone-duo { max-width: 460px; margin-left: auto; }
}

/* Sticky story (how-it-works page) */
.story { display: grid; gap: 64px; }
@media (min-width: 960px) {
  .story { grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
  .story-visual { position: sticky; top: calc(var(--tl-header-h) + 40px); }
}
.story-visual { position: relative; height: min(76vh, 640px); isolation: isolate; }
.story-visual::before { content: ""; position: absolute; z-index: -1; inset: 10% 8%; border-radius: 50%; background: radial-gradient(circle, #DCD6FB 0%, transparent 68%); }
.story-visual img { position: absolute; left: 50%; top: 0; height: 100%; width: auto; transform: translateX(-50%) translateY(16px); opacity: 0; filter: drop-shadow(0 26px 30px rgba(11, 29, 69, .22)); transition: opacity .6s var(--tl-ease), transform .6s var(--tl-ease); }
.story-visual img.is-active { transform: translateX(-50%); }
.story-visual img.is-active { opacity: 1; }
.story-steps { list-style: none; display: grid; gap: 56px; }
@media (min-width: 960px) { .story-steps { gap: 0; } .story-step { min-height: 62vh; display: flex; flex-direction: column; justify-content: center; } }
.story-step-media { margin-bottom: 18px; height: 380px; display: grid; place-items: center; }
.story-step-media img { height: 100%; width: auto; filter: drop-shadow(0 18px 22px rgba(11, 29, 69, .2)); }
@media (min-width: 960px) { .story-step-media { display: none; } }
.story-step .step-num { font-size: 1.6rem; }
.story-step h2 { margin-top: 8px; font-size: clamp(1.8rem, 1.3rem + 2vw, 2.8rem); max-width: 16ch; }
.story-step p { margin-top: 14px; color: var(--tl-muted); font-size: 1.07rem; max-width: 50ch; }
.story-step { opacity: 1; transition: opacity .5s; }
@media (min-width: 960px) { .story-steps.is-enhanced .story-step { opacity: .28; } .story-steps.is-enhanced .story-step.is-active { opacity: 1; } }

/* Stats-free "fact strip" */
.fact-strip { display: grid; gap: 0; list-style: none; border-top: 1px solid var(--tl-line-strong); border-bottom: 1px solid var(--tl-line-strong); }
@media (min-width: 760px) { .fact-strip { grid-template-columns: repeat(3, 1fr); } .fact-strip li + li { border-left: 1px solid var(--tl-line-strong); } }
.fact-strip li { padding: 26px 22px; }
.fact-strip li + li { border-top: 1px solid var(--tl-line-strong); }
@media (min-width: 760px) { .fact-strip li + li { border-top: 0; } }
.fact-strip strong { display: block; font-family: var(--tl-font-display); font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem); letter-spacing: -.03em; color: var(--tl-ink); line-height: 1.1; }
.fact-strip span { display: block; margin-top: 6px; color: var(--tl-muted); font-size: 15px; }
.section-dark .fact-strip, .section-dark .fact-strip li { border-color: rgba(255, 255, 255, .14); }
.section-dark .fact-strip strong { color: #fff; }
.section-dark .fact-strip span { color: rgba(255, 255, 255, .65); }

/* Two-column prose */
.split { display: grid; gap: 32px; }
@media (min-width: 900px) { .split { grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; } }
.prose p + p { margin-top: 16px; }
.prose p { color: var(--tl-muted); font-size: 1.06rem; }
.prose strong { color: var(--tl-ink); }

/* Contact details list */
.contact-list { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--tl-line-strong); margin-top: 28px; }
.contact-list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--tl-line-strong); align-items: center; }
.contact-list small { display: block; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--tl-soft); font-weight: 600; }
.contact-list a { font-weight: 600; color: var(--tl-ink); text-decoration: none; }
.contact-list a:hover { color: var(--tl-saffron); }
.form-panel { background: #fff; border-radius: calc(var(--tl-radius) + 4px); padding: 28px 20px; border: 1px solid var(--tl-line); }
@media (min-width: 600px) { .form-panel { padding: 40px; } }

/* Legal pages */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.5rem; margin-top: 44px; }
.legal p, .legal li { color: var(--tl-muted); margin-top: 12px; }
.legal ul { padding-left: 20px; }
.legal-meta { display: inline-block; margin-top: 18px; padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--tl-line); font-size: 13.5px; color: var(--tl-muted); }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--tl-ink); color: rgba(255, 255, 255, .68); padding: 56px 0 0; }
@media (min-width: 768px) { .site-footer { padding-top: 72px; } }
.footer-top > * { min-width: 0; }
.footer-top { display: grid; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
@media (min-width: 1000px) { .footer-top { grid-template-columns: 1.25fr 2fr; gap: 72px; } }
.footer-wordmark { width: 170px; }
.footer-intro { margin-top: 18px; max-width: 38ch; font-size: 15px; }
.footer-news { margin-top: 26px; }
.footer-news label { display: block; font-size: 13.5px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.footer-news-row { display: flex; gap: 6px; padding: 6px; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); max-width: 420px; transition: border-color .3s; }
.footer-news-row:focus-within { border-color: #FFA94D; }
.footer-news-row input { flex: 1; min-width: 0; width: 100%; background: transparent; border: 0; padding: 0 14px; color: #fff; font-size: 15px; min-height: 44px; }
.footer-news-row input::placeholder { color: rgba(255, 255, 255, .4); }
.footer-news-row input:focus { outline: none; }
.footer-news-row .btn { min-height: 44px; padding: 0 18px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; }
@media (min-width: 700px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.footer-heading { font-family: var(--tl-font-body); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .45); font-weight: 600; }
.footer-links { list-style: none; margin-top: 16px; display: grid; gap: 4px; }
.footer-links a { display: inline-flex; align-items: center; min-height: 36px; color: rgba(255, 255, 255, .85); text-decoration: none; font-size: 15px; transition: color .25s, transform .3s var(--tl-ease); }
.footer-links a:hover { color: #FFA94D; transform: translateX(4px); }
.footer-mid { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; padding: 28px 0; }
.footer-social { display: flex; gap: 10px; list-style: none; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .16); color: #fff; transition: background .3s, border-color .3s, transform .3s var(--tl-ease); }
.footer-social a:hover { background: var(--tl-hover-gradient); border-color: transparent; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-made { font-family: var(--tl-font-hand); font-size: 1.5rem; color: #FFC078; }
.footer-giant { font-family: var(--tl-font-display); font-weight: 800; letter-spacing: -.055em; line-height: .78; font-size: clamp(5rem, 22vw, 20rem); text-align: center; margin: 0 -2vw; user-select: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0) 85%); -webkit-background-clip: text; background-clip: text; color: transparent; padding-top: 8px; }
.footer-bottom { display: flex; flex-direction: column; gap: 10px; padding: 22px 0 28px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom a { color: rgba(255, 255, 255, .7); text-decoration: none; }
.footer-bottom a:hover { color: #FFA94D; }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
body.has-sticky-cta .site-footer { padding-bottom: 76px; }
@media (min-width: 1180px) { body.has-sticky-cta .site-footer { padding-bottom: 0; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 800; display: flex; gap: 8px; padding: 8px; border-radius: 999px; background: rgba(11, 29, 69, .94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 18px 40px -16px rgba(11, 29, 69, .6); transform: translateY(140%); transition: transform .5s var(--tl-ease); }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; min-height: 48px; justify-content: space-between; }
.sticky-cta .btn-light { background: #fff; }
.sticky-cta-share { width: 48px; height: 48px; flex: none; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: #fff; }
.sticky-cta-share svg { width: 22px; height: 22px; }
@media (min-width: 1180px) { .sticky-cta { display: none; } }

/* ---------- 404 ---------- */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.notfound-code { font-family: var(--tl-font-display); font-size: clamp(6rem, 20vw, 13rem); font-weight: 800; line-height: .9; letter-spacing: -.06em; }

/* ---------- Reveal helpers (only hidden when JS + Motion are running) ---------- */
.js-motion [data-reveal] { opacity: 0; }
.js-motion [data-reveal-stagger] > * { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
  .js-motion [data-reveal], .js-motion [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* Team page hero: overlapping founder initials (swap for a team photo later) */
.founder-trio { position: relative; height: 380px; }
.founder-trio span { position: absolute; display: grid; place-items: center; border-radius: 50%; font-family: var(--tl-font-display); font-weight: 700; letter-spacing: -.05em; box-shadow: 0 30px 60px -30px rgba(11, 29, 69, .45); border: 6px solid var(--tl-paper); }
.founder-trio span:nth-child(1) { width: 230px; height: 230px; left: 4%; top: 30px; font-size: 5rem; background: linear-gradient(160deg, #FFE8CC, #FFC078); color: #D9480F; }
.founder-trio span:nth-child(2) { width: 190px; height: 190px; left: 40%; top: 150px; font-size: 4.4rem; background: linear-gradient(160deg, #D3F9D8, #96F2D7); color: #087F5B; z-index: 2; }
.founder-trio span:nth-child(3) { width: 210px; height: 210px; right: 2%; top: 0; font-size: 4rem; background: linear-gradient(160deg, #D0EBFF, #D0BFFF); color: #1864AB; }
.founder-trio .hand-note { position: absolute; left: 8%; bottom: 0; transform: rotate(-4deg); }
@media (max-width: 559px) {
  .tabs-list { flex-wrap: wrap; border-radius: 24px; width: 100%; }
  .tab-btn { flex: 1 1 auto; padding: 0 14px; }
}

/* ==========================================================================
   v4 additions
   ========================================================================== */

/* ---------- Phone images (real app UI) ---------- */
.phone-img { display: block; height: auto; filter: drop-shadow(0 24px 28px rgba(11, 29, 69, .22)) drop-shadow(0 6px 10px rgba(11, 29, 69, .12)); }
.phone-duo { position: relative; isolation: isolate; aspect-ratio: 1 / 1.12; max-width: 440px; margin: 0 auto; }
.phone-duo::before { content: ""; position: absolute; z-index: -1; inset: 6% 4% 0; border-radius: 50%; background: radial-gradient(circle, var(--glow, #DCD6FB) 0%, transparent 66%); }
.phone-duo img { position: absolute; width: 47%; }
.phone-duo .p1 { left: 6%; top: 6%; transform: rotate(-5deg); z-index: 1; }
.phone-duo .p2 { right: 6%; top: 0; transform: rotate(4deg); z-index: 2; }
.phone-duo.is-single img { left: 50%; top: 0; width: 50%; transform: translateX(-50%); }
.phone-duo .hand-note { position: absolute; left: 0; bottom: 4%; z-index: 3; transform: rotate(-5deg); }

/* ---------- Hero v4 ---------- */
.rotator { display: inline-grid; vertical-align: top; }
.rotator > span { grid-area: 1 / 1; white-space: nowrap; justify-self: start; }
.rotator > span:not(.is-on) { visibility: hidden; }
.js-motion .rotator > span { visibility: visible; }
.js-motion .rotator > span:not(.is-on) { opacity: 0; }
.hero-title .marker { padding: 0 .06em; }
.store-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; align-items: center; }
.store-row .store-note { font-size: 13px; color: var(--tl-soft); width: 100%; }

/* ---------- Store badges ---------- */
.store-badge { display: inline-flex; align-items: center; gap: 10px; height: 50px; padding: 0 16px 0 12px; border-radius: 12px; background: #000; color: #fff; text-decoration: none; border: 1px solid rgba(255, 255, 255, .22); transition: transform .3s var(--tl-ease), box-shadow .3s, border-color .3s; }
.store-badge:hover { transform: translateY(-3px); border-color: #FFA94D; box-shadow: 0 14px 26px -14px rgba(217, 72, 15, .7); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.05; }
.store-badge small { font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; opacity: .8; }
.store-badge strong { font-family: var(--tl-font-body); font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.store-soon { display: inline-block; margin-left: 6px; font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--tl-hover-gradient); color: #fff; padding: 3px 7px; border-radius: 999px; }

/* ---------- Demo v4 (mode switch + phone) ---------- */
.demo-switch { display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px; background: #fff; border: 1px solid var(--tl-line); margin-bottom: 18px; }
.demo-switch button { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 16px; border: 0; border-radius: 999px; background: transparent; font-weight: 600; font-size: 14.5px; color: var(--tl-muted); cursor: pointer; transition: background .3s, color .3s; }
.demo-switch button svg { width: 18px; height: 18px; }
.demo-switch button[aria-pressed="true"] { background: var(--tl-ink); color: #fff; }
.demo-switch button:hover:not([aria-pressed="true"]) { color: var(--tl-saffron); }
.demo-pdf { position: relative; overflow: hidden; background: #fff; border-radius: 18px; padding: 20px; min-height: 360px; box-shadow: 0 26px 50px -30px rgba(11, 29, 69, .45); border: 1px solid var(--tl-line); }
.demo-pdf-file { display: flex; align-items: center; gap: 14px; }
.demo-pdf-file .pdf-tag { width: 48px; height: 56px; border-radius: 10px; background: #FDECEC; color: #D63A3A; display: grid; place-items: center; font-weight: 800; font-size: 12.5px; flex: none; }
.demo-pdf-file b { display: block; color: var(--tl-ink); }
.demo-pdf-file small { color: var(--tl-soft); }
.demo-pages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.demo-pages i { position: relative; aspect-ratio: 3 / 4; border-radius: 8px; border: 1px solid var(--tl-line); background: repeating-linear-gradient(#fff 0 10px, #E7E4F0 10px 13px, #fff 13px 18px) padding-box; background-clip: content-box; padding: 12px 10px; transition: border-color .3s, box-shadow .3s; }
.demo-pages i.is-done { border-color: #16B58A; box-shadow: 0 0 0 3px rgba(22, 181, 138, .15); }
.demo-pages i.is-done::after { content: "✓"; position: absolute; top: -8px; right: -8px; width: 20px; height: 20px; border-radius: 50%; background: #16B58A; color: #fff; font-size: 12px; display: grid; place-items: center; font-weight: 700; }
.demo-bar { height: 8px; border-radius: 8px; background: #ECEBF3; margin-top: 18px; overflow: hidden; }
.demo-bar em { display: block; height: 100%; width: 0; border-radius: 8px; background: linear-gradient(90deg, #3525CD, #6C5CFF); transition: width 1.5s var(--tl-ease); }
.demo-pdf.is-extracting .demo-bar em { width: 100%; }
.demo-bar-label { display: flex; justify-content: space-between; font-size: 13.5px; margin-top: 8px; color: var(--tl-muted); }

.demo-phone { position: relative; width: 100%; max-width: 360px; margin: 0 auto; border-radius: 48px; background: #0E1016; padding: 10px; box-shadow: inset 0 0 0 2px #2A2E38, 0 0 0 1.5px #3A3F4B, 0 40px 60px -30px rgba(11, 29, 69, .5); }
.demo-phone::before { content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 92px; height: 26px; border-radius: 20px; background: #000; z-index: 3; }
.demo-phone-screen { position: relative; border-radius: 40px; background: #F7F9FB; min-height: 600px; display: flex; flex-direction: column; overflow: hidden; color: #191C1E; }
.demo-appbar { display: flex; align-items: center; justify-content: space-between; padding: 54px 18px 12px; background: #fff; border-bottom: 1px solid #ECEBF3; }
.demo-appbar .logo { display: flex; align-items: center; gap: 6px; }
.demo-appbar .logo img:first-child { height: 24px; width: auto; }
.demo-appbar .logo img:last-child { height: 17px; width: auto; }
.demo-appbar .demo-tag { background: #E6E3FB; color: #3525CD; }
.demo-stage { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 16px; gap: 0; }
.demo-empty { font-family: var(--tl-font-hand); font-size: 1.6rem; color: #8A889A; text-align: center; }
.demo-q { padding: 12px 14px; border: 1px solid #E6E4EF; border-radius: 16px; background: #fff; margin-bottom: 10px; }
.demo-q-title { font-weight: 650; color: #191C1E; font-size: 14.5px; display: flex; gap: 8px; line-height: 1.35; }
.demo-q-title b { flex: none; font-size: 11px; background: #191C1E; color: #fff; border-radius: 6px; padding: 3px 7px; height: fit-content; margin-top: 1px; }
.demo-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; }
.demo-opt { font-size: 13px; padding: 8px 10px; border-radius: 10px; background: #fff; border: 1.5px solid #E1DFEA; color: #3A3950; text-align: left; font-family: inherit; }
.demo-opt.is-correct { background: #EAF8EF; border-color: #16A34A; color: #0B6B32; font-weight: 600; }
button.demo-opt { cursor: pointer; min-height: 48px; font-size: 14px; transition: background .25s, border-color .25s; }
button.demo-opt:hover { border-color: #3525CD; background: #EEECFD; }
button.demo-opt.is-wrong { background: #FFF0F0; border-color: #E03131; color: #A61E1E; }
.demo-opts.is-stack { grid-template-columns: 1fr; }
.demo-room small { color: #8A889A; }
.demo-code { background: none; -webkit-background-clip: border-box; background-clip: border-box; color: #3525CD; font-family: var(--tl-font-body); font-weight: 800; }
.demo-share { background: #16A34A; color: #fff; border-radius: 999px; }
.demo-joined span { border-color: #F7F9FB; }
.demo-score { color: #191C1E; font-family: var(--tl-font-body); font-weight: 800; }
.demo-board li { background: #fff; border: 1px solid #E6E4EF; }
.demo-board li.is-you { background: #EEECFD; border-color: #C9C3F7; color: #2A1FA8; }
.demo-topics { display: grid; gap: 10px; margin-top: 16px; text-align: left; }
.demo-topics div { font-size: 13px; font-weight: 600; }
.demo-topics i { display: block; height: 7px; border-radius: 7px; background: #ECEBF3; margin-top: 5px; overflow: hidden; }
.demo-topics i em { display: block; height: 100%; border-radius: 7px; }
.demo-actions .btn { min-width: 0; }

/* ---------- Benefits: calculator + live board ---------- */
.benefit-grid { display: grid; gap: 36px; }
@media (min-width: 980px) { .benefit-grid { grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; } }
.benefit-list { list-style: none; display: grid; gap: 0; border-top: 1px solid rgba(255, 255, 255, .14); margin-bottom: 28px; }
@media (min-width: 640px) { .benefit-list { grid-template-columns: repeat(3, 1fr); } .benefit-list li + li { border-left: 1px solid rgba(255, 255, 255, .14); padding-left: 18px; } }
.benefit-list li { padding: 18px 12px 18px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.benefit-list strong { display: block; font-family: var(--tl-font-display); font-size: 1.5rem; color: #fff; letter-spacing: -.02em; line-height: 1.1; }
.benefit-list span { display: block; font-size: 14.5px; margin-top: 6px; color: rgba(255, 255, 255, .7); }
.calc { border-radius: var(--tl-radius); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); padding: 22px 18px; }
@media (min-width: 600px) { .calc { padding: 28px; } }
.calc h3 { font-size: 1.3rem; display: flex; align-items: center; gap: 10px; }
.calc-fields { display: grid; gap: 16px; margin-top: 18px; }
@media (min-width: 600px) { .calc-fields { grid-template-columns: 1fr 1fr; gap: 18px 24px; } }
.calc-field label { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, .85); }
.calc-field output { color: #FFC078; font-weight: 700; }
.calc-field input[type="range"] { width: 100%; margin-top: 10px; accent-color: #F08C00; height: 28px; }
.calc-result { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px dashed rgba(255, 255, 255, .2); }
.calc-result div { display: flex; flex-direction: column; }
.calc-result small { font-size: 12.5px; color: rgba(255, 255, 255, .6); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.calc-result strong { font-family: var(--tl-font-display); font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem); color: #fff; letter-spacing: -.03em; line-height: 1.1; margin-top: 4px; }
.calc-result .is-big strong { background: linear-gradient(90deg, #FFA94D, #FFD43B); -webkit-background-clip: text; background-clip: text; color: transparent; }
.calc-note { margin-top: 12px; font-size: 12.5px; color: rgba(255, 255, 255, .5); }

.live-phone { position: relative; max-width: 340px; margin: 0 auto; border-radius: 46px; background: #0E1016; padding: 10px; box-shadow: inset 0 0 0 2px #2A2E38, 0 0 0 1.5px #3A3F4B, 0 40px 70px -30px rgba(0, 0, 0, .6); }
.live-phone::before { content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 88px; height: 25px; border-radius: 20px; background: #000; z-index: 3; }
.live-screen { border-radius: 38px; background: #F7F9FB; color: #191C1E; padding: 56px 14px 18px; min-height: 540px; }
.live-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.live-head strong { font-size: 17px; }
.live-pill { font-size: 11.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px; background: #FDECEC; color: #C92A2A; white-space: nowrap; }
.live-sub { display: flex; justify-content: space-between; font-size: 12.5px; color: #6B6980; margin-top: 6px; }
.live-list { list-style: none; margin-top: 14px; position: relative; }
.live-row { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 14px; background: #fff; border: 1px solid #E9E7F1; margin-bottom: 7px; will-change: transform; }
.live-row .rk { width: 20px; font-weight: 700; color: #8A889A; font-size: 13.5px; }
.live-row .av { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 11.5px; flex: none; }
.live-row .nm { flex: 1; font-weight: 600; font-size: 14px; }
.live-row .sc { font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; }
.live-row .up { font-size: 11px; font-weight: 700; color: #16A34A; opacity: 0; transition: opacity .3s; }
.live-row.is-up .up { opacity: 1; }
.live-row.is-up { border-color: #16A34A; background: #F1FBF5; }
.live-row:first-child .rk { color: #F59F00; }
.live-foot { font-size: 12.5px; color: #6B6980; text-align: center; margin-top: 10px; }

/* ---------- Audience switcher ---------- */
.aud { display: grid; gap: 24px; }
@media (min-width: 980px) { .aud { grid-template-columns: 300px 1fr; gap: 48px; align-items: start; } }
.aud-list { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; margin: 0 calc(var(--tl-gutter) * -1); padding-left: var(--tl-gutter); padding-right: var(--tl-gutter); scroll-snap-type: x proximity; }
.aud-list::-webkit-scrollbar { display: none; }
@media (min-width: 980px) { .aud-list { flex-direction: column; overflow: visible; margin: 0; padding: 0; gap: 2px; } }
.aud-btn { flex: none; scroll-snap-align: start; display: flex; align-items: center; gap: 10px; min-height: 46px; padding: 0 16px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .16); background: transparent; color: rgba(255, 255, 255, .8); font-weight: 600; font-size: 14.5px; cursor: pointer; text-align: left; transition: background .3s, color .3s, border-color .3s; white-space: nowrap; }
.aud-ico { width: 20px; height: 20px; flex: none; } /* Lucide icons (tabs + who-its-for eyebrows) */
@media (min-width: 980px) { .aud-btn { border: 0; border-radius: 12px; padding: 0 14px; min-height: 48px; } }
.aud-btn:hover { color: #FFC078; }
.aud-btn[aria-selected="true"] { background: var(--tl-hover-gradient); color: #fff; border-color: transparent; }
.aud-panel { display: grid; gap: 24px; align-items: center; }
.aud-panel[hidden] { display: none; }
@media (min-width: 720px) { .aud-panel { grid-template-columns: 1.2fr .8fr; gap: 36px; } }
.aud-panel h3 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem); max-width: 18ch; }
.aud-panel .tab-intro { margin-top: 12px; font-size: 1.05rem; color: rgba(255, 255, 255, .78); }
.aud-panel .hand-note { color: #FFC078; margin-top: 18px; display: block; font-size: 1.5rem; }
.aud-panel .phone-img { width: min(240px, 60vw); margin: 0 auto; filter: drop-shadow(0 26px 30px rgba(0, 0, 0, .45)); }
.aud-count { margin-top: 26px; font-size: 14px; color: rgba(255, 255, 255, .55); }

/* ---------- Coming soon ---------- */
.soon-grid { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--tl-line-strong); }
@media (min-width: 640px) { .soon-grid { grid-template-columns: 1fr 1fr; column-gap: 32px; } }
@media (min-width: 1000px) { .soon-grid { grid-template-columns: repeat(4, 1fr); } }
.soon-item { position: relative; padding: 22px 0; border-bottom: 1px solid var(--tl-line-strong); }
.soon-item .soon-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tl-saffron); background: var(--tl-peach); padding: 4px 9px; border-radius: 999px; }
.soon-item .soon-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--tl-saffron-2); animation: tl-pulse-o 1.8s infinite; }
@keyframes tl-pulse-o { 50% { opacity: .3; } }
.soon-item h3 { margin-top: 12px; font-size: 1.15rem; font-family: var(--tl-font-body); font-weight: 650; letter-spacing: -.015em; }
.soon-item p { margin-top: 6px; color: var(--tl-muted); font-size: 14.5px; }
.soon-item .soon-for { margin-top: 10px; font-size: 12.5px; color: var(--tl-soft); font-weight: 600; }
.soon-item::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: var(--tl-hover-gradient); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--tl-ease); }
.soon-item:hover::after { transform: scaleX(1); }
.soon-status { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 26px; list-style: none; font-size: 14px; }
.soon-status li { display: inline-flex; align-items: center; gap: 8px; color: var(--tl-muted); }
.soon-status b { color: var(--tl-ink); }
.soon-status i { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--tl-line-strong); }
.soon-status .is-now i { background: var(--tl-green); border-color: var(--tl-green); box-shadow: 0 0 0 4px rgba(22, 181, 138, .2); }

/* ---------- FAQ tabs ---------- */
.faq-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.faq-tab { min-height: 40px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--tl-line-strong); background: #fff; font-weight: 600; font-size: 14px; color: var(--tl-muted); cursor: pointer; transition: all .3s; }
.faq-tab:hover { color: var(--tl-saffron); border-color: #FFC078; }
.faq-tab[aria-selected="true"] { background: var(--tl-ink); border-color: var(--tl-ink); color: #fff; }
.faq-panel[hidden] { display: none; }

/* ---------- Footer apps ---------- */
.footer-apps { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.footer-apps-label { display: block; margin-top: 26px; font-size: 13.5px; font-weight: 600; color: #fff; }
.footer-apps .store-badge { background: rgba(255, 255, 255, .04); }

/* Step expanded brand line */
.step-detail-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.step-detail-brand img { height: 22px; width: auto; }
.step-detail-brand img + img { height: 16px; }
@media (min-width: 760px) { .step.is-expanded .step-body { padding: 24px 48px 24px 0; } }

/* Paper-cost old way tag */
.oldway-time.is-money { background: #FFE8E8; color: #C92A2A; }
.roadmap-light .roadmap-item::before { background: var(--tl-line-strong); }
.roadmap-light .roadmap-dot { background: var(--tl-cream); border-color: var(--tl-line-strong); }
.roadmap-light .roadmap-label { color: var(--tl-saffron); }
.roadmap-light .roadmap-item p { color: var(--tl-muted); }
.roadmap-light .roadmap-item.is-now .roadmap-dot { background: var(--tl-green); border-color: var(--tl-green); box-shadow: 0 0 0 6px rgba(22, 181, 138, .18); }

@media (min-width: 760px) { .step.is-expanded .step-media img { height: 100%; } .step.is-expanded .step-media { height: 100%; padding-top: 10px; } }
.phone-duo.is-single { aspect-ratio: 1 / 1.22; }
.phone-duo.is-single .hand-note { left: 50%; bottom: 0; transform: translateX(-50%) rotate(-3deg); white-space: nowrap; }
@media (min-width: 760px) {
  .step.is-expanded .step-media { height: 470px; align-self: end; }
  .step.is-expanded .step-media img { height: 470px; }
  .step.is-expanded { align-items: end; }
  .step.is-expanded .step-body { align-self: center; }
}
.demo-pages { max-width: 340px; }
@media (min-width: 900px) { .hero-title { font-size: clamp(3rem, 1.6rem + 4vw, 4.9rem); } .hero-copy { max-width: 46ch; } }

/* ==========================================================================
   v5 — header dropdowns, mobile accordion, early-access popup, phone field,
   footer store badges, step-card and demo-phone alignment
   ========================================================================== */

/* ---------- Header nav with dropdowns (≥1180px) ---------- */
.nav-list { display: flex; align-items: center; list-style: none; }
.nav-item { position: relative; }
.nav-trigger { gap: 4px; border: 0; background: transparent; cursor: pointer; }
.nav-caret { width: 14px; height: 14px; flex: none; transition: transform .3s var(--tl-ease); }
.nav-item.is-open > .nav-link {
  color: var(--tl-saffron);
  background-image: var(--tl-hover-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-item.is-open > .nav-link::after { transform: scaleX(1); transform-origin: left; }
.nav-item.is-open > .nav-trigger .nav-caret { transform: rotate(180deg); }
.nav-dd {
  position: absolute; top: calc(100% + 12px); left: 50%; z-index: 20;
  width: 340px; padding: 10px; border-radius: 18px; background: #fff; border: 1px solid var(--tl-line);
  box-shadow: 0 30px 60px -28px rgba(11, 29, 69, .38), 0 8px 20px -12px rgba(11, 29, 69, .16);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
  transition: opacity .22s var(--tl-ease), transform .22s var(--tl-ease), visibility 0s .22s;
}
.nav-dd::before { /* caret */
  content: ""; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px; background: #fff;
  border-left: 1px solid var(--tl-line); border-top: 1px solid var(--tl-line); border-radius: 3px 0 0 0;
  transform: translateX(-50%) rotate(45deg);
}
.nav-dd::after { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; } /* hover bridge */
.nav-item.is-open > .nav-dd { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition: opacity .22s var(--tl-ease), transform .22s var(--tl-ease); }
.nav-dd.is-wide { width: 600px; }
.nav-dd-list { list-style: none; display: grid; gap: 2px; }
.nav-dd.is-wide .nav-dd-list { grid-template-columns: 1fr 1fr; }
.nav-dd-link { display: flex; align-items: flex-start; gap: 12px; min-height: 44px; padding: 10px 12px; border-radius: 12px; text-decoration: none; color: var(--tl-ink); transition: background .2s; }
.nav-dd-link:hover, .nav-dd-link:focus-visible { background: var(--tl-cream); }
.nav-dd-icon { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--tl-peach); color: var(--tl-saffron); transition: background .25s, color .25s; }
.nav-dd-icon svg { width: 19px; height: 19px; }
.nav-dd-link:hover .nav-dd-icon, .nav-dd-link:focus-visible .nav-dd-icon, .nav-dd-link[aria-current="page"] .nav-dd-icon { background: var(--tl-hover-gradient); color: #fff; }
.nav-dd-text { display: grid; gap: 2px; min-width: 0; }
.nav-dd-text b { font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.nav-dd-text small { font-size: 13px; line-height: 1.4; color: var(--tl-muted); }
.nav-dd-link:hover b, .nav-dd-link:focus-visible b, .nav-dd-link[aria-current="page"] b {
  color: var(--tl-saffron); background-image: var(--tl-hover-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-dd-all {
  display: flex; align-items: center; justify-content: space-between; min-height: 44px; margin: 8px 2px 0; padding: 8px 12px 0;
  border-top: 1px solid var(--tl-line); font-size: 14px; font-weight: 600; color: var(--tl-ink); text-decoration: none; transition: color .25s;
}
.nav-dd-all:hover, .nav-dd-all:focus-visible, .nav-dd-all[aria-current="page"] { color: var(--tl-saffron); }

/* ---------- Mobile / tablet menu: accordion groups ---------- */
.mm-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%;
  padding: 14px 0; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .1); background: none; color: #fff; cursor: pointer; text-align: left;
  font-family: var(--tl-font-display); font-size: clamp(1.7rem, 7vw, 2.4rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.2;
  transition: color .25s;
}
.mm-toggle:hover, .mm-toggle.is-active { color: #FFA94D; }
.mm-plus { position: relative; flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .25); color: #fff; transition: background .3s, border-color .3s; }
.mm-plus::before, .mm-plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 13px; height: 2px; border-radius: 2px; background: currentColor; transform: translate(-50%, -50%); transition: transform .3s var(--tl-ease); }
.mm-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.mm-group.is-open .mm-plus { background: var(--tl-saffron); border-color: var(--tl-saffron); }
.mm-group.is-open .mm-plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.mm-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--tl-ease); }
.mm-sub > ul { list-style: none; min-height: 0; overflow: hidden; visibility: hidden; transition: visibility 0s .35s; }
.mm-group.is-open .mm-sub { grid-template-rows: 1fr; }
.mm-group.is-open .mm-sub > ul { visibility: visible; transition: none; }
.mobile-menu-links .mm-sub a {
  display: flex; align-items: center; justify-content: flex-start; min-height: 48px; padding: 8px 0 8px 18px; border-bottom: 0;
  font-family: var(--tl-font-body); font-size: 17px; font-weight: 550; letter-spacing: 0; color: rgba(255, 255, 255, .78);
}
.mobile-menu-links .mm-sub .mm-ico { width: 18px; height: 18px; flex: none; margin-right: 12px; color: #FFA94D; }
.mobile-menu-links .mm-sub li:first-child a { margin-top: 6px; }
.mobile-menu-links .mm-sub li:last-child a { margin-bottom: 8px; }
.mobile-menu-links .mm-sub a:hover, .mobile-menu-links .mm-sub a[aria-current="page"] { color: #FFA94D; padding-left: 24px; }

/* ---------- Early-access popup (<dialog>) — bottom sheet on phones, centred modal ≥768px ---------- */
html.modal-open { overflow: hidden; }
.ea-modal {
  width: 100%; max-width: 100%; max-height: 92vh; max-height: 92dvh; margin: auto 0 0; padding: 0;
  border: 0; background: transparent; color: var(--tl-text); overflow: visible;
}
.ea-modal::backdrop { background: rgba(11, 29, 69, .55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.ea-panel {
  max-height: 92vh; max-height: 92dvh; overflow-y: auto; overscroll-behavior: contain;
  background: #fff; border-radius: 22px 22px 0 0; box-shadow: 0 -20px 60px -20px rgba(11, 29, 69, .45);
}
.ea-modal[open] .ea-panel { animation: tl-sheet-up .42s var(--tl-ease); }
@keyframes tl-sheet-up { from { transform: translateY(100%); } }
.ea-head { position: relative; padding: 24px 72px 22px 20px; background: var(--tl-ink); color: rgba(255, 255, 255, .75); }
.ea-head h2 { margin-top: 10px; color: #fff; font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.2rem); }
.ea-head p { margin-top: 8px; font-size: 15px; max-width: 40ch; }
.ea-close {
  position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: rgba(255, 255, 255, .1); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .3s, transform .3s;
}
.ea-close:hover { background: var(--tl-saffron); transform: rotate(90deg); }
.ea-close svg { width: 18px; height: 18px; }
.ea-form { padding: 22px 20px calc(24px + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 768px) {
  .ea-modal { width: calc(100% - 48px); max-width: 520px; margin: auto; }
  .ea-panel { border-radius: var(--tl-radius); box-shadow: 0 40px 90px -30px rgba(11, 29, 69, .55); }
  .ea-modal[open] .ea-panel { animation: tl-modal-in .35s var(--tl-ease); }
  .ea-head { padding: 30px 76px 24px 28px; }
  .ea-form { padding: 24px 28px 28px; }
}
@keyframes tl-modal-in { from { opacity: 0; transform: translateY(16px) scale(.97); } }

/* ---------- Phone field: fixed +91 prefix + inline error ---------- */
.phone-field { position: relative; }
.phone-prefix {
  position: absolute; left: 1.5px; top: 1.5px; bottom: 1.5px; display: flex; align-items: center;
  padding: 0 12px 0 16px; border-right: 1px solid var(--tl-line); font-size: 16px; font-weight: 600; color: var(--tl-ink); pointer-events: none;
}
.phone-field input { padding-left: 66px; }
.on-dark .phone-prefix { color: #fff; border-right-color: rgba(255, 255, 255, .18); }
.field-optional { font-weight: 400; color: var(--tl-soft); }
.field-error { font-size: 13px; font-weight: 600; line-height: 1.4; color: #C92A2A; }
.on-dark .field-error { color: #FFA8A8; }
.form-field input[aria-invalid="true"] { border-color: #E03131; }
.form-field input[aria-invalid="true"]:focus { box-shadow: 0 0 0 4px rgba(224, 49, 49, .16); border-color: #E03131; }

/* ---------- Footer: store badges in the footer-mid row ---------- */
.footer-get-app { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-left: auto; }
@media (min-width: 768px) and (max-width: 1023px) { .footer-get-app { flex-direction: column; align-items: flex-end; gap: 10px; } }
.footer-get-app .footer-apps-label { margin-top: 0; }
.footer-get-app .footer-apps { margin-top: 0; }
@media (max-width: 767px) {
  .footer-mid { flex-direction: column; align-items: center; text-align: center; gap: 22px; }
  .footer-get-app { flex-direction: column; gap: 12px; margin-left: 0; }
  .footer-get-app .footer-apps { justify-content: center; }
}

/* ---------- How it works: Explore buttons share one baseline ---------- */
.step-copy { margin-bottom: 16px; }
.step-explore { margin-top: auto; }
@media (min-width: 1100px) { .step-title { min-height: 2.1em; } }
@media (min-width: 760px) and (max-width: 1099px) { /* expanded card spans both rows on tablets: centre it */
  .step.is-expanded { align-items: center; }
  .step.is-expanded .step-media { align-self: center; }
}

/* ---------- Try-it demo: smaller phone, balanced columns ---------- */
.demo { gap: 28px; }
.demo-phone { max-width: min(90%, 320px); }
.demo-phone-screen { min-height: 500px; }
@media (min-width: 768px) { .demo-phone { max-width: 280px; } }
@media (min-width: 960px) {
  .demo { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 48px; align-items: center; }
  .demo-phone { max-width: 300px; }
}
