:root {
  --ink: #071a3b;
  --navy: #082653;
  --blue: #0759cc;
  --blue-bright: #1477ea;
  --yellow: #ffbf17;
  --orange: #ff6b1a;
  --red: #f1492e;
  --cream: #fffaf0;
  --paper: #ffffff;
  --mist: #eef6ff;
  --line: #cbd8e8;
  --muted: #4c5d74;
  --shadow: 0 18px 48px rgba(7, 26, 59, 0.12);
}

* {
  box-sizing: border-box;
  }
html { 
	scroll-behavior: smooth;
  }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { 
	display: block;
  max-width: 100%;
  }
a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
  }
a:focus-visible, summary:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
  border-radius: 4px;
  }
.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 800;
  border: 2px solid var(--ink);
  }
.skip-link:focus {
  transform: none;
  }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,250,240,.96);
  border-bottom: 1px solid rgba(8,38,83,.12);
  backdrop-filter: blur(16px);
  }
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
  }
.brand {
  width: 128px;
  flex: 0 0 auto;
  text-decoration: none;
  }
.brand img {
  width: 228px;
  height: auto;
  object-fit: contain;
  }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  }
.desktop-nav a {
  position: relative;
  font-size: .91rem;
  font-weight: 800;
  text-decoration: none;
  }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 3px;
  background: var(--blue);
  transition: right .2s ease;
  }
.desktop-nav a:hover::after {
  right: 0;
  }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  }
.search-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid var(--ink);
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: .94rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  }
.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
  }
.button-small {
  min-height: 44px;
  padding: 9px 16px;
  font-size: .85rem;
  }
.button-yellow {
  background: var(--yellow);
  color: var(--ink);
  }
.text-link {
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  }
.text-link span {
  display: inline-block;
  transition: transform .2s ease;
  }
.text-link:hover span {
  transform: translateX(4px);
  }
.mobile-menu {
  display: none;
  margin-left: auto;
  position: relative;
  }
.mobile-menu summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  border: 2px solid var(--ink);
  padding: 8px 12px;
  border-radius: 4px;
  }
.mobile-menu summary::-webkit-details-marker {
  display: none;
  }
.mobile-menu nav {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(280px, calc(100vw - 40px));
  background: #fff;
  padding: 12px;
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--yellow);
  }
.mobile-menu nav a {
  display: block;
  padding: 10px;
  font-weight: 800;
  }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(44px,7vw,92px);
  align-items: center;
  min-height: 720px;
  padding-block: 74px 92px;
  }
.hero::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  left: -80px;
  top: 85px;
  background: radial-gradient(circle, var(--yellow) 0 10%, transparent 11%), conic-gradient(from 0deg, transparent 0 8%, var(--yellow) 9% 11%, transparent 12% 20%);
  opacity: .7;
  }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .74rem;
  line-height: 1.3;
  letter-spacing: .14em;
  font-weight: 900;
  text-transform: uppercase;
  }
.eyebrow span {
  color: var(--orange);
  margin-right: 6px;
  }
.hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(3.25rem,6.4vw,6rem);
  line-height: .97;
  letter-spacing: -.052em;
  font-weight: 900;
  }
.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-style: italic;
  }
.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2%;
  right: -3%;
  bottom: .02em;
  height: .24em;
  background: var(--yellow);
  transform: rotate(-2deg);
  }
.hero-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
  }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 46px;
  }
.hero-proof p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
  }
.hero-proof strong {
  color: var(--ink);
  }
.avatar-stack {
  display: flex;
  }
.avatar-stack span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  }
.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--yellow);
  color: var(--ink);
  }
.avatar-stack span:last-child {
  background: var(--orange);
  }
.hero-story {
  position: relative;
  isolation: isolate;
  min-height: 555px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 0 20px 10px;
  }
.hero-story::before {
  content: "";
  position: absolute;
  inset: 62px 7px 76px;
  z-index: -3;
  border: 3px solid var(--ink);
  border-radius: 48% 52% 40% 60% / 56% 42% 58% 44%;
  background: var(--yellow);
  transform: rotate(3deg);
  box-shadow: 13px 13px 0 rgba(7,26,59,.1);
  }
.hero-story::after {
  content: "";
  position: absolute;
  inset: 28px 20px 109px 35px;
  z-index: -2;
  border-radius: 49% 51% 44% 56% / 59% 41% 59% 41%;
  border: 3px solid var(--ink);
  transform: rotate(-2deg);
  }
.hero-story > a {
  position: absolute;
  inset: 28px 22px 102px 28px;
  z-index: -1;
  overflow: hidden;
  border-radius: 47% 53% 42% 58% / 57% 43% 57% 43%;
  }
.hero-story > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.02);
  }
