/* ---------- Design tokens ---------- */
:root {
  --bg: #090c10;
  --bg-alt: #0d1117;
  --surface: #121821;
  --surface-2: #161d28;
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(148, 163, 184, 0.24);
  --text: #eef2f6;
  --text-muted: #94a3b8;
  --text-faint: #64748b;
  --emerald: #10b981;
  --emerald-strong: #059669;
  --emerald-soft: rgba(16, 185, 129, 0.12);
  --emerald-glow: rgba(16, 185, 129, 0.35);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container-max: 1440px;
  --pad-inline: clamp(1.25rem, 4vw, 5rem);
  --shadow-md: 0 20px 40px -20px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 30px 70px -25px rgba(0, 0, 0, 0.65);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, p, ul, ol, figure, form { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; font-size: 1rem; color: inherit; }
svg { display: block; }
::selection { background: var(--emerald); color: #04140d; }
:focus-visible { outline: 2px solid var(--emerald); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--emerald);
  color: #04140d;
  padding: 0.85rem 1.4rem;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  z-index: 999;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 12px var(--emerald-glow);
}

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-strong));
  color: #04140d;
  box-shadow: 0 12px 28px -10px var(--emerald-glow);
}
.btn--primary:hover { box-shadow: 0 18px 36px -12px var(--emerald-glow); }
.btn--ghost { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--emerald); color: var(--emerald); }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 12, 16, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  position: relative;
}
.logo { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; }
.logo span { color: var(--emerald); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav a:not(.btn) { font-size: 0.92rem; color: var(--text-muted); }
.nav a:not(.btn):hover { color: var(--text); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 60;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

@media (max-width: 760px) {
  .nav-burger { display: flex; }
  .nav {
    position: fixed;
    inset: 65px 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    padding: 1.5rem var(--pad-inline);
    border-top: 1px solid var(--border);
    opacity: 0;
    pointer-events: none;
  }
  .nav a:not(.btn) { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
  .nav .btn { margin-top: 1.25rem; width: 100%; }

  .nav-toggle:checked ~ .nav { opacity: 1; pointer-events: auto; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 11vw, 8.5rem) clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 12% 15%, rgba(16, 185, 129, 0.16), transparent 45%),
    radial-gradient(circle at 88% -5%, rgba(16, 185, 129, 0.1), transparent 40%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.15rem, 4.4vw, 3.85rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--emerald), #6ee7b7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub { color: var(--text-muted); font-size: clamp(1rem, 1.3vw, 1.15rem); max-width: 46ch; margin-bottom: 2.25rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; }
.trust-chips li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.85rem; color: var(--text-muted); }
.trust-chips li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); flex-shrink: 0; }

.hero__visual { display: flex; justify-content: center; }
.hero-widget {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}
.hero-widget__header {
  display: flex;
  align-items: center;
  padding: 0.9rem 1.1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.hero-widget__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); margin-right: 0.35rem; }
.hero-widget__url { margin-left: 0.5rem; font-size: 0.75rem; color: var(--text-faint); font-family: var(--mono); }
.hero-widget__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.hero-widget__label { font-weight: 600; font-size: 1rem; }
.hero-widget__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.hero-widget__field { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.65rem 0.85rem; }
.hero-widget__field span { display: block; font-size: 0.7rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.hero-widget__field strong { font-size: 0.9rem; font-weight: 600; }
.hero-widget__field--full { grid-column: 1 / -1; }
.hero-widget__cta {
  text-align: center;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-strong));
  color: #04140d;
  font-weight: 700;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.hero-widget__note { font-size: 0.72rem; color: var(--text-faint); text-align: center; }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: 2; }
  .hero-widget { max-width: 420px; transform: none; }
}

/* ---------- Portfolio ---------- */
.portfolio { padding-block: clamp(4rem, 8vw, 7rem); }
/* Trois blocs de taille strictement identique (decision D6) : trois colonnes egales, une
   hauteur d'apercu fixe, et chaque carte en colonne pour que les trois finissent au meme niveau. */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); align-items: stretch; }

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover { border-color: var(--border-strong); }

.portfolio-card__frame { display: block; }
.portfolio-card__browser-bar {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.portfolio-card__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); margin-right: 0.35rem; }
.portfolio-card__url { margin-left: 0.5rem; font-size: 0.75rem; color: var(--text-faint); font-family: var(--mono); }

