/* ============================================================
   Haussrel — "Nuit Profonde" (deep navy night + neon green)
   Single-direction LTR system shared by the French root and /en/.
   Authored in CSS logical properties.
   ============================================================ */

:root {
  /* base — deep navy night */
  --hr-bg: #060b14;
  --hr-bg-2: #0a1220;
  --hr-navy-1: #0e1b30;
  --hr-navy-2: #14294a;
  --hr-navy-3: #1b3a66;

  /* accent — neon green.
     The palette is deliberately two-hue: navy carries every surface, green
     carries every accent. Featured panels are separated from ordinary ones by
     navy *elevation* plus a neon edge, never by a third colour. */
  --hr-acc: #16e08a;
  --hr-acc-hi: #6bffc2;
  --hr-acc-dim: #0c9c60;
  --hr-grad: linear-gradient(135deg, #6bffc2 0%, #16e08a 48%, #0c9c60 100%);

  /* text on navy */
  --hr-tx: rgba(223, 234, 247, .74);
  --hr-tx-strong: #edf3fb;
  --hr-muted: #94a9c4;
  --hr-dim: #5e7492;
  --hr-ink: #04121f;              /* text sitting on a neon fill */

  /* lines / glass */
  --hr-line: rgba(150, 190, 230, .12);
  --hr-line-soft: rgba(150, 190, 230, .06);
  --hr-glass: rgba(120, 170, 220, .035);
  --hr-glass-2: rgba(120, 170, 220, .062);

  /* radii */
  --hrr-sm: 10px;
  --hrr-md: 16px;
  --hrr-lg: 26px;
  --hrr-xl: 34px;
  --hrr-pill: 9999px;

  /* shadow / glow */
  --hrs-sh: 0 30px 80px -30px rgba(0, 0, 0, .86);
  --hrs-glow: 0 0 46px -8px rgba(22, 224, 138, .45);
  --hrs-glow-cool: 0 0 52px -10px rgba(27, 110, 190, .40);

  /* fonts — latin-ext subsets carry é è ê ç à ù œ */
  --hrf-disp: 'Space Grotesk', 'Segoe UI', sans-serif;
  --hrf-body: 'Inter', 'Segoe UI', sans-serif;
  --hrf-mono: 'JetBrains Mono', ui-monospace, monospace;

  --hr-mw: 1240px;
  --hr-nav-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--hrf-body);
  background: var(--hr-bg);
  color: var(--hr-tx);
  line-height: 1.75;
  padding-block-start: var(--hr-nav-h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ---- night city: neon aurora over a navy horizon ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 78% at 50% -12%, rgba(22, 224, 138, .15), transparent 56%),
    radial-gradient(96% 62% at 100% 6%, rgba(27, 58, 102, .55), transparent 62%),
    radial-gradient(80% 55% at 0% 24%, rgba(20, 41, 74, .5), transparent 62%),
    linear-gradient(180deg, #091428 0%, #060b14 42%, #04080f 100%);
}
/* vertical light shaft, as if from a screen off-frame */
body::after {
  content: "";
  position: fixed;
  top: -10%;
  inset-inline-start: 50%;
  width: 46vw;
  height: 120%;
  transform: translateX(-50%) rotate(4deg);
  z-index: -2;
  background: linear-gradient(180deg, rgba(107, 255, 194, .09), rgba(107, 255, 194, .02) 32%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  opacity: .7;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--hr-mw); margin-inline: auto; padding-inline: 24px; }

/* a11y helpers */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; inset-block-start: -60px; inset-inline-start: 16px;
  z-index: 2000;
  padding: 10px 18px;
  border-radius: 0 0 var(--hrr-sm) var(--hrr-sm);
  background: var(--hr-acc-hi); color: var(--hr-ink);
  font-family: var(--hrf-disp); font-weight: 600; font-size: .9rem;
  transition: inset-block-start .2s;
}
.skip-link:focus { inset-block-start: 0; }

:focus-visible { outline: 2px solid var(--hr-acc-hi); outline-offset: 2px; }