.sunburst {
  position: absolute;
  width: 82px;
  height: 82px;
  right: 0;
  top: 17px;
  background: repeating-conic-gradient(var(--orange) 0 7deg, transparent 7deg 20deg);
  border-radius: 50%;
  -webkit-mask: radial-gradient(circle, transparent 0 34%, #000 35%);
  mask: radial-gradient(circle, transparent 0 34%, #000 35%);
  }
.hero-sticker {
  position: absolute;
  left: 4px;
  top: 128px;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: .82rem;
  line-height: 1.05;
  letter-spacing: .08em;
  font-weight: 900;
  transform: rotate(-12deg);
  box-shadow: 5px 5px 0 var(--ink);
  }
.hero-story-card {
  position: relative;
  width: 90%;
  padding: 25px 70px 24px 28px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--blue);
  }
.story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: 0 0 11px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.3;
  letter-spacing: .08em;
  font-weight: 800;
  text-transform: uppercase;
  }
.story-meta span {
  color: var(--blue);
  }
.hero-story-card h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: -.025em;
  }
.hero-story-card h2 a {
  text-decoration: none;
  }
.round-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 900;
  text-decoration: none;
  }

.category-strip {
  padding-block: 88px;
  background: var(--navy);
  color: #fff;
  }
.section-heading {
  margin-bottom: 36px;
  }
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.45rem,4vw,4.25rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 900;
  }
.inline-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  }
.inline-heading .eyebrow, .category-strip .eyebrow {
  color: var(--yellow);
  }
.category-strip .text-link {
  color: #fff;
  }
.category-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,.3);
  border-left: 1px solid rgba(255,255,255,.3);
  }
.category-grid a {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 22px 18px;
  border-right: 1px solid rgba(255,255,255,.3);
  border-bottom: 1px solid rgba(255,255,255,.3);
  font-size: .92rem;
  line-height: 1.25;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
  }
.category-grid a:hover {
  background: var(--yellow);
  color: var(--ink);
  }
.category-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--yellow);
  font-size: 1rem;
  }
.category-grid a:hover .category-mark {
  color: var(--ink);
  }
.category-arrow {
  font-size: 1.2rem;
  }

.latest {
  padding-block: 110px 120px;
  }
.section-note {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  }
.story-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
  }
.story-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 326px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 7px 7px 0 var(--ink);
  }
.story-wide {
  grid-column: 1 / -1;
  grid-template-columns: 54% 46%;
  min-height: 430px;
  }
.story-image {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--blue);
  }
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  }
.story-card:hover .story-image img {
  transform: scale(1.035);
  }
.image-number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  font-size: .72rem;
  font-weight: 900;
  }
.story-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  }
.story-card-body h3 {
  margin: 0;
  font-size: clamp(1.3rem,2vw,2.05rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  }
.story-card-body h3 a {
  text-decoration: none;
  }
.story-card-body > p:not(.story-meta) {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
  }
.story-blue {
  box-shadow: 7px 7px 0 var(--blue);
  }
.story-yellow {
  box-shadow: 7px 7px 0 var(--yellow);
  }
.story-orange {
  box-shadow: 7px 7px 0 var(--orange);
  }
.story-red {
  box-shadow: 7px 7px 0 var(--red);
  }
.story-navy {
  box-shadow: 7px 7px 0 var(--navy);
  }

.field-notes {
  padding-block: 108px 120px;
  background: #fff;
  border-block: 1px solid var(--line);
  }
.centered-heading {
  max-width: 680px;
  margin: 0 auto 46px;
  text-align: center;
  }
.centered-heading > p:last-child {
  color: var(--muted);
  }
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  }
.note-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: 32px 8px 32px 8px;
  box-shadow: 8px 8px 0 var(--ink);
  }
.note-blue {
  background: var(--blue);
  color: #fff;
  }
.note-yellow {
  background: var(--yellow);
  }
.note-orange {
  background: var(--orange);
  color: var(--ink);
  }
.note-card::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 14px;
  right: 24px;
  top: -8px;
  background: rgba(255,255,255,.72);
  transform: rotate(4deg);
  }
.note-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
  }
.note-kicker {
  margin: 40px 0 10px;
  font-size: .67rem;
  letter-spacing: .12em;
  font-weight: 900;
  }
.note-card h3 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -.035em;
  }
.note-card h3 a {
  text-decoration: none;
  }
.note-card > p:not(.note-kicker) {
  margin: 17px 0 24px;
  font-size: .88rem;
  line-height: 1.55;
  opacity: .84;
  }
.note-arrow {
  margin-top: auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  }

.manifesto {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(50px,8vw,110px);
  padding-block: 120px;
  }
.manifesto-logo-wrap {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  }
.manifesto-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 3px solid var(--ink);
  border-radius: 48% 52% 55% 45% / 45% 50% 50% 55%;
  background: var(--yellow);
  transform: rotate(-4deg);
  }
.manifesto-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 3px 36px 51px 5px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: rotate(5deg);
  }
.manifesto-logo-wrap img {
  position: relative;
  z-index: 1;
  width: 90%;
  mix-blend-mode: multiply;
  transform: rotate(2deg);
  }
