@charset "UTF-8";
/* ============================================================
   RAEMORA — Design system · « Patrimoine français, geste moderne »
   Type : Cormorant Garamond (titres, lignée Claude Garamond, 1530s)
          Archivo (interface, le geste moderne)
          IBM Plex Mono (mentions techniques / régaliennes)
   Couleurs : Albâtre · Bleu de France · Or · Garance · Encre
   ============================================================ */
:root {
  /* ---- Encre : a deep blue-black ink, never pure black ---- */
  --ink: oklch(0.24 0.034 268); /* encre — primary text */
  --ink-soft: oklch(0.40 0.030 268); /* secondary text  */
  --muted: oklch(0.52 0.024 270); /* tertiary text   */
  /* ---- Albâtre : a clean, cool near-white with a whisper of bleu ---- */
  --paper: oklch(0.988 0.0035 264); /* albâtre background */
  --paper-2: oklch(0.966 0.005 264); /* panels          */
  --paper-3: oklch(0.944 0.007 264); /* deeper panels   */
  --line: oklch(0.898 0.008 264); /* cool hairline   */
  --line-soft: oklch(0.930 0.006 264);
  /* ---- Bleu de France : sovereign, faintly violet navy ---- */
  --brand: oklch(0.38 0.115 270); /* primary         */
  --brand-600: oklch(0.33 0.118 270);
  --brand-700: oklch(0.285 0.105 271);
  --brand-800: oklch(0.235 0.085 272); /* dark section bg */
  --brand-900: oklch(0.185 0.066 273);
  --brand-tint: oklch(0.925 0.034 270); /* faint bleu wash */
  /* ---- Or : antique republican gilding (kept as --brass*) ---- */
  --brass: oklch(0.755 0.105 79); /* or — gilded accent */
  --brass-deep: oklch(0.545 0.090 70); /* or — text on vélin */
  --brass-tint: oklch(0.935 0.040 84);
  /* ---- Garance : historic French madder red, used sparingly ---- */
  --garance: oklch(0.525 0.175 27);
  --garance-deep: oklch(0.455 0.165 28);
  --garance-tint: oklch(0.928 0.045 30);
  --ok: oklch(0.55 0.10 158); /* positive        */
  --warn: oklch(0.66 0.13 64); /* attention       */
  --radius: 3px;
  --radius-lg: 7px;
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
  --font-sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --font-disp: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* ---- alternate hue themes (used by hero canvas) ---- */
.theme-teal {
  --brand: oklch(0.44 0.072 196);
  --brand-600: oklch(0.38 0.068 196);
  --brand-700: oklch(0.32 0.058 197);
  --brand-800: oklch(0.26 0.046 198);
  --brand-900: oklch(0.21 0.036 199);
  --brand-tint: oklch(0.95 0.022 196);
}

.theme-pine {
  --brand: oklch(0.42 0.062 158);
  --brand-600: oklch(0.36 0.058 158);
  --brand-700: oklch(0.30 0.050 159);
  --brand-800: oklch(0.25 0.040 160);
  --brand-900: oklch(0.20 0.032 161);
  --brand-tint: oklch(0.95 0.020 158);
}

.theme-slate {
  --brand: oklch(0.40 0.045 248);
  --brand-600: oklch(0.35 0.043 248);
  --brand-700: oklch(0.29 0.038 249);
  --brand-800: oklch(0.24 0.030 250);
  --brand-900: oklch(0.19 0.024 251);
  --brand-tint: oklch(0.95 0.014 248);
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
html {
  background: var(--paper);
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: transparent;
  line-height: 1.55;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--brass-deep);
  outline-offset: 2px;
  border-radius: 2px;
}

/* skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 6px 0;
}

.skip:focus {
  left: 0;
}

/* ============================================================
   Layout
   ============================================================ */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section {
  padding-block: clamp(64px, 9vw, 128px);
}

.section--tight {
  padding-block: clamp(48px, 6vw, 80px);
}

/* ============================================================
   Typography
   ============================================================ */
.display {
  font-family: var(--font-disp);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.005em;
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  text-wrap: balance;
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

/* grand titles set in Garamond — the classical French voice */
.display, .h2, .serif {
  font-family: var(--font-serif);
}

.h2 {
  font-weight: 400;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  letter-spacing: -0.004em;
  line-height: 1.07;
}

.h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  letter-spacing: -0.015em;
}

.h4 {
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.serif {
  font-weight: 400;
}

.lede {
  font-size: clamp(1.12rem, 1.7vw, 1.38rem);
  color: var(--ink-soft);
  line-height: 1.52;
  font-weight: 400;
  text-wrap: pretty;
  max-width: 38ch;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 0;
  border-top: 1px solid var(--brass-deep);
  border-bottom: 1px solid var(--brass-deep);
  height: 3px;
  display: inline-block;
  opacity: 0.9;
}

.eyebrow--plain::before {
  display: none;
}

.muted {
  color: var(--muted);
}

.balance {
  text-wrap: balance;
}

.mono {
  font-family: var(--font-mono);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 400;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  padding: 0.82em 1.35em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
  line-height: 1;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-700);
}

.btn--brass {
  background: var(--brass);
  color: var(--brand-900);
}

.btn--brass:hover {
  background: oklch(72% 0.1 82deg);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--paper-2);
}

.btn--light {
  background: #fff;
  color: var(--brand-800);
}

.btn--light:hover {
  background: var(--brass-tint);
}

.btn--onbrand {
  background: transparent;
  color: #fff;
  border-color: oklch(100% 0 0deg / 0.32);
}

.btn--onbrand:hover {
  border-color: #fff;
  background: oklch(100% 0 0deg / 0.08);
}

.btn .arr {
  transition: transform 0.18s;
}

.btn:hover .arr {
  transform: translateX(3px);
}

.btn--lg {
  padding: 1em 1.6em;
  font-size: 1.05rem;
}

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 400;
  color: var(--brand-600);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.18s;
}

.tlink:hover {
  border-color: var(--brand-600);
}

.tlink .arr {
  transition: transform 0.18s;
}

.tlink:hover .arr {
  transform: translateX(3px);
}

