/* ============================================================================
   TEF Exam Prep Academy — design system
   Extracted from the Cursor design comps (Designs/*.dc.html).
   Near-monochrome, Geist typeface, single blue accent (#185FA5).
   ========================================================================== */

:root {
  /* Type */
  --font-sans: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Ink */
  --ink: #0D0D0D;
  --ink-2: #171717;
  --mut: #525252;
  --mut-2: #737373;
  --mut-3: #8A8A8A;
  --mut-4: #A3A3A3;
  --mut-5: #C2C2C2;

  /* Surfaces */
  --bg: #FFFFFF;
  --surface: #FAFAFA;
  --line: rgba(0, 0, 0, .1);
  --line-soft: rgba(0, 0, 0, .08);

  /* Accent */
  --accent: #185FA5;
  --accent-2: #4F46E5;

  /* Layout */
  --maxw: 1120px;
  --nav-h: 64px;
  --radius: 14px;
  --radius-lg: 16px;
  --radius-sm: 10px;

  /* Hero (dark by default — the comp's invertHero=true) */
  --h-bg: #0D0D0D;
  --h-ink: #FFFFFF;
  --h-mut: rgba(255, 255, 255, .64);
  --h-line: rgba(255, 255, 255, .16);
  --h-btn-bg: #FFFFFF;
  --h-btn-ink: #0D0D0D;
  --h-ghost-ink: #FFFFFF;
  --h-ghost-line: rgba(255, 255, 255, .30);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
button { font-family: inherit; }
a { color: var(--ink); text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: #fff; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.section { padding-block: clamp(72px, 9vw, 130px); scroll-margin-top: 72px; }
.section--surface {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

/* Faint decorative background grid (fixed behind the page) */
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .022) 1px, transparent 1px);
  background-size: 44px 44px;
}
.page { position: relative; z-index: 1; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--mut-3);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: none;
}
.mono { font-family: var(--font-mono); }
h1, h2, h3 { font-family: var(--font-sans); font-weight: 600; letter-spacing: -.03em; margin: 0; }
.h-display {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -.032em;
}
.h-section { font-size: clamp(28px, 3.8vw, 46px); line-height: 1.08; }
.lede { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; color: var(--mut); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  height: 50px; padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 500; font-size: 15.5px;
  border: 1px solid transparent;
  cursor: pointer; transition: opacity .15s ease, background .15s ease;
}
.btn--sm { height: 38px; padding: 0 16px; font-size: 14px; border-radius: 8px; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { opacity: .88; color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: rgba(128, 128, 128, .08); }
.btn svg { flex: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 7px; background: var(--ink);
  display: flex; align-items: center; justify-content: center; flex: none;
  font-weight: 700; font-size: 16px; color: #fff; line-height: 1;
}
.brand__name { font-weight: 600; font-size: 15px; letter-spacing: -.01em; color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__link {
  padding: 8px 12px; font-size: 14px; font-weight: 500;
  color: var(--mut); border-radius: 7px;
}
.nav__link:hover { color: var(--ink); }
.nav__cta { margin-left: 10px; }

/* ---------- Hero ---------- */
.hero { background: var(--h-bg); border-bottom: 1px solid var(--h-line); }
.hero__inner {
  max-width: 1080px; margin: 0 auto;
  padding: clamp(66px, 10vw, 132px) clamp(20px, 5vw, 40px) clamp(56px, 7vw, 96px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero .eyebrow { color: var(--h-mut); }
.hero h1 { color: var(--h-ink); margin-top: 26px; max-width: 900px; }
.hero__lede { color: var(--h-mut); max-width: 600px; margin: 24px 0 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.hero .btn--primary { background: var(--h-btn-bg); color: var(--h-btn-ink); }
.hero .btn--ghost { color: var(--h-ghost-ink); border-color: var(--h-ghost-line); }
.hero__proof {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; margin-top: 28px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .03em; color: var(--h-mut);
}
.hero__proof .star { color: var(--accent); }
.hero__proof .sep { opacity: .45; }

/* ---------- Section heading block ---------- */
.section__head { max-width: 680px; margin-bottom: 44px; }
.section__head h2 { margin-top: 14px; color: var(--ink); }
.section__head p { font-size: 17px; line-height: 1.55; color: var(--mut); margin: 16px 0 0; }

/* ---------- Curriculum accordion ---------- */
.cycles { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.cycle { border-top: 1px solid var(--line-soft); }
.cycle:first-child { border-top: 0; }
.cycle--featured { background: var(--surface); }
.cycle > summary {
  cursor: pointer; padding: clamp(20px, 2.4vw, 30px) clamp(20px, 2.4vw, 32px);
  display: flex; align-items: center; gap: 12px clamp(16px, 2.2vw, 32px); flex-wrap: wrap;
}
.cycle__no {
  flex: 0 0 auto; min-width: 122px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mut-3);
}
.cycle--featured .cycle__no { color: var(--accent); }
.cycle__name {
  flex: 1 1 200px; font-weight: 600; font-size: clamp(21px, 2.2vw, 27px);
  letter-spacing: -.02em; color: var(--ink); line-height: 1.1;
}
.cycle__tag { flex: 0 1 auto; font-size: 14.5px; color: var(--mut-3); }
.cycle__meta { flex: 0 0 auto; margin-left: auto; display: inline-flex; align-items: center; gap: 16px; }
.cycle__count { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--mut-4); white-space: nowrap; }
.cycle__sign {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .18);
  display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--ink); flex: none;
  transition: transform .2s ease;
}
.cycle[open] .cycle__sign { transform: rotate(45deg); }
.cycle__body {
  padding: 0 clamp(20px, 2.4vw, 32px) clamp(26px, 2.6vw, 32px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: clamp(20px, 3vw, 44px);
}
.cycle__desc { margin: 0; font-size: 15px; line-height: 1.65; color: var(--mut); }
.cycle__rows { display: grid; gap: 11px; align-content: start; }
.cycle__row { margin: 0; display: flex; gap: 12px; align-items: baseline; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.cycle__row .k { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; color: var(--mut-4); flex: 0 0 60px; text-transform: uppercase; }
.cycle__row .ref { font-family: var(--font-mono); font-size: 9px; color: var(--mut-5); }
.cycle__exit { margin: 0; display: flex; gap: 12px; align-items: baseline; border-top: 1px solid var(--line-soft); padding-top: 12px; font-size: 14px; }
.cycle__exit .k { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; color: var(--accent); flex: 0 0 60px; text-transform: uppercase; }
.cycle__exit .t { font-style: italic; color: var(--ink-2); }

.inline-link { color: var(--ink); font-weight: 500; border-bottom: 1px solid rgba(0, 0, 0, .25); padding-bottom: 1px; }

/* ---------- About (founder) ---------- */
.about { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 72px); align-items: center; justify-content: space-between; }
.about__copy { flex: 1 1 440px; min-width: 300px; }
.about__copy h2 { margin-top: 14px; color: var(--ink); }
.about__copy p { font-size: 16px; line-height: 1.65; color: var(--mut); margin: 20px 0 0; max-width: 540px; }
.about__card-wrap { flex: 0 1 360px; min-width: 260px; width: 100%; max-width: 380px; }
.about__card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 24px 56px -36px rgba(0, 0, 0, .32);
}
.about__card img { display: block; width: 100%; height: auto; }
.about__cap { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-top: 1px solid var(--line-soft); }
.about__cap-name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.about__cap-loc { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--mut-4); }

/* ---------- Booking ---------- */
.book__embed {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  min-height: 380px; display: flex; align-items: center; justify-content: center;
}
.book__placeholder { text-align: center; color: var(--mut-4); padding: 40px; }
.book__note { margin-top: 20px; font-size: 14px; color: var(--mut-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq__list { margin-top: 30px; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item > summary {
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 4px; font-weight: 500; font-size: 16.5px; color: var(--ink);
}
.faq__ic { flex: none; font-weight: 400; font-size: 22px; line-height: 1; color: var(--mut-3); transition: transform .2s ease; }
.faq__item[open] .faq__ic { transform: rotate(45deg); }
.faq__a { padding: 0 4px 22px; font-size: 14.5px; line-height: 1.62; color: var(--mut); max-width: 700px; }

/* ---------- Footer ---------- */
.footer { background: #fff; }
.footer__top {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 40px) 30px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 36px 32px;
}
.footer__brand-note { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; color: var(--mut-4); margin: 16px 0 0; line-height: 1.7; text-transform: uppercase; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col-h { font-family: var(--font-mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--mut-4); margin-bottom: 3px; }
.footer__col a, .footer__col span { font-size: 14px; color: var(--mut); }
.footer__col a:hover { color: var(--ink); }
.footer__bar { border-top: 1px solid var(--line-soft); }
.footer__bar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px clamp(20px, 5vw, 40px);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; color: var(--mut-4); text-transform: uppercase;
}

/* ---------- Active nav link ---------- */
.nav__link--active { color: var(--ink); font-weight: 600; }

/* ---------- Light centered page hero ---------- */
.page-hero { border-bottom: 1px solid var(--line-soft); }
.page-hero__inner {
  max-width: 900px; margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 40px) clamp(40px, 5vw, 64px);
  text-align: center;
}
.page-hero h1 { margin: 20px auto 0; max-width: 16ch; color: var(--ink); font-size: clamp(38px, 5.6vw, 72px); line-height: 1.03; letter-spacing: -.032em; }
.page-hero__lede { font-size: clamp(16.5px, 1.6vw, 20px); line-height: 1.55; color: var(--mut); max-width: 58ch; margin: 22px auto 0; }
.page-hero .btn { margin-top: 30px; }

/* Level arc (A0 → … → NCLC 7) */
.arc { display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: wrap; margin-top: clamp(34px, 4vw, 52px); font-family: var(--font-mono); }
.arc__arrow { color: var(--mut-5); font-size: 13px; }
.arc__pill { border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 999px; padding: 7px 15px; font-size: 12.5px; font-weight: 500; letter-spacing: .02em; }
.arc__pill--last { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- Programs grid (cards) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; align-items: start; }
.prog-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: 0 1px 2px rgba(0, 0, 0, .03), 0 18px 44px -30px rgba(0, 0, 0, .3);
  transition: transform .16s ease, box-shadow .16s ease; color: var(--ink);
}
.prog-card:hover { transform: translateY(-3px); box-shadow: 0 26px 52px -30px rgba(0, 0, 0, .42); color: var(--ink); }
.prog-card--featured { border-color: var(--accent); }
.prog-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.prog-card__tile { width: 42px; height: 42px; border-radius: 11px; background: var(--ink); display: flex; align-items: center; justify-content: center; flex: none; font-weight: 600; font-size: 20px; color: #fff; }
.prog-card--featured .prog-card__tile { background: var(--accent); }
.prog-card__meta { font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--mut-4); text-align: right; line-height: 1.5; }
.prog-card h2 { font-size: 25px; letter-spacing: -.02em; color: var(--ink); margin: 20px 0 0; }
.prog-card__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--ink); margin: 7px 0 0; }
.prog-card--featured .prog-card__tag, .prog-card--featured .prog-card__open { color: var(--accent); }
.prog-card__desc { font-size: 14.5px; line-height: 1.6; color: var(--mut); margin: 14px 0 0; }
.prog-card__stages { margin-top: 20px; border-top: 1px solid var(--line-soft); }
.prog-card__stage { display: flex; gap: 12px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid rgba(0, 0, 0, .07); font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.prog-card__stage .k { font-family: var(--font-mono); font-size: 9px; letter-spacing: .07em; color: var(--mut-4); flex: 0 0 54px; text-transform: uppercase; }
.prog-card__stage .ref { font-family: var(--font-mono); font-size: 8.5px; color: var(--mut-5); }
.prog-card__exit { display: flex; gap: 11px; align-items: baseline; margin-top: 14px; font-size: 13.5px; }
.prog-card__exit .k { font-family: var(--font-mono); font-size: 9px; letter-spacing: .07em; color: var(--accent); flex: 0 0 54px; text-transform: uppercase; }
.prog-card__exit .t { font-style: italic; color: var(--ink-2); }
.prog-card__open { margin-top: 22px; font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 2px; align-self: flex-start; }

/* Utility (dashed) cards */
.util-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; margin-top: 18px; }
.util-card { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px dashed rgba(0, 0, 0, .2); border-radius: var(--radius); padding: 22px 24px; transition: background .15s ease; color: var(--ink); }
.util-card:hover { background: #F2F2F2; color: var(--ink); }
.util-card__ic { width: 44px; height: 44px; border-radius: 11px; background: #fff; border: 1px solid rgba(0, 0, 0, .12); display: flex; align-items: center; justify-content: center; flex: none; }
.util-card__body { flex: 1; }
.util-card__t { display: block; font-weight: 600; font-size: 15.5px; color: var(--ink); }
.util-card__d { display: block; font-size: 13px; color: var(--mut-2); margin-top: 3px; line-height: 1.45; }
.util-card__arrow { font-family: var(--font-mono); font-size: 14px; color: var(--mut-4); }

/* Footer variant for standalone pages (top border + top margin) */
.footer--top { border-top: 1px solid var(--line-soft); margin-top: clamp(48px, 6vw, 80px); }

/* ---------- About page ---------- */
.about--founder h1 { margin: 14px 0 0; color: var(--ink); font-size: clamp(32px, 4.4vw, 54px); line-height: 1.08; letter-spacing: -.03em; }
.about__card-wrap--sm { flex: 0 1 216px; min-width: 156px; max-width: 228px; }
.about__cap-role { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--mut-4); }
.pullquote { margin-top: 26px; padding-left: 20px; border-left: 2px solid var(--accent); max-width: 540px; }
.pullquote__fr { font-style: italic; font-size: 18px; line-height: 1.5; color: var(--ink); margin: 0; }
.pullquote__gloss { font-family: var(--font-mono); font-size: 11px; letter-spacing: .03em; color: var(--mut-3); margin: 11px 0 0; }

.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 5vw, 72px); align-items: start; }
.cred-list { margin-top: 22px; border-top: 1px solid var(--line-soft); }
.cred-item { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; color: var(--ink-2); line-height: 1.5; align-items: baseline; }
.cred-item .dash { font-family: var(--font-mono); color: var(--accent); font-size: 12px; flex: none; }

