/* =====================================================================
   AVANT GARDTECH — "Spec Sheet" editorial-engineering system
   Built on Urdaten Wallet Design System tokens (Montserrat, blue-700).
   Visual register: precision blueprint × Swiss editorial. Ink + paper +
   one electric blue. Hairline rules, tabular figures, numbered sections.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand / accent (from design system) */
  --blue:        #1447e6;   /* blue-700 — primary electric accent */
  --blue-bright: #155dfc;   /* blue-600 — ring / hover */
  --blue-50:     #eff6ff;

  /* Ink + paper */
  --ink:      #0a0a0a;      /* neutral-950 */
  --ink-800:  #262626;
  --ink-700:  #404040;
  --ink-500:  #737373;
  --ink-400:  #a3a3a3;
  --paper:    #fafafa;      /* neutral-50 */
  --paper-2:  #f3f2ef;      /* warm sheet for alt bands */
  --white:    #ffffff;
  --line:     rgba(10,10,10,0.12);
  --line-soft:rgba(10,10,10,0.07);
  --line-inv: rgba(255,255,255,0.16);
  --line-inv-soft: rgba(255,255,255,0.08);

  --font: 'Montserrat', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 64px);

  --dur: 128ms;
  --dur-2: 300ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ─── Layout primitives ───────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }

.section { position: relative; padding-block: clamp(72px, 11vw, 150px); }
.section--tight { padding-block: clamp(56px, 8vw, 110px); }

/* Hairline rule that spans the content column */
.rule { height: 1px; background: var(--line); width: 100%; border: 0; }

/* Section header marker — coordinate label + index + title */
.marker {
  display: flex; align-items: baseline; gap: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-500);
}
.marker .idx { color: var(--blue); font-variant-numeric: tabular-nums; }
.marker .bar { flex: 1; height: 1px; background: var(--line); align-self: center; }

/* ─── Type scale ──────────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-500); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--blue); display: inline-block;
}

.display {
  font-weight: 800;
  font-size: clamp(2.6rem, 7.2vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.h-sec {
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.h-card {
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.375rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink-700);
  max-width: 38ch;
  text-wrap: pretty;
}
.muted { color: var(--ink-500); }
.accent { color: var(--blue); }

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  padding: 16px 24px; border: 0; border-radius: 0;
  transition: background var(--dur) ease, color var(--dur) ease, transform var(--dur) var(--ease);
  position: relative;
}
.btn .ar { transition: transform var(--dur-2) var(--ease); display: inline-block; }
.btn:hover .ar { transform: translateX(5px); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--ink); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--blue); }
.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--lg { padding: 20px 30px; font-size: 16px; }

/* Inline text link with animated arrow */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--ink);
  padding-bottom: 3px; position: relative;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-2) var(--ease);
}
.tlink:hover { color: var(--blue); }
.tlink:hover::after { transform: scaleX(1); }
.tlink .ar { transition: transform var(--dur-2) var(--ease); }
.tlink:hover .ar { transform: translateX(4px); }

/* ─── Top navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: 68px; display: flex; align-items: center;
  background: rgba(250,250,250,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-2) ease, background var(--dur-2) ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em; color: var(--ink-700);
  transition: color var(--dur) ease; position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }

/* ─── Wordmark ────────────────────────────────────────────────────── */
.wordmark { display: inline-flex; align-items: center; gap: 11px; user-select: none; }
.wordmark .glyph {
  width: 26px; height: 26px; position: relative; flex: none;
}
.wordmark .name {
  font-weight: 800; font-size: 18px; letter-spacing: -0.04em; line-height: 1;
}
.wordmark .name b { color: var(--blue); font-weight: 800; }
.wordmark--inv .name { color: #fff; }

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero { position: relative; padding-top: 150px; padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
  opacity: 0.9;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: clamp(28px, 5vw, 56px); flex-wrap: wrap;
}
.hero-top .meta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-500); text-align: right; line-height: 1.9;
}
.hero-top .meta .accent { display: block; }

