/* ==========================================================================
   mejores-portatiles.com — "Browserbase" editorial broadsheet + data terminal.
   Paper white canvas, ink type, ONE Signal Orange #ff4500 for highlight boxes
   + footer band (never buttons). Black pill CTAs, Inter/Inter Tight/JetBrains
   Mono, pastel lavender/cream/sky cards, ZERO box-shadows. Light by design.
   ========================================================================== */

:root {
  --ink: #000000;
  --paper: #ffffff;
  --faint: #f8fafc;
  --lavender: #e2e9f3;
  --bluegray: #c5d3e8;
  --cream: #fffde6;
  --sky: #c4edff;
  --graphite: #686562;
  --orange: #ff4500; /* highlight + footer ONLY — never buttons */

  --font-plain: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --r-card: 4px;
  --r-btn: 50px;
  --r-tag: 999px;
  --r-mock: 3px;

  --page-max: 1200px;
  --pad-x: clamp(16px, 5vw, 40px);
  --section-gap: clamp(64px, 8vw, 96px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-plain);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.007em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color-scheme: light;
}

/* ---------- fonts ---------- */
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("/fonts/inter-tight-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("/fonts/inter-tight-700.woff2") format("woff2");
  font-weight: 500 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/jetbrains-mono-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--ink); text-decoration-thickness: 2px; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  font-feature-settings: "ss05" 1;
}

/* ---------- skip / focus ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; z-index: 200; font-size: 14px; font-weight: 500;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 2px; }

/* ---------- shared fallback scaffold ---------- */
.section { padding: 0; }
.container { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--pad-x); }
.container-narrow { max-width: 720px; }

.prose { max-width: 72ch; color: var(--ink); }
.prose p { margin: 0 0 1.1em; color: var(--ink); }
.prose h2 {
  font-size: 34px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 500;
  margin: 2em 0 0.55em; scroll-margin-top: 88px;
}
.prose h3 {
  font-size: 24px; line-height: 1.3; letter-spacing: -0.01em; font-weight: 500;
  margin: 1.7em 0 0.45em; scroll-margin-top: 88px;
}
.prose h4 {
  font-size: 18px; line-height: 1.35; font-weight: 500;
  margin: 1.4em 0 0.4em; scroll-margin-top: 88px;
  font-family: var(--font-plain);
  letter-spacing: 0;
}
.prose ul, .prose ol { padding-left: 1.25em; margin: 0 0 1.1em; }
.prose li { margin: 0.35em 0; }
.prose blockquote {
  margin: 1.6em 0; padding: 16px 20px;
  background: var(--cream); border: 1px solid var(--ink);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-card);
  color: var(--ink); font-size: 15px;
}
.prose blockquote p { margin: 0; }
.prose table {
  width: 100%; border-collapse: collapse; margin: 1.4em 0;
  font-size: 15px; display: block; overflow-x: auto;
}
.prose th, .prose td {
  text-align: left; padding: 10px 12px;
  border-bottom: 1px solid var(--lavender); vertical-align: top; min-width: 110px;
}
.prose th {
  font-family: var(--font-mono); font-weight: 400; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--graphite);
  border-bottom: 1px solid var(--ink);
}
.prose img { border-radius: var(--r-card); margin: 1.2em 0; border: 1px solid var(--ink); }
.prose hr { border: 0; border-top: 1px solid var(--ink); margin: 2em 0; }
.prose strong { font-weight: 500; }
.prose a { color: var(--ink); text-decoration: underline; }
.prose code {
  font-family: var(--font-mono); font-size: 0.9em;
  background: var(--sky); border-radius: 2px; padding: 1px 5px;
}
.prose pre {
  background: var(--bluegray); border-radius: var(--r-card);
  padding: 16px 20px; overflow-x: auto;
}
.prose pre code { background: none; padding: 0; font-size: 13px; line-height: 1.6; }