.promise-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 40px); background: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 22px 54px -36px rgba(0, 0, 0, .3); }
.promise-card__eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); }
.promise-card h3 { font-size: 27px; letter-spacing: -.02em; margin: 8px 0 0; color: var(--ink); }
.promise-card p { font-size: 15.5px; line-height: 1.62; color: var(--mut); margin: 18px 0 0; }
.promise-card strong { color: var(--ink); font-weight: 500; }
.promise-card .btn { margin-top: 24px; height: 48px; }

/* Testimonials */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; }
.tcard__stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.tcard__quote { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 15px 0 0; }
.tcard__foot { margin-top: auto; padding-top: 22px; }
.tcard__name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.tcard__meta { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--mut-4); margin-top: 5px; }

/* ---------- Blog ---------- */
.page-head { border-bottom: 1px solid var(--line-soft); }
.page-head__inner { max-width: 1160px; margin: 0 auto; padding: clamp(56px, 7vw, 104px) clamp(20px, 5vw, 40px) clamp(40px, 5vw, 60px); }
.page-head h1 { margin: 16px 0 0; color: var(--ink); font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: -.032em; max-width: 18ch; }
.page-head__lede { font-size: clamp(16.5px, 1.6vw, 19px); line-height: 1.55; color: var(--mut); max-width: 64ch; margin: 20px 0 0; }

