/* clinicsva.com — Credit intelligence desk */
@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,500;0,7..72,600;0,7..72,700;1,7..72,500;1,7..72,600&family=Onest:wght@400;500;600;700;800&display=swap');

:root {
  --navy-950: #07111F;
  --navy-900: #0B1929;
  --navy-800: #132338;
  --navy-700: #1C314D;
  --ink: #0E1A2B;
  --ink-soft: #2A3B51;
  --muted: #5B6B7F;
  --muted-2: #8494A7;
  --line: #D9E1EB;
  --line-soft: #EBF0F5;
  --paper: #F4F6F9;
  --surface: #FFFFFF;
  --cobalt: #1F5EFF;
  --cobalt-deep: #1346D0;
  --cobalt-soft: #E8EFFF;
  --cobalt-glow: rgba(31, 94, 255, 0.14);
  --gold: #C8972E;
  --gold-deep: #A6791A;
  --gold-soft: #F8F0DE;
  --mint: #0F8A72;
  --mint-soft: #E3F5F0;
  --danger-soft: #FCEEEE;
  --shadow-sm: 0 1px 2px rgba(7, 17, 31, 0.05);
  --shadow-md: 0 10px 28px rgba(7, 17, 31, 0.07), 0 2px 8px rgba(7, 17, 31, 0.04);
  --shadow-lg: 0 24px 56px rgba(7, 17, 31, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --header-h: 74px;
  --max: 1160px;
  --prose: 720px;
  --font-display: "Literata", Georgia, "Times New Roman", serif;
  --font-sans: "Onest", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cobalt-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--cobalt); }
ul, ol { padding-left: 1.25em; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; line-height: 1.2; color: var(--ink); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
}

/* ——— Layout ——— */
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, 860px);
  margin-inline: auto;
}

.main-wrap { min-height: 60vh; }

/* ——— Site header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand:hover { color: var(--ink); }

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px var(--cobalt-glow);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}

.brand__mark-svg {
  width: 38px;
  height: 38px;
  display: block;
  border-radius: 11px;
}

.brand__text {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand__text span { color: var(--cobalt); }

.brand__img {
  height: 36px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.2rem;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  background: var(--cobalt-soft);
  color: var(--cobalt-deep);
}

.nav-desktop .nav-cta {
  margin-left: 0.45rem;
  background: var(--navy-900);
  color: #fff !important;
  padding: 0.62rem 1.15rem;
}

.nav-desktop .nav-cta:hover {
  background: var(--cobalt-deep);
}

/* Floating burger */
.nav-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  color: var(--ink);
  transition: background 0.2s, transform 0.2s var(--ease);
}

.nav-toggle:hover { background: var(--cobalt-soft); }
.nav-toggle:active { transform: scale(0.96); }

.nav-toggle__bars {
  width: 18px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
  transform-origin: center;
}

body.nav-open .nav-toggle__bars span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
body.nav-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(7, 17, 31, 0.48);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

body.nav-open .nav-mobile {
  opacity: 1;
  visibility: visible;
}

.nav-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 340px);
  height: 100%;
  background: var(--surface);
  padding: 5.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: var(--shadow-lg);
}

body.nav-open .nav-mobile__panel { transform: translateX(0); }

.nav-mobile__panel a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line-soft);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.nav-mobile__panel a:hover,
.nav-mobile__panel a[aria-current="page"] {
  color: var(--cobalt-deep);
}

.nav-mobile__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-desktop { display: flex; }
  .nav-mobile { display: none; }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.925rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--cobalt);
  color: #fff;
  box-shadow: 0 8px 20px var(--cobalt-glow);
}
.btn--primary:hover {
  background: var(--cobalt-deep);
  color: #fff;
}

.btn--ink {
  background: var(--navy-900);
  color: #fff;
}
.btn--ink:hover {
  background: var(--navy-800);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--cobalt);
  color: var(--cobalt-deep);
  background: var(--cobalt-soft);
}

