:root {
  --bg: #05070a;
  --panel: #10131a;
  --paper: #f4f1e8;
  --muted: #aeb8c0;
  --green: #3dffad;
  --cyan: #38c6ff;
  --orange: #ff8b1a;
  --red: #ff315c;
  --line: rgba(244, 241, 232, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 42px 42px,
    radial-gradient(circle at 16% 14%, rgba(56, 198, 255, 0.2), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(255, 49, 92, 0.18), transparent 26%),
    linear-gradient(135deg, #05070a 0%, #10131a 52%, #06090d 100%);
}

body::before {
  background: linear-gradient(rgba(255,255,255,0.035) 50%, rgba(0,0,0,0) 50%);
  background-size: 100% 7px;
  content: "";
  inset: 0;
  opacity: 0.36;
  pointer-events: none;
  position: fixed;
  z-index: 20;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.topbar {
  align-items: center;
  background: rgba(5, 7, 10, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 12px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand img {
  display: block;
  height: 58px;
  object-fit: contain;
  width: 68px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

nav a,
.button,
.issue-grid a,
button {
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 11px 13px;
  text-transform: uppercase;
}

nav a:hover,
.button:hover,
.issue-grid a:hover,
button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

main {
  overflow: hidden;
}

.hero,
.brief,
.field-files,
.issues,
.poster-lab,
.dispatch {
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(42px, 8vw, 92px) clamp(18px, 4vw, 56px);
}

.hero {
  min-height: calc(100vh - 83px);
  padding-top: 18px;
}

.ticker {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--green);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: clamp(28px, 5vw, 58px);
  overflow: hidden;
  padding: 10px 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(26px, 5vw, 60px);
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 1.08fr);
}

.eyebrow {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

h1 {
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.76;
}

h2 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.84;
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 0.94;
}

.dek,
.brief-copy,
.dispatch p,
.poster-copy p,
.file-card p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary,
button {
  background: var(--orange);
  border-color: var(--orange);
  color: #090909;
}

.hero-poster {
  border: 1px solid var(--line);
  min-height: 620px;
  overflow: hidden;
  position: relative;
  transform: rotate(1deg);
}

.hero-poster img {
  display: block;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  width: 100%;
}

.hero-poster::after {
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.84));
  content: "";
  inset: 0;
  position: absolute;
}

.poster-caption {
  bottom: 20px;
  left: 20px;
  position: absolute;
  right: 20px;
  z-index: 2;
}

.poster-caption span,
.file-card span,
.issue-grid span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.poster-caption strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.brief,
.dispatch,
.poster-lab {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
}

.section-head {
  margin-bottom: 28px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
  max-width: 720px;
}

.file-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.file-card,
.issue-grid article,
.poster-row article,
form {
  background: rgba(16, 19, 26, 0.82);
  border: 1px solid var(--line);
}

.file-card {
  display: grid;
  gap: 10px;
  min-height: 410px;
  padding: 12px;
}

.file-card.wide {
  grid-column: span 2;
}

.file-card img {
  aspect-ratio: 1.24;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.issue-grid,
.poster-row {
  display: grid;
  gap: 18px;
}

.issue-dossier {
  border: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.issue-dossier span {
  background: rgba(16, 19, 26, 0.78);
  color: var(--muted);
  display: grid;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  min-height: 96px;
  padding: 14px;
  text-transform: uppercase;
}

.issue-dossier strong {
  color: var(--orange);
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
}

.issue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.issue-grid article {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.issue-grid img {
  aspect-ratio: 0.86;
  display: block;
  object-fit: cover;
  width: 100%;
}

.poster-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.poster-row article {
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.poster-row img {
  display: block;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  width: 100%;
}

.poster-row strong {
  background: rgba(5, 7, 10, 0.78);
  bottom: 12px;
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 900;
  left: 12px;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  position: absolute;
  text-transform: uppercase;
}

form {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.criteria {
  border: 1px solid var(--line);
  display: grid;
  gap: 1px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.rotation-panel {
  border: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  margin-top: 20px;
}

.rotation-panel span {
  background:
    linear-gradient(90deg, rgba(255, 139, 26, 0.12), transparent 42%),
    rgba(16, 19, 26, 0.78);
  color: var(--muted);
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
  padding: 14px;
}

.rotation-panel strong {
  color: var(--paper);
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.criteria li {
  background: rgba(16, 19, 26, 0.72);
  color: var(--paper);
  font-size: 0.95rem;
  line-height: 1.45;
  padding: 13px 14px 13px 36px;
  position: relative;
}

.criteria li::before {
  color: var(--orange);
  content: ">";
  font-weight: 900;
  left: 14px;
  position: absolute;
}

label {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: #05070b;
  border: 1px solid rgba(244, 241, 232, 0.2);
  color: var(--paper);
  font: inherit;
  padding: 14px;
  width: 100%;
}

select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--orange) 50%) calc(100% - 20px) 50% / 8px 8px no-repeat,
    #05070b;
}

input[type="file"] {
  color: var(--muted);
}

.form-meter {
  color: var(--muted);
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-meter .over,
.form-status {
  color: var(--red);
}

.form-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0;
}

.form-status {
  font-size: 0.9rem;
  font-weight: 900;
  margin: 0;
}

.submission-fallback {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.submission-fallback[hidden] {
  display: none;
}

.fallback-link,
.secondary-action {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  display: flex;
  font-size: 0.76rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 44px;
  padding: 11px 13px;
  text-align: center;
  text-transform: uppercase;
}

.fallback-link:hover,
.secondary-action:hover {
  border-color: var(--orange);
  color: var(--orange);
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 56px);
}

footer a {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero-grid,
  .brief,
  .dispatch,
  .poster-lab {
    grid-template-columns: 1fr;
  }

  .file-grid,
  .poster-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .issue-grid {
    grid-template-columns: 1fr;
  }

  .issue-dossier {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-poster,
  .hero-poster img {
    min-height: 440px;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
    gap: 12px;
  }

  nav {
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  nav a {
    flex: 0 0 auto;
    padding: 10px;
  }

  .ticker {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(4.4rem, 23vw, 6.2rem);
  }

  h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .file-grid,
  .poster-row,
  .issue-dossier {
    grid-template-columns: 1fr;
  }

  .file-card.wide {
    grid-column: auto;
  }

  .hero-poster,
  .hero-poster img {
    min-height: 330px;
  }
}
