/* =========================================================
   Credit-history guide — fintech / gov-friendly light theme
   Vanilla CSS, mobile-first, accessibility-aware.
   ========================================================= */

:root {
  --bg:        #F6F8FB;
  --surface:   #FFFFFF;
  --surface-2: #F1F4F9;
  --border:    #E3E8EF;
  --border-2:  #CFD7E2;
  --text:      #0E1A2B;
  --text-2:    #41526B;
  --text-3:    #738299;
  --primary:   #0C9ED9;   /* Кредит Радар */
  --primary-2: #0878A8;
  --primary-soft: #E0F4FC;
  --accent:    #00A28A;   /* teal accent, used sparingly */
  --warn:      #B45309;
  --warn-soft: #FEF3C7;
  --danger:    #B42318;
  --ok:        #057A55;
  --ok-soft:   #E5F4EC;

  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-1:  0 1px 2px rgba(15, 23, 42, .04), 0 1px 1px rgba(15, 23, 42, .03);
  --shadow-2:  0 8px 24px -10px rgba(15, 23, 42, .12), 0 2px 6px rgba(15, 23, 42, .04);
  --shadow-3:  0 24px 60px -20px rgba(12, 158, 217, .25), 0 6px 18px rgba(15, 23, 42, .06);

.cr-service-banner {
  background: linear-gradient(90deg, var(--primary-soft), #fff);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.45;
}
.cr-service-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
}
.cr-service-banner strong { color: var(--primary-2); }

  --container: 1140px;
  --pad:       clamp(20px, 4vw, 40px);

  /* Важно: не тянем внешние шрифты, чтобы страница грузилась как "обычный сайт". */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  --ease:      cubic-bezier(.22, .61, .36, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --dur:       .42s;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ----- Containers / utilities ----- */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(60px, 9vw, 110px); }
.section--alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 10px;
  border-radius: 999px;
}
.kicker--light { color: #fff; background: rgba(255,255,255,.16); }

.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  margin: 14px 0 12px;
  letter-spacing: -0.01em;
}
.section__head .lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-2);
  margin: 0;
}
.section__head .lede + .lede { margin-top: 12px; }
.section__head .lede--service {
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--primary) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--border));
}

.lede { font-size: 18px; color: var(--text-2); }

/* ----- Skip link ----- */
.skip-link {
  position: absolute; left: -10000px; top: 8px;
  background: var(--text); color: #fff; padding: 10px 14px; border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; }

/* ----- Scroll progress ----- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; background: transparent;
  z-index: 80; pointer-events: none;
}
.scroll-progress__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width .12s linear;
}

/* ----- Topbar ----- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 248, 251, .85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 700; letter-spacing: -.01em;
  text-decoration: none;
}
.logo__mark { color: var(--primary); }

.topbar__nav { display: flex; gap: 6px; }
.topbar__nav a {
  color: var(--text-2); padding: 8px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
}
.topbar__nav a:hover { background: var(--surface-2); color: var(--text); text-decoration: none; }
@media (max-width: 720px) { .topbar__nav { display: none; } }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -.005em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-3); }
.btn--primary:hover { background: var(--primary-2); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { background: var(--surface); }

/* ----- HERO ----- */
.hero { padding: clamp(48px, 7vw, 100px) 0 clamp(40px, 6vw, 80px); position: relative; overflow: clip; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(closest-side, rgba(10,102,194,.10), transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero__grid {
  display: grid; gap: clamp(28px, 5vw, 60px);
  grid-template-columns: 1.05fr .95fr;
  align-items: center; position: relative; z-index: 1;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  padding: 8px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(5,122,85,.18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(5,122,85,.28);} 50% { box-shadow: 0 0 0 6px rgba(5,122,85,0);} }

.hero__title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 20px 0 18px; font-weight: 700;
}
.hero__title .hl {
  background: linear-gradient(180deg, transparent 62%, rgba(10,102,194,.18) 62%);
  padding: 0 4px;
}
.hero__lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--text-2); max-width: 56ch; margin: 0 0 28px; }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__facts {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.hero__facts li {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; box-shadow: var(--shadow-1);
}
.hero__facts strong { display: block; font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.hero__facts span { color: var(--text-3); font-size: 13px; }
@media (max-width: 600px) {
  .hero__facts { grid-template-columns: 1fr; }
}

/* hero visual */
.hero__visual { position: relative; min-height: 380px; }
.card-stack { position: relative; height: 100%; }
.paper {
  position: absolute; left: 50%; top: 0;
  width: min(360px, 92%); transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-2);
}
.paper--1 { padding: 22px; z-index: 3; animation: float 6s var(--ease) infinite; }
.paper--2 { top: 22px; transform: translateX(-58%) rotate(-4deg); height: 280px; opacity: .85; z-index: 2; }
.paper--3 { top: 44px; transform: translateX(-42%) rotate(5deg); height: 280px; opacity: .55; z-index: 1; }
@keyframes float { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(-8px);} }