.legal-updated { font-size: 12px; color: var(--graphite); font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ---------- breadcrumb ---------- */
.breadcrumb { margin: 0 0 20px; }
.breadcrumb-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--graphite);
  font-family: var(--font-mono); letter-spacing: 0.03em;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb-list li + li::before { content: "/"; color: var(--bluegray); }
.breadcrumb-list a { color: var(--graphite); text-decoration: none; }
.breadcrumb-list a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumb-list [aria-current] { color: var(--ink); }

/* ---------- header: white bar, hairline lavender, black pill CTA ---------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lavender);
}
.site-head-in {
  max-width: var(--page-max); margin: 0 auto;
  padding: 0 var(--pad-x); height: 56px;
  display: flex; align-items: center; gap: 20px;
}
.lockup {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px;
}
.lockup:hover { text-decoration: none; }
.lockup img { width: 28px; height: 28px; }
.lockup-word { letter-spacing: -0.02em; }
.lockup-b { font-weight: 500; color: var(--graphite); }
.lockup-on-orange .lockup-b { color: var(--ink); opacity: 0.7; }

.mainnav { display: flex; align-items: center; gap: 21px; margin-left: auto; }
.mainnav a {
  color: var(--ink); font-weight: 500; font-size: 16px;
  padding: 6px 0; text-decoration: none;
}
.mainnav a:hover { text-decoration: underline; }
.mainnav a.is-here { text-decoration: underline; text-underline-offset: 4px; }
.mainnav .btn-pill { text-decoration: none; }
.mainnav .btn-pill:hover { text-decoration: none; }

.btn-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-plain); font-weight: 500; font-size: 16px;
  padding: 8px 21px; border-radius: var(--r-btn); border: 0; cursor: pointer;
  text-decoration: none; white-space: nowrap; line-height: 1.25;
}
.btn-pill:hover { background: #1a1a1a; color: var(--paper); text-decoration: none; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink); font-family: var(--font-plain);
  font-weight: 500; font-size: 16px; padding: 8px 21px;
  border-radius: var(--r-btn); cursor: pointer; text-decoration: none; white-space: nowrap;
}
.btn-ghost:hover { background: var(--faint); text-decoration: none; color: var(--ink); }
.btn-lg { padding: 11px 24px; }

.nav-toggle {
  display: none; margin-left: auto; background: none;
  border: 1px solid var(--ink); border-radius: 8px;
  cursor: pointer; width: 40px; height: 40px; padding: 8px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--ink);
  margin: 5px auto; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 740px) {
  .nav-toggle { display: block; }
  .mainnav {
    position: absolute; top: 56px; left: 0; right: 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--lavender);
    padding: 12px var(--pad-x) 18px; display: none;
  }
  .mainnav.is-open { display: flex; }
  .mainnav a { font-size: 16px; padding: 12px 0; }
  .mainnav .btn-pill { margin-top: 8px; justify-content: center; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- main rhythm ---------- */
main { display: block; }
.block { padding: var(--section-gap) 0; }
.block-tint { background: var(--faint); }
.frame { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--pad-x); }
.frame-narrow { max-width: 720px; }

/* ---------- type roles ---------- */
.mono-eye {
  font-family: var(--font-mono); font-weight: 400; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 16px;
}
.mono-eye.center { text-align: center; }
.h-display {
  font-size: clamp(34px, 6.5vw, 56px); line-height: 1.05;
  letter-spacing: -0.03em; font-weight: 500; max-width: 18ch;
}
.h-section {
  font-size: clamp(28px, 4vw, 40px); line-height: 1.12;
  letter-spacing: -0.025em; font-weight: 500;
}
.hl {
  background: var(--orange); color: var(--ink);
  padding: 2px 6px; box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 2px;
}
.lede {
  font-size: 16px; line-height: 1.5; color: var(--graphite);
  font-weight: 400; max-width: 52ch; margin: 18px 0 0;
}
.lede-sm {
  font-size: 16px; line-height: 1.5; color: var(--graphite);
  max-width: 48ch; margin: 14px 0 0;
}
.micro { font-size: 13px; color: var(--graphite); }
.center { text-align: center; }
.text-link {
  display: inline-block; margin-top: 12px;
  color: var(--ink); font-weight: 500; font-size: 15px;
  text-decoration: underline; text-underline-offset: 3px;
}
.text-link:hover { text-decoration-thickness: 2px; }

