/* ═══════════════════════════════════════════════════════════════
   Champly — Landing v4
   Deep dark glassmorphism · True Blue (Pantone 19-4057) accent
   Design-language parity with the Champly mini-app.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ── Surfaces ─────────────────────────────────────────────── */
  --bg:            #080a0f;
  --bg-1:          #0a0d15;
  --bg-2:          #0f121c;
  --bg-deep:       #060810;
  --surface:       rgba(16,20,30,.72);
  --surface-2:     rgba(20,26,40,.65);
  --surface-3:     rgba(24,32,50,.55);
  --glass:         rgba(18,24,38,.52);
  --glass-hover:   rgba(24,32,52,.62);
  --glass-thick:   rgba(14,18,28,.82);

  /* ── True Blue palette (Pantone 19-4057) ──────────────────── */
  /* Designer mock-up's Tweaks-panel JS executes
     ``setProperty('--blue-light', cfg.accent)`` on load with
     cfg.accent === '#3B82F6', i.e. it collapses --blue-light into
     --blue-vivid. We do not ship the Tweaks JS in production, so
     bake the same effective value here — keeps the .accent gradient
     ("Заполним"), .section__eyebrow tint, .legal-nav hover and other
     blue-light consumers identical to the designer's rendering. */
  --blue:          #1E4477;
  --blue-bright:   #2B6CB0;
  --blue-vivid:    #3B82F6;
  --blue-light:    #3B82F6;
  --blue-pale:     #93C5FD;
  --blue-deep:     #122C54;
  --blue-glow:     rgba(59,130,246,.35);
  --blue-ghost:    rgba(59,130,246,.08);
  --blue-subtle:   rgba(30,68,119,.18);

  /* ── Text ─────────────────────────────────────────────────── */
  --text:          #EDF2F7;
  --text-2:        #CBD5E1;
  --text-3:        #94A3B8;
  --muted:         #64748B;
  --muted-2:       #475569;

  /* ── Borders ──────────────────────────────────────────────── */
  --line:          rgba(255,255,255,.06);
  --line-2:        rgba(255,255,255,.10);
  --line-3:        rgba(255,255,255,.16);
  --line-blue:     rgba(59,130,246,.22);

  /* ── Semantic ─────────────────────────────────────────────── */
  --danger:        #F87171;
  --success:       #22C55E;
  --warn:          #FBBF24;

  /* ── Shadows ──────────────────────────────────────────────── */
  --shadow-card:   0 1px 2px rgba(0,0,0,.5),
                   0 4px 16px rgba(0,0,0,.35),
                   0 12px 40px rgba(0,0,0,.15),
                   inset 0 1px 0 rgba(255,255,255,.04);
  --shadow-lg:     0 10px 32px rgba(0,0,0,.5),
                   0 2px 8px rgba(0,0,0,.3),
                   0 24px 60px rgba(0,0,0,.25);
  --shadow-blue:   0 4px 24px rgba(30,68,119,.5),
                   0 0 50px rgba(59,130,246,.15);
  --shadow-btn:    0 1px 3px rgba(0,0,0,.4),
                   inset 0 1px 0 rgba(255,255,255,.10);

  /* ── Radii ────────────────────────────────────────────────── */
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-2xl: 36px;
  --r-pill: 999px;

  /* ── Fonts ────────────────────────────────────────────────── */
  /* Mirror the rendering of the designer mock-up exactly:
     • With internet: 'Space Grotesk' loads from Google Fonts → looks
       sans-serif (the production look the designer authored).
     • Without internet: 'Space Grotesk' fails → browser falls straight
       to the generic ``serif`` → user-agent picks Times New Roman on
       Windows / Times on macOS — IDENTICAL to what the designer file
       shows the stakeholder, because the designer's Tweaks-panel JS
       sets --font-display to a single-name 'Space Grotesk' value
       (no Inter / sans-serif fallback chain).
     Keeping body text on Inter chain so paragraphs stay readable. */
  --font-display: 'Space Grotesk', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display',
                  'Segoe UI', Roboto, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, Consolas, monospace;

  /* ── Motion ───────────────────────────────────────────────── */
  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --ease-spring: cubic-bezier(.16,1,.3,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
  min-height: 100vh;
  min-height: 100svh;
  letter-spacing: -.005em;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
ul { list-style: none; }

::selection { background: rgba(30,68,119,.55); color: #fff; }

/* ── Ambient scene — layered radials + soft grain ──────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 1100px 650px at 80% -12%,  rgba(30,68,119,.35) 0%, transparent 55%),
    radial-gradient(ellipse 800px  520px at 8% 18%,    rgba(59,130,246,.10) 0%, transparent 55%),
    radial-gradient(ellipse 700px  500px at 50% 110%,  rgba(30,68,119,.22) 0%, transparent 60%),
    radial-gradient(ellipse 500px  350px at 95% 55%,   rgba(59,130,246,.06) 0%, transparent 50%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}
body > * { position: relative; z-index: 1; }

/* ── Container / layout ────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  width: 100%;
}
.container--narrow { max-width: 900px; }

/* ═══════════════════════════════════════════════════════════════
   SPOTLIGHT PRIMITIVE (shared)
   Any element with class="spot" + data-spot becomes a spotlight card.
   JS sets --_px / --_py on pointermove.
   ═══════════════════════════════════════════════════════════════ */
.spot {
  --_px: 50%;
  --_py: 50%;
  position: relative;
  isolation: isolate;
}
.spot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(
    340px 340px at var(--_px) var(--_py),
    rgba(30,68,119,.35) 0%,
    rgba(59,130,246,.12) 35%,
    transparent 72%
  );
  z-index: 0;
}
.spot::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(
    220px 220px at var(--_px) var(--_py),
    rgba(59,130,246,.42) 0%,
    transparent 68%
  );
  padding: 1px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 0;
}
.spot:hover::before,
.spot:hover::after { opacity: 1; }
.spot > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(180deg,
      rgba(8,10,15,.88) 0%,
      rgba(8,10,15,.72) 60%,
      rgba(8,10,15,.48) 100%);
  backdrop-filter: saturate(1.4) blur(22px);
  -webkit-backdrop-filter: saturate(1.4) blur(22px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  height: clamp(60px, 8vw, 72px);
}