/* ============================================================
   Header / nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(98.8% 0.0035 264deg / 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav__in {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 72px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-inline: auto;
}

.nav__links a {
  position: relative;
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.15s;
  padding-block: 8px;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__links a[aria-current=page] {
  color: var(--ink);
  font-weight: 400;
}

.nav__links a[aria-current=page]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brass-deep);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav__burger {
  display: none;
}

@media (max-width: 1200px) {
  .nav__actions .btn--ghost {
    display: none;
  }
}
@media (max-width: 1080px) {
  .nav__links {
    display: none;
  }
  .nav__actions .btn--ghost {
    display: none;
  }
}
/* logo — Garamond wordmark + cockade seal + domain lockup */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.58rem;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1;
}

.logo__mark {
  width: 30px;
  height: 30px;
  flex: none;
}

.logo__word {
  display: inline-flex;
  align-items: baseline;
}

.logo__tld {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.42em;
  letter-spacing: 0.02em;
  color: var(--brass-deep);
  margin-left: 0.5px;
  transform: translateY(-0.62em);
}

.logo__eu {
  font-style: normal;
  color: var(--brass-deep);
}

.logo--light .logo__eu, .footer .logo__eu {
  color: var(--brass);
}

.logo--light, .logo--light .logo {
  color: #fff;
}

.logo--light .logo__tld, .footer .logo__tld {
  color: var(--brass);
}

/* ============================================================
   Hero product mock components (CSS-built UI)
   ============================================================ */
.ui-card {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px oklch(20% 0.03 262deg / 0.04), 0 18px 50px -28px oklch(20% 0.04 262deg / 0.3);
  overflow: hidden;
}

.ui-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.ui-card__title {
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.ui-chip {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  text-transform: uppercase;
}

.radar-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.radar-row:last-child {
  border-bottom: 0;
}

.radar-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--brand-tint);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--brand-600);
}

.radar-name {
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.2;
}

.radar-meta {
  font-size: 0.76rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

.radar-due {
  text-align: right;
}

.radar-days {
  font-weight: 400;
  font-size: 0.9rem;
}

.lead-pill {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 400;
  padding: 3px 7px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.lead-pill--soon {
  background: oklch(95% 0.06 64deg);
  color: oklch(46% 0.12 58deg);
}

.lead-pill--ok {
  background: oklch(94% 0.05 158deg);
  color: oklch(40% 0.09 160deg);
}

.lead-pill--act {
  background: var(--brass-tint);
  color: var(--brass-deep);
}

/* mini bar chart */
.bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 76px;
  padding: 4px 0;
}

.bar {
  flex: 1;
  background: var(--brand-tint);
  border-radius: 2px 2px 0 0;
  position: relative;
}

.bar span {
  position: absolute;
  inset: auto 0 0 0;
  background: var(--brand);
  border-radius: 2px 2px 0 0;
}

.bar--gold span {
  background: var(--brass);
}

/* ============================================================
   Cards / generic
   ============================================================ */
.grid {
  display: grid;
  gap: 22px;
}

.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .cols-3, .cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .cols-2, .cols-3, .cols-4 {
    grid-template-columns: 1fr;
  }
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.card--hover:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -28px oklch(20% 0.05 262deg / 0.35);
}

.card__ico {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--brand-tint);
  color: var(--brand-600);
  margin-bottom: 18px;
}

.card h3, .card .h4 {
  margin-bottom: 8px;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.5;
}

/* audience chooser */
.aud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

@media (max-width: 760px) {
  .aud {
    grid-template-columns: 1fr;
  }
}
.aud__col {
  padding: 30px 28px 26px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.18s;
  min-height: 220px;
}

.aud__col:last-child {
  border-right: 0;
}

.aud__col:hover {
  background: var(--brand-tint);
}

