/* ==========================================================================
   jobtastic — recruiting.jobtastic.io  ·  Light Edition
   Static, no build step. Modern CSS: cascade layers-free, native nesting-free
   (max. compatibility), scroll-driven progress, @property, :has(), popover,
   <dialog>, <details name>, container queries, text-wrap: balance.
   ========================================================================== */

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("assets/fonts/inter-tight-var.woff2") format("woff2");
  font-weight: 500 900;
  font-style: normal;
  font-display: swap;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  /* surfaces — --bg matches the hero video's studio backdrop exactly */
  --bg: #f2f3ee;
  --bg-2: #f7f7f3;
  --surface: #ffffff;
  --surface-2: #fbfbf8;
  --glass: rgba(255, 255, 255, 0.66);
  --glass-strong: rgba(255, 255, 255, 0.84);

  /* ink */
  --ink: #0b0a12;
  --ink-2: #2b2935;
  --muted: #62606d;
  --faint: #9a98a3;
  --line: rgba(11, 10, 18, 0.08);
  --line-2: rgba(11, 10, 18, 0.14);

  /* brand (logo gradient) */
  --orange: #fc7132;
  --pink: #f73478;
  --violet: #7a2bea;
  --grad: linear-gradient(95deg, #fc7132 0%, #f73478 48%, #7a2bea 100%);
  --grad-btn: linear-gradient(100deg, #fc7132 0%, #f73478 50%, #7a2bea 108%);
  --grad-soft: linear-gradient(120deg, rgba(252,113,50,.12), rgba(247,52,120,.12) 50%, rgba(122,43,234,.12));

  --ok: #16a34a;
  --ok-bg: rgba(22, 163, 74, 0.1);
  --no: #e11d48;
  --wa: #25d366;
  --wa-bubble: #dcf8c6;
  --gold: #e8b84b;

  /* type */
  --display: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  /* shape */
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --shadow-sm: 0 1px 2px rgba(11,10,18,.04), 0 2px 8px rgba(11,10,18,.04);
  --shadow: 0 1px 2px rgba(11,10,18,.04), 0 8px 24px rgba(11,10,18,.06), 0 24px 60px -12px rgba(11,10,18,.08);
  --shadow-lg: 0 2px 4px rgba(11,10,18,.04), 0 18px 40px rgba(11,10,18,.08), 0 50px 100px -20px rgba(11,10,18,.14);
  --glow: 0 10px 30px -6px rgba(247,52,120,.45), 0 0 60px -10px rgba(122,43,234,.35);

  --gutter: clamp(16px, 4vw, 56px);
  --max: 1240px;
  --header-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
  interpolate-size: allow-keywords;
}
body {
  margin: 0;
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .055 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "cv11", "ss01", "ss03";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, video, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: var(--display); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(247, 52, 120, .18); color: var(--ink); }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 6px; }

