/* ============================================
   Applied Identities — Site Styles
   Banded design system. Navy + paper, single amber accent.
   Display: Fraunces · Editorial: Newsreader · UI/body: IBM Plex Sans
   Token reference: AI-DESIGN-TREATMENT-2026-05-28
   ============================================ */

/* ============================================
   Self-hosted fonts (latin subsets)
   CSS lives at /beta/css/ ; fonts at /beta/fonts/
   so url() is relative: ../fonts/
   ============================================ */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-italic.woff2") format("woff2");
  font-weight: 400 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   Tokens
   ============================================ */
:root {
  /* ink + surfaces */
  --navy-900: #0A1A24;
  --navy-800: #0F2530;
  --navy-700: #163443;
  --paper:    #F4EFE3;
  --paper-2:  #FBF8F0;
  --white:    #FFFFFF;

  /* accent — amber, restrained */
  --amber:      #C28C3A;
  --amber-600:  #9A6E22;
  --amber-soft: #EBD9B4;

  /* neutrals */
  --ink:               #0A1A24;
  --ink-muted:         #5B6670;
  --ink-on-dark:       #E9E3D4;
  --ink-on-dark-muted: #9FB0B8;
  --line:      rgba(10, 26, 36, 0.12);
  --line-dark: rgba(233, 227, 212, 0.16);

  /* type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --serif:   "Newsreader", Georgia, "Times New Roman", serif;
  --sans:    "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* scale */
  --maxw:    1200px;
  --textw:   760px;
  --radius:  18px;

  /* ---- Legacy aliases: keep secondary-page CSS coherent ---- */
  --sage:        var(--amber-600);
  --sage-deep:   var(--navy-900);
  --sage-mid:    var(--ink-muted);
  --sage-light:  var(--ink-on-dark-muted);
  --sage-wash:   var(--amber-soft);
  --paper-warm:  #ECE4D2;
  --paper-deep:  #E0D8C6;
  --ink-soft:    var(--ink-muted);
  --ink-faint:   #8A94A0;
  --hairline:    #DDD6C6;
  --amber-deep:  var(--amber-600);
  --mono:        var(--sans);
  --on-dark-primary:  var(--paper-2);
  --on-dark-body:     var(--ink-on-dark);
  --on-dark-muted:    var(--ink-on-dark-muted);
  --on-dark-accent:   var(--amber);
  --on-dark-hairline: var(--line-dark);
  --deep-navy:    var(--navy-900);
  --forest-green: var(--amber-600);
  --warm-white:   var(--paper);

  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 6px;

  --shadow-card:       0 1px 2px rgba(10, 26, 36, 0.04), 0 4px 16px rgba(10, 26, 36, 0.03);
  --shadow-card-hover: 0 2px 4px rgba(10, 26, 36, 0.06), 0 8px 24px rgba(10, 26, 36, 0.05);

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1.0);
  --d-fast: 120ms;
  --d-base: 200ms;
  --d-slow: 280ms;
}

/* ============================================
   Reset + base
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
  text-wrap: balance;
}
p { max-width: var(--textw); }

/* ============================================
   Layout primitives
   ============================================ */
.page { width: 100%; }
main { display: block; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}
/* Centered reading column for secondary pages (content lives directly in main) */
.wrap--page { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

section { padding-block: clamp(4.5rem, 9vw, 8rem); }

/* Band surfaces */
.band-navy  { background: var(--navy-900); color: var(--ink-on-dark); }
.band-navy h1, .band-navy h2, .band-navy h3 { color: var(--paper-2); }
.band-paper { background: var(--paper); }
.band-white { background: var(--paper-2); }
.band-amber { background: var(--amber); }

/* Eyebrow labels */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-600);
}
.eyebrow.on-dark { color: var(--amber); }