@media (max-width: 760px) {
  .aud__col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .aud__col:last-child {
    border-bottom: 0;
  }
}
.aud__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.aud__name {
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.aud__promise {
  color: var(--ink-soft);
  font-size: 0.96rem;
  flex: 1;
}

.aud__col .tlink {
  margin-top: 6px;
}

/* trust band */
.trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 820px) {
  .trust {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .trust {
    grid-template-columns: 1fr;
  }
}
.trust__cell {
  background: var(--paper);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.trust__k {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.trust__v {
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.trust__d {
  font-size: 0.8rem;
  color: var(--muted);
}

/* comparison */
.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.cmp th, .cmp td {
  text-align: left;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.cmp thead th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.cmp thead th.is-rae {
  color: var(--brand-600);
}

.cmp td.cap {
  font-weight: 400;
}

.cmp td.them {
  color: var(--muted);
}

.cmp td.rae {
  font-weight: 400;
  color: var(--ink);
}

.cmp col.c-rae, .cmp td.rae, .cmp th.is-rae {
  background: var(--brand-tint);
}

.tick {
  color: var(--ok);
  font-weight: 400;
}

.cross {
  color: var(--muted);
}

/* dark section */
.dark {
  background: var(--brand-800);
  color: oklch(94% 0.01 262deg);
}

.dark .h2, .dark h2, .dark h3, .dark .h3, .dark .h4 {
  color: #fff;
}

.dark .lede {
  color: oklch(86% 0.015 262deg);
}

.dark .eyebrow {
  color: var(--brass);
}

.dark .eyebrow::before {
  background: var(--brass);
}

.dark .card {
  background: oklch(28% 0.04 264deg);
  border-color: oklch(100% 0 0deg / 0.1);
}

.dark .card p {
  color: oklch(84% 0.015 262deg);
}

.dark .card__ico {
  background: oklch(100% 0 0deg / 0.08);
  color: var(--brass);
}

.dark .muted {
  color: oklch(72% 0.015 262deg);
}

/* feature row (split) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.split--rev .split__media {
  order: -1;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split--rev .split__media {
    order: 0;
  }
}
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 1rem;
  color: var(--ink-soft);
}

.checklist li b {
  color: var(--ink);
  font-weight: 400;
}

.check-ico {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--brand-tint);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.dark .checklist li {
  color: oklch(85% 0.015 262deg);
}

.dark .checklist li b {
  color: #fff;
}

.dark .check-ico {
  background: oklch(100% 0 0deg / 0.1);
  color: var(--brass);
}

/* stat */
.stat__n {
  font-family: var(--font-disp);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  letter-spacing: 0;
  line-height: 1;
}

.stat__l {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 8px;
}

.dark .stat__l {
  color: oklch(82% 0.015 262deg);
}

/* CTA block — engraved gold frame + corner rosette */
.cta-band {
  background: var(--brand-800);
  color: #fff;
  border-radius: 12px;
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px oklch(100% 0 0deg / 0.1), inset 0 0 0 5px transparent;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid oklch(75.5% 0.105 79deg / 0.32);
  border-radius: 7px;
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

/* pill list / tags */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: #fff;
}

.dark .pill {
  border-color: oklch(100% 0 0deg / 0.16);
  color: oklch(86% 0.015 262deg);
  background: oklch(100% 0 0deg / 0.04);
}

/* eyebrow + section header helper */
.sec-head {
  max-width: 56ch;
  margin-bottom: clamp(34px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sec-head .h2 {
  margin-top: 2px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--brand-900);
  color: oklch(82% 0.012 262deg);
  padding-block: 64px 36px;
}

.footer a {
  color: oklch(82% 0.012 262deg);
  transition: color 0.15s;
}

.footer a:hover {
  color: #fff;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid oklch(100% 0 0deg / 0.1);
}

@media (max-width: 860px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
.footer__brand p {
  color: oklch(70% 0.012 262deg);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 30ch;
}

.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(64% 0.012 262deg);
  font-weight: 400;
  margin-bottom: 14px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 0.84rem;
  color: oklch(64% 0.012 262deg);
}

.footer__bottom .mono {
  font-size: 0.78rem;
}

.flag-stripe {
  display: inline-flex;
  height: 12px;
  width: 18px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid oklch(100% 0 0deg / 0.2);
  vertical-align: middle;
}

.flag-stripe i {
  flex: 1;
}

/* reveal on scroll — content stays fully visible; only a gentle slide (no opacity
   hide, so frozen/non-painting capture contexts and exports never go blank) */
.reveal {
  opacity: 1;
  transform: none;
  transition: transform 0.55s ease;
}

.has-reveal .reveal {
  transform: translateY(14px);
}

.has-reveal .reveal.in {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal .reveal {
    transform: none;
  }
}
/* page hero (interior pages) */
.phero {
  background: var(--brand-800);
  color: #fff;
  padding-block: clamp(60px, 8vw, 104px);
  position: relative;
  overflow: hidden;
}

.phero .display {
  color: #fff;
}

.phero .lede {
  color: oklch(87% 0.015 262deg);
  max-width: 46ch;
}

.phero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(oklch(100% 0 0deg / 0.04) 1px, transparent 1px), linear-gradient(90deg, oklch(100% 0 0deg / 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 100% at 80% 0%, #000, transparent 70%);
  pointer-events: none;
}

.phero__in {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: oklch(78% 0.02 262deg);
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
}

.breadcrumb a:hover {
  color: #fff;
}

/* note / callout */
.note {
  border-left: 3px solid var(--brass);
  background: var(--brass-tint);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.note b {
  color: var(--ink);
}

/* countdown chip */
.count {
  display: inline-flex;
  gap: 10px;
}

.count__u {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
  min-width: 64px;
}

.count__n {
  font-family: var(--font-disp);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1;
}

.count__l {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

/* ============================================================
   Enhancements (announcement, mobile menu, FAQ, partners, etc.)
   ============================================================ */
/* anchor offset under sticky nav */
:where(section[id], [id].anchor) {
  scroll-margin-top: 92px;
}

/* announcement bar */
.annc {
  background: var(--brand-900);
  color: oklch(90% 0.015 262deg);
  font-size: 0.86rem;
}

.annc__in {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding-block: 7px;
  flex-wrap: wrap;
}

.annc__dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brass);
  flex: none;
  box-shadow: 0 0 0 0 oklch(78% 0.095 84deg / 0.6);
  animation: pulse 2.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 oklch(78% 0.095 84deg / 0.55);
  }
  70% {
    box-shadow: 0 0 0 7px oklch(78% 0.095 84deg / 0);
  }
  100% {
    box-shadow: 0 0 0 0 oklch(78% 0.095 84deg / 0);
  }
}
.annc__txt b {
  color: #fff;
  font-weight: 400;
}

.annc__cd {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--brass);
  border: 1px solid oklch(100% 0 0deg / 0.18);
  border-radius: 999px;
  padding: 2px 9px;
  letter-spacing: 0.04em;
}

.annc__cta {
  margin-left: auto;
  font-weight: 400;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border-bottom: 1.5px solid transparent;
}

.annc__cta .arr {
  transition: transform 0.18s;
}

.annc__cta:hover .arr {
  transform: translateX(3px);
}

@media (max-width: 620px) {
  .annc__cd {
    display: none;
  }
  .annc__cta {
    margin-left: 0;
  }
}
/* burger + drawer */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav__burger span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .nav__burger {
    display: flex;
  }
}
.drawer {
  position: fixed;
  inset: 0 0 auto 0;
  top: 0;
  z-index: 150;
  background: oklch(99% 0.004 258deg / 0.98);
  backdrop-filter: blur(12px);
  padding: 88px var(--gut) 32px;
  border-bottom: 1px solid var(--line);
  transform: translateY(-8%);
  opacity: 0;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.drawer.in {
  transform: none;
  opacity: 1;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: var(--maxw);
  margin-inline: auto;
}

.drawer__nav a {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: -0.01em;
}

.drawer__nav a[aria-current=page] {
  color: var(--brand-600);
  font-weight: 400;
  box-shadow: inset 3px 0 0 var(--brass-deep);
  padding-left: 12px;
}

.drawer__cta {
  margin-top: 16px;
  justify-content: center;
  border-bottom: 0 !important;
  color: #fff !important;
}

html.drawer-open {
  overflow: hidden;
}

/* scroll progress */
.scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
  background: transparent;
}

.scrollbar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brass));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* back to top */
.totop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  border: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px -10px oklch(20% 0.05 262deg / 0.6);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
}

.totop.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.totop:hover {
  background: var(--brand-700);
}

/* partner / sovereignty proof strip */
.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 30px;
}

.partners__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.partner {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}

.partner::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--brand-tint);
  border: 1px solid var(--line);
  flex: none;
}

.dark .partner {
  color: oklch(86% 0.015 262deg);
}