.paper__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.paper__title { font-weight: 700; letter-spacing: -.01em; }
.paper__chip {
  font-family: var(--font-mono); font-size: 11px;
  padding: 4px 8px; border-radius: 6px;
  background: var(--primary-soft); color: var(--primary);
}
.paper__row {
  display: flex; justify-content: space-between; padding: 9px 0;
  border-top: 1px dashed var(--border); font-size: 14px; color: var(--text-2);
}
.paper__row:first-of-type { border-top: 0; }
.pill {
  display: inline-block; font-size: 12px; padding: 3px 8px; border-radius: 999px;
  font-weight: 600;
}
.pill--ok { background: var(--ok-soft); color: var(--ok); }
.pill--muted { background: var(--surface-2); color: var(--text-2); font-weight: 500; }

.paper__bars { display: grid; gap: 8px; margin: 16px 0; }
.bar {
  height: 8px; background: var(--surface-2); border-radius: 999px; overflow: hidden;
}
.bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  animation: grow 1.6s var(--ease-out) both;
}
@keyframes grow { from { width: 0 !important; } }

.paper__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px;
}
.score {
  font-family: var(--font-mono); font-weight: 700; font-size: 28px; letter-spacing: -0.02em;
  color: var(--primary);
}

/* ----- 3-col info ----- */
.grid-3 { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }
.info {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-1);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.info:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--border-2); }
.info__num {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; font-weight: 700;
  background: var(--primary-soft); color: var(--primary); margin-bottom: 14px;
  font-family: var(--font-mono);
}
.info h3 { font-size: 18px; margin: 0 0 8px; letter-spacing: -.01em; }
.info p { color: var(--text-2); margin: 0; }

/* ----- Choice cards ----- */
.choice { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .choice { grid-template-columns: 1fr; } }
.choice__card {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px;
  text-align: left; cursor: pointer;
  padding: 22px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-1);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  font: inherit; color: inherit;
}
.choice__card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--border-2); }
.choice__card.is-active { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft), var(--shadow-2); }
.choice__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; color: var(--primary);
  background: var(--primary-soft);
}
.choice__card.is-active .choice__icon { background: var(--primary); color: #fff; }
.choice__body h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: -.01em; }
.choice__body p { margin: 0 0 10px; color: var(--text-2); font-size: 15px; }
.choice__hint {
  font-size: 12px; font-weight: 600; color: var(--primary);
  background: var(--primary-soft); padding: 4px 10px; border-radius: 999px;
}

/* ----- Roadmap ----- */
.roadmap { list-style: none; padding: 0; margin: 0; position: relative; }
.roadmap__line {
  position: absolute; left: 22px; top: 8px; bottom: 8px; width: 2px;
  background: var(--border);
  border-radius: 2px;
}
.roadmap__line-fill {
  position: absolute; top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: height .25s linear;
}
@media (max-width: 720px) { .roadmap__line { left: 18px; } }

.step { position: relative; padding-left: 64px; margin-bottom: 14px; }
@media (max-width: 720px) { .step { padding-left: 54px; } }

.step__head {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  width: 100%; text-align: left; cursor: pointer; font: inherit; color: inherit;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-1);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.step__head:hover { border-color: var(--border-2); box-shadow: var(--shadow-2); }
.step__num {
  position: absolute; left: 4px; top: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface); color: var(--primary);
  display: grid; place-items: center; font-weight: 700;
  border: 2px solid var(--border);
  font-family: var(--font-mono); font-size: 15px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  z-index: 2;
}
@media (max-width: 720px) { .step__num { left: 0; width: 36px; height: 36px; font-size: 14px; } }
.step.is-active .step__num,
.step.is-done .step__num {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.step__title-wrap { display: flex; flex-direction: column; gap: 2px; }
.step__label {
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary);
}
.step__title { font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.step__chevron {
  width: 12px; height: 12px; border-right: 2px solid var(--text-3); border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg); transition: transform .25s var(--ease);
  margin-right: 4px;
}
.step__head[aria-expanded="true"] .step__chevron { transform: rotate(-135deg); }

.step__body {
  padding: 18px 22px 6px 22px;
  color: var(--text-2);
  overflow: hidden;
}
.step__body[hidden] { display: none; }
.step__body p { margin: 0 0 10px; }
.bullets { padding-left: 18px; margin: 0 0 12px; }
.bullets li { margin: 6px 0; }