/* Shared lede */
.lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--ink-muted);
  line-height: 1.5;
}
.band-navy .lead { color: var(--ink-on-dark-muted); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--d-fast) var(--ease), background var(--d-base) var(--ease), border-color var(--d-base) var(--ease);
}
.btn-primary { background: var(--amber); color: var(--navy-900); }
.btn-primary:hover { background: var(--amber-600); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost.on-dark { border-color: var(--line-dark); color: var(--ink-on-dark); }
.btn-ghost.on-dark:hover { border-color: var(--ink-on-dark); }

/* ============================================
   Nav — sticky translucent paper + blur
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 227, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand .mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--navy-900);
  position: relative;
  flex: none;
}
.brand .mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 3px;
  border: 1.5px solid var(--amber);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-muted);
  transition: color var(--d-base) var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px clamp(20px, 5vw, 56px) 20px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 1rem; width: 100%; }
}

/* ============================================
   HERO
   ============================================ */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(194, 140, 58, 0.16), transparent 60%),
    radial-gradient(80% 60% at 10% 110%, rgba(22, 52, 67, 0.6), transparent 55%);
  pointer-events: none;
}
.hero .radar {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  opacity: 0.5;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 920px; }

.standfirst {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--paper-2);
  max-width: 40ch;
  margin-bottom: 1.2rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.hero h1 { font-size: clamp(2.9rem, 6.5vw, 5.4rem); max-width: 14ch; }
.hero .lede {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--paper-2);
  margin-top: 1.6rem;
  max-width: 34ch;
  line-height: 1.32;
}
.hero .lede em { font-style: italic; color: var(--amber); }
.hero .body {
  margin-top: 1.5rem;
  color: var(--ink-on-dark-muted);
  max-width: 54ch;
  font-size: 1.08rem;
}
.hero .cta-row { display: flex; gap: 0.9rem; margin-top: 2.4rem; flex-wrap: wrap; }

/* Orchestrated hero load */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.27s; }
.d4 { animation-delay: 0.38s; }
.d5 { animation-delay: 0.50s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; transform: none; }
}

/* Generic secondary hero on Layer / Architecture (no standfirst/lede/buttons) */
.hero .hero-sub {
  margin-top: 1.5rem;
  color: var(--ink-on-dark-muted);
  max-width: 60ch;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.5;
}

/* ============================================
   PROBLEM
   ============================================ */
.prob-head {
  max-width: 34ch;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin: 1rem 0 1.6rem;
}
.prob-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.prob-grid p {
  font-size: 1.12rem;
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
  max-width: none;
}
.prob-grid p strong { color: var(--ink); font-weight: 600; }
.owners {
  border-left: 2px solid var(--amber);
  padding-left: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.owner { display: flex; gap: 1rem; align-items: baseline; }
.owner b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  min-width: 13ch;
  display: inline-block;
}
.owner span { color: var(--ink-muted); font-size: 1rem; }
.stat-vendor {
  margin-top: 2.2rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}
