/* ================================================================
   ORNEXI CV · LANDING PAGE STYLES
   Design: "The 6-Second Scan" — recruiter-gaze heatmap
   Mobile-first · RTL-first · No build step · No Tailwind
   CSS custom properties for every token
   ================================================================ */

/* ── 0. Self-hosted fonts (no Google hotlink — Amendment 13) ──── */
@font-face {
  font-family: 'Suez One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/SuezOne-hebrew.woff2') format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
@font-face {
  font-family: 'Suez One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/SuezOne-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Assistant';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/fonts/Assistant-var-hebrew.woff2') format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
@font-face {
  font-family: 'Assistant';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/fonts/Assistant-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/IBMPlexMono-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/IBMPlexMono-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── 1. Design Tokens ─────────────────────────────────────────── */
:root {
  /* Heatmap ramp — cool = ignored → hot = peak attention */
  --ink:      #12172B;  /* text, structure, dark sections */
  --paper:    #F4F4EF;  /* page background, the "sheet" */
  --scan:     #0EA5A0;  /* teal — cool end, scan line, ATS "system" */
  --warm:     #F59E3C;  /* amber — attention building */
  --hot:      #EF5B4C;  /* coral — peak attention, key highlights */
  --graphite: #6B7280;  /* secondary text */
  --white:    #FFFFFF;

  /* Surfaces (aliases derive from the ramp) */
  --c-hero:         var(--ink);
  --c-hero-card:    #1B2140;
  --c-bg:           var(--paper);
  --c-surface:      var(--white);
  --c-border:       #DEDED6;

  /* Text */
  --c-text:         var(--ink);
  --c-text-2:       #565D6B;
  --c-text-3:       var(--graphite);
  --c-text-hero:    var(--paper);
  --c-text-hero-2:  #A9AEBC;

  /* Accent — CTA colour (hot coral; ink text for AA contrast) */
  --c-accent:       var(--hot);
  --c-accent-h:     #F2705F;
  --c-accent-soft:  #FCE4E0;
  --c-accent-text:  #9E2F23;

  /* Semantic */
  --c-success:      #059669;
  --c-error:        #DC2626;

  /* Typography */
  --font:           'Assistant', 'Heebo', system-ui, sans-serif;
  --font-display:   'Suez One', 'Assistant', serif;
  --font-mono:      'IBM Plex Mono', 'Assistant', monospace;
  --fs-xs:          0.75rem;
  --fs-sm:          0.875rem;
  --fs-base:        1.0625rem;
  --fs-lg:          1.125rem;
  --fs-xl:          1.25rem;
  --fs-2xl:         1.5rem;
  --fs-3xl:         1.875rem;
  --fs-4xl:         2.25rem;
  --fs-hero:        clamp(2.1rem, 5.5vw, 3.6rem);
  --lh:             1.65;
  --lh-tight:       1.2;
  --fw-r: 400; --fw-m: 500; --fw-sb: 600; --fw-b: 700; --fw-xb: 800;

  /* Spacing */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;
  --sp-4: 1rem;    --sp-5: 1.25rem; --sp-6: 1.5rem;
  --sp-8: 2rem;    --sp-10: 2.5rem; --sp-12: 3rem;
  --sp-16: 4rem;   --sp-20: 5rem;
  --sp-section: clamp(3.5rem, 7vw, 6rem);

  /* Layout */
  --container:  1100px;
  --r-sm:  6px; --r-md: 12px; --r-lg: 20px; --r-full: 9999px;

  /* Shadows */
  --sh-sm:    0 1px 4px rgba(0,0,0,.06);
  --sh-md:    0 4px 24px rgba(0,0,0,.10);
  --sh-lg:    0 12px 48px rgba(0,0,0,.14);
  --sh-float: 0 28px 72px rgba(0,0,0,.45);

  /* Motion */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --t-fast: 150ms; --t-base: 250ms; --t-slow: 400ms;
}

/* ── 2. Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: var(--lh);
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; color: inherit; background: none; border: none; }
input, select, textarea { font: inherit; }

/* ── 3. Accessibility ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  inset-block-start: -200%;
  inset-inline-start: var(--sp-4);
  background: var(--c-accent);
  color: #fff;
  padding: var(--sp-3) var(--sp-6);
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: var(--fw-b);
  z-index: 9999;
  transition: inset-block-start var(--t-base) var(--ease);
}
.skip-link:focus { inset-block-start: 0; }

:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── 4. Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.section            { padding-block: var(--sp-section); }
.section--alt       { background: var(--c-surface); }
.section--center    { text-align: center; }

/* ── 5. Typography Components ─────────────────────────────────── */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-accent-soft);
  color: var(--c-accent-text);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-m);
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-block-end: var(--sp-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 400; /* Suez One is single-weight */
  line-height: var(--lh-tight);
  color: var(--c-text);
  margin-block-end: var(--sp-4);
}
.section-sub {
  font-size: var(--fs-lg);
  color: var(--c-text-2);
  max-width: 54ch;
  margin-block-end: var(--sp-10);
}

