:root {
  color-scheme: light;
  --paper: #f3f0e7;
  --paper-bright: #fffaf0;
  --ink: #101217;
  --muted: #62646b;
  --blue: #1557ff;
  --blue-dark: #0b2f95;
  --orange: #ff6338;
  --lime: #c8ff4d;
  --line: #15171c;
  --soft-line: rgba(16, 18, 23, .18);
  --shadow: 10px 10px 0 var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--paper);
}
body {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 11%, rgba(21, 87, 255, .09), transparent 24rem),
    linear-gradient(var(--paper), var(--paper));
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .23;
  background-image: radial-gradient(rgba(16, 18, 23, .42) .6px, transparent .6px);
  background-size: 12px 12px;
  mask-image: linear-gradient(to bottom, black, transparent 60%);
}
::selection { color: var(--ink); background: var(--lime); }
a { color: inherit; }
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  color: var(--paper-bright);
  background: var(--blue);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header,
.site-footer,
.page-shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}
.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 94px;
  border-bottom: 2px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  filter: drop-shadow(3px 3px 0 rgba(16, 18, 23, .98));
}
.brand-copy { display: grid; gap: 2px; }
.brand-name {
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.035em;
}
.brand-tagline {
  color: var(--blue);
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .19em;
}
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  padding: 10px 13px;
  border: 2px solid transparent;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}
nav a:hover,
nav a:focus-visible {
  border-color: var(--ink);
  background: var(--lime);
  outline: 0;
}
.page-shell { min-height: calc(100vh - 178px); }

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 104px);
  min-height: 690px;
  padding: clamp(74px, 9vw, 122px) 0;
}
.home-intro > *,
.editorial-grid > *,
.article-page,
.featured-story,
.featured-media,
.editorial-visual,
.article-hero-image {
  min-width: 0;
  max-width: 100%;
}
.intro-copy { position: relative; }
.intro-copy::after {
  position: absolute;
  right: 5%;
  bottom: -68px;
  width: 90px;
  height: 18px;
  content: "";
  border-top: 5px solid var(--orange);
  border-bottom: 5px solid var(--orange);
  transform: rotate(-7deg);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .19em;
}
.eyebrow::before {
  width: 23px;
  height: 7px;
  content: "";
  background: var(--orange);
}
h1,
h2,
h3,
.featured-title {
  font-family: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
}
h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3.5rem, 6.6vw, 7.1rem);
  font-weight: 950;
  line-height: .87;
  letter-spacing: -.083em;
}
h1 em {
  color: var(--blue);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: .075em;
  text-underline-offset: .11em;
}
.intro-dek {
  max-width: 610px;
  margin: 31px 0 0;
  color: #3f4148;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.55;
}
.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.topic-list li {
  padding: 8px 10px 7px;
  border: 1.5px solid var(--ink);
  background: rgba(255, 250, 240, .5);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.topic-list li:nth-child(2) { background: var(--lime); }

.featured-story {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
  text-decoration: none;
  transform: rotate(.65deg);
  transition: transform .22s ease, box-shadow .22s ease;
}
.featured-story:hover,
.featured-story:focus-visible {
  box-shadow: 5px 5px 0 var(--ink);
  outline: 0;
  transform: rotate(0) translate(5px, 5px);
}
.featured-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--blue-dark);
}
.featured-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(21, 87, 255, .06), rgba(200, 255, 77, .2));
  mix-blend-mode: screen;
}
.featured-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .45s ease;
}
.featured-story:hover .featured-media img { transform: scale(1.025); }
.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .12em;
}
.featured-content { display: block; padding: clamp(22px, 3vw, 34px); }
.article-label {
  display: block;
  margin: 0 0 13px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .15em;
}
.featured-title {
  display: block;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  font-weight: 950;
  line-height: .97;
  letter-spacing: -.055em;
}
.featured-description {
  display: block;
  margin-top: 17px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
}
.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid var(--soft-line);
  font-size: .76rem;
  font-weight: 800;
}
.read-link {
  color: var(--blue);
  font-weight: 950;
  white-space: nowrap;
}
.read-link > span { color: var(--orange); font-size: 1.15em; }

.signal-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-block: 2px solid var(--ink);
  color: var(--paper-bright);
  background: var(--blue);
  transform: rotate(-.75deg);
}
.signal-strip div {
  width: max-content;
  min-width: 120%;
  padding: 14px 0 13px;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(.82rem, 1.4vw, 1.02rem);
  font-weight: 950;
  letter-spacing: .16em;
  white-space: nowrap;
  animation: signal-move 18s linear infinite;
}
@keyframes signal-move {
  from { transform: translateX(-2%); }
  to { transform: translateX(-18%); }
}