.callout {
  margin-top: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  color: var(--text-2);
  border-left: 3px solid var(--primary);
}
.callout--info { background: var(--primary-soft); border-color: rgba(10,102,194,.2); }
.callout--warn { background: var(--warn-soft); border-color: rgba(180,83,9,.25); border-left-color: var(--warn); color: #5a3a0a; }

/* ----- BKI grid ----- */
.grid-bki { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .grid-bki { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-bki { grid-template-columns: 1fr; } }
.bki {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.bki:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--border-2); }
.bki__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.bki__logo {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 700; font-size: 20px;
  display: grid; place-items: center;
}
.bki h3 { margin: 0; font-size: 17px; letter-spacing: -.01em; }
.bki__sub { margin: 2px 0 0; color: var(--text-3); font-size: 13px; }
.bki__meta { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 6px; }
.bki__meta li {
  display: flex; justify-content: space-between; font-size: 13px;
  padding: 6px 0; border-bottom: 1px dashed var(--border);
}
.bki__meta li:last-child { border-bottom: 0; }
.bki__meta span { color: var(--text-3); }
.bki__meta strong { color: var(--text); font-weight: 600; }
.bki__link {
  font-weight: 600; font-size: 14px;
}
.bki__link--muted { color: var(--text-3); pointer-events: none; }

.note { margin-top: 24px; color: var(--text-3); font-size: 14px; }

/* ----- Mistakes ----- */
.grid-mistakes { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .grid-mistakes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-mistakes { grid-template-columns: 1fr; } }
.mistake {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  position: relative; overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.mistake::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--danger);
  border-top-left-radius: var(--radius); border-bottom-left-radius: var(--radius);
}
.mistake:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--border-2); }
.mistake__icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center; font-weight: 700;
  background: #FDECEA; color: var(--danger); margin-bottom: 12px;
}
.mistake h3 { margin: 0 0 6px; font-size: 16px; letter-spacing: -.01em; }
.mistake p { margin: 0; color: var(--text-2); font-size: 14.5px; }

/* ----- Checklist ----- */
.checklist {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 10px;
  max-width: 720px;
}
.checklist li {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.checklist label {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; cursor: pointer;
  font-size: 15.5px;
}
.checklist input { position: absolute; opacity: 0; pointer-events: none; }
.check {
  width: 22px; height: 22px; border: 2px solid var(--border-2);
  border-radius: 6px; flex-shrink: 0;
  display: grid; place-items: center;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.check::after {
  content: ""; width: 11px; height: 6px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform .2s var(--ease);
  margin-top: -2px;
}
.checklist input:checked + .check { background: var(--primary); border-color: var(--primary); }
.checklist input:checked + .check::after { transform: rotate(-45deg) scale(1); }
.checklist input:checked ~ .check__text { color: var(--text-3); text-decoration: line-through; }
.checklist input:focus-visible + .check { box-shadow: 0 0 0 3px var(--primary-soft); }

.checklist__bar {
  max-width: 720px;
  display: flex; align-items: center; gap: 14px;
}
.checklist__progress {
  flex: 1; height: 6px; background: var(--surface-2); border-radius: 999px; overflow: hidden;
  border: 1px solid var(--border);
}
.checklist__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width .4s var(--ease-out);
}
.checklist__count { font-family: var(--font-mono); font-size: 13px; color: var(--text-2); }

/* ----- CTA ----- */
.section--cta { padding: clamp(40px, 6vw, 80px) 0; }
.cta {
  background:
    radial-gradient(circle at 100% 0%, rgba(0,162,138,.30), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.10), transparent 40%),
    linear-gradient(135deg, #0A66C2 0%, #084E94 100%);
  border-radius: var(--radius-lg);
  color: #fff; padding: clamp(36px, 5vw, 64px);
  position: relative; overflow: hidden;
}
.cta__inner { max-width: 780px; }
.cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 14px 0 18px; letter-spacing: -.015em;
}
.cta__route {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin: 6px 0 18px;
}
.chip {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
}
.arrow { color: rgba(255,255,255,.7); font-family: var(--font-mono); }
.cta__note { color: rgba(255,255,255,.85); margin: 0 0 22px; max-width: 60ch; }
.cta .btn--primary { background: #fff; color: var(--primary-2); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.cta .btn--primary:hover { background: #F0F4F9; }

/* ----- Footer ----- */
.footer {
  background: #0E1A2B; color: #B5C2D4;
  padding: 56px 0 28px;
}
.footer__grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr 1.4fr;
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; }
.footer__about { margin: 12px 0 0; max-width: 42ch; font-size: 14px; color: #94A3B8; }
.footer h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 0 0 12px; }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer__links a { color: #B5C2D4; font-size: 14.5px; }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  color: #6F7E94; font-size: 13px;
}
.footer__top { color: #B5C2D4; }

/* ----- Reveal animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .paper--1 { animation: none; }
  .hero__eyebrow .dot { animation: none; }
}

/* ----- Focus ----- */
:focus-visible {
  outline: 3px solid var(--primary); outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 3px; }

/* ----- Helpers ----- */
.section__head h2 strong { color: var(--primary); font-weight: 700; }