.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover {
  background: var(--cobalt-soft);
  color: var(--cobalt-deep);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--gold {
  background: linear-gradient(180deg, #E0B34A 0%, var(--gold) 100%);
  color: var(--navy-950);
  box-shadow: 0 8px 18px rgba(200, 151, 46, 0.28);
}
.btn--gold:hover {
  background: linear-gradient(180deg, #E8C05C 0%, var(--gold-deep) 100%);
  color: var(--navy-950);
}

/* ——— Eyebrow ——— */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt-deep);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--cobalt);
  border-radius: 1px;
}

.eyebrow--on-dark {
  color: #8FB0FF;
}
.eyebrow--on-dark::before {
  background: #8FB0FF;
}

.eyebrow--gold {
  color: var(--gold-deep);
}
.eyebrow--gold::before {
  background: var(--gold);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 95% -10%, rgba(31, 94, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(200, 151, 46, 0.1), transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, var(--paper) 100%);
  padding: 3.25rem 0 3.75rem;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__copy { max-width: 40rem; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 5.4vw, 3.7rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0.85rem 0 1.2rem;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  color: var(--cobalt-deep);
  font-weight: 500;
}

.hero__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding-top: 0.25rem;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

.hero__stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Floating plastic card — signature */
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.plastic-card {
  width: min(100%, 340px);
  aspect-ratio: 1.586 / 1;
  border-radius: 18px;
  padding: 1.35rem 1.4rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08) inset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.plastic-card--front {
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(255,255,255,0.18), transparent 50%),
    linear-gradient(145deg, #1A3F9A 0%, #1346D0 42%, #0A2463 100%);
  z-index: 2;
  transform: rotate(-3deg);
  transition: transform 0.45s var(--ease);
}


.plastic-card--back {
  position: absolute;
  width: min(88%, 300px);
  background:
    linear-gradient(145deg, #24364F 0%, #142538 100%);
  z-index: 1;
  transform: translate(18%, 12%) rotate(6deg);
  opacity: 0.92;
}

.plastic-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.14) 48%, transparent 56%);
  pointer-events: none;
  z-index: 1;
}

.plastic-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.plastic-card__chip {
  width: 38px;
  height: 28px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, #E8C96A 0%, #C8972E 45%, #F0D78A 100%);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  position: relative;
}
.plastic-card__chip::before {
  content: "";
  position: absolute;
  inset: 6px 4px;
  border: 1px solid rgba(120, 80, 10, 0.35);
  border-radius: 2px;
}

.plastic-card__network {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}

.plastic-card__mid {
  position: relative;
  z-index: 2;
}

.plastic-card__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.35rem;
}

.plastic-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 14ch;
}

.plastic-card__bot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.plastic-card__meta {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

.plastic-card__rate {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.plastic-card__rate small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.25rem;
}

@media (min-width: 900px) {
  .hero {
    padding: 4.5rem 0 5rem;
  }
  .hero__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
  }
  .hero-card-stack {
    margin-inline: 0 0;
    justify-self: end;
  }
}

/* ——— Sections ——— */
.section {
  padding: 3.5rem 0;
}

.section--tight { padding: 2.5rem 0; }

.section--white { background: var(--surface); }

.section--navy {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(31, 94, 255, 0.22), transparent 50%),
    var(--navy-900);
  color: #C5D2E0;
}

.section--navy h2,
.section--navy .section-head h2 {
  color: #fff;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-top: 0.4rem;
}

.section-head__aside {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 24rem;
  text-align: right;
}

.section-head a.more-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--cobalt-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
}

.section-head a.more-link:hover { color: var(--cobalt); }

.section-head a.more-link svg {
  transition: transform 0.2s var(--ease);
}

.section-head a.more-link:hover svg {
  transform: translateX(3px);
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
}

/* ——— Brand / card product tiles ——— */
.brand-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .brand-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .brand-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .brand-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.brand-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.brand-card:hover {
  border-color: #c3d0e0;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.brand-card__ribbon {
  background:
    linear-gradient(105deg, var(--navy-900) 0%, var(--navy-800) 55%, #1a3a6e 100%);
  color: #fff;
  padding: 1.15rem 1.25rem 1.25rem;
  position: relative;
  overflow: hidden;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
}

.brand-card__ribbon::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -40px;
  top: -50px;
  border-radius: 50%;
  background: rgba(31, 94, 255, 0.28);
  pointer-events: none;
}

