/* ============================================================
   legislat. — Brand system (Editorial v3) applied to the site
   Bone page · Obsidian/Navy weight · Orange Pop accent · Newsreader serif
   ============================================================ */

:root {
  /* ——— Brand palette · LOCKED ——— */
  --obsidian:    #0B0F14;   /* primary ink / structural black */
  --navy:        #101828;   /* deep navy — dark surfaces */
  --orange:      #FF7A29;   /* accent — Orange Pop, the period of the brand */
  --orange-deep: #C44A00;   /* secondary orange — text/links on paper */
  --paper:       #FAF7F0;   /* Bone — the page */
  --white:       #FFFFFF;   /* the only card / container color */

  /* aliases used through the document */
  --bg:        var(--paper);
  --bg-soft:   var(--paper);
  --bg-warm:   var(--paper);
  --ink:       var(--obsidian);
  --ink-2:     #1F2530;
  --muted:     #5B636F;
  --muted-2:   #8A8780;
  --muted-on-dark: #C9C7C0;
  --line:      #0B0F141A;   /* faint hairline */
  --line-strong: #0B0F142E;
  --accent:       var(--obsidian);   /* structural "accent" = ink */
  --accent-warm:  var(--orange-deep);/* warm accent on paper = deep orange */
  --accent-warm-soft: #FCE3CF;       /* orange tint surface */
  --accent-soft: #FCDCC4;

  --radius:    14px;
  --radius-sm: 8px;
  --r-sm: 4px;
  --maxw: 1200px;
  --sp: 0.6; /* vertical-rhythm scale */

  --shadow-card: 0 1px 0 #14171C0A, 0 1px 2px #14171C08;
  --shadow-float: 0 1px 0 #14171C0A, 0 30px 60px -30px #14171C2E;

  --font-serif: "Newsreader", ui-serif, Georgia, "Times New Roman", serif;
  --font-sans:  "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono:  "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--obsidian); color: var(--paper); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 800px){ .container { padding: 0 22px; } }

/* ───── TYPE ───── */
h1, h2, h3 { margin: 0; color: var(--ink); }
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(42px, 5.6vw, 76px); line-height: 1.0; letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 4vw, 50px); line-height: 1.06; }
h3 { font-family: var(--font-serif); font-size: 21px; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; }

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--orange-deep);
}

p { margin: 0; color: var(--ink-2); }
.lead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px; line-height: 1.5;
  color: var(--ink-2);
}
.small { font-size: 14px; color: var(--muted); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}
.mono { font-family: var(--font-mono); }

a { color: inherit; text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--orange-deep); }

/* ───── NAV ───── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--paper) 90%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand svg, .brand .mark { display: block; flex: none; }
.wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  text-transform: lowercase;
}
.wordmark .dot { color: var(--orange-deep); }
.wordmark .tld { color: var(--muted); font-weight: 600; }
.wordmark.on-dark { color: var(--paper); }
.wordmark.on-dark .dot { color: var(--orange); }
.wordmark.on-dark .tld { color: var(--muted-on-dark); }

.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; color: var(--ink-2); font-weight: 500;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: inline-flex; gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 11px;
}
.lang-switch button, .lang-switch a {
  background: transparent; border: none;
  padding: 6px 12px; cursor: pointer;
  color: var(--muted); font: inherit;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: all .15s ease;
}
.lang-switch button:hover, .lang-switch a:hover { color: var(--ink); }
.lang-switch button.active, .lang-switch a.active { background: var(--obsidian); color: var(--paper); }

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 18px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; font-family: var(--font-sans);
  cursor: pointer; border: 1px solid transparent;
  transition: all .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--obsidian); color: var(--paper); border-color: var(--obsidian); }
.btn-primary:hover { background: #000; color: var(--paper); }
.btn-accent { background: var(--orange); color: var(--obsidian); border-color: var(--orange); }
.btn-accent:hover { background: var(--orange-deep); color: var(--paper); border-color: var(--orange-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-lg { height: 48px; padding: 0 24px; font-size: 15px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-inner { gap: 12px; }
}
@media (max-width: 480px) {
  .nav-right { gap: 8px; }
  .nav-right .btn { height: 36px; padding: 0 12px; font-size: 13px; }
  .lang-switch button, .lang-switch a { padding: 5px 9px; }
}

/* ───── HERO ───── */
.hero { padding: calc(68px * var(--sp)) 0 calc(76px * var(--sp)); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }
.hero h1 { margin-top: 22px; }
.hero-sub { margin-top: 28px; max-width: 540px; font-family: var(--font-serif); font-weight: 400; font-size: 20px; line-height: 1.5; color: var(--ink-2); }
.hero-cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 36px; display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted-2);
  font-family: var(--font-mono); letter-spacing: 0.02em;
}
.hero-meta .dot-sep { color: var(--line-strong); }