/* ---- typography ---- */
h1, h2, h3, h4 {
  font-family: var(--hrf-disp);
  color: var(--hr-tx-strong);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.display {
  font-family: var(--hrf-disp);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -.02em;
  color: var(--hr-tx-strong);
}
.display b { font-weight: 700; }
.display .hi { font-weight: 400; color: var(--hr-acc-hi); }
h1.display { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2.display { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }

.eyebrow {
  font-family: var(--hrf-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hr-muted);
}
.eyebrow.acc { color: var(--hr-acc-hi); }

.lede { color: var(--hr-muted); font-size: 1.02rem; max-width: 52ch; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--hrf-disp);
  font-weight: 500;
  font-size: .92rem;
  padding: 13px 26px;
  border-radius: var(--hrr-pill);
  border: 1px solid transparent;
  transition: transform .25s, box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--hr-grad); color: var(--hr-ink); font-weight: 600; box-shadow: var(--hrs-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 62px -4px rgba(107, 255, 194, .68); }
.btn-ghost {
  background: var(--hr-glass-2);
  color: var(--hr-tx-strong);
  border-color: var(--hr-line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--hr-acc); background: rgba(22, 224, 138, .13); }

/* ---- panel base ---- */
.panel {
  background: linear-gradient(180deg, var(--hr-glass-2), var(--hr-glass));
  border: 1px solid var(--hr-line);
  border-radius: var(--hrr-lg);
  backdrop-filter: blur(14px);
  box-shadow: var(--hrs-sh);
}

/* Elevated navy surface with a neon bloom — the one "featured" treatment,
   reused by the hero form, feature cards, the mid result card and the CTA. */
.hr-lift {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(22, 224, 138, .20), transparent 58%),
    linear-gradient(155deg, var(--hr-navy-3), var(--hr-navy-2) 62%, var(--hr-navy-1));
}

section { position: relative; }
.sect { padding-block: 84px; }
.sect-head { max-width: 680px; margin-inline: auto; margin-block-end: 46px; text-align: center; }
.sect-head .eyebrow { display: block; margin-block-end: 14px; }
.sect-head p { color: var(--hr-muted); margin-block-start: 14px; }

/* ---- breadcrumb ---- */
.crumbs {
  max-width: var(--hr-mw);
  margin-inline: auto;
  font-family: var(--hrf-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hr-dim);
  padding-block: 18px 0;
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: "/"; color: var(--hr-line); }
.crumbs a { color: var(--hr-muted); transition: color .2s; }
.crumbs a:hover { color: var(--hr-acc-hi); }
.crumbs [aria-current="page"] { color: var(--hr-tx-strong); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--hr-nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(6, 11, 20, .72);
  backdrop-filter: blur(18px);
  border-block-end: 1px solid var(--hr-line-soft);
}
.nav-in {
  width: 100%;
  max-width: var(--hr-mw);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Brand: one word, one colour, one weight. Never split "Haussrel". */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hrf-disp);
  font-weight: 600;
  font-size: 1.24rem;
  color: var(--hr-tx-strong);
  letter-spacing: .005em;
}
.brand img { width: 32px; height: 32px; flex-shrink: 0; }