.stat-vendor small {
  display: block;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-top: 0.6rem;
  letter-spacing: 0;
  max-width: 44ch;
}
@media (max-width: 820px) {
  .prob-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   DELIVER / SECTION CARDS
   ============================================ */
.section-head {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  max-width: 38ch;
  margin: 1rem 0 3rem;
}
.band-navy .section-head { color: var(--paper-2); }
.section-intro {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 60ch;
  margin: 1rem 0 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  position: relative;
  transition: transform var(--d-base) var(--ease), box-shadow var(--d-base) var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(10, 26, 36, 0.5);
}
.card .num {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--amber-600);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.card h3 { font-size: 1.6rem; margin: 0.7rem 0 0.6rem; }
.card p { color: var(--ink-muted); font-size: 1.02rem; max-width: none; }

/* On paper bands give cards a touch more contrast */
.band-paper .card { background: var(--white); }

@media (max-width: 820px) {
  .cards { grid-template-columns: 1fr; }
}

/* Verb cards (Layer page) — same shell, more internal structure */
.verb-card .directive {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--amber-600);
  line-height: 1.4;
  margin: 0.5rem 0 1.1rem;
  max-width: none;
}
.verb-card .vbody p {
  color: var(--ink-muted);
  font-size: 1rem;
  margin-bottom: 0.9rem;
  max-width: none;
}
.verb-card .vbody p:last-child { margin-bottom: 0; }
.verb-card .anchor {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: none;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding-block: 2.4rem;
}
.trust .item .n {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--paper-2);
}
.trust .item .l {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-on-dark-muted);
  margin-top: 0.4rem;
}
.dotgrid { position: relative; }
.dotgrid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(233, 227, 212, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 40%, #000, transparent);
  mask-image: radial-gradient(80% 60% at 50% 40%, #000, transparent);
  pointer-events: none;
}
.trust-head {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 20ch;
  margin: 1rem 0 2.6rem;
}
@media (max-width: 820px) {
  .trust { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* ============================================
   CTA BAND (amber)
   ============================================ */
.cta-band { text-align: center; }
.cta-band h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--navy-900);
  max-width: 18ch;
  margin: 0 auto 1rem;
}
.cta-band p {
  color: rgba(10, 26, 36, 0.7);
  margin: 0 auto 2rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  max-width: 46ch;
}
.cta-band .cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-band .btn-primary { background: var(--navy-900); color: var(--amber); }
.cta-band .btn-primary:hover { background: var(--navy-800); }
.cta-band .btn-ghost { border-color: rgba(10, 26, 36, 0.35); color: var(--navy-900); }
.cta-band .btn-ghost:hover { border-color: var(--navy-900); }

/* ============================================
   FOOTER (navy)
   ============================================ */
.footer {
  background: var(--navy-900);
  color: var(--ink-on-dark-muted);
  padding-block: 3.5rem;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.foot-brand {
  font-family: var(--display);
  color: var(--paper-2);
  font-size: 1.2rem;
  font-weight: 600;
}
.foot-desc { color: var(--ink-on-dark-muted); margin-top: 0.6rem; max-width: 30ch; font-size: 0.92rem; }
.foot-cols { display: flex; gap: 4rem; flex-wrap: wrap; font-size: 0.92rem; }
.foot-cols h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-on-dark-muted);
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.foot-cols a { display: block; color: var(--ink-on-dark); margin-bottom: 0.55rem; opacity: 0.8; }
.foot-cols a:hover { opacity: 1; color: var(--amber); }
.foot-base {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================================
   SECONDARY PAGES (Insights, Contact, Verify)
   Inherit the new tokens/fonts via aliases above. Page headings use --display.
   ============================================================================ */

/* ---- Light hero (insights, contact) ---- */
.light-hero { padding: clamp(2.5rem, 6vw, 4rem) 0 2rem; }
.light-hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-600);
  margin-bottom: 18px;
}
.light-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 18ch;
}
.light-hero p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: var(--textw);
}

/* ---- Insights — featured ---- */
.featured {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin-bottom: 48px;
  position: relative;
  transition: transform var(--d-base) var(--ease), box-shadow var(--d-base) var(--ease);
}
.featured:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(10, 26, 36, 0.5); }
.featured-tag {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--amber-600);
  margin-bottom: 18px;
}
.featured h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 14px;
  max-width: 24ch;
  letter-spacing: -0.015em;
}
.featured p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 60ch;
  margin-bottom: 22px;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-muted);
  flex-wrap: wrap;
}
.featured-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-muted); opacity: 0.5; }
.featured-read { color: var(--amber-600); font-weight: 600; margin-left: auto; }

@media (max-width: 768px) {
  .featured { padding: 32px 28px; }
  .featured-read { margin-left: 0; }
}

/* ---- Insights — article list ---- */
.article-list { margin-bottom: 56px; }
.article-list-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.article-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.article-item:last-child { border-bottom: none; }
.article-tag-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.article-tag {
  font-family: var(--sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 999px;
}
.article-date { font-family: var(--sans); font-size: 0.78rem; color: var(--ink-muted); }
.article-title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  display: block;
  transition: color var(--d-base) var(--ease);
}
a.article-title:hover { color: var(--amber-600); }
.article-excerpt {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 60ch;
}
.article-read { font-family: var(--sans); font-size: 0.85rem; color: var(--amber-600); font-weight: 600; white-space: nowrap; padding-top: 4px; }