/* ---------- hero: full-bleed blue-gray, centered stack ---------- */
.hero {
  background: var(--bluegray);
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 10px 10px;
  padding: clamp(48px, 8vw, 88px) 0 0;
  text-align: center;
}
.hero-in { padding-bottom: 0; }
.hero .h-display { margin: 0 auto; max-width: 16ch; }
.hero .lede { margin: 18px auto 28px; }
.hero-cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
}
.pixel-mountain {
  margin: 0 auto; max-width: 520px;
  filter: drop-shadow(0 18px 40px rgba(197,211,232,0.9));
}
.pixel-mountain svg { width: 100%; height: auto; display: block; border-radius: var(--r-card) var(--r-card) 0 0; }

/* ---------- proof / logo strip ---------- */
.proof-band { padding: 48px 0; border-bottom: 1px solid var(--lavender); }
.logo-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 18px;
}
@media (max-width: 900px) { .logo-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .logo-strip { grid-template-columns: 1fr; } }
.logo-card {
  background: var(--faint); border-radius: var(--r-card);
  padding: 20px 18px; display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.35;
}
.logo-num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--graphite);
}

/* ---------- section head ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head .lede-sm { margin-left: auto; margin-right: auto; }

/* ---------- feature cards 4-col lavender ---------- */
.feat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 1000px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--lavender); border-radius: var(--r-card);
  padding: 20px; color: var(--ink); text-decoration: none;
  transition: background .15s ease;
}
.feat-card:hover { background: var(--bluegray); text-decoration: none; }
.feat-card h3 {
  font-size: 20px; line-height: 1.25; font-weight: 500;
  letter-spacing: -0.01em; font-family: var(--font-display);
}
.feat-card p {
  margin: 0; font-size: 15px; line-height: 1.5; color: var(--graphite); flex: 1;
}
.feat-card .text-link { margin-top: 4px; }

/* browser mock inside feat card */
.browser-mock {
  background: var(--paper); border: 1px solid var(--lavender);
  border-radius: var(--r-mock); overflow: hidden; margin-bottom: 6px;
}
.browser-chrome {
  display: flex; gap: 5px; padding: 8px 10px; border-bottom: 1px solid var(--lavender);
}
.browser-chrome i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--bluegray); display: block;
}
.browser-body { padding: 14px 12px 16px; display: flex; flex-direction: column; gap: 8px; min-height: 88px; }
.browser-body.cream { background: var(--cream); }
.browser-body.sky { background: var(--sky); }
.mock-tag {
  align-self: flex-start; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--paper); border: 1px solid var(--ink);
  border-radius: var(--r-tag); padding: 2px 8px;
}
.mock-line { display: block; height: 6px; background: var(--lavender); border-radius: 2px; }
.mock-line.w40 { width: 40%; }
.mock-line.w45 { width: 45%; }
.mock-line.w50 { width: 50%; }
.mock-line.w55 { width: 55%; }
.mock-line.w60 { width: 60%; }
.mock-line.w65 { width: 65%; }
.mock-line.w70 { width: 70%; }
.mock-line.w75 { width: 75%; }
.mock-line.w80 { width: 80%; }
.mock-line.w85 { width: 85%; }