.menu { display: flex; align-items: center; gap: 26px; list-style: none; }
.menu a { font-size: .88rem; color: var(--hr-muted); transition: color .2s; }
.menu a:hover, .menu a.on { color: var(--hr-tx-strong); }
.menu .btn { padding: 9px 20px; font-size: .84rem; }
.menu a.btn-primary { color: var(--hr-ink); }
.menu .lang a {
  font-family: var(--hrf-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: var(--hrr-pill);
  border: 1px solid var(--hr-line);
}
.menu .lang a:hover { border-color: var(--hr-acc); color: var(--hr-acc-hi); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.burger span { width: 22px; height: 1.6px; background: var(--hr-tx); border-radius: 2px; transition: .3s; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-block: 1px solid var(--hr-line-soft);
  background: rgba(120, 170, 220, .02);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track { display: inline-flex; gap: 46px; padding-block: 11px; will-change: transform; }
.tk {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--hrf-mono);
  font-size: .74rem;
  color: var(--hr-muted);
}
.tk b { color: var(--hr-tx-strong); font-weight: 500; }
.tk .px { color: var(--hr-tx); }
.tk .up { color: var(--hr-acc); }
.tk .down { color: #fb7185; }
.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hr-acc-hi);
  box-shadow: 0 0 10px var(--hr-acc);
  animation: hrPulse 1.8s ease-in-out infinite;
}
@keyframes hrPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-block: 56px 60px; }
.hero-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  border-radius: var(--hrr-xl);
  overflow: hidden;
  border: 1px solid var(--hr-line);
  box-shadow: var(--hrs-sh);
  position: relative;
}
.hero-left {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(22, 224, 138, .13), transparent 58%),
    linear-gradient(150deg, var(--hr-navy-1), var(--hr-bg-2) 68%, #070d18);
  padding: 54px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--hrf-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hr-acc-hi);
  padding: 7px 14px;
  border: 1px solid rgba(22, 224, 138, .3);
  border-radius: var(--hrr-pill);
  background: rgba(22, 224, 138, .09);
  margin-block-end: 24px;
}
.hero-chip svg { width: 13px; height: 13px; }
.hero h1 { margin-block-end: 20px; }
.hero-left .lede { margin-block-end: 32px; font-size: 1.05rem; }

.stat-rows { display: flex; flex-direction: column; }
.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
  border-block-start: 1px solid var(--hr-line-soft);
}
.stat-row:last-child { border-block-end: 1px solid var(--hr-line-soft); }
.stat-row .val {
  font-family: var(--hrf-disp);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--hr-tx-strong);
}
.stat-row .lbl {
  font-family: var(--hrf-mono);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hr-dim);
  text-align: end;
}

/* hero right — elevated navy form panel */
.hero-right {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(22, 224, 138, .22), transparent 56%),
    linear-gradient(150deg, var(--hr-navy-3), var(--hr-navy-2) 66%, var(--hr-navy-1));
  padding: 40px 40px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(150, 200, 240, .13) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .35;
  mask-image: radial-gradient(120% 90% at 100% 0%, #000, transparent 70%);
}
.hero-right > * { position: relative; }

/* ---- registration form ---- */
.form-card h2, .form-card h3 { font-weight: 600; font-size: 1.18rem; color: #fff; }
.form-card .note {
  font-family: var(--hrf-mono);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hr-acc-hi);
  margin-block: 5px 16px;
}
.reg input[type="text"],
.reg input[type="email"],
.reg input[type="tel"] {
  width: 100%;
  background: rgba(4, 10, 20, .55);
  border: 1px solid rgba(150, 200, 240, .2);
  border-radius: var(--hrr-sm);
  padding: 12px 14px;
  color: #fff;
  font-family: var(--hrf-body);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.reg input::placeholder { color: rgba(200, 220, 240, .48); }
.reg input:focus {
  border-color: var(--hr-acc);
  background: rgba(4, 10, 20, .78);
  box-shadow: 0 0 0 3px rgba(22, 224, 138, .16);
}
.reg form > div { margin-block-end: 10px; }
.iti { width: 100%; }
.iti__dropdown-content { color: #111; }

#submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--hrr-sm);
  background: var(--hr-grad);
  color: var(--hr-ink);
  font-family: var(--hrf-disp);
  font-size: .98rem;
  font-weight: 700;
  margin-block-start: 4px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .6), var(--hrs-glow);
}
#submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(22, 224, 138, .5); }
.form-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: #c9dced;
  margin-block-start: 14px;
}
.form-tip svg { width: 16px; height: 16px; color: var(--hr-acc-hi); flex-shrink: 0; }