.dark .partner::before {
  background: oklch(100% 0 0deg / 0.08);
  border-color: oklch(100% 0 0deg / 0.14);
}

.dark .partners__label {
  color: oklch(70% 0.015 262deg);
}

/* FAQ accordion */
.faq {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item:last-child {
  border-bottom: 0;
}

.faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: background 0.15s;
}

.faq__item > summary::-webkit-details-marker {
  display: none;
}

.faq__item > summary:hover {
  background: var(--paper-2);
}

.faq__item > summary .pm {
  width: 24px;
  height: 24px;
  flex: none;
  position: relative;
}

.faq__item > summary .pm::before, .faq__item > summary .pm::after {
  content: "";
  position: absolute;
  background: var(--brand-600);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}

.faq__item > summary .pm::before {
  inset: 11px 4px auto 4px;
  height: 2px;
}

.faq__item > summary .pm::after {
  inset: 4px 11px 4px 11px;
  width: 2px;
}

.faq__item[open] > summary .pm::after {
  transform: scaleY(0);
  opacity: 0;
}

.faq__item[open] > summary {
  color: var(--brand-600);
}

.faq__body {
  padding: 0 24px 24px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 72ch;
}

.faq__body a {
  color: var(--brand-600);
  border-bottom: 1.5px solid var(--brand-tint);
}

/* steps (numbered) */
.steps {
  counter-reset: step;
  display: grid;
  gap: 22px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
}

.step__n {
  counter-increment: step;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-disp);
  font-weight: 400;
  font-size: 1.3rem;
}

.step__n::before {
  content: counter(step, decimal-leading-zero);
}

.step h3, .step .h4 {
  margin-bottom: 6px;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* honest founders band */
.founders {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-900));
  color: #fff;
  border-radius: 14px;
  padding: clamp(34px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

.founders__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(oklch(100% 0 0deg / 0.05) 1px, transparent 1px), linear-gradient(90deg, oklch(100% 0 0deg / 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(110% 120% at 100% 0%, #000, transparent 65%);
  pointer-events: none;
}

/* edition compare table reuse .cmp; add mini variant spacing */
.editions {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.editions th, .editions td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.editions thead th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.editions tbody td:first-child {
  font-weight: 400;
}

.editions td:not(:first-child) {
  color: var(--ink-soft);
}

.editions tr:last-child td {
  border-bottom: 0;
}

/* newsletter in footer */
.nl {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  max-width: 340px;
}

.nl input {
  flex: 1;
  min-width: 0;
  padding: 0.7em 0.9em;
  border-radius: var(--radius);
  border: 1px solid oklch(100% 0 0deg / 0.2);
  background: oklch(100% 0 0deg / 0.06);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
}

.nl input::placeholder {
  color: oklch(62% 0.012 262deg);
}

.nl button {
  white-space: nowrap;
}

/* edge advantages grid */
.edges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 720px) {
  .edges {
    grid-template-columns: 1fr;
  }
}
.edge {
  background: var(--paper);
  padding: 28px 30px;
  transition: background 0.18s;
}

.edge:hover {
  background: #fff;
}

.edge h3 {
  font-size: 1.1rem;
  letter-spacing: -0.012em;
  margin-bottom: 7px;
  line-height: 1.15;
}

.edge p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.edge p b {
  color: var(--ink);
  font-weight: 400;
}

/* ============================================================
   Graphic devices — patrimoine français : filets, rosace, guilloché
   ============================================================ */
/* filet — fine engraved double rule */
.filet {
  border: 0;
  height: 4px;
  width: 100%;
  border-top: 1px solid var(--brass-deep);
  border-bottom: 1px solid var(--brass-deep);
  opacity: 0.55;
  margin: 0;
}

.filet--center {
  width: 64px;
}

.dark .filet {
  border-color: var(--brass);
  opacity: 0.5;
}

/* rosace — concentric cockade / wax-seal ornament */
.rosace {
  width: 38px;
  height: 38px;
  color: var(--brass-deep);
  flex: none;
}

.dark .rosace, .rosace--light {
  color: var(--brass);
}

/* ornamented section header: small rosette above an eyebrow */
.crest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* guilloché — engine-turned engraving for dark panels (very subtle) */
.guilloche, .phero, .dark, .founders, .cta-band, .founders__grid {
  position: relative;
}

.guilloche::after,
.phero .phero__grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 18% 120%, transparent 0 13px, oklch(100% 0 0deg / 0.035) 13px 14px), repeating-radial-gradient(circle at 88% -20%, transparent 0 15px, oklch(100% 0 0deg / 0.03) 15px 16px);
  pointer-events: none;
}

/* guilloché wash baked into the page hero + dark CTA */
.phero::before, .cta-band .guilloche-wash {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 12% 110%, transparent 0 16px, oklch(100% 0 0deg / 0.028) 16px 17px), repeating-radial-gradient(circle at 92% -10%, transparent 0 18px, oklch(75.5% 0.105 79deg / 0.05) 18px 19px);
  pointer-events: none;
  z-index: 0;
}

/* seal chip — small framed crest used in headers / brand kit */
.seal {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--brass-deep);
  border-radius: 50%;
  color: var(--brand);
  position: relative;
}

.seal::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--brass-deep);
  border-radius: 50%;
  opacity: 0.5;
}

.dark .seal {
  border-color: var(--brass);
  color: #fff;
}

.dark .seal::before {
  border-color: var(--brass);
}

/* aud names + key product titles get the serif voice for elegance */
.aud__name {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

/* ============================================================
   Hero auto-slider — slides stack in one grid cell; slide 1 is the
   visible base (capture/print safe), others fade in on rotation.
   ============================================================ */
.hero-slider {
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.2s ease;
    transform: none;
  }
}
.hero-dots {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-dot {
  width: 34px;
  height: 4px;
  border-radius: 99px;
  background: var(--line);
  border: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s, width 0.3s;
}

.hero-dot:hover {
  background: var(--brand-tint);
}

.hero-dot[aria-current=true] {
  background: var(--brand-tint);
  width: 56px;
}

.hero-dot > i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--brand);
  border-radius: 99px;
}

.hero-dot[aria-current=true] > i.run {
  animation: heroProg var(--hero-int, 6.5s) linear forwards;
}

.hero-slider.is-paused .hero-dot > i.run {
  animation-play-state: paused;
}

