/* ═══════════════════════════════════════════════════════════
   NCF — styles partagés (navbar, bandeau Novances, sections,
   boutons, footer, reveal). Spécificités page = inline <style>.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Dark palette (disposition C) ── */
  --navy-deep: #050D1D;
  --navy:      #0A1F3D;     /* anciennement #1B244B — réaligné sur la référence */
  --navy-mid:  #1A3055;
  --navy-2:    #2A3361;

  --cyan:        #00B8FF;
  --cyan-bright: #33CBFF;
  --cyan-soft:   #88DEFF;
  --blue:        #00B8FF;    /* alias compat — pointe vers cyan */
  --blue-d:      #0090CC;

  --violet:  #532EFB;
  --magenta: #EC4899;
  --green:   #22C55E;

  /* Texte sur fond sombre */
  --ink:     #E8EFF7;
  --ink-dim: #A4B3C9;
  --muted:   #5F7391;

  /* Surfaces / bordures glass */
  --surface-1: rgba(26, 48, 85, 0.45);
  --surface-2: rgba(10, 31, 61, 0.55);
  --border:       rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --glow:          rgba(0, 184, 255, 0.30);

  /* Compat anciens alias (utilisés par la 1re version du site) */
  --gl: var(--navy);
  --gm: var(--ink-dim);
  --gd: var(--ink);

  /* Fonts */
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;

  /* Cas d'usage — hues distincts, adaptés au dark */
  --c-succession:      #F59E0B;               /* ambre brillant (lisible sur dark) */
  --c-succession-soft: rgba(245, 158, 11, 0.14);
  --c-succession-tint: rgba(245, 158, 11, 0.06);
  --c-minoritaires:      #532EFB;             /* violet */
  --c-minoritaires-soft: rgba(83, 46, 251, 0.16);
  --c-minoritaires-tint: rgba(83, 46, 251, 0.06);
  --c-holding:      #10B981;                  /* émeraude */
  --c-holding-soft: rgba(16, 185, 129, 0.14);
  --c-holding-tint: rgba(16, 185, 129, 0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--navy-deep); }
body {
  font-family: var(--font-sans);
  background: var(--navy-deep);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 15% 15%, rgba(0, 184, 255, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 85% 85%, rgba(83, 46, 251, 0.04) 0%, transparent 55%);
  z-index: 0; pointer-events: none;
}
body > * { position: relative; z-index: 1; }

::-webkit-scrollbar       { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,184,255,0.35); }

/* ─────────── BANDEAU GROUPE NOVANCES (au-dessus navbar) ─────────── */
#novances-band {
  position: fixed; top: 0; left: 0; right: 0; z-index: 201;
  background: rgba(5, 13, 29, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.9);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 9px 2rem;
}
.nb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0.8rem; flex-wrap: wrap;
}
#novances-band strong { color: #fff; font-weight: 700; }
#novances-band .nb-sep { display: inline-block; opacity: 0.35; }
.nb-logo {
  height: 20px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.nb-tag { color: rgba(255,255,255,0.7); }
@media (max-width: 760px) {
  #novances-band { padding: 8px 1rem; font-size: 0.7rem; }
  .nb-tag, .nb-sep-md { display: none; }
  .nb-logo { height: 17px; }
}

/* ─────────── NAVBAR (dark-glass) ─────────── */
#navbar {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 200;
  background: rgba(5, 13, 29, 0.7);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
@media (max-width: 760px) {
  #navbar { top: 33px; }
}
#navbar.scrolled {
  background: rgba(5, 13, 29, 0.88);
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-link {
  font-size: 0.82rem; font-weight: 500;
  color: var(--ink-dim); text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--cyan);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--glow);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; background: var(--cyan); color: var(--navy-deep);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none; border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 0 0 1px var(--cyan-bright), 0 6px 24px -6px var(--glow);
}
.nav-cta:hover {
  background: var(--cyan-bright);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--cyan-bright), 0 10px 32px -6px var(--glow);
}

/* Hamburger */
#hbg { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
#hbg span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }

#mob-menu {
  display: none; position: fixed; inset: 0; top: 101px;
  background: rgba(5, 13, 29, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 199;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  border-top: 1px solid var(--border);
}
#mob-menu.open { display: flex; }
#mob-menu a { font-size: 1.05rem; font-weight: 500; color: var(--ink); text-decoration: none; }
#mob-menu a:hover { color: var(--cyan-bright); }

@media (max-width: 980px) {
  #hbg { display: flex; }
  .nav-links, .nav-cta-wrap { display: none !important; }
}
@media (max-width: 600px) {
  #novances-band { font-size: 0.66rem; padding: 6px 1rem; }
  #novances-band .nb-sep { margin: 0 0.35rem; }
}

/* Compense la hauteur bandeau + navbar pour les ancres */
:target { scroll-margin-top: 118px; }

/* ─────────── SECTION DE BASE ─────────── */
.section { padding: 5rem 0; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan-bright); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before {
  content: ''; width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  display: inline-block;
}
.section-title {
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.025em;
  color: #fff;
}
.section-sub {
  font-size: 0.95rem; color: var(--ink-dim); line-height: 1.75; margin-top: 0.875rem; max-width: 560px;
}

/* ─────────── BOUTONS ─────────── */
.btn-primary, .btn-outline, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em;
  text-decoration: none; border-radius: 8px;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer; border: none; font-family: inherit; white-space: nowrap;
}
.btn-primary {
  background: var(--cyan); color: var(--navy-deep);
  box-shadow: 0 0 0 1px var(--cyan-bright), 0 8px 28px -8px var(--glow);
}
.btn-primary:hover {
  background: var(--cyan-bright);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--cyan-bright), 0 12px 36px -8px var(--glow);
}

.btn-outline {
  background: rgba(255,255,255,0.03);
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--border-strong);
  color: #fff;
}