.form-card .trust { margin-block-start: 22px; border-block-start: 1px solid rgba(150, 200, 240, .17); }
.trust-item { display: flex; align-items: center; gap: 13px; padding-block: 14px; border-block-end: 1px solid rgba(150, 200, 240, .1); }
.trust-item:last-child { border-block-end: none; }
.trust-ico {
  width: 36px; height: 36px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(22, 224, 138, .14);
  border: 1px solid rgba(150, 200, 240, .18);
}
.trust-ico svg { width: 18px; height: 18px; color: var(--hr-acc-hi); }
.trust-item b { display: block; font-family: var(--hrf-disp); font-weight: 600; font-size: .94rem; color: #fff; line-height: 1.4; }
.trust-item span { font-size: .76rem; color: #b6cbe0; }

/* ============================================================
   PARTNER STRIP
   ============================================================ */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; }
.partner {
  font-family: var(--hrf-disp);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: .03em;
  color: var(--hr-dim);
  transition: color .25s;
}
.partner:hover { color: var(--hr-muted); }

/* ============================================================
   VOICES (testimonials)
   ============================================================ */
.voices-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice {
  display: flex;
  flex-direction: column;
  border-radius: var(--hrr-lg);
  border: 1px solid var(--hr-line);
  background: linear-gradient(180deg, var(--hr-glass-2), var(--hr-glass));
  padding: 30px 28px;
  transition: transform .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.voice:hover { transform: translateY(-5px); border-color: rgba(22, 224, 138, .5); }
.voice::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 2px;
  background: var(--hr-grad);
  opacity: .6;
}
.voice-mark { width: 34px; height: 34px; color: var(--hr-acc); opacity: .45; margin-block-end: 14px; }
.voice-mark svg { width: 100%; height: 100%; }
.voice .stars { margin-block-end: 14px; }
.voice-qt {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--hr-tx-strong);
  font-weight: 300;
  flex: 1;
  margin-block-end: 20px;
}
.voice-who { display: flex; align-items: center; gap: 13px; padding-block-start: 18px; border-block-start: 1px solid var(--hr-line-soft); }
.voice-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--hrf-disp); font-weight: 700; font-size: .84rem;
  color: var(--hr-ink); background: var(--hr-grad);
}
.voice-name { font-family: var(--hrf-disp); font-weight: 600; font-size: .96rem; color: var(--hr-tx-strong); }
.voice-loc { font-family: var(--hrf-mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--hr-acc-hi); }

.stars { display: flex; gap: 3px; }
.stars svg { width: 15px; height: 15px; color: var(--hr-acc); }

/* ============================================================
   SPLIT (image + copy)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: var(--hrr-xl);
  overflow: hidden;
  border: 1px solid var(--hr-line);
}
.split-media { position: relative; min-height: 380px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent, rgba(6, 11, 20, .55));
}
.split-copy {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, var(--hr-navy-1), var(--hr-bg-2));
}
.split-copy .eyebrow { margin-block-end: 14px; }
.split-copy h2 { margin-block-end: 18px; }
.split-copy p { color: var(--hr-muted); margin-block-end: 14px; }
.split-copy p:last-child { margin-block-end: 0; }
.split.reverse .split-media { order: 2; }

/* ============================================================
   CAPABILITY CARDS
   ============================================================ */
.caps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cap {
  border-radius: var(--hrr-lg);
  border: 1px solid var(--hr-line);
  background: linear-gradient(180deg, var(--hr-glass-2), var(--hr-glass));
  padding: 30px 28px;
  transition: transform .3s, border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.cap:hover { transform: translateY(-4px); border-color: rgba(22, 224, 138, .45); }
.cap.feat {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(22, 224, 138, .2), transparent 58%),
    linear-gradient(155deg, var(--hr-navy-3), var(--hr-navy-2) 62%, var(--hr-navy-1));
  border-color: rgba(22, 224, 138, .42);
  box-shadow: var(--hrs-glow);
}
.cap-ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  border: 1px solid var(--hr-line);
  background: rgba(22, 224, 138, .12);
  margin-block-end: 18px;
}
.cap.feat .cap-ico { background: rgba(22, 224, 138, .2); border-color: rgba(107, 255, 194, .3); }
.cap-ico svg { width: 22px; height: 22px; color: var(--hr-acc-hi); }
.cap h3 { font-size: 1.1rem; font-weight: 600; margin-block-end: 10px; }
.cap p { color: var(--hr-muted); font-size: .92rem; line-height: 1.8; }
.cap.feat p { color: #cbdcee; }

/* ============================================================
   METRICS
   ============================================================ */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--hr-line);
  border-radius: var(--hrr-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--hr-glass-2), var(--hr-glass));
}
.metric { padding: 34px 26px; text-align: center; border-inline-end: 1px solid var(--hr-line-soft); }
.metric:last-child { border-inline-end: none; }
.metric .val {
  font-family: var(--hrf-disp);
  font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  color: var(--hr-tx-strong);
}
.metric .val b { font-weight: 300; color: var(--hr-acc-hi); }
.metric .lbl { font-family: var(--hrf-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--hr-dim); margin-block-start: 8px; }

