:root {
  --ink: #10131a;
  --ink-soft: #303744;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --surface-soft: #eceae4;
  --line: rgba(16, 19, 26, 0.13);
  --violet: #7257ff;
  --violet-dark: #4d35d6;
  --lime: #c9ff56;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 22px 65px rgba(16, 19, 26, 0.12);
  --container: min(1240px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.search-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

::selection { background: var(--lime); color: var(--ink); }

.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--violet-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
.display {
  margin: 0;
  max-width: 1050px;
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: clamp(3rem, 7vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}
.section-title {
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}
.section-copy { max-width: 670px; color: var(--ink-soft); font-size: 1.04rem; }
.kicker { color: var(--violet-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.muted { color: #69707c; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(16, 19, 26, 0.93);
  color: #fff;
  backdrop-filter: blur(16px);
}
.header-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; min-height: 76px; }
.brand { display: inline-flex; gap: 12px; align-items: center; min-width: max-content; font-weight: 800; letter-spacing: -0.02em; }
.brand img { width: 34px; height: 34px; }
.brand span span { color: #a695ff; }
.main-nav { display: flex; gap: 25px; justify-content: center; align-items: center; color: rgba(255, 255, 255, 0.76); font-size: 0.9rem; font-weight: 650; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: #fff; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.icon-button, .menu-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-button { display: none; }
.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}
.mobile-menu { position: fixed; inset: 76px 0 0; padding: 28px 20px; background: var(--ink); color: #fff; }
.mobile-menu a { display: block; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1.4rem; font-weight: 700; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 78% 22%, rgba(114, 87, 255, 0.24), transparent 28%),
    linear-gradient(180deg, #11141b 0%, #171b25 100%);
  color: #fff;
}
.hero::after {
  position: absolute;
  width: 530px;
  height: 530px;
  right: -160px;
  bottom: -300px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
  content: "";
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(290px, .65fr); gap: 70px; align-items: end; }
.hero .eyebrow { color: var(--lime); }
.hero-copy { max-width: 690px; }
.hero-copy p { margin: 32px 0 0; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(16,19,26,.16); }
.button-light { border-color: #fff; background: #fff; color: var(--ink); }
.button-ghost { border-color: rgba(255,255,255,.3); background: transparent; }
.button-violet { border-color: var(--violet); background: var(--violet); }
.hero-panel { padding: 26px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.075); backdrop-filter: blur(12px); }
.hero-panel-label { margin: 0 0 22px; color: rgba(255,255,255,.52); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.trend-list { display: grid; gap: 18px; }
.trend-item { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: start; }
.trend-number { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: .74rem; font-weight: 900; }
.trend-item strong { display: block; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.18rem; font-weight: 600; line-height: 1.18; }
.trend-item span { color: rgba(255,255,255,.54); font-size: .76rem; }

.signal-strip { overflow: hidden; padding: 17px 0; border-bottom: 1px solid var(--line); background: var(--lime); }
.signal-track { display: flex; gap: 26px; width: max-content; align-items: center; font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; animation: ticker 30s linear infinite; }
.signal-track span::after { margin-left: 26px; content: "◆"; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 96px 0; }
.section-compact { padding: 66px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-violet { background: var(--violet); color: #fff; }
.section-heading { display: flex; gap: 40px; align-items: end; justify-content: space-between; margin-bottom: 40px; }
.section-heading > div:first-child { max-width: 760px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--violet-dark); font-size: .86rem; font-weight: 850; white-space: nowrap; }
.text-link::after { content: "↗"; }
.section-dark .text-link, .section-violet .text-link { color: #fff; }

.feature-grid { display: grid; grid-template-columns: 1.38fr .62fr; gap: 22px; }
.feature-card, .article-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.feature-card { min-height: 570px; }
.feature-cover {
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 30px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--cover, #6c56ff);
  color: #fff;
}
.feature-cover::before, .card-cover::before, .article-hero-art::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 80% 15%, rgba(255,255,255,.28), transparent 25%);
  background-size: 24px 24px, auto;
  content: "";
  opacity: .55;
}
.cover-mark { position: relative; z-index: 1; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(5rem, 11vw, 10rem); letter-spacing: -.08em; line-height: .8; opacity: .92; }
.feature-body { padding: 29px; }
.feature-body h2 { margin: 9px 0 12px; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(2rem, 3.2vw, 3.45rem); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
.feature-body p { margin: 0; color: var(--ink-soft); }
.card-stack { display: grid; gap: 22px; }
.mini-feature { display: grid; grid-template-columns: 150px 1fr; min-height: 174px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.mini-cover { display: grid; place-items: center; background: var(--cover, #282d3a); color: #fff; font-family: "Iowan Old Style", Georgia, serif; font-size: 4rem; }
.mini-body { display: flex; padding: 22px; flex-direction: column; justify-content: center; }
.mini-body h3 { margin: 8px 0 10px; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.45rem; font-weight: 600; letter-spacing: -.03em; line-height: 1.05; }
.mini-body p { margin: 0; color: #69707c; font-size: .83rem; }

.department-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.department-card {
  position: relative;
  min-height: 245px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .2s ease, box-shadow .2s ease;
}
.department-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.department-card::before { position: absolute; width: 115px; height: 115px; right: -32px; bottom: -32px; border: 24px solid color-mix(in srgb, var(--accent) 26%, transparent); border-radius: 50%; content: ""; }
.department-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 14px; background: color-mix(in srgb, var(--accent) 18%, white); color: var(--accent); font-size: 1.15rem; font-weight: 900; }
.department-card h3 { margin: 58px 0 8px; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.55rem; font-weight: 600; letter-spacing: -.035em; }
.department-card p { margin: 0; max-width: 210px; color: #6a707b; font-size: .84rem; }
.department-count { position: absolute; top: 27px; right: 24px; color: #7d8490; font-size: .72rem; font-weight: 800; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { display: flex; min-height: 480px; flex-direction: column; }
.card-cover { position: relative; display: flex; min-height: 216px; padding: 22px; align-items: flex-end; overflow: hidden; background: var(--cover, #222838); color: #fff; }
.card-cover .cover-mark { font-size: 5.8rem; }
.card-body { display: flex; padding: 23px; flex: 1; flex-direction: column; }
.card-body h3 { margin: 10px 0 10px; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.75rem; font-weight: 600; letter-spacing: -.04em; line-height: 1.03; }
.card-body p { margin: 0; color: #666d79; font-size: .9rem; }
.card-meta { display: flex; gap: 12px; margin-top: auto; padding-top: 24px; align-items: center; color: #7d8490; font-size: .72rem; font-weight: 700; }
.card-meta span + span::before { margin-right: 12px; content: "•"; }

.filters { display: flex; gap: 8px; margin: -10px 0 34px; padding-bottom: 4px; overflow-x: auto; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filter-button { padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: .79rem; font-weight: 800; white-space: nowrap; cursor: pointer; }
.filter-button.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }

.newsletter-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; padding: 64px; border-radius: 28px; background: var(--ink); color: #fff; }
.newsletter-panel .eyebrow { color: var(--lime); }
.newsletter-panel h2 { margin: 0; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(2.6rem, 5vw, 5.2rem); font-weight: 500; letter-spacing: -.06em; line-height: .95; }
.newsletter-panel p { color: rgba(255,255,255,.62); }
.newsletter-form { display: flex; gap: 10px; align-items: center; }
.newsletter-form input { width: 100%; min-height: 50px; padding: 0 17px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; outline: none; background: rgba(255,255,255,.08); color: #fff; }
.newsletter-form input:focus { border-color: var(--lime); }
.newsletter-form button { min-width: 126px; border: 0; background: var(--lime); color: var(--ink); }
.form-note { min-height: 22px; margin: 12px 0 0; color: rgba(255,255,255,.55); font-size: .75rem; }

.site-footer { padding: 60px 0 28px; background: #0d1016; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .6fr); gap: 40px; padding-bottom: 48px; }
.footer-brand { max-width: 360px; }
.footer-brand p { color: rgba(255,255,255,.52); font-size: .9rem; }
.footer-column h3 { margin: 0 0 17px; color: rgba(255,255,255,.45); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-column a { display: block; margin: 10px 0; color: rgba(255,255,255,.75); font-size: .86rem; }
.footer-bottom { display: flex; gap: 20px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); align-items: center; justify-content: space-between; color: rgba(255,255,255,.44); font-size: .75rem; }

.page-hero { padding: 88px 0 64px; border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 65px; align-items: end; }
.page-title { margin: 0; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(3.6rem, 8vw, 8rem); font-weight: 500; letter-spacing: -.07em; line-height: .87; }
.page-intro { max-width: 570px; color: var(--ink-soft); font-size: 1.15rem; }
.breadcrumb { margin-bottom: 24px; color: #7b818c; font-size: .77rem; font-weight: 700; }
.breadcrumb a:hover { color: var(--violet-dark); }

.article-hero { padding: 68px 0 48px; }
.article-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 58px; align-items: center; }
.article-title { margin: 14px 0 22px; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(3.1rem, 6.3vw, 6.8rem); font-weight: 500; letter-spacing: -.067em; line-height: .9; }
.article-deck { max-width: 760px; margin: 0; color: #555d69; font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
.article-byline { display: flex; gap: 14px; margin-top: 28px; align-items: center; color: #6d7480; font-size: .8rem; font-weight: 700; }
.author-avatar { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 900; }
.article-hero-art { position: relative; display: flex; min-height: 490px; padding: 35px; align-items: flex-end; overflow: hidden; border-radius: 28px; background: var(--cover, var(--violet)); color: #fff; }
.article-hero-art .cover-mark { font-size: clamp(8rem, 15vw, 15rem); }
.reading-progress { position: fixed; z-index: 80; top: 76px; left: 0; width: 100%; height: 3px; transform: scaleX(0); transform-origin: left; background: var(--lime); }

.article-layout { display: grid; grid-template-columns: 220px minmax(0, 720px) minmax(170px, 1fr); gap: 48px; padding: 40px 0 94px; align-items: start; }
.article-sidebar { position: sticky; top: 108px; }
.article-sidebar h3 { margin: 0 0 14px; color: #7a808a; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.article-sidebar a { display: block; padding: 8px 0; color: #606773; font-size: .78rem; font-weight: 700; }
.article-sidebar a:hover { color: var(--violet-dark); }
.article-body { font-family: "Iowan Old Style", "Baskerville", Georgia, serif; color: #252b34; font-size: 1.17rem; line-height: 1.78; }
.article-body > p:first-child::first-letter { float: left; margin: 7px 10px 0 0; color: var(--violet-dark); font-size: 4.8rem; line-height: .72; }
.article-body h2 { margin: 56px 0 18px; scroll-margin-top: 110px; color: var(--ink); font-family: Inter, ui-sans-serif, sans-serif; font-size: 1.7rem; letter-spacing: -.035em; line-height: 1.12; }
.article-body h3 { margin-top: 36px; color: var(--ink); font-family: Inter, ui-sans-serif, sans-serif; font-size: 1.15rem; }
.article-body ul, .article-body ol { padding-left: 1.25em; }
.article-body li { margin: 9px 0; }
.article-body blockquote { margin: 42px 0; padding: 28px 0 28px 28px; border-left: 4px solid var(--violet); color: var(--ink); font-size: 1.55rem; line-height: 1.35; }
.article-body .callout { margin: 38px 0; padding: 26px; border: 1px solid rgba(114,87,255,.24); border-radius: var(--radius-sm); background: rgba(114,87,255,.07); font-family: Inter, ui-sans-serif, sans-serif; font-size: .95rem; line-height: 1.6; }
.article-body .callout strong { display: block; margin-bottom: 7px; }
.article-aside { padding: 20px; border-top: 3px solid var(--ink); background: var(--surface-soft); }
.article-aside h3 { margin: 0 0 9px; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.35rem; }
.article-aside p { margin: 0; color: #626975; font-size: .8rem; }
.source-note { margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--line); color: #747b86; font-family: Inter, sans-serif; font-size: .75rem; }

.prose { max-width: 820px; }
.prose h2 { margin: 50px 0 14px; font-family: "Iowan Old Style", Georgia, serif; font-size: 2.3rem; font-weight: 500; letter-spacing: -.04em; }
.prose h3 { margin-top: 32px; }
.prose p, .prose li { color: #4f5661; }
.prose a { color: var(--violet-dark); text-decoration: underline; }

.split-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.stat-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.stat-card strong { display: block; font-family: "Iowan Old Style", Georgia, serif; font-size: 2.4rem; font-weight: 500; letter-spacing: -.05em; }
.stat-card span { color: #777e89; font-size: .78rem; }

.form-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; align-items: start; }
.contact-card { padding: 28px; border-radius: var(--radius); background: var(--ink); color: #fff; }
.contact-card h3 { margin: 0 0 12px; font-family: "Iowan Old Style", Georgia, serif; font-size: 2rem; font-weight: 500; }
.contact-card p { color: rgba(255,255,255,.6); }
.contact-card a { color: var(--lime); font-weight: 800; }
.form { display: grid; gap: 18px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; margin-bottom: 8px; font-size: .76rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; outline: none; background: #fbfaf7; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(114,87,255,.11); }

.search-panel { position: fixed; z-index: 100; inset: 0; padding: 24px; background: rgba(10,12,16,.74); backdrop-filter: blur(12px); }
.search-dialog { width: min(760px, 100%); max-height: calc(100vh - 48px); margin: 0 auto; padding: 24px; overflow-y: auto; border-radius: 22px; background: var(--paper); box-shadow: var(--shadow); }
.search-head { display: flex; gap: 12px; align-items: center; }
.search-head input { width: 100%; min-height: 56px; padding: 0 18px; border: 1px solid var(--line); border-radius: 14px; outline: none; background: #fff; font-size: 1.05rem; }
.search-close { width: 42px; height: 42px; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--ink); color: #fff; cursor: pointer; }
.search-results { display: grid; gap: 8px; margin-top: 18px; }
.search-result { display: block; padding: 17px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.search-result:hover { border-color: var(--violet); }
.search-result span { color: var(--violet-dark); font-size: .69rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.search-result strong { display: block; margin: 4px 0; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.25rem; }
.search-result p, .search-hint { margin: 0; color: #717883; font-size: .8rem; }

.empty-state { padding: 70px 30px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.empty-state h2 { font-family: "Iowan Old Style", Georgia, serif; font-size: 2rem; font-weight: 500; }

@media (max-width: 1060px) {
  .main-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-button { display: inline-grid; }
  .hero-grid, .article-hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 600px; }
  .feature-grid { grid-template-columns: 1fr; }
  .card-stack { grid-template-columns: 1fr 1fr; }
  .department-grid { grid-template-columns: repeat(3, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: minmax(0, 1fr) 190px; }
  .article-sidebar { display: none; }
  .newsletter-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1240px); --radius: 16px; }
  .header-cta { display: none; }
  .hero { padding: 65px 0 55px; }
  .hero-grid { gap: 42px; }
  .display { font-size: clamp(3.2rem, 16vw, 5.5rem); }
  .section { padding: 70px 0; }
  .section-heading { display: block; }
  .section-heading .text-link { margin-top: 20px; }
  .card-stack, .article-grid, .department-grid { grid-template-columns: 1fr; }
  .mini-feature { grid-template-columns: 110px 1fr; }
  .department-card { min-height: 210px; }
  .newsletter-panel { gap: 35px; padding: 34px 24px; }
  .newsletter-form { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .article-hero { padding-top: 48px; }
  .article-title { font-size: clamp(3.1rem, 15vw, 5.2rem); }
  .article-hero-art { min-height: 330px; }
  .article-layout { display: block; padding-top: 15px; }
  .article-aside { margin-top: 45px; }
  .article-body { font-size: 1.08rem; }
  .split-section, .form-shell { grid-template-columns: 1fr; gap: 38px; }
  .stat-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form { padding: 22px; }
  .page-hero { padding: 60px 0 45px; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .mini-feature { grid-template-columns: 1fr; }
  .mini-cover { min-height: 130px; }
  .feature-card { min-height: 0; }
  .feature-cover { min-height: 270px; }
}

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

.article-sources { margin-top: 58px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #f8f7f3; font-family: Inter, ui-sans-serif, sans-serif; }
.article-sources .eyebrow { color: var(--violet); }
.article-sources h2 { margin: 5px 0 8px; scroll-margin-top: 110px; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.65rem; font-weight: 600; }
.article-sources > p { margin: 0 0 18px; color: #6e7580; font-size: .78rem; line-height: 1.55; }
.article-sources ol { margin: 0; padding-left: 1.25rem; }
.article-sources li { margin: 12px 0; padding-left: 4px; color: #4e5662; font-size: .78rem; line-height: 1.45; }
.article-sources a { color: var(--ink); font-weight: 800; }
.article-sources li span { display: block; margin-top: 3px; color: #777e89; }

/* Expanded editorial library */
:root { --header-height: 116px; }
.header-inner { position: relative; min-height: 72px; }
.main-nav { gap: 20px; }
.main-nav > a,
.nav-dropdown > summary { padding: 26px 0; color: rgba(255,255,255,.76); font-size: .88rem; font-weight: 700; cursor: pointer; list-style: none; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after { margin-left: 6px; color: rgba(255,255,255,.45); content: "⌄"; }
.nav-dropdown[open] > summary,
.nav-dropdown > summary:hover { color: #fff; }
.nav-dropdown { position: relative; }
.mega-menu { position: absolute; z-index: 80; top: 62px; left: 50%; width: min(860px, 82vw); padding: 22px; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(17,20,27,.985); box-shadow: 0 28px 80px rgba(0,0,0,.34); }
.mega-types { width: min(760px, 80vw); }
.mega-heading { display: flex; gap: 20px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); align-items: center; justify-content: space-between; color: rgba(255,255,255,.48); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mega-heading a { color: var(--lime); font-size: .72rem; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mega-types .mega-grid { grid-template-columns: repeat(2, 1fr); }
.mega-grid > a { display: grid; grid-template-columns: 38px 1fr; gap: 11px; padding: 11px; align-items: center; border-radius: 12px; color: #fff; }
.mega-grid > a:hover { background: rgba(255,255,255,.07); }
.menu-icon { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; background: color-mix(in srgb, var(--accent) 26%, #171b25); color: #fff; font-size: .78rem; font-weight: 900; }
.mega-grid strong { display: block; font-size: .8rem; }
.mega-grid small { display: block; margin-top: 2px; color: rgba(255,255,255,.42); font-size: .65rem; }
.header-rail { border-top: 1px solid rgba(255,255,255,.09); background: rgba(9,12,17,.7); }
.header-rail-inner { display: flex; min-height: 42px; gap: 22px; align-items: center; overflow-x: auto; color: rgba(255,255,255,.62); scrollbar-width: none; }
.header-rail-inner::-webkit-scrollbar { display: none; }
.header-rail-inner > span { color: var(--lime); font-size: .67rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.header-rail-inner a { font-size: .72rem; font-weight: 750; white-space: nowrap; }
.header-rail-inner a:hover { color: #fff; }
.header-rail-inner .rail-all { margin-left: auto; color: #fff; }
.mobile-menu { inset: var(--header-height) 0 0; overflow-y: auto; }
.mobile-menu-group { margin-top: 26px; }
.mobile-menu-group > strong { display: block; padding: 10px 0; color: var(--lime); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.mobile-menu-group a { padding: 11px 0; font-size: 1rem; }
.reading-progress { top: var(--header-height); }
.article-sidebar { top: calc(var(--header-height) + 28px); }

.hero-stat-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero-stat-list div { padding: 18px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; text-align: center; }
.hero-stat-list strong { display: block; font-family: "Iowan Old Style", Georgia, serif; font-size: 2rem; font-weight: 500; line-height: 1; }
.hero-stat-list span { display: block; margin-top: 7px; color: rgba(255,255,255,.5); font-size: .68rem; }
.hero-disclosure { margin: 18px 0 0; color: rgba(255,255,255,.42); font-size: .7rem; }
.metric-band { border-bottom: 1px solid var(--line); background: var(--lime); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-grid > div { padding: 26px 22px; border-right: 1px solid rgba(16,19,26,.13); }
.metric-grid > div:first-child { border-left: 1px solid rgba(16,19,26,.13); }
.metric-grid strong { display: block; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 500; letter-spacing: -.05em; line-height: .9; }
.metric-grid span { display: block; margin-top: 8px; color: rgba(16,19,26,.62); font-size: .72rem; font-weight: 800; }
.section-soft { background: #ebe9e2; }

.format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.format-card { position: relative; display: flex; min-height: 280px; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.format-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.format-card::after { position: absolute; width: 130px; height: 130px; right: -45px; bottom: -46px; border: 26px solid color-mix(in srgb, var(--accent) 22%, transparent); border-radius: 50%; content: ""; }
.format-icon { display: grid; width: 48px; height: 48px; margin-bottom: 42px; place-items: center; border-radius: 15px; background: color-mix(in srgb, var(--accent) 15%, white); color: var(--accent); font-weight: 950; }
.format-count { color: var(--accent); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.format-card h3 { margin: 7px 0 8px; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.7rem; font-weight: 600; letter-spacing: -.04em; line-height: 1; }
.format-card p { margin: 0; max-width: 260px; color: #686f7a; font-size: .82rem; }
.card-arrow { position: relative; z-index: 1; display: block; margin-top: auto; padding-top: 20px; color: var(--accent, var(--violet-dark)); font-size: .75rem; font-weight: 900; }
.department-card .card-arrow { color: var(--accent); }
.format-pill { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(16,19,26,.18); color: #fff; font-size: .62rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.article-card { transition: transform .2s ease, box-shadow .2s ease; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card-compact { min-height: 410px; }

.research-section { overflow: hidden; background: linear-gradient(135deg, #302b63, #171b25 70%); color: #fff; }
.research-section .eyebrow { color: var(--lime); }
.research-header { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.research-header > div:first-child p { max-width: 520px; color: rgba(255,255,255,.62); }
.research-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.research-stack .mini-feature:first-child { grid-column: 1 / -1; }
.research-stack .mini-feature { border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.06); color: #fff; }
.research-stack .mini-body p { color: rgba(255,255,255,.5); }
.toolkit-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.toolkit-row .article-card { min-height: 430px; }
.toolkit-row .card-cover { min-height: 175px; }
.toolkit-row .card-body h3 { font-size: 1.45rem; }

.matrix-shell { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; }
.matrix-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: 40px; padding: 44px; align-items: end; border-bottom: 1px solid var(--line); }
.matrix-intro h2 { margin: 0; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(2.4rem, 4vw, 4.5rem); font-weight: 500; letter-spacing: -.055em; line-height: .95; }
.matrix-intro p { margin: 0; color: #68707b; }
.matrix-scroll { overflow-x: auto; }
.coverage-matrix { width: 100%; min-width: 860px; border-collapse: collapse; }
.coverage-matrix th, .coverage-matrix td { padding: 15px 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; font-size: .76rem; }
.coverage-matrix thead th { background: #f1efe9; color: #686f7a; font-size: .65rem; letter-spacing: .09em; text-transform: uppercase; }
.coverage-matrix tbody th { min-width: 180px; text-align: left; font-size: .82rem; }
.coverage-matrix a:hover { color: var(--violet-dark); }

.library-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, color-mix(in srgb, var(--page-accent) 9%, var(--paper)), var(--paper) 70%); }
.library-hero::after { position: absolute; width: 360px; height: 360px; right: -120px; top: -160px; border: 55px solid color-mix(in srgb, var(--page-accent) 12%, transparent); border-radius: 50%; content: ""; }
.page-count { display: flex; gap: 12px; margin-top: 25px; align-items: baseline; }
.page-count strong { color: var(--page-accent); font-family: "Iowan Old Style", Georgia, serif; font-size: 3.2rem; font-weight: 500; letter-spacing: -.05em; }
.page-count span { color: #737a85; font-size: .78rem; font-weight: 850; }
.library-filter { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; margin-bottom: 32px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; align-items: end; }
.library-filter > div > span { display: block; margin: 0 0 7px; color: #767d87; font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.library-filter select { width: 100%; min-height: 46px; padding: 0 13px; border: 1px solid var(--line); border-radius: 11px; background: #f7f5ef; font-weight: 750; }
.hub-callouts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-bottom: 34px; }
.hub-callouts a { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #eceae4; }
.hub-callouts span { display: block; color: #757c86; font-size: .68rem; font-weight: 800; }
.hub-callouts strong { display: block; margin-top: 5px; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.2rem; }
.pagination { display: flex; gap: 7px; margin-top: 46px; align-items: center; justify-content: center; flex-wrap: wrap; }
.pagination a, .pagination span { display: grid; min-width: 42px; min-height: 42px; padding: 0 13px; place-items: center; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: .75rem; font-weight: 850; }
.pagination span { border-color: var(--ink); background: var(--ink); color: #fff; }

.department-lead { display: grid; grid-template-columns: 1.25fr .75fr; gap: 34px; margin: 34px 0; padding: 42px; border-radius: 26px; background: var(--ink); color: #fff; align-items: center; }
.department-lead h2 { margin: 4px 0 14px; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(2.3rem, 4vw, 4.7rem); font-weight: 500; letter-spacing: -.055em; line-height: .95; }
.department-lead p { max-width: 700px; color: rgba(255,255,255,.62); }
.department-lead-art { display: grid; min-height: 250px; padding: 28px; place-items: center; border-radius: 20px; background: var(--accent); }
.department-lead-art span { font-family: "Iowan Old Style", Georgia, serif; font-size: 8rem; line-height: .7; }
.department-lead-art small { color: rgba(255,255,255,.68); font-weight: 800; }
.compact-format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-bottom: 54px; }
.compact-format { display: grid; grid-template-columns: 42px 1fr; gap: 11px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: #fff; align-items: center; }
.compact-format > span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 11px; background: color-mix(in srgb, var(--accent) 14%, white); color: var(--accent); font-size: .68rem; font-weight: 950; }
.compact-format strong, .compact-format small { display: block; }
.compact-format strong { font-size: .78rem; }
.compact-format small { color: #7b828c; font-size: .64rem; }
.listing-heading { margin-top: 28px; }

.format-grid-large .format-card { min-height: 330px; }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.promise-grid article { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.05); }
.promise-grid article > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px; background: var(--accent); font-size: .7rem; font-weight: 950; }
.promise-grid h3 { margin: 34px 0 8px; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.5rem; }
.promise-grid p { margin: 0; color: rgba(255,255,255,.55); font-size: .8rem; }
.horizontal-count-list { display: grid; grid-template-columns: .75fr 1.25fr; gap: 36px; margin: 34px 0 50px; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.horizontal-count-list h2 { margin: 0; font-family: "Iowan Old Style", Georgia, serif; font-size: 2.6rem; font-weight: 500; letter-spacing: -.05em; line-height: .95; }
.horizontal-count-list > div:last-child { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.horizontal-count-list a { display: flex; gap: 10px; padding: 12px; border-radius: 10px; background: #eeece6; align-items: center; justify-content: space-between; font-size: .73rem; }
.horizontal-count-list a span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: #fff; color: var(--violet-dark); font-weight: 900; }

.research-hero { padding: 110px 0 90px; background: radial-gradient(circle at 78% 20%, rgba(201,255,86,.15), transparent 28%), linear-gradient(135deg, #171b25, #302b63); color: #fff; }
.research-hero .eyebrow { color: var(--lime); }
.research-hero h1 { max-width: 1100px; margin: 0; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(3.3rem, 7vw, 7rem); font-weight: 500; letter-spacing: -.065em; line-height: .91; }
.research-hero p { max-width: 760px; margin: 28px 0 0; color: rgba(255,255,255,.62); font-size: 1.15rem; }
.research-format-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 74px; }
.research-principles { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; }
.research-principles h2 { margin: 0; font-family: "Iowan Old Style", Georgia, serif; font-size: 3.6rem; font-weight: 500; letter-spacing: -.055em; line-height: .95; }
.research-principles > div:last-child { display: grid; gap: 12px; }
.research-principles article { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.research-principles article strong { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; }
.research-principles article h3 { margin: 0; }
.research-principles article p { grid-column: 2; margin: 0; color: #6b727d; font-size: .85rem; }

.resource-facts { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.resource-facts span { min-width: 125px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 11px; background: #fff; font-size: .72rem; font-weight: 800; }
.resource-facts small { display: block; margin-bottom: 3px; color: #7d8490; font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.article-hero-art { flex-direction: column; justify-content: flex-end; align-items: flex-start; }
.article-hero-art > small { position: relative; z-index: 1; max-width: 290px; margin-top: 20px; color: rgba(255,255,255,.66); font-size: .73rem; }
.article-aside .aside-format { display: grid; width: 45px; height: 45px; margin-bottom: 22px; place-items: center; border-radius: 13px; background: var(--accent); color: #fff; font-size: .68rem; font-weight: 950; }
.article-aside a { display: inline-block; margin-top: 17px; color: var(--violet-dark); font-size: .72rem; font-weight: 900; }
.editorial-method p { margin-bottom: 0; }
.footer-metric { display: flex; gap: 12px; margin-top: 22px; align-items: center; }
.footer-metric strong { font-family: "Iowan Old Style", Georgia, serif; font-size: 2.4rem; font-weight: 500; }
.footer-metric span { max-width: 170px; color: rgba(255,255,255,.42); font-size: .68rem; }
.search-meta { display: flex; margin-top: 10px; justify-content: space-between; color: #747b86; font-size: .68rem; }
.search-meta kbd { padding: 3px 7px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.search-result-meta { display: flex; gap: 8px; margin-bottom: 4px; color: var(--violet-dark); font-size: .64rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1180px) {
  .main-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-button { display: inline-grid; }
  .format-grid, .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .toolkit-row { grid-template-columns: repeat(2, 1fr); }
  .compact-format-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .research-header, .matrix-intro, .department-lead, .horizontal-count-list, .research-principles { grid-template-columns: 1fr; }
  .research-stack { margin-top: 10px; }
  .library-filter { grid-template-columns: 1fr 1fr; }
  .library-filter .button { grid-column: 1 / -1; }
  .hub-callouts { grid-template-columns: 1fr; }
  .horizontal-count-list > div:last-child { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --header-height: 110px; }
  .header-rail-inner { gap: 16px; }
  .header-rail-inner .rail-all { margin-left: 0; }
  .hero-stat-list, .metric-grid, .format-grid, .promise-grid, .toolkit-row, .research-stack, .compact-format-grid, .horizontal-count-list > div:last-child { grid-template-columns: 1fr; }
  .metric-grid > div { border-left: 1px solid rgba(16,19,26,.13); }
  .research-stack .mini-feature:first-child { grid-column: auto; }
  .library-filter { grid-template-columns: 1fr; }
  .library-filter .button { grid-column: auto; }
  .department-lead { padding: 28px; }
  .department-lead-art { min-height: 180px; }
  .department-lead-art span { font-size: 6rem; }
  .matrix-intro { padding: 28px; }
  .research-hero { padding: 78px 0 62px; }
  .resource-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .resource-facts span { min-width: 0; }
  .footer-bottom { line-height: 1.5; }
}
.cross-nav { display: flex; gap: 14px; margin: 28px 0 36px; justify-content: space-between; }
.cross-nav a { padding: 11px 15px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--violet-dark); font-size: .74rem; font-weight: 850; }
@media (max-width: 600px) { .cross-nav { align-items: stretch; flex-direction: column; } .cross-nav a { text-align: center; } }

/* v4 editorial trend layer and request forms */
.hero-trending-panel { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.hero-topic-list { display: grid; gap: 10px; }
.hero-topic-list a { display: grid; gap: 5px; padding: 15px 16px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; background: rgba(255,255,255,.045); transition: transform .2s ease, background .2s ease; }
.hero-topic-list a:hover { transform: translateX(4px); background: rgba(255,255,255,.09); }
.hero-topic-list span { color: var(--lime); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.hero-topic-list strong { font-family: "Iowan Old Style", Georgia, serif; font-size: 1.05rem; font-weight: 600; line-height: 1.15; }
.hero-topic-list em { color: rgba(255,255,255,.48); font-size: .68rem; font-style: normal; }

.editorial-band { border-bottom: 1px solid var(--line); background: var(--lime); }
.editorial-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.editorial-grid > div { min-height: 120px; padding: 26px 22px; border-right: 1px solid rgba(16,19,26,.13); display: flex; flex-direction: column; justify-content: center; }
.editorial-grid > div:first-child { border-left: 1px solid rgba(16,19,26,.13); }
.editorial-grid strong { display: block; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.55rem; font-weight: 600; letter-spacing: -.03em; }
.editorial-grid span { margin-top: 6px; color: rgba(16,19,26,.62); font-size: .72rem; font-weight: 750; }

.trend-ribbon { padding: 18px 0; border-bottom: 1px solid var(--line); background: #fff; }
.trend-ribbon .container { display: flex; gap: 22px; align-items: center; }
.trend-ribbon .container > span { flex: 0 0 auto; color: var(--violet-dark); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.trend-ribbon .container > div { display: flex; gap: 9px; overflow-x: auto; scrollbar-width: none; }
.trend-ribbon .container > div::-webkit-scrollbar { display: none; }
.trend-ribbon a { flex: 0 0 auto; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); font-size: .72rem; font-weight: 800; }
.trend-ribbon a:hover { border-color: var(--violet); color: var(--violet-dark); }

.topic-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.topic-story { position: relative; min-height: 285px; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.topic-story::after { position: absolute; width: 130px; height: 130px; right: -50px; bottom: -48px; border: 28px solid color-mix(in srgb, var(--accent) 18%, transparent); border-radius: 50%; content: ""; }
.topic-story > span { color: var(--accent); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.topic-story h3 { margin: 38px 0 12px; max-width: 340px; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.75rem; font-weight: 600; letter-spacing: -.04em; line-height: 1.02; }
.topic-story p { margin: 0; max-width: 360px; color: #68707b; font-size: .83rem; }
.topic-story strong { position: absolute; z-index: 1; left: 26px; bottom: 22px; color: var(--accent); font-size: .72rem; }

.article-card-trending { box-shadow: inset 0 4px 0 var(--violet); }
.trend-badge { display: inline-flex; margin: 0 0 14px; padding: 7px 10px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.page-signal { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.page-signal span { padding: 8px 11px; border: 1px solid color-mix(in srgb, var(--page-accent) 26%, transparent); border-radius: 999px; background: color-mix(in srgb, var(--page-accent) 7%, #fff); color: var(--page-accent); font-size: .66rem; font-weight: 850; }

.request-section { padding-top: 44px; }
.request-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; padding: 50px; border-radius: 30px; background: linear-gradient(135deg, #171b25, #2b245d); color: #fff; align-items: center; box-shadow: var(--shadow); }
.request-panel .eyebrow { color: var(--lime); }
.request-panel h2 { margin: 0; max-width: 560px; font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(2.3rem, 4vw, 4.6rem); font-weight: 500; letter-spacing: -.055em; line-height: .95; }
.request-panel p { max-width: 580px; color: rgba(255,255,255,.63); }
.request-trust { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.request-trust span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(255,255,255,.7); font-size: .65rem; font-weight: 800; }
.request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; padding: 24px; border-radius: 20px; background: rgba(255,255,255,.08); }
.request-form label { display: grid; gap: 7px; color: rgba(255,255,255,.74); font-size: .68rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.request-form label:first-child { grid-column: 1 / -1; }
.request-form input { width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 11px; background: rgba(255,255,255,.1); color: #fff; outline: none; text-transform: none; letter-spacing: 0; }
.request-form input:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(201,255,86,.12); }
.request-form .button { grid-column: 1 / -1; border-color: var(--lime); background: var(--lime); color: var(--ink); }
.request-form .form-note { grid-column: 1 / -1; min-height: 24px; margin: 0; color: var(--lime); font-size: .77rem; font-weight: 800; }
.request-form.form-success { box-shadow: inset 0 0 0 1px rgba(201,255,86,.35); }

.footer-focus { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.footer-focus span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.52); font-size: .62rem; font-weight: 800; }
.principle-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.principle-list article { padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.principle-list strong { color: var(--violet-dark); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.principle-list p { margin: 7px 0 0; color: #69707c; font-size: .82rem; }
.department-card > small, .format-card small { position: relative; z-index: 1; display: block; margin-top: 12px; color: #7a818b; font-size: .68rem; line-height: 1.35; }
.trend-symbol { display: grid; min-width: 46px; min-height: 30px; padding: 0 8px; place-items: center; border-radius: 999px; background: var(--lime); color: var(--ink) !important; font-size: .58rem !important; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 980px) {
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-story-grid { grid-template-columns: repeat(2, 1fr); }
  .request-panel { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .editorial-grid, .topic-story-grid, .principle-list { grid-template-columns: 1fr; }
  .trend-ribbon .container { align-items: flex-start; flex-direction: column; }
  .request-panel { padding: 30px 22px; border-radius: 22px; }
  .request-form { grid-template-columns: 1fr; padding: 18px; }
  .request-form label, .request-form label:first-child, .request-form .button, .request-form .form-note { grid-column: 1; }
  .hero-topic-list strong { font-size: .98rem; }
}