.logo {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.32rem;
  font-weight: 780;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #fff 10%, var(--blue-pale) 65%, var(--blue-light) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(59,130,246,.18));
}
.logo__mark {
  width: 28px; height: 28px;
  position: relative;
  flex-shrink: 0;
  -webkit-text-fill-color: initial;
  background: url("assets/logo-champly-purple-96.png") center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(111,76,255,.35));
}

.site-nav { display: flex; gap: 28px; justify-content: center; }
.site-nav a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color .18s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 2px;
  background: var(--blue-vivid);
  transition: width .22s var(--ease-out), left .22s var(--ease-out);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(59,130,246,.5);
}
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { width: 22px; left: calc(50% - 11px); }
.site-nav a[aria-current='page'],
.site-nav a.is-active {
  color: var(--blue-light);
}

.site-header__cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--line-2);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute; left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS — Glass + True Blue primary (matches app .primary)
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-md);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.005em;
  transition: all .22s var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
  font-family: var(--font-body);
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.3;
}

.btn--primary {
  color: #fff;
  font-weight: 640;
  letter-spacing: .01em;
  background: linear-gradient(165deg,
    rgba(59,130,246,.38) 0%,
    rgba(30,68,119,.72) 50%,
    rgba(20,50,100,.78) 100%);
  border-color: rgba(59,130,246,.45);
  box-shadow:
    0 2px 12px rgba(30,68,119,.45),
    0 0 1px rgba(59,130,246,.6),
    0 0 30px rgba(59,130,246,.12),
    inset 0 1px 0 rgba(255,255,255,.14);
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(165deg,
    rgba(59,130,246,.5) 0%,
    rgba(30,68,119,.82) 50%,
    rgba(20,50,100,.88) 100%);
  border-color: rgba(59,130,246,.65);
  box-shadow:
    var(--shadow-blue),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary:active {
  transform: translateY(0) scale(.98);
  box-shadow:
    0 1px 6px rgba(30,68,119,.3),
    inset 0 2px 4px rgba(0,0,0,.2);
}

.btn--secondary {
  background: var(--glass);
  color: var(--text);
  border-color: var(--line-2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-btn);
}
.btn--secondary:hover {
  border-color: var(--line-blue);
  background: var(--glass-hover);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(59,130,246,.14),
              inset 0 1px 0 rgba(255,255,255,.08);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
}
.btn--ghost:hover { color: var(--text); background: var(--glass); }

.btn--sm  { padding: 9px 16px;  font-size: .87rem; border-radius: 10px; min-height: 38px; }
.btn--lg  { padding: 15px 26px; font-size: 1rem;   border-radius: 14px; min-height: 50px; }
.btn--xl  { padding: 18px 32px; font-size: 1.05rem;border-radius: 16px; min-height: 56px; }

.btn .arrow {
  width: 18px; height: 18px;
  transition: transform .22s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(100px, 14vw, 148px) 0 clamp(60px, 10vw, 96px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .95fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--line-2);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}
.hero__eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0 0 rgba(59,130,246,.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(59,130,246,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(59,130,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6.2vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: clamp(20px, 3vw, 28px);
  color: var(--text);
  overflow-wrap: break-word;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-pale) 60%, #fff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  filter: drop-shadow(0 0 24px rgba(59,130,246,.35));
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -.05em;
  height: .1em;
  background: var(--blue-vivid);
  opacity: .3;
  filter: blur(6px);
}
.hero h1 .strike {
  position: relative;
  color: var(--text-3);
}
.hero h1 .strike::before {
  content: '';
  position: absolute;
  left: -3%; right: -3%; top: 54%;
  height: .08em;
  background: var(--blue-vivid);
  transform: rotate(-4deg);
  box-shadow: 0 0 12px rgba(59,130,246,.5);
}

.hero__sub {
  color: var(--text-2);
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.58;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__note {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: .86rem;
}
.hero__note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__note svg { width: 14px; height: 14px; color: var(--blue-light); }

/* ── Hero right: app-style workspace mock ─────────────────── */
.hero__demo {
  position: relative;
  padding: 22px 18px 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  overflow: visible;
}
.hero__demo::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px 400px at 80% 0%, rgba(59,130,246,.12), transparent 60%);
}

.hero__demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 4px 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.hero__demo-title {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__demo-title .dot {
  display: inline-block;
  width: 8px; height: 8px; margin-right: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 10px rgba(59,130,246,.7);
  vertical-align: middle;
  animation: liveDot 2.2s ease-in-out infinite;
}
@keyframes liveDot {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}
.hero__demo-counter {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue-light);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.25);
  text-shadow: 0 0 14px rgba(59,130,246,.35);
}

.hero__demo-list {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

/* Individual job card (inside workspace) */
.job-card {
  position: relative;
  padding: 14px 16px;
  background: linear-gradient(168deg,
    rgba(22,28,42,.85) 0%,
    rgba(14,18,30,.78) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .3s var(--ease-out), border-color .3s;
  cursor: pointer;
}
.job-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-blue);
  box-shadow: 0 4px 20px rgba(30,68,119,.22),
              0 0 32px rgba(59,130,246,.06);
}