.agg-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-block-end: 30px; }
.agg { border: 1px solid var(--hr-line); border-radius: var(--hrr-md); padding: 26px 24px; background: var(--hr-glass); }
.agg .v { font-family: var(--hrf-disp); font-weight: 300; font-size: 2.2rem; color: var(--hr-tx-strong); }
.agg .v b { color: var(--hr-acc-hi); font-weight: 300; }
.agg .l { color: var(--hr-muted); font-size: .88rem; margin-block-start: 6px; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.step {
  border: 1px solid var(--hr-line);
  border-radius: var(--hrr-lg);
  padding: 28px 26px;
  background: linear-gradient(180deg, var(--hr-glass-2), var(--hr-glass));
  position: relative;
}
.step-dot {
  position: absolute;
  inset-block-start: 28px;
  inset-inline-end: 26px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--hr-grad); box-shadow: var(--hrs-glow);
}
.step .num { font-family: var(--hrf-mono); font-size: .72rem; letter-spacing: .1em; color: var(--hr-acc-hi); }
.step h3 { font-size: 1.06rem; font-weight: 600; margin-block: 8px; }
.step p { color: var(--hr-muted); font-size: .9rem; }

/* ============================================================
   RESULTS CAROUSEL
   ============================================================ */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.6, .05, .1, 1); }
.gcard {
  flex: 0 0 calc((100% - 40px) / 3);
  border-radius: var(--hrr-lg);
  border: 1px solid var(--hr-line);
  background: linear-gradient(180deg, var(--hr-glass-2), var(--hr-glass));
  padding: 30px 28px;
  transition: border-color .3s, transform .3s;
}
.gcard.mid {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(22, 224, 138, .2), transparent 58%),
    linear-gradient(155deg, var(--hr-navy-3), var(--hr-navy-2) 62%, var(--hr-navy-1));
  border-color: rgba(22, 224, 138, .45);
  box-shadow: var(--hrs-glow);
}
.gcard-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-block-end: 16px; }
.gbadge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--hrf-mono); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--hr-acc-hi);
  padding: 5px 10px;
  border-radius: var(--hrr-pill);
  border: 1px solid var(--hr-line);
  background: rgba(22, 224, 138, .12);
}
.gcard.mid .gbadge { color: #fff; border-color: rgba(107, 255, 194, .35); background: rgba(22, 224, 138, .2); }
.gbadge svg { width: 11px; height: 11px; }
.gcard .tagline { font-family: var(--hrf-mono); font-size: .64rem; color: var(--hr-dim); }
.gcard.mid .tagline { color: #b6cbe0; }
.gsum { font-family: var(--hrf-disp); font-weight: 300; font-size: 2.5rem; color: var(--hr-tx-strong); }
.gper { font-family: var(--hrf-mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--hr-acc-hi); margin-block-end: 14px; }
.gspark { width: 100%; height: 40px; display: block; margin-block-end: 16px; }
.gspark .ln { fill: none; stroke: var(--hr-acc-hi); stroke-width: 2; }
.gqt { font-size: .92rem; color: var(--hr-muted); line-height: 1.8; margin-block-end: 18px; }
.gcard.mid .gqt { color: #cbdcee; }
.gwho { display: flex; align-items: center; gap: 12px; }
.gav {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--hrf-disp); font-weight: 700; font-size: .82rem;
  color: var(--hr-ink); background: var(--hr-grad);
}
.gnm { font-family: var(--hrf-disp); font-weight: 600; font-size: .94rem; color: var(--hr-tx-strong); }
.gcity { font-family: var(--hrf-mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; color: var(--hr-dim); }
.gcard.mid .gcity { color: #b6cbe0; }

.gcta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  margin-block-start: 20px;
  padding: 12px 20px;
  font-family: var(--hrf-disp); font-weight: 600; font-size: .9rem;
  border-radius: var(--hrr-pill);
  border: 1px solid transparent;
  background: var(--hr-grad);
  color: var(--hr-ink);
  box-shadow: var(--hrs-glow);
  transition: transform .25s, box-shadow .25s;
}
.gcta svg { width: 15px; height: 15px; }
.gcta:hover { transform: translateY(-2px); box-shadow: 0 0 52px -6px rgba(107, 255, 194, .75); }

.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-block-start: 32px; }
.cbtn {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--hr-glass-2);
  border: 1px solid var(--hr-line);
  color: var(--hr-tx-strong);
  transition: .25s;
}
.cbtn:hover { border-color: var(--hr-acc); background: rgba(22, 224, 138, .16); }
.cbtn svg { width: 18px; height: 18px; }
.dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hr-line); border: none; transition: .25s; padding: 0; }
.dot.on { width: 26px; border-radius: var(--hrr-pill); background: var(--hr-grad); }