.portfolio-card__preview {
  height: 240px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}
.portfolio-card__preview--marcel {
  background: radial-gradient(circle at 25% 15%, rgba(245, 158, 11, 0.35), transparent 55%), linear-gradient(160deg, #241a12, #120d09);
}
.portfolio-card__preview--verger {
  background: radial-gradient(circle at 75% 15%, rgba(16, 185, 129, 0.35), transparent 55%), linear-gradient(160deg, #0f1e18, #0a120e);
}
.portfolio-card__preview--solstice {
  background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.28), transparent 55%), linear-gradient(160deg, #17131f, #0a0810);
}
.portfolio-card__eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.6); }
.portfolio-card__name { font-size: 1.6rem; font-weight: 700; color: #fff; }
.portfolio-card__btn {
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.portfolio-card__meta { padding: 1.5rem 1.75rem 1.85rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.portfolio-card__meta h3 { font-size: 1.15rem; font-weight: 700; }
.portfolio-card__meta p { color: var(--text-muted); font-size: 0.9rem; }
.portfolio-card__link { margin-top: auto; padding-top: 0.6rem; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--emerald); width: fit-content; }
.portfolio-card__link svg { width: 14px; height: 14px; }

@media (max-width: 960px) {
  .portfolio-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

/* ---------- Comparison ---------- */
.comparison { padding-block: clamp(4rem, 8vw, 7rem); }
.comparison-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2rem); }
.comparison-card { border-radius: var(--radius-lg); padding: clamp(1.75rem, 3vw, 2.5rem); border: 1px solid var(--border); background: var(--surface); }
.comparison-card--old { opacity: 0.85; }
.comparison-card--new { border-color: var(--emerald); box-shadow: 0 0 0 1px var(--emerald-soft), var(--shadow-md); }
.comparison-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 1.25rem; }
.comparison-card--new .comparison-card__title { color: var(--emerald); }
.comparison-card__list { display: flex; flex-direction: column; gap: 0.85rem; }
.comparison-card__list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.95rem; color: var(--text-muted); }
.comparison-card--new .comparison-card__list li { color: var(--text); }
.comparison-card__icon { font-weight: 700; flex-shrink: 0; }
.comparison-card--old .comparison-card__icon { color: #f87171; }
.comparison-card--new .comparison-card__icon { color: var(--emerald); }

@media (max-width: 760px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

/* ---------- Offer ---------- */
.offer { padding-block: clamp(4rem, 8vw, 7rem); background: var(--bg-alt); border-block: 1px solid var(--border); }
.offer__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: flex-start !important; }

.steps { display: flex; flex-direction: column; gap: 2rem; }
.step { display: flex; gap: 1.25rem; }
.step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald-soft);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

.price-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  position: static;
}
.price-card__row { display: flex; justify-content: space-between; align-items: baseline; padding-block: 0.6rem; font-size: 0.95rem; color: var(--text-muted); }
.price-card__row strong { color: var(--text); font-size: 1.05rem; }
.price-card__divider { height: 1px; background: var(--border); margin-block: 0.5rem; }
.price-card__row--total { color: var(--text); font-weight: 600; }
.price-card__row--total strong { color: var(--emerald); font-size: 1.4rem; }
.price-card__note { font-size: 0.78rem; color: var(--text-faint); margin-top: -0.3rem; margin-bottom: 0.5rem; }
.price-card__list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.price-card__list li { font-size: 0.88rem; color: var(--text-muted); display: flex; gap: 0.6rem; align-items: flex-start; }
.price-card__list li::before { content: "✓"; color: var(--emerald); font-weight: 700; }
.price-card__actions { display: flex; flex-direction: column; gap: 0.75rem; }
.price-card__lead { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.price-card__amount { font-size: clamp(2.4rem, 4vw, 3rem); font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.1; }
.price-card__amount small { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0; margin-left: 0.35rem; }
.price-card__monthly { margin-top: 0.4rem; font-size: 1.05rem; color: var(--text); }
.price-card__monthly span { color: var(--text-muted); font-size: 0.9rem; }
.price-card__free { margin-top: 1.25rem; padding: 0.9rem 1rem; border-radius: var(--radius-sm); background: var(--emerald-soft); border: 1px solid rgba(16, 185, 129, 0.3); font-size: 0.9rem; color: var(--text); }
.price-card__free strong { color: var(--emerald); }

/* ---------- Engagements (decision D6) ---------- */
.commitments { padding-block: clamp(4rem, 8vw, 7rem); }
.commitments-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.commitment { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem 1.6rem; }
.commitment h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.45rem; display: flex; gap: 0.6rem; align-items: baseline; }
.commitment h3::before { content: "\2715"; color: #f87171; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.commitment p { color: var(--text-muted); font-size: 0.92rem; }
.commitments__note { margin-top: 2rem; color: var(--text-muted); font-size: 0.95rem; max-width: 70ch; }

@media (max-width: 960px) {
  .commitments-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .offer__grid { grid-template-columns: 1fr; }
  .price-card { position: static; }
}

.addon-card {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.addon-card__info { max-width: 560px; }
.addon-card__eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--emerald); font-weight: 700; margin-bottom: 0.5rem; }
.addon-card__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.6rem; }
.addon-card__text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.addon-card__price { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; flex-shrink: 0; }
.addon-card__amount { font-size: 1.6rem; font-weight: 700; color: var(--emerald); }

