/* =========================================================
   Top Rank BDRs — Landing page
   Brand: lime #C6F432 · ink #0B0B0A · paper #FBFBF8
   ========================================================= */
:root {
  --lime: #C6F432;
  --lime-600: #A9DB16;
  --lime-100: #F2FCD6;
  --ink: #0B0B0A;
  --ink-2: #17180F;
  --paper: #FBFBF8;
  --white: #FFFFFF;
  --muted: #5E6259;
  --line: #E7E9E1;
  --danger: #D93036;
  --radius: 22px;
  --shadow: 0 1px 2px rgba(11, 11, 10, .04), 0 14px 40px -14px rgba(11, 11, 10, .16);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --marker: "Permanent Marker", "Marker Felt", "Comic Sans MS", cursive;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { margin: 0; }
.container { width: min(1180px, 100% - 40px); margin-inline: auto; }

.i {
  width: 22px; height: 22px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Type helpers ---------- */
.hl { position: relative; z-index: 0; white-space: nowrap; }
.hl::before {
  content: ""; position: absolute; z-index: -1;
  inset: .1em -.14em .02em;
  background: var(--lime);
  border-radius: .16em;
  transform: rotate(-1.3deg);
}
.hl-lime { color: var(--lime); }
.hl-ink { position: relative; z-index: 0; white-space: nowrap; color: var(--lime); }
.hl-ink::before {
  content: ""; position: absolute; z-index: -1; inset: .08em -.14em .02em;
  background: var(--ink); border-radius: .16em; transform: rotate(-1.3deg);
}
.marker { font-family: var(--marker); font-weight: 400; letter-spacing: .01em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  background: var(--white); border: 1px solid var(--line);
  padding: .42rem .85rem; border-radius: 999px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 0 3px rgba(198, 244, 50, .4);
}
.h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  font-weight: 800; letter-spacing: -.045em; line-height: 1.05;
  margin: 1.1rem 0 .9rem;
}
.sub { color: var(--muted); font-size: 1.1rem; max-width: 40rem; margin: 0; }
.center { text-align: center; }
.center .sub { margin-inline: auto; }
.section { padding: 6.5rem 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 0; border-radius: 999px;
  padding: 1rem 1.6rem;
  font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap;
}
.btn .i { transition: transform .2s var(--ease); }
.btn:hover .i-arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--lime); color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(150, 200, 10, .95), inset 0 -3px 0 rgba(0, 0, 0, .08);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(150, 200, 10, 1), inset 0 -3px 0 rgba(0, 0, 0, .08); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark .i { color: var(--lime); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(11, 11, 10, .7); }
.btn-ghost { background: var(--white); color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost .play-dot {
  width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: var(--lime);
  display: grid; place-items: center;
}
.btn-ghost .play-dot .i { width: 12px; height: 12px; }
.btn-sm { padding: .62rem 1.05rem; font-size: .9rem; }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; letter-spacing: -.05em; font-size: 1.3rem; line-height: 1; }
.logo svg { width: 40px; height: 40px; color: var(--ink); --logo-lime: #B4E51E; }
.logo b { color: #A3D40F; font-weight: 800; }
.logo.on-dark { color: var(--white); }
.logo.on-dark svg { color: var(--white); --logo-lime: var(--lime); }
.logo.on-dark b { color: var(--lime); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 251, 248, .8);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-color: var(--line); background: rgba(251, 251, 248, .92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.nav-links { display: flex; gap: 2rem; font-size: .93rem; font-weight: 600; color: var(--muted); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: .7rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 4rem 0 5.5rem; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 720px; height: 720px;
  background: radial-gradient(closest-side, rgba(198, 244, 50, .42), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; left: -200px; bottom: -260px; width: 520px; height: 520px;
  border-radius: 50%; border: 70px solid rgba(198, 244, 50, .22);
  pointer-events: none;
}
.dots {
  position: absolute; pointer-events: none;
  background-image: radial-gradient(var(--lime-600) 2px, transparent 2.6px);
  background-size: 18px 18px; opacity: .7;
}
.hero .dots.d1 { top: 28px; left: 20px; width: 110px; height: 74px; }
.hero .dots.d2 { bottom: 40px; right: 30px; width: 130px; height: 74px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: .38rem .95rem .38rem .4rem;
  font-size: .86rem; font-weight: 700; box-shadow: var(--shadow);
}
.badge .pulse { position: relative; width: 24px; height: 24px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; }
.badge .pulse::before, .badge .pulse::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); position: absolute; }
.badge .pulse::after { animation: ping 1.8s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(3.2); opacity: 0; } }

.hero h1 {
  font-size: clamp(2.7rem, 5.8vw, 4.75rem);
  font-weight: 800; letter-spacing: -.05em; line-height: 1.02;
  margin: 1.4rem 0 1.3rem;
}
.lead { font-size: 1.16rem; color: var(--muted); max-width: 35rem; margin: 0; }
.lead strong { color: var(--ink); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2.1rem 0 2.2rem; }
.trust { display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; font-size: .92rem; font-weight: 700; }
.trust span { display: inline-flex; align-items: center; gap: .5rem; }
.trust .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; }
.trust .tick .i { width: 13px; height: 13px; stroke-width: 3; }