.disclaimer { font-size: .78rem; color: var(--hr-dim); text-align: center; max-width: 780px; margin-inline: auto; margin-block-start: 30px; line-height: 1.8; }

/* ============================================================
   CTA
   ============================================================ */
.cta-band {
  border-radius: var(--hrr-xl);
  padding: 64px 40px;
  text-align: center;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(22, 224, 138, .24), transparent 62%),
    linear-gradient(155deg, var(--hr-navy-3), var(--hr-navy-2) 60%, var(--hr-navy-1));
  border: 1px solid rgba(22, 224, 138, .35);
  box-shadow: var(--hrs-glow);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(150, 200, 240, .1) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(90% 90% at 50% 0%, #000, transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-block-end: 14px; }
.cta-band p { color: #c3d6ea; margin-inline: auto; margin-block-end: 28px; max-width: 52ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-block-start: 1px solid var(--hr-line-soft); padding-block-start: 68px; margin-block-start: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand .brand { margin-block-end: 16px; }
.footer-brand p { color: var(--hr-muted); font-size: .9rem; max-width: 40ch; }
.footer-col h2 { font-family: var(--hrf-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--hr-dim); font-weight: 500; margin-block-end: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--hr-muted); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--hr-acc-hi); }
.footer-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border-block-start: 1px solid var(--hr-line-soft);
  margin-block-start: 48px; padding-block: 22px;
  font-size: .82rem; color: var(--hr-dim);
}
.footer-bar .lnk { display: flex; gap: 20px; }
.footer-bar a:hover { color: var(--hr-acc-hi); }

.risk { background: rgba(120, 170, 220, .02); border-block-start: 1px solid var(--hr-line-soft); padding-block: 22px; }
.risk p { font-size: .76rem; color: var(--hr-dim); line-height: 1.8; max-width: var(--hr-mw); }

/* ============================================================
   REVEAL
   ============================================================ */
.hr-rise { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.hr-rise.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hr-rise { opacity: 1; transform: none; transition: none; }
  .dot-live { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   INNER PAGE COMPONENTS
   ============================================================ */
.page-head { text-align: center; max-width: 800px; margin-inline: auto; padding-block: 20px 8px; }
.page-head .eyebrow { display: block; margin-block-end: 14px; }
.page-head p { color: var(--hr-muted); margin-inline: auto; margin-block-start: 16px; max-width: 64ch; }
.page-head .updated { font-family: var(--hrf-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--hr-dim); margin-block-start: 14px; }

/* Capped at the photo's intrinsic 800px so the image fills the frame exactly —
   a wider frame would leave a bare strip at the inline end. */
.media-frame { max-width: 800px; margin-inline: auto; border-radius: var(--hrr-xl); overflow: hidden; border: 1px solid var(--hr-line); box-shadow: var(--hrs-sh); position: relative; }
.media-frame img { width: 100%; }
.media-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent, rgba(6, 11, 20, .42)); pointer-events: none; }

