/* No Border Network — direction D, "Roster".
   Built against the Korean/SEA MCN house style: a full-viewport cinematic hero, poster
   type stacked and enormous, a ticker, and a talent grid. Where SOON builds its hero as a
   made collage, ours is a live wall of the vertical frames we publish — same intent, but
   it scales and moves instead of being a baked JPG.

   Two traps this project already hit, do not reintroduce:
   - anything carrying .wrap must use padding-block, never the padding shorthand
   - any <img> with a height attribute needs height:auto or it ignores aspect-ratio */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --ground: #08070A;
  --raise:  #131019;
  --paper:  #F5F2EC;
  --dim:    #8B8496;
  --hot:    #FF2D78;   /* the one loud colour; everything else stays quiet */
  --cool:   #1B34E8;   /* the brand blue, kept for colour blocks only */
  --hair:   rgba(245,242,236,0.14);

  --display: 'Anton', 'Helvetica Neue', sans-serif;
  --body:    'Archivo', system-ui, sans-serif;
  --mono:    'DM Mono', ui-monospace, monospace;

  --gut: clamp(1.25rem, 4vw, 4rem);
  --max: 88rem;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--ground); color: var(--paper);
  font: 400 clamp(1rem, 0.95rem + 0.2vw, 1.0625rem)/1.6 var(--body);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gut); }

/* ---------- chrome ----------------------------------------------------- */
.bar {
  position: absolute; inset: 0 0 auto; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding-block: 1.5rem;
}
.mark {
  font: 400 1.125rem/1 var(--display); letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--paper); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.mark::before {
  content: ''; width: 0.8rem; height: 0.8rem; background: var(--hot);
  /* a square with one corner opened: a border that doesn't close */
  clip-path: polygon(0 0, 100% 0, 100% 55%, 55% 55%, 55% 100%, 0 100%);
}
nav { display: flex; gap: 1.75rem; }
nav a {
  font: 500 0.75rem/1 var(--mono); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--paper); text-decoration: none; padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
nav a:hover, nav a:focus-visible { border-bottom-color: var(--hot); }

/* ---------- hero: the wall --------------------------------------------- */
/* padding-block:0 is load-bearing: the generic `section` rule adds 8rem top and bottom,
   which inside a 100svh hero left a dead band under the headline. */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; align-items: flex-end; padding-block: 0;
}

.wall {
  position: absolute; inset: -12% -2%; z-index: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
}
@media (min-width: 48rem)  { .wall { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 80rem)  { .wall { grid-template-columns: repeat(6, 1fr); } }
.col { display: grid; gap: 0.75rem; align-content: start; animation: drift 46s linear infinite; }
.col:nth-child(even) { animation-direction: reverse; animation-duration: 58s; }
.col:nth-child(3n)   { animation-duration: 68s; }
.col img { width: 100%; aspect-ratio: 9/16; object-fit: cover; }
@keyframes drift { from { transform: translateY(0); } to { transform: translateY(-50%); } }

/* A colour block sits in the run of frames, the way SOON drops flat colour into its
   collage. It is a panel, not an image, so it costs nothing. */
.block { aspect-ratio: 9/16; background: var(--hot); }
.col:nth-child(3) .block { background: var(--cool); }
.col:nth-child(5) .block { background: var(--paper); }

/* the wall is scenery: it must never compete with the headline */
.veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, var(--ground) 6%, rgba(8,7,10,0.80) 40%, rgba(8,7,10,0.52) 100%),
    linear-gradient(to right, var(--ground) 2%, rgba(8,7,10,0.35) 55%, rgba(8,7,10,0.7) 100%);
}
.heroInner { position: relative; z-index: 2; width: 100%; padding-block: 0 clamp(3rem, 7vw, 5.5rem); }

.kicker {
  font: 500 0.75rem/1 var(--mono); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--hot); margin: 0 0 1.5rem;
}
.poster {
  font: 400 clamp(3rem, 1rem + 11vw, 10.5rem)/0.86 var(--display);
  letter-spacing: -0.01em; text-transform: uppercase; margin: 0; max-width: 15ch;
}
.poster em { font-style: normal; color: var(--hot); }
.heroInner .lede {
  font-size: clamp(1.0625rem, 1rem + 0.5vw, 1.3125rem); line-height: 1.5;
  max-width: 40ch; margin: 2rem 0 0; color: var(--dim);
}
.scroll {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 2.5rem;
  font: 500 0.6875rem/1 var(--mono); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim);
}
.scroll::after { content: ''; width: 4.5rem; height: 1px; background: var(--hair); position: relative; }