@media (max-width: 640px) {
  .addon-card { flex-direction: column; align-items: flex-start; }
  .addon-card__price { align-items: flex-start; width: 100%; }
  .addon-card__price .btn { width: 100%; }
}

/* ---------- Contact ---------- */
.contact { padding-block: clamp(4rem, 8vw, 7rem); }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }

.contact__intro h2 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.01em; }
.contact__intro p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.5rem; max-width: 420px; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: grid;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-field input, .form-field textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(238, 242, 246, 0.38); font-weight: 400; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px var(--emerald-soft); }
.form-field textarea { resize: vertical; min-height: 110px; }
.contact-form__trust { text-align: center; font-size: 0.78rem; color: rgba(238, 242, 246, 0.45); margin-top: -0.35rem; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--border); }
.footer__inner { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.footer__brand { font-weight: 700; font-size: 1.1rem; }
.footer__brand span { color: var(--emerald); }
.footer__tagline { color: var(--text-muted); font-size: 0.9rem; }
.footer__copy { color: var(--text-faint); font-size: 0.8rem; margin-top: 1rem; }
.footer__links { font-size: 0.8rem; }
.footer__links a { color: var(--text-faint); text-decoration: underline; text-underline-offset: 2px; }
.footer__links a:hover { color: var(--text); }

.legal-footer { padding-block: 1.5rem; border-top: 1px solid var(--border); }
.legal-footer__inner { display: flex; flex-direction: column; gap: 0.35rem; align-items: center; text-align: center; }
.legal-footer__inner p { color: var(--text-faint); font-size: 0.75rem; line-height: 1.5; max-width: 60ch; }
.legal-footer__inner a { color: var(--text-faint); text-decoration: underline; text-underline-offset: 2px; }
.legal-footer__inner a:hover { color: var(--text-muted); }

/* ---------- Thanks page ---------- */
.thanks {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-block: clamp(4.5rem, 11vw, 8.5rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.14), transparent 45%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.thanks__inner { max-width: 640px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.thanks h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.25rem; color: #fff; }
.thanks__sub { color: var(--text-muted); font-size: 1.05rem; max-width: 46ch; margin-bottom: 2rem; }

.thanks__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--emerald-soft);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.06);
}
.thanks__icon svg { width: 28px; height: 28px; }

.error-code {
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--emerald), #6ee7b7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Legal page ---------- */
.legal-page { padding-block: clamp(3.5rem, 8vw, 6rem); }
.legal-page__inner { max-width: 760px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1rem; color: #fff; }
.legal-page__intro { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2.5rem; }
.legal-page__block { padding-block: 1.75rem; border-top: 1px solid var(--border); }
.legal-page__block h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.85rem; }
.legal-page__block p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.legal-page__block ul { list-style: disc; padding-left: 1.25rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; display: flex; flex-direction: column; gap: 0.4rem; }
.legal-page__block p + p, .legal-page__block p + ul, .legal-page__block ul + p { margin-top: 0.75rem; }
.legal-page__block strong { color: var(--text); font-weight: 600; }
.legal-page__block a { color: var(--emerald); text-decoration: underline; text-underline-offset: 2px; }
.legal-page__block a:hover { color: #6ee7b7; }
.legal-page__todo { color: var(--text); font-family: var(--mono); font-size: 0.9em; }