.brand-card__ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  pointer-events: none;
}

.brand-card__badge {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(200, 151, 46, 0.2);
  color: #F0D78A;
  border: 1px solid rgba(240, 215, 138, 0.35);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
}

.brand-card__name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}

.brand-card__name a {
  color: #fff;
  text-decoration: none;
}

.brand-card__name a:hover {
  color: #dce8ff;
}

.brand-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  flex: 1;
}

.brand-card__blurb {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.brand-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line-soft);
}

.brand-card__specs li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.4;
}

.brand-card__specs .spec-label {
  font-weight: 700;
  color: var(--muted-2);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 0.1rem;
}

.brand-card__specs .spec-value {
  color: var(--ink-soft);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-card__specs li.is-priority .spec-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  -webkit-line-clamp: 1;
  letter-spacing: -0.02em;
}

.brand-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.brand-card__highlights li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.45;
}

.brand-card__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 3px var(--cobalt-soft);
}

.brand-card__foot {
  margin-top: auto;
  padding-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.brand-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--gold-soft);
  border: 1px solid #efdca8;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-left: auto;
}

.brand-card__rating svg {
  color: var(--gold-deep);
}

/* Featured brand lead */
.brand-lead {
  display: grid;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.brand-lead__visual {
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(31, 94, 255, 0.35), transparent 55%),
    linear-gradient(145deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 240px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.brand-lead__visual::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -80px;
  bottom: -100px;
  background: rgba(200, 151, 46, 0.12);
}

.brand-lead__body {
  padding: 1.75rem 1.5rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand-lead__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  letter-spacing: -0.025em;
}

.brand-lead__body h3 a {
  text-decoration: none;
  color: var(--ink);
}
.brand-lead__body h3 a:hover { color: var(--cobalt-deep); }

@media (min-width: 900px) {
  .brand-lead {
    grid-template-columns: 0.95fr 1.15fr;
  }
  .brand-lead__visual {
    min-height: 100%;
    padding: 2.25rem;
  }
  .brand-lead__body {
    padding: 2.25rem 2rem;
    justify-content: center;
  }
}

/* ——— Article cards ——— */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid--2,
.card-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.article-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}

.article-card:hover {
  border-color: #c3d0e0;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.article-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, var(--cobalt-soft) 0%, #dce6f5 45%, var(--gold-soft) 100%);
  overflow: hidden;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__media-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
}

.article-card__media-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(31,94,255,0.22), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(200,151,46,0.16), transparent 45%);
}

.article-card__media-fallback span,
.fallback-monogram {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cobalt-deep);
  opacity: 0.55;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 0 1rem;
  line-height: 1.3;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__media-fallback--rich .fallback-monogram {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  opacity: 0.6;
}

.read-cue {
  color: var(--cobalt-deep);
  font-weight: 700;
}

.article-card--text .article-card__body {
  padding-top: 1.5rem;
}