.city-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.city-chip { font-family: var(--hrf-mono); font-size: .74rem; letter-spacing: .06em; color: var(--hr-muted); padding: 9px 20px; border-radius: var(--hrr-pill); border: 1px solid var(--hr-line); background: var(--hr-glass); }

.cap.team { text-align: center; }
.cap.team .role { font-family: var(--hrf-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--hr-acc-hi); display: block; margin-block-end: 10px; }
.cap.team .av {
  width: 58px; height: 58px; border-radius: 50%;
  margin-inline: auto; margin-block-end: 16px;
  display: grid; place-items: center;
  font-family: var(--hrf-disp); font-weight: 700; color: var(--hr-ink);
  background: var(--hr-grad); box-shadow: var(--hrs-glow);
}

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.post { display: flex; flex-direction: column; border-radius: var(--hrr-lg); border: 1px solid var(--hr-line); background: linear-gradient(180deg, var(--hr-glass-2), var(--hr-glass)); padding: 28px 26px; transition: transform .3s, border-color .3s; }
.post:hover { transform: translateY(-4px); border-color: rgba(22, 224, 138, .45); }
.post-tag { align-self: flex-start; font-family: var(--hrf-mono); font-size: .6rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: 4px 11px; border-radius: var(--hrr-pill); margin-block-end: 14px; border: 1px solid var(--hr-line); }
.post-tag.ai { color: var(--hr-acc-hi); background: rgba(107, 255, 194, .1); border-color: rgba(107, 255, 194, .28); }
.post-tag.crypto { color: #8fb8e8; background: rgba(27, 58, 102, .45); border-color: rgba(143, 184, 232, .28); }
.post h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.5; margin-block-end: 10px; }
.post p { color: var(--hr-muted); font-size: .92rem; line-height: 1.8; flex: 1; }
.post-meta { display: flex; justify-content: space-between; gap: 12px; margin-block-start: 16px; padding-block-start: 14px; border-block-start: 1px solid var(--hr-line-soft); font-family: var(--hrf-mono); font-size: .64rem; letter-spacing: .04em; text-transform: uppercase; color: var(--hr-dim); }

/* FAQ accordion — real buttons, keyboard accessible */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--hr-line); border-radius: var(--hrr-md); background: linear-gradient(180deg, var(--hr-glass-2), var(--hr-glass)); overflow: hidden; transition: border-color .3s; }
.faq-item:hover { border-color: rgba(22, 224, 138, .4); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%;
  padding: 20px 24px;
  background: none; border: none;
  font-family: var(--hrf-disp); font-size: 1rem; font-weight: 500;
  color: var(--hr-tx-strong);
  text-align: start;
  line-height: 1.6;
}
.faq-q h3 { font-size: inherit; font-weight: inherit; letter-spacing: inherit; }
.faq-q:focus-visible { outline: 2px solid var(--hr-acc-hi); outline-offset: -3px; }
.faq-q svg { width: 18px; height: 18px; color: var(--hr-acc-hi); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 480px; }
.faq-a p { padding: 0 24px 20px; color: var(--hr-muted); font-size: .94rem; line-height: 1.9; }

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.info-col { display: flex; flex-direction: column; gap: 20px; }
.info-media { border-radius: var(--hrr-lg); overflow: hidden; border: 1px solid var(--hr-line); }
.info-row { display: flex; align-items: flex-start; gap: 14px; }
.info-ico { width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--hr-line); background: rgba(22, 224, 138, .12); }
.info-ico svg { width: 20px; height: 20px; color: var(--hr-acc-hi); }
.info-row h3 { font-size: 1rem; font-weight: 600; margin-block-end: 3px; }
.info-row p { color: var(--hr-muted); font-size: .9rem; }
.reg-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.reg-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--hr-muted); font-size: .95rem; }
.reg-list svg { width: 20px; height: 20px; color: var(--hr-acc-hi); flex-shrink: 0; margin-block-start: 4px; }