.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: 0 1px 2px rgba(0, 0, 0, .03); transition: transform .15s ease, box-shadow .15s ease; color: var(--ink); }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -30px rgba(0, 0, 0, .4); color: var(--ink); }
.post-card__tag { align-self: flex-start; font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.post-card h2 { font-size: 20px; letter-spacing: -.02em; line-height: 1.22; color: var(--ink); margin: 12px 0 0; }
.post-card__excerpt { font-size: 14px; line-height: 1.55; color: var(--mut); margin: 10px 0 0; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .03em; color: var(--mut-4); }
.post-card__meta .read { margin-left: auto; color: var(--ink); font-weight: 500; }

/* Dark CTA card */
.cta-dark { background: var(--ink); border-radius: 20px; padding: clamp(40px, 5vw, 68px) clamp(24px, 4vw, 48px); text-align: center; }
.cta-dark__eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.cta-dark h2 { margin: 14px auto 0; color: #fff; max-width: 20ch; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.1; }
.cta-dark p { font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, .66); margin: 16px auto 0; max-width: 52ch; }
.cta-dark .btn { margin-top: 28px; background: #fff; color: var(--ink); }
.cta-dark .btn:hover { opacity: .9; color: var(--ink); }

/* Metrics ribbon */
.metrics-head { text-align: center; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--mut-3); margin-bottom: clamp(32px, 4vw, 48px); }
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px 24px; }
.metric { text-align: center; }
.metric__n { font-weight: 600; font-size: clamp(34px, 4vw, 46px); letter-spacing: -.03em; color: var(--ink); line-height: 1; }
.metric__l { font-size: 13.5px; color: var(--mut-2); margin: 11px auto 0; line-height: 1.4; max-width: 200px; }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .nav__links .nav__link { display: none; }
  .nav__links .nav__cta { display: inline-flex; margin-left: 0; }
  .cycle__tag { flex-basis: 100%; }
}