.article-card__body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.article-card__cat {
  color: var(--cobalt-deep);
  text-decoration: none;
  background: var(--cobalt-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.article-card__cat:hover {
  background: #d7e4ff;
  color: var(--cobalt-deep);
}

.article-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.article-card h3 a {
  text-decoration: none;
  color: var(--ink);
}

.article-card h3 a:hover { color: var(--cobalt-deep); }

.article-card__excerpt {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.5rem;
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* Spotlight */
.spotlight {
  display: grid;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.spotlight__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--cobalt-soft) 0%, #dce6f5 50%, var(--gold-soft) 100%);
  overflow: hidden;
}

.spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight__body {
  padding: 1.75rem 1.5rem 1.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.spotlight__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.spotlight__body h3 a {
  text-decoration: none;
  color: var(--ink);
}
.spotlight__body h3 a:hover { color: var(--cobalt-deep); }

.spotlight__body .article-card__excerpt {
  -webkit-line-clamp: 4;
  font-size: 1rem;
}

@media (min-width: 860px) {
  .spotlight {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
  }
  .spotlight__media {
    aspect-ratio: auto;
    min-height: 100%;
  }
  .spotlight__body {
    padding: 2.25rem 2rem;
    justify-content: center;
  }
}

/* Featured layout */
.featured-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .featured-layout {
    grid-template-columns: 1.25fr 1fr;
    gap: 1.5rem;
  }
  .featured-layout .article-card--lead {
    grid-row: 1 / span 2;
  }
  .featured-layout .article-card--lead .article-card__media {
    aspect-ratio: 16 / 12;
  }
  .featured-layout .article-card--lead h3 {
    font-size: 1.55rem;
  }
  .featured-layout .article-card--lead .article-card__excerpt {
    -webkit-line-clamp: 4;
  }
}

/* List rows */
.article-row {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.article-row:hover {
  border-color: #c3d0e0;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .article-row {
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.25rem 1rem 1rem;
  }
}

.article-row__media {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cobalt-soft), #dce6f5);
}

.article-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-row__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.article-row h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.article-row h2 a {
  text-decoration: none;
  color: var(--ink);
}
.article-row h2 a:hover { color: var(--cobalt-deep); }

.article-row__excerpt {
  font-size: 0.925rem;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stack-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Category chips */
.cat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  min-height: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.875rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.cat-chip:hover {
  border-color: var(--cobalt);
  background: var(--cobalt-soft);
  color: var(--cobalt-deep);
}

.cat-chip__count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--line-soft);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

/* Principles */
.principles {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .principles { grid-template-columns: repeat(3, 1fr); }
}

.principle {
  padding: 1.5rem 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

.principle__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(31, 94, 255, 0.2);
  color: #9BBCFF;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.principle h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.principle p {
  font-size: 0.9rem;
  color: #9AACC0;
  line-height: 1.6;
  margin: 0;
}

/* Page heroes */
.page-hero {
  padding: 2.75rem 0 2rem;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(31, 94, 255, 0.12), transparent 55%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.75rem;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--cobalt-deep); }
.breadcrumb span[aria-hidden] { opacity: 0.5; }

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink-soft);
  border: 1px solid transparent;
}

.pagination a:hover {
  background: var(--cobalt-soft);
  color: var(--cobalt-deep);
}

.pagination .is-current {
  background: var(--navy-900);
  color: #fff;
}

.pagination .is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Article page */
.article-layout {
  padding: 2.5rem 0 4rem;
}

.article-header {
  max-width: var(--prose);
  margin: 0 auto 2rem;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

.article-header__excerpt {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

.author-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.author-chip__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cobalt-soft);
  color: var(--cobalt-deep);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  overflow: hidden;
}

.author-chip__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-img {
  max-width: 920px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cobalt-soft);
}

.article-hero-img img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

/* Prose */
.prose {
  max-width: var(--prose);
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.prose > *:first-child { margin-top: 0; }
.prose p { margin: 0 0 1.35em; }

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  margin: 2.25em 0 0.65em;
  color: var(--ink);
  line-height: 1.25;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  margin: 1.85em 0 0.55em;
  color: var(--ink);
}

.prose h4, .prose h5, .prose h6 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.5em 0 0.5em;
  color: var(--ink);
}

.prose ul, .prose ol {
  margin: 0 0 1.35em;
  padding-left: 1.35em;
}

.prose li { margin-bottom: 0.45em; }
.prose li::marker { color: var(--cobalt); }

.prose a {
  color: var(--cobalt-deep);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--cobalt); }

.prose b, .prose strong { color: var(--ink); font-weight: 700; }

.prose figure {
  margin: 2em 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.prose figure img {
  width: 100%;
  border-radius: var(--radius);
}

.prose figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.65rem 0.25rem 0;
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
}

.prose blockquote {
  margin: 1.75em 0;
  padding: 1rem 1.25rem 1rem 1.35rem;
  border-left: 3px solid var(--cobalt);
  background: var(--cobalt-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 1.75em 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  -webkit-overflow-scrolling: touch;
}

.article-content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
  min-width: 480px;
}

