/* ============================================================
   TRKR — marketing site
   System: Saira (display, heavy italic — athletic/speed) +
           Hanken Grotesk (body) + JetBrains Mono (numeric labels)
   Light theme, cyan accent. Motif: italic shear / speed lines.
   ============================================================ */

:root {
  /* color — light/cyan default. Tweaks swap --accent + --accent-2 */
  --ink: #0b0b0e;
  --ink-2: #2a2d31;
  --muted: #6a6f76;
  --bg: #f4f6f7;
  --bg-2: #eceff1;
  --surface: #ffffff;
  --line: rgba(11, 11, 14, 0.10);
  --line-strong: rgba(11, 11, 14, 0.16);

  --accent: #14c2de;        /* cyan from logo */
  --accent-deep: #0fa6c0;
  --accent-2: #14c2de;      /* secondary accent (dual mode differs) */
  --accent-ink: #04181c;    /* text on accent */
  --accent-soft: rgba(20, 194, 222, 0.12);

  --shear: -9deg;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --shadow-1: 0 1px 2px rgba(11,11,14,.05), 0 8px 24px rgba(11,11,14,.06);
  --shadow-2: 0 2px 6px rgba(11,11,14,.06), 0 30px 70px rgba(11,11,14,.16);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- type ---------- */
.display {
  font-family: "Saira", system-ui, sans-serif;
  font-weight: 800;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: none;
}
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  transform: skewX(var(--shear));
}
.mono { font-family: "JetBrains Mono", monospace; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.section-pad { padding: clamp(64px, 9vw, 132px) 0; }

/* ---------- logo mark ---------- */
.mark {
  font-family: "Saira", sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  user-select: none;
}
.mark .t-r { color: var(--accent-2); }
.mark.on-dark { color: #fff; }

/* ---------- buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x: 22px;
  font-family: "Saira", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .25s var(--ease), background .2s, box-shadow .25s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 22px var(--accent-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(20,194,222,.32); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost.on-dark:hover { border-color: #fff; }
.btn-lg { --pad-y: 16px; --pad-x: 30px; font-size: 17px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.10);
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line);
}
/* nav text — white on dark default */
.nav .mark,
.nav .nav-links a,
.nav .nav-login { color: rgba(255,255,255,.88); }
.nav .nav-links a:hover { color: #fff; }
.nav .nav-links a::after { background: var(--accent); }
/* nav text — dark when frosted */
.nav.scrolled .mark,
.nav.scrolled .nav-links a,
.nav.scrolled .nav-login { color: var(--ink-2); }
.nav.scrolled .nav-links a:hover { color: var(--ink); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-mark { font-size: 27px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transform: skewX(var(--shear));
  transition: width .28s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-login { font-family:"Saira"; font-style:italic; font-weight:700; font-size:15px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ============================================================
   HERO VIDEO BACKGROUND
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 82vh;
  padding-top: clamp(40px, 6vw, 76px); padding-bottom: clamp(40px, 5vw, 72px);
  display: flex; align-items: center;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  background: url(assets/photo-b.png) center / cover no-repeat;
}
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,11,14,.58) 0%, rgba(11,11,14,.36) 50%, rgba(11,11,14,.48) 100%);
}
.hero > .wrap { position: relative; z-index: 1; width: 100%; }

/* hero text — white on dark video */
.hero .eyebrow { color: rgba(255,255,255,.55); }
.hero .hero-h1 { color: #fff; }
.hero .accent-word { color: var(--accent); }
.hero .hero-sub { color: rgba(255,255,255,.78); }
.hero .hero-trust { color: rgba(255,255,255,.5); }
.hero .btn-ghost { border-color: rgba(255,255,255,.3); color: #fff; }
.hero .btn-ghost:hover { border-color: #fff; }

/* ============================================================
   HERO LAYOUT
   ============================================================ */
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero-h1 {
  font-size: clamp(44px, 6.6vw, 92px);
  margin: 18px 0 0;
}
.hero-h1 .accent-word { color: var(--accent); position: relative; }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2); max-width: 30em; margin: 24px 0 0; line-height: 1.55;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { margin-top: 20px; font-size: 13.5px; color: var(--muted); display:flex; align-items:center; gap:8px;}
.hero-trust .dot { width:6px;height:6px;border-radius:50%;background:var(--accent);}

/* per-line headline reveal — visible at rest; hidden+animated only under .anim */
.hero-h1 .line { display: block; }
.anim .hero-h1 .line { opacity: 0; transform: translateY(38px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.anim .hero-h1.is-in .line { opacity: 1; transform: none; }
.anim .hero-h1.is-in .line:nth-child(2) { transition-delay: .09s; }
.anim .hero-h1.is-in .line:nth-child(3) { transition-delay: .18s; }
.anim .hero-h1.is-in .line:nth-child(4) { transition-delay: .27s; }
@keyframes riseUp { to { transform: translateY(0); } }

/* hero visual */
.hero-visual { position: relative; height: 540px; }
.speed-lines { position: absolute; inset: -40px -60px; z-index: 0; pointer-events:none; }
.speed-lines i {
  position: absolute; height: 3px; background: linear-gradient(90deg, transparent, var(--accent));
  transform: skewX(var(--shear)); opacity: .5; border-radius: 2px;
}
.dash-mock {
  position: absolute; z-index: 2; right: -4%; top: 4px; width: 100%;
  border-radius: var(--radius); background: var(--surface);
  box-shadow: var(--shadow-2); border: 1px solid var(--line);
  overflow: hidden;
}
.phone-mock {
  position: absolute; z-index: 3; left: -7%; bottom: -22px; width: 210px;
}
.phone-mock .phone { transform: scale(.82); transform-origin: bottom left; }

/* parallax helpers driven by JS via --py */
.parallax { will-change: transform; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink); color: #fff; overflow: hidden;
  padding: 18px 0; transform: skewY(-1.2deg); margin: 0 -4vw;
}
.marquee-track { display: flex; gap: 40px; white-space: nowrap; width: max-content;
  animation: scrollx 28s linear infinite; transform: skewY(1.2deg); }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family:"Saira"; font-style: italic; font-weight: 800;
  font-size: 26px; letter-spacing: .02em; display:flex; align-items:center; gap:40px;
}
.marquee-item .sep { color: var(--accent); font-style: normal; }
@keyframes scrollx { to { transform: translateX(-50%) skewY(1.2deg);} }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { max-width: 760px; }
.sec-title { font-size: clamp(30px, 4vw, 52px); margin: 14px 0 0; }
.sec-lead { color: var(--ink-2); font-size: 19px; margin-top: 18px; max-width: 44em; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px 30px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-1); border-color: var(--line-strong); }
.step-num {
  font-family:"Saira"; font-style: italic; font-weight: 800; font-size: 64px;
  line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--line-strong);
  transition: -webkit-text-stroke-color .3s, color .3s;
}
.step:hover .step-num { color: var(--accent-soft); -webkit-text-stroke-color: var(--accent); }
.step h3 { font-family:"Saira"; font-style:italic; font-weight:700; font-size: 23px; margin: 20px 0 10px; }
.step p { color: var(--muted); font-size: 15.5px; margin: 0; }
.step .bar { position:absolute; left:0; top:0; height:100%; width:4px; background: var(--accent); transform: skewX(var(--shear)) translateX(-8px); opacity:0; transition:.3s;}
.step:hover .bar { opacity:1; }

/* ============================================================
   FEATURE TABS
   ============================================================ */
.feat-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 40px 0 32px;
}
.feat-tab {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; white-space: nowrap;
  padding: 7px 16px; border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  cursor: pointer; background: transparent; color: var(--ink-2);
  transition: all .2s;
}
.feat-tab:hover { border-color: var(--ink); color: var(--ink); }
.feat-tab.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 0; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; transition: transform .4s var(--ease), box-shadow .4s, border-color .3s;
  position: relative; overflow: hidden;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); border-color: var(--line-strong); }