@media (max-width: 640px) {
  .article-item { grid-template-columns: 1fr; gap: 12px; }
  .article-read { padding-top: 0; }
}

/* ---- Insights — author + follow ---- */
.author-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 18px;
  background: var(--paper-2);
}
.author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--amber-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1rem; font-weight: 600;
  color: var(--amber-600);
  flex-shrink: 0;
}
.author-name { font-family: var(--display); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.author-role { font-family: var(--serif); font-size: 0.95rem; color: var(--ink-muted); line-height: 1.5; }

.follow-strip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 48px;
  flex-wrap: wrap; gap: 16px;
}
.follow-text { font-family: var(--serif); font-size: 1rem; color: var(--ink-muted); }
.follow-links { display: flex; gap: 12px; }
.follow-link {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color var(--d-base) var(--ease), color var(--d-base) var(--ease);
}
.follow-link:hover { border-color: var(--ink); }

/* ---- Insight rows (single-page related, etc.) ---- */
.insight-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color var(--d-base) var(--ease);
}
.insight-row:last-child { border-bottom: none; }
.insight-row:hover { color: var(--amber-600); }
.insight-row:hover .insight-arrow { transform: translateX(3px); color: var(--amber-600); }
.insight-tag {
  font-family: var(--sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.insight-text { font-family: var(--display); font-size: 1.05rem; font-weight: 500; }
.insight-arrow { margin-left: auto; color: var(--ink-muted); font-size: 1rem; transition: all var(--d-base) var(--ease); flex-shrink: 0; }
@media (max-width: 640px) { .insight-row { flex-wrap: wrap; } .insight-arrow { margin-left: 0; } }

/* ---- Contact — form (navy card) ---- */
.form-card {
  background: var(--navy-900);
  border-radius: var(--radius);
  padding: 48px 56px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 85% -10%, rgba(194, 140, 58, 0.14), transparent 60%);
  pointer-events: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; position: relative; z-index: 2; }
.form-group { display: flex; flex-direction: column; }
.form-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  background: rgba(245, 241, 234, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--paper-2);
  outline: none;
  transition: border-color var(--d-base) var(--ease), background var(--d-base) var(--ease);
}
.form-input:focus, .form-textarea:focus { border-color: var(--amber); background: rgba(245, 241, 234, 0.09); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-on-dark-muted); opacity: 1; }
.form-textarea-wrap { position: relative; margin-bottom: 20px; z-index: 2; }
.form-textarea { resize: vertical; min-height: 140px; width: 100%; display: block; }
.form-submit {
  display: inline-flex;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
  background: var(--amber);
  padding: 0.85em 1.8em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: background var(--d-base) var(--ease), transform var(--d-fast) var(--ease);
}
.form-submit:hover { background: var(--amber-600); transform: translateY(-1px); }
.form-note { font-family: var(--serif); font-size: 0.9rem; color: var(--ink-on-dark-muted); margin-top: 18px; position: relative; z-index: 2; }

@media (max-width: 640px) {
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ---- Contact — next steps + info strip ---- */
.next-section { margin-bottom: 48px; }
.next-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 22px;
}
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.next-step {
  text-align: center;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}