.hero-dots__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 6px;
}

@keyframes heroProg {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dot[aria-current=true] > i {
    width: 100%;
    animation: none;
  }
}
/* language switch removed — platform is French-only.
   French sovereignty visuals below. */
.flag-fr {
  display: inline-block;
  width: 26px;
  height: 17px;
  border-radius: 2.5px;
  flex: none;
  vertical-align: middle;
  overflow: hidden;
  box-shadow: 0 0 0 1px oklch(0% 0 0deg / 0.1);
}

.flag-fr--lg {
  width: 40px;
  height: 27px;
  border-radius: 3.5px;
}

.flag-fr--sm {
  width: 19px;
  height: 13px;
  border-radius: 2px;
}

/* nav locale chip → flag + FR */
.nav .lang {
  gap: 7px;
}

/* "Made in France" hero badge */
.fr-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.fr-badge b {
  color: var(--ink);
  font-weight: 400;
}

.fr-badge .dotsep {
  width: 3px;
  height: 3px;
  border-radius: 99px;
  background: var(--muted);
}

/* sovereignty showcase band */
.souverain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 760px) {
  .souverain {
    grid-template-columns: 1fr;
  }
}
.souverain__cell {
  background: var(--paper);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.souverain__ico {
  width: 44px;
  height: 44px;
  color: var(--brand);
}

.souverain__cell h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.28rem;
  letter-spacing: 0;
  line-height: 1.05;
}

.souverain__cell p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.souverain__cell .mono {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

/* ============================================================
   Interactive console (calculator / registre / e-invoicing / sovereignty)
   ============================================================ */
.console {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -40px oklch(20% 0.05 270deg / 0.4);
}

.console__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 6px;
}

.console__tab {
  flex: 1 1 auto;
  min-width: 150px;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  border-radius: var(--radius);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  transition: background 0.16s, color 0.16s;
}

.console__tab:hover {
  color: var(--ink);
}

.console__tab.is-on {
  background: var(--brand);
  color: #fff;
}

.console__panel {
  padding: clamp(22px, 3.4vw, 40px);
}

.console__panel[hidden] {
  display: none;
}

/* shared control / slider */
.ctrl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.ctrl__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.ctrl__row b {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--brand);
  letter-spacing: 0;
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 99px;
  background: var(--line);
  outline-offset: 6px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 1px 6px oklch(20% 0.05 270deg / 0.35);
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  cursor: pointer;
}

select {
  width: 100%;
  padding: 0.7em 1em;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  color: var(--ink);
}

/* calculator */
.calc {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

@media (max-width: 760px) {
  .calc {
    grid-template-columns: 1fr;
  }
}
.calc__controls {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.calc__note {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}

.calc__result {
  background: var(--brand-800);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.calc__k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

.calc__big {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.calc__gauge {
  height: 150px;
  margin: 6px 0;
}

.calc__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: oklch(86% 0.02 270deg);
  border-top: 1px solid oklch(100% 0 0deg / 0.12);
  padding-top: 16px;
}

.calc__foot b {
  color: #fff;
}

.calc__foot .tlink {
  color: var(--brass);
  border-color: transparent;
}

/* registre explorer */
.reg {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

@media (max-width: 760px) {
  .reg {
    grid-template-columns: 1fr;
  }
}
.reg__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.chip-f {
  padding: 8px 15px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 400;
  font-size: 0.86rem;
  color: var(--ink-soft);
  transition: all 0.16s;
}

.chip-f:hover {
  border-color: var(--brand);
  color: var(--ink);
}

.chip-f.is-on {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.reg__list {
  display: flex;
  flex-direction: column;
}

.reg__item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line-soft);
}

.reg__item:last-child {
  border-bottom: 0;
}

.reg__type {
  width: 8px;
  height: 8px;
  border-radius: 99px;
}

.reg__nm {
  font-weight: 400;
  font-size: 0.93rem;
}

.reg__meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.reg__cost {
  font-weight: 400;
  font-size: 0.9rem;
}

.reg__donut {
  height: 210px;
}

.reg__legend {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 6px;
}

.reg__legend div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.reg__legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.reg__legend b {
  margin-left: auto;
  color: var(--ink);
  font-weight: 400;
}

/* e-invoicing readiness */
.einv {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

@media (max-width: 760px) {
  .einv {
    grid-template-columns: 1fr;
  }
}
.einv__quiz {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.einv__q {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--ink);
}

.einv__q b {
  font-weight: 400;
}

.seg {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.seg button {
  padding: 9px 16px;
  border: 0;
  background: #fff;
  font-weight: 400;
  font-size: 0.86rem;
  color: var(--ink-soft);
  border-right: 1px solid var(--line);
  transition: background 0.15s, color 0.15s;
}

.seg button:last-child {
  border-right: 0;
}

.seg button.is-on {
  background: var(--brand);
  color: #fff;
}

.einv__result {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.einv__score {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--brand);
}

.einv__score small {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 4px;
}

.einv__bar {
  height: 8px;
  border-radius: 99px;
  background: var(--line);
  overflow: hidden;
}

.einv__bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--garance), var(--warn), var(--ok));
  transition: width 0.5s ease;
}

.einv__verdict {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
  min-height: 3em;
}

/* sovereignty checker */
.souv {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

@media (max-width: 760px) {
  .souv {
    grid-template-columns: 1fr;
  }
}
.souv__pick {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.souv__result {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.souv__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.souv__tool {
  font-weight: 400;
  font-size: 1.1rem;
}

.souv__rows {
  padding: 6px 22px 16px;
}

.souv__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}

.souv__row:last-child {
  border-bottom: 0;
}

.souv__row span:first-child {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.souv__row b {
  font-weight: 400;
}

.risk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 0.84rem;
}

.risk i {
  width: 9px;
  height: 9px;
  border-radius: 99px;
}

.risk--hi i {
  background: var(--garance);
}

.risk--hi {
  color: var(--garance-deep);
}

.risk--mid i {
  background: var(--warn);
}

.risk--mid {
  color: oklch(50% 0.12 64deg);
}

.risk--lo i {
  background: var(--ok);
}

.risk--lo {
  color: oklch(42% 0.09 160deg);
}

.souv__alt {
  background: var(--brand-tint);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
}

.souv__alt b {
  color: var(--brand-600);
}

/* ============================================================
   Réglementaire timeline
   ============================================================ */
.tl {
  position: relative;
}

.tl__track {
  position: relative;
  height: 2px;
  background: var(--line);
  margin: 6px 0 0;
  border-radius: 99px;
  overflow: hidden;
}

.tl__track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brass));
  transform-origin: 0 50%;
}

.tl__nodes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: -1px;
}