.ic { width: 1.1em; height: 1.1em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ic.flip { transform: scaleX(-1); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(80px, 10vw, 144px); }

em { font-style: normal; }
.section-title em, .hero-title em, .footer-title em, .manifest-text b, .cta-line-title em {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-right: .08em; margin-right: -.08em;   /* keep the last glyph inside the clipped background */
}

/* ---------- scroll progress (CSS scroll-driven, JS-free) ---------- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 120;
  background: var(--grad); transform-origin: 0 50%; transform: scaleX(0);
  pointer-events: none;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress { animation: progress linear both; animation-timeline: scroll(root); }
  @keyframes progress { to { transform: scaleX(1); } }
}

/* ---------- buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x: 24px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x); border-radius: 999px; border: 1px solid transparent;
  font-family: var(--body); font-weight: 600; font-size: 16px; line-height: 1.2; letter-spacing: -0.005em;
  white-space: nowrap; cursor: pointer; isolation: isolate;
  transition: transform .35s var(--ease-out), translate .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .25s, color .25s, border-color .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn .ic { transition: transform .35s var(--ease-out); }
.btn:hover .ic { transform: translateX(3px); }
.btn:active { transform: scale(.97); }
.btn-sm { --pad-y: 10px; --pad-x: 18px; font-size: 14.5px; }
.btn-lg { --pad-y: 16px; --pad-x: 28px; font-size: 16.5px; }
.btn-xl { --pad-y: 20px; --pad-x: 36px; font-size: 18px; }
.btn-block { display: flex; width: 100%; }

.btn-grad { color: #fff; background: var(--grad-btn); box-shadow: var(--glow); overflow: hidden; }
.btn-grad::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 45%; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.42), transparent);
  transform: translateX(-160%) skewX(-20deg);
  animation: shine 6.5s var(--ease) infinite;
}
@keyframes shine { 0%, 72% { transform: translateX(-160%) skewX(-20deg); } 88%, 100% { transform: translateX(330%) skewX(-20deg); } }
.btn-glass { color: #f4f1ea; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }
.btn-grad::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: linear-gradient(100deg, #ff8a4f 0%, #ff4d8c 50%, #8f47ff 108%);
  opacity: 0; transition: opacity .35s;
}
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(247,52,120,.55), 0 0 80px -10px rgba(122,43,234,.45); }
.btn-grad:hover::before { opacity: 1; }

.btn-ink { color: #fff; background: var(--ink); box-shadow: 0 6px 18px -6px rgba(11,10,18,.45); }
.btn-ink:hover { transform: translateY(-2px); background: #1c1a26; box-shadow: 0 12px 28px -8px rgba(11,10,18,.5); }

.btn-ghost { color: var(--ink); background: var(--glass-strong); border-color: var(--line-2); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.btn-ghost:hover { border-color: rgba(11,10,18,.3); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-li { color: #fff; background: #0a66c2; }

/* ---------- kicker + section heads ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px rgba(247,52,120,.12); }
.section-head { max-width: 780px; margin-bottom: clamp(44px, 6vw, 76px); }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head-center .kicker { justify-content: center; }
.section-head-row { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 24px 64px; }
.section-title { font-size: clamp(36px, 5.4vw, 72px); line-height: 1.02; letter-spacing: -0.042em; }
.section-sub { margin-top: 22px; font-size: clamp(17px, 1.5vw, 19.5px); line-height: 1.6; color: var(--muted); max-width: 640px; }
.section-head-center .section-sub { margin-inline: auto; }
.section-sub a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(247,52,120,.5); text-underline-offset: 3px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; inset: 12px 0 auto 0; z-index: 100;
  padding-inline: clamp(12px, 3vw, 32px);
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  max-width: 1240px; margin-inline: auto; height: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 0 10px 0 22px; border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 1px 2px rgba(11,10,18,.03);
  backdrop-filter: blur(22px) saturate(1.6); -webkit-backdrop-filter: blur(22px) saturate(1.6);
  transition: background-color .4s, box-shadow .4s, border-color .4s;
}
.site-header.is-scrolled .nav {
  background: rgba(255,255,255,.78);
  border-color: rgba(11,10,18,.06);
  box-shadow: inset 0 1px 0 #fff, 0 10px 30px -10px rgba(11,10,18,.12);
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 28px; width: auto; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  display: block; padding: 8px 14px; border-radius: 999px;
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: background-color .2s, color .2s;
}
.nav-links a:hover { background: rgba(11,10,18,.05); color: var(--ink); }
.nav-links a.is-current { color: var(--ink); background: rgba(11,10,18,.06); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums;
  transition: background-color .2s;
}
.nav-phone .ic { width: 16px; height: 16px; color: var(--pink); }
.nav-phone:hover { background: rgba(11,10,18,.05); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2); background: #fff; align-items: center; justify-content: center;
}
.nav-toggle .ic { width: 20px; height: 20px; }

/* mobile menu (native popover) */
.mobile-menu {
  position: fixed; inset: 0; width: 100%; height: 100dvh; max-width: none; max-height: none;
  margin: 0; border: 0; padding: 20px var(--gutter) calc(28px + env(safe-area-inset-bottom));
  background: rgba(246,246,242,.92);
  backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4);
  color: var(--ink);
  flex-direction: column;
  opacity: 0; transform: translateY(-8px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), overlay .3s allow-discrete, display .3s allow-discrete;
}
.mobile-menu:popover-open { display: flex; opacity: 1; transform: none; }
@starting-style { .mobile-menu:popover-open { opacity: 0; transform: translateY(-8px); } }
.mm-head { display: flex; align-items: center; justify-content: space-between; height: 48px; margin-bottom: 28px; }
.mm-head img { height: 26px; width: auto; }
.mm-close { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: #fff; display: grid; place-items: center; }
.mm-links { flex: 1; display: flex; flex-direction: column; }
.mm-links a {
  display: flex; align-items: baseline; gap: 16px; padding: 14px 0;
  font-family: var(--display); font-weight: 700; font-size: clamp(30px, 9vw, 44px); letter-spacing: -0.035em; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mm-links span { font-family: var(--mono); font-size: 12px; color: var(--faint); font-weight: 500; letter-spacing: .1em; }
.mm-note { text-align: center; margin-top: 12px; font-size: 13.5px; color: var(--muted); }
.mm-call { margin-top: 10px; }
.mm-call .ic { color: var(--pink); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: min(100svh, 960px);
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 40px); padding-bottom: 64px;
  overflow: hidden; isolation: isolate;
}
.hero-atmo { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.hero-atmo .b1 { width: 520px; height: 520px; left: -160px; top: -120px; background: radial-gradient(circle, rgba(252,113,50,.22), transparent 70%); }
.hero-atmo .b2 { width: 760px; height: 760px; right: -120px; top: 10%; background: radial-gradient(circle, rgba(122,43,234,.16), transparent 70%); }
.hero-atmo .b3 { width: 520px; height: 520px; right: 22%; top: -200px; background: radial-gradient(circle, rgba(247,52,120,.14), transparent 70%); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(11,10,18,.09) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 45% 70% at 76% 50%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 45% 70% at 76% 50%, #000 10%, transparent 72%);
  opacity: .55;
}

.hero-layout { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: clamp(32px, 5vw, 80px); align-items: center; }

/* ---------- candidate wall: pre-qualified applicants streaming in ---------- */
.hero-visual { position: relative; height: clamp(540px, 74vh, 720px); animation: heroUp 1.1s .25s var(--ease-out) both; }
.wall {
  position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0, #000 16%, #000 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 16%, #000 84%, transparent 100%);
}
.wall-col { display: flex; flex-direction: column; animation: wallUp var(--wd, 64s) linear infinite; will-change: transform; }
.wall-col:nth-child(2) { --wd: 76s; animation-direction: reverse; }
.wall-col:nth-child(3) { --wd: 58s; animation-delay: -20s; }
.wall:hover .wall-col { animation-play-state: paused; }
@keyframes wallUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.cand {
  margin-bottom: 14px; padding: 7px 7px 12px; border-radius: 22px;
  background: #fff; border: 1px solid rgba(11,10,18,.05);
  box-shadow: 0 1px 2px rgba(11,10,18,.04), 0 12px 32px -14px rgba(11,10,18,.2);
}
.cand img { width: 100%; height: auto; aspect-ratio: 360 / 396; object-fit: cover; border-radius: 16px; background: #e9e7e1; }
.cand-body { padding: 10px 6px 0; }
.cand-name { display: block; font-size: 14px; color: var(--ink); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cand-role { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cand-loc { display: flex; align-items: center; gap: 4px; margin-top: 3px; font-size: 12px; color: var(--ink-2); font-weight: 500; }
.cand-loc .ic { width: 12px; height: 12px; color: var(--pink); stroke-width: 2.2; }
.cand-q { display: inline-flex; align-items: center; gap: 4px; margin-top: 9px; padding: 3px 8px; border-radius: 99px; background: var(--ok-bg); color: var(--ok); font-size: 11px; font-weight: 600; }
.cand-q .ic { width: 11px; height: 11px; stroke-width: 3; }
.wall-pill {
  position: absolute; z-index: 3; top: 10px; left: 50%; translate: -50% 0;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 9px 16px; border-radius: 999px; font-size: 13.5px; color: var(--ink-2);
  background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.95);
  box-shadow: inset 0 1px 0 #fff, 0 12px 30px -12px rgba(11,10,18,.25);
  backdrop-filter: blur(16px) saturate(1.5); -webkit-backdrop-filter: blur(16px) saturate(1.5);
}
.wall-pill strong { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }

.hero-inner { position: relative; }
.hero-inner > * { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px; margin-bottom: 28px; border-radius: 999px;
  background: var(--glass-strong); border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm); font-size: 14px; color: var(--ink-2);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.hero-badge img { width: 28px; height: 28px; border-radius: 50%; }
.hero-badge strong { color: var(--ink); font-weight: 600; }
.hero-badge .ic { width: 15px; height: 15px; color: var(--muted); }
.hero-badge:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.hero-title { font-size: clamp(48px, 6.4vw, 90px); line-height: .93; letter-spacing: -0.052em; font-weight: 800; }
.hero-eyebrow {
  display: block; margin-bottom: 22px;
  font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  line-height: 1.4;
}
.hero-title .line { display: block; overflow-x: visible; overflow-y: clip; padding-bottom: .24em; margin-bottom: -.22em; }  /* clip only vertically (reveal mask) — never cut the word’s end */
.hero-title .line > * { display: inline-block; }
/* gradient word: grow the painted box past the last glyph (tight tracking) and the "g" descender — layout stays unchanged */
.hero-title .line > em {
  padding: 0 .12em .22em 0; margin: 0 -.12em -.22em 0;
  background-image: linear-gradient(95deg, #fc7132 0%, #f73478 25%, #7a2bea 50%, #f73478 75%, #fc7132 100%);
  background-size: 200% 100%;
  animation: lineUp 1s var(--ease-out) both, gradFlow 9s ease-in-out infinite alternate;
}
@keyframes gradFlow { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.hero-lead { margin-top: 28px; font-size: clamp(18px, 1.55vw, 21px); line-height: 1.55; color: var(--muted); max-width: 540px; }
.hero-lead strong { color: var(--ink); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin-top: 36px; font-size: 14.5px; color: var(--muted); }
.hero-proof li { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof li + li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); margin-right: 14px; }
.hero-proof strong { color: var(--ink); font-weight: 600; }
.hero-proof .g { width: 18px; height: 18px; }
.stars { color: var(--gold); letter-spacing: 1px; }

/* intro — pure CSS, starts with the very first paint (no JS gating → fast LCP) */
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } }
@keyframes lineUp { from { transform: translateY(108%); } }
.hero-badge, .hero-eyebrow, .hero-lead, .hero-ctas, .hero-proof { animation: heroUp .9s var(--ease-out) both; }
.hero-title .line > * { animation: lineUp 1s var(--ease-out) both; }
.hero-badge { animation-delay: .02s; }
.hero-eyebrow { animation-delay: .06s; }
.hero-title .line:nth-child(2) > * { animation-delay: .08s; }
.hero-title .line:nth-child(3) > * { animation-delay: .15s; }
.hero-title .line:nth-child(4) > * { animation-delay: .22s; }
.hero-lead { animation-delay: .32s; }
.hero-ctas { animation-delay: .4s; }
.hero-proof { animation-delay: .48s; }

/* ---------- floating glass UI cards ---------- */
.fc {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 20px; padding: 14px 16px;
  box-shadow: inset 0 1px 0 #fff, 0 20px 50px -18px rgba(11,10,18,.25), 0 4px 12px rgba(11,10,18,.05);
  backdrop-filter: blur(18px) saturate(1.6); -webkit-backdrop-filter: blur(18px) saturate(1.6);
  font-size: 13px; color: var(--ink-2);
  animation: fcIn 1s var(--ease-out) both, float 7s ease-in-out infinite;
  animation-delay: .6s, 0s;
}
@keyframes fcIn { from { opacity: 0; translate: 0 18px; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.fc-app { width: 272px; left: -56px; bottom: 14%; animation-delay: .9s, 0s; }

.fc-head { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); font-size: 12.5px; }
.fc-time { margin-left: auto; font-weight: 400; color: var(--faint); font-size: 12px; }
.live-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex: none; }
.live-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #22c55e; opacity: 0; animation: ping 2s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(.5); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }
.fc-person { margin: 10px 0 12px; }
.fc-person strong { display: block; color: var(--ink); font-size: 15px; line-height: 1.25; }
.fc-person span { color: var(--muted); font-size: 12.5px; }
.fc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-flex; align-items: center; gap: 4px; padding: 4px 9px; border-radius: 999px; background: rgba(11,10,18,.05); font-size: 11.5px; font-weight: 500; color: var(--ink-2); }
.tag .ic { width: 12px; height: 12px; stroke-width: 3; }
.tag-ok { background: var(--ok-bg); color: var(--ok); }
.fc-swap { animation: swap .6s var(--ease-out); }
@keyframes swap { 0% { opacity: 0; transform: translateY(6px); filter: blur(4px); } 100% { opacity: 1; transform: none; filter: none; } }

.bub { max-width: 88%; padding: 8px 12px; border-radius: 16px; font-size: 13px; line-height: 1.35; margin-top: 6px; box-shadow: 0 1px 1px rgba(11,10,18,.06); }
.bub.in { background: #fff; border-bottom-left-radius: 5px; }
.bub.out { background: var(--wa-bubble); margin-left: auto; border-bottom-right-radius: 5px; color: #0f2a17; }
/* ==========================================================================
   LOGOS
   ========================================================================== */
.logos { position: relative; padding: 24px 0 clamp(40px, 5vw, 72px); }
.logos-title { text-align: center; font-size: 15px; color: var(--muted); margin: 0 auto 30px; padding-inline: var(--gutter); }
.logos-title strong { color: var(--ink); font-weight: 600; }
.marquee {
  --gap: 16px; --dur: 46s;
  display: flex; overflow: hidden; user-select: none; padding-block: 8px;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee + .marquee { margin-top: 6px; }
.marquee-track { display: flex; gap: var(--gap); padding-right: var(--gap); flex: none; animation: marquee var(--dur) linear infinite; }
.marquee-rev .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee li {
  width: 172px; height: 76px; flex: none; display: grid; place-items: center; padding: 16px 26px;
  background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.95); border-radius: 18px;
  box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(11,10,18,.03), 0 6px 20px -8px rgba(11,10,18,.1);
}
.marquee img { max-width: 100%; max-height: 40px; width: auto; height: auto; object-fit: contain; mix-blend-mode: multiply; }

/* ==========================================================================
   MANIFEST
   ========================================================================== */
.manifest { padding-top: clamp(56px, 7vw, 100px); }
.manifest-text {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 64px); line-height: 1.12; letter-spacing: -0.035em; color: var(--ink);
  max-width: 1100px;
}
.manifest-text .w { transition: opacity .35s linear, color .35s linear; }
.js .manifest-text .w { opacity: .16; }
.js .manifest-text .w.on { opacity: 1; }
.pain-head { display: grid; gap: 12px; max-width: 720px; margin-top: clamp(56px, 7vw, 96px); }
.pain-tag {
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  padding: 6px 13px 6px 10px; border-radius: 999px;
  background: rgba(225,29,72,.08); color: #be123c; font-size: 13px; font-weight: 600; letter-spacing: .01em;
}
.pain-tag .ic { width: 14px; height: 14px; stroke-width: 2.6; }
.pain-title { font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.035em; line-height: 1.1; }
.pain-sub { font-size: clamp(16px, 1.4vw, 18px); color: var(--muted); line-height: 1.55; }
.pain-sub strong { color: var(--ink); font-weight: 600; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.pain {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  border-radius: var(--r); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.pain-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e9e7e1; }
.pain-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.62) contrast(1.03); transition: filter .6s var(--ease-out), transform 1.1s var(--ease-out); }
.pain-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(11,10,18,0) 50%, rgba(225,29,72,.14)); }
.pain:hover .pain-media img { filter: saturate(1) contrast(1); transform: scale(1.045); }
.pain-body { padding: 18px 22px 22px; }
.pain-x {
  position: absolute; z-index: 2; top: 12px; right: 12px; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: #fff; color: var(--no); box-shadow: 0 6px 16px -6px rgba(11,10,18,.35);
}
.pain-x .ic { width: 14px; height: 14px; stroke-width: 2.6; }
.pain::before { z-index: 2; }
.pain-bridge {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  padding: 12px 20px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); font-weight: 600; font-size: 15.5px; color: var(--ink);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.pain-bridge .ic { color: var(--pink); transition: transform .3s var(--ease-out); }
.pain-bridge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pain-bridge:hover .ic { transform: translateX(3px); }
.pain::before { content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 2px; background: linear-gradient(90deg, var(--no), transparent); opacity: .5; }
.pain-num { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -0.04em; color: var(--ink); line-height: 1.05; margin-bottom: 10px; }
.pain p { font-size: 15.5px; color: var(--muted); line-height: 1.5; }