.form-card.solo {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(22, 224, 138, .22), transparent 56%),
    linear-gradient(150deg, var(--hr-navy-3), var(--hr-navy-2) 66%, var(--hr-navy-1));
  border: 1px solid rgba(22, 224, 138, .35);
  border-radius: var(--hrr-lg);
  padding: 36px 34px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--hrs-glow);
}
.form-card.solo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(150, 200, 240, .13) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .35;
  mask-image: radial-gradient(120% 90% at 100% 0%, #000, transparent 70%);
}
.form-card.solo > * { position: relative; }

.legal { max-width: 860px; margin-inline: auto; }
.legal h2 { font-family: var(--hrf-disp); font-size: 1.26rem; font-weight: 600; color: var(--hr-tx-strong); margin-block: 34px 12px; }
.legal h2:first-child { margin-block-start: 0; }
.legal p { color: var(--hr-muted); font-size: .95rem; line-height: 1.95; margin-block-end: 12px; }
.legal ul { color: var(--hr-muted); font-size: .95rem; line-height: 1.95; margin-block-end: 12px; margin-inline-start: 20px; }

/* standalone centred notice (merci / thanks / 404) */
.notice { max-width: 640px; margin-inline: auto; text-align: center; padding-block: 60px; }
.notice .ico { width: 76px; height: 76px; margin-inline: auto; margin-block-end: 26px; display: grid; place-items: center; border-radius: 22px; background: rgba(22, 224, 138, .13); border: 1px solid rgba(22, 224, 138, .3); }
.notice .ico svg { width: 34px; height: 34px; color: var(--hr-acc-hi); }
.notice p { color: var(--hr-muted); margin-block-start: 16px; }
.notice .btn { margin-block-start: 30px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .menu { gap: 18px; }
  .menu a { font-size: .84rem; }
}

@media (max-width: 960px) {
  .hero-panel { grid-template-columns: 1fr; }
  .hero-left { padding: 44px 34px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { min-height: 260px; }
  .voices-row { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .caps-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-inline-end: none; }
  .metric:nth-child(1), .metric:nth-child(2) { border-block-end: 1px solid var(--hr-line-soft); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .agg-row { grid-template-columns: 1fr; }
  .gcard { flex: 0 0 calc((100% - 20px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .blog-grid { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --hr-nav-h: 66px; }
  .menu { display: none; }
  .burger { display: flex; }
  .nav.open .menu {
    display: flex;
    position: absolute;
    inset-block-start: var(--hr-nav-h);
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 24px 24px;
    background: rgba(6, 11, 20, .97);
    backdrop-filter: blur(18px);
    border-block-end: 1px solid var(--hr-line);
  }
  .nav.open .menu a { padding-block: 10px; font-size: .96rem; }
  .nav.open .menu .btn { justify-content: center; margin-block-start: 8px; }
  .nav.open .menu .lang { margin-block-start: 10px; }
  .nav.open .menu .lang a { display: inline-block; }
  .sect { padding-block: 60px; }
  .hero-left { padding: 38px 26px; }
  .hero-right { padding: 30px 26px; }
  .caps-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-inline-end: none; border-block-end: 1px solid var(--hr-line-soft); }
  .metric:last-child { border-block-end: none; }
  .steps { grid-template-columns: 1fr; }
  .gcard { flex: 0 0 100%; }
  .split-copy { padding: 38px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bar { flex-direction: column; gap: 12px; text-align: center; }
  .cta-band { padding: 48px 26px; }
  .form-card.solo { padding: 30px 24px; }
  .partners { gap: 12px 26px; }
  .partner { font-size: .92rem; }
}