/* ───── HERO PANEL: mock intelligence feed ───── */
.feed-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.feed-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  font-size: 12px;
}
.feed-head .title { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink-2); }
.feed-head .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,41,0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,122,41,0.18); }
  50% { box-shadow: 0 0 0 5px rgba(255,122,41,0.05); }
}
.feed-head .meta { font-family: var(--font-mono); color: var(--muted-2); font-size: 11px; }
.feed-body { padding: 8px; }
.feed-item { padding: 16px 14px; border-radius: var(--radius-sm); transition: background .15s ease; }
.feed-item:hover { background: var(--paper); }
.feed-item + .feed-item { border-top: 1px solid var(--line); }
.feed-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.feed-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 500;
  font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.feed-tag.high { background: var(--accent-soft); color: var(--orange-deep); }
.feed-tag.risk { background: #ECE7DC; color: #4A5260; }
.feed-tag.review { background: #EFEBE2; color: #8A8780; }
.feed-time { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); }
.feed-detail { font-family: var(--font-serif); font-size: 17px; line-height: 1.3; color: var(--ink); font-weight: 500; margin-bottom: 6px; letter-spacing: -0.01em; }
.feed-source { font-size: 12px; color: var(--muted); font-family: var(--font-mono); }

/* product-shot hero variant */
.hero-shot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  background: var(--white);
}
.hero-shot .shot-chrome {
  height: 34px; display: flex; align-items: center; gap: 7px; padding: 0 14px;
  border-bottom: 1px solid var(--line); background: var(--paper);
}
.hero-shot .shot-chrome i { width: 10px; height: 10px; border-radius: 50%; background: #14171C18; }
.hero-shot img { display: block; width: 100%; height: auto; }

/* ───── SECTION SCAFFOLDING ───── */
section.block { padding: calc(84px * var(--sp)) 0; }
.section-head { max-width: 740px; margin-bottom: 44px; }
.section-head .eyebrow { margin-bottom: 18px; display: inline-block; }
.section-head p { margin-top: 18px; }

/* ───── ICEBERG SECTION ───── */
.iceberg-section { padding: calc(84px * var(--sp)) 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.iceberg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 940px) { .iceberg-grid { grid-template-columns: 1fr; gap: 48px; } }
.iceberg-close { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-strong); font-size: 18px; font-family: var(--font-serif); color: var(--ink); }
.iceberg-close b { font-weight: 600; }
.iceberg-svg-wrap { display: flex; justify-content: center; }
.iceberg-svg { width: 100%; max-width: 460px; height: auto; display: block; }

/* ───── STATS ───── */
.stats { padding: calc(58px * var(--sp)) 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.stat .num {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.4vw, 62px);
  line-height: 1; letter-spacing: -0.03em;
  font-weight: 500; color: var(--ink);
}
.stat .num .unit { font-size: 0.42em; font-weight: 500; color: var(--muted-2); margin-left: 5px; vertical-align: baseline; }
.stat .label {
  margin-top: 14px; font-size: 13px; color: var(--muted);
  border-top: 1px solid var(--line-strong); padding-top: 12px;
  max-width: 220px; line-height: 1.5; font-family: var(--font-mono); letter-spacing: 0.01em;
}

/* ───── PRODUCT / OUTCOMES ───── */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 880px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feat { background: var(--white); padding: 36px 32px 38px; display: flex; flex-direction: column; gap: 12px; min-height: 220px; }
.feat .ico { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; color: var(--orange-deep); margin-bottom: 6px; }
.feat h3 { font-size: 20px; }
.feat p { font-size: 14px; line-height: 1.6; color: var(--muted); font-family: var(--font-sans); }

