/* ==========================================================================
   Ayder · Dinero Inteligente — Design System
   Institutional · calm · editorial. No frameworks. Vanilla CSS only.
   ========================================================================== */

:root {
  /* Palette ---------------------------------------------------------------- */
  --bg:            #F7F5F0;   /* warm off-white page */
  --bg-soft:       #FBFAF6;   /* lighter alt sections */
  --surface:       #FFFFFF;   /* cards */
  --ink:           #16243B;   /* deep navy — primary text */
  --ink-2:         #3D4756;   /* secondary text */
  --muted:         #6E7785;   /* soft grey */
  --line:          #E7E2D7;   /* hairline border */
  --line-strong:   #D8D1C3;
  --gold:          #B08A3E;   /* muted gold — fills / accents */
  --gold-ink:      #93701F;   /* darker gold — accessible gold text */
  --gold-soft:     #CDAE6C;
  --gold-tint:     #F3ECDC;   /* very light gold wash */
  --navy:          #132037;   /* dark band background */
  --navy-2:        #1B2D4C;
  --navy-line:     rgba(255,255,255,0.12);

  /* Type ------------------------------------------------------------------- */
  --font-serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --font-sans:  'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Geometry --------------------------------------------------------------- */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --container: 1140px;
  --gutter:    clamp(1.1rem, 4vw, 2rem);

  /* Shadows ---------------------------------------------------------------- */
  --shadow-sm: 0 1px 2px rgba(19,32,55,0.04), 0 2px 8px rgba(19,32,55,0.04);
  --shadow:    0 4px 14px rgba(19,32,55,0.06), 0 18px 40px rgba(19,32,55,0.06);
  --shadow-lg: 0 10px 30px rgba(19,32,55,0.10), 0 30px 70px rgba(19,32,55,0.10);

  --t: 220ms cubic-bezier(.22,.61,.36,1);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold-tint); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Headings ----------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.7vw, 2.45rem); }
h3 { font-size: clamp(1.18rem, 1.05rem + 0.6vw, 1.4rem); }

p { color: var(--ink-2); }
strong { color: var(--ink); font-weight: 600; }

/* Layout ------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }

.section { padding-block: clamp(3.6rem, 2.4rem + 5vw, 6.5rem); }
.section--soft { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section--tight { padding-block: clamp(2.6rem, 2rem + 3vw, 4rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1rem; }

.lead {
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-2);
}

/* Signature: level-line eyebrow ------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.center .eyebrow { justify-content: center; }

/* Level-line divider (signature motif) ------------------------------------ */
.level-rule {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--muted);
}
.level-rule::before,
.level-rule::after { content: ""; height: 1px; background: var(--line-strong); flex: 1; }
.level-rule .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px var(--gold-tint);
}

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #fff; color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--on-navy { background: var(--gold); color: var(--navy); }
.btn--on-navy:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