/* ── 6. Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: .875rem var(--sp-8);
  border-radius: var(--r-full);
  font-size: var(--fs-base);
  font-weight: var(--fw-b);
  line-height: 1;
  white-space: nowrap;
  transition:
    background var(--t-base) var(--ease),
    box-shadow  var(--t-base) var(--ease),
    transform   var(--t-fast) var(--ease);
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--c-accent);
  color: var(--ink); /* AA: ink on coral 5.3:1 (white fails at 3.35:1) */
  box-shadow: 0 4px 20px rgba(239,91,76,.32);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--c-accent-h);
  box-shadow: 0 6px 28px rgba(239,91,76,.44);
}
.btn-outline {
  border: 2px solid var(--c-border);
  color: var(--c-text);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--fs-lg);
}
.btn-full { width: 100%; }

/* ── 7. Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--sp-5);
  padding-block: var(--sp-4);
  transition:
    background    var(--t-slow) var(--ease),
    box-shadow    var(--t-slow) var(--ease),
    backdrop-filter var(--t-slow) var(--ease);
}
.nav.scrolled {
  background: rgba(15,23,42,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.07);
}
.nav__logo {
  font-size: var(--fs-xl);
  font-weight: var(--fw-xb);
  color: var(--c-text-hero);
  letter-spacing: -.02em;
}
.nav__logo span { color: var(--c-accent); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.nav__lang-btn {
  font-size: var(--fs-sm);
  font-weight: var(--fw-sb);
  color: var(--c-text-hero-2);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.12);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.nav__lang-btn:hover { color: var(--c-text-hero); border-color: rgba(255,255,255,.3); }
.nav__cta { font-size: var(--fs-sm); padding: .55rem var(--sp-5); }

/* ── 8. Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--c-hero);
  min-height: 100svh;
  padding-block-start: 76px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(14,165,160,.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 90%,  rgba(239,91,76,.06)  0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-12);
  padding-block: var(--sp-16) var(--sp-12);
  position: relative;
}

/* Eyebrow chip — mono, "system" teal */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(14,165,160,.12);
  color: #7DD6D2;
  border: 1px solid rgba(14,165,160,.35);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  font-weight: var(--fw-m);
  margin-block-end: var(--sp-5);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 400; /* Suez One ships one weight; avoid faux-bold */
  line-height: 1.15;
  color: var(--c-text-hero);
  letter-spacing: 0;
  margin-block-end: var(--sp-6);
}
.hero__title em {
  font-style: normal;
  color: var(--hot);
}

.hero__sub {
  font-size: var(--fs-lg);
  color: var(--c-text-hero-2);
  line-height: 1.7;
  margin-block-end: var(--sp-8);
  max-width: 50ch;
  margin-inline: auto;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

/* Primary + ghost CTA row */
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}
.hero .hero__btn-ghost {
  border-color: rgba(244,244,239,.3);
  color: var(--paper);
}
.hero .hero__btn-ghost:hover, .hero .hero__btn-ghost:focus-visible {
  border-color: var(--scan);
  color: #7DD6D2;
}

/* Trust micro-copy below CTA — mono */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2) var(--sp-5);
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--c-text-hero-2);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.hero__trust-item::before {
  content: '✓';
  color: var(--scan);
  font-weight: var(--fw-b);
  font-size: .8rem;
}

