/* Mensual — global tokens, reset, fonts, utilities */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/fraunces-600.woff2") format("woff2");
}

:root {
  --ink: #0B1B33;
  --ink-2: #13294B;
  --paper: #F6F7F2;
  --paper-2: #ECEEE6;
  --mint: #D9F1E5;
  --emerald: #1FA37A;
  --teal: #0E7C66;
  --line: #E1E5DA;
  --text: #1A2230;
  --muted: #4A5468;
  --warn: #B5651D;
  --grad: linear-gradient(125deg, #0B1B33 0%, #0E7C66 100%);
  --grad-soft: linear-gradient(125deg, #13294B 0%, #1FA37A 100%);
  --shadow-sm: 0 1px 2px rgba(11,27,51,.06), 0 2px 6px rgba(11,27,51,.04);
  --shadow-md: 0 8px 24px rgba(11,27,51,.08);
  --shadow-lg: 0 24px 48px rgba(11,27,51,.12);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1200px;
  --pad: clamp(16px, 4vw, 32px);
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(11,27,51,.25); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--emerald); color: var(--teal); }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(36px, 5.6vw, 56px); }
h2 { font-size: clamp(28px, 3.6vw, 40px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); }
h4 { font-size: 19px; }
p { margin: 0 0 1em; max-width: 70ch; }
ul, ol { padding-left: 1.2em; margin: 0 0 1em; }
li { margin-bottom: .35em; }
strong { font-weight: 600; color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.eyebrow { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); font-weight: 600; }
.lede { font-size: clamp(17px, 1.8vw, 19px); color: var(--muted); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; min-height: 48px; border-radius: 999px; border: 1px solid transparent; font-weight: 600; text-decoration: none; transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease; }
.btn-primary { background: var(--grad); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; text-decoration: none; }
.btn-soft { background: var(--mint); color: var(--ink); }
.btn-soft:hover { background: #c6e9d6; text-decoration: none; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip { position: absolute; top: -40px; left: 8px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 6px; z-index: 1000; }
.skip:focus { top: 8px; }
:focus-visible { outline: 2px solid var(--emerald); outline-offset: 3px; border-radius: 4px; }

.tag { display: inline-flex; align-items: center; gap: 6px; background: var(--mint); color: var(--ink); padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.tag-warn { background: #FFF3E0; color: #7A4317; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

section { padding: clamp(56px, 8vw, 96px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.disclaimer-bar { background: var(--ink); color: #C8D2E0; font-size: 13px; padding: 8px 0; text-align: center; }
.disclaimer-bar a { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