/* ---------- ticker ----------------------------------------------------- */
.ticker { background: var(--hot); color: var(--ground); overflow: hidden; padding-block: 0.9rem; }
.ticker ul {
  display: flex; gap: 3.5rem; margin: 0; padding: 0; list-style: none; width: max-content;
  animation: slide 38s linear infinite;
}
.ticker li {
  font: 400 0.875rem/1 var(--display); letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap; display: flex; align-items: center; gap: 3.5rem;
}
.ticker li::after { content: '◆'; font-size: 0.5rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections --------------------------------------------------- */
section { padding-block: clamp(4rem, 9vw, 8rem); }
.label {
  font: 500 0.75rem/1 var(--mono); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--hot); margin: 0 0 1.5rem;
}
h2 {
  font: 400 clamp(2rem, 1.1rem + 3.4vw, 4.5rem)/0.94 var(--display);
  text-transform: uppercase; letter-spacing: -0.005em; margin: 0 0 1.5rem; max-width: 17ch;
}
h3 { font: 600 1.125rem/1.3 var(--body); margin: 0 0 0.4rem; }
p { margin: 0 0 1.1rem; max-width: 58ch; }
.muted { color: var(--dim); }
a { color: var(--hot); }

.two { display: grid; gap: clamp(2rem, 5vw, 4.5rem); grid-template-columns: 1fr; }
@media (min-width: 62rem) { .two { grid-template-columns: 5fr 4fr; align-items: start; } }

/* ---------- roster ----------------------------------------------------- */
.roster { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-top: 3rem; }
@media (min-width: 52rem) { .roster { grid-template-columns: repeat(4, 1fr); } }
.act { position: relative; overflow: hidden; background: var(--raise); display: block; }
.act img { width: 100%; aspect-ratio: 9/16; object-fit: cover; transition: transform 0.5s ease; }
.act:hover img, .act:focus-within img { transform: scale(1.04); }
.act figcaption {
  position: absolute; inset: auto 0 0; padding: 2.5rem 1rem 1rem;
  /* the tiles are bright at the bottom (pavement, shoes), so the scrim has to be
     genuinely dark under the text rather than a token fade */
  background: linear-gradient(to top, rgba(8,7,10,0.95) 0%, rgba(8,7,10,0.8) 45%, transparent 100%);
}
.act b { display: block; font: 400 1.25rem/1 var(--display); text-transform: uppercase; letter-spacing: 0.02em; }
.act span {
  display: block; margin-top: 0.35rem;
  font: 400 0.6875rem/1.4 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim);
}

/* faceless channels have no face to show, so their tile is typographic by nature */
.act.blank {
  aspect-ratio: 9/16; display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.25rem; border: 1px solid var(--hair); background: var(--raise);
}
.act.blank .glyph {
  font: 400 clamp(2.5rem, 6vw, 4rem)/0.9 var(--display); color: var(--hot); text-transform: uppercase;
}
.act.blank .fc { position: static; padding: 0; background: none; }

/* ---------- offer ------------------------------------------------------ */
.offer { margin-top: 3rem; border-top: 1px solid var(--hair); }
.offer > div {
  display: grid; gap: 0.5rem 3rem; grid-template-columns: 1fr;
  padding-block: 1.75rem; border-bottom: 1px solid var(--hair);
  transition: background 0.2s ease;
}
@media (min-width: 52rem) { .offer > div { grid-template-columns: 7rem 15rem 1fr; align-items: baseline; } }
.offer .n { font: 500 0.75rem/1.9 var(--mono); color: var(--hot); }
.offer h3 { font: 400 1.375rem/1.15 var(--display); text-transform: uppercase; letter-spacing: 0.01em; }
.offer p { margin: 0; color: var(--dim); }

/* ---------- figures ---------------------------------------------------- */
.figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); margin-top: 3rem; }
.fig { padding-right: 1.5rem; }
.fig + .fig { border-left: 1px solid var(--hair); padding-left: 1.5rem; }
.fig b {
  display: block; font: 400 clamp(2.25rem, 1.5rem + 2.4vw, 3.75rem)/1 var(--display);
  font-variant-numeric: tabular-nums; text-transform: uppercase;
}
.fig span { display: block; margin-top: 0.4rem; font: 400 0.8125rem/1.4 var(--mono); color: var(--dim); max-width: 24ch; }

/* ---------- doors ------------------------------------------------------ */
.doors { display: grid; gap: 1px; background: var(--hair); border: 1px solid var(--hair); margin-top: 3rem; }
@media (min-width: 52rem) { .doors { grid-template-columns: 1fr 1fr; } }
.door {
  background: var(--ground); color: var(--paper); text-decoration: none; display: block;
  padding: clamp(2rem, 4vw, 3rem); transition: background 0.2s ease, color 0.2s ease;
}
.door:hover, .door:focus-visible { background: var(--hot); color: var(--ground); }
.door h3 { font: 400 1.5rem/1.1 var(--display); text-transform: uppercase; margin-bottom: 0.75rem; }
.door p { color: var(--dim); margin: 0; font-size: 0.9375rem; }
.door:hover p, .door:focus-visible p { color: rgba(8,7,10,0.78); }
.door .go {
  display: inline-block; margin-top: 1.5rem; color: var(--hot);
  font: 500 0.6875rem/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase;
}
.door:hover .go, .door:focus-visible .go { color: var(--ground); }

