/* =====================================================================
   UNA MANO — Hoja de estilos  ·  v2 fintech minimalista
   Fondo blanco, mucho aire, colores del logo (azul/amarillo/rojo) sutiles.
   (Normalmente NO necesitas tocar este archivo.)
   ===================================================================== */

/* ---------- Tokens de diseño ---------- */
:root {
  --ink: #0e1726;        /* títulos casi negro */
  --ink-soft: #44505f;   /* texto */
  --muted: #8b97a6;      /* texto secundario */
  --line: #ecf0f5;       /* bordes finos */
  --bg: #ffffff;         /* fondo principal: BLANCO */
  --bg-soft: #f7f9fc;    /* secciones alternas, muy claro */
  --card: #ffffff;

  /* Colores del logo (Venezuela), refinados para fintech */
  --blue: #1c8fe6;
  --blue-deep: #1273c9;
  --yellow: #f7b500;
  --red: #ef4d4a;
  --blue-soft: #eaf4fd;
  --yellow-soft: #fef6e1;
  --red-soft: #fdecec;

  /* Gradiente tricolor SOLO para detalles (barra de progreso, líneas) */
  --grad-brand: linear-gradient(90deg, #1c8fe6 0%, #f7b500 55%, #ef4d4a 100%);

  --shadow-xs: 0 1px 2px rgba(14,23,38,.05);
  --shadow-sm: 0 4px 14px -6px rgba(14,23,38,.10);
  --shadow: 0 14px 34px -16px rgba(14,23,38,.18);
  --shadow-lg: 0 30px 60px -24px rgba(14,23,38,.22);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --maxw: 1160px;

  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.16; margin: 0 0 .4em; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.hl { color: var(--blue); }
.center { text-align: center; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.45rem; border-radius: 12px; font-weight: 600;
  font-size: .98rem; font-family: var(--font-head); letter-spacing: -.01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 22px -10px rgba(28,143,230,.7); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(28,143,230,.8); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { border-color: #d8dee8; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-xs); border: 1px solid var(--line); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: #d8dee8; }
.btn-block { width: 100%; justify-content: center; }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 10px 22px -10px rgba(37,211,102,.6); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(37,211,102,.7); }

/* ---------- Logo ---------- */
.logo { width: 42px; height: 42px; border-radius: 12px; overflow: hidden; flex: 0 0 auto; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-xs); }
.logo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(14px);
  transition: box-shadow .3s ease, border-color .3s;
  border-bottom: 1px solid transparent;
  padding: 12px 0;
}
.header.scrolled { box-shadow: var(--shadow-xs); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--ink); letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: .94rem; transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.menu-toggle { display: none; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--bg); padding: 84px 0 72px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(680px 380px at 88% -8%, rgba(28,143,230,.10), transparent 70%),
    radial-gradient(560px 360px at 4% 8%, rgba(247,181,0,.10), transparent 70%),
    radial-gradient(520px 380px at 60% 110%, rgba(239,77,74,.07), transparent 70%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .02em; padding: .42rem .85rem; border-radius: 999px;
  background: var(--red-soft); color: var(--red); margin-bottom: 1.1rem;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(239,77,74,.18); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(239,77,74,.18) } 50% { box-shadow: 0 0 0 8px rgba(239,77,74,0) } }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -.03em; }
.hero p.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 38ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.hero-trust { display: flex; gap: 1.4rem; margin-top: 1.9rem; flex-wrap: wrap; }
.hero-trust .t { font-size: .88rem; color: var(--muted); display: flex; align-items: center; gap: .45rem; font-weight: 500; }
.hero-trust .t:nth-child(1) svg { color: var(--blue); }
.hero-trust .t:nth-child(2) svg { color: var(--red); }
.hero-trust .t:nth-child(3) svg { color: var(--yellow); }
.hero-trust svg { width: 18px; height: 18px; }

/* ---------- Tarjeta de recaudación ---------- */
.raise-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.raise-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-brand); }
.raise-card .raised-label { font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.raise-card .raised-amount { font-family: var(--font-head); font-size: clamp(2.4rem, 6vw, 3.1rem); font-weight: 700; color: var(--ink); line-height: 1; margin: .3rem 0 .15rem; letter-spacing: -.03em; }
/* Cabecera: etiqueta + badge "En vivo" con punto pulsante */
.raise-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.live-badge {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #0f9d58; background: #e9f9f0; border: 1px solid #cdeedd;
  padding: 4px 10px 4px 8px; border-radius: 999px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #0f9d58; flex: none;
  box-shadow: 0 0 0 0 rgba(15,157,88,.55); animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(15,157,88,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(15,157,88,0); }
  100% { box-shadow: 0 0 0 0 rgba(15,157,88,0); }
}
.raised-trend {
  display: flex; align-items: center; gap: .4rem; margin-top: .2rem;
  font-size: .85rem; font-weight: 600; color: var(--blue-deep);
}
.raised-trend svg { flex: none; }

.raise-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 1.3rem; }
.raise-stats .s {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 14px; transition: transform .2s ease, box-shadow .2s ease;
}
.raise-stats .s:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.raise-stats .s b { font-family: var(--font-head); display: block; font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1.1; }
.raise-stats .s span { font-size: .78rem; color: var(--muted); }