.feature h3 { font-family:"Saira"; font-style:italic; font-weight:700; font-size: 18px; margin: 0 0 8px; }
.feature p { color: var(--muted); font-size: 14px; margin: 0; line-height:1.55; }

/* ============================================================
   PHOTO BREAK (cinematic manifesto strip)
   ============================================================ */
.photo-break {
  position: relative; overflow: hidden;
  height: clamp(300px, 52vh, 580px);
}
.photo-break-bg {
  position: absolute; inset: -15% 0;
  background: url(assets/photo-b.png) center 30% / cover no-repeat;
  will-change: transform;
}
.photo-break::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(11,11,14,.82) 0%, rgba(11,11,14,.52) 55%, rgba(11,11,14,.70) 100%);
}
.photo-break-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(28px, 6vw, 120px); max-width: calc(var(--maxw) + 240px); margin: 0 auto;
}
.photo-break .pb-eye { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing:.22em; text-transform:uppercase; color: var(--accent); margin-bottom: 22px; display:flex; align-items:center; gap:10px; }
.photo-break .pb-eye::before { content:""; width:22px; height:2px; background:var(--accent); transform:skewX(var(--shear)); }
.photo-break .pb-text { font-family: "Saira", sans-serif; font-style: italic; font-weight: 800; line-height: .91; letter-spacing: -.02em; color: #fff; font-size: clamp(38px, 6.5vw, 88px); max-width: 9em; }
.photo-break .pb-text em { color: var(--accent); font-style: inherit; }
.photo-break .pb-sub { color: rgba(255,255,255,.65); font-size: clamp(15px, 1.2vw, 18px); margin-top: 22px; max-width: 28em; }

/* CTA band with photo bg */
.cta-photo { background: linear-gradient(rgba(11,11,14,.35), rgba(11,11,14,.6)), url(assets/photo-c.png) center 20% / cover no-repeat; }

/* ============================================================
   LASSO (dark)
   ============================================================ */
.lasso { background: var(--ink); color: #fff; overflow: hidden; }
.lasso .eyebrow { color: rgba(255,255,255,.6); }
.lasso .sec-title { color: #fff; }
.lasso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lasso-lead { color: rgba(255,255,255,.72); font-size: 18px; margin: 20px 0 28px; }
.lasso-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.lasso-list li { display: flex; gap: 13px; align-items: flex-start; color: rgba(255,255,255,.85); font-size: 15.5px; }
.lasso-list .tick {
  flex: none; width: 22px; height: 22px; border-radius: 6px; margin-top:1px;
  background: var(--accent); color: var(--accent-ink); display:grid; place-items:center;
}
.lasso-list .tick svg { width: 13px; height:13px; stroke-width:3; }

/* chat demo */
.lasso-demo {
  background: #131418; border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius);
  padding: 22px; box-shadow: 0 40px 90px rgba(0,0,0,.5); position: relative;
}
.demo-top { display:flex; align-items:center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 18px; }
.demo-top .lassodot { width: 26px; height:26px; border-radius:8px; background: var(--accent); display:grid; place-items:center; }
.demo-top .lassodot svg { width:16px;height:16px; }
.demo-top b { font-family:"Saira"; font-style:italic; font-size: 16px; }
.demo-top .live { margin-left:auto; font-family:"JetBrains Mono"; font-size:10px; letter-spacing:.18em; color: var(--accent); display:flex; align-items:center; gap:6px;}
.demo-top .live::before { content:""; width:7px;height:7px;border-radius:50%;background:var(--accent); animation: pulse 1.6s infinite;}
@keyframes pulse { 0%,100%{opacity:1; box-shadow:0 0 0 0 var(--accent-soft);} 50%{opacity:.5;} }
.bubble { border-radius: 14px; padding: 13px 16px; font-size: 15px; max-width: 86%; margin-bottom: 12px; line-height:1.5;}
.bubble.q { background: var(--accent); color: var(--accent-ink); margin-left: auto; border-bottom-right-radius: 4px; font-weight:600;}
.bubble.a { background: rgba(255,255,255,.06); color: rgba(255,255,255,.92); border:1px solid rgba(255,255,255,.08); border-bottom-left-radius: 4px;}
.bubble.a.typing { color: rgba(255,255,255,.55); }
.demo-input { display:flex; align-items:center; gap:10px; margin-top: 16px; padding: 12px 14px; border:1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.4); font-size:14px;}
.demo-input .send { margin-left:auto; width:30px;height:30px;border-radius:50%;background:var(--accent); display:grid;place-items:center;}
.demo-input .send svg{width:15px;height:15px;color:var(--accent-ink);}
.caret { display:inline-block; width:2px; height:1em; background: var(--accent); margin-left:2px; vertical-align:-2px; animation: blink 1s steps(2) infinite;}
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================
   SPLIT (trainers / clients)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split + .split { margin-top: clamp(60px, 8vw, 110px); }
.split h3 { font-size: clamp(28px, 3.4vw, 44px); margin: 14px 0 0; }
.split p { color: var(--ink-2); font-size: 17px; margin: 18px 0 24px; }
.split .lasso-list li { color: var(--ink-2); }
.split .tick { background: var(--accent); color: var(--accent-ink); }
.split-visual { position: relative; }

/* dashboard mock internals (recolored to new brand) */
.ui { font-family: "Hanken Grotesk", sans-serif; }
.ui-dash {
  border-radius: var(--radius); overflow: hidden; border:1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow-2); display: grid; grid-template-columns: 168px 1fr;
}
.ui-side { background: var(--ink); color: #fff; padding: 16px 14px; }
.ui-side .ui-mark { font-family:"Saira"; font-style:italic; font-weight:800; font-size:18px; margin-bottom:18px; }
.ui-side .ui-nav { display:grid; gap:4px; }
.ui-navitem { display:flex; align-items:center; gap:9px; font-size:12.5px; color:rgba(255,255,255,.62); padding:7px 9px; border-radius:8px;}
.ui-navitem.on { background: var(--accent); color: var(--accent-ink); font-weight:600;}
.ui-navitem .d { width:14px;height:14px; border-radius:4px; background: currentColor; opacity:.7; flex:none;}
.ui-main { padding: 18px; background: var(--bg); }
.ui-h { font-family:"Saira"; font-style:italic; font-weight:800; font-size:21px; }
.ui-sub { font-family:"JetBrains Mono"; font-size:9.5px; letter-spacing:.16em; color:var(--muted); text-transform:uppercase; margin-top:3px;}
.ui-cards { display:grid; grid-template-columns: 1fr 1fr 1fr; gap:9px; margin-top:14px; }
.ui-card { background: var(--surface); border:1px solid var(--line); border-radius:10px; padding:11px; }
.ui-card .k { font-family:"JetBrains Mono"; font-size:8px; letter-spacing:.12em; color:var(--muted); text-transform:uppercase;}
.ui-card .v { font-family:"Saira"; font-style:italic; font-weight:800; font-size:22px; margin-top:4px; }
.ui-card .v small { font-size:11px; color:var(--muted); font-style:normal; font-weight:500;}
.ui-feed { margin-top:10px; background: var(--surface); border:1px solid var(--line); border-radius:10px; padding:6px;}
.ui-row { display:flex; align-items:center; gap:9px; padding:8px; border-radius:8px; }
.ui-row + .ui-row { border-top:1px solid var(--line); }
.ui-av { width:24px;height:24px;border-radius:50%; background: var(--accent-soft); color:var(--accent-deep); font-size:9px; font-weight:700; display:grid;place-items:center; flex:none;}
.ui-row .nm { font-size:11.5px; font-weight:600; }
.ui-row .ms { font-size:9.5px; color:var(--muted); }
.ui-pill { margin-left:auto; font-size:9px; font-family:"JetBrains Mono"; padding:3px 8px; border-radius:999px; border:1px solid var(--line-strong); color:var(--ink-2); }
.ui-dot { width:7px;height:7px;border-radius:50%; flex:none;}
.ok{background:#16b364;} .watch{background:#f5a524;} .act{background:var(--accent);}

/* phone */
.phone {
  width: 250px; border-radius: 38px; background: #0b0b0e; padding: 9px;
  box-shadow: var(--shadow-2); border: 1px solid rgba(255,255,255,.06); margin: 0 auto;
}
.phone-screen { border-radius: 30px; overflow: hidden; background: #0e0f12; color:#fff; position:relative; }
.phone-notch { position:absolute; top:8px; left:50%; transform:translateX(-50%); width:88px; height:20px; background:#000; border-radius:999px; z-index:5;}
.ph-pad { padding: 30px 16px 16px; }
.ph-hi { font-family:"Saira"; font-style:italic; font-weight:800; font-size:19px; }
.ph-hi small { display:block; font-style:normal; font-weight:400; font-family:"Hanken Grotesk"; font-size:11px; color:rgba(255,255,255,.5); margin-top:3px;}
.ph-card { border-radius:14px; padding:13px; margin-top:12px; position:relative; overflow:hidden; }
.ph-workout { background: linear-gradient(120deg, #16191e, #1d2127); border:1px solid rgba(255,255,255,.07); }
.ph-tag { font-family:"JetBrains Mono"; font-size:8px; letter-spacing:.14em; background: var(--accent); color:var(--accent-ink); padding:3px 7px; border-radius:6px; display:inline-block; font-weight:700; white-space:nowrap;}
.ph-wname { font-family:"Saira"; font-style:italic; font-weight:800; font-size:18px; margin:9px 0 3px;}
.ph-meta { font-size:10px; color:rgba(255,255,255,.5);}
.ph-start { margin-top:11px; background: var(--accent); color:var(--accent-ink); font-family:"Saira"; font-style:italic; font-weight:700; font-size:12px; padding:8px 14px; border-radius:999px; display:inline-flex; align-items:center; gap:6px;}
.ph-nutri { background:#16191e; border:1px solid rgba(255,255,255,.07); }
.ph-k { font-family:"JetBrains Mono"; font-size:8px; letter-spacing:.12em; color:rgba(255,255,255,.45); text-transform:uppercase;}
.ph-cal { font-family:"Saira"; font-style:italic; font-weight:800; font-size:22px; margin:5px 0;}
.ph-cal small{font-size:11px;color:rgba(255,255,255,.4); font-style:normal; font-weight:400;}
.ph-macro { display:flex; align-items:center; gap:8px; margin-top:7px; font-size:9.5px; color:rgba(255,255,255,.6);}
.ph-macro .track{flex:1; height:5px; border-radius:3px; background:rgba(255,255,255,.1); overflow:hidden;}
.ph-macro .fill{height:100%; border-radius:3px;}
.ph-nav { display:flex; justify-content:space-around; padding:11px 0 6px; border-top:1px solid rgba(255,255,255,.07); margin-top:13px;}
.ph-nav .nv{font-size:8px; color:rgba(255,255,255,.4); display:flex; flex-direction:column; align-items:center; gap:4px;}
.ph-nav .nv .gl{width:16px;height:16px;border-radius:5px;background:rgba(255,255,255,.18);}
.ph-nav .nv.on{color:var(--accent);} .ph-nav .nv.on .gl{background:var(--accent);}

/* phone holding a real app screenshot */
.phone-real .phone-screen { line-height: 0; background: #000; }
.phone-real .phone-screen img { width: 100%; height: auto; display: block; }
.phone-real .phone-notch { display: none; }

/* ============================================================
   CLIENTS DARK SECTION
   ============================================================ */
#clients { padding-top: 0; padding-bottom: 0; }
#clients .eyebrow { color: rgba(255,255,255,.45); }
#clients h3 { color: #fff; }
#clients p { color: rgba(255,255,255,.72); }
#clients .lasso-list li { color: rgba(255,255,255,.82); }
#clients .lasso-list .tick { background: var(--accent); color: var(--accent-ink); }
.app-hero-img {
  width: 100%; display: block; border-radius: 22px;
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}

/* ============================================================
   CREATOR TIER
   ============================================================ */
:root { --creator: #6C47D4; --creator-soft: rgba(108,71,212,0.10); }
.creator-tier {
  background: linear-gradient(150deg, rgba(108,71,212,0.07) 0%, rgba(108,71,212,0.03) 35%, var(--bg) 70%);
  overflow: hidden; padding: clamp(32px, 4vw, 56px) 0;
}
.creator-inner {
  display: grid; grid-template-columns: 1fr 1.8fr; gap: 48px; align-items: start;
}
.creator-eye { color: var(--creator); }
.creator-eye::before { background: var(--creator); }
.creator-h { font-size: clamp(28px, 3.6vw, 48px); margin: 10px 0 0; line-height: 0.95; }
.creator-accent { font-style: italic; color: var(--creator); }
.creator-body { color: var(--ink-2); font-size: 15.5px; margin: 12px 0 16px; max-width: 36em; line-height: 1.5; }
.creator-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.creator-list li { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--ink); font-weight: 600; line-height: 1.4; }
.creator-list strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 1px; }
.creator-ico {
  flex: none; width: 32px; height: 32px; border-radius: 8px;
  background: var(--creator-soft); color: var(--creator);
  display: grid; place-items: center;
}
.creator-ico svg { width: 15px; height: 15px; }
.creator-btn { background: var(--creator); color: #fff; border-color: var(--creator); box-shadow: 0 8px 22px rgba(108,71,212,.25); }
.creator-btn:hover { background: #5a39b8; border-color: #5a39b8; box-shadow: 0 14px 30px rgba(108,71,212,.35); }

/* phone spread */
.creator-phones { display: flex; align-items: center; justify-content: flex-start; }
.creator-spread { width: 100%; display: block; }
@media (max-width: 960px) {
  .creator-inner { grid-template-columns: 1fr; }
  .creator-spread { max-width: 100%; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-toggle {
  display: flex; gap: 6px;
  background: var(--line); padding: 5px; border-radius: 999px;
  margin: 40px auto 48px; width: fit-content;
}
.ptab {
  font-family: "Saira"; font-style: italic; font-weight: 700; font-size: 15px;
  padding: 9px 26px; border-radius: 999px; border: none; cursor: pointer;
  background: transparent; color: var(--ink-2); transition: all .25s;
}
.ptab.active { background: var(--ink); color: #fff; }
.ptable { display: none; }
.ptable.show { display: block; }
.ptgrid {
  display: grid;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.ptgrid.g4 { grid-template-columns: 2fr 1fr 1fr 1fr; }
.ptgrid.g3 { grid-template-columns: 2fr 1.3fr 1.3fr; }
.pt-corner { padding: 32px 28px; border-bottom: 1px solid var(--line); background: var(--surface); }
.pt-plan {
  padding: 28px 20px 24px; border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line); text-align: center;
  background: var(--surface); position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.pt-plan .pt-tag { flex: 1; }
.pt-plan a.btn { margin-top: auto; width: 100%; justify-content: center; }
.pt-plan.hi {
  background: var(--ink); border-top: 3px solid var(--accent);
  border-left-color: rgba(255,255,255,.08); border-bottom-color: rgba(255,255,255,.08);
  padding-top: 28px;
}
.pt-badge {
  display: inline-block; margin-bottom: 10px;
  font-family: "JetBrains Mono"; font-size: 9px; letter-spacing: .16em; font-weight: 600;
  text-transform: uppercase; background: var(--accent); color: var(--accent-ink);
  padding: 3px 10px; border-radius: 999px;
}
.pt-name { font-family: "Saira"; font-style: italic; font-weight: 800; font-size: 21px; }
.pt-plan.hi .pt-name { color: #fff; }
.pt-price { font-family: "Saira"; font-style: italic; font-weight: 800; font-size: 42px; line-height: 1.05; margin: 6px 0 2px; }
.pt-plan.hi .pt-price { color: #fff; }
.pt-per { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 400; font-size: 14px; color: var(--muted); }
.pt-plan.hi .pt-per { color: rgba(255,255,255,.45); }
.pt-tag { font-size: 13px; color: var(--muted); margin: 5px 0 18px; }
.pt-plan.hi .pt-tag { color: rgba(255,255,255,.55); }
.pt-label {
  padding: 13px 28px; border-top: 1px solid var(--line);
  font-size: 14.5px; font-weight: 500;
  display: flex; align-items: center; background: var(--surface);
}
.pt-cell {
  padding: 13px 16px; border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; background: var(--surface); color: var(--muted);
}
.pt-cell.hi { background: var(--ink); border-top-color: rgba(255,255,255,.06); border-left-color: rgba(255,255,255,.06); }
.pt-cell.yes { color: var(--accent); font-weight: 700; font-size: 17px; }
.pt-cell.no { color: var(--line-strong); font-size: 16px; }
.pt-cell.muted { font-size: 13px; color: var(--muted); }
.pt-cell.hi.yes { color: var(--accent); }
.pt-cell.hi.no { color: rgba(255,255,255,.18); }
.pt-cell.hi.muted { color: rgba(255,255,255,.45); font-size: 13px; }
@media (max-width: 760px) {
  .ptgrid.g4 { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .pt-label { padding: 11px 14px; font-size: 13px; }
  .pt-cell { padding: 11px 10px; }
  .pt-plan { padding: 20px 12px 18px; }
  .pt-price { font-size: 30px; }
}

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.cta-band { background-color: var(--ink); color:#fff; border-radius: 28px; padding: clamp(46px,6vw,84px) clamp(28px,5vw,72px); text-align:center; position:relative; overflow:hidden; margin: 0 auto; }
.cta-band .speed-lines i { opacity:.35; }
.cta-band h2 { font-size: clamp(32px, 5vw, 64px); margin:0 auto; max-width: 16em; position:relative; }
.cta-band p { color: rgba(255,255,255,.6); margin: 22px 0 0; font-size: 14px; position:relative;}
.cta-actions { display:flex; gap:14px; justify-content:center; margin-top: 34px; position:relative; }

footer { padding: 60px 0 50px; }
.foot { display:flex; justify-content:space-between; align-items:flex-start; gap:30px; flex-wrap:wrap; }
.foot-mark { font-size: 30px; }
.foot p { color: var(--muted); font-size: 13.5px; margin: 12px 0 0; max-width: 22em;}
.foot-links { display:flex; gap: 28px; flex-wrap:wrap; }
.foot-links a { font-size: 14px; color: var(--ink-2); }
.foot-links a:hover { color: var(--accent-deep); }
.foot-bottom { margin-top: 40px; padding-top: 22px; border-top:1px solid var(--line); display:flex; justify-content:space-between; color:var(--muted); font-size:12.5px; flex-wrap:wrap; gap:10px;}

/* ============================================================
   REVEAL — visible by default; hidden+animated only under html.anim
   ============================================================ */
.reveal { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.anim .reveal { opacity: 0; transform: translateY(28px); }
.anim .reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .anim .reveal { opacity:1; transform:none; transition:none; }
  .anim .rise > span { transform: none; }
  .marquee-track { animation: none; }
}

/* ---------- hero: TEXT variant (default — clean, text-only) ---------- */
body[data-hero="text"] .hero-grid { grid-template-columns: 1fr; }
body[data-hero="text"] .hero-copy { max-width: 620px; }
body[data-hero="text"] .hero-h1 { font-size: clamp(36px, 4.8vw, 68px); }

/* ---------- hero: STATEMENT variant (centered, large type) ---------- */
body[data-hero="statement"] .hero-grid { grid-template-columns: 1fr; text-align: center; }
body[data-hero="statement"] .hero-copy { max-width: 960px; margin: 0 auto; }
body[data-hero="statement"] .hero-h1 { font-size: clamp(52px, 8.8vw, 122px); }
body[data-hero="statement"] .hero-sub { margin-left: auto; margin-right: auto; }
body[data-hero="statement"] .hero-actions,
body[data-hero="statement"] .hero-trust { justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 440px; }
  .lasso-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .steps, .features-grid { grid-template-columns: 1fr 1fr; }
  .split.rev .split-visual { order: -1; }
}
@media (max-width: 600px) {
  .steps, .features-grid, .ui-cards { grid-template-columns: 1fr; }
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .hero-visual { height: 400px; }
  .dash-mock { width: 100%; }
  .phone-mock { width: 150px; }
}