.hero h1 { max-width: 16ch; }
.hero h1 .blue { color: var(--blue); }

.hero-lower {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 6vw, 80px);
  margin-top: clamp(34px, 5vw, 60px); align-items: end;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Social proof strip */
.proof {
  border-top: 1px solid var(--line); margin-top: clamp(44px, 6vw, 78px);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.proof-item { padding: 26px 0 0; display: flex; flex-direction: column; gap: 6px; position: relative; }
.proof-item + .proof-item { padding-left: clamp(18px, 3vw, 40px); }
.proof-item + .proof-item::before {
  content: ""; position: absolute; left: 0; top: 26px; bottom: 4px; width: 1px; background: var(--line);
}
.proof-item .big { font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.03em; line-height: 1; }
.proof-item .lbl { font-size: 12.5px; font-weight: 600; color: var(--ink-500); letter-spacing: 0.01em; }

/* ─── Problema / Solución ─────────────────────────────────────────── */
.prob-head { max-width: 22ch; }
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 18px; }
.pain {
  padding: 38px 30px 34px; border-top: 2px solid var(--ink);
  position: relative; transition: background var(--dur-2) ease;
}
.pain + .pain { border-left: 1px solid var(--line); }
.pain:hover { background: var(--white); }
.pain .pn { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: var(--blue); font-variant-numeric: tabular-nums; }
.pain h3 { margin: 16px 0 12px; font-weight: 700; font-size: 1.3rem; line-height: 1.12; letter-spacing: -0.02em; }
.pain p { margin: 0; color: var(--ink-500); font-size: 15px; line-height: 1.55; }

.solution {
  margin-top: 0; background: var(--ink); color: #fff;
  padding: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.solution .tag { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-bright); white-space: nowrap; }
.solution p { margin: 0; font-size: clamp(1.25rem, 2.2vw, 1.9rem); font-weight: 600; line-height: 1.28; letter-spacing: -0.02em; max-width: 26ch; }
.solution p b { color: #fff; }
.solution .accent-w { color: var(--blue-bright); font-weight: 700; }

/* ─── Servicios ───────────────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 8px; border-top: 1px solid var(--line); }
.svc {
  padding: clamp(34px, 4vw, 52px) clamp(28px, 3vw, 44px);
  border-bottom: 1px solid var(--line); position: relative;
  transition: background var(--dur-2) ease;
  display: flex; flex-direction: column; min-height: 300px;
}
.svc:nth-child(odd) { border-right: 1px solid var(--line); }
.svc:hover { background: var(--white); }
.svc-num {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--ink-400);
  font-variant-numeric: tabular-nums; display: flex; align-items: center; gap: 12px;
}
.svc-num .dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; transition: transform var(--dur-2) var(--ease); }
.svc:hover .svc-num .dot { transform: scale(1.6); }
.svc h3 { margin: 26px 0 14px; }
.svc p { margin: 0 0 26px; color: var(--ink-500); font-size: 15.5px; line-height: 1.55; max-width: 42ch; }
.svc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* ─── Portafolio (dark band) ──────────────────────────────────────── */
.band-dark { background: var(--ink); color: #fff; }
.band-dark .marker { color: rgba(255,255,255,0.5); }
.band-dark .marker .bar { background: var(--line-inv); }
.band-dark .rule { background: var(--line-inv); }
.band-dark .eyebrow { color: rgba(255,255,255,0.55); }

.port-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 44px); margin-top: 52px; }
.port {
  border: 1px solid var(--line-inv); background: rgba(255,255,255,0.02);
  transition: border-color var(--dur-2) ease, transform var(--dur-2) var(--ease);
}
.port:hover { border-color: rgba(255,255,255,0.4); }
.port-media { position: relative; aspect-ratio: 16 / 10; border-bottom: 1px solid var(--line-inv); overflow: hidden; }
.port-media image-slot { width: 100%; height: 100%; --slot-bg: #141414; }
.port-tag {
  position: absolute; top: 0; left: 0; z-index: 3;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--blue); color: #fff; padding: 8px 13px;
}
.port-body { padding: clamp(24px, 2.6vw, 36px); }
.port-pn { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: rgba(255,255,255,0.45); font-variant-numeric: tabular-nums; }
.port-body h3 { margin: 14px 0 14px; color: #fff; }
.port-body p { margin: 0; color: rgba(255,255,255,0.62); font-size: 15px; line-height: 1.55; }
.port-result {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-inv);
  display: flex; gap: 12px; align-items: flex-start;
}
.port-result .ck { color: var(--blue-bright); flex: none; margin-top: 1px; }
.port-result span { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.45; }