.btn-ghost { background: transparent; color: var(--ink); padding: 10px 0; }
.btn-ghost:hover { color: var(--cyan-bright); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

/* ─────────── REVEAL ON SCROLL ─────────── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.08s; }
.rv.d2 { transition-delay: 0.16s; }
.rv.d3 { transition-delay: 0.24s; }
.rv.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* ─────────── FOOTER (dark-glass) ─────────── */
.footer {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #030811 100%);
  color: var(--ink-dim);
  padding: 4rem 0 1.5rem;
  margin-top: 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(1200px 400px at 50% 0%, rgba(0, 184, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.footer > * { position: relative; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand img { height: 28px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand-tag {
  font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.7);
  max-width: 320px;
}
.footer-novances {
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer-novances strong { color: #fff; font-weight: 600; }
.footer-novances img {
  height: 22px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-col-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  font-size: 0.85rem; color: rgba(255,255,255,0.7); text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--cyan-bright); }

.footer-bottom {
  margin-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-legal a:hover { color: var(--cyan-bright); }

/* ─────────── LUEUR CYAN SOUS LE CURSEUR (site-wide) ─────────── */
#cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 320px; height: 320px;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle at center,
    rgba(0, 184, 255, 0.18) 0%,
    rgba(0, 184, 255, 0.07) 35%,
    transparent 65%);
  filter: blur(18px);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.4s ease;
  will-change: transform, opacity;
}
body.cursor-glow-active #cursor-glow { opacity: 1; }

@media (max-width: 980px), (hover: none), (prefers-reduced-motion: reduce) {
  #cursor-glow { display: none !important; }
}

/* ─────────── LAMP — INTRO BLOC "ALLER PLUS LOIN" (home) ─────────── */
.lamp-section {
  position: relative;
  width: 100%;
  height: 520px;
  background: var(--navy-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.lamp-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scaleY(1.25);
  pointer-events: none;
  z-index: 0;
}

.lamp-cone {
  position: absolute;
  height: 14rem;
  width: 15rem;
  top: calc(50% - 7rem);
  opacity: 0.5;
  overflow: visible;
  z-index: 2;
  transition: opacity 0.8s 0.3s ease-in-out, width 0.8s 0.3s ease-in-out, transform 0.8s 0.3s ease-in-out;
}
.lamp-cone.in { opacity: 1; width: 30rem; }
.lamp-cone--left  { right: 50%; background: conic-gradient(from 70deg at center top, var(--cyan), transparent 60%, transparent); }
.lamp-cone--right { left: 50%;  background: conic-gradient(from 290deg at center top, transparent, transparent 40%, var(--cyan)); }

.lamp-cone-mask {
  position: absolute;
  background: var(--navy-deep);
  z-index: 20;
}
.lamp-cone-mask--bottom { width: 100%; height: 10rem; left: 0; bottom: 0; -webkit-mask-image: linear-gradient(to top, white, transparent); mask-image: linear-gradient(to top, white, transparent); }
.lamp-cone-mask--inner-left  { width: 10rem; height: 100%; left: 0; bottom: 0; -webkit-mask-image: linear-gradient(to right, white, transparent); mask-image: linear-gradient(to right, white, transparent); }
.lamp-cone-mask--inner-right { width: 10rem; height: 100%; right: 0; bottom: 0; -webkit-mask-image: linear-gradient(to left, white, transparent);  mask-image: linear-gradient(to left, white, transparent); }

.lamp-floor-blur {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 12rem;
  transform: translateY(3rem) scaleX(1.5);
  background: var(--navy-deep);
  filter: blur(40px);
  z-index: 1;
}

.lamp-glow-soft {
  position: absolute;
  top: 50%;
  height: 9rem;
  width: 28rem;
  transform: translateY(-50%);
  border-radius: 9999px;
  background: var(--cyan);
  opacity: 0.5;
  filter: blur(80px);
  z-index: 50;
}

.lamp-glow-core {
  position: absolute;
  top: 50%;
  height: 9rem;
  width: 8rem;
  transform: translateY(-6rem);
  border-radius: 9999px;
  background: var(--cyan-bright);
  filter: blur(48px);
  z-index: 30;
  transition: width 0.8s 0.3s ease-in-out;
}
.lamp-glow-core.in { width: 16rem; }

.lamp-line {
  position: absolute;
  top: 50%;
  height: 2px;
  width: 15rem;
  transform: translateY(-7rem);
  background: var(--cyan-bright);
  z-index: 50;
  transition: width 0.8s 0.3s ease-in-out;
}
.lamp-line.in { width: 30rem; }

.lamp-mask-top {
  position: absolute;
  top: 50%;
  height: 11rem;
  width: 100%;
  transform: translateY(-12.5rem);
  background: var(--navy-deep);
  z-index: 40;
}

.lamp-content {
  position: relative;
  z-index: 60;
  transform: translateY(-4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
  max-width: 920px;
}
.lamp-content h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.3;
  font-weight: 600;
  color: var(--ink);
  margin: 0.75rem 0 1.5rem;
}

@media (max-width: 768px) {
  .lamp-section { height: auto; padding: 4rem 1rem; }
  .lamp-stage { display: none; }
  .lamp-content { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lamp-cone { opacity: 1; width: 30rem; transition: none; }
  .lamp-glow-core { width: 16rem; transition: none; }
  .lamp-line { width: 30rem; transition: none; }
}

/* ─────────────── ARTICLES RESSOURCES ─────────────── */
.article-hero {
  padding: 145px 0 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 620px at 18% 18%, rgba(0, 184, 255, 0.08), transparent 62%),
    radial-gradient(700px 520px at 88% 80%, rgba(83, 46, 251, 0.05), transparent 65%);
}
.article-wrap {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 2rem;
}
.article-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 1.4rem;
}
.article-breadcrumb a {
  color: var(--ink-dim);
  text-decoration: none;
}
.article-breadcrumb a:hover { color: var(--cyan-bright); }
.article-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--cyan-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.article-tag::before {
  content: '';
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.article-hero h1 {
  max-width: 850px;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.article-standfirst {
  max-width: 780px;
  margin-top: 1.35rem;
  color: var(--ink-dim);
  font-size: 1.06rem;
  line-height: 1.75;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.article-meta strong { color: var(--ink); font-weight: 700; }
.article-cover {
  margin-top: 3rem;
  height: min(42vw, 420px);
  min-height: 250px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-bottom: 0;
  background: var(--surface-2);
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-body {
  background: var(--navy-deep);
  padding: 4rem 0 5.5rem;
}
.article-layout {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 3.25rem;
  align-items: start;
}
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static !important; }
}
.article-content {
  max-width: 720px;
}
.article-content h2 {
  color: #fff;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  color: #fff;
  font-size: 1.05rem;
  margin: 1.7rem 0 0.7rem;
}
.article-content p,
.article-content li {
  color: var(--ink-dim);
  font-size: 0.97rem;
  line-height: 1.82;
}
.article-content p + p { margin-top: 1rem; }
.article-content ul,
.article-content ol {
  margin: 1rem 0 1.2rem;
  padding-left: 1.25rem;
}
.article-content li + li { margin-top: 0.55rem; }
.article-callout {
  margin: 2rem 0;
  padding: 1.2rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(0,184,255,0.22);
  background: rgba(0,184,255,0.07);
}
.article-callout strong {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
}
.article-aside {
  position: sticky;
  top: 125px;
  display: grid;
  gap: 1rem;
}
.article-side-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
  padding: 1.15rem;
}
.article-side-title {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.article-side-card p,
.article-side-card a {
  color: var(--ink-dim);
  font-size: 0.86rem;
  line-height: 1.65;
}
.article-side-card a {
  display: block;
  text-decoration: none;
}
.article-side-card a:hover { color: var(--cyan-bright); }
.article-cta {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(26,48,85,0.58), rgba(10,31,61,0.42));
}
.article-cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}
.article-cta p { margin-bottom: 1.2rem; }

/* Mobile baseline shared across the static pages */
@media (max-width: 640px) {
  body { font-size: 15px; }

  #novances-band {
    padding: 6px 0.85rem;
  }

  #navbar {
    top: 31px;
  }

  .nav-inner {
    height: 62px;
    padding: 0 1rem;
  }

  .nav-logo img {
    height: 28px;
  }

  #mob-menu {
    top: 93px;
    justify-content: flex-start;
    gap: 1.1rem;
    padding: 3.5rem 1rem 2rem;
    overflow-y: auto;
  }

  #mob-menu a {
    width: min(320px, 100%);
    max-width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  #mob-menu .nav-cta {
    justify-content: center;
  }

  :target {
    scroll-margin-top: 102px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-inner,
  .footer-inner,
  .article-wrap,
  .article-layout,
  .legal-wrap {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
  }

  .section-title {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .section-sub {
    max-width: 100%;
    font-size: 0.92rem;
  }

  .section-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .btn-primary,
  .btn-outline,
  .btn-ghost,
  .nav-cta {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    padding: 12px 18px;
  }

  .btn-ghost {
    width: auto;
  }

  .footer {
    padding-top: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .article-hero {
    padding-top: 116px;
  }

  .article-cover {
    min-height: 210px;
    margin-top: 2rem;
    border-radius: 8px;
    border-bottom: 1px solid var(--border);
  }

  .article-body {
    padding: 3rem 0 4rem;
  }

  .article-layout {
    gap: 2rem;
  }

  .article-content {
    max-width: 100%;
  }

  .article-content p,
  .article-content li {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .article-cta,
  .article-side-card {
    padding: 1.2rem;
  }

  .legal-hero {
    padding: 116px 0 3rem !important;
  }

  .legal-content {
    padding-bottom: 4rem !important;
  }

  .legal-section {
    padding: 1.6rem 0 !important;
  }
}

@media (max-width: 380px) {
  .section-inner,
  .footer-inner,
  .article-wrap,
  .article-layout,
  .legal-wrap {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .btn-primary,
  .btn-outline {
    font-size: 0.78rem;
    padding: 11px 14px;
  }
}