/* Hero visual: phone */
.hero-visual { position: relative; height: 640px; display: grid; place-items: center; }
.bg-arrow { position: absolute; width: 560px; height: 560px; right: -60px; top: 20px; opacity: .55; pointer-events: none; }
.phone-wrap { position: relative; transform: rotate(3.5deg); }
.phone {
  width: 310px; height: 630px; border-radius: 50px; background: #111; padding: 11px;
  box-shadow: 0 60px 100px -35px rgba(11, 11, 10, .5), inset 0 0 0 2px #2d2d2d, inset 0 0 0 5px #0a0a0a;
}
.screen { position: relative; height: 100%; border-radius: 40px; background: #EEF0EA; overflow: hidden; display: flex; flex-direction: column; }
.notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 96px; height: 28px; background: #111; border-radius: 20px; z-index: 3; }
.status { display: flex; justify-content: space-between; align-items: center; padding: 15px 26px 0; height: 46px; font-size: .74rem; font-weight: 800; background: var(--white); }
.status .sig { display: flex; gap: 4px; align-items: center; }
.status .sig i { display: block; width: 3px; background: var(--ink); border-radius: 1px; }
.chat-head { display: flex; align-items: center; gap: .6rem; padding: .35rem .9rem .75rem; background: var(--white); border-bottom: 1px solid var(--line); }
.chat-head .back { color: #1FA855; width: 18px; height: 18px; }
.chat-head .av { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; background: var(--white); }
.chat-head .av svg { width: 28px; height: 28px; color: var(--ink); --logo-lime: #B4E51E; }
.chat-head strong { display: block; font-size: .92rem; letter-spacing: -.04em; line-height: 1.1; }
.chat-head strong b { color: #A3D40F; }
.chat-head small { font-size: .7rem; color: #1FA855; font-weight: 700; }
.chat-body {
  flex: 1; display: flex; flex-direction: column; gap: .45rem; padding: .9rem .75rem;
  background-color: #EEF0EA;
  background-image: radial-gradient(rgba(11, 11, 10, .05) 1px, transparent 1.2px);
  background-size: 14px 14px;
}
.msg {
  max-width: 80%; padding: .5rem .75rem .35rem; border-radius: 16px;
  font-size: .85rem; line-height: 1.3; font-weight: 500;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .06);
  opacity: 0; transform: translateY(10px) scale(.97);
  animation: pop .5s var(--ease) forwards;
}
.msg time { display: block; text-align: right; font-size: .6rem; color: #8B9085; margin-top: 1px; font-weight: 600; }
.msg.out { align-self: flex-end; background: #E2F8AE; border-bottom-right-radius: 5px; }
.msg.out time::after { content: " ✓✓"; color: #2FA8E0; letter-spacing: -.12em; }
.msg.in { align-self: flex-start; background: var(--white); border-bottom-left-radius: 5px; }
.msg:nth-child(1) { animation-delay: .5s; }
.msg:nth-child(2) { animation-delay: 1.2s; }
.msg:nth-child(3) { animation-delay: 1.9s; }
.msg:nth-child(4) { animation-delay: 2.6s; }
.msg:nth-child(5) { animation-delay: 3.3s; }
.msg:nth-child(6) { animation-delay: 4s; }
.msg:nth-child(7) { animation-delay: 4.7s; }
.msg:nth-child(8) { animation-delay: 5.4s; }
@keyframes pop { to { opacity: 1; transform: none; } }
.chat-input { display: flex; align-items: center; gap: .5rem; padding: .55rem .6rem .9rem; }
.chat-input div { flex: 1; background: var(--white); border-radius: 999px; padding: .62rem .95rem; font-size: .76rem; color: #9AA093; }
.chat-input span { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--lime); display: grid; place-items: center; }
.chat-input .i { width: 17px; height: 17px; }

.float {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: .7rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: .7rem 1rem .7rem .7rem; box-shadow: var(--shadow);
  font-size: .85rem; line-height: 1.2;
  animation: bob 6s ease-in-out infinite;
}
.float .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--lime); flex: none; }
.float .ic.dark { background: var(--ink); color: var(--lime); }
.float .ic.li { background: #0A66C2; color: var(--white); }
.float strong { display: block; font-weight: 800; letter-spacing: -.02em; font-size: .95rem; }
.float small { color: var(--muted); font-size: .74rem; font-weight: 600; }
.float.f1 { top: 16%; left: -4%; }
.float.f2 { top: 48%; right: -6%; animation-delay: -2s; }
.float.f3 { bottom: 1%; left: -3%; animation-delay: -4s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-copy { position: relative; }

/* ---------- Marquee ---------- */
.marquee-wrap { position: relative; z-index: 2; margin: -3rem 0 -1.5rem; padding: 1.5rem 0; overflow: hidden; }
.marquee { background: var(--ink); color: var(--white); overflow: hidden; padding: 1.1rem 0; transform: rotate(-1.4deg); margin-inline: -30px; box-shadow: 0 20px 40px -20px rgba(11, 11, 10, .4); }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track > div { display: flex; }
.marquee-track span { display: inline-flex; align-items: center; gap: 2rem; padding-right: 2rem; font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; white-space: nowrap; }
.marquee-track span::after { content: "✦"; color: var(--lime); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3.5rem; }
.step {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -20px rgba(11, 11, 10, .25); }
.step .num { position: absolute; top: .6rem; right: 1.2rem; font-size: 5rem; font-weight: 800; letter-spacing: -.06em; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--line); }
.step .ic { width: 56px; height: 56px; border-radius: 17px; background: var(--ink); color: var(--lime); display: grid; place-items: center; margin-bottom: 1.5rem; }
.step:nth-child(2) .ic { background: var(--lime); color: var(--ink); }
.step h3 { font-size: 1.3rem; letter-spacing: -.03em; margin-bottom: .5rem; }
.step p { margin: 0; color: var(--muted); }
.step .tag { display: inline-block; margin-top: 1.2rem; font-size: .76rem; font-weight: 800; background: var(--lime-100); border-radius: 999px; padding: .3rem .7rem; }

/* ---------- Mission ---------- */
.mission { background: var(--white); border-block: 1px solid var(--line); overflow: hidden; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.features { display: grid; gap: .9rem; margin-top: 2rem; }
.feature { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.2rem; border-radius: 18px; border: 1px solid var(--line); background: var(--paper); transition: border-color .25s, transform .25s var(--ease); }
.feature:hover { border-color: var(--lime-600); transform: translateX(4px); }
.feature .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--lime); display: grid; place-items: center; flex: none; }
.feature h4 { font-size: 1.05rem; letter-spacing: -.02em; margin-bottom: .15rem; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }

.time-card { position: relative; overflow: hidden; background: var(--ink); color: var(--white); border-radius: 32px; padding: 2.3rem; box-shadow: 0 50px 90px -40px rgba(11, 11, 10, .6); }
.time-card::before { content: ""; position: absolute; right: -120px; top: -120px; width: 320px; height: 320px; background: radial-gradient(closest-side, rgba(198, 244, 50, .35), transparent); }
.time-card .label { font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #A9AEA1; }
.time-card .big { position: relative; font-size: clamp(6rem, 11vw, 8.8rem); font-weight: 800; letter-spacing: -.07em; line-height: .9; color: var(--lime); margin: .6rem 0 .2rem; }
.time-card .big small { font-size: .28em; letter-spacing: -.03em; color: var(--white); }
.time-card .note { position: absolute; top: 4.6rem; right: 2rem; color: var(--lime); font-size: 1.35rem; transform: rotate(-8deg); text-align: center; line-height: 1.05; }
.bars { display: grid; gap: 1rem; margin: 1.8rem 0 2rem; }
.bar-label { display: flex; justify-content: space-between; font-size: .86rem; color: #BCC0B5; margin-bottom: .45rem; font-weight: 600; }
.bar-label b { color: var(--white); }
.bar.us .bar-label b, .bar.us .bar-label span { color: var(--lime); }
.track { height: 12px; border-radius: 99px; background: #25261F; overflow: hidden; }
.fill { height: 100%; width: 0; border-radius: 99px; background: #54574C; transition: width 1.6s var(--ease) .2s; }
.bar.us .fill { background: var(--lime); min-width: 0; box-shadow: 0 0 16px rgba(198, 244, 50, .7); }
.in-view .fill { width: var(--w); }
.in-view .bar.us .fill { min-width: 12px; }
.cal-title { font-size: .82rem; color: #A9AEA1; font-weight: 600; margin-bottom: .6rem; }
.cal { display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px; }
.cal i { aspect-ratio: 1; border-radius: 6px; background: #1E1F19; }
.cal i.on { background: var(--lime); box-shadow: 0 0 18px rgba(198, 244, 50, .65); }

/* ---------- Testimonials ---------- */
.t-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.t-head .pill { display: inline-flex; align-items: center; gap: .7rem; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1.1rem .45rem .45rem; font-weight: 700; font-size: .9rem; box-shadow: var(--shadow); }
.pill-ic { width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--lime); display: grid; place-items: center; }
.pill-ic .i { width: 16px; height: 16px; }

.t-grid {
  --cols: 5;
  display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: 1.2rem;
  margin: 3rem auto 0; max-width: calc(var(--cols) * 262px + (var(--cols) - 1) * 1.2rem);
}
.t-card { display: flex; flex-direction: column; min-width: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.t-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -22px rgba(11, 11, 10, .3); }

.t-video { position: relative; display: block; width: 100%; aspect-ratio: 9 / 16; padding: 0; border: 0; overflow: hidden; background: var(--ink); color: var(--white); isolation: isolate; }
.t-video video, .t-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.t-video:hover video, .t-video:hover img { transform: scale(1.035); }
.t-video::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(11, 11, 10, .72) 0%, rgba(11, 11, 10, 0) 38%), linear-gradient(to bottom, rgba(11, 11, 10, .35) 0%, rgba(11, 11, 10, 0) 22%); }
.t-poster { position: absolute; inset: 0; background: radial-gradient(circle at 30% 25%, rgba(198, 244, 50, .55), transparent 55%), linear-gradient(160deg, #22241B, #0B0B0A 70%); }
.t-play { position: absolute; z-index: 2; left: 50%; top: 50%; width: 68px; height: 68px; margin: -34px 0 0 -34px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; box-shadow: 0 0 0 10px rgba(198, 244, 50, .25); transition: transform .3s var(--ease), box-shadow .3s, opacity .3s; }
.t-play .i { width: 24px; height: 24px; margin-left: 3px; }
.t-video:hover .t-play { transform: scale(1.1); box-shadow: 0 0 0 16px rgba(198, 244, 50, .22); }
.t-video.is-previewing .t-play { opacity: .92; }
.chip { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 800; padding: .32rem .62rem; border-radius: 8px; background: rgba(11, 11, 10, .66); color: var(--white); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.chip.dur { right: .75rem; bottom: .8rem; }
.chip.tag { left: .75rem; top: .75rem; background: var(--lime); color: var(--ink); }
.chip .rec { width: 7px; height: 7px; border-radius: 50%; background: #E5252B; box-shadow: 0 0 0 3px rgba(229, 37, 43, .22); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .35; } }
.t-listen { position: absolute; z-index: 2; left: .75rem; bottom: .8rem; display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 800; color: var(--white); text-shadow: 0 1px 8px rgba(0, 0, 0, .4); }
.t-listen .i { width: 16px; height: 16px; }

.t-body { display: flex; flex-direction: column; gap: .75rem; padding: 1.1rem 1.2rem 1.25rem; flex: 1; position: relative; }
.stars { color: var(--ink); font-size: .9rem; letter-spacing: .12em; line-height: 1; }
.t-quote { margin: 0; font-weight: 600; letter-spacing: -.01em; line-height: 1.42; font-size: .98rem; }
.t-tags { display: none; flex-wrap: wrap; gap: .5rem; }
.t-tags span { display: inline-flex; align-items: center; gap: .4rem; font-size: .84rem; font-weight: 700; background: var(--lime-100); border: 1px solid #DCEF9B; border-radius: 999px; padding: .38rem .8rem; }
.t-tags .i { width: 14px; height: 14px; stroke-width: 3; color: #6E9408; }
.t-person { display: flex; align-items: center; gap: .65rem; margin-top: auto; }
.t-person .av { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--lime); display: grid; place-items: center; font-size: .76rem; font-weight: 800; flex: none; }
.t-person .av-logo { background: var(--white); border: 1px solid var(--line); }
.t-person .av-logo svg { width: 28px; height: 28px; color: var(--ink); --logo-lime: #B4E51E; }
.t-person strong { display: block; font-size: .92rem; line-height: 1.2; }
.t-person small { color: var(--muted); font-size: .78rem; }

/* One video: featured layout */
.t-grid[data-count="1"] { grid-template-columns: 1fr; max-width: 920px; }
.t-grid[data-count="1"] .t-card { display: grid; grid-template-columns: minmax(250px, 340px) 1fr; }
.t-grid[data-count="1"] .t-card:hover { transform: none; }
.t-grid[data-count="1"] .t-body { justify-content: center; gap: 1.3rem; padding: 3rem clamp(1.8rem, 4vw, 3.4rem); overflow: hidden; }
.t-grid[data-count="1"] .t-body::before { content: "“"; position: absolute; top: -1.2rem; right: 1.6rem; font-size: 12rem; font-weight: 800; line-height: 1; color: var(--lime); pointer-events: none; }
.t-grid[data-count="1"] .t-body > * { position: relative; }
.t-grid[data-count="1"] .stars { font-size: 1.1rem; }
.t-grid[data-count="1"] .t-quote { font-size: clamp(1.35rem, 2.5vw, 1.95rem); font-weight: 700; letter-spacing: -.035em; line-height: 1.24; }
.t-grid[data-count="1"] .t-tags { display: flex; }
.t-grid[data-count="1"] .t-person { margin-top: .4rem; }
.t-grid[data-count="1"] .t-play { width: 80px; height: 80px; margin: -40px 0 0 -40px; }
.t-grid[data-count="1"] .t-play .i { width: 28px; height: 28px; }

/* Video modal */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 4rem 1.2rem 1.5rem; background: rgba(11, 11, 10, .88); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .25s; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal-box { position: relative; width: min(980px, 100%); transform: scale(.96); transition: transform .3s var(--ease); }
.modal.open .modal-box { transform: none; }
.modal-frame { width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 20px; overflow: hidden; }
.modal-frame.portrait { width: calc(min(80vh, 760px) * 9 / 16); max-width: 100%; aspect-ratio: 9 / 16; margin-inline: auto; }
.modal-frame iframe, .modal-frame video { width: 100%; height: 100%; border: 0; object-fit: contain; }
.modal-empty { height: 100%; display: grid; place-items: center; text-align: center; color: var(--white); padding: 2rem; background: radial-gradient(circle at 50% 30%, rgba(198, 244, 50, .25), transparent 60%), #0B0B0A; }
.modal-empty p { margin: 1rem 0 0; font-weight: 700; font-size: 1.1rem; }
.modal-empty .t-play { position: static; margin: 0 auto; }
.modal-close { position: absolute; top: -3.2rem; right: 0; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--white); color: var(--ink); display: grid; place-items: center; }

/* ---------- Payouts ---------- */
.payouts { background: linear-gradient(180deg, var(--paper), #F3F6EA); overflow: hidden; }
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3.5rem; }
.pay { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); transition: transform .35s var(--ease); }
.pay:hover { transform: translateY(-5px); }
.pay .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--lime-100); }
.pay .big { font-size: 3rem; font-weight: 800; letter-spacing: -.06em; line-height: 1; margin: 1.6rem 0 .6rem; }
.pay h3 { font-size: 1.25rem; letter-spacing: -.03em; margin-bottom: .4rem; }
.pay p { margin: 0; color: var(--muted); }
.pay.featured { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pay.featured .ic { background: var(--lime); color: var(--ink); }
.pay.featured .big { color: var(--lime); }
.pay.featured p { color: #B6BAAF; }
.pay.featured::after { content: "$"; position: absolute; right: -10px; bottom: -60px; font-size: 14rem; font-weight: 800; color: rgba(198, 244, 50, .07); line-height: 1; }
.pay-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem 2.6rem; margin-top: 1.4rem; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 1.05rem 1.5rem; font-weight: 700; font-size: .93rem; }
.pay-strip span { display: inline-flex; align-items: center; gap: .5rem; }
.pay-strip .i { width: 18px; height: 18px; color: var(--lime-600); stroke-width: 3; }

/* ---------- Apply ---------- */
.apply { background: var(--ink); color: var(--white); overflow: hidden; }
.apply::before { content: ""; position: absolute; left: -200px; top: -200px; width: 600px; height: 600px; background: radial-gradient(closest-side, rgba(198, 244, 50, .18), transparent); pointer-events: none; }
.apply .dots { top: 60px; right: 40px; width: 150px; height: 90px; opacity: .35; }
.apply-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; grid-template-areas: "head form" "extra form"; grid-template-rows: auto 1fr; column-gap: 4rem; row-gap: 0; align-items: start; }
.apply-head { grid-area: head; }
.apply-extra { grid-area: extra; }
.apply-grid > .form-card { grid-area: form; }
.apply .eyebrow { background: #1A1B15; border-color: #2C2E25; color: var(--white); }
.apply .sub { color: #B4B8AD; }
.checks { list-style: none; padding: 0; margin: 2.2rem 0; display: grid; gap: 1rem; }
.checks li { display: flex; align-items: center; gap: .85rem; font-weight: 600; font-size: 1.06rem; }
.checks .ck { width: 32px; height: 32px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; flex: none; }
.checks .ck .i { width: 16px; height: 16px; stroke-width: 3; }
.marker-note { display: inline-block; color: var(--lime); font-size: 1.55rem; transform: rotate(-3deg); line-height: 1.1; }
.marker-note svg { display: block; width: 220px; height: 14px; margin-top: .3rem; }
.privacy { display: flex; gap: .6rem; align-items: center; margin-top: 2rem; color: #8F9488; font-size: .86rem; }
.privacy .i { width: 18px; height: 18px; color: var(--lime); }

.form-card { position: relative; background: var(--white); color: var(--ink); border-radius: 30px; padding: 2.3rem; box-shadow: 0 50px 120px -40px rgba(198, 244, 50, .35); }
.form-title { font-size: 1.6rem; letter-spacing: -.04em; }
.form-card .hint { color: var(--muted); font-size: .92rem; margin: .25rem 0 1.7rem; display: flex; align-items: center; gap: .45rem; }
.form-card .hint .i { width: 16px; height: 16px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .42rem; margin-bottom: 1.15rem; min-width: 0; }
.field > label, .legend { font-size: .86rem; font-weight: 700; }
.legend .opt { color: var(--muted); font-weight: 500; }
.req { color: var(--danger); }
.input {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 14px; background: var(--paper);
  outline: none; transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.input::placeholder { color: #A5A99E; }
.input:hover { border-color: #CDD1C4; }
.input:focus { border-color: var(--ink); background: var(--white); box-shadow: 0 0 0 4px rgba(198, 244, 50, .5); }
select.input { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%230B0B0A' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2rem; }
.phone-group { display: grid; grid-template-columns: 128px 1fr; gap: .6rem; }
.input-icon { position: relative; }
.input-icon .i { position: absolute; left: .95rem; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: #0A66C2; }
.input-icon .input { padding-left: 2.8rem; }
.err { display: none; color: var(--danger); font-size: .8rem; font-weight: 600; }
.field.error .err { display: block; }
.field.error .input, .field.error .drop { border-color: var(--danger); background: #FFF7F7; }
.field.error .seg span { border-color: #F2B8BA; }

.drop { position: relative; display: flex; align-items: center; gap: 1rem; padding: 1rem; border: 1.5px dashed #CBD0C2; border-radius: 16px; background: var(--paper); cursor: pointer; transition: border-color .2s, background .2s; }
.drop:hover, .drop.drag { border-color: var(--ink); background: var(--lime-100); }
.drop:focus-within { box-shadow: 0 0 0 4px rgba(198, 244, 50, .5); border-color: var(--ink); }
.drop .cam { width: 60px; height: 60px; border-radius: 50%; background: var(--ink); color: var(--lime); display: grid; place-items: center; flex: none; overflow: hidden; }
.drop .cam img { width: 100%; height: 100%; object-fit: cover; }
.drop strong { display: block; font-size: .96rem; line-height: 1.25; word-break: break-word; }
.drop small { color: var(--muted); font-size: .8rem; }
.drop .cta { margin-left: auto; font-size: .8rem; font-weight: 800; background: var(--ink); color: var(--white); padding: .45rem .8rem; border-radius: 999px; white-space: nowrap; }
.drop.has-file { border-style: solid; border-color: var(--lime-600); background: var(--lime-100); }
.drop.has-file .cam { box-shadow: 0 0 0 3px var(--lime); }
.drop input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.seg { display: flex; flex-wrap: wrap; gap: .5rem; }
.seg label { position: relative; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { display: inline-flex; align-items: center; gap: .45rem; padding: .62rem 1.05rem; border: 1.5px solid var(--line); border-radius: 999px; background: var(--paper); font-weight: 700; font-size: .92rem; cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.seg span:hover { border-color: #C6CABC; }
.seg input:checked + span { background: var(--ink); color: var(--white); border-color: var(--ink); }
.seg input:checked + span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.seg input:focus-visible + span { box-shadow: 0 0 0 4px rgba(198, 244, 50, .55); }
.helper { font-size: .8rem; color: var(--muted); display: flex; gap: .4rem; align-items: flex-start; }
.helper .i { width: 15px; height: 15px; margin-top: 2px; }
.li-panel { border-left: 3px solid var(--lime); padding-left: 1rem; margin: -.2rem 0 1.15rem; }
.li-panel .field:last-child { margin-bottom: 0; }
.warn { display: flex; gap: .6rem; align-items: flex-start; background: #FFF6DB; border: 1px solid #F5DE95; color: #6B5310; border-radius: 14px; padding: .8rem 1rem; font-size: .88rem; margin: -.2rem 0 1.15rem; }
.warn a { font-weight: 800; text-decoration: underline; }
.warn .i { width: 18px; height: 18px; margin-top: 1px; }

.mission-box { background: var(--lime-100); border: 1px solid #DCEF9B; border-radius: 18px; padding: 1.05rem 1.15rem; font-size: .9rem; color: #33372A; margin-bottom: 1.1rem; }
.mission-box > strong { display: flex; align-items: center; gap: .5rem; font-size: .92rem; color: var(--ink); margin-bottom: .4rem; }
.mission-box > strong .i { width: 18px; height: 18px; }
.mission-box p { margin: 0; }
.mission-box ul { list-style: none; margin: .75rem 0 0; padding: 0; display: grid; gap: .35rem; }
.mission-box li { display: flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--ink); }
.mission-box li .i { width: 16px; height: 16px; stroke-width: 3; color: #7FA80A; }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: var(--muted); cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--ink); flex: none; }
.btn-block { width: 100%; justify-content: center; margin-top: 1.3rem; padding: 1.1rem; font-size: 1.08rem; }
.btn .spin { display: none; width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgba(11, 11, 10, .25); border-top-color: var(--ink); animation: spin .7s linear infinite; }
.btn.loading .spin { display: inline-block; }
.btn.loading .i-arrow { display: none; }
.btn:disabled { opacity: .8; cursor: progress; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-error { margin-top: .8rem; color: var(--danger); font-weight: 700; font-size: .9rem; text-align: center; }

.success { text-align: center; padding: 2.5rem .5rem; }
.success .big-check { width: 96px; height: 96px; margin: 0 auto 1.5rem; border-radius: 50%; background: var(--lime); display: grid; place-items: center; animation: popin .6s var(--ease); box-shadow: 0 0 0 14px var(--lime-100); }
.success .big-check .i { width: 46px; height: 46px; stroke-width: 3; }
.success h3 { font-size: 1.9rem; letter-spacing: -.04em; }
.success p { color: var(--muted); max-width: 26rem; margin: .7rem auto 1.6rem; }
@keyframes popin { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: none; opacity: 1; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 3rem auto 0; display: grid; gap: .8rem; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 0 1.4rem; transition: box-shadow .25s, border-color .25s; }
.faq-list details[open] { box-shadow: var(--shadow); border-color: #D9DDCF; }
.faq-list summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list .pm { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); display: grid; place-items: center; flex: none; transition: transform .3s var(--ease), background .2s, border-color .2s; }
.faq-list .pm .i { width: 16px; height: 16px; }
.faq-list details[open] .pm { transform: rotate(45deg); background: var(--lime); border-color: var(--lime); }
.faq-list details p { margin: 0 0 1.3rem; color: var(--muted); }

/* ---------- Final CTA ---------- */
.cta-card { position: relative; overflow: hidden; text-align: center; background: var(--lime); border-radius: 38px; padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem); }
.cta-card::before { content: ""; position: absolute; left: -120px; bottom: -160px; width: 380px; height: 380px; border-radius: 50%; border: 60px solid rgba(11, 11, 10, .06); }
.cta-card .dots { background-image: radial-gradient(rgba(11, 11, 10, .25) 2px, transparent 2.6px); top: 30px; right: 36px; width: 120px; height: 74px; opacity: 1; }
.cta-card .marker { display: inline-block; font-size: 1.3rem; transform: rotate(-4deg); }
.cta-card h2 { font-size: clamp(2.3rem, 5.2vw, 4.2rem); font-weight: 800; letter-spacing: -.05em; line-height: 1.02; margin: 1rem auto; max-width: 14ch; }
.cta-card p { font-size: 1.15rem; max-width: 34rem; margin: 0 auto 2.2rem; color: #2E3322; font-weight: 500; }
.cta-card .ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; }
.cta-card .btn-ghost { background: transparent; border-color: rgba(11, 11, 10, .25); }
.cta-card .btn-ghost:hover { border-color: var(--ink); }

/* ---------- Footer ---------- */
.footer { padding: 3rem 0 2.5rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem 2rem; flex-wrap: wrap; }
.footer p { margin: .5rem 0 0; color: var(--muted); font-size: .9rem; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; font-weight: 600; font-size: .92rem; color: var(--muted); }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; color: var(--muted); font-size: .84rem; }
.footer-bottom .marker { color: var(--ink); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; justify-content: center; display: none; transform: translateY(160%); transition: transform .4s var(--ease); }
.sticky-cta.show { transform: none; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.in-view { opacity: 1; transform: none; }
/* Above the fold: CSS-only entrance, never waits on JS */
.js .hero .reveal, .js .instant .reveal { opacity: 1; transform: none; transition: none; animation: rise .9s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .phone-wrap { transform: rotate(3.5deg) scale(.9); }
  .float.f1 { left: -2%; }
  .float.f2 { right: -3%; }
}
@media (max-width: 1080px) {
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { padding: 2.5rem 0 5rem; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 3rem; }
  .apply-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 600px; }
  .apply-grid { grid-template-areas: "head" "form" "extra"; grid-template-rows: auto; row-gap: 2.2rem; }
  .steps, .pay-grid { grid-template-columns: 1fr; }
  .time-card { max-width: 560px; }
}
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  .footer { padding-bottom: 6rem; }
}
@media (max-width: 640px) {
  .section { padding: 4.6rem 0; }
  .nav-right .btn-sm { padding: .55rem .85rem; font-size: .84rem; }
  .nav-right .btn-sm .i { display: none; }
  .logo { font-size: 1.15rem; }
  .logo svg { width: 34px; height: 34px; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 3rem); }
  .badge { font-size: .76rem; padding-right: .75rem; }
  .hero-visual { height: 560px; margin-inline: -20px; }
  .phone-wrap { transform: rotate(3deg) scale(.84); }
  .bg-arrow { width: 420px; height: 420px; right: -80px; }
  .float { padding: .55rem .75rem .55rem .55rem; font-size: .76rem; border-radius: 15px; }
  .float .ic { width: 32px; height: 32px; border-radius: 10px; }
  .float .ic .i { width: 18px; height: 18px; }
  .float strong { font-size: .82rem; }
  .float.f1 { top: 1%; left: 8px; }
  .float.f2 { top: 50%; right: 8px; }
  .float.f3 { bottom: -1%; left: 14px; }
  .row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 1.6rem 1.25rem; border-radius: 24px; }
  .phone-group { grid-template-columns: 112px 1fr; }
  .drop .cta { display: none; }
  .time-card { padding: 1.8rem; }
  .time-card .note { top: 4rem; right: 1.2rem; font-size: 1.1rem; }
  .cta-card { border-radius: 28px; }
}

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

/* ================= v2 additions ================= */

/* Apply page */
.apply-page { min-height: calc(100vh - 72px); padding: 4rem 0 5rem; }
.apply-page .h2 { font-size: clamp(2.3rem, 4.8vw, 3.8rem); }
.nav-back .i { width: 18px; height: 18px; }
.footer-mini { padding: 0 0 2rem; }
.footer-mini .footer-bottom { margin-top: 0; }

/* Age + phone row */
.row-age { grid-template-columns: 118px 1fr; }
input[type=number].input { -moz-appearance: textfield; }
input[type=number].input::-webkit-outer-spin-button,
input[type=number].input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Conditional LinkedIn panel */
.li-panel:not([hidden]), .warn:not([hidden]) { animation: slideIn .35s var(--ease); }
@keyframes slideIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Testimonial proof on the apply page */
.apply-proof { display: flex; gap: 1rem; align-items: center; margin: 0 0 2rem; padding: .8rem; border-radius: 22px; background: #16170F; border: 1px solid #2C2E25; max-width: 460px; }
.proof-video { position: relative; flex: none; width: 92px; aspect-ratio: 9 / 16; border: 0; padding: 0; border-radius: 14px; overflow: hidden; background: var(--ink); }
.proof-video img, .proof-video .t-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proof-video .t-play { width: 38px; height: 38px; margin: -19px 0 0 -19px; box-shadow: 0 0 0 5px rgba(198, 244, 50, .25); }
.proof-video .t-play .i { width: 15px; height: 15px; margin-left: 2px; }
.proof-video:hover .t-play { transform: scale(1.1); }
.proof-body .stars { color: var(--lime); font-size: .8rem; }
.proof-body p { margin: .45rem 0 .35rem; font-weight: 600; font-size: .95rem; line-height: 1.4; color: var(--white); }
.proof-body small { color: #9A9F92; font-size: .8rem; }

@media (max-width: 980px) {
  .t-grid:not([data-count="1"]) { display: flex; max-width: none; overflow-x: auto; scroll-snap-type: x mandatory; gap: 1rem; margin-inline: -20px; padding: .5rem 20px 1.2rem; scrollbar-width: none; }
  .t-grid:not([data-count="1"])::-webkit-scrollbar { display: none; }
  .t-grid:not([data-count="1"]) .t-card { flex: 0 0 min(260px, 72%); scroll-snap-align: center; }
  .apply-page { padding-top: 2.5rem; }
}
@media (max-width: 720px) {
  .t-grid[data-count="1"] { max-width: 380px; }
  .t-grid[data-count="1"] .t-card { grid-template-columns: 1fr; }
  .t-grid[data-count="1"] .t-body { padding: 1.5rem 1.4rem 1.6rem; gap: 1rem; }
  .t-grid[data-count="1"] .t-body::before { font-size: 8rem; top: -1rem; right: 1rem; }
  .t-grid[data-count="1"] .t-quote { font-size: 1.25rem; }
}
@media (max-width: 640px) {
  .row-age { grid-template-columns: 1fr; }
  .apply-page { padding: 2rem 0 3.5rem; }
  .apply-page .h2 { font-size: clamp(2.1rem, 10vw, 2.6rem); }
  .apply-proof { margin-bottom: 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .chip .rec { animation: none; }
}

/* Play button below the speaker's face on portrait videos */
.t-video .t-play { top: 71%; }

/* ================= v2.1 review fixes ================= */

/* Closed modal is fully hidden (not focusable) */
.modal { visibility: hidden; transition: opacity .25s, visibility 0s linear .25s; }
.modal.open { visibility: visible; transition: opacity .25s, visibility 0s; }
.modal-close:focus-visible { outline-color: var(--lime); }
.modal-frame video:focus-visible { outline: 3px solid var(--lime); outline-offset: -3px; }

/* Visible keyboard focus on video buttons */
.t-video:focus-visible, .proof-video:focus-visible { outline: 3px solid var(--lime); outline-offset: -3px; box-shadow: inset 0 0 0 6px var(--ink); }

/* Wordmark never wraps */
.logo span { white-space: nowrap; }

/* 4+ videos on small laptops: scroller instead of squeezed columns */
@media (min-width: 981px) and (max-width: 1180px) {
  .t-grid.many { display: flex; max-width: none; overflow-x: auto; scroll-snap-type: x mandatory; gap: 1rem; padding: .5rem 0 1.2rem; }
  .t-grid.many > .t-card { flex: 0 0 240px; scroll-snap-align: start; }
}
/* Scrollers: centred when the cards fit, start-aligned when they overflow */
@media (max-width: 1180px) {
  .t-grid.many > .t-card:first-child { margin-left: auto; }
  .t-grid.many > .t-card:last-child { margin-right: auto; }
}
@media (max-width: 980px) {
  .t-grid:not([data-count="1"]) > .t-card:first-child { margin-left: auto; }
  .t-grid:not([data-count="1"]) > .t-card:last-child { margin-right: auto; }
}
/* Mouse users get a thin scrollbar; touch devices keep it hidden */
@media (max-width: 1180px) and (hover: hover) and (pointer: fine) {
  .t-grid:not([data-count="1"]) { scrollbar-width: thin; scrollbar-color: var(--ink) transparent; }
  .t-grid:not([data-count="1"])::-webkit-scrollbar { display: block; height: 8px; }
  .t-grid:not([data-count="1"])::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 99px; }
  .t-grid:not([data-count="1"])::-webkit-scrollbar-track { background: transparent; }
}

/* Very narrow phones (320px) */
@media (max-width: 359px) {
  .logo { font-size: 1rem; gap: .35rem; }
  .logo svg { width: 30px; height: 30px; }
  .nav-right .btn-sm, .nav-back { padding: .5rem .75rem; }
}

/* ================= v3 mobile-first (Facebook / Instagram traffic) ================= */

/* CTA helpers */
.cta-note { margin: -1.3rem 0 1.8rem; font-size: .86rem; font-weight: 600; color: var(--muted); }
.inline-cta { display: flex; flex-direction: column; align-items: center; gap: .6rem; margin-top: 2.6rem; }
.inline-cta small { color: var(--muted); font-weight: 600; font-size: .86rem; }

/* Sticky bottom bar on phones */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; flex-direction: column; align-items: stretch; gap: .3rem;
  padding: .65rem 16px calc(.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(251, 251, 248, .95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px -18px rgba(11, 11, 10, .35);
  transform: translateY(110%); visibility: hidden;
  transition: transform .35s var(--ease), visibility 0s linear .35s;
}
.sticky-cta.show { transform: none; visibility: visible; transition: transform .35s var(--ease), visibility 0s; }
.sticky-cta .btn { width: 100%; justify-content: center; min-height: 54px; font-size: 1.1rem; }
.sticky-cta small { text-align: center; font-size: .75rem; font-weight: 600; color: var(--muted); }
.sticky-cta.show .btn { animation: nudge 1.8s var(--ease) .6s 2; }
@keyframes nudge { 0%, 100% { transform: none; } 12% { transform: scale(1.03); } 24% { transform: none; } }
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  .footer { padding-bottom: 7.5rem; }
}

@media (max-width: 640px) {
  .section { padding: 3.4rem 0; }
  .h2 { font-size: clamp(1.95rem, 8.6vw, 2.5rem); margin: .8rem 0 .5rem; }
  .eyebrow { font-size: .68rem; padding: .34rem .72rem; }
  .sub { font-size: 1rem; }

  /* Hero: headline, one big CTA, visual below */
  .hero { padding: 1.4rem 0 3.2rem; }
  .hero .badge { display: none; }
  .hero h1 { margin: .2rem 0 .8rem; }
  .lead { font-size: 1.06rem; }
  .hero-ctas { margin: 1.3rem 0 1.4rem; }
  .hero-ctas .btn-primary { width: 100%; justify-content: center; min-height: 58px; font-size: 1.14rem; }
  .hero-ctas .btn-ghost { display: none; }
  .cta-note { margin: -.55rem 0 1.15rem; text-align: center; font-size: .82rem; }
  .trust { gap: .45rem .9rem; font-size: .84rem; }
  .trust .tick { width: 20px; height: 20px; }
  .hero-grid { gap: 1.4rem; }
  .hero-visual { height: 440px; margin-inline: -20px; place-items: start center; overflow: hidden; -webkit-mask-image: linear-gradient(#000 78%, transparent); mask-image: linear-gradient(#000 78%, transparent); }
  .phone-wrap { transform: rotate(3deg) scale(.8); transform-origin: top center; margin-top: 14px; }
  .bg-arrow { top: 0; }
  .float.f1 { top: 9%; left: 10px; }
  .float.f2 { top: 44%; right: 10px; }
  .float.f3 { display: none; }
  .hero::after { display: none; }

  /* Testimonials */
  .t-head { gap: .9rem; }
  .t-head .pill { font-size: .8rem; padding: .35rem .9rem .35rem .35rem; }
  .pill-ic { width: 28px; height: 28px; }
  .t-grid { margin-top: 1.5rem; }
  .inline-cta { margin-top: 1.4rem; }
  .inline-cta .btn { width: 100%; justify-content: center; min-height: 56px; font-size: 1.1rem; }

  /* Steps as compact rows */
  .steps { gap: .6rem; margin-top: 1.6rem; }
  .step { display: grid; grid-template-columns: 46px 1fr; column-gap: .95rem; align-items: center; padding: .95rem 1.05rem; }
  .step .ic { grid-row: span 2; width: 46px; height: 46px; border-radius: 14px; margin: 0; }
  .step .ic .i { width: 20px; height: 20px; }
  .step h3 { font-size: 1.03rem; margin: 0; }
  .step p { font-size: .9rem; }
  .step .num, .step .tag { display: none; }

  /* Mission */
  .split { gap: 1.8rem; }
  .features { gap: .5rem; margin-top: 1.3rem; }
  .feature { padding: .7rem .85rem; align-items: center; }
  .feature .ic { width: 38px; height: 38px; border-radius: 11px; }
  .feature .ic .i { width: 19px; height: 19px; }
  .feature h4 { font-size: .98rem; margin: 0; }
  .feature p { display: none; }
  .time-card { padding: 1.6rem; border-radius: 24px; }
  .bars { margin: 1.2rem 0 0; gap: .8rem; }
  .time-card .cal-title, .time-card .cal { display: none; }

  /* Payouts as compact rows */
  .pay-grid { gap: .6rem; margin-top: 1.6rem; }
  .pay { display: grid; grid-template-columns: 4.6rem 1fr; column-gap: .9rem; align-items: center; padding: 1rem 1.1rem; }
  .pay .ic, .pay.featured::after, .pay-strip { display: none; }
  .pay .big { grid-row: span 2; font-size: 1.9rem; margin: 0; }
  .pay h3 { font-size: 1.03rem; margin: 0; }
  .pay p { font-size: .9rem; }

  /* FAQ */
  .faq-list { margin-top: 1.6rem; gap: .5rem; }
  .faq-list details { padding: 0 1.05rem; border-radius: 14px; }
  .faq-list summary { font-size: .97rem; padding: .95rem 0; }
  .faq-list .pm { width: 28px; height: 28px; }

  /* Final CTA */
  .cta-card { padding: 2.4rem 1.25rem; }
  .cta-card h2 { font-size: clamp(2rem, 9vw, 2.6rem); margin: .7rem auto; }
  .cta-card p { font-size: 1rem; margin-bottom: 1.4rem; }
  .cta-card .ctas .btn-dark { width: 100%; justify-content: center; min-height: 56px; font-size: 1.1rem; }
  .cta-card .ctas .btn-ghost { display: none; }
  .footer-links { display: none; }

  /* Apply page */
  .apply-grid { row-gap: 1.4rem; }
  .apply-page .sub { font-size: .98rem; }
  .form-card .hint { margin-bottom: 1.2rem; }
  .btn-block { min-height: 58px; font-size: 1.14rem; }
  .mission-box { font-size: .86rem; padding: .9rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta.show .btn { animation: none; }
}
@media (max-width: 640px) {
  .hero .dots.d1 { display: none; }
}

/* ================= v3.1 LinkedIn step after the application ================= */
.li-step { text-align: left; margin-top: 1.5rem; }
.li-step .field { margin-bottom: .6rem; }
.li-step .btn-block { margin-top: .6rem; }
.success p strong { color: var(--ink); }
.link-btn { display: block; margin: .9rem auto 0; padding: .4rem .8rem; border: 0; background: none; color: var(--muted); font-weight: 700; font-size: .92rem; text-decoration: underline; text-underline-offset: 3px; }
.link-btn:hover { color: var(--ink); }
.calendar-cta { margin: 1.4rem auto 0; max-width: 26rem; padding: 1.2rem; border-radius: 18px; background: var(--lime-100); border: 1px solid #DCEF9B; }
.calendar-cta .calendar-lead { margin: 0 auto 1rem; color: #33372A; font-weight: 600; }
.calendar-cta .btn-block { margin-top: 0; }
a.link-btn { width: fit-content; }

/* ================= v3.2 LinkedIn creation path + payment methods ================= */
.info-box { display: flex; gap: .6rem; align-items: flex-start; background: var(--lime-100); border: 1px solid #DCEF9B; color: #2F3A10; border-radius: 14px; padding: .8rem 1rem; font-size: .88rem; margin: -.2rem 0 1.15rem; }
.info-box strong { color: var(--ink); }
.info-box .i { width: 18px; height: 18px; margin-top: 1px; flex: none; }
.info-box:not([hidden]) { animation: slideIn .35s var(--ease); }
.create-steps { text-align: left; margin: 1rem 0 1.1rem; padding: 0; list-style: none; counter-reset: cs; display: grid; gap: .55rem; }
.create-steps li { counter-increment: cs; display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; font-weight: 600; color: var(--ink); }
.create-steps li::before { content: counter(cs); flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color: var(--lime); display: grid; place-items: center; font-size: .78rem; font-weight: 800; }
#li-intro-create .btn .i { color: #fff; }
.link-small { font-size: .82rem; margin-top: .3rem; font-weight: 600; }

.paym { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .8rem 1.2rem; margin-top: 1.4rem; }
.paym-label { font-weight: 700; color: var(--muted); font-size: .95rem; }
.paym-logos { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; }
.paym-chip { display: inline-flex; align-items: center; gap: .55rem; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: .6rem 1.05rem .6rem .8rem; box-shadow: var(--shadow); }
.paym-logo { width: 26px; height: 26px; }
.paym-logo.paypal { color: #003087; }
.paym-logo.tether { color: #50AF95; }
.paym-name { font-size: 1.08rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.paypal-name { color: #003087; font-style: italic; }
.paypal-name i { color: #009CDE; font-style: italic; }
@media (max-width: 640px) {
  .paym { margin-top: 1rem; gap: .6rem; }
  .paym-label { width: 100%; text-align: center; font-size: .88rem; }
  .paym-chip { padding: .5rem .9rem .5rem .65rem; }
  .paym-logo { width: 22px; height: 22px; }
  .paym-name { font-size: 1rem; }
}

/* ================= v3.3 mobile review fixes ================= */
@media (max-width: 760px) {
  /* Only one persistent CTA on phones: the bottom bar. The top nav scrolls away. */
  .nav { position: relative; }
  .sticky-cta { gap: .2rem; padding: .5rem 14px calc(.45rem + env(safe-area-inset-bottom, 0px)); }
  .sticky-cta .btn { min-height: 50px; line-height: 1.1; padding-top: .7rem; padding-bottom: .7rem; }
  .sticky-cta small { font-size: .7rem; }
  .footer { padding-bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 640px) {
  /* Testimonials right after the hero CTA */
  .hero-visual { display: none; }
  .hero { padding-bottom: 2.4rem; }
  .hero .dots.d2 { display: none; }

  /* Video + quote fit on one screen */
  .t-video { aspect-ratio: 4 / 5; }
  .t-video video, .t-video img { object-position: 50% 30%; }
  .t-video .t-play { top: 64%; width: 60px; height: 60px; margin: -30px 0 0 -30px; }
  .t-body { gap: .55rem; padding: .9rem 1rem 1rem; }
  .t-quote { font-size: .95rem; }
  .t-person:has(.av-logo) { display: none; }

  /* Compact success / LinkedIn step so the input and buttons fit */
  .success { padding: 1.2rem .2rem; }
  .success .big-check { width: 60px; height: 60px; margin-bottom: 1rem; box-shadow: 0 0 0 8px var(--lime-100); }
  .success .big-check .i { width: 30px; height: 30px; }
  .success h3 { font-size: 1.5rem; }
  .success p { margin: .5rem auto 1rem; font-size: .95rem; }
  .li-step { margin-top: 1rem; }
  .create-steps { margin: .6rem 0 .9rem; gap: .45rem; }
  .create-steps li { font-size: .88rem; }
}
/* Cards inside horizontal scrollers: no delayed fade when swiped in */
@media (max-width: 1180px) {
  .js .t-grid .t-card.reveal { opacity: 1; transform: none; transition: none; }
}

/* Legal links */
.footer-legal { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal:hover { color: var(--ink); }
.consent a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.privacy-link { color: var(--lime); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 640px) { .time-card .note { display: none; } }