.ad-slot {
  width: 100%;
  min-height: 90px;
  margin: 26px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--soft-line);
  color: var(--muted);
  background: rgba(255, 250, 240, .45);
  text-align: center;
}
.ad-slot::before {
  display: block;
  margin-bottom: 7px;
  content: "ADVERTISEMENT";
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.ad-slot .adsbygoogle { min-height: 58px; }

.latest-stories { padding: clamp(86px, 10vw, 136px) 0 30px; }
.latest-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(34px, 8vw, 120px);
  align-items: end;
  margin-bottom: 45px;
}
.latest-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -9px; }
.latest-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: .88;
  letter-spacing: -.07em;
}
.latest-heading h2 em { color: var(--blue); font-style: normal; text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: .075em; text-underline-offset: .11em; }
.latest-heading > p:last-child {
  margin: 0;
  padding-left: 22px;
  border-left: 5px solid var(--orange);
  color: #3f4148;
  font-size: 1.08rem;
  line-height: 1.63;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}
.story-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--paper-bright);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.story-card:hover,
.story-card:focus-visible {
  outline: 0;
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-2px, -2px);
}
.story-card-media {
  display: block;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--blue-dark);
}
.story-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}
.story-card:hover .story-card-media img { transform: scale(1.035); }
.story-card-content { display: flex; flex: 1; flex-direction: column; padding: 20px 18px 17px; }
.story-card .article-label { margin-bottom: 11px; font-size: .6rem; }
.story-card-title {
  display: block;
  font-family: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.28rem, 1.8vw, 1.75rem);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.055em;
}
.story-card-description { display: block; margin-top: 13px; color: var(--muted); font-size: .86rem; line-height: 1.48; }
.story-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 800;
}
.story-card-footer .read-link { font-size: .67rem; }

.editorial-map { padding: clamp(106px, 12vw, 164px) 0 130px; }
.map-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(34px, 8vw, 120px);
  align-items: end;
  margin-bottom: 52px;
}
.map-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -10px; }
.map-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.6rem);
  line-height: .88;
  letter-spacing: -.07em;
}
.map-intro > p:last-child {
  margin: 0;
  padding-left: 22px;
  border-left: 5px solid var(--orange);
  color: #3f4148;
  font-size: 1.08rem;
  line-height: 1.63;
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}
.editorial-card {
  position: relative;
  min-height: 310px;
  padding: 25px;
  overflow: hidden;
  border: 2px solid var(--ink);
}
.editorial-card::after {
  position: absolute;
  right: -35px;
  bottom: -44px;
  width: 145px;
  height: 145px;
  content: "";
  border: 18px solid currentColor;
  border-radius: 50%;
  opacity: .11;
}
.card-blue { color: var(--paper-bright); background: var(--blue); }
.card-orange { color: var(--ink); background: var(--orange); }
.card-dark { color: var(--paper-bright); background: var(--ink); }
.card-number {
  display: block;
  width: max-content;
  padding-bottom: 5px;
  border-bottom: 3px solid currentColor;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .16em;
}
.editorial-card h3 {
  max-width: 290px;
  margin: 92px 0 12px;
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.editorial-card p { max-width: 330px; margin: 0; font-size: .94rem; line-height: 1.53; opacity: .85; }
.editorial-visual {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 7;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--blue-dark);
}
.editorial-visual img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center; }
.editorial-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(16, 18, 23, .75), transparent 65%);
}
.editorial-visual figcaption {
  position: absolute;
  left: clamp(22px, 4vw, 48px);
  bottom: clamp(24px, 4vw, 45px);
  z-index: 1;
  display: grid;
  max-width: 470px;
  color: white;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(1.7rem, 4vw, 3.7rem);
  line-height: .94;
  letter-spacing: -.055em;
}
.editorial-visual figcaption span {
  margin-bottom: 10px;
  color: var(--lime);
  font-family: Inter, sans-serif;
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .16em;
}

.text-page {
  max-width: 790px;
  padding: clamp(78px, 11vw, 140px) 0 130px;
}
.text-page h1 { font-size: clamp(3rem, 7vw, 6.8rem); }
.text-page p {
  max-width: 690px;
  color: #44464d;
  font-size: 1.06rem;
  line-height: 1.72;
}
.text-page .text-page-lead { margin-top: 35px; color: var(--ink); font-size: 1.3rem; line-height: 1.55; }
.text-page a,
.contact-address a { color: var(--blue); font-weight: 850; }
.contact-address { font-size: clamp(1.2rem, 3vw, 1.7rem) !important; }