/* ---------- two-col API / terminal block ---------- */
.split-api {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 56px); align-items: start;
}
@media (max-width: 840px) { .split-api { grid-template-columns: 1fr; } }
.term-card {
  background: var(--bluegray); border-radius: var(--r-card);
  padding: 20px 22px;
}
.term-row {
  display: flex; gap: 16px; align-items: baseline;
  background: var(--paper); border: 1px solid var(--lavender);
  border-radius: var(--r-mock); padding: 10px 14px; margin-top: 8px;
  font-size: 14px;
}
.term-row.ok { border-color: var(--ink); }
.term-k {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--graphite); min-width: 36px;
}
.term-v { font-weight: 500; color: var(--ink); }
.rule-list { list-style: none; margin: 22px 0 18px; padding: 0; }
.rule-list li {
  padding: 14px 0; border-bottom: 1px solid var(--lavender);
  font-size: 16px; line-height: 1.5; color: var(--graphite);
}
.rule-list li:last-child { border-bottom: 0; }
.rule-list strong { color: var(--ink); font-weight: 500; }

/* ---------- posts ---------- */
.row-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; margin-bottom: 28px;
}
.post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  background: var(--paper); border: 1px solid var(--ink);
  border-radius: var(--r-card); padding: 18px;
  transition: background .15s ease;
}
.post-card:hover { background: var(--faint); }
.post-card a { display: flex; flex-direction: column; gap: 8px; color: inherit; text-decoration: none; height: 100%; }
.post-card a:hover { text-decoration: none; }
.post-card h2, .post-card h3 {
  font-size: 20px; line-height: 1.25; font-weight: 500; letter-spacing: -0.015em;
}
.post-card p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--graphite); flex: 1; }
.post-img {
  border-radius: var(--r-card); aspect-ratio: 16/10; object-fit: cover;
  margin-bottom: 4px; border: 1px solid var(--lavender);
}

/* ---------- empty ---------- */
.empty-note {
  background: var(--lavender); border-radius: var(--r-card);
  padding: clamp(28px, 5vw, 48px);
}
.empty-note .h-section { margin-bottom: 10px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ---------- article ---------- */
.article-head { padding: 0 0 22px; }
.article-title {
  font-size: clamp(32px, 5.5vw, 48px); line-height: 1.05;
  letter-spacing: -0.03em; font-weight: 500; margin: 0 0 16px; max-width: 22ch;
}
.article-head .lede { margin: 0 0 22px; }
.byline {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0 0; border-top: 1px solid var(--lavender);
}
.byline-img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--ink);
}
.byline-col { display: flex; flex-direction: column; gap: 2px; }
.byline-a { color: var(--ink); font-weight: 500; font-size: 15px; text-decoration: none; }
.byline-a:hover { text-decoration: underline; }
.article-cover { margin: 28px 0 0; }
.article-cover img {
  border-radius: var(--r-card); width: 100%; aspect-ratio: 16/9;
  object-fit: cover; border: 1px solid var(--ink);
}

.toc {
  background: var(--lavender); border-radius: var(--r-card);
  padding: 22px 24px; margin: 32px 0;
}
.toc .mono-eye { margin: 0 0 12px; }
.toc-list {
  list-style: none; margin: 0; padding: 0;
  columns: 2; column-gap: 32px;
}
@media (max-width: 620px) { .toc-list { columns: 1; } }
.toc-list li { margin: 0 0 8px; break-inside: avoid; }
.toc-list a {
  color: var(--ink); font-size: 15px; line-height: 1.4;
  text-decoration: none; display: inline-block; padding: 2px 0;
}
.toc-list a:hover { text-decoration: underline; }
.article-body { max-width: 72ch; }

/* ---------- amazon card native ---------- */
.amz-card { border-radius: var(--r-card) !important; border-color: var(--ink) !important; }
.amz-card .amz-cta { border-radius: var(--r-btn) !important; background: var(--ink) !important; color: var(--paper) !important; }

/* ---------- FAQ / details ---------- */
.prose details {
  border: 1px solid var(--ink); border-radius: var(--r-card);
  background: var(--faint); padding: 4px 18px; margin: 12px 0;
}
.prose summary {
  font-weight: 500; font-size: 17px; color: var(--ink);
  padding: 14px 0; cursor: pointer; list-style: none;
  font-family: var(--font-plain);
}
.prose summary::-webkit-details-marker { display: none; }
.prose details p { margin: 0 0 14px; color: var(--graphite); }