.btn--ghost-navy { background: transparent; color: #fff; border-color: var(--navy-line); }
.btn--ghost-navy:hover { border-color: #fff; background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* Header / nav ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247,245,240,0.82);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.site-header.is-scrolled {
  background: rgba(247,245,240,0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(19,32,55,0.02), 0 8px 24px rgba(19,32,55,0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  height: 74px;
}

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

/* Collapsible group (links + lang + cta) */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex: 1;
  min-width: 0;
}

/* Primary nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-inline: auto;
}
.nav__link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color var(--t);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.28rem;
  height: 2px; border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__extra { display: flex; align-items: center; gap: 0.9rem; }

/* Language switcher */
.lang {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
}
.lang a {
  padding: 0.32rem 0.62rem;
  color: var(--muted);
  transition: background var(--t), color var(--t);
}
.lang a[aria-current="true"] { background: var(--ink); color: #fff; }
.lang a:not([aria-current="true"]):hover { color: var(--ink); background: var(--gold-tint); }
.lang span { color: var(--line-strong); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 10px;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  display: block;
  width: 19px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after  { transform: translateY(4px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

/* Hero --------------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(3rem, 2rem + 5vw, 6rem); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40rem 26rem at 88% -8%, rgba(176,138,62,0.10), transparent 60%),
    radial-gradient(34rem 24rem at -6% 12%, rgba(19,32,55,0.05), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
}
.hero__title { margin: 0.4rem 0 1.1rem; }
.hero__lead { max-width: 33ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.9rem; }
.hero__note {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero__note svg { width: 17px; height: 17px; color: var(--gold-ink); flex: none; }

.hero__visual { position: relative; }
.hero__visual svg { width: 100%; height: auto; filter: drop-shadow(0 24px 50px rgba(19,32,55,0.12)); }

/* Page header band (inner pages) ------------------------------------------ */
.page-head {
  position: relative;
  padding-block: clamp(3rem, 2rem + 4vw, 5rem);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(36rem 20rem at 92% -20%, rgba(176,138,62,0.10), transparent 60%);
  pointer-events: none;
}
.page-head__inner { position: relative; max-width: 760px; }
.page-head h1 { margin-bottom: 1rem; }

/* Cards -------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.4vw, 1.6rem);
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card::after {
  content: "";
  position: absolute; left: 0; top: 1.6rem; bottom: 1.6rem;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t);
}
.card:hover::after { opacity: 1; }

.card__icon {
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-tint);
  border-radius: 12px;
  color: var(--gold-ink);
  margin-bottom: 1.15rem;
}
.card__icon svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 0.55rem; }
.card p { font-size: 0.97rem; color: var(--ink-2); }

/* Two-column prose feature ------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: start;
}
.split__aside .eyebrow { margin-bottom: 0.8rem; }
.split__aside p { color: var(--muted); }

/* Approach points ---------------------------------------------------------- */
.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.point {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.point__num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-ink);
  font-weight: 600;
}
.point__mark {
  display: inline-block;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  position: relative;
  margin-bottom: 1.1rem;
}
.point__mark::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.point h3 { font-size: 1.1rem; margin-top: 0.4rem; }

/* Boundaries panel ("what we don't do") ----------------------------------- */
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1.2rem + 1.5vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.boundaries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2rem;
}
.boundaries li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.boundaries li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15rem;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--gold-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2393701F' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Disclaimer block --------------------------------------------------------- */
.disclaimer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  align-items: start;
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2.2rem);
}
.disclaimer__icon {
  width: 44px; height: 44px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-tint); color: var(--gold-ink);
  border-radius: 12px;
}
.disclaimer__icon svg { width: 24px; height: 24px; }
.disclaimer h2, .disclaimer h3 { margin-bottom: 0.5rem; }
.disclaimer p { font-size: 0.99rem; }

/* Bullet list (reports / academy detail) ---------------------------------- */
.ticks { display: grid; gap: 0.65rem; margin-top: 0.4rem; }
.ticks li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: 0.62rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
}

/* Report blocks ------------------------------------------------------------ */
.report {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  padding: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), border-color var(--t);
}
.report:hover { box-shadow: var(--shadow); border-color: var(--line-strong); }
.report__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-tint); color: var(--gold-ink);
  border-radius: 14px;
}
.report__icon svg { width: 28px; height: 28px; }
.report h3 { margin-bottom: 0.5rem; }
.report__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  padding-top: 0.85rem;
  border-top: 1px dashed var(--line-strong);
}
.stack { display: grid; gap: 1.1rem; }

/* CTA band (navy) ---------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40rem 22rem at 85% 120%, rgba(176,138,62,0.20), transparent 60%),
    radial-gradient(30rem 20rem at 10% -20%, rgba(176,138,62,0.10), transparent 60%);
  pointer-events: none;
}
.cta-band__inner { position: relative; text-align: center; max-width: 640px; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.74); margin-top: 1rem; }
.cta-band .eyebrow { color: var(--gold-soft); }
.cta-band .eyebrow::before { background: var(--gold-soft); }
.cta-band__actions { margin-top: 2rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 0.85rem; }

/* Telegram feature --------------------------------------------------------- */
.tg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.tg__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  box-shadow: var(--shadow);
}
.tg__badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--gold-tint); color: var(--gold-ink);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  margin-bottom: 1.2rem;
}
.tg__badge svg { width: 16px; height: 16px; }