/* ── CV sheet + recruiter-gaze heatmap (decorative) ───────────── */
.hero__visual {
  width: 100%;
  max-width: 380px;
}
.stage { position: relative; }
.sheet {
  position: relative;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-float);
  aspect-ratio: 380 / 500;
  padding: 30px 26px;
  overflow: hidden;
  text-align: start;
  line-height: 1.4;
}
.sheet .r-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
  position: relative; z-index: 2;
}
.sheet .r-role { font-size: .8rem; color: var(--graphite); margin-block-start: 2px; position: relative; z-index: 2; }
.sheet .r-divider { height: 2px; background: var(--ink); opacity: .85; margin-block: 16px 4px; }
.sheet .r-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-block: 14px 8px;
}
.sheet .r-line { height: 9px; border-radius: 5px; background: #E9E9E2; }
.sheet .w95 { width: 95%; }
.sheet .w70 { width: 70%; margin-block-start: 10px; }
.sheet .r-metric { font-size: .84rem; color: #3A4152; margin-block: 12px 2px; position: relative; z-index: 2; }
.sheet .r-metric b { color: var(--hot); font-weight: var(--fw-xb); font-size: 1rem; }
.sheet .chips { display: flex; flex-wrap: wrap; gap: 6px; margin-block-start: 4px; position: relative; z-index: 2; }
.sheet .chip {
  background: rgba(14,165,160,.12);
  border: 1px solid rgba(14,165,160,.35);
  color: #0A6E6A;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: .68rem;
  font-weight: var(--fw-sb);
}

/* Heat-blooms — ignite name (coral) → metric (amber) → skills (teal).
   inset-inline-* flips anchors automatically with the sheet's dir. */
.bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}
.bloom.b1 { width: 150px; height: 80px; top: 20px;    inset-inline-start: 14px; background: radial-gradient(closest-side, rgba(239,91,76,.55), transparent); animation: bloom 7s ease-in-out infinite .8s; }
.bloom.b2 { width: 150px; height: 70px; top: 200px;   inset-inline-start: 18px; background: radial-gradient(closest-side, rgba(245,158,60,.55), transparent); animation: bloom 7s ease-in-out infinite 2.4s; }
.bloom.b3 { width: 190px; height: 66px; bottom: 60px; inset-inline-start: 18px; background: radial-gradient(closest-side, rgba(14,165,160,.5),  transparent); animation: bloom 7s ease-in-out infinite 3.9s; }
@keyframes bloom {
  0%, 6%    { opacity: 0; transform: scale(.6); }
  16%, 86%  { opacity: 1; transform: scale(1); }
  100%      { opacity: 1; }
}

/* Gaze path — dotted trace + landing dots */
.gaze {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.gaze path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1 5;
  opacity: .5;
  stroke-dashoffset: 520;
  animation: trace 7s ease-in-out infinite;
}
@keyframes trace {
  0%         { stroke-dashoffset: 520; }
  72%, 100%  { stroke-dashoffset: 0; }
}
.gaze circle { opacity: 0; animation: dotin 7s ease-in-out infinite; }
.gaze .d1 { fill: var(--hot);  animation-delay: .8s; }
.gaze .d2 { fill: var(--warm); animation-delay: 2.4s; }
.gaze .d3 { fill: var(--scan); animation-delay: 3.9s; }
@keyframes dotin {
  0%, 6%    { opacity: 0; }
  14%, 86%  { opacity: .9; }
  100%      { opacity: .9; }
}

/* Traveling eye icon — rides the gaze path (per-sheet offset-path is inline
   in the markup, since HE/EN paths differ). Hidden where offset-path is
   unsupported: the dotted trace + fixation dots still tell the story. */
.gaze .gaze-eye { visibility: hidden; }
@supports (offset-path: path("M0 0 L1 1")) {
  .gaze .gaze-eye {
    visibility: visible;
    stroke: var(--hot);
    stroke-width: 2;
    stroke-linecap: round;
    offset-rotate: 0deg;
    animation: eye-travel 7s ease-in-out infinite;
  }
  .gaze .gaze-eye .eye-lid   { fill: var(--white); }
  .gaze .gaze-eye .eye-pupil { fill: var(--ink); stroke: none; }
  .gaze .gaze-eye .eye-blink {
    transform-box: fill-box;
    transform-origin: center;
    animation: eye-blink 7s ease-in-out infinite;
  }
}
/* Travel window matches the trace draw (0–72%), then rests on the last
   fixation and fades before the cycle restarts. */
@keyframes eye-travel {
  0%        { offset-distance: 0%; opacity: 0; }
  4%        { opacity: 1; }
  72%       { offset-distance: 100%; }
  84%       { opacity: 1; }
  94%, 100% { offset-distance: 100%; opacity: 0; }
}
/* Quick blink as the eye lands on each fixation (name → metric → skills) */
@keyframes eye-blink {
  0%, 100%  { transform: scaleY(1); }
  2%        { transform: scaleY(.12); }
  4.5%      { transform: scaleY(1); }
  34.5%     { transform: scaleY(1); }
  36.5%     { transform: scaleY(.12); }
  39%       { transform: scaleY(1); }
  70.5%     { transform: scaleY(1); }
  72.5%     { transform: scaleY(.12); }
  75%       { transform: scaleY(1); }
}

/* 6-second scan chip — mono timer + sweeping ring */
.scanchip {
  position: absolute;
  bottom: 14px;
  inset-inline-end: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-full);
  padding: 7px 14px 7px 10px;
  box-shadow: 0 6px 18px rgba(18,23,43,.35);
}
.scanchip .ring { width: 30px; height: 30px; transform: rotate(-90deg); flex-shrink: 0; }
.scanchip .ring circle { fill: none; stroke-width: 2.5; }
.scanchip .ring .track { stroke: rgba(244,244,239,.22); }
.scanchip .ring .prog {
  stroke: var(--hot);
  stroke-dasharray: 50.27;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: sweep 7s linear infinite;
}
@keyframes sweep {
  0%        { stroke-dashoffset: 0; }
  86%, 100% { stroke-dashoffset: 50.27; }
}
.scanchip .t {
  font-family: var(--font-mono);
  font-size: .95rem;
  font-weight: var(--fw-m);
  line-height: 1.1;
  direction: ltr;
}
.scanchip .lbl {
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .18em;
  color: var(--c-text-hero-2);
}