.article-content-table th,
.article-content-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.article-content-table th {
  background: var(--paper);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-content-table tr:last-child td { border-bottom: 0; }

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--prose);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.article-nav {
  max-width: var(--prose);
  margin: 2.5rem auto 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .article-nav { grid-template-columns: 1fr 1fr; }
}

.article-nav a {
  display: block;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 44px;
}

.article-nav a:hover {
  border-color: var(--cobalt);
  box-shadow: var(--shadow-sm);
}

.article-nav__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.article-nav__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.article-nav__next { text-align: right; }

.related {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

/* About / content */
.content-page {
  padding: 2.5rem 0 4rem;
}

.content-page .prose {
  margin-top: 0.5rem;
}

.empty-state {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

.empty-state h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 28rem;
  margin-inline: auto;
}

/* ——— Custom About page ——— */
.about-hero {
  position: relative;
  padding: 2.75rem 0 3.25rem;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(31, 94, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(200, 151, 46, 0.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.about-hero__grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

.about-hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.15rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0.65rem 0 1.15rem;
  color: var(--ink);
  max-width: 16ch;
}

.about-hero__copy h1 em {
  font-style: italic;
  color: var(--cobalt-deep);
  font-weight: 500;
}

.about-hero__lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.about-hero__panel {
  background: var(--navy-900);
  color: #C5D2E0;
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem 1.5rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-hero__panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  top: -60px;
  border-radius: 50%;
  background: rgba(31, 94, 255, 0.28);
  pointer-events: none;
}

.about-stat {
  position: relative;
  z-index: 1;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat:last-of-type {
  border-bottom: 0;
  padding-bottom: 0.25rem;
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.about-stat span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #8FA0B0;
  letter-spacing: 0.01em;
}

.about-hero__panel-note {
  position: relative;
  z-index: 1;
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #7E93A8;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
  .about-hero {
    padding: 3.5rem 0 4rem;
  }
  .about-hero__grid {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 3rem;
    align-items: center;
  }
  .about-hero__copy h1 {
    max-width: 14ch;
  }
}

.about-split {
  display: grid;
  gap: 1.75rem;
}

.about-split__sticky h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
  margin: 0.45rem 0 0;
  max-width: 16ch;
}

.about-split__body {
  max-width: none;
  margin: 0;
}

@media (min-width: 860px) {
  .about-split {
    grid-template-columns: 0.85fr 1.25fr;
    gap: 3.5rem;
    align-items: start;
  }
  .about-split__sticky {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }
}

.about-rules {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .about-rules {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-rule {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.55rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}

.about-rule:hover {
  border-color: #c3d0e0;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-rule__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cobalt);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.about-rule h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}

.about-rule p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-formats {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .about-formats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-format {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  height: 100%;
}

.about-format__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cobalt-soft);
  color: var(--cobalt-deep);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.about-format h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.015em;
}

.about-format p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-format a {
  font-weight: 700;
  text-decoration: none;
}

.about-format a:hover {
  text-decoration: underline;
}

.about-methods .section-head {
  margin-bottom: 2rem;
}

.about-method-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  counter-reset: method;
}

@media (min-width: 800px) {
  .about-method-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-method-list li {
  counter-increment: method;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem 1.5rem;
  position: relative;
}

.about-method-list li::before {
  content: counter(method, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #8FB0FF;
  margin-bottom: 0.65rem;
}

.about-method-list h3 {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.about-method-list p {
  margin: 0;
  font-size: 0.9rem;
  color: #9AACC0;
  line-height: 1.6;
}

.about-trust {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about-trust__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
  margin: 0.45rem 0 1.25rem;
  max-width: 18ch;
}

.about-trust__copy .prose {
  margin: 0;
  max-width: none;
}

.about-trust__card {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(31, 94, 255, 0.12), transparent 55%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem 1.55rem;
  box-shadow: var(--shadow-md);
}

.about-trust__card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt-deep);
  margin: 0 0 1rem;
}

.about-trust__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-trust__card li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.4;
}

.about-trust__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px var(--mint-soft);
}

@media (min-width: 860px) {
  .about-trust {
    grid-template-columns: 1.25fr 0.85fr;
    gap: 3rem;
  }
}

.about-team-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.about-team-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
  margin: 0.45rem 0 0.85rem;
}

.about-team-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-team {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .about-team {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-person {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.55rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.about-person__avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(145deg, #2F6BFF 0%, var(--cobalt-deep) 100%);
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 18px var(--cobalt-glow);
}

.about-person__avatar--2 {
  background: linear-gradient(145deg, #3A4F6B 0%, var(--navy-800) 100%);
  box-shadow: 0 8px 18px rgba(7, 17, 31, 0.15);
}

.about-person__avatar--3 {
  background: linear-gradient(145deg, #D4A94A 0%, var(--gold-deep) 100%);
  box-shadow: 0 8px 18px rgba(200, 151, 46, 0.22);
  color: var(--navy-950);
}

.about-person h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.2rem;
}

.about-person__role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt-deep);
  margin: 0 0 0.75rem;
}

.about-person > p:last-child {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .about-hero {
    padding: 2.25rem 0 2.5rem;
  }
  .about-hero__copy h1 {
    max-width: none;
  }
}

.topic-empty {
  color: var(--muted);
  margin: 0;
  font-size: 0.925rem;
}

/* Forms */
.prose form,
.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.prose label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.prose input[type="text"],
.prose input[type="email"],
.prose input[type="url"],
.prose input[type="tel"],
.prose textarea,
.prose select {
  width: 100%;
  padding: 0.75rem 1rem;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.prose textarea {
  min-height: 140px;
  resize: vertical;
}

.prose input:focus,
.prose textarea:focus,
.prose select:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px var(--cobalt-glow);
}

.prose button[type="submit"],
.prose input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  background: var(--cobalt);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.prose button[type="submit"]:hover,
.prose input[type="submit"]:hover {
  background: var(--cobalt-deep);
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: #A8B8C6;
  padding: 3.5rem 0 0;
  margin-top: auto;
}

.site-footer a {
  color: #C5D2DE;
  text-decoration: none;
}
.site-footer a:hover { color: #fff; }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand .brand__text { color: #fff; }
.footer-brand .brand__text span { color: #8FB0FF; }

.footer-brand p {
  font-size: 0.925rem;
  line-height: 1.65;
  max-width: 22rem;
  color: #8FA0B0;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col li a {
  font-size: 0.925rem;
  font-weight: 500;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.825rem;
  color: #6F8294;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-legal a {
  color: #8FA0B0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: #6F8294;
  line-height: 1.55;
  max-width: 52rem;
  margin: 0 0 1.25rem;
  padding-top: 0.25rem;
}

/* Reveal */
body.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

body.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  body.has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

.category-count {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

/* CTA band */
.cta-band {
  padding: 3rem 0;
}

.cta-band__inner {
  background:
    linear-gradient(135deg, var(--navy-900) 0%, #12306A 48%, var(--cobalt-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-band__inner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.cta-band p {
  margin: 0;
  opacity: 0.9;
  max-width: 28rem;
  font-size: 0.975rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

/* Topic board */
.topic-board {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .topic-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

.topic-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.topic-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-soft);
}

.topic-block__head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.topic-block__head a {
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--cobalt-deep);
  white-space: nowrap;
}

.topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.topic-list a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.35rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  min-height: 44px;
  transition: background 0.15s, color 0.15s;
}

.topic-list a:hover {
  background: var(--cobalt-soft);
  color: var(--cobalt-deep);
}

.topic-list time {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

/* Compare strip */
.compare-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 1rem 1.2rem;
  background: var(--gold-soft);
  border: 1px solid #efdca8;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

.compare-note strong {
  color: var(--gold-deep);
  font-weight: 800;
}

/* Divider accent */
.mesh-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
  border: 0;
  margin: 0;
}

/* ——— Careers page ——— */
.careers-hero {
  position: relative;
  padding: 2.75rem 0 3.25rem;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(31, 94, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(200, 151, 46, 0.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.careers-hero__grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

.careers-hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.15rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0.65rem 0 1.15rem;
  color: var(--ink);
  max-width: 16ch;
}

.careers-hero__copy h1 em {
  font-style: italic;
  color: var(--cobalt-deep);
  font-weight: 500;
}

.careers-hero__lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.careers-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.careers-hero__panel {
  background: var(--navy-900);
  color: #C5D2E0;
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem 1.5rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.careers-hero__panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  top: -60px;
  border-radius: 50%;
  background: rgba(31, 94, 255, 0.28);
  pointer-events: none;
}

.careers-snap {
  position: relative;
  z-index: 1;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.careers-snap:last-of-type {
  border-bottom: 0;
  padding-bottom: 0.25rem;
}

.careers-snap strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.careers-snap span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #8FA0B0;
  line-height: 1.45;
}

.careers-hero__panel-note {
  position: relative;
  z-index: 1;
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #7E93A8;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
  .careers-hero {
    padding: 3.5rem 0 4rem;
  }
  .careers-hero__grid {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 3rem;
    align-items: center;
  }
  .careers-hero__copy h1 {
    max-width: 14ch;
  }
}

.careers-perks {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .careers-perks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .careers-perks {
    grid-template-columns: repeat(4, 1fr);
  }
}

.careers-perk {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem 1.5rem;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}

.careers-perk:hover {
  border-color: #c3d0e0;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.careers-perk__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cobalt-soft);
  color: var(--cobalt-deep);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.careers-perk h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.45rem;
}

.careers-perk p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.careers-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.careers-filter {
  min-height: 42px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.careers-filter:hover {
  border-color: var(--cobalt);
  color: var(--cobalt-deep);
  background: var(--cobalt-soft);
}

.careers-filter.is-active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

.careers-jobs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.45rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.job-card:hover {
  border-color: #c3d0e0;
  box-shadow: var(--shadow-md);
}

.job-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.65rem;
}

.job-card__team {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt-deep);
}

.job-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.job-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--cobalt-soft);
  color: var(--cobalt-deep);
  border: 1px solid #c9d9ff;
  white-space: nowrap;
}

.job-card__badge--mint {
  background: var(--mint-soft);
  color: var(--mint);
  border-color: #b7e5d8;
}

.job-card__summary {
  margin: 0 0 1rem;
  font-size: 0.975rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 52rem;
}

.job-card__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.job-card__meta li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.job-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.job-card__details {
  margin-top: 1.25rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
}

.job-card__details h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.55rem;
}

.job-card__details h4 + ul {
  margin: 0 0 1.1rem;
  padding-left: 1.15em;
}

.job-card__details li {
  font-size: 0.925rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 0.35rem;
}

.job-card__details li::marker {
  color: var(--cobalt);
}

.careers-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.careers-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}

@media (min-width: 720px) {
  .careers-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .careers-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.careers-steps li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.5rem;
  height: 100%;
}

.careers-steps__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #8FB0FF;
  margin-bottom: 0.75rem;
}

.careers-steps h3 {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.careers-steps p {
  margin: 0;
  font-size: 0.9rem;
  color: #9AACC0;
  line-height: 1.6;
}

.careers-faq__list {
  display: grid;
  gap: 0.75rem;
  max-width: 800px;
}

.careers-faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.15rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.careers-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  padding: 1rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
}

.careers-faq__item summary::-webkit-details-marker {
  display: none;
}

.careers-faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cobalt);
  flex-shrink: 0;
}

.careers-faq__item[open] summary::after {
  content: "–";
}

.careers-faq__item p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 480px) {
  .careers-hero {
    padding: 2.25rem 0 2.5rem;
  }
  .careers-hero__copy h1 {
    max-width: none;
  }
  .job-card {
    padding: 1.25rem 1.15rem;
  }
}

/* Mobile spacing */
@media (max-width: 480px) {
  .container,
  .container--narrow {
    width: min(100% - 1.75rem, var(--max));
  }

  .hero {
    padding: 2.35rem 0 2.75rem;
  }

  .section-head__aside { text-align: left; }

  .brand-card__specs li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}