@media (max-width: 760px) {
  .tl__nodes {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
.tl__node {
  background: transparent;
  border: 0;
  padding: 18px 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  cursor: pointer;
  text-align: left;
  position: relative;
  color: var(--ink-soft);
  transition: color 0.18s;
}

.tl__node:hover {
  color: var(--ink);
}

.tl__dot {
  position: absolute;
  top: -5px;
  left: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}

.tl__node.is-on .tl__dot {
  border-color: var(--brass-deep);
  background: var(--brass);
  transform: scale(1.25);
}

.tl__node.is-on {
  color: var(--ink);
}

.tl__date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.tl__ttl {
  font-weight: 400;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.tl__detail {
  margin-top: 26px;
  max-width: 62ch;
}

.tl__detail h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.tl__detail p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

/* founders scarcity */
.founders__meter {
  margin-top: 26px;
  max-width: 360px;
}

.founders__meter .bar {
  height: 8px;
  border-radius: 99px;
  background: oklch(100% 0 0deg / 0.14);
  overflow: hidden;
}

.founders__meter .bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brass), var(--brass-deep));
  transition: width 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.founders__meter .lbl {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: oklch(86% 0.02 270deg);
  margin-bottom: 9px;
}

.founders__meter .lbl b {
  color: #fff;
}

/* ============================================================
   Command palette (⌘K)
   ============================================================ */
.nav__cmdk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-soft);
  transition: border-color 0.16s, color 0.16s;
}

.nav__cmdk:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.nav__cmdk .mono {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

@media (max-width: 560px) {
  .nav__cmdk .mono {
    display: none;
  }
}
.cmdk {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: start center;
}

.cmdk[hidden] {
  display: none;
}

.cmdk__scrim {
  position: absolute;
  inset: 0;
  background: oklch(20% 0.04 270deg / 0.42);
  backdrop-filter: blur(3px);
  animation: cmdkFade 0.18s ease;
}

.cmdk__panel {
  position: relative;
  margin-top: 12vh;
  width: min(560px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -30px oklch(20% 0.05 270deg / 0.5);
  overflow: hidden;
  animation: cmdkPop 0.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes cmdkFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes cmdkPop {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cmdk__input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  font: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  outline: none;
}

.cmdk__list {
  list-style: none;
  margin: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 46vh;
  overflow: auto;
}

.cmdk__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 400;
  font-size: 0.97rem;
  color: var(--ink-soft);
}

.cmdk__item:hover {
  background: var(--paper-2);
  color: var(--ink);
}

.cmdk__item.is-sel {
  background: var(--brand);
  color: #fff;
}

.cmdk__item .cmdk__go {
  opacity: 0;
  transition: opacity 0.15s;
}

.cmdk__item.is-sel .cmdk__go, .cmdk__item:hover .cmdk__go {
  opacity: 1;
}

.cmdk__foot {
  padding: 10px 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

html.cmdk-open {
  overflow: hidden;
}

/* ============================================================
   Self-drawing guilloché seal (capture-safe: rests fully drawn)
   ============================================================ */
.seal-draw {
  width: 84px;
  height: 84px;
  color: var(--brass);
}

.seal-draw circle, .seal-draw rect {
  vector-effect: non-scaling-stroke;
}

.seal-draw .d1, .seal-draw .d2 {
  stroke-dasharray: 120;
}

@media (prefers-reduced-motion: no-preference) {
  .seal-draw.in .d1 {
    animation: sealDraw 1.1s ease;
  }
  .seal-draw.in .d2 {
    animation: sealDraw 1.2s ease 0.15s;
  }
  .seal-draw.in .lz {
    animation: sealPop 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s;
  }
}
@keyframes sealDraw {
  from {
    stroke-dashoffset: 120;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes sealPop {
  from {
    opacity: 0;
    transform: scale(0.4);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* ============================================================
   FX — texturized gradient background, guilloché, seams, charts
   (D3 + GSAP + ECharts driven; CSS provides the safe base)
   ============================================================ */
/* fixed texturized gradient backdrop — shows through transparent sections */
#rae-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(130% 90% at 82% -8%, oklch(93% 0.035 264deg / 0.85), transparent 58%), radial-gradient(110% 80% at 2% 108%, oklch(95% 0.03 86deg / 0.45), transparent 55%), radial-gradient(90% 70% at 50% 45%, oklch(98.5% 0.006 264deg / 0), transparent 70%), var(--paper);
}

#rae-bg .rae-grain {
  position: absolute;
  inset: -10%;
  opacity: 0.5;
  mix-blend-mode: multiply;
  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.86' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

#rae-bg .rae-guilloche {
  position: absolute;
  color: var(--brass-deep);
  will-change: transform;
}

#rae-bg .rae-guilloche svg {
  width: 100%;
  height: 100%;
  display: block;
}

#rae-bg .rae-guilloche path {
  fill: none;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}

#rae-bg .rae-guilloche--tr {
  top: -16vh;
  right: -14vw;
  width: 64vw;
  height: 64vw;
  max-width: 880px;
  max-height: 880px;
  opacity: 0.1;
  -webkit-mask-image: radial-gradient(closest-side, #000 55%, transparent 78%);
  mask-image: radial-gradient(closest-side, #000 55%, transparent 78%);
}

#rae-bg .rae-guilloche--bl {
  bottom: -22vh;
  left: -16vw;
  width: 70vw;
  height: 70vw;
  max-width: 920px;
  max-height: 920px;
  opacity: 0.07;
  color: var(--brand);
  -webkit-mask-image: radial-gradient(closest-side, #000 50%, transparent 76%);
  mask-image: radial-gradient(closest-side, #000 50%, transparent 76%);
}

@media (max-width: 700px) {
  #rae-bg .rae-guilloche--tr, #rae-bg .rae-guilloche--bl {
    opacity: 0.06;
  }
}
/* soft gradient band — replaces hard-bordered panel sections */
.band-soft {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, oklch(96.5% 0.006 264deg / 0.7) 14%, oklch(96.5% 0.006 264deg / 0.7) 86%, transparent 100%) !important;
  border: 0 !important;
}

.band-veil {
  position: relative;
}

.band-veil::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(60% 80% at 88% 0%, oklch(42% 0.1 270deg / 0.06), transparent 60%), radial-gradient(50% 70% at 6% 100%, oklch(70% 0.1 80deg / 0.07), transparent 60%);
}

.band-veil > * {
  position: relative;
  z-index: 1;
}

/* guilloché seam ribbon between mood changes */
.fx-seam {
  position: relative;
  height: clamp(60px, 9vw, 120px);
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.fx-seam svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fx-seam .ribbon {
  fill: none;
  stroke: var(--brass-deep);
  stroke-width: 1;
  opacity: 0.5;
}

/* dark sections: ease the top edge from the light page into bleu */
.fx-into-dark {
  position: relative;
}

.fx-into-dark::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 120px;
  transform: translateY(-100%);
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, color-mix(in oklab, var(--brand-800) 0%, transparent) 40%, var(--brand-800) 100%);
}

/* echarts containers */
.echart {
  width: 100%;
  height: 150px;
}

.echart svg {
  overflow: visible;
}

.echart--tall {
  height: 230px;
}

.echart--dash {
  height: 200px;
}

/* let dark/hero sections layer their own texture above the fixed bg */
.dark, .phero, .founders, .cta-band {
  isolation: isolate;
}

/* ============================================================
   Premium pricing (annual)
   ============================================================ */
.price-grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.price-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.price-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-inline: auto;
}