/* ── 9. Social Proof Bar ──────────────────────────────────────── */
.proof-bar {
  background: var(--c-surface);
  border-block: 1px solid var(--c-border);
  padding-block: var(--sp-5);
}
.proof-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5) var(--sp-8);
}
.proof-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.proof-item__icon {
  width: 28px;
  height: 28px;
  color: var(--scan);
  flex-shrink: 0;
}
.proof-item__icon svg { width: 100%; height: 100%; }
.proof-item__label {
  font-size: var(--fs-sm);
  color: var(--c-text-2);
  line-height: 1.35;
}
.proof-divider {
  width: 1px;
  height: 34px;
  background: var(--c-border);
  display: none;
}

/* ── 10. How It Works ─────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
.step {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  transition:
    box-shadow    var(--t-base) var(--ease),
    border-color  var(--t-base) var(--ease),
    transform     var(--t-base) var(--ease);
}
.step:hover {
  box-shadow: var(--sh-md);
  border-color: rgba(239,91,76,.5);
  transform: translateY(-3px);
}
.step__num {
  position: absolute;
  inset-block-start: var(--sp-4);
  inset-inline-end: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: var(--fw-m);
  color: rgba(239,91,76,.28);
  line-height: 1;
  user-select: none;
}
.step__icon {
  width: 56px; height: 56px;
  background: var(--c-accent-soft);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-block-end: var(--sp-4);
}
.step__icon svg { width: 26px; height: 26px; color: var(--c-accent); }
.step__title { font-size: var(--fs-xl); font-weight: var(--fw-b); margin-block-end: var(--sp-2); }
.step__desc  { color: var(--c-text-2); font-size: var(--fs-base); }
.step__time  {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  margin-block-start: var(--sp-3);
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: var(--fw-m);
  color: var(--c-accent-text);
}

/* ── 11. Before / After — two heatmaps on ink ─────────────────── */
.ba-dark { background: var(--ink); }
.ba-dark .section-title { color: var(--c-text-hero); }
.ba-dark .section-sub   { color: var(--c-text-hero-2); }