/* ---------- footer ----------------------------------------------------- */
footer { padding-block: 3rem 4rem; border-top: 1px solid var(--hair); font: 400 0.8125rem/1.7 var(--mono); color: var(--dim); }
footer .cols { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 46rem) { footer .cols { grid-template-columns: 2fr 1fr 1fr; } }
footer a { color: var(--dim); text-decoration: none; display: block; }
footer a:hover { color: var(--hot); }
footer .legal { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--hair); }

.disclose { font: 400 0.75rem/1.5 var(--mono); color: var(--dim); margin-top: 1.5rem; max-width: 62ch; }

/* ---------- two audience tracks ----------------------------------------
   The offer list used to run brands and creators together, so "you" meant a brand
   in one row and a creator in the next. Split, labelled, and never interleaved. */
.tracks { display: grid; gap: clamp(2.5rem, 5vw, 4rem); grid-template-columns: 1fr; margin-top: 3rem; }
@media (min-width: 62rem) { .tracks { grid-template-columns: 1fr 1fr; } }
.track { border-top: 2px solid var(--hot); padding-top: 1.5rem; }
.track > h3 {
  font: 400 clamp(1.5rem, 1.1rem + 1vw, 2rem)/1 var(--display);
  text-transform: uppercase; letter-spacing: 0.01em; margin: 0 0 0.35rem;
}
.track > .who { font: 400 0.8125rem/1.5 var(--mono); color: var(--dim); margin: 0 0 2rem; }
.track dl { margin: 0; }
.track dt {
  font: 400 1.125rem/1.25 var(--display); text-transform: uppercase; letter-spacing: 0.01em;
  padding-top: 1.25rem; margin-top: 1.25rem; border-top: 1px solid var(--hair);
}
.track dl > dt:first-of-type { padding-top: 0; margin-top: 0; border-top: 0; }
.track dd { margin: 0.5rem 0 0; color: var(--dim); font-size: 0.9375rem; max-width: 38ch; }

/* ---------- forms ------------------------------------------------------
   D's ground is near-black, so every control needs its own colours. The paper
   directions got this wrong once and shipped an invisible ink-on-ink form. */
form { max-width: 40rem; }
.field { margin-bottom: 1.5rem; }
label {
  display: block; font: 500 0.6875rem/1 var(--mono); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 0.6rem;
}
input, textarea, select {
  width: 100%; font: 400 1rem/1.5 var(--body); color: var(--paper);
  background: var(--raise); border: 1px solid var(--hair);
  padding: 0.85rem 1rem; border-radius: 0; appearance: none;
}
input::placeholder, textarea::placeholder { color: #6B6577; }
input:focus, textarea:focus, select:focus {
  outline: 0; border-color: var(--hot); box-shadow: 0 0 0 1px var(--hot);
}
textarea { resize: vertical; min-height: 8rem; }
select { background-image: none; }
button {
  font: 400 0.9375rem/1 var(--display); letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--hot); color: var(--ground); border: 0; padding: 1.15rem 2.25rem;
  cursor: pointer;
}
button:hover, button:focus-visible { background: var(--paper); }
button[disabled] { opacity: 0.45; cursor: not-allowed; }
.formnote { font: 400 0.75rem/1.6 var(--mono); color: var(--dim); margin-top: 1rem; }
.status { margin-top: 1.25rem; font: 500 0.9375rem/1.5 var(--body); }
.status.ok { color: var(--hot); }
.status.err { color: #FF9E96; }
/* honeypot — a bot fills it, a human never sees it */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* inner pages have no full-bleed hero, so they need their own top spacing */
/* The masthead must sit at the same height as it does on the home page, where .bar is
   absolutely positioned inside the hero with 1.5rem of padding. Giving .page a large top
   padding pushed the logo down and left a dead band above it on the inner pages. */
.page { position: relative; padding-block: 0; }
.page .bar { position: static; padding-block: 1.5rem clamp(3rem, 7vw, 5rem); }
.page h1 {
  font: 400 clamp(2.5rem, 1rem + 7vw, 6rem)/0.9 var(--display);
  text-transform: uppercase; margin: 0 0 1.25rem; max-width: 16ch;
}
.page h1 em { font-style: normal; color: var(--hot); }

:focus-visible { outline: 2px solid var(--hot); outline-offset: 3px; }

@media (max-width: 34rem) {
  .figures { grid-template-columns: 1fr; }
  .fig { padding: 1.1rem 0; }
  .fig + .fig { border-left: 0; padding-left: 0; border-top: 1px solid var(--hair); }
  .bar { flex-wrap: wrap; gap: 0.75rem 1rem; }
  nav { gap: 1rem; }
  nav a { font-size: 0.6875rem; letter-spacing: 0.08em; }
}

@media (prefers-reduced-motion: reduce) {
  .col, .ticker ul { animation: none; }
  .ticker ul { width: auto; flex-wrap: wrap; gap: 1rem 2.5rem; }
  .act img { transition: none; }
}