@media (max-width: 860px) {
  .price-grid--3 {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
}
@media (max-width: 620px) {
  .price-grid--2 {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.tier::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brass));
  opacity: 0;
  transition: opacity 0.2s;
}

.tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -36px oklch(20% 0.05 270deg / 0.4);
  border-color: var(--brand-tint);
}

.tier:hover::before {
  opacity: 1;
}

.tier--feat {
  border-color: var(--brand);
  border-width: 1.5px;
  box-shadow: 0 28px 64px -40px oklch(20% 0.07 270deg / 0.5);
}

.tier--feat::before {
  opacity: 1;
}

.tier--dark {
  background: var(--brand-800);
  border-color: transparent;
  color: #fff;
  isolation: isolate;
}

.tier--dark .tier__name, .tier--dark .tier__price-n {
  color: #fff;
}

.tier--dark .tier__desc, .tier--dark .tier__feat li {
  color: oklch(86% 0.02 270deg);
}

.tier--dark .tier__per, .tier--dark .tier__note {
  color: oklch(74% 0.02 270deg);
}

.tier--dark .tier__feat svg {
  color: var(--brass);
}

.tier--dark .tier__guilloche {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: repeating-radial-gradient(circle at 90% -10%, transparent 0 14px, oklch(75.5% 0.105 79deg / 0.05) 14px 15px);
}

.tier__ribbon {
  position: absolute;
  top: 16px;
  right: -34px;
  transform: rotate(45deg);
  background: var(--brass);
  color: var(--brand-900);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 40px;
}

.tier__ico {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--brand);
}

.tier--dark .tier__ico {
  color: var(--brass);
}

.tier__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1;
}

.tier__tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 6px;
  min-height: 2.6em;
}

.tier__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 20px 0 2px;
  flex-wrap: wrap;
}