/* ─── Proceso ─────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 52px; border-top: 2px solid var(--ink); }
.step { padding: 30px 26px 30px 0; position: relative; }
.step + .step { padding-left: clamp(20px, 2.4vw, 36px); }
.step + .step::before { content: ""; position: absolute; left: 0; top: 0; bottom: 24px; width: 1px; background: var(--line); }
.step-num { font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.6rem); letter-spacing: -0.04em; line-height: 0.9; font-variant-numeric: tabular-nums; -webkit-text-stroke: 1.5px var(--ink); color: transparent; transition: color var(--dur-2) ease; }
.step:hover .step-num { color: var(--blue); -webkit-text-stroke-color: var(--blue); }
.step h3 { margin: 22px 0 12px; font-weight: 700; font-size: 1.22rem; line-height: 1.12; letter-spacing: -0.02em; }
.step p { margin: 0 0 20px; color: var(--ink-500); font-size: 14.5px; line-height: 1.5; }
.step-when { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); display: inline-flex; align-items: center; gap: 8px; }
.step-when::before { content: ""; width: 14px; height: 1px; background: var(--blue); }

/* ─── Por qué (two-col) ───────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 18px; border-top: 1px solid var(--line); }
.why {
  padding: clamp(32px, 3.4vw, 48px) clamp(20px, 2.6vw, 40px);
  border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 2.4vw, 36px);
  transition: background var(--dur-2) ease;
}
.why:nth-child(odd) { border-right: 1px solid var(--line); }
.why:hover { background: var(--white); }
.why .wn { font-weight: 800; font-size: 1.4rem; letter-spacing: -0.03em; color: var(--blue); font-variant-numeric: tabular-nums; line-height: 1; }
.why h3 { margin: 0 0 12px; font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1.12; }
.why p { margin: 0; color: var(--ink-500); font-size: 15px; line-height: 1.55; }

/* ─── FAQ ─────────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--ink); margin-top: 14px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: inherit; font-weight: 700; font-size: clamp(1.05rem, 1.8vw, 1.35rem); letter-spacing: -0.02em; color: var(--ink);
  transition: color var(--dur) ease;
}
.faq-q:hover { color: var(--blue); }
.faq-sign { flex: none; width: 22px; height: 22px; position: relative; }
.faq-sign::before, .faq-sign::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-sign::before { left: 0; top: 10px; width: 22px; height: 2px; }
.faq-sign::after { left: 10px; top: 0; width: 2px; height: 22px; transition: transform var(--dur-2) var(--ease); }
.faq-item.open .faq-sign::after { transform: scaleY(0); }
.faq-a { overflow: hidden; height: 0; transition: height var(--dur-2) var(--ease); }
.faq-a-inner { padding: 0 0 30px; max-width: 72ch; color: var(--ink-500); font-size: 16px; line-height: 1.6; }

/* ─── CTA final (dark) ────────────────────────────────────────────── */
.cta { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.cta-grid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(to right, var(--line-inv-soft) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  -webkit-mask-image: radial-gradient(120% 90% at 80% 0%, #000, transparent 75%);
          mask-image: radial-gradient(120% 90% at 80% 0%, #000, transparent 75%);
}
.cta .wrap { position: relative; z-index: 1; }
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.cta h2 { color: #fff; max-width: 12ch; }
.cta .lead { color: rgba(255,255,255,0.62); }
.cta-side { display: flex; flex-direction: column; gap: 26px; }

/* Form */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-inv); border: 1px solid var(--line-inv); }
.field { background: var(--ink); position: relative; }
.field--full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); padding: 16px 18px 0;
}
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; color: #fff;
  font-family: inherit; font-size: 15px; font-weight: 500; padding: 8px 18px 16px;
  outline: none; resize: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.32); }