.job-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.job-card__logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .86rem;
  border: 1px solid var(--line-2);
  flex-shrink: 0;
  letter-spacing: -.015em;
}
.job-card__match {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  color: var(--blue-light);
  padding: 3px 9px;
  border-radius: var(--r-pill);
  background: linear-gradient(165deg,
    rgba(59,130,246,.14) 0%,
    rgba(30,68,119,.22) 100%);
  border: 1px solid rgba(59,130,246,.32);
  text-shadow: 0 0 14px rgba(59,130,246,.35);
  white-space: nowrap;
}
.job-card__title {
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 640;
  letter-spacing: -.015em;
  color: var(--text);
  margin-bottom: 2px;
}
.job-card__company {
  font-size: .8rem;
  color: var(--text-3);
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.job-card__salary {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  background: linear-gradient(140deg, #fff 0%, var(--blue-pale) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.job-card__salary .currency {
  color: var(--text-3);
  font-weight: 500;
  -webkit-text-fill-color: var(--text-3);
}
.job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.job-card__tag {
  font-size: .7rem;
  color: var(--text-2);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}

/* Floating match sticker */
.hero__sticker {
  position: absolute;
  top: -14px;
  right: -12px;
  background: linear-gradient(165deg, var(--blue-vivid) 0%, var(--blue) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  z-index: 3;
  box-shadow:
    0 10px 30px rgba(30,68,119,.5),
    0 0 0 1px rgba(59,130,246,.5) inset,
    0 0 40px rgba(59,130,246,.25);
  transform: rotate(6deg);
  animation: wobble 4s ease-in-out infinite;
  letter-spacing: -.005em;
}
@keyframes wobble {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50%      { transform: rotate(8deg) translateY(-5px); }
}

/* ═══════════════════════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════════════════════ */
.ticker {
  margin: 16px 0 72px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, rgba(59,130,246,.025), transparent);
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.ticker__track {
  display: flex;
  gap: 52px;
  white-space: nowrap;
  animation: ticker 42s linear infinite;
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -.018em;
}
.ticker__item {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.ticker__role { color: var(--text-2); }
.ticker__salary {
  font-family: var(--font-mono);
  font-weight: 600;
  background: linear-gradient(140deg, #fff 15%, var(--blue-pale) 65%, var(--blue-light) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ticker__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-vivid);
  align-self: center;
  box-shadow: 0 0 10px rgba(59,130,246,.6);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   METRICS
   ═══════════════════════════════════════════════════════════════ */
.metrics { padding: 40px 0 112px; }
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.metric {
  position: relative;
  padding: 30px 26px;
  background: linear-gradient(160deg,
    rgba(22,28,42,.78) 0%,
    rgba(14,18,30,.72) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: transform .3s var(--ease-out), border-color .3s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04),
              0 2px 8px rgba(0,0,0,.25);
}
.metric:hover {
  transform: translateY(-4px);
  border-color: var(--line-blue);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05),
              0 8px 28px rgba(30,68,119,.2),
              0 0 40px rgba(59,130,246,.06);
}
.metric::before {
  content: none;
}
.metric--blue::before {
  content: none;
}
.metric__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 780;
  letter-spacing: -.035em;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(140deg, #fff 15%, var(--blue-pale) 55%, var(--blue-light) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
}
.metric__value .unit {
  font-size: .55em;
  font-weight: 500;
  margin-left: 4px;
  -webkit-text-fill-color: var(--text-3);
  color: var(--text-3);
}
.metric__label {
  font-size: .88rem;
  color: var(--text-3);
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION base
   ═══════════════════════════════════════════════════════════════ */
.section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }
.section--alt {
  background:
    radial-gradient(ellipse 1000px 420px at 50% 0%,   rgba(30,68,119,.18), transparent 60%),
    radial-gradient(ellipse  700px 400px at 100% 100%, rgba(59,130,246,.06), transparent 55%),
    linear-gradient(180deg, #0a0d15 0%, #080a0f 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
  padding: 0 8px;
}
.section__eyebrow {
  font-family: var(--font-mono);
  display: inline-block;
  font-size: .76rem;
  color: var(--blue-light);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(59,130,246,.3);
}
.section__eyebrow--blue { color: var(--blue-light); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--text);
}
.section__title .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-pale) 55%, #fff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(59,130,246,.3));
}
.section__title .blue {
  background: linear-gradient(135deg, #fff 0%, var(--blue-light) 55%, var(--blue-vivid) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__sub {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  padding: 32px 26px 28px;
  background: linear-gradient(168deg,
    rgba(22,28,42,.78) 0%,
    rgba(14,18,30,.72) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--line-blue);
}
.step__num {
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--blue-light);
  letter-spacing: .14em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.step__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(165deg,
    rgba(59,130,246,.22) 0%,
    rgba(30,68,119,.35) 100%);
  border: 1px solid rgba(59,130,246,.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 20px;
  box-shadow:
    0 4px 16px rgba(30,68,119,.3),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.step__icon svg { width: 22px; height: 22px; }
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 640;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  color: var(--text);
}
.step p {
  color: var(--text-2);
  font-size: .93rem;
  line-height: 1.58;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  position: relative;
  padding: 30px 28px;
  background: linear-gradient(168deg,
    rgba(22,28,42,.78) 0%,
    rgba(14,18,30,.72) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: var(--line-blue);
}
.feature--wide { grid-column: span 2; }
.feature--accent {
  background: linear-gradient(165deg,
    rgba(30,68,119,.32) 0%,
    rgba(20,50,100,.22) 50%,
    rgba(14,18,30,.72) 100%);
  border-color: rgba(59,130,246,.32);
  box-shadow:
    0 4px 24px rgba(30,68,119,.2),
    0 0 50px rgba(59,130,246,.06),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.feature--accent:hover {
  border-color: rgba(59,130,246,.55);
  box-shadow:
    0 8px 32px rgba(30,68,119,.32),
    0 0 60px rgba(59,130,246,.12),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(165deg,
    rgba(59,130,246,.18) 0%,
    rgba(30,68,119,.28) 100%);
  border: 1px solid rgba(59,130,246,.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 20px;
  box-shadow:
    0 2px 10px rgba(30,68,119,.22),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.feature--accent .feature__icon {
  background: linear-gradient(165deg,
    rgba(59,130,246,.3) 0%,
    rgba(30,68,119,.5) 100%);
  border-color: rgba(59,130,246,.5);
  color: #fff;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 640;
  letter-spacing: -.015em;
  margin-bottom: 8px;
  color: var(--text);
}
.feature p {
  color: var(--text-2);
  font-size: .93rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   JOBS SHOWCASE
   ═══════════════════════════════════════════════════════════════ */
.jobs-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.job {
  position: relative;
  padding: 22px;
  background: linear-gradient(168deg,
    rgba(22,28,42,.82) 0%,
    rgba(14,18,30,.74) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.job:hover {
  transform: translateY(-3px);
  border-color: var(--blue-vivid);
  box-shadow: 0 18px 44px rgba(30,68,119,.25),
              0 0 40px rgba(59,130,246,.08),
              inset 0 1px 0 rgba(255,255,255,.06);
}
.job--hot {
  background: linear-gradient(165deg,
    rgba(59,130,246,.14) 0%,
    rgba(30,68,119,.22) 50%,
    rgba(14,18,30,.72) 100%);
  border-color: rgba(59,130,246,.32);
}
.job--hot:hover {
  border-color: var(--blue-light);
  box-shadow: 0 20px 48px rgba(30,68,119,.35),
              0 0 48px rgba(59,130,246,.14);
}
.job__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.job__logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 780;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: -.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.job__match {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: linear-gradient(165deg,
    rgba(59,130,246,.14) 0%,
    rgba(30,68,119,.22) 100%);
  color: var(--blue-light);
  border: 1px solid rgba(59,130,246,.35);
  text-shadow: 0 0 14px rgba(59,130,246,.35);
  white-space: nowrap;
}
.job__title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 640;
  letter-spacing: -.015em;
  line-height: 1.3;
  color: var(--text);
}
.job__company {
  font-size: .85rem;
  color: var(--text-3);
  margin-top: 2px;
}
.job__salary {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.02em;
  background: linear-gradient(140deg, #fff 15%, var(--blue-pale) 55%, var(--blue-light) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.job__salary .currency {
  color: var(--text-3);
  font-weight: 500;
  -webkit-text-fill-color: var(--text-3);
}
.job__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.job__tag {
  font-size: .74rem;
  color: var(--text-2);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
}
.job__tag--hot {
  background: linear-gradient(165deg,
    rgba(59,130,246,.16) 0%,
    rgba(30,68,119,.24) 100%);
  border-color: rgba(59,130,246,.35);
  color: var(--blue-light);
  font-weight: 600;
}

.jobs-showcase__footer {
  margin-top: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: var(--text-3);
  font-size: .92rem;
  flex-wrap: wrap;
}
.jobs-showcase__footer strong {
  color: var(--blue-light);
  font-family: var(--font-mono);
  text-shadow: 0 0 14px rgba(59,130,246,.35);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  padding: 28px;
  background: linear-gradient(168deg,
    rgba(22,28,42,.78) 0%,
    rgba(14,18,30,.72) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s var(--ease-out), border-color .3s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.testimonial:hover {
  transform: translateY(-3px);
  border-color: var(--line-blue);
}
.testimonial--pop {
  background: linear-gradient(165deg,
    rgba(59,130,246,.32) 0%,
    rgba(30,68,119,.62) 55%,
    rgba(20,50,100,.68) 100%);
  border-color: rgba(59,130,246,.5);
  color: #fff;
  box-shadow:
    0 20px 60px rgba(30,68,119,.4),
    0 0 80px rgba(59,130,246,.15),
    inset 0 1px 0 rgba(255,255,255,.14);
}
.testimonial--pop:hover {
  border-color: rgba(59,130,246,.75);
  box-shadow:
    0 24px 68px rgba(30,68,119,.5),
    0 0 100px rgba(59,130,246,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.testimonial--pop .testimonial__body { color: #fff; }
.testimonial--pop .testimonial__name { color: #fff; }
.testimonial--pop .testimonial__meta { color: rgba(255,255,255,.75); }
.testimonial__body {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -.015em;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--blue-light);
  font-weight: 700;
  opacity: .55;
  filter: drop-shadow(0 0 20px rgba(59,130,246,.4));
}
.testimonial--pop .testimonial__quote { color: rgba(255,255,255,.6); filter: none; }
.testimonial__author {
  margin-top: auto;
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}
.testimonial--pop .testimonial__author { border-color: rgba(255,255,255,.22); }
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-vivid), var(--blue-deep));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -.02em;
  box-shadow: 0 2px 10px rgba(30,68,119,.35),
              inset 0 1px 0 rgba(255,255,255,.2);
}
.testimonial--pop .testimonial__avatar {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.testimonial__name {
  font-weight: 640;
  font-size: .95rem;
  color: var(--text);
  letter-spacing: -.01em;
}
.testimonial__meta {
  font-size: .82rem;
  color: var(--text-3);
  margin-top: 1px;
}
.testimonial__badge {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: .74rem;
  color: var(--blue-light);
  letter-spacing: .04em;
  font-weight: 500;
  text-shadow: 0 0 12px rgba(59,130,246,.3);
}
.testimonial--pop .testimonial__badge {
  color: #fff;
  text-shadow: 0 0 14px rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  background: linear-gradient(168deg,
    rgba(22,28,42,.78) 0%,
    rgba(14,18,30,.72) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--line-blue);
}
.plan--featured {
  background: linear-gradient(165deg,
    rgba(59,130,246,.30) 0%,
    rgba(30,68,119,.62) 55%,
    rgba(20,50,100,.70) 100%);
  border-color: rgba(59,130,246,.5);
  color: #fff;
  box-shadow:
    0 20px 60px rgba(30,68,119,.45),
    0 0 80px rgba(59,130,246,.15),
    inset 0 1px 0 rgba(255,255,255,.14);
}
.plan--featured:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,.8);
  box-shadow:
    0 26px 72px rgba(30,68,119,.55),
    0 0 100px rgba(59,130,246,.25),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.plan__badge {
  position: absolute;
  top: -14px;
  left: 30px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(165deg, var(--blue-vivid) 0%, var(--blue) 100%);
  border-radius: var(--r-pill);
  box-shadow:
    0 6px 22px rgba(30,68,119,.45),
    0 0 28px rgba(59,130,246,.25),
    0 0 0 1px rgba(59,130,246,.4) inset;
}
.plan--featured .plan__badge {
  background: rgba(8,10,15,.82);
  color: var(--blue-light);
  border: 1px solid rgba(59,130,246,.45);
}
.plan__name {
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 14px;
  text-shadow: 0 0 14px rgba(59,130,246,.25);
}
.plan--featured .plan__name {
  color: rgba(255,255,255,.85);
  text-shadow: 0 0 18px rgba(255,255,255,.3);
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.plan__price .amount {
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 720;
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(140deg, #fff 15%, var(--blue-pale) 55%, var(--blue-light) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan--featured .plan__price .amount {
  background: none;
  -webkit-text-fill-color: #fff;
}
.plan__price .currency {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-2);
}
.plan--featured .plan__price .currency { color: rgba(255,255,255,.78); }

.plan__period {
  color: var(--text-3);
  font-size: .92rem;
  margin-bottom: 22px;
}
.plan--featured .plan__period { color: rgba(255,255,255,.75); }
.plan__hint {
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.5;
  margin-bottom: 22px;
  min-height: 44px;
}
.plan--featured .plan__hint { color: rgba(255,255,255,.92); }
.plan ul {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  flex: 1;
}
.plan li {
  color: var(--text-2);
  font-size: .93rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.plan--featured li { color: rgba(255,255,255,.95); }
.plan li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--blue-light);
  margin-top: 2px;
  filter: drop-shadow(0 0 6px rgba(59,130,246,.4));
}
.plan--featured li svg { color: #fff; filter: drop-shadow(0 0 6px rgba(255,255,255,.45)); }
.plan .btn { width: 100%; }

/* Make the featured plan's primary button flip to pale-on-dark for contrast */
.plan--featured .btn--primary {
  background: rgba(8,10,15,.82);
  color: #fff;
  border-color: rgba(59,130,246,.45);
  box-shadow:
    0 8px 24px rgba(0,0,0,.35),
    0 0 0 1px rgba(59,130,246,.35) inset,
    0 0 30px rgba(59,130,246,.12);
}
.plan--featured .btn--primary:hover {
  background: #000;
  border-color: rgba(59,130,246,.7);
  box-shadow:
    0 12px 34px rgba(0,0,0,.5),
    0 0 40px rgba(59,130,246,.25);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.faq details {
  background: linear-gradient(168deg,
    rgba(22,28,42,.72) 0%,
    rgba(14,18,30,.68) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, background .2s;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.faq details:hover { border-color: var(--line-3); }
.faq details[open] {
  border-color: rgba(59,130,246,.35);
  background: linear-gradient(168deg,
    rgba(30,68,119,.22) 0%,
    rgba(14,18,30,.78) 100%);
  box-shadow: 0 8px 28px rgba(30,68,119,.18),
              0 0 40px rgba(59,130,246,.06);
}
.faq summary {
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 640;
  letter-spacing: -.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--blue-light);
  transition: transform .3s var(--ease-spring);
  flex-shrink: 0;
  text-shadow: 0 0 14px rgba(59,130,246,.4);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__body {
  padding: 0 26px 22px;
  color: var(--text-2);
  font-size: .96rem;
  line-height: 1.65;
}
.faq__body a { color: var(--blue-light); border-bottom: 1px solid transparent; transition: border-color .15s; }
.faq__body a:hover { border-bottom-color: var(--blue-light); }

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════════ */
.cta-band-wrap { padding: 40px 0; }
.cta-band {
  position: relative;
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(44px, 7vw, 80px) clamp(22px, 5vw, 48px);
  text-align: center;
  background:
    radial-gradient(ellipse 800px 420px at 50% 0%, rgba(59,130,246,.22), transparent 65%),
    radial-gradient(ellipse 600px 300px at 100% 100%, rgba(30,68,119,.35), transparent 60%),
    linear-gradient(180deg, rgba(22,28,42,.78), rgba(14,18,28,.88));
  border: 1px solid var(--line-3);
  border-radius: var(--r-2xl);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 0 80px rgba(30,68,119,.15),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%; right: -10%;
  height: 200%;
  background: conic-gradient(from 180deg at 50% 50%,
    transparent 0%,
    rgba(59,130,246,.14) 25%,
    transparent 50%,
    rgba(30,68,119,.18) 75%,
    transparent 100%);
  pointer-events: none;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--text);
}
.cta-band h2 .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-pale) 55%, #fff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(59,130,246,.35));
}
.cta-band p {
  color: var(--text-2);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band__note {
  margin-top: 20px;
  color: var(--text-3);
  font-size: .86rem;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: linear-gradient(180deg, #080a0f 0%, #050709 100%);
  position: relative;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 52px;
}
.site-footer__brand .logo { margin-bottom: 16px; }
.site-footer__tagline {
  color: var(--text-3);
  font-size: .92rem;
  line-height: 1.55;
  max-width: 300px;
  margin-bottom: 20px;
}
.site-footer__col h4 {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.site-footer__col ul { display: grid; gap: 10px; }
.site-footer__col a {
  color: var(--text-2);
  font-size: .93rem;
  transition: color .18s;
}
.site-footer__col a:hover { color: var(--blue-light); }
.site-footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .85rem;
}
.site-footer__giant {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: .85;
  margin-bottom: 48px;
  background: linear-gradient(180deg,
    rgba(147,197,253,.12) 0%,
    rgba(59,130,246,.05) 60%,
    rgba(14,18,28,.01) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════════════ */
.legal-page { padding: 136px 0 80px; }
.legal-page__heading { max-width: 980px; margin: 0 auto 32px; }
.legal-page__breadcrumb {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  letter-spacing: .06em;
}
.legal-page__breadcrumb a { color: var(--text-3); transition: color .18s; }
.legal-page__breadcrumb a:hover { color: var(--blue-light); }
.legal-page__breadcrumb span.sep { color: var(--muted-2); }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--text);
}
.legal-page__date { color: var(--text-3); font-size: .9rem; }

.legal-nav {
  max-width: 980px;
  margin: 0 auto 40px;
  padding: 5px;
  display: flex;
  gap: 4px;
  background: var(--glass);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  backdrop-filter: blur(14px);
}
.legal-nav a {
  flex: 1;
  padding: 11px 18px;
  text-align: center;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-pill);
  transition: all .18s;
  white-space: nowrap;
}
.legal-nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.legal-nav a[aria-current='page'] {
  color: #fff;
  background: linear-gradient(165deg, var(--blue-vivid) 0%, var(--blue) 100%);
  font-weight: 600;
  box-shadow:
    0 6px 22px rgba(30,68,119,.45),
    0 0 0 1px rgba(59,130,246,.5) inset;
}

.legal-body {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px) clamp(20px, 5vw, 56px);
  background: linear-gradient(168deg,
    rgba(22,28,42,.76) 0%,
    rgba(14,18,30,.72) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow-wrap: break-word;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.legal-body a { overflow-wrap: anywhere; word-break: break-word; }
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 640;
  letter-spacing: -.015em;
  margin: 40px 0 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-body h2::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-vivid);
  box-shadow: 0 0 12px rgba(59,130,246,.6);
  flex-shrink: 0;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  color: var(--text-2);
  font-size: .98rem;
  line-height: 1.72;
  margin-bottom: 12px;
}
.legal-body ul { padding-left: 22px; list-style: disc; margin-bottom: 18px; }
.legal-body li { padding-left: 4px; }
.legal-body li::marker { color: var(--blue-vivid); }
.legal-body strong { color: var(--text); font-weight: 640; }
.legal-body code {
  font-family: var(--font-mono);
  font-size: .88em;
  padding: 2px 7px;
  background: rgba(59,130,246,.1);
  color: var(--blue-light);
  border-radius: 6px;
  border: 1px solid rgba(59,130,246,.22);
}
.legal-body a {
  color: var(--blue-light);
  border-bottom: 1px solid transparent;
  transition: border-color .18s;
}
.legal-body a:hover { border-bottom-color: var(--blue-light); }

/* ═══════════════════════════════════════════════════════════════
   EXTENSION GUIDE
   ═══════════════════════════════════════════════════════════════ */
.extension-guide {
  --guide-line: rgba(59,130,246,.18);
}
.extension-guide__hero {
  max-width: 1040px;
}
.extension-guide__lead {
  max-width: 860px;
  color: var(--text-2);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.72;
  margin-top: 18px;
}
.extension-guide__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.extension-guide__note {
  max-width: 1040px;
  width: 100%;
  margin-top: 20px;
  padding: 16px 18px;
  color: var(--text-2);
  border: 1px solid rgba(212,255,79,.22);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(212,255,79,.08), rgba(59,130,246,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.extension-guide__toc {
  max-width: 1040px;
  margin: 0 auto 28px;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.extension-guide__toc a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--text-2);
  font-weight: 620;
  border-radius: var(--r-pill);
  transition: all .18s var(--ease-out);
}
.extension-guide__toc a:hover {
  color: var(--text);
  background: rgba(255,255,255,.05);
}
.extension-guide__steps {
  max-width: 1040px;
  margin: 0 auto;
}
.extension-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: center;
  margin-bottom: 26px;
  padding: clamp(18px, 4vw, 30px);
  background: linear-gradient(168deg,
    rgba(22,28,42,.78) 0%,
    rgba(12,16,27,.78) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.extension-step::marker { content: ''; }
.extension-step::before {
  content: '';
  position: absolute;
  top: 30px;
  bottom: -56px;
  left: clamp(28px, 4vw, 42px);
  width: 1px;
  background: linear-gradient(180deg, var(--guide-line), transparent);
  opacity: .8;
}
.extension-step__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.extension-step__num {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  color: var(--blue-pale);
  font-family: var(--font-mono);
  font-size: .95rem;
  font-weight: 700;
  border: 1px solid rgba(59,130,246,.35);
  border-radius: 18px;
  background: rgba(59,130,246,.09);
  box-shadow: 0 0 24px rgba(59,130,246,.10);
}
.extension-step h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.extension-step p {
  color: var(--text-2);
  line-height: 1.72;
  font-size: .98rem;
}
.extension-step a {
  color: var(--blue-light);
  border-bottom: 1px solid transparent;
}
.extension-step a:hover { border-bottom-color: var(--blue-light); }
.extension-step code {
  font-family: var(--font-mono);
  font-size: .88em;
  padding: 2px 7px;
  color: var(--blue-pale);
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.20);
  border-radius: 7px;
}
.extension-shot {
  position: relative;
  z-index: 1;
  padding: clamp(8px, 1.7vw, 12px);
  border-radius: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(145deg, rgba(59,130,246,.16), rgba(255,255,255,.04)) border-box,
    rgba(6,8,16,.56);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 18px 48px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.extension-shot img {
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.24);
  cursor: zoom-in;
  transition: transform .2s var(--ease-out), border-color .2s var(--ease-out);
}
.extension-shot img:hover,
.extension-shot img:focus-visible {
  border-color: rgba(59,130,246,.45);
  transform: translateY(-1px);
  outline: none;
}
.extension-step--final {
  border-color: rgba(212,255,79,.20);
  background: linear-gradient(168deg, rgba(22,32,42,.82), rgba(10,18,28,.82));
}
.extension-guide__help {
  max-width: 1040px;
  margin: 34px auto 0;
  padding: clamp(22px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(135deg, rgba(212,255,79,.08), rgba(59,130,246,.07));
  border: 1px solid rgba(212,255,79,.20);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}
.extension-guide__help h2 {
  margin: 10px 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -.035em;
}
.extension-guide__help p {
  max-width: 720px;
  color: var(--text-2);
  line-height: 1.7;
}
.is-lightbox-open {
  overflow: hidden;
}
.extension-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background:
    radial-gradient(circle at 50% 20%, rgba(59,130,246,.18), transparent 36%),
    rgba(3,6,14,.88);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}
.extension-lightbox.is-open {
  display: grid;
}
.extension-lightbox__frame {
  max-width: min(1180px, 96vw);
  max-height: 88svh;
  padding: clamp(6px, 1.2vw, 12px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: clamp(16px, 3vw, 28px);
  background: linear-gradient(145deg, rgba(20,26,40,.88), rgba(8,10,18,.92));
  box-shadow:
    0 32px 90px rgba(0,0,0,.58),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: auto;
}
.extension-lightbox__frame img {
  width: auto;
  max-width: 100%;
  max-height: calc(88svh - 24px);
  object-fit: contain;
  border-radius: clamp(10px, 2vw, 18px);
  background: rgba(0,0,0,.35);
}
.extension-lightbox__close {
  position: fixed;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  background: rgba(16,20,32,.86);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-card);
  transition: transform .18s var(--ease-out), border-color .18s var(--ease-out);
}
.extension-lightbox__close:hover,
.extension-lightbox__close:focus-visible {
  transform: scale(1.04);
  border-color: rgba(59,130,246,.55);
  outline: none;
}

@media (max-width: 920px) {
  .extension-guide__toc {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--r-xl);
  }
  .extension-step {
    grid-template-columns: 1fr;
  }
  .extension-step::before {
    display: none;
  }
  .extension-guide__help {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .extension-guide__actions,
  .extension-guide__actions .btn,
  .extension-guide__help .btn {
    width: 100%;
  }
  .extension-guide__toc {
    grid-template-columns: 1fr;
    border-radius: var(--r-lg);
  }
  .extension-guide__toc a {
    justify-content: flex-start;
    padding-left: 18px;
  }
  .extension-step {
    padding: 16px;
    border-radius: var(--r-lg);
  }
  .extension-step__num {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }
  .extension-shot {
    margin-left: -4px;
    margin-right: -4px;
    padding: 6px;
  }
  .extension-guide__lead {
    font-size: 1rem;
  }
  .extension-lightbox {
    padding: 12px;
  }
  .extension-lightbox__close {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
  .extension-lightbox__frame {
    max-width: 96vw;
    max-height: 84svh;
  }
  .extension-lightbox__frame img {
    max-height: calc(84svh - 16px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   TWEAKS PANEL
   ═══════════════════════════════════════════════════════════════ */
#tweaks-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  width: 280px;
  padding: 18px;
  background: var(--glass-thick);
  border: 1px solid var(--line-3);
  border-radius: var(--r-lg);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: var(--shadow-lg);
  display: none;
  font-size: .85rem;
}
#tweaks-panel.open { display: block; }
#tweaks-panel h4 {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 14px;
}
#tweaks-panel .tweak-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
#tweaks-panel .tweak-row:last-child { border-bottom: 0; }
#tweaks-panel label {
  color: var(--text-2);
  font-size: .85rem;
}
#tweaks-panel .swatches { display: flex; gap: 6px; }
#tweaks-panel .swatch {
  width: 24px; height: 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s;
}
#tweaks-panel .swatch:hover { transform: scale(1.1); }
#tweaks-panel .swatch.active { border-color: var(--text); }
#tweaks-panel select {
  background: var(--bg-deep);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .85rem;
  padding: 5px 8px;
  border-radius: 6px;
  outline: none;
}
#tweaks-panel .toggle {
  width: 38px; height: 22px;
  background: var(--line-2);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background .2s;
}
#tweaks-panel .toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: var(--text);
  border-radius: 50%;
  transition: transform .2s;
}
#tweaks-panel .toggle.on { background: var(--blue-vivid); box-shadow: 0 0 14px rgba(59,130,246,.4); }
#tweaks-panel .toggle.on::after { transform: translateX(16px); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — breakpoints: 1600, 1200, 1080, 900, 680, 420
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1600px) { .container { max-width: 1320px; } }

@media (max-width: 1200px) {
  .site-nav { gap: 22px; }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: .88rem; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature--wide { grid-column: span 2; }
  .jobs-showcase { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .hero__grid { gap: 44px; }
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .site-header__cta {
    grid-column: 3;
    justify-self: end;
    margin-left: auto;
  }
  .site-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: rgba(10, 12, 20, .96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s, opacity .2s;
    max-height: calc(100vh - 64px);
    max-height: calc(100svh - 64px);
    overflow-y: auto;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .site-nav a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header__cta .btn--ghost { display: none; }

  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { text-align: center; }
  .hero__eyebrow { margin-left: auto; margin-right: auto; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__note { justify-content: center; }
  .hero__demo {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
  .hero__sticker { top: -12px; right: -8px; }

  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__giant { font-size: clamp(3.5rem, 18vw, 9rem); margin-bottom: 40px; }

  .legal-nav { flex-wrap: wrap; }
  .legal-nav a { flex: 1 1 140px; }
}

@media (max-width: 680px) {
  .site-header__inner { height: 60px; }
  .site-header__cta { gap: 6px; justify-self: end; margin-left: auto; }
  .logo { font-size: 1.15rem; }
  .logo__mark { width: 24px; height: 24px; }

  .metrics__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .metric { padding: 22px 18px; }
  .metric__value { font-size: clamp(1.8rem, 7vw, 2.3rem); }

  .steps { grid-template-columns: 1fr; }
  .step { padding: 26px 22px 22px; }
  .features { grid-template-columns: 1fr; }
  .feature--wide { grid-column: auto; }
  .feature { padding: 26px 22px; }

  .jobs-showcase { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .testimonial { padding: 24px 22px; }

  .plan { padding: 28px 22px; }
  .plan__price .amount { font-size: 2.6rem; }
  .plan__badge { left: 22px; }

  .site-footer { padding: 60px 0 32px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }

  .hero__demo { padding: 16px 14px 18px; }
  .job-card { padding: 12px 14px; }
  .job-card__title { font-size: .95rem; }
  .job-card__salary { font-size: 1rem; margin-bottom: 8px; }
  .job-card__tag { font-size: .68rem; }

  .hero__sticker {
    font-size: .76rem;
    padding: 8px 14px;
    top: -12px;
    right: -4px;
  }

  .ticker { margin: 12px 0 52px; padding: 16px 0; }
  .ticker__track { gap: 34px; font-size: 1rem; }
  .ticker::before, .ticker::after { width: 60px; }

  .cta-band { border-radius: var(--r-xl); padding: 40px 22px; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; }

  .faq summary { padding: 18px 20px; font-size: .97rem; }
  .faq__body { padding: 0 20px 20px; font-size: .92rem; }

  .legal-page { padding: 96px 0 60px; }
  .legal-page h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .legal-nav { padding: 4px; gap: 2px; }
  .legal-nav a { padding: 10px 12px; font-size: .85rem; }
  .legal-body h2 { font-size: 1.15rem; margin: 32px 0 14px; }
  .legal-body p, .legal-body li { font-size: .94rem; }
  .legal-body ul { padding-left: 20px; }

  #tweaks-panel {
    width: calc(100% - 24px);
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2rem; }
  .site-header__cta .btn--primary { padding: 8px 12px; font-size: .8rem; }
  .site-header__cta .btn--primary .arrow { display: none; }
  .metric__value { font-size: 1.65rem; }
  .metric__label { font-size: .78rem; }
  .ticker__track { font-size: .92rem; gap: 28px; }
  .job__salary { font-size: 1.2rem; }
  .plan__price .amount { font-size: 2.25rem; }
}

/* Short landscape phones — give hero room */
@media (max-height: 480px) and (orientation: landscape) and (max-width: 900px) {
  .hero { padding: 80px 0 40px; }
  .hero__demo { max-width: 380px; }
  .section { padding: 48px 0; }
}

/* Touch devices — kill hover transforms so they don't feel sticky */
@media (hover: none) {
  .metric:hover,
  .step:hover,
  .feature:hover,
  .job:hover,
  .plan:hover,
  .btn--primary:hover,
  .testimonial:hover { transform: none; }
  .spot::before,
  .spot::after { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
  }
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
}

/* No-motion kill-switch (toggled from Tweaks) */
.no-motion *, .no-motion *::before, .no-motion *::after {
  animation-play-state: paused !important;
}


/* ─── Hero job-card block — 1:1 copy of uploaded reference ─ */
.hero__demo {
  position: relative;
  height: clamp(420px, 50vw, 520px);
}
.hero__demo .job-card {
  position: absolute;
  left: 0; right: 0;
  background: linear-gradient(180deg, var(--glass-2) 0%, var(--glass) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 20px 60px rgba(0,0,0,.4),
    0 2px 8px rgba(0,0,0,.3),
    0 0 0 1px rgba(255,255,255,.02) inset;
  transition: all .5s var(--ease-out);
}
.hero__demo .job-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.hero__demo .job-card__logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.hero__demo .job-card__match {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  color: #D4FF4F;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  background: rgba(212,255,79,.10);
  border: 1px solid rgba(212,255,79,.3);
  text-shadow: none;
  box-shadow: none;
}
.hero__demo .job-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.015em;
  margin-bottom: 2px;
  color: var(--text);
}
.hero__demo .job-card__company {
  font-size: .88rem;
  color: var(--text-3);
  margin-bottom: 14px;
  overflow: visible;
  white-space: normal;
}
.hero__demo .job-card__salary {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 14px;
  background: none;
  -webkit-background-clip: border-box;
          background-clip: border-box;
  -webkit-text-fill-color: var(--text);
}
.hero__demo .job-card__salary .currency {
  color: var(--text-3);
  font-weight: 500;
  -webkit-text-fill-color: var(--text-3);
}
.hero__demo .job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hero__demo .job-card__tag {
  font-size: .75rem;
  color: var(--text-2);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
}
.hero__demo .job-card--1 { top: 0;   z-index: 3; transform: rotate(-3deg)   translateX(-10px); }
.hero__demo .job-card--2 { top: 160px; z-index: 2; transform: rotate(2deg)    translateX(15px); }
.hero__demo .job-card--3 { top: 320px; z-index: 1; transform: rotate(-1.5deg) translateX(-5px); }
.hero__demo:hover .job-card--1 { transform: rotate(-5deg) translateX(-20px); }
.hero__demo:hover .job-card--2 { transform: rotate(4deg)  translateX(25px); }
.hero__demo:hover .job-card--3 { transform: rotate(-3deg) translateX(-15px); }
.hero__sticker {
  position: absolute;
  top: 40%;
  right: -30px;
  background: #D4FF4F;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  z-index: 10;
  box-shadow:
    0 10px 30px rgba(212,255,79,.4),
    0 0 0 4px rgba(212,255,79,.15);
  transform: rotate(6deg);
  animation: wobble 4s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50%      { transform: rotate(8deg) translateY(-5px); }
}
@media (max-width: 768px) {
  .hero__demo:hover .job-card--1 { transform: rotate(-3deg)  translateX(-10px); }
  .hero__demo:hover .job-card--2 { transform: rotate(2deg)   translateX(15px); }
  .hero__demo:hover .job-card--3 { transform: rotate(-1.5deg) translateX(-5px); }
}

/* Kill outer frame/glow on the hero demo container — keep only the cards */
.hero__demo::before,
.hero__demo::after { display: none !important; }

/* ── Mobile hero polish ───────────────────────────────────────
   Desktop keeps its composition. These rules only stabilize the
   narrow layout: keep the "скроллить hh.ru" strike on one line,
   move header actions slightly right, and stop the floating sticker
   from jittering in mobile browser viewports. */
@media (max-width: 680px) {
  .site-header__inner {
    grid-template-columns: minmax(0, auto) 1fr auto;
    gap: 8px;
  }
  .site-header__cta {
    justify-self: end;
    margin-left: auto;
    transform: translateX(8px);
  }
  .site-header__cta .btn--primary {
    padding-left: 18px;
    padding-right: 14px;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
  }
  .hero h1 {
    font-size: clamp(2.15rem, 10.4vw, 3.25rem);
  }
  .hero h1 .strike {
    display: inline-block;
    white-space: nowrap;
  }
  .hero h1 .strike::before {
    left: 0;
    right: 0;
    top: 55%;
    transform: rotate(-3deg);
  }
  .hero__sticker {
    animation: none !important;
    transform: rotate(6deg) translateZ(0) !important;
    will-change: auto;
  }
}

@media (max-width: 380px) {
  .site-header__cta { transform: translateX(4px); }
  .site-header__cta .btn--primary {
    padding-left: 14px;
    padding-right: 12px;
  }
  .nav-toggle {
    width: 40px;
    height: 40px;
  }
  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER (152-FZ disclosure of champly_sid cookie).
   Styles use the redesign palette but the structural class names
   (.cookie-banner, .cookie-banner__inner, .cookie-banner__text,
   .cookie-banner__btn, .is-visible) are FROZEN — cookie-consent.js
   builds the DOM with these exact names and double-injection guard
   keys off the BANNER_ID. Do not rename without updating the JS.
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: var(--glass-thick);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-banner__text {
  margin: 0;
  flex: 1 1 320px;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--text-2);
}
.cookie-banner__text a {
  color: var(--blue-light);
  text-decoration: underline;
}
.cookie-banner__btn {
  flex: 0 0 auto;
  background: linear-gradient(165deg, var(--blue-vivid) 0%, var(--blue) 100%);
  color: #fff;
  border: 0;
  border-radius: var(--r-sm);
  padding: 9px 18px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: transform .18s, box-shadow .18s;
}
.cookie-banner__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(30,68,119,.5);
}
.cookie-banner__btn:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}
@media (max-width: 680px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 12px 14px; }
  .cookie-banner__inner { gap: 10px; }
  .cookie-banner__text { font-size: .85rem; flex: 1 1 100%; }
  .cookie-banner__btn { width: 100%; }
}