.tier__price-n {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.tier__price-n.is-quote {
  font-size: 2.1rem;
  line-height: 1;
}

.tier__per {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.tier__sub {
  font-size: 0.82rem;
  color: var(--brass-deep);
  font-weight: 400;
  margin-bottom: 22px;
  min-height: 1.2em;
}

.tier__divider {
  height: 1px;
  background: var(--line-soft);
  margin: 0 0 20px;
}

.tier--dark .tier__divider {
  background: oklch(100% 0 0deg / 0.12);
}

.tier__feat {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0 0 26px;
  flex: 1;
}

.tier__feat li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.tier__feat li b {
  color: var(--ink);
  font-weight: 400;
}

.tier--dark .tier__feat li b {
  color: #fff;
}

.tier__feat svg {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--brand);
  flex: none;
}

.tier__cta {
  margin-top: auto;
}

.tier__note {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

/* billing toggle / annual emphasis */
.price-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
}

.price-switch b {
  color: var(--brand-600);
}

.price-switch .save-pill {
  background: var(--brass-tint);
  color: var(--brass-deep);
  font-weight: 400;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 0.72rem;
}

/* ============================================================
   Improvements: zero-cookie notice · chart skeleton · sticky CTA · print
   ============================================================ */
/* "Zéro cookie" inverted notice — confirms NO tracking (sets no cookie itself) */
.nocookie {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 130;
  max-width: 340px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  background: var(--brand-900);
  color: oklch(92% 0.015 262deg);
  border: 1px solid oklch(100% 0 0deg / 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -24px oklch(20% 0.05 270deg / 0.7);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.4s;
}

.nocookie.in {
  transform: none;
  opacity: 1;
}

.nocookie__ico {
  width: 30px;
  height: 30px;
  flex: none;
  color: var(--brass);
}

.nocookie__b {
  font-size: 0.9rem;
  line-height: 1.45;
}

.nocookie__b b {
  color: #fff;
  font-weight: 400;
}

.nocookie__b a {
  color: var(--brass);
  border-bottom: 1px solid oklch(78% 0.095 84deg / 0.4);
}

.nocookie__x {
  margin-left: 6px;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 0;
  background: oklch(100% 0 0deg / 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: background 0.15s;
}

.nocookie__x:hover {
  background: oklch(100% 0 0deg / 0.16);
}

@media (max-width: 520px) {
  .nocookie {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}
/* chart skeleton shimmer (shown until ECharts paints; JS removes .is-loading) */
.echart.is-loading, .calc__gauge.is-loading, .reg__donut.is-loading {
  position: relative;
}

.echart.is-loading::after, .calc__gauge.is-loading::after, .reg__donut.is-loading::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 6px;
  background: linear-gradient(100deg, var(--paper-2) 30%, var(--paper-3) 50%, var(--paper-2) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.3s ease infinite;
}

.calc__result .calc__gauge.is-loading::after {
  background: linear-gradient(100deg, oklch(100% 0 0deg / 0.05) 30%, oklch(100% 0 0deg / 0.12) 50%, oklch(100% 0 0deg / 0.05) 70%);
  background-size: 200% 100%;
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .echart.is-loading::after, .calc__gauge.is-loading::after, .reg__donut.is-loading::after {
    animation: none;
  }
}
/* sticky demo CTA (appears on scroll; dismissible) */
.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 115;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px 12px 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 99px;
  box-shadow: 0 16px 40px -16px oklch(20% 0.06 270deg / 0.6);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}

.sticky-cta.show {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__t {
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.sticky-cta__t small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--brass);
  font-weight: 400;
}

.sticky-cta__go {
  width: 34px;
  height: 34px;
  border-radius: 99px;
  background: var(--brass);
  color: var(--brand-900);
  display: grid;
  place-items: center;
  flex: none;
}

.sticky-cta__x {
  width: 24px;
  height: 24px;
  border-radius: 99px;
  border: 0;
  background: oklch(100% 0 0deg / 0.14);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.sticky-cta__x:hover {
  background: oklch(100% 0 0deg / 0.24);
}

@media (max-width: 560px) {
  .sticky-cta {
    right: 12px;
    bottom: 76px;
  }
  .sticky-cta__t small {
    display: none;
  }
}
/* coexist; totop sits left of it */
.totop {
  right: 76px;
}

@media (max-width: 560px) {
  .totop {
    right: 12px;
  }
}
/* ============================================================
   Print — clean dossier output (procurement-friendly)
   ============================================================ */
@media print {
  .nav, .annc, .drawer, .scrollbar, .totop, .sticky-cta, .nocookie, .cmdk, .nav__burger,
  #rae-bg, .hero-dots, .hero-dots__label, .fr-badge, .console__tabs {
    display: none !important;
  }
  html, body {
    background: #fff !important;
    color: #000 !important;
  }
  .section, .section--tight {
    padding-block: 18px !important;
  }
  .dark, .phero, .founders, .cta-band, .tier--dark, .band-soft, .band-veil {
    background: #fff !important;
    color: #000 !important;
  }
  .dark .h2, .dark h2, .dark h3, .phero .display, .cta-band .h2 {
    color: #000 !important;
  }
  .hero-slide {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-slide:not(.is-active) {
    display: none !important;
  }
  .console__panel[hidden] {
    display: block !important;
  }
  a {
    text-decoration: underline;
    color: #000 !important;
  }
  .card, .tier, .ui-card, .edge {
    break-inside: avoid;
    box-shadow: none !important;
    border-color: #bbb !important;
  }
  .eyebrow, .trust__k, .mono {
    color: #555 !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .legal-layout {
    grid-template-columns: 1fr !important;
  }
  .legal-toc {
    display: none !important;
  }
}
/* ============================================================
   Legal pages — prose + sticky table of contents
   ============================================================ */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

@media (max-width: 880px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.legal-toc {
  position: sticky;
  top: 96px;
  align-self: start;
}

@media (max-width: 880px) {
  .legal-toc {
    position: static;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    background: #fff;
  }
}
.legal-toc__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.legal-toc li {
  counter-increment: toc;
}

.legal-toc a {
  display: flex;
  gap: 10px;
  padding: 7px 10px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.35;
  border-left: 2px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.legal-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--brass-deep);
  flex: none;
  padding-top: 1px;
}

.legal-toc a:hover {
  color: var(--ink);
  background: var(--paper-2);
}

.legal-toc a.is-current {
  color: var(--brand-600);
  border-left-color: var(--brass-deep);
  background: var(--brand-tint);
  font-weight: 400;
}

.legal-prose {
  max-width: 72ch;
}

.legal-prose > section {
  padding-block: 30px;
  border-top: 1px solid var(--line-soft);
  scroll-margin-top: 96px;
}

.legal-prose > section:first-of-type {
  border-top: 0;
  padding-top: 6px;
}

.legal-prose h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: 0;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}

.legal-prose h2 .num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--brass-deep);
  letter-spacing: 0.04em;
  flex: none;
}

.legal-prose h3 {
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 22px 0 8px;
  color: var(--ink);
}

.legal-prose p, .legal-prose li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.62;
}

.legal-prose p {
  margin-bottom: 14px;
  text-wrap: pretty;
}

.legal-prose strong, .legal-prose b {
  color: var(--ink);
  font-weight: 400;
}

.legal-prose a {
  color: var(--brand-600);
  border-bottom: 1.5px solid var(--brand-tint);
}

.legal-prose a:hover {
  border-color: var(--brand-600);
}

.legal-prose ul, .legal-prose ol {
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.legal-prose ul li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}

.legal-prose ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--brass);
}

.legal-prose ol {
  counter-reset: ol;
}

.legal-prose ol li {
  position: relative;
  padding-left: 30px;
  counter-increment: ol;
  color: var(--ink-soft);
}

.legal-prose ol li::before {
  content: counter(ol) ".";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--brass-deep);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 6px 0 18px;
  font-size: 0.93rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.legal-table th, .legal-table td {
  text-align: left;
  padding: 12px 15px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.legal-table thead th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  background: var(--paper-2);
}

.legal-table td {
  color: var(--ink-soft);
}

.legal-table td:first-child {
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: oklch(82% 0.02 270deg);
}

.legal-keycard {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 18px 22px;
  margin: 4px 0 20px;
}

.legal-keycard p {
  margin: 0;
  font-size: 0.95rem;
}

.legal-keycard p + p {
  margin-top: 8px;
}

.legal-defs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 16px;
}

.legal-defs div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

.legal-defs dt {
  font-weight: 400;
  color: var(--ink);
  font-size: 0.96rem;
}

.legal-defs dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

/* ============================================================
   Regular weight everywhere — no bold rendered (brand mandate)
   <b>/<strong> stay semantic but never appear visually heavier.
   ============================================================ */
b, strong, .display, .h2, .h3, .h4,
h1, h2, h3, h4, h5, h6,
.logo, .logo__word, .nav__links a, .nav__links a[aria-current=page] {
  font-weight: 400;
}

* {
  font-synthesis-weight: none;
}

/*# sourceMappingURL=raemora.css.map */