/* Contact form ------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--ink); letter-spacing: 0.01em; }
.field input,
.field textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-tint);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-note {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--muted);
  background: var(--gold-tint);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
}
.form-note svg { width: 18px; height: 18px; color: var(--gold-ink); flex: none; margin-top: 1px; }

/* Contact / info rows ------------------------------------------------------ */
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.mail-link {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 600; color: var(--ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
  word-break: break-all;
}
.mail-link:hover { color: var(--gold-ink); }
.mail-link svg { width: 18px; height: 18px; color: var(--gold-ink); flex: none; }

.callout {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--gold-tint);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.callout svg { width: 19px; height: 19px; color: var(--gold-ink); flex: none; margin-top: 2px; }

/* Inline arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--gold-ink);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--t); }
.link-arrow:hover svg { transform: translateX(4px); }

.tg__card .callout { margin-top: 1.3rem; }
.stack-note { margin-top: 1.3rem; }

/* Legal pages -------------------------------------------------------------- */
.legal { max-width: 800px; }
.legal .updated {
  display: inline-block;
  font-size: 0.82rem; color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 2rem;
}
.legal section { margin-bottom: 2.2rem; }
.legal h2 {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.55rem);
  margin-bottom: 0.8rem;
  padding-top: 0.4rem;
}
.legal h2 .legal__num {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-ink);
  margin-right: 0.6rem;
  letter-spacing: 0.02em;
}
.legal h3 { font-size: 1.08rem; margin: 1.2rem 0 0.5rem; }
.legal p { margin-bottom: 0.9rem; }
.legal p + ul { margin-top: -0.3rem; }
.legal ul { display: grid; gap: 0.55rem; margin-bottom: 1rem; }
.legal ul li {
  position: relative; padding-left: 1.6rem; color: var(--ink-2); line-height: 1.6;
}
.legal ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.legal a { color: var(--gold-ink); border-bottom: 1px solid var(--line-strong); }
.legal a:hover { border-color: var(--gold-ink); }

/* Footer ------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding-top: clamp(3rem, 2rem + 4vw, 5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 1rem + 2vw, 3rem);
  padding-bottom: 3rem;
}
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: var(--gold-soft); }
.footer__about { margin-top: 1.1rem; font-size: 0.93rem; color: rgba(255,255,255,0.62); max-width: 34ch; }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.1rem;
}
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.74);
  transition: color var(--t);
}
.footer__col a:hover { color: var(--gold-soft); }
.footer__contact a.mail-link { color: #fff; border-color: var(--gold); }
.footer__contact a.mail-link:hover { color: var(--gold-soft); }
.footer__contact .footer__tg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.1rem;
  font-weight: 600; color: var(--navy);
  background: var(--gold); border-radius: 999px;
  padding: 0.55rem 1.1rem;
  transition: background var(--t), transform var(--t);
}
.footer__contact .footer__tg:hover { background: #fff; transform: translateY(-2px); }
.footer__contact .footer__tg svg { width: 17px; height: 17px; }

.footer__bottom {
  border-top: 1px solid var(--navy-line);
  padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem;
  align-items: center; justify-content: space-between;
}
.footer__copy { font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer__disclaimer {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  max-width: 62ch;
  line-height: 1.55;
}
.footer__lang { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; }
.footer__lang a { color: rgba(255,255,255,0.6); }
.footer__lang a[aria-current="true"] { color: var(--gold-soft); font-weight: 600; }
.footer__lang span { color: rgba(255,255,255,0.3); }

/* Scroll reveal (progressive enhancement) --------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
.js .reveal[data-delay="4"] { transition-delay: 0.32s; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { order: -1; max-width: 460px; }
  .hero__lead { max-width: 52ch; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .points { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 1.5rem; }
  .tg { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__toggle { display: inline-flex; }

  .nav__menu {
    position: fixed;
    left: 0; right: 0; top: 74px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0.7rem var(--gutter) 1.5rem;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t), opacity var(--t), visibility var(--t);
    z-index: 55;
  }
  .nav__menu.is-open { transform: none; opacity: 1; visibility: visible; }

  .nav__links { flex-direction: column; align-items: stretch; gap: 0; margin: 0; }
  .nav__menu .nav__link {
    font-size: 1.05rem;
    padding: 0.85rem 0.3rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav__menu .nav__link::after { display: none; }

  .nav__extra { flex-direction: column; align-items: stretch; gap: 0.9rem; margin-top: 1.2rem; }
  .nav__extra .lang { align-self: flex-start; }
  .nav__extra .btn { width: 100%; }

  .boundaries { grid-template-columns: 1fr; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .disclaimer { grid-template-columns: 1fr; }
  .report { grid-template-columns: 1fr; }
  .report__icon { margin-bottom: 0.2rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero__actions .btn,
  .cta-band__actions .btn { width: 100%; }
}

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