.next-step-num { font-family: var(--display); font-size: 1.6rem; font-weight: 600; color: var(--amber-600); margin-bottom: 10px; line-height: 1; }
.next-step-title { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.next-step-desc { font-family: var(--serif); font-size: 0.95rem; line-height: 1.55; color: var(--ink-muted); }
@media (max-width: 640px) { .next-steps { grid-template-columns: 1fr; } }

.info-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  background: var(--paper-2);
}
.info-col { padding: 32px; }
.info-col:first-child { border-right: 1px solid var(--line); }
.info-col-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.info-person { margin-bottom: 18px; }
.info-person:last-child { margin-bottom: 0; }
.info-name { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.info-role { font-family: var(--serif); font-size: 0.95rem; color: var(--ink-muted); }
.info-detail { font-family: var(--serif); font-size: 1.05rem; color: var(--ink-muted); line-height: 1.8; }
.info-detail a { color: var(--ink); border-bottom: 1px solid var(--line); transition: border-color var(--d-base) var(--ease); }
.info-detail a:hover { border-bottom-color: var(--amber); }
@media (max-width: 640px) {
  .info-strip { grid-template-columns: 1fr; }
  .info-col:first-child { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ---- Contact — light closing CTA ---- */
.cta-light { text-align: center; padding: 36px 0 8px; }
.cta-light p { font-family: var(--serif); font-size: 1.05rem; color: var(--ink-muted); line-height: 1.6; margin: 0 auto; }
.cta-light a { color: var(--amber-600); font-weight: 600; }

/* ============================================
   Article (single insights page)
   ============================================ */
.article { max-width: var(--textw); margin: 0 auto; padding: 32px 0 16px; }
.article-hero { padding-bottom: 32px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.article-back {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-muted);
  display: inline-block;
  margin-bottom: 28px;
  transition: color var(--d-base) var(--ease);
}
.article-back:hover { color: var(--amber-600); }
.article-meta-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.article-meta-row .article-tag {
  font-family: var(--sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 999px;
}
.article-meta-row .article-date { font-family: var(--sans); font-size: 0.78rem; color: var(--ink-muted); }
.article-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.article-byline { font-family: var(--serif); font-size: 0.95rem; color: var(--ink-muted); font-style: italic; }

.article-body { margin-bottom: 64px; }
.article-body h2 { font-family: var(--display); font-size: 1.6rem; font-weight: 500; line-height: 1.15; color: var(--ink); margin: 48px 0 16px; }
.article-body h3 { font-family: var(--display); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin: 32px 0 12px; }
.article-body p {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
}
.article-body p strong { font-weight: 600; }
.article-body p em { font-style: italic; }
.article-body ul, .article-body ol { font-family: var(--serif); font-size: 1.12rem; line-height: 1.7; color: var(--ink); margin: 0 0 18px 24px; }
.article-body li { margin-bottom: 6px; }
.article-body a { color: var(--amber-600); border-bottom: 1px solid var(--amber-soft); transition: border-color var(--d-base) var(--ease); }
.article-body a:hover { border-bottom-color: var(--amber-600); }
.article-body hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.article-body blockquote { border-left: 2px solid var(--amber); padding-left: 20px; margin: 24px 0; color: var(--ink-muted); font-style: italic; }
.article-body code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.9em; background: var(--paper); padding: 1px 6px; border-radius: 4px; }

.article-related { border-top: 1px solid var(--line); padding-top: 28px; margin-bottom: 32px; }
.article-related-label { font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; color: var(--ink-muted); margin-bottom: 12px; }

/* ============================================
   Legacy compat for /verify/ (uses /css/verify.css + these)
   ============================================ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.container--narrow { max-width: var(--textw); }

.prose h1 { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin: 40px 0 18px; }
.prose h2 { font-family: var(--display); font-size: 1.6rem; font-weight: 500; line-height: 1.15; color: var(--ink); margin: 32px 0 12px; }
.prose h3 { font-family: var(--display); font-size: 1.2rem; font-weight: 600; margin: 24px 0 10px; color: var(--ink); }
.prose p { font-family: var(--serif); font-size: 1.05rem; line-height: 1.7; color: var(--ink-muted); margin-bottom: 14px; }
.prose ul, .prose ol { font-family: var(--serif); font-size: 1.05rem; line-height: 1.7; color: var(--ink-muted); margin: 0 0 14px 24px; }
.prose li { margin-bottom: 4px; }
.prose a { color: var(--ink); border-bottom: 1px solid var(--line); transition: border-color var(--d-base) var(--ease); }
.prose a:hover { border-bottom-color: var(--amber); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 28px 0; }
.prose code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.85rem; background: var(--paper); padding: 1px 6px; border-radius: 4px; }