.manifesto-copy blockquote {
  margin: 0;
  max-width: 700px;
  font-size: clamp(2.7rem,5vw,5.1rem);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 900;
  }
.manifesto-copy blockquote em {
  color: var(--blue);
  }
.manifesto-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0;
  color: var(--muted);
  }

.site-footer {
  padding-top: 85px;
  background: var(--navy);
  color: #fff;
  }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 70px;
  padding-bottom: 70px;
  }
.footer-brand img {
  width: 190px;
  background: #fff;
  border-radius: 8px;
  }
.footer-brand p {
  margin-top: 18px;
  color: #cbd8e8;
  font-weight: 700;
  }
.footer-links {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  }
.footer-links h2 {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  }
.footer-links a {
  display: block;
  margin: 9px 0;
  color: #e8f0fb;
  font-size: .9rem;
  }
.footer-cta {
  padding-left: 38px;
  border-left: 1px solid rgba(255,255,255,.26);
  }
.footer-cta .eyebrow {
  color: var(--yellow);
  }
.footer-cta h2 {
  max-width: 420px;
  margin: 0 0 25px;
  font-size: 1.85rem;
  line-height: 1.08;
  }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
  color: #aebed3;
  font-size: .75rem;
  }
.footer-bottom p {
  margin: 0;
  }

@media (max-width: 1000px) {
  .desktop-nav, .header-actions {
  display: none;
  }
  .mobile-menu {
  display: block;
  }
  .hero {
  grid-template-columns: 1fr;
  min-height: auto;
  }
  .hero-copy {
  max-width: 760px;
  }
  .hero-story {
  max-width: 650px;
  width: 100%;
  margin-inline: auto;
  }
  .category-grid {
  grid-template-columns: repeat(2,1fr);
  }
  .story-card, .story-wide {
  grid-template-columns: 1fr;
  }
  .story-image {
  min-height: 290px;
  }
  .story-wide .story-image {
  min-height: 390px;
  }
  .notes-grid {
  grid-template-columns: 1fr;
  }
  .note-card {
  min-height: 300px;
  }
  .manifesto {
  grid-template-columns: 1fr;
  }
  .manifesto-logo-wrap {
  min-height: 380px;
  }
  .footer-top {
  grid-template-columns: 1fr 1fr;
  }
  .footer-cta {
  grid-column: 1 / -1;
  padding: 36px 0 0;
  border-left: 0;
  border-top: 1px solid rgba(255,255,255,.26);
  }
}

@media (max-width: 700px) {
  body {
  font-size: 16px;
  }
  .shell {
  width: min(100% - 26px, 1180px);
  }
  .header-inner {
  min-height: 74px;
  }
  .brand, .brand img {
  width: 102px;
  }
  .brand img {
  height: 60px;
  }
  .hero {
  padding-block: 50px 66px;
  gap: 42px;
  }
  .hero h1 {
  font-size: clamp(3rem,15vw,4.5rem);
  }
  .hero-lede {
  font-size: 1rem;
  }
  .hero-actions {
  align-items: flex-start;
  flex-direction: column;
  }
  .hero-proof {
  margin-top: 34px;
  }
  .hero-story {
  min-height: 440px;
  padding-inline: 0;
  }
  .hero-story::before {
  inset: 48px 3px 70px;
  }
  .hero-story::after {
  inset: 26px 9px 98px 18px;
  }
  .hero-story > a {
  inset: 26px 11px 94px 16px;
  }
  .hero-sticker {
  left: -2px;
  top: 88px;
  width: 70px;
  height: 70px;
  font-size: .66rem;
  }
  .sunburst {
  width: 60px;
  height: 60px;
  }
  .hero-story-card {
  width: 94%;
  padding: 20px 60px 20px 20px;
  }
  .hero-story-card h2 {
  font-size: 1.12rem;
  }
  .inline-heading {
  display: block;
  }
  .inline-heading > .text-link, .inline-heading > .section-note {
  display: inline-block;
  margin-top: 18px;
  }
  .category-strip, .field-notes {
  padding-block: 72px;
  }
  .category-grid {
  grid-template-columns: 1fr;
  }
  .category-grid a {
  min-height: 88px;
  }
  .latest {
  padding-block: 82px;
  }
  .story-grid {
  grid-template-columns: 1fr;
  }
  .story-wide {
  grid-column: auto;
  }
  .story-image, .story-wide .story-image {
  min-height: 260px;
  }
  .story-card-body {
  padding: 24px;
  }
  .manifesto {
  padding-block: 84px;
  }
  .manifesto-logo-wrap {
  min-height: 290px;
  }
  .footer-top {
  grid-template-columns: 1fr;
  gap: 42px;
  }
  .footer-links {
  max-width: 390px;
  }
  .footer-cta {
  grid-column: auto;
  }
  .footer-bottom {
  flex-direction: column;
  }
}

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

@media (forced-colors: active) {
  .button, .story-card, .note-card, .hero-story-card {
  border: 2px solid CanvasText;
  box-shadow: none;
  }
}