.field select { appearance: none; cursor: pointer; }
.field select option { background: #1a1a1a; color: #fff; }
.field:focus-within { background: #141414; }
.field:focus-within label { color: var(--blue-bright); }
.field textarea { min-height: 96px; }
.field--error { box-shadow: inset 0 0 0 1.5px #f87171; }
.field .err { display: none; position: absolute; right: 16px; top: 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #f87171; }
.field--error .err { display: block; }

.form-submit { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 22px; }
.form-note { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; margin-top: 18px; max-width: 46ch; }

.wa {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 22px;
  box-shadow: inset 0 0 0 1.5px var(--line-inv); color: #fff; font-weight: 700; font-size: 15px;
  transition: background var(--dur) ease, box-shadow var(--dur) ease;
}
.wa:hover { background: #1f8a3e; box-shadow: inset 0 0 0 1.5px transparent; }

.sent { padding: clamp(36px,5vw,60px); border: 1px solid var(--line-inv); text-align: left; }
.sent .ck { color: var(--blue-bright); }
.sent h3 { font-weight: 700; font-size: 1.6rem; letter-spacing: -0.02em; margin: 18px 0 10px; color: #fff; }
.sent p { color: rgba(255,255,255,0.6); margin: 0; }

/* ─── Footer ──────────────────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 40px 0 48px; border-top: 1px solid var(--line-inv); }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer .meta { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }
.footer .links { display: flex; gap: 26px; }
.footer .links a { font-size: 12.5px; font-weight: 600; transition: color var(--dur) ease; }
.footer .links a:hover { color: #fff; }

/* ─── Scroll reveal (progressive enhancement) ─────────────────────────
   Content is visible by default. The hidden initial state is applied only
   when JS confirms support (html.js); IntersectionObserver re-reveals.
   A failsafe class (html.reveal-all) guarantees content can never stay
   permanently hidden. */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal[data-d="1"] { transition-delay: 0.07s; }
html.js .reveal[data-d="2"] { transition-delay: 0.14s; }
html.js .reveal[data-d="3"] { transition-delay: 0.21s; }
html.js .reveal[data-d="4"] { transition-delay: 0.28s; }

html.reveal-all .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-lower { grid-template-columns: 1fr; gap: 28px; }
  .cta-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .pains { grid-template-columns: 1fr; }
  .pain + .pain { border-left: 0; }
  .solution { grid-template-columns: 1fr; gap: 18px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc:nth-child(odd) { border-right: 0; }
  .port-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why:nth-child(odd) { border-right: 0; }
  .proof { grid-template-columns: 1fr; }
  .proof-item + .proof-item { padding-left: 0; }
  .proof-item + .proof-item::before { display: none; }
  .proof-item { border-top: 1px solid var(--line); }
  .proof-item:first-child { border-top: 0; }
}
@media (max-width: 560px) {
  .form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { padding-left: 0; }
  .step + .step::before { display: none; }
  .step { border-top: 1px solid var(--line); padding-top: 26px; }
  .step:first-child { border-top: 0; }
  .hero-top .meta { text-align: left; }
}

/* Mobile menu panel */
.mmenu {
  position: fixed; inset: 68px 0 auto 0; z-index: 55; background: var(--paper);
  border-bottom: 1px solid var(--line); padding: 18px var(--gutter) 28px;
  display: none; flex-direction: column; gap: 4px;
}
.mmenu.open { display: flex; }
.mmenu a { padding: 14px 0; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; border-bottom: 1px solid var(--line-soft); }
.mmenu a:last-child { border-bottom: 0; }