/* ───── PARA QUIÉN ───── */
.uses-wrap { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.uses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 900px) { .uses { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .uses { grid-template-columns: 1fr; } }
.use { background: var(--white); padding: 32px 28px 30px; display: flex; flex-direction: column; gap: 10px; min-height: 200px; }
.use .who { font-family: var(--font-serif); font-size: 21px; letter-spacing: -0.01em; font-weight: 500; color: var(--ink); }
.use .what { font-size: 14px; color: var(--muted); line-height: 1.6; }
.use .ex {
  margin-top: auto; font-family: var(--font-mono); font-size: 11px; color: var(--orange-deep);
  padding-top: 14px; border-top: 1px dashed var(--line-strong);
}

/* ───── MISSION / QUOTE ───── */
.mission { padding: calc(92px * var(--sp)) 0; }
.mission-inner { max-width: 900px; margin: 0 auto; text-align: left; }
.mission .quote { font-family: var(--font-serif); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.18; letter-spacing: -0.025em; color: var(--ink); font-weight: 400; margin-top: 24px; }
.mission .quote em { font-weight: 400; }
.mission .attribution { margin-top: 28px; font-size: 14px; color: var(--muted); font-family: var(--font-mono); }

/* ───── ABOUT / NOSOTROS ───── */
.about-section { padding: calc(84px * var(--sp)) 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-inner { max-width: 780px; }
.about-body { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }
.about-body p { font-family: var(--font-serif); font-size: 20px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.about-body .about-cta { margin-top: 14px; padding-top: 24px; border-top: 1px solid var(--line-strong); font-size: 19px; font-weight: 500; color: var(--ink); }
.about-vision { margin-top: 8px; padding: 30px 34px; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--orange); border-radius: var(--radius-sm); box-shadow: var(--shadow-card); }
.about-vision .eyebrow { color: var(--orange-deep); margin-bottom: 12px; display: inline-block; }
.about-vision .vision-statement { font-family: var(--font-serif); font-size: clamp(23px, 2.6vw, 31px); line-height: 1.26; letter-spacing: -0.02em; color: var(--ink); font-weight: 400; margin: 0; }
.about-vision .vision-statement em { font-style: italic; font-weight: 400; color: var(--orange-deep); }
.about-body .about-cta a { color: var(--orange-deep); font-family: var(--font-mono); font-size: 0.86em; border-bottom: 1px dashed var(--orange-deep); }
.about-body .about-cta a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ───── COBERTURA ───── */
.coverage { padding: calc(84px * var(--sp)) 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
@media (max-width: 800px) { .cov-grid { grid-template-columns: 1fr; } }
.cov-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; }
.cov-card.live { border-color: var(--line-strong); }
.cov-card .cov-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 500; margin-bottom: 18px; }
.cov-card.live .cov-label { color: var(--orange-deep); }
.cov-card.live .cov-label .ldot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
.cov-list { list-style: none; padding: 0; margin: 0; }
.cov-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.cov-list li:last-child { border-bottom: none; }
.cov-list .country { font-family: var(--font-serif); font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.cov-list .detail { font-size: 13px; color: var(--muted); line-height: 1.55; }
.cov-card.roadmap p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-top: 8px; }

/* ───── ANTI-HYPE / DARK MOMENT ───── */
.antihype-section { padding: calc(92px * var(--sp)) 0; background: var(--obsidian); color: var(--paper); }
.antihype-inner { max-width: 900px; }
.antihype-section .eyebrow { color: var(--muted-on-dark); }
.antihype-section h2 { color: var(--paper); margin-top: 18px; max-width: 780px; }
.antihype-section h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.antihype-section .lead { color: #D9D6CE; margin-top: 22px; max-width: 780px; }
.ah-source { margin-top: 24px; font-family: var(--font-mono); font-size: 12px; color: var(--muted-on-dark); letter-spacing: 0.01em; }
.ah-source a { color: var(--muted-on-dark); text-decoration: underline; }
.ah-source a:hover { color: var(--paper); }
.ah-close { margin-top: 36px; padding-top: 24px; border-top: 1px solid #2A3038; font-family: var(--font-serif); font-size: 23px; font-weight: 400; line-height: 1.4; color: var(--orange); letter-spacing: -0.01em; }

/* ───── SENTINEL / AGENT ───── */
.agent-block { padding: calc(84px * var(--sp)) 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.agent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 940px) { .agent-grid { grid-template-columns: 1fr; gap: 48px; } }
.agent-bullets { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 18px; }
.agent-bullets li { display: flex; flex-direction: column; gap: 4px; padding-left: 16px; border-left: 2px solid var(--orange); }
.agent-bullets .b-title { font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.agent-bullets .b-body { font-size: 14px; line-height: 1.55; color: var(--muted); }
.supremacy { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line-strong); font-family: var(--font-serif); font-size: 19px; line-height: 1.4; font-weight: 400; color: var(--ink); letter-spacing: -0.01em; }

/* ───── CHAT MOCK ───── */
.chat-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-float); overflow: hidden; }
.chat-head { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--paper); font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; }
.chat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,41,0.18); animation: pulse 2s infinite; }
.chat-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.chat-user { background: var(--paper); padding: 12px 16px; border-radius: 12px; font-size: 14px; color: var(--ink-2); line-height: 1.5; align-self: flex-end; max-width: 88%; }
.chat-bot { background: var(--white); border: 1px solid var(--line); padding: 14px 16px; border-radius: 12px; display: flex; flex-direction: column; gap: 10px; max-width: 96%; }
.chat-meta { font-family: var(--font-mono); font-size: 10px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; }
.chat-quote { font-family: var(--font-serif); font-size: 16px; line-height: 1.5; color: var(--ink); font-weight: 400; }
.chat-cites { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.chat-cites .cite { font-family: var(--font-mono); font-size: 11px; color: var(--orange-deep); }

/* ───── CTA ───── */
.cta { padding: calc(92px * var(--sp)) 0; text-align: center; }
.cta h2 { max-width: 780px; margin: 18px auto 22px; }
.cta p { max-width: 580px; margin: 0 auto 36px; color: var(--muted); font-family: var(--font-serif); font-size: 19px; }
.email-cta {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 8px auto 18px; padding: 20px 32px;
  background: var(--white); border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-mono); font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 500; letter-spacing: -0.01em; color: var(--ink);
  transition: all .2s ease; box-shadow: var(--shadow-card);
}
.email-cta svg { transition: transform .2s ease; color: var(--muted-2); }
.email-cta:hover { color: var(--orange-deep); border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(196,74,0,0.35); }
.email-cta:hover svg { color: var(--orange-deep); transform: translateX(3px); }
@media (max-width: 520px) { .email-cta { padding: 16px 22px; gap: 10px; } }
.cta .small { margin-top: 12px; color: var(--muted); }