/* Donantes recientes (prueba social) */
.recent-donors { display: flex; align-items: center; gap: 11px; margin-top: 1.2rem; padding-top: 1.15rem; border-top: 1px dashed var(--line); }
.rd-avatars { display: flex; flex: none; }
.rd-av {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  font-size: .72rem; font-weight: 700; color: #fff; font-family: var(--font-head);
  border: 2px solid #fff; margin-left: -9px; box-shadow: var(--shadow-xs);
}
.rd-av:first-child { margin-left: 0; }
.rd-av:nth-child(4n+1) { background: var(--blue); }
.rd-av:nth-child(4n+2) { background: var(--yellow); }
.rd-av:nth-child(4n+3) { background: var(--red); }
.rd-av:nth-child(4n)   { background: var(--blue-deep); }
.rd-text { font-size: .82rem; color: var(--ink-soft); line-height: 1.35; }
.rd-text b { color: var(--ink); font-weight: 600; }

/* ---------- Secciones ---------- */
.section { padding: 86px 0; }
.section.alt { background: var(--bg-soft); }
.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.kicker { font-family: var(--font-head); color: var(--blue); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; margin-top: .45rem; letter-spacing: -.03em; }
.section-head p { color: var(--muted); font-size: 1.04rem; }

/* ---------- Stats banda ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; box-shadow: var(--shadow-xs); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: #dfe6ef; }
.stat .num { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--ink); letter-spacing: -.03em; }
.stat:nth-child(1) .num { color: var(--blue); }
.stat:nth-child(3) .num { color: var(--red); }
.stat .lbl { color: var(--muted); font-weight: 500; font-size: .92rem; }

/* ---------- Cómo donar ---------- */
.donate-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: start; }
.pay-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.pay-card .pay-head { background: var(--blue); color: #fff; padding: 22px 26px; position: relative; }
.pay-card .pay-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--grad-brand); opacity: .9; }
.pay-card .pay-head h3 { color: #fff; margin: 0; font-size: 1.2rem; }
.pay-card .pay-head span { color: rgba(255,255,255,.85); font-size: .9rem; }
.pay-rows { padding: 8px 26px 22px; }
.pay-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.pay-row:last-child { border-bottom: 0; }
.pay-row .k { color: var(--muted); font-size: .82rem; font-weight: 500; }
.pay-row .v { font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--ink); }
.copy {
  display: inline-flex; align-items: center; gap: .35rem; padding: .45rem .8rem; border-radius: 10px;
  background: var(--blue-soft); color: var(--blue-deep); font-weight: 600; font-size: .8rem; border: 1px solid #d4e8fa;
  transition: background .2s, transform .15s;
}
.copy:hover { background: #dcebfb; background: #d9ecfb; }
.copy.copied { background: #16a34a; color: #fff; border-color: #16a34a; }
.copy svg { width: 15px; height: 15px; }

.steps { display: flex; flex-direction: column; gap: 18px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .n { font-family: var(--font-head); flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px; background: var(--blue-soft); color: var(--blue-deep); font-weight: 700; display: grid; place-items: center; }
.step h4 { margin: 0 0 .2rem; font-size: 1.02rem; }
.step p { margin: 0; color: var(--muted); font-size: .94rem; }
.alt-methods { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.alt-method { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px; }
.alt-method .ml { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink); }
.alt-method .ml b { font-family: var(--font-head); }
.badge { font-size: .7rem; font-weight: 700; padding: .2rem .55rem; border-radius: 999px; background: var(--yellow-soft); color: #a87c00; }

/* ---------- Noticias ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.news-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); transition: transform .2s, box-shadow .2s, border-color .2s; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #dfe6ef; }
.news-card .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--blue-soft), var(--yellow-soft) 60%, var(--red-soft)); position: relative; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card .thumb .ph { position: absolute; inset: 0; display: grid; place-items: center; }
.news-card .thumb .ph img { width: 56px; height: 56px; object-fit: contain; opacity: .9; mix-blend-mode: multiply; }
.news-card .body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.news-meta { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.tag { font-family: var(--font-head); font-size: .7rem; font-weight: 600; letter-spacing: .02em; padding: .25rem .6rem; border-radius: 999px; background: var(--blue-soft); color: var(--blue-deep); }
.news-date { color: var(--muted); font-size: .82rem; }
.news-card h3 { font-size: 1.14rem; }
.news-card p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ---------- Necesidades ---------- */
.needs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.need { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-xs); transition: transform .2s, box-shadow .2s, border-color .2s; }
.need:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: #dfe6ef; }
.need .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; }
.need .ic svg { width: 25px; height: 25px; }
.need h4 { margin: .9rem 0 .3rem; font-size: 1.06rem; }
.need p { color: var(--muted); font-size: .9rem; margin: 0; }
.need .urge { font-family: var(--font-head); position: absolute; top: 16px; right: 16px; font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; padding: .25rem .55rem; border-radius: 999px; background: var(--red-soft); color: var(--red); }

.dropoff { margin-top: 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.dropoff .d { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-xs); }
.dropoff .d .pin { font-family: var(--font-head); color: var(--blue); font-weight: 600; display: flex; align-items: center; gap: .4rem; font-size: .9rem; }
.dropoff .d h4 { margin: .55rem 0 .3rem; }
.dropoff .d p { margin: 0; color: var(--muted); font-size: .93rem; }

/* ---------- Transparencia ---------- */
.trust-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start; }
.trust-note { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-xs); }
.trust-note ul { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: .85rem; }
.trust-note li { display: flex; gap: .6rem; color: var(--ink-soft); font-size: .96rem; }
.trust-note li svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--blue); margin-top: 2px; }
.ledger { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.ledger .lh { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.ledger .lh b { font-family: var(--font-head); font-size: 1.02rem; color: var(--ink); }
.ledger .lh span { font-size: .84rem; color: var(--muted); }
.ledger-item { display: flex; align-items: center; gap: 14px; padding: 14px 22px; border-bottom: 1px solid var(--line); }
.ledger-item:last-child { border-bottom: 0; }
.ledger-item .av { font-family: var(--font-head); width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50%; background: var(--blue-soft); color: var(--blue-deep); font-weight: 700; display: grid; place-items: center; font-size: .9rem; }
.ledger-item .li-main { flex: 1; min-width: 0; }
.ledger-item .li-main b { font-family: var(--font-head); display: block; font-size: .96rem; color: var(--ink); font-weight: 600; }
.ledger-item .li-main span { font-size: .82rem; color: var(--muted); }
.ledger-item .amt { font-family: var(--font-head); font-weight: 700; color: #16a34a; white-space: nowrap; }

/* ---------- CTA final ---------- */
.cta-final { background: linear-gradient(135deg, var(--blue-soft), #fff 55%, var(--red-soft)); border: 1px solid var(--line); color: var(--ink); border-radius: var(--radius-lg); padding: 60px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.cta-final::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-brand); }
.cta-final h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.cta-final p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 1.6rem; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); color: var(--ink-soft); padding: 56px 0 28px; }
.footer .brand { color: var(--ink); margin-bottom: .8rem; }
.footer h5 { font-family: var(--font-head); color: var(--ink); font-size: .92rem; margin: 0 0 .8rem; letter-spacing: .01em; }
.footer p { color: var(--muted); }
.footer a { display: block; padding: .25rem 0; color: var(--ink-soft); font-size: .94rem; transition: color .2s; }
.footer a:hover { color: var(--blue); }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .15s, border-color .2s; }
.socials a:hover { transform: translateY(-2px); border-color: var(--blue); }
.socials svg { width: 19px; height: 19px; fill: var(--ink-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .85rem; color: var(--muted); }

/* ---------- FAB + Toast ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: none; box-shadow: var(--shadow); }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: .8rem 1.3rem; border-radius: 12px; font-weight: 500; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 100; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .donate-grid, .trust-wrap { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .raise-card { order: -1; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; background: var(--bg-soft); }
  .nav-actions .btn-desktop { display: none; }
  .section { padding: 62px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-final { padding: 42px 24px; }
  .fab { display: inline-flex; }
  .hero { padding: 56px 0 56px; }
  .raise-card { padding: 22px; }
  .rd-text { font-size: .8rem; }
}

/* Menú móvil */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 70; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); flex-direction: column; align-items: center; justify-content: center; gap: 1.3rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--ink); font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; }
.mobile-menu a.btn { color: #fff; }
.mobile-menu .close { position: absolute; top: 22px; right: 24px; color: var(--ink); font-size: 2rem; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
