:root {
  --bg: #ffffff;
  --surface: #ececec;
  --surface-2: #d8d8d8;
  --text: #111111;
  --muted: #4b4b4b;
  --black: #000000;
  --orange: #ff6a00;
  --blue: #00a8e8;
  --green: #1dd49a;
  --border: #111111;
  --max: 1120px;
  --radius: 0px;
  --shadow: 8px 8px 0 #000000;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.site-header {
  background: var(--black);
  color: white;
  border-bottom: 4px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 30;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 0;
}
.site-brand, .site-nav a, .site-link { text-decoration: none; }
.site-brand {
  font-family: 'Archivo Black', Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: .04em;
  max-width: 16ch;
}
.site-nav .nav { display: flex; list-style: none; margin: 0; padding: 0; gap: 1rem; }
.site-nav a, .site-link { font-weight: 700; }
.site-header__actions { display: flex; align-items: center; gap: .75rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.25rem; border: 2px solid var(--black); text-decoration: none;
  font-weight: 900; text-transform: uppercase; letter-spacing: .03em;
  border-radius: var(--radius); transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 4px 4px 0 var(--black);
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--black); }
.button--orange { background: var(--orange); color: var(--black); }
.button--ghost { background: transparent; color: white; border-color: white; box-shadow: none; }
.button--small { padding: .65rem .9rem; font-size: .85rem; box-shadow: none; border-color: var(--orange); }
.hero {
  background: var(--black);
  color: white;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 8px solid var(--blue);
}
.hero__grid {
  display: grid; grid-template-columns: 1.3fr .9fr; gap: 1.5rem; align-items: start;
}
.eyebrow {
  margin: 0 0 .75rem; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 900;
}
.eyebrow--blue { color: var(--blue); }
.eyebrow--green { color: var(--green); }
.eyebrow--orange { color: var(--orange); }
.hero h1, .article-hero h1 {
  margin: 0;
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  line-height: .95;
  text-transform: uppercase;
  color: var(--orange);
  max-width: 10ch;
}
.hero__dek, .article-hero__dek {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  max-width: 42rem;
  color: #f3f3f3;
  margin: 1.25rem 0 0;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }
.hero__aside { display: grid; gap: 1rem; }
.info-card, .manifesto-card, .subscribe-block__inner {
  background: var(--surface);
  color: var(--text);
  border: 2px solid var(--border);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.info-card h2, .manifesto-card h3, .subscribe-block__inner h2 { margin-top: 0; font-family: 'Archivo Black', Impact, sans-serif; text-transform: uppercase; }
.countdown-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.countdown-tile {
  min-height: 116px; padding: 1rem; border: 2px solid var(--border); display: flex; flex-direction: column;
  justify-content: space-between; box-shadow: var(--shadow);
}
.countdown-tile strong {
  font-family: 'Archivo Black', Impact, sans-serif; font-size: 1.4rem; text-transform: uppercase; line-height: 1;
}
.countdown-tile span { font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.countdown-tile--blue { background: var(--blue); }
.countdown-tile--green { background: var(--green); }
.countdown-tile--orange { background: var(--orange); }
.countdown-tile--gray { background: var(--surface-2); }
.section-bar { padding: .85rem 0; border-top: 3px solid var(--black); border-bottom: 3px solid var(--black); }
.section-bar h2 {
  margin: 0; text-align: center; text-transform: uppercase; font-family: 'Archivo Black', Impact, sans-serif;
  letter-spacing: .04em; font-size: clamp(1.2rem, 3vw, 2rem);
}
.section-bar--green { background: var(--black); color: var(--green); }
.section-bar--blue { background: var(--black); color: var(--blue); }
.section-bar--orange { background: var(--black); color: var(--orange); }
.manifesto, .feed, .subscribe-block, .article { padding: 2rem 0 3rem; }
.manifesto__grid, .post-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem;
}
.post-card { background: white; border: 2px solid var(--black); box-shadow: var(--shadow); }
.post-card__inner { display: flex; flex-direction: column; height: 100%; text-decoration: none; }
.post-card__image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-bottom: 2px solid var(--black); }
.post-card__image--placeholder {
  background: repeating-linear-gradient(-45deg, var(--orange), var(--orange) 20px, var(--blue) 20px, var(--blue) 40px);
  display: grid; place-items: center; color: black; font-family: 'Archivo Black', Impact, sans-serif; text-transform: uppercase;
}
.post-card__content { padding: 1.1rem; display: grid; gap: .75rem; }
.post-card__tag, .article-meta { text-transform: uppercase; font-weight: 800; letter-spacing: .05em; color: var(--muted); font-size: .82rem; }
.post-card h3 {
  margin: 0; font-family: 'Archivo Black', Impact, sans-serif; text-transform: uppercase; line-height: 1.05; font-size: 1.5rem;
}
.post-card p { margin: 0; }
.post-card__meta { display: flex; justify-content: space-between; align-items: center; font-weight: 800; }
.subscribe-block__inner { background: white; }
.article-hero {
  background: var(--black);
  color: white;
  padding: 3rem 0 2rem;
  border-bottom: 8px solid var(--green);
}
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; color: white; }
.article-feature { margin: 0 0 2rem; border: 2px solid var(--black); box-shadow: var(--shadow); overflow: hidden; }
.article-body {
  font-size: 1.08rem;
  max-width: 760px;
}
.article-body h2, .article-body h3, .article-body h4 {
  font-family: 'Archivo Black', Impact, sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 2rem;
}
.article-body a { text-decoration-thickness: 3px; text-underline-offset: .12em; }
.kg-width-wide,
.kg-width-full {
  width: 100%;
}
.kg-width-wide img,
.kg-width-full img {
  width: 100%;
  border: 2px solid var(--black);
  box-shadow: var(--shadow);
}
.site-footer {
  background: var(--black);
  color: white;
  border-top: 8px solid var(--orange);
  padding: 2rem 0;
}
.site-footer__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.site-footer h2 { margin: .25rem 0 0; font-family: 'Archivo Black', Impact, sans-serif; text-transform: uppercase; }
.site-link--light { color: var(--green); font-weight: 800; }
@media (max-width: 900px) {
  .hero__grid, .manifesto__grid, .post-grid, .site-footer__inner { grid-template-columns: 1fr; }
  .site-header__inner { flex-wrap: wrap; }
  .site-nav { order: 3; width: 100%; }
  .site-nav .nav { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .hero { padding-top: 2.5rem; }
  .container { width: min(calc(100% - 1.25rem), var(--max)); }
  .hero h1, .article-hero h1 { max-width: none; }
  .countdown-grid { grid-template-columns: 1fr 1fr; }
  .button { width: 100%; }
  .site-header__actions { width: 100%; justify-content: space-between; }
  .article-body { font-size: 1rem; }
}