/* ---------- author (shared view) ---------- */
.author-hero { display: flex; gap: 24px; align-items: center; }
.author-hero img {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--ink);
}
.approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px;
}
@media (max-width: 720px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-card {
  background: var(--lavender); border-radius: var(--r-card); padding: 22px;
}
.approach-card h3 {
  font-size: 18px; font-weight: 500; margin-bottom: 8px;
  font-family: var(--font-display);
}
.approach-card p { margin: 0; font-size: 14px; color: var(--graphite); }

/* author-callout partial */
.author-callout {
  background: var(--cream); border: 1px solid var(--ink);
  border-radius: var(--r-card);
}

/* ---------- newsletter ---------- */
.newsletter-block { padding: var(--section-gap) 0; }
.nl-card {
  background: var(--sky); border-radius: var(--r-card);
  padding: clamp(28px, 5vw, 48px);
  max-width: 720px;
}
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 12px; }
.nl-form input[type="email"] {
  flex: 1; min-width: 220px; padding: 11px 16px;
  border-radius: var(--r-btn); border: 1px solid var(--ink);
  background: var(--paper); color: var(--ink);
  font-family: var(--font-plain); font-size: 15px;
}
.nl-form input[type="email"]::placeholder { color: var(--graphite); }
.nl-form input[type="email"]:focus { outline: 2px solid var(--orange); outline-offset: 0; }
.nl-form input[aria-invalid="true"] { border-color: #b91c1c; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.newsletter-ok {
  margin: 0; padding: 14px 16px; background: var(--paper);
  border: 1px solid var(--ink); border-radius: var(--r-card);
  font-size: 15px; color: var(--ink);
}
.micro a { color: var(--graphite); }

/* ---------- footer: full Signal Orange band ---------- */
.site-foot {
  background: var(--orange); color: var(--ink);
  padding: 56px 0 36px;
}
.foot-top { margin-bottom: 36px; }
.foot-tag {
  margin: 12px 0 0; font-size: 15px; max-width: 40ch; color: var(--ink);
}
.foot-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 560px;
}
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-col h3 {
  font-family: var(--font-mono); font-weight: 400; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin: 0 0 12px; color: var(--ink);
}
.foot-col a {
  display: block; color: var(--ink); font-size: 14px; padding: 4px 0;
  text-decoration: none; font-weight: 500;
}
.foot-col a:hover { text-decoration: underline; }
.foot-base {
  margin: 36px 0 0; padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.25);
  font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.03em;
}

/* ---------- cookie banner ---------- */
.cookiebox {
  position: fixed; left: 50%; bottom: 18px;
  transform: translateX(-50%) translateY(20px);
  width: min(640px, calc(100vw - 28px)); z-index: 300;
  background: var(--paper); border: 1px solid var(--ink);
  border-radius: var(--r-card); padding: 20px 22px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.cookiebox.is-visible {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.cookiebox p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--graphite); }
.cookiebox p a { color: var(--ink); }
.cookiebox-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.cookiebox-actions .btn-pill,
.cookiebox-actions .btn-ghost { flex: 1; justify-content: center; min-width: 120px; }

/* ---------- productos native tweaks ---------- */
.page-productos .prose h1 {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 500;
}
.page-productos .prod-disclosure {
  border-radius: var(--r-card); background: var(--cream);
  border-color: var(--ink); border-left-color: var(--orange);
}
.page-productos .prod-jumpnav { background: rgba(255,255,255,.92); border-bottom-color: var(--lavender); }
.page-productos .prod-jumpnav a { border-color: var(--ink); border-radius: var(--r-tag); }
.page-productos .prod-card { border-radius: var(--r-card); border-color: var(--ink); }
.page-productos .prod-card-cta { border-radius: var(--r-btn); background: var(--ink) !important; color: var(--paper) !important; }

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

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