.article-page { max-width: 1080px; padding: clamp(64px, 9vw, 112px) 0 130px; }
.article-header { max-width: 980px; padding-bottom: 43px; }
.article-header h1 { max-width: 1020px; font-size: clamp(3.1rem, 7.2vw, 7.3rem); }
.article-dek {
  max-width: 780px;
  margin: 32px 0 28px;
  color: #484a51;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.55;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
  color: var(--muted);
  font-size: .8rem;
  font-weight: 720;
}
.article-meta time { color: var(--ink); font-weight: 850; }
.article-hero-image {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}
.article-hero-image::before {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  padding: 7px 9px;
  border: 2px solid var(--ink);
  content: "WIREDBENCH / 001";
  color: var(--ink);
  background: var(--lime);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: .12em;
}
.article-hero-image img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; }
.article-content {
  max-width: 750px;
  padding: 58px 0 0 clamp(0px, 4vw, 42px);
}
.article-content p {
  color: #303238;
  font-family: Charter, Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.65vw, 1.19rem);
  line-height: 1.82;
}
.article-content > p:first-child { color: var(--ink); font-size: clamp(1.22rem, 2vw, 1.4rem); line-height: 1.66; }
.article-content h2 {
  margin: 56px 0 16px;
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.article-content h2::before { display: block; width: 48px; height: 7px; margin-bottom: 16px; content: ""; background: var(--orange); }
.article-content a { color: var(--blue); font-weight: 800; }
.article-content ul {
  margin: 24px 0;
  padding-left: 1.35rem;
  color: #303238;
  font-family: Charter, Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.65vw, 1.19rem);
  line-height: 1.72;
}
.article-content li { padding-left: 7px; margin: 8px 0; }
.article-source {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 2px solid var(--soft-line);
  color: var(--muted) !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: .86rem !important;
  line-height: 1.6 !important;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 31px 0 36px;
  border-top: 2px solid var(--ink);
  color: var(--muted);
  font-size: .78rem;
}
.site-footer > div:first-child { display: grid; gap: 4px; }
.site-footer strong { color: var(--ink); font-size: .94rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 20px; }
.site-footer a { color: var(--blue); font-weight: 800; text-decoration: none; }
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--ink); text-decoration: underline; }

@media (max-width: 1000px) {
  .home-intro { grid-template-columns: 1fr; min-height: auto; }
  .intro-copy { max-width: 820px; }
  .intro-copy::after { display: none; }
  .featured-story { width: min(100%, 760px); margin-inline: auto; transform: none; }
  .latest-heading { grid-template-columns: 1fr; }
  .latest-heading .eyebrow { grid-column: auto; margin-bottom: -8px; }
  .latest-heading > p:last-child { max-width: 680px; }
  .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-intro { grid-template-columns: 1fr; }
  .map-intro .eyebrow { grid-column: auto; margin-bottom: -8px; }
  .map-intro > p:last-child { max-width: 680px; }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .page-shell { width: min(100% - 34px, 1240px); }
  .home-intro { padding-top: 66px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-visual { grid-column: auto; }
  .editorial-card { min-height: 255px; }
  .editorial-card h3 { margin-top: 65px; }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  .page-shell { width: min(100% - 26px, 1240px); }
  .site-header { align-items: flex-start; min-height: 82px; padding: 15px 0; }
  .brand { gap: 9px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-tagline { font-size: .5rem; }
  nav { gap: 0; padding-top: 3px; }
  nav a { padding: 8px 6px; border-width: 1px; font-size: .72rem; }
  nav a:nth-child(2) { display: none; }
  .home-intro { gap: 48px; padding: 58px 0 82px; }
  h1 { font-size: clamp(3.25rem, 17vw, 5.5rem); }
  .intro-dek { margin-top: 26px; }
  .topic-list { gap: 6px; }
  .topic-list li { padding: 7px 8px 6px; font-size: .57rem; }
  .featured-story { box-shadow: 6px 6px 0 var(--ink); transform: none; }
  .featured-content { padding: 21px 18px; }
  .featured-footer { align-items: flex-start; flex-direction: column; gap: 10px; }
  .signal-strip { transform: rotate(-1deg); }
  .editorial-map { padding: 92px 0 100px; }
  .latest-stories { padding: 80px 0 20px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card-media img { aspect-ratio: 16 / 9; }
  .map-intro { margin-bottom: 36px; }
  .map-intro h2 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .editorial-visual { aspect-ratio: 4 / 3; }
  .article-page { padding-top: 56px; }
  .article-header h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .article-hero-image { box-shadow: 6px 6px 0 var(--ink); }
  .article-hero-image::before { top: 10px; right: 10px; }
  .article-content { padding-top: 40px; }
  .article-content h2 { margin-top: 48px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

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