/* ==========================================================================
   CARDS (shared) + BENTO
   ========================================================================== */
.card {
  --mx: 50%; --my: 50%;
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid rgba(11,10,18,.06);
  box-shadow: var(--shadow);
  container-type: inline-size;
}
/* spotlight that follows the pointer */
.card[data-spot]::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(247,52,120,.08), rgba(122,43,234,.05) 40%, transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.card[data-spot]:hover::after { opacity: 1; }

.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bento-ads { grid-column: span 7; }
.bento-express { grid-column: span 5; }
.bento-wa { grid-column: span 5; }
.bento-dash { grid-column: span 7; }
.bento .card { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 12px; min-height: 420px; padding: clamp(24px, 3vw, 40px); }
.bento-express, .bento-wa { grid-template-columns: 1fr !important; align-content: space-between; }
.card-num { font-family: var(--mono); font-size: 12px; color: var(--faint); letter-spacing: .1em; }
.card h3 { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 15px; font-family: var(--body); font-weight: 600; letter-spacing: 0; color: var(--muted); }
.card h3 .ic { width: 18px; height: 18px; color: var(--pink); }
.card-lead { margin-top: 10px; font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.035em; line-height: 1.08; color: var(--ink); text-wrap: balance; }
.card-copy > p:not(.card-lead) { margin-top: 12px; font-size: 16px; color: var(--muted); line-height: 1.55; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(11,10,18,.05); color: var(--ink);
}
.chip .ic { width: 15px; height: 15px; color: var(--ok); }
.chip-grad { background: var(--grad-soft); color: #b0164f; }
.chip-wa { background: rgba(37,211,102,.12); color: #0f7a3a; }

/* 01 ads visual */
.ads-visual { position: relative; height: 100%; min-height: 340px; }
.ads-video { position: absolute; right: 0; top: 0; width: 72%; aspect-ratio: 3/4; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); background: #e9e6e0 url("assets/img/candidate-poster.webp") center/cover; }
.ads-video video { width: 100%; height: 100%; object-fit: cover; }
.ig-post {
  position: absolute; left: 0; bottom: 0; width: 64%; max-width: 230px;
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(11,10,18,.35), 0 4px 12px rgba(11,10,18,.06);
  font-size: 12px; transform: rotate(-3deg); transition: transform .5s var(--ease-out);
}
.bento-ads:hover .ig-post { transform: rotate(0) translateY(-6px); }
.ig-head { display: flex; align-items: center; gap: 8px; padding: 10px 12px; }
.ig-head strong { display: block; font-size: 12px; color: var(--ink); line-height: 1.2; }
.ig-head span { font-size: 10.5px; color: var(--faint); }
.ig-av { width: 26px; height: 26px; border-radius: 50%; background: #fff; object-fit: cover; box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #f73478; }
.ig-media {
  aspect-ratio: 1; padding: 16px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  background: radial-gradient(120% 90% at 100% 0%, rgba(252,113,50,.95), transparent 55%), radial-gradient(120% 100% at 0% 100%, rgba(122,43,234,.95), transparent 60%), #f73478;
  color: #fff;
}
.ig-kicker { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.ig-media strong { font-family: var(--display); font-size: 21px; line-height: 1.02; letter-spacing: -0.03em; }
.ig-perks { font-size: 10.5px; opacity: .92; }
.ig-cta { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; font-weight: 600; color: #0a66c2; border-top: 1px solid var(--line); }
.ig-cta .ic { width: 14px; height: 14px; }

/* 02 phone */
.phone {
  justify-self: center; width: min(230px, 80%); aspect-ratio: 9/15; margin-top: 12px;
  border-radius: 34px; padding: 9px; background: #0b0a12;
  box-shadow: 0 30px 60px -20px rgba(11,10,18,.4), inset 0 0 0 1.5px #2a2833;
  transform: translateY(20%); margin-bottom: calc(-1 * clamp(24px, 3vw, 40px));
}
.phone-screen { position: relative; height: 100%; border-radius: 26px; background: #fff; padding: 22px 16px; overflow: hidden; }
.ph-top { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.ph-prog { flex: 1; height: 5px; border-radius: 9px; background: rgba(11,10,18,.07); overflow: hidden; }
.ph-prog i { display: block; height: 100%; width: 0%; background: var(--grad); border-radius: inherit; transition: width .6s var(--ease-out); }
.ph-q { margin-top: 22px; font-family: var(--display); font-weight: 700; font-size: 17px; line-height: 1.2; letter-spacing: -0.02em; color: var(--ink); min-height: 62px; }
.ph-opts { display: grid; gap: 8px; margin-top: 16px; }
.ph-opt { padding: 11px 14px; border-radius: 12px; border: 1.5px solid var(--line-2); font-size: 13px; font-weight: 600; color: var(--ink); transition: all .3s; }
.ph-opt.is-picked { border-color: var(--pink); background: rgba(247,52,120,.07); color: #c0134f; }
.ph-done {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; padding: 20px;
  background: #fff; opacity: 0; transform: scale(.96); transition: opacity .45s, transform .45s var(--ease-out); pointer-events: none;
}
.ph-done.on { opacity: 1; transform: none; }
.ph-done strong { font-family: var(--display); font-size: 18px; color: var(--ink); letter-spacing: -0.02em; }
.ph-done small { font-size: 12px; color: var(--muted); }
.ph-check { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; box-shadow: var(--glow); margin-bottom: 6px; }
.ph-check .ic { width: 28px; height: 28px; stroke-width: 3; }

/* 03 whatsapp */
.wa-chat {
  margin-top: 18px; padding: 16px; border-radius: 20px;
  background: #efeae2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23d9d2c5'/%3E%3C/svg%3E");
  display: flex; flex-direction: column; min-height: 210px; justify-content: flex-end;
}
.wa-chat .bub { font-size: 13.5px; }
.js .wa-chat .bub { opacity: 0; transform: translateY(8px) scale(.98); transition: opacity .45s, transform .45s var(--ease-out); }
.wa-chat .bub.on { opacity: 1; transform: none; }

/* 04 kanban */
.kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px; border-radius: 20px; background: var(--bg-2); border: 1px solid var(--line); align-self: center; align-content: start; }
.kb-col { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.kb-h { display: flex; justify-content: space-between; font-size: 11.5px; font-weight: 600; color: var(--muted); padding: 2px 4px 4px; }
.kb-h i { font-style: normal; background: rgba(11,10,18,.06); padding: 0 7px; border-radius: 99px; }
.kb-hired .kb-h { color: var(--ok); }
.kb-hired .kb-h i { background: var(--ok-bg); }
.kb-card { display: flex; align-items: center; gap: 7px; padding: 9px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kb-slot { height: 40px; border-radius: 12px; border: 1.5px dashed rgba(22,163,74,.35); }
.kb-mover { position: relative; z-index: 2; }
.bento-dash.is-in .kb-mover { animation: kbMove 5s 1s var(--ease) infinite; }
@keyframes kbMove {
  0%, 18% { transform: none; box-shadow: var(--shadow-sm); }
  30% { transform: translate(0, -4px) rotate(-2deg); box-shadow: 0 16px 30px -10px rgba(11,10,18,.3); }
  55%, 88% { transform: translate(calc(100% + 8px), 0) rotate(0); box-shadow: 0 0 0 2px rgba(22,163,74,.5), var(--shadow-sm); }
  100% { transform: none; }
}

.included {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px;
}
.included li {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,.7); border: 1px solid var(--line); font-size: 14.5px; font-weight: 500; color: var(--ink-2);
}
.included .ic { width: 16px; height: 16px; color: var(--pink); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process { background: none; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; counter-reset: s; }
.steps::before {
  content: ""; position: absolute; left: 28px; right: 28px; top: 28px; height: 2px;
  background: linear-gradient(90deg, var(--line-2) 50%, transparent 0) 0 0 / 10px 2px repeat-x;
}
.steps::after {
  content: ""; position: absolute; left: 28px; right: 28px; top: 28px; height: 2px; background: var(--grad);
  transform-origin: 0 50%; transform: scaleX(var(--p, 0)); transition: transform .2s linear;
}
.step { position: relative; z-index: 1; }
.step-num {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-family: var(--display); font-weight: 800; font-size: 20px; color: var(--ink);
  transition: background .4s, color .4s, box-shadow .4s, border-color .4s;
}
.step.is-active .step-num { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: 0 0 0 6px rgba(247,52,120,.12), var(--glow); }
.step-tag { display: inline-flex; align-items: center; gap: 6px; margin-top: 26px; padding: 5px 11px; border-radius: 999px; background: rgba(11,10,18,.05); font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.step-tag .ic { width: 14px; height: 14px; color: var(--pink); }
.step h3 { margin-top: 14px; font-size: clamp(22px, 2vw, 26px); letter-spacing: -0.03em; }
.step p { margin-top: 10px; font-size: 15.5px; color: var(--muted); line-height: 1.55; }

/* ==========================================================================
   DASHBOARD
   ========================================================================== */
.dash-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.dash-tabs { display: grid; gap: 8px; margin-top: 36px; }
.dash-tab {
  position: relative; display: flex; align-items: flex-start; gap: 14px; text-align: left; overflow: hidden;
  padding: 16px 18px; border-radius: 18px; border: 1px solid transparent; background: transparent;
  transition: background-color .3s, border-color .3s, box-shadow .3s;
}
.dash-tab strong { display: block; font-size: 16.5px; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }
.dash-tab small { display: block; margin-top: 2px; font-size: 14.5px; color: var(--muted); line-height: 1.45; }
.dt-ic { width: 40px; height: 40px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(11,10,18,.05); color: var(--ink-2); transition: background .3s, color .3s; }
.dt-ic .ic { width: 19px; height: 19px; }
.dash-tab:hover { background: rgba(255,255,255,.6); }
.dash-tab.is-active { background: #fff; border-color: var(--line); box-shadow: var(--shadow); }
.dash-tab.is-active .dt-ic { background: var(--grad); color: #fff; }
.dt-bar { position: absolute; left: 18px; right: 18px; bottom: 0; height: 2px; background: var(--grad); transform: scaleX(0); transform-origin: 0 50%; }
.dash-tab.is-active .dt-bar.run { animation: tabbar var(--tab-dur, 6s) linear forwards; }
@keyframes tabbar { to { transform: scaleX(1); } }

.app-frame {
  border-radius: 22px; overflow: hidden; background: #fff;
  border: 1px solid rgba(11,10,18,.08);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
}
.app-bar { display: flex; align-items: center; gap: 12px; height: 42px; padding: 0 16px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.dots { display: flex; gap: 6px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: #e4e3de; }
.dots i:nth-child(1) { background: #ff5f57; } .dots i:nth-child(2) { background: #febc2e; } .dots i:nth-child(3) { background: #28c840; }
.app-url { margin-inline: auto; padding: 4px 14px; border-radius: 8px; background: #fff; border: 1px solid var(--line); font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.app-bar-sp { width: 46px; }
.app-body { display: grid; grid-template-columns: 58px 1fr; min-height: 470px; }
.app-side { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 0; border-right: 1px solid var(--line); background: var(--surface-2); }
.as-logo { width: 28px; height: 28px; border-radius: 9px; background: var(--grad); margin-bottom: 10px; }
.as-i { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: var(--faint); }
.as-i .ic { width: 18px; height: 18px; }
.as-i.is-on { background: rgba(247,52,120,.1); color: var(--pink); }
.app-main { padding: 16px 18px 20px; min-width: 0; }
.app-top { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.app-search { flex: 1; display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 10px; background: var(--bg-2); color: var(--faint); font-size: 12.5px; }
.app-search .ic { width: 15px; height: 15px; }
.app-bell { position: relative; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: var(--muted); border: 1px solid var(--line); }
.app-bell .ic { width: 16px; height: 16px; }
.app-bell i { position: absolute; top: 7px; right: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 2px #fff; }
.app-panel { animation: panelIn .5s var(--ease-out); }
.app-panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.kpi { padding: 12px; border-radius: 14px; border: 1px solid var(--line); background: #fff; min-width: 0; }
.kpi span { display: block; font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kpi strong { display: block; font-family: var(--display); font-size: 24px; letter-spacing: -0.03em; color: var(--ink); margin-top: 2px; }
.kpi em { font-size: 11px; font-weight: 600; }
.kpi em.up { color: var(--ok); }
.camps { display: grid; gap: 8px; margin-top: 12px; }
.camp { padding: 14px; border-radius: 14px; border: 1px solid var(--line); }
.camp-t { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.camp-t strong { color: var(--ink); font-size: 13.5px; }
.camp-m { display: flex; justify-content: space-between; margin-top: 4px; font-size: 12px; color: var(--muted); }
.pill { padding: 3px 9px; border-radius: 99px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.pill-live { background: var(--ok-bg); color: var(--ok); }
.pill-new { background: rgba(122,43,234,.1); color: var(--violet); }
.bar { height: 6px; border-radius: 9px; background: rgba(11,10,18,.06); margin-top: 10px; overflow: hidden; }
.bar i { display: block; height: 100%; width: var(--w); border-radius: inherit; background: var(--grad); transform-origin: 0 50%; animation: grow 1.2s var(--ease-out); }
@keyframes grow { from { transform: scaleX(0); } }

.pipe { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.pipe-col { display: flex; flex-direction: column; gap: 7px; padding: 8px; border-radius: 14px; background: var(--bg-2); min-height: 360px; min-width: 0; }
.pipe-h { display: flex; justify-content: space-between; font-size: 11.5px; font-weight: 600; color: var(--muted); padding: 2px 4px 6px; }
.pipe-h i { font-style: normal; background: rgba(11,10,18,.06); padding: 0 7px; border-radius: 99px; }
.pipe-hired { background: rgba(22,163,74,.07); }
.pipe-hired .pipe-h { color: var(--ok); }
.pc { display: flex; align-items: center; gap: 7px; padding: 8px; border-radius: 11px; background: #fff; box-shadow: var(--shadow-sm); min-width: 0; }
.pc > div { min-width: 0; flex: 1; }
.pc strong { display: block; font-size: 12px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pc small { display: block; font-size: 10.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pc-q, .pc-ok { font-size: 11px; font-weight: 700; color: var(--ok); }
.pc-wa { color: var(--wa); } .pc-wa .ic { width: 14px; height: 14px; }
.pc-date { font-size: 10px; font-weight: 600; color: var(--violet); white-space: nowrap; }
.pc-move { animation: pcMove 4.5s 1s var(--ease) infinite; position: relative; z-index: 2; }
@keyframes pcMove {
  0%, 20% { transform: none; }
  45%, 85% { transform: translate(calc(100% + 24px), -52px); box-shadow: 0 0 0 2px rgba(22,163,74,.45), 0 12px 24px -10px rgba(11,10,18,.3); }
  100% { transform: none; }
}

.inbox { display: grid; grid-template-columns: 200px 1fr; gap: 10px; min-height: 380px; }
.inbox-list { display: flex; flex-direction: column; gap: 4px; }
.inbox-list li { display: flex; align-items: center; gap: 8px; padding: 9px; border-radius: 12px; min-width: 0; }
.inbox-list li > div { flex: 1; min-width: 0; }
.inbox-list strong { display: block; font-size: 12.5px; color: var(--ink); }
.inbox-list small { display: block; font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inbox-list time { font-size: 10px; color: var(--faint); align-self: flex-start; }
.inbox-list li.is-on { background: var(--bg-2); }
.inbox-chat { display: flex; flex-direction: column; border-radius: 14px; padding: 12px; background: #efeae2; }
.ic-head { display: flex; align-items: center; gap: 8px; padding-bottom: 10px; margin-bottom: auto; border-bottom: 1px solid rgba(11,10,18,.06); }
.ic-head strong { display: block; font-size: 12.5px; color: var(--ink); }
.ic-head small { font-size: 10.5px; color: var(--muted); }
.inbox-chat .bub { font-size: 12.5px; }
.ic-input { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; padding: 8px 8px 8px 14px; border-radius: 99px; background: #fff; color: var(--faint); font-size: 12px; }
.ic-input i { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--wa); color: #fff; }
.ic-input .ic { width: 14px; height: 14px; }

/* ==========================================================================
   RESULTS
   ========================================================================== */
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.results-photo { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; }
.results-photo picture, .results-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.results-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .9s var(--ease); }
.results-video.is-playing { opacity: 1; }
.results-photo figcaption {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 16px;
  background: rgba(255,255,255,.78); backdrop-filter: blur(16px) saturate(1.5); -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.9); font-size: 14.5px; font-weight: 500; color: var(--ink);
}
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  display: flex; flex-direction: column; justify-content: space-between; gap: 18px;
  padding: clamp(20px, 2.4vw, 30px); border-radius: var(--r); background: #fff; border: 1px solid rgba(11,10,18,.06); box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: var(--display); font-weight: 800; font-size: clamp(34px, 3.8vw, 54px); letter-spacing: -0.05em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums; white-space: nowrap;
  padding: 0 .1em .08em 0; margin: 0 -.1em -.08em 0;
}
.stat-label { font-size: 15px; color: var(--muted); line-height: 1.4; }

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */
.industries .section-head-row .section-sub { margin-top: 0; }
.ind-rail {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter);
}
.ind {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; isolation: isolate;
  background: #e8e6e0; box-shadow: var(--shadow-sm);
}
.ind picture, .ind img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ind img { transition: transform 1.2s var(--ease-out); }
.ind:hover img { transform: scale(1.05); }
.ind::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(to top, rgba(11,10,18,.72), transparent); z-index: 0; pointer-events: none; }
.ind-body {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 1; padding: 16px;
  border-radius: 16px; color: #fff;
}
.ind-body h3 { color: #fff; font-size: 21px; letter-spacing: -0.025em; }
.ind-body p { margin-top: 6px; font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.45; }
.ind-foot { display: none; justify-content: flex-end; gap: 20px; margin-top: 20px; }
.ind-foot p { font-size: 15.5px; color: var(--muted); }
.ind-foot a { color: var(--ink); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(247,52,120,.5); text-underline-offset: 3px; }
.rail-nav { display: none; gap: 8px; }
.rail-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); background: #fff; display: grid; place-items: center; transition: background .2s, transform .2s; }
.rail-btn:hover { background: var(--ink); color: #fff; }
.rail-btn .ic { width: 18px; height: 18px; }

/* ==========================================================================
   COMPARISON
   ========================================================================== */
.cmp-wrap { border-radius: var(--r-lg); background: #fff; border: 1px solid rgba(11,10,18,.06); box-shadow: var(--shadow); overflow: hidden; }
.cmp { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.cmp th, .cmp td { padding: 18px 22px; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--line); }
.cmp tbody tr:last-child > * { border-bottom: 0; }
.cmp thead th { font-size: 14px; font-weight: 600; color: var(--muted); padding-block: 22px; }
.cmp thead th.cmp-jt img { height: 20px; width: auto; }
.cmp tbody th { font-weight: 600; color: var(--ink); width: 20%; }
.cmp td { color: var(--muted); width: 25%; }
.cmp td .ic { display: inline-block; vertical-align: -3px; width: 17px; height: 17px; margin-right: 8px; stroke-width: 2.5; }
.cmp .ic.ok { color: var(--ok); }
.cmp .ic.no { color: var(--no); }
.cmp .cmp-jt { background: linear-gradient(180deg, rgba(247,52,120,.045), rgba(122,43,234,.045)); color: var(--ink); font-weight: 600; position: relative; }
.cmp thead .cmp-jt { box-shadow: inset 0 3px 0 0 var(--pink); }

/* ==========================================================================
   PRICING
   ========================================================================== */
.price-card {
  position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 56px);
  padding: clamp(28px, 4vw, 56px); border-radius: var(--r-xl);
  background: linear-gradient(#fff, #fff) padding-box, conic-gradient(from var(--angle), #fc7132, #f73478, #7a2bea, #f73478, #fc7132) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-lg), 0 40px 120px -40px rgba(247,52,120,.35);
  animation: spin 8s linear infinite;
}
@keyframes spin { to { --angle: 360deg; } }
.price-label { display: inline-block; font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.price-big { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; margin-top: 16px; font-family: var(--display); color: var(--ink); line-height: 1; }
.pb-avg { font-size: clamp(32px, 3.4vw, 44px); font-weight: 700; color: var(--faint); }
.pb-num { font-size: clamp(56px, 7vw, 96px); font-weight: 800; letter-spacing: -0.055em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; padding: 0 .1em .08em 0; margin-right: -.1em; }
.pb-per { font-size: 20px; font-weight: 600; color: var(--muted); letter-spacing: -0.01em; }
.price-note { margin-top: 20px; font-size: 15.5px; color: var(--muted); line-height: 1.6; }
.price-flex { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding: 12px 16px; border-radius: 14px; background: var(--ok-bg); color: #0f6b30; font-weight: 600; font-size: 15px; }
.price-flex .ic { stroke-width: 2.6; }
.price-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.price-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pl { padding: 24px; border-radius: 22px; background: var(--surface-2); border: 1px solid var(--line); }
.pl h3 { font-size: 18px; letter-spacing: -0.02em; margin-bottom: 14px; }
.pl li { display: flex; gap: 10px; padding: 8px 0; font-size: 14.5px; line-height: 1.45; color: var(--ink-2); border-top: 1px dashed var(--line); }
.pl li:first-child { border-top: 0; }
.pl li .ic { width: 17px; height: 17px; margin-top: 2px; stroke-width: 2.6; }
.pl-in .ic { color: var(--ok); }
.pl-out .ic { color: var(--no); }
.pl-out li { color: var(--muted); }

/* ==========================================================================
   FOUNDER
   ========================================================================== */
.founder-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.li-card { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; background: #fff; border: 1px solid rgba(11,10,18,.06); box-shadow: var(--shadow-lg); transition: transform .5s var(--ease-out), box-shadow .5s; }
.li-banner { aspect-ratio: 4/1; overflow: hidden; background: var(--grad); }
.li-banner img { width: 100%; height: 100%; object-fit: cover; }
.li-body { position: relative; padding: 0 28px 28px; }
.li-avatar { width: 112px; height: 112px; border-radius: 50%; border: 5px solid #fff; margin-top: -56px; box-shadow: var(--shadow); }
.li-name { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--ink); letter-spacing: -0.03em; }
.li-in { color: #0a66c2; width: 22px; height: 22px; }
.li-headline { margin-top: 6px; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.li-meta { margin-top: 8px; font-size: 14px; color: var(--muted); }
.li-meta strong { color: var(--ink); }
.li-card .btn { margin-top: 18px; }
.award-row { display: flex; align-items: center; gap: 16px; margin: 28px 0 32px; padding: 14px 20px 14px 14px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); width: fit-content; }
.award-row img { width: 64px; height: 64px; }
.award-row strong { display: block; color: var(--ink); font-size: 16px; }
.award-row span { font-size: 14px; color: var(--muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.faq-side { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-side .btn { margin-top: 30px; }
.faq-side .section-sub a[href^="tel:"] { white-space: nowrap; font-weight: 600; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border-radius: 20px; background: rgba(255,255,255,.7); border: 1px solid var(--line); transition: background .3s, box-shadow .3s, border-color .3s; }
.faq-item[open] { background: #fff; box-shadow: var(--shadow); border-color: transparent; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-family: var(--body); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.4; color: var(--ink); text-wrap: pretty; }
.faq-ic { width: 34px; height: 34px; flex: none; border-radius: 50%; display: grid; place-items: center; background: rgba(11,10,18,.05); transition: transform .4s var(--ease-out), background .3s, color .3s; }
.faq-ic .ic { width: 16px; height: 16px; }
.faq-item[open] .faq-ic { transform: rotate(45deg); background: var(--ink); color: #fff; }
.faq-a { padding: 0 22px 22px; }
.faq-a p { font-size: 16px; color: var(--muted); line-height: 1.65; max-width: 62ch; }
.faq-a strong { color: var(--ink); font-weight: 600; }
.faq-item::details-content { block-size: 0; overflow: clip; transition: block-size .4s var(--ease-out), content-visibility .4s allow-discrete; }
.faq-item[open]::details-content { block-size: auto; }

/* ==========================================================================
   BOOKING
   ========================================================================== */
.booking { overflow: hidden; }
.booking-atmo { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.booking-atmo .b1 { width: 700px; height: 700px; left: -200px; top: 10%; background: radial-gradient(circle, rgba(252,113,50,.16), transparent 70%); }
.booking-atmo .b2 { width: 800px; height: 800px; right: -260px; top: 30%; background: radial-gradient(circle, rgba(122,43,234,.14), transparent 70%); }
.book-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin: -36px 0 40px; }
.book-perks li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15.5px; color: var(--ink); }
.book-perks .ic { color: var(--ok); stroke-width: 2.6; }
.book-call { text-align: center; margin: -22px 0 28px; font-size: 15.5px; color: var(--muted); }
.book-call a {
  display: inline-flex; align-items: center; gap: 7px; margin-left: 6px; padding: 7px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-2); color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-out), box-shadow .3s;
}
.book-call a .ic { width: 16px; height: 16px; color: var(--pink); }
.book-call a:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.cal-card {
  max-width: 1080px; margin-inline: auto; border-radius: var(--r-xl); overflow: hidden;
  background: #fff; border: 1px solid rgba(11,10,18,.06); box-shadow: var(--shadow-lg);
}
.calendly-embed { position: relative; width: 100%; height: 940px; }
.calendly-embed iframe { width: 100%; height: 100%; border: 0; }
.cal-loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--muted); font-size: 15px; }
.cal-spinner { width: 22px; height: 22px; border-radius: 50%; border: 2.5px solid rgba(247,52,120,.2); border-top-color: var(--pink); animation: rot .8s linear infinite; }
@keyframes rot { to { transform: rotate(360deg); } }
.cal-alt { text-align: center; margin-top: 18px; font-size: 14.5px; }
.cal-alt a { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.cal-alt a:hover { color: var(--ink); }
.cal-fallback { height: auto; }
.cal-fb { padding: clamp(36px, 6vw, 64px) 24px; text-align: center; }
.cal-fb p { color: var(--muted); max-width: 440px; margin: 10px auto 24px; }
.cal-fb strong { font-family: var(--display); font-size: 26px; color: var(--ink); letter-spacing: -0.03em; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { position: relative; overflow: hidden; background: rgba(255,255,255,.5); backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4); border-top: 1px solid rgba(255,255,255,.8); padding-top: clamp(80px, 10vw, 140px); }
.footer-cta { text-align: center; padding-bottom: clamp(64px, 8vw, 110px); }
.footer-cta .kicker { justify-content: center; }
.footer-title { font-size: clamp(42px, 7vw, 104px); letter-spacing: -0.05em; line-height: .98; font-weight: 800; margin-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px; padding-block: 48px; border-top: 1px solid var(--line); }
.f-brand img { height: 28px; width: auto; }
.f-brand p { margin-top: 16px; font-size: 15px; color: var(--muted); max-width: 320px; }
.f-social { display: flex; gap: 8px; margin-top: 20px; }
.f-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--ink-2); transition: all .25s; }
.f-social a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.f-social .ic { width: 17px; height: 17px; }
.f-col { display: flex; flex-direction: column; gap: 10px; }
.f-col h3 { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.f-col a { font-size: 15px; color: var(--ink-2); transition: color .2s; width: fit-content; }
.f-col a:hover { color: var(--pink); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-block: 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.f-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.f-legal a:hover, .linklike:hover { color: var(--ink); }
.linklike { background: none; border: 0; padding: 0; font-size: 14px; color: var(--muted); }
.footer-word {
  margin: 0; text-align: center; line-height: .78; padding-top: 10px;
  font-family: var(--display); font-weight: 800; letter-spacing: -0.06em;
  font-size: clamp(90px, 23vw, 360px);
  background: linear-gradient(180deg, rgba(11,10,18,.07), rgba(11,10,18,0) 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none; pointer-events: none; margin-bottom: -0.12em;
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */
.m-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(242,243,238,.96) 55%, rgba(242,243,238,0));
  transform: translateY(110%); transition: transform .45s var(--ease-out);
}
.m-cta.is-shown { transform: none; }
.m-cta { gap: 10px; }
.m-cta .btn { flex: 1; }
.m-call {
  flex: none; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--ink); border: 1px solid var(--line-2); box-shadow: 0 8px 22px -8px rgba(11,10,18,.3);
}
.m-call .ic { width: 22px; height: 22px; color: var(--pink); }

/* ==========================================================================
   CONSENT
   ========================================================================== */
.consent {
  position: fixed; z-index: 150; left: 16px; bottom: 16px; width: min(440px, calc(100% - 32px));
  padding: 22px; border-radius: 22px;
  background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.95);
  backdrop-filter: blur(24px) saturate(1.5); -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(16px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.consent.is-shown { opacity: 1; transform: none; }
.consent-title { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: -0.02em; }
.consent-desc { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--muted); }
.consent-desc a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.consent-actions .btn { flex: 1 1 auto; }

.consent-modal {
  width: min(560px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; border: 0; border-radius: 26px;
  background: #fff; color: var(--ink-2); box-shadow: var(--shadow-lg); overflow: auto;
  opacity: 0; transform: translateY(12px) scale(.98);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), overlay .3s allow-discrete, display .3s allow-discrete;
}
.consent-modal[open] { opacity: 1; transform: none; }
@starting-style { .consent-modal[open] { opacity: 0; transform: translateY(12px) scale(.98); } }
.consent-modal::backdrop { background: rgba(11,10,18,.35); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.consent-panel { position: relative; padding: 28px; }
.consent-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); background: #fff; display: grid; place-items: center; }
.consent-panel-title { font-size: 24px; letter-spacing: -0.03em; padding-right: 40px; }
.consent-panel-sub { margin-top: 8px; font-size: 14.5px; color: var(--muted); }
.consent-cat { margin-top: 14px; padding: 16px; border-radius: 16px; background: var(--surface-2); border: 1px solid var(--line); }
.consent-cat-head { display: flex; align-items: center; justify-content: space-between; font-weight: 600; color: var(--ink); cursor: pointer; }
.consent-cat p { margin-top: 6px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.consent-modal-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.consent-modal-actions .btn { flex: 1 1 auto; }
.switch {
  appearance: none; -webkit-appearance: none; margin: 0; flex: none;
  width: 46px; height: 28px; border-radius: 99px; background: rgba(11,10,18,.14); position: relative; cursor: pointer;
  transition: background .25s;
}
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: transform .25s var(--ease-out); }
.switch:checked { background: var(--grad-btn); }
.switch:checked::after { transform: translateX(18px); }
.switch:disabled { opacity: .55; cursor: not-allowed; }
body:has(.consent-modal[open]) { overflow: hidden; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.js [data-reveal] { opacity: 0; translate: 0 28px; transition: opacity .9s var(--ease-out) var(--d, 0s), translate .9s var(--ease-out) var(--d, 0s), transform .6s var(--ease-out), box-shadow .35s var(--ease-out); }
.js [data-reveal].is-in { opacity: 1; translate: none; }

/* ==========================================================================
   CONVERSION BLOCKS — varied CTAs between sections
   ========================================================================== */
.cta-strip {
  position: relative; display: flex; align-items: center; gap: 22px; isolation: isolate; overflow: hidden;
  margin-top: clamp(40px, 5vw, 64px); padding: 22px 22px 22px 24px; border-radius: 28px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(110deg, rgba(252,113,50,.55), rgba(247,52,120,.5), rgba(122,43,234,.55)) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow), 0 30px 80px -44px rgba(247,52,120,.45);
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(520px 200px at 0% 0%, rgba(252,113,50,.09), transparent 62%), radial-gradient(520px 220px at 100% 100%, rgba(122,43,234,.09), transparent 62%);
}
.cta-ic { width: 56px; height: 56px; flex: none; border-radius: 18px; display: grid; place-items: center; color: #fff; background: var(--grad); box-shadow: var(--glow); }
.cta-ic .ic { width: 24px; height: 24px; }
.cta-copy { flex: 1; min-width: 0; }
.cta-title { font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2vw, 26px); line-height: 1.15; letter-spacing: -0.03em; color: var(--ink); text-wrap: balance; }
.cta-sub { margin-top: 6px; font-size: 15.5px; line-height: 1.5; color: var(--muted); max-width: 64ch; }
.cta-strip > .btn { flex: none; }
.cta-strip-alt .cta-ic { background: var(--ink); box-shadow: 0 12px 26px -10px rgba(11,10,18,.5); }
.cta-strip-urgent .cta-ic { background: linear-gradient(135deg, #fc7132, #f73478); }

.cta-line {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 40px;
  margin-top: clamp(48px, 6vw, 84px); padding-top: clamp(28px, 3vw, 40px); border-top: 1px solid var(--line);
}
.cta-line-title { font-family: var(--display); font-weight: 800; font-size: clamp(32px, 4.4vw, 60px); line-height: 1; letter-spacing: -0.045em; color: var(--ink); }
.cta-line-act { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cta-micro { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--muted); }
.cta-micro .ic { width: 15px; height: 15px; color: var(--ok); stroke-width: 2.6; }

/* dark statement island */
.statement { padding-block: clamp(8px, 2vw, 24px) clamp(64px, 8vw, 110px); }
.stmt-card {
  position: relative; overflow: hidden; isolation: isolate; text-align: center;
  padding: clamp(56px, 8vw, 116px) clamp(22px, 6vw, 88px);
  border-radius: clamp(28px, 4vw, 44px); background: #0b0a12;
  box-shadow: 0 50px 110px -40px rgba(11,10,18,.6);
}
.stmt-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.stmt-aurora { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.stmt-aurora span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .6; animation: aurora 16s ease-in-out infinite alternate; }
.stmt-aurora span:nth-child(1) { width: 560px; height: 560px; left: -160px; top: -220px; background: radial-gradient(circle, rgba(252,113,50,.75), transparent 68%); }
.stmt-aurora span:nth-child(2) { width: 680px; height: 680px; right: -220px; bottom: -320px; background: radial-gradient(circle, rgba(122,43,234,.8), transparent 68%); animation-duration: 20s; animation-delay: -6s; }
.stmt-aurora span:nth-child(3) { width: 460px; height: 460px; left: 38%; top: 45%; background: radial-gradient(circle, rgba(247,52,120,.55), transparent 68%); animation-duration: 13s; animation-delay: -3s; }
@keyframes aurora { to { transform: translate3d(80px, 50px, 0) scale(1.18); } }
.stmt-kicker { justify-content: center; color: rgba(244,241,234,.6); }
.stmt-title {
  max-width: 16ch; margin-inline: auto; color: #f4f1ea; hyphens: manual;
  font-size: clamp(30px, 8.6vw, 100px); font-weight: 800; line-height: .98; letter-spacing: -0.052em;
}
.stmt-title em {
  background: linear-gradient(95deg, #ff8a4f, #ff4d8c 50%, #a567ff); -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap; font-variant-numeric: tabular-nums; padding: 0 .1em .12em 0; margin: 0 -.1em -.12em 0;
}
.stmt-sub { max-width: 620px; margin: 26px auto 0; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: rgba(244,241,234,.72); }
.stmt-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 38px; }
.stmt-proof { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-top: 34px; font-size: 14px; color: rgba(244,241,234,.6); }
.stmt-proof li { display: inline-flex; align-items: center; gap: 6px; }
.stmt-proof li + li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: rgba(244,241,234,.3); margin-right: 16px; }

/* scroll-linked kinetic word band */
.kinetic { overflow: hidden; padding-block: 0 clamp(24px, 4vw, 56px); user-select: none; pointer-events: none; }
.kin-row {
  display: flex; align-items: center; gap: .32em; width: max-content; white-space: nowrap;
  font-family: var(--display); font-weight: 800; font-size: clamp(52px, 9vw, 150px); line-height: 1.04; letter-spacing: -0.05em; color: var(--ink);
  transform: translate3d(var(--kx, -6%), 0, 0); will-change: transform;
}
.kin-row i { font-style: normal; font-size: .36em; color: var(--pink); }
.kin-row .g { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .08em; margin-right: -.08em; }
.kin-outline { color: transparent; -webkit-text-stroke: 1.5px rgba(11,10,18,.3); --kx: -34%; }
.kin-outline i { -webkit-text-stroke: 0; color: rgba(11,10,18,.22); }

/* demo nudge (desktop only, once per session) */
.nudge {
  position: fixed; right: 20px; bottom: 20px; z-index: 140; width: min(370px, calc(100% - 40px));
  display: flex; align-items: flex-start; gap: 14px; padding: 18px 18px 18px 16px; border-radius: 22px;
  background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.95);
  backdrop-filter: blur(20px) saturate(1.5); -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: var(--shadow-lg), 0 30px 80px -40px rgba(247,52,120,.45);
  opacity: 0; translate: 0 18px; transition: opacity .45s var(--ease-out), translate .45s var(--ease-out);
}
.nudge.is-shown { opacity: 1; translate: 0 0; }
.nudge img { width: 44px; height: 44px; flex: none; border-radius: 50%; box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #f73478; }
.nudge-title { padding-right: 26px; font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--ink); line-height: 1.2; }
.nudge-text { margin: 4px 0 12px; font-size: 14px; line-height: 1.45; color: var(--muted); }
.nudge-acts { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.nudge-call { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.nudge-call .ic { width: 14px; height: 14px; color: var(--pink); }
.nudge-call:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.nudge-x { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border: 0; border-radius: 50%; display: grid; place-items: center; background: rgba(11,10,18,.05); color: var(--ink-2); }
.nudge-x .ic { width: 14px; height: 14px; }

/* 3D tilt + glare (pointer devices) */
[data-tilt] { transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
[data-tilt].is-tilting { transition: opacity .9s var(--ease-out), translate .9s var(--ease-out), transform .12s linear; }
.ind::before, .li-card::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; border-radius: inherit;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.3), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
[data-tilt].is-tilting::before { opacity: 1; }

/* industry photos uncover on scroll */
.js .ind[data-reveal] img { clip-path: inset(22% 0 0 0); scale: 1.12; transition: clip-path 1.2s var(--ease-out) var(--d, 0s), scale 1.6s var(--ease-out) var(--d, 0s), transform 1.2s var(--ease-out); }
.js .ind[data-reveal].is-in img { clip-path: inset(0); scale: 1; }

/* ==========================================================================
   GLASS DEPTH — a soft, blurred world behind a frosted pane; content sits on the glass
   (revert: delete this block + .scene markup + "glass scene" JS)
   ========================================================================== */
.scene { position: fixed; inset: 0; z-index: -10; overflow: hidden; pointer-events: none; background: #eceee8; contain: strict; }
.scene .orb { position: absolute; border-radius: 50%; will-change: transform, translate; }
.scene .orb { animation: orbDrift 26s ease-in-out infinite alternate; }
.o1 { width: 64vmax; height: 64vmax; left: -20vmax; top: -24vmax; background: radial-gradient(circle, rgba(252,113,50,.34), rgba(252,113,50,.12) 40%, transparent 66%); }
.o2 { width: 54vmax; height: 54vmax; right: -18vmax; top: 14vh; background: radial-gradient(circle, rgba(247,52,120,.28), rgba(247,52,120,.1) 42%, transparent 66%); animation-duration: 31s; animation-delay: -9s; }
.o3 { width: 72vmax; height: 72vmax; left: 14vw; bottom: -42vmax; background: radial-gradient(circle, rgba(122,43,234,.26), rgba(122,43,234,.09) 42%, transparent 66%); animation-duration: 35s; animation-delay: -4s; }
.o4 { width: 50vmax; height: 50vmax; left: -16vmax; top: 46vh; background: radial-gradient(circle, rgba(92,140,214,.2), rgba(92,140,214,.07) 42%, transparent 66%); animation-duration: 29s; animation-delay: -14s; }
.o5 { width: 42vmax; height: 42vmax; right: 6vw; bottom: -14vmax; background: radial-gradient(circle, rgba(255,206,160,.42), transparent 66%); animation-duration: 23s; animation-delay: -6s; }
@keyframes orbDrift { 0% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(3vw, -2vh, 0) scale(1.06); } 100% { transform: translate3d(-2vw, 3vh, 0) scale(.96); } }
/* the frosted pane: tint + grain + diagonal light reflection + denser edges */
.glass-pane {
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(118deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,.1) 20%, rgba(255,255,255,0) 36%, rgba(255,255,255,0) 60%, rgba(255,255,255,.26) 72%, rgba(255,255,255,.04) 80%, rgba(255,255,255,0) 88%),
    radial-gradient(140% 110% at 50% 38%, rgba(248,248,244,.22) 0%, rgba(240,241,236,.5) 70%, rgba(233,234,229,.72) 100%);
}
.glass-pane::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent); }

/* content surfaces become frosted glass */
:root { --glass-surface: rgba(255,255,255,.62); --glass-edge: rgba(255,255,255,.88); --glass-fx: blur(18px) saturate(1.5); --glass-hi: inset 0 1px 0 rgba(255,255,255,.95), inset 0 0 0 1px rgba(255,255,255,.35); }
.card, .pain, .stat, .faq-item, .cmp-wrap, .pl, .included li, .dash-tab.is-active, .li-card, .award-row, .book-call a, .pain-bridge {
  background-color: var(--glass-surface); border-color: var(--glass-edge);
  backdrop-filter: var(--glass-fx); -webkit-backdrop-filter: var(--glass-fx);
}
.card { box-shadow: var(--glass-hi), var(--shadow); }
.pain, .stat, .pl, .award-row { box-shadow: var(--glass-hi), var(--shadow-sm); }
.faq-item { background-color: rgba(255,255,255,.5); }
.faq-item[open] { background-color: rgba(255,255,255,.78); box-shadow: var(--glass-hi), var(--shadow); }
.cmp-wrap, .li-card { box-shadow: var(--glass-hi), var(--shadow-lg); }
.cmp .cmp-jt { background: linear-gradient(180deg, rgba(247,52,120,.07), rgba(122,43,234,.07)); }
.cta-strip { background: linear-gradient(rgba(255,255,255,.86), rgba(255,255,255,.86)) padding-box, linear-gradient(110deg, rgba(252,113,50,.6), rgba(247,52,120,.55), rgba(122,43,234,.6)) border-box; }
.price-card { background: linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.9)) padding-box, conic-gradient(from var(--angle), #fc7132, #f73478, #7a2bea, #f73478, #fc7132) border-box; }

/* below-the-fold rendering hints */
.results, .industries, .compare, .pricing, .founder, .faq { content-visibility: auto; contain-intrinsic-size: auto 1000px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1260px) {
  .nav-phone span { display: none; }
  .nav-phone { padding: 9px; }
}
@media (max-width: 1180px) {
  .wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wall-col:nth-child(3) { display: none; }
  .fc-app { left: -40px; width: 256px; }
}
@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-inner > * { max-width: 680px; }
  .hero-visual { height: 500px; margin-top: 8px; }
  .wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wall-col:nth-child(3) { display: flex; }
  .fc-app { left: 4%; bottom: 8%; }
}

@media (max-width: 1080px) {
  .ind-foot { display: flex; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .bento-ads, .bento-dash { grid-column: span 12; }
  .bento-express, .bento-wa { grid-column: span 6; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .steps::before, .steps::after { display: none; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-tabs { grid-template-columns: repeat(3, 1fr); }
  .dash-tab { flex-direction: column; gap: 10px; }
  .results-grid { grid-template-columns: 1fr; }
  .results-photo { min-height: 0; aspect-ratio: 16/10; }
  .ind-rail {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px;
    padding-bottom: 8px; scrollbar-width: none; overscroll-behavior-x: contain;
    scroll-padding-inline: var(--gutter);
  }
  .ind-rail::-webkit-scrollbar { display: none; }
  .ind { flex: 0 0 clamp(240px, 40vw, 340px); scroll-snap-align: start; }
  .rail-nav { display: flex; }
  .price-card { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .li-card { max-width: 560px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .f-brand { grid-column: 1 / -1; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head-row { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
  body { font-size: 16px; }
  .site-header { inset-block-start: 8px; }
  .nav { height: 56px; padding-left: 18px; padding-right: 6px; }
  .brand-logo { height: 24px; }
  .nav-actions .btn { display: none; }

  /* hero: text first, candidate wall below */
  .hero { display: block; min-height: 0; padding-top: calc(var(--header-h) + 36px); padding-bottom: 20px; }
  .hero-inner > * { max-width: none; }
  .hero-badge { font-size: 12.5px; margin-bottom: 22px; }
  .hero-title { font-size: clamp(42px, 13.2vw, 66px); line-height: .95; }
  .hero-eyebrow { font-size: 11.5px; margin-bottom: 16px; letter-spacing: .14em; }
  .hero-lead { margin-top: 20px; font-size: 17px; }
  .hero-ctas { margin-top: 26px; flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-proof { margin-top: 22px; gap: 8px 18px; font-size: 13.5px; justify-content: center; }
  .hero-proof li + li::before { display: none; }
  .hero-visual { height: 440px; margin: 34px calc(-1 * var(--gutter)) 0; }
  .wall { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding-inline: var(--gutter); }
  .wall-col:nth-child(3) { display: none; }
  .cand { margin-bottom: 10px; padding: 6px 6px 10px; border-radius: 18px; }
  .cand img { border-radius: 13px; }
  .cand-name { font-size: 13px; }
  .cand-role, .cand-loc { font-size: 11.5px; }
  .wall-pill { font-size: 12.5px; padding: 8px 14px; top: 6px; }
  .fc { font-size: 12px; padding: 10px 12px; border-radius: 16px; }
  .fc-app { left: var(--gutter); right: var(--gutter); width: auto; bottom: 6%; }
  .fc-time { display: none; }
  .fc-person { margin: 8px 0; }
  .fc-person strong { font-size: 13.5px; }

  .marquee li { width: 138px; height: 64px; padding: 14px 20px; border-radius: 16px; }
  .marquee img { max-height: 32px; }
  .logos-title { font-size: 14px; }

  .pain-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain { flex-direction: row; align-items: stretch; }
  .pain-media { flex: 0 0 38%; aspect-ratio: auto; min-height: 118px; }
  .pain-body { padding: 14px 16px; align-self: center; }
  .pain p { font-size: 14px; }
  .pain-x { top: 8px; right: auto; left: 8px; width: 24px; height: 24px; }
  .pain-x .ic { width: 12px; height: 12px; }
  .pain .pain-num { font-size: 23px; margin-bottom: 4px; }
  .pain-head { gap: 10px; }
  .pain-grid { margin-top: 22px; }
  .pain-bridge { width: 100%; justify-content: center; font-size: 15px; }

  .bento { gap: 12px; }
  .bento-express, .bento-wa { grid-column: span 12; }
  .bento .card { grid-template-columns: 1fr; min-height: 0; padding: 24px 20px; gap: 20px; }
  /* ad mockup: small corner card so the video stays the hero of this card */
  .ads-visual { min-height: 0; aspect-ratio: 1 / 1.1; }
  .ads-video { width: 78%; border-radius: 18px; }
  .ig-post { width: 48%; max-width: 164px; border-radius: 14px; transform: rotate(-2deg); box-shadow: 0 18px 36px -14px rgba(11,10,18,.4), 0 2px 8px rgba(11,10,18,.08); }
  .ig-head { gap: 6px; padding: 7px 9px; }
  .ig-head strong { font-size: 10.5px; }
  .ig-head span { font-size: 9px; }
  .ig-av { width: 20px; height: 20px; box-shadow: 0 0 0 1.5px #fff, 0 0 0 2.5px #f73478; }
  .ig-media { padding: 10px; gap: 3px; }
  .ig-kicker { font-size: 8.5px; }
  .ig-perks { display: none; }
  .ig-media strong { font-size: 15px; }
  .ig-cta { padding: 7px 9px; font-size: 10px; white-space: nowrap; gap: 4px; }
  .ig-cta .ic { width: 11px; height: 11px; }
  .phone { width: 210px; transform: translateY(14%); }
  .kanban { gap: 6px; padding: 8px; }
  .kb-card { font-size: 11px; padding: 7px; gap: 5px; }
    .included { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
  .included li { align-items: flex-start; font-size: 13px; line-height: 1.35; padding: 12px; border-radius: 14px; background: #fff; }
  .included .ic { margin-top: 1px; }
  .bento-express, .bento-wa { align-content: start; }
  .phone { margin-top: 4px; }
  .wa-chat { min-height: 176px; }

  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { display: grid; grid-template-columns: 56px 1fr; column-gap: 18px; padding-bottom: 32px; }
  .step::before { content: ""; position: absolute; left: 27px; top: 60px; bottom: 4px; width: 2px; background: linear-gradient(var(--line-2) 50%, transparent 0) 0 0 / 2px 10px repeat-y; }
  .step:last-child::before { display: none; }
  .step-num { grid-row: span 3; }
  .step-tag { margin-top: 0; width: fit-content; }
  .step h3 { margin-top: 10px; }

  .dash-tabs { grid-template-columns: 1fr; gap: 6px; margin-top: 28px; }
  .dash-tab { flex-direction: row; padding: 14px; }
  .dash-tab small { display: none; }
  .dash-tab.is-active small { display: block; }
  .app-frame { border-radius: 18px; margin-inline: calc(-1 * min(var(--gutter), 8px)); }
  .app-body { grid-template-columns: 1fr; min-height: 0; }
  .app-side { display: none; }
  .app-main { padding: 12px; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .kpi strong { font-size: 20px; }
  .pipe { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pipe-col { min-height: 0; }
  .pc-move { animation: none; }
  .inbox { grid-template-columns: 1fr; min-height: 0; }
  .inbox-list { display: none; }
  .inbox-chat { min-height: 320px; }

  .stats { gap: 10px; }
  .stat { padding: 18px 16px; gap: 12px; }
  .stat-num { font-size: clamp(28px, 8.6vw, 40px); }
  .stat-label { font-size: 13.5px; }
  .results-photo { aspect-ratio: 4/3.4; }
  .results-photo figcaption { font-size: 13.5px; left: 10px; right: 10px; bottom: 10px; }

  .ind { flex-basis: 74vw; }
  .ind-foot { flex-direction: column; align-items: flex-start; }

  /* comparison table -> stacked cards */
  .cmp-wrap { background: transparent; border: 0; box-shadow: none; border-radius: 0; overflow: visible; }
  .cmp, .cmp tbody, .cmp tr, .cmp th, .cmp td { display: block; width: auto !important; }
  .cmp thead { display: none; }
  .cmp tbody { display: grid; gap: 10px; }
  .cmp tr { border-radius: 20px; background: #fff; border: 1px solid rgba(11,10,18,.06); box-shadow: var(--shadow-sm); overflow: hidden; }
  .cmp th[scope="row"] { padding: 16px 18px 6px; font-family: var(--display); font-size: 19px; letter-spacing: -0.02em; border: 0; }
  .cmp td { display: flex; align-items: flex-start; gap: 4px; padding: 8px 18px; border: 0; font-size: 14.5px; line-height: 1.45; }
  .cmp td::before { content: attr(data-l); flex: 0 0 92px; font-size: 12px; font-weight: 600; color: var(--faint); padding-top: 2px; }
  .cmp td .ic { margin-top: 2px; }
  .cmp td.cmp-jt { margin-top: 6px; padding-block: 12px 14px; }
  .cmp td.cmp-jt::before { color: var(--pink); }
  .cmp td .ic { margin-right: 6px; }

  .price-card { padding: 24px 18px; border-radius: 28px; }
  .price-lists { grid-template-columns: 1fr; }
  .price-ctas .btn { width: 100%; }
  .pl { padding: 20px; }

  .li-body { padding: 0 20px 22px; }
  .li-avatar { width: 92px; height: 92px; margin-top: -46px; }
  .li-name { font-size: 22px; }
  .award-row { margin: 22px 0 26px; }

  .faq-item summary { padding: 18px; }
  .faq-item summary h3 { font-size: 16px; }
  .faq-a { padding: 0 18px 18px; }
  .faq-a p { font-size: 15.5px; }

  .book-perks { margin-top: -28px; justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: 8px; }
  .cal-card { border-radius: 24px; margin-inline: calc(-1 * min(var(--gutter), 8px)); }
  .calendly-embed { height: 1180px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .footer-title { margin-bottom: 30px; }
  .footer-cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; padding-bottom: calc(96px + env(safe-area-inset-bottom)); }

  .m-cta { display: flex; align-items: center; }
  :root { --glass-surface: rgba(255,255,255,.8); --glass-fx: none; }
  .nav-phone { display: none; }
  .book-call { margin-top: -18px; }
  .book-call a { margin: 8px 0 0; }
  .nudge { display: none !important; }
  .cta-strip { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 20px; border-radius: 24px; }
  .cta-ic { width: 48px; height: 48px; border-radius: 15px; }
  .cta-ic .ic { width: 21px; height: 21px; }
  .cta-sub { font-size: 15px; }
  .cta-strip > .btn { width: 100%; }
  .cta-line-act { width: 100%; align-items: stretch; }
  .cta-line-act .btn { width: 100%; }
  .cta-micro { justify-content: center; }
  .stmt-ctas .btn { width: 100%; }
  .stmt-proof li + li::before { display: none; }
  .btn-xl { --pad-y: 17px; --pad-x: 24px; font-size: 16.5px; }
  .kin-outline { -webkit-text-stroke-width: 1.2px; }
  .consent { left: 10px; bottom: 10px; width: calc(100% - 20px); padding: 18px; }
  .consent-actions .btn { flex: 1 1 40%; }
  .consent-actions .btn-ink { flex-basis: 100%; order: -1; }
}

@media (max-width: 380px) {
  .stmt-card { padding-inline: 16px; }
  .stmt-title { font-size: min(8.2vw, 30px); }
  .hero-title { font-size: 44px; }
  .pain-grid { grid-template-columns: 1fr; }
}

@media (hover: none) {
  .card[data-spot]::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee-track, .wall-col, .scene .orb { animation: none !important; }
  .marquee { overflow-x: auto; }
  .js [data-reveal], .js .hero-title .line > *, .js .fc { opacity: 1 !important; transform: none !important; translate: none !important; }
  .js .ind[data-reveal] img { clip-path: none !important; scale: 1 !important; }
  .js .manifest-text .w { opacity: 1; }
}

@media print {
  .site-header, .m-cta, .consent, .hero-visual, .scroll-progress, .booking { display: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