.ba-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-block-start: var(--sp-10);
}
.ba-map {
  margin: 0;
  background: var(--c-hero-card);
  border: 1px solid rgba(244,244,239,.08);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: center;
}
.ba-map__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-block-end: var(--sp-5);
}
.ba-map--cold .ba-map__badge { color: #7DD6D2; border: 1px solid rgba(14,165,160,.4); }
.ba-map--hot  .ba-map__badge { color: #F8A79D; border: 1px solid rgba(239,91,76,.45); }

.minisheet {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  aspect-ratio: 200 / 260;
  max-width: 280px;
  margin-inline: auto;
  padding: 8.5% 8%;
  overflow: hidden;
  margin-block-end: var(--sp-5);
  text-align: start;
}
.ms-name  { width: 45%; height: 14px; border-radius: 4px; background: var(--ink); opacity: .85; }
.ms-line  { height: 8px; border-radius: 4px; background: #E9E9E2; margin-block-start: 7%; }
.ms-line.w90 { width: 90%; } .ms-line.w75 { width: 75%; }
.ms-line.w85 { width: 85%; } .ms-line.w60 { width: 60%; }
.ms-chips { display: flex; gap: 5px; margin-block-start: 8%; }
.ms-chip  { width: 17%; height: 10px; border-radius: 5px; background: rgba(14,165,160,.25); }

/* Cold: scattered teal blooms that fade — attention leaks away */
.ba-map--cold .bloom { background: radial-gradient(closest-side, rgba(14,165,160,.42), transparent); }
.ba-map--cold .bc1 { width: 34%; height: 17%; top: 36%; inset-inline-end: 6%;    animation: bloomcool 7s ease-in-out infinite .9s; }
.ba-map--cold .bc2 { width: 30%; height: 15%; top: 58%; inset-inline-start: 32%; animation: bloomcool 7s ease-in-out infinite 2.6s; }
.ba-map--cold .bc3 { width: 42%; height: 15%; bottom: -6%; inset-inline-start: 8%; animation: bloomcool 7s ease-in-out infinite 4.2s; }
@keyframes bloomcool {
  0%, 8%     { opacity: 0; transform: scale(.6); }
  18%        { opacity: .95; transform: scale(1); }
  60%, 100%  { opacity: .3; }
}

/* Hot: warm blooms locked on name → metric → skills */
.ba-map--hot .bh1 { width: 48%; height: 16%; top: 4%;    inset-inline-start: 3%; background: radial-gradient(closest-side, rgba(239,91,76,.55), transparent); animation: bloom 7s ease-in-out infinite .8s; }
.ba-map--hot .bh2 { width: 52%; height: 15%; top: 42%;   inset-inline-start: 5%; background: radial-gradient(closest-side, rgba(245,158,60,.55), transparent); animation: bloom 7s ease-in-out infinite 2.4s; }
.ba-map--hot .bh3 { width: 56%; height: 14%; bottom: 5%; inset-inline-start: 5%; background: radial-gradient(closest-side, rgba(14,165,160,.5),  transparent); animation: bloom 7s ease-in-out infinite 3.9s; }

/* Mirror the gaze paths when the page flips to LTR */
html[dir="ltr"] .minisheet .gaze { transform: scaleX(-1); }

.ba-map__caption {
  font-size: var(--fs-base);
  color: #DBDEE8;
  line-height: 1.5;
}

/* ── 11b. ATS keyword scan — machine-reading strip ────────────── */
.ats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.ats-doc {
  font-family: var(--font-mono);
  font-size: .82rem;
  line-height: 2.1;
  background: var(--white);
  border: 1px solid rgba(18,23,43,.1);
  border-radius: 10px;
  padding: 22px;
  color: var(--graphite);
  text-align: start;
}
.ats-doc .tok { opacity: .55; }
.ats-doc mark.ok {
  background: rgba(14,165,160,.14);
  color: var(--ink);
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid rgba(14,165,160,.4);
  opacity: 0;
  animation: tokin .5s ease forwards;
}
.ats-doc mark.ok:nth-of-type(1) { animation-delay: .2s; }
.ats-doc mark.ok:nth-of-type(2) { animation-delay: .6s; }
.ats-doc mark.ok:nth-of-type(3) { animation-delay: 1s; }
.ats-doc mark.ok:nth-of-type(4) { animation-delay: 1.4s; }
@keyframes tokin {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}
.ats-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: 10px;
  padding: 24px;
  text-align: start;
}
.ats-score {
  font-family: var(--font-mono);
  font-size: 1rem;
  margin-block-end: var(--sp-4);
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}
.ats-score b { color: var(--hot); font-size: 1.5rem; }
.ats-keys {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ats-keys li {
  font-family: var(--font-mono);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #DBDEE8;
}
.ats-keys li.ok::before   { content: "✓"; color: var(--scan); font-weight: var(--fw-b); }
.ats-keys li.miss         { color: #808697; }
.ats-keys li.miss::before { content: "+"; color: var(--warm); font-weight: var(--fw-b); }
.ats-foot {
  margin-block-start: var(--sp-4);
  font-size: .85rem;
  color: #A9AEBC;
  line-height: 1.5;
}
@media (min-width: 640px) {
  .ats-grid { grid-template-columns: 1.1fr .9fr; gap: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .ats-doc mark.ok { animation: none; opacity: 1; transform: none; }
}

/* ── 12. Templates ────────────────────────────────────────────── */
.templates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-block-start: var(--sp-10);
}
.tpl-card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color var(--t-base) var(--ease),
    box-shadow   var(--t-base) var(--ease),
    transform    var(--t-base) var(--ease);
}
.tpl-card:hover, .tpl-card:focus-visible {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px var(--c-accent-soft), var(--sh-md);
  transform: translateY(-3px);
  outline: none;
}
.tpl-preview {
  padding: var(--sp-5);
  min-height: 160px;
  position: relative;
  overflow: hidden;
}
/* small hotspot accent — echoes the heatmap concept on each template chip */
.tpl-preview::after {
  content: '';
  position: absolute;
  width: 52px;
  height: 28px;
  top: 10px;
  inset-inline-start: 12px;
  border-radius: 50%;
  filter: blur(2px);
  background: radial-gradient(closest-side, rgba(239,91,76,.24), transparent);
  pointer-events: none;
}
.tpl-preview--classic   { background: #fff; border-block-end: 3px solid var(--c-accent); }
.tpl-preview--modern    { background: var(--c-hero); }
.tpl-preview--compact   { background: #F8F9FF; border-inline-start: 4px solid var(--c-accent); }
.tpl-preview--executive { background: #fff; border-block-end: 3px double #A5803B; }
.tpl-preview--creative  { background: linear-gradient(90deg, #6D28D9 34%, #fff 34%); }
.tpl-preview--minimal   { background: #fff; }
.tpl-preview--timeline  { background: #fff; border-inline-start: 3px solid #2563EB; }

.tpl-line {
  height: 8px;
  border-radius: var(--r-full);
  margin-block-end: var(--sp-2);
}
.tpl-preview--classic   .tpl-line { background: var(--c-border); }
.tpl-preview--modern    .tpl-line { background: rgba(255,255,255,.2); }
.tpl-preview--compact   .tpl-line { background: #DDE1FF; }
.tpl-preview--executive .tpl-line { background: #E5D9BC; }
.tpl-preview--creative  .tpl-line { background: var(--c-border); }
.tpl-preview--minimal   .tpl-line { background: #E5E7EB; }
.tpl-preview--timeline  .tpl-line { background: #DBEAFE; }

.tpl-line--title   { height: 13px; width: 58%; margin-block-end: var(--sp-3); }
.tpl-preview--classic   .tpl-line--title { background: var(--c-text); opacity:.8; }
.tpl-preview--modern    .tpl-line--title { background: #fff; }
.tpl-preview--compact   .tpl-line--title { background: #3B4CE8; opacity:.7; }
.tpl-preview--executive .tpl-line--title { background: #262626; opacity:.85; margin-inline: auto; }
.tpl-preview--creative  .tpl-line--title { background: #6D28D9; opacity:.85; }
.tpl-preview--minimal   .tpl-line--title { background: #111; opacity:.7; width: 44%; }
.tpl-preview--timeline  .tpl-line--title { background: #2563EB; opacity:.8; }

.tpl-line--accent { height: 4px; width: 40%; margin-block-end: var(--sp-3); }
.tpl-preview--classic   .tpl-line--accent { background: var(--c-accent); opacity:.7; }
.tpl-preview--modern    .tpl-line--accent { background: var(--c-accent); opacity:.8; }
.tpl-preview--compact   .tpl-line--accent { background: #3B4CE8; opacity:.5; }
.tpl-preview--executive .tpl-line--accent { background: #A5803B; opacity:.7; margin-inline: auto; }
.tpl-preview--creative  .tpl-line--accent { background: #A78BFA; opacity:.8; }
.tpl-preview--minimal   .tpl-line--accent { background: #9CA3AF; opacity:.6; width: 30%; }
.tpl-preview--timeline  .tpl-line--accent { background: #93C5FD; opacity:.8; }

.tpl-line--short   { width: 45%; }
.tpl-line--shorter { width: 62%; }

.tpl-card__info {
  padding: var(--sp-4) var(--sp-5);
  border-block-start: 1px solid var(--c-border);
}
.tpl-card__name { font-size: var(--fs-base); font-weight: var(--fw-b); margin-block-end: var(--sp-1); }
.tpl-card__desc { font-size: var(--fs-sm); color: var(--c-text-2); }

/* ── 13. Pricing ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  max-width: 680px;
  margin-inline: auto;
  margin-block-start: var(--sp-10);
}
.price-card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
}
.price-card--featured {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px var(--c-accent-soft), var(--sh-md);
}
.price-card__badge {
  position: absolute;
  inset-block-start: -14px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: var(--ink); /* AA on coral */
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-b);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-full);
  white-space: nowrap;
}
.price-card__tier {
  font-size: var(--fs-sm);
  font-weight: var(--fw-sb);
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--c-text-2);
  margin-block-end: var(--sp-3);
}
.price-card__price {
  font-family: var(--font-mono);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-b);
  color: var(--c-text);
  line-height: 1;
  margin-block-end: var(--sp-2);
}
.price-card__price span {
  font-size: var(--fs-lg);
  font-weight: var(--fw-sb);
  color: var(--c-text-2);
}
.price-card__vat {
  font-size: var(--fs-xs);
  color: var(--c-text-3);
  margin-block-end: var(--sp-6);
  min-height: 1.2em;
}
.price-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-block-end: var(--sp-6);
}
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-text);
}
.price-feature__check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  font-weight: var(--fw-xb);
  font-size: .7rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-block-start: 1px;
}

/* ── 14. FAQ ──────────────────────────────────────────────────── */
.faq-list {
  max-width: 700px;
  margin-inline: auto;
  margin-block-start: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease);
}
.faq-item.open { border-color: var(--c-accent); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: start;
  font-size: var(--fs-base);
  font-weight: var(--fw-sb);
  color: var(--c-text);
  transition: color var(--t-fast) var(--ease);
}
.faq-q:hover { color: var(--c-accent); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  transition:
    transform      var(--t-base) var(--ease),
    border-color   var(--t-base) var(--ease),
    background     var(--t-base) var(--ease),
    color          var(--t-base) var(--ease);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: #fff;
}
.faq-a {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-base);
  color: var(--c-text-2);
  line-height: var(--lh);
}

/* ── 15. Final CTA ────────────────────────────────────────────── */
.cta-final {
  background: var(--c-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(239,91,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final .section-title { color: var(--c-text-hero); }
.cta-final .section-sub   { color: var(--c-text-hero-2); margin-inline: auto; }

/* ── 16. Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--c-hero);
  border-block-start: 1px solid rgba(255,255,255,.07);
  padding-block: var(--sp-8);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  text-align: center;
}
.footer__logo      { font-size: var(--fs-lg); font-weight: var(--fw-xb); color: var(--c-text-hero); }
.footer__logo span { color: var(--c-accent); }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-6);
  align-items: center;
}
.footer__links a {
  font-size: var(--fs-sm);
  color: var(--c-text-hero-2);
  transition: color var(--t-fast) var(--ease);
}
.footer__links a:hover { color: var(--c-text-hero); }

.footer__lang-btn {
  font-size: var(--fs-sm);
  font-weight: var(--fw-sb);
  color: var(--c-accent);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid rgba(239,91,76,.4);
  border-radius: var(--r-full);
  transition: background var(--t-base) var(--ease);
}
.footer__lang-btn:hover { background: rgba(239,91,76,.12); }

.footer__copy { font-size: var(--fs-xs); color: var(--c-text-hero-2); }

.footer__madeby { font-size: var(--fs-xs); color: var(--c-text-hero-2); margin-top: 6px; }
.footer__madeby a { color: var(--c-accent); text-decoration: none; font-weight: 600; }
.footer__madeby a:hover { text-decoration: underline; }

/* ── 17. Sticky CTA Bar (mobile) ──────────────────────────────── */
.sticky-bar {
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  background: rgba(15,23,42,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-block-start: 1px solid rgba(255,255,255,.09);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  z-index: 90;
  transform: translateY(0);
  transition: transform var(--t-slow) var(--ease);
}
.sticky-bar.hidden { transform: translateY(110%); }
.sticky-bar__text  { font-size: var(--fs-sm); color: var(--c-text-hero-2); font-weight: var(--fw-m); }
.sticky-bar .btn   { flex-shrink: 0; padding: .6rem var(--sp-5); font-size: var(--fs-sm); }

/* ── 18. (accessibility widget moved to a11y.css) ─────────────── */

/* ── 19. Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   var(--t-slow) var(--ease),
    transform var(--t-slow) var(--ease);
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal--delay-1         { transition-delay: 110ms; }
.reveal--delay-2         { transition-delay: 220ms; }
.reveal--delay-3         { transition-delay: 330ms; }

/* ── 19b. Mobile — scan sheet sizing + sticky-bar clearance ──── */
@media (max-width: 639px) {
  .hero__visual {
    max-width: min(340px, 100%);
  }
  /* clearance so the sticky CTA bar doesn't cover the last footer line */
  .footer {
    padding-block-end: calc(var(--sp-8) + 72px);
  }
}

/* ── 20. Responsive — Tablet 640px+ ──────────────────────────── */
@media (min-width: 640px) {
  .hero__inner {
    flex-direction: row;
    text-align: start;
    align-items: center;
    gap: var(--sp-16);
  }
  .hero__content         { text-align: start; flex: 1; }
  .hero__sub             { margin-inline: 0; }
  .hero__cta-group       { align-items: flex-start; }
  .hero__trust           { justify-content: flex-start; }
  .hero__visual          { flex-shrink: 0; width: 340px; }

  .proof-divider         { display: block; }

  .steps                 { grid-template-columns: repeat(3, 1fr); }
  .ba-wrapper            { grid-template-columns: 1fr 1fr; }
  .templates-grid        { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid          { grid-template-columns: 1fr 1fr; }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: start;
    flex-wrap: wrap;
    gap: var(--sp-4);
  }
  .footer__links         { justify-content: flex-start; }

  .sticky-bar            { display: none; }
}

/* ── 21. Responsive — Desktop 1024px+ ────────────────────────── */
@media (min-width: 1024px) {
  .hero__visual          { width: 420px; }
  .section-title         { font-size: var(--fs-4xl); }
  .templates-grid        { grid-template-columns: repeat(4, 1fr); }
}

/* ── 22. Reduced Motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  html    { scroll-behavior: auto; }

  /* Scan-sheet: freeze on the final "locked" state
     (blooms lit, gaze path drawn, dots on, ring swept; JS pins timer to 0:00) */
  .bloom          { animation: none !important; opacity: 1; transform: scale(1); }
  .gaze path      { animation: none !important; stroke-dashoffset: 0; }
  .gaze circle    { animation: none !important; opacity: .9; }
  .gaze .gaze-eye { display: none !important; } /* traveling eye hidden; static dots remain */
  .scanchip .prog { animation: none !important; stroke-dashoffset: 50.27; }
  .hero__visual .stage { opacity: 1; animation: none !important; }
}

/* ── 23. Hero entrance animations ────────────────────────────── */
@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Children animate once parent .hero__content is revealed (IntersectionObserver adds .visible) */
.hero__content.visible .hero__eyebrow   { animation: fade-up-in .5s  var(--ease) .05s both; }
.hero__content.visible .hero__title     { animation: fade-up-in .65s var(--ease) .2s  both; }
.hero__content.visible .hero__sub       { animation: fade-up-in .55s var(--ease) .38s both; }
.hero__content.visible .hero__cta-group { animation: fade-up-in .55s var(--ease) .54s both; }

/* ── 24. Scan sheet — entrance ───────────────────────────────── */
.hero__visual .stage { opacity: 0; }
.hero__visual.visible .stage {
  animation: fade-up-in .85s var(--ease) .55s both;
}

/* ── 25. Hero background grid overlay ────────────────────────── */
.hero {
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,160,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,160,.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }

/* ── 26. CTA button shimmer ──────────────────────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset-block: 0;
  inset-inline-start: -100%;
  width: 55%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,.18) 50%,
    transparent 100%
  );
  animation: btn-shimmer 3.5s ease 2.2s infinite;
  pointer-events: none;
}
@keyframes btn-shimmer {
  0%        { inset-inline-start: -100%; }
  40%, 100% { inset-inline-start: 160%; }
}

/* ── 27. Section heading reveal ──────────────────────────────── */
.reveal-heading {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity   .5s var(--ease),
    transform .5s var(--ease);
}
.reveal-heading.visible { opacity: 1; transform: translateY(0); }

/* ── 28. Alpine FAQ transition helpers (no Tailwind needed) ──── */
.a-transition   { transition: opacity 200ms var(--ease), transform 200ms var(--ease); }
.a-enter-start  { opacity: 0; transform: translateY(-5px); }
.a-enter-end    { opacity: 1; transform: translateY(0); }
.a-leave-start  { opacity: 1; }
.a-leave-end    { opacity: 0; }

/* ── 29. Micro-interactions ──────────────────────────────────── */

/* Proof bar items — subtle scale on hover */
.proof-item {
  transition: transform var(--t-base) var(--ease);
  cursor: default;
}
.proof-item:hover { transform: scale(1.05); }

/* Step cards — glowing border on hover */
.step {
  position: relative;
}
.step::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-accent), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  z-index: -1;
  pointer-events: none;
}
.step:hover::before { opacity: .15; }

/* Template cards — amber ring on hover */
.tpl-card:hover {
  box-shadow:
    0 0 0 3px var(--c-accent-soft),
    0 20px 40px rgba(0,0,0,.12);
}

/* Footer links underline slide */
.footer__links a {
  position: relative;
}
.footer__links a::after {
  content: '';
  position: absolute;
  inset-block-end: -2px;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--c-text-hero);
  transition: width var(--t-base) var(--ease);
}
.footer__links a:hover::after { width: 100%; }