/* ───── KNOWS / TAGLINE BAND ───── */
.knows-band { padding: calc(60px * var(--sp)) 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.knows-band-inner { max-width: 900px; margin: 0 auto; }
.knows-band .wrap { font-family: var(--font-serif); font-size: clamp(18px, 1.9vw, 22px); line-height: 1.5; color: var(--muted); letter-spacing: -0.005em; }
.knows-band .knows { margin: 18px 0 0; font-family: var(--font-mono); font-size: clamp(30px, 5vw, 56px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 600; color: var(--ink); }
.knows-band .knows em { font-style: normal; font-family: var(--font-mono); font-weight: 700; color: var(--orange-deep); letter-spacing: 0.02em; }

/* ───── FOOTER ───── */
footer { border-top: 1px solid var(--line); padding: calc(48px * var(--sp)) 0 calc(32px * var(--sp)); background: var(--paper); }
.foot { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 760px) { .foot { grid-template-columns: 1fr 1fr; gap: 36px; } }
.foot h3 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); margin: 0 0 16px; font-weight: 500; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 8px; font-size: 14px; color: var(--ink-2); }
.foot li a:hover { color: var(--orange-deep); }
.foot .tag { font-size: 13px; color: var(--muted); max-width: 290px; margin-top: 16px; line-height: 1.6; }
.foot-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 560px) { .foot-bottom { flex-direction: column; align-items: flex-start; gap: 8px; } }

/* ───── BRAND MARK (isotipo) ───── */
.brand .iso { width: 30px; height: 30px; border-radius: 7px; display: block; }

/* ───── REAL PRODUCT SHOTS (framed) ───── */
.shot-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  background: var(--white);
}
.shot-frame .shot-chrome {
  height: 34px; display: flex; align-items: center; gap: 7px; padding: 0 14px;
  border-bottom: 1px solid var(--line); background: var(--paper);
}
.shot-frame .shot-chrome i { width: 10px; height: 10px; border-radius: 50%; background: #14171C18; }
.shot-frame .shot-chrome .shot-url {
  margin-left: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--muted-2);
  letter-spacing: 0.02em;
}
.shot-frame img { display: block; width: 100%; height: auto; }
.shot-caption { margin-top: 14px; font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; }

/* product shot inside El Producto, above the features grid */
.product-visual { margin: 0 0 40px; }
.product-visual .shot-caption { text-align: left; }

/* stats — centered, first letter of each label capitalised */
.stats-grid { justify-items: center; }
.stat { text-align: center; display: flex; flex-direction: column; align-items: center; }
.stat .label { margin-left: auto; margin-right: auto; }
.stat .label::first-letter { text-transform: uppercase; }

/* bigger footer logo */
footer .brand .iso { width: 42px; height: 42px; border-radius: 9px; }
footer .brand .wordmark { font-size: 28px; }
footer .brand { gap: 13px; }
