/* ---- tokens ---- */
:root {
  color-scheme: dark;

  --ink:      #060607;
  --panel:    #0c0c0f;
  --panel-2:  #111116;
  --red:      #c00000;
  --red-lit:  #e5100d;
  --blue:     #1e4fb0;
  --text:     #ecebe9;
  --muted:    #8e8b89;
  --line:     rgba(255,255,255,.10);
  --line-2:   rgba(255,255,255,.20);

  --display: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Narrow Bold", "Arial Black", sans-serif;
  --body: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --mono: Consolas, "SF Mono", Menlo, "DejaVu Sans Mono", monospace;

  --pad: clamp(20px, 5vw, 64px);
  --bandpad: clamp(48px, 5.6vw, 90px);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(15px, .55vw + 13.4px, 17px);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ol, ul, figure { margin: 0; }
ol, ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

.skip {
  position: fixed; left: 12px; top: -60px; z-index: 99;
  background: var(--red); color: #fff; padding: 10px 16px; font-weight: 700;
  transition: top .18s;
}
.skip:focus { top: 12px; }

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

/* ---- shared type ---- */
.wrap { width: min(1180px, 100%); margin: 0 auto; padding: 0 var(--pad); }

section[id] { scroll-margin-top: 86px; }

.eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .94;
  letter-spacing: .012em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ---- background webs ---- */
.web {
  position: absolute; height: auto;
  color: rgba(255,255,255,.55); pointer-events: none;
}
.web--hero {
  inset: -36px -36px auto auto; z-index: -1;
  width: min(56vw, 660px); transform: scaleX(-1); opacity: .16;
}
.web--br {
  inset: auto 0 0 auto; transform: rotate(180deg);
  width: min(40vw, 420px); opacity: .09;
}

/* ---- topbar ---- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.topbar.is-stuck {
  background: rgba(6,6,7,.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.topbar__in {
  width: min(1180px, 100%); margin: 0 auto; padding: 0 var(--pad);
  height: 68px; display: flex; align-items: center; gap: 28px;
}

.mark { display: flex; align-items: center; gap: 10px; }
.mark__text {
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--text);
}
.mark__text b { color: var(--red-lit); font-weight: 700; }

.nav { margin-left: auto; display: flex; gap: 26px; }
.nav a {
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; padding: 6px 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--red-lit); transition: right .22s;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { right: 0; }

.gh {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border: 1px solid var(--line-2);
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  color: var(--text); transition: border-color .2s, background .2s, color .2s;
}
.gh:hover { border-color: var(--red-lit); background: rgba(229,16,13,.1); }

/* ---- hero ---- */
.hero { position: relative; min-height: 100svh; display: flex; isolation: isolate; overflow: hidden; }
.hero__art { position: absolute; inset: 0; z-index: -2; background: #000; }

.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.6s ease-in-out;
}
.hero__slide.is-on { opacity: 1; }

.hero__slide--a { background-image: url("wallpaper.jpg");  background-position: 8% center; }
.hero__slide--b { background-image: url("wallpaper2.jpg"); background-position: 10% center; }
.hero__slide--c { background-image: url("wallpaper3.jpg"); background-position: center; transform: scaleX(-1); }
.hero__slide--d { background-image: url("wallpaper4.jpg"); background-position: 100% center; }

.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(6,6,7,.62) 0%, rgba(6,6,7,.12) 26%, rgba(6,6,7,.72) 52%, var(--ink) 74%),
    linear-gradient(180deg, rgba(6,6,7,.85) 0%, transparent 22%, transparent 54%, var(--ink) 93%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .05;
  background-image: radial-gradient(rgba(255,255,255,.9) 1px, transparent 1px);
  background-size: 4px 4px;
}

.hero__in {
  width: min(1180px, 100%); margin: 0 auto; padding: 118px var(--pad) 96px;
  display: flex; align-items: center;
}
.hero__copy { margin-left: auto; width: min(560px, 100%); }

.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(74px, 15vw, 178px); line-height: .82;
  text-transform: uppercase; letter-spacing: .01em;
  margin: 14px 0 22px; text-wrap: balance;
}
.hero__title span { display: block; }
.hero__title .hot { color: var(--red-lit); }

.lead { font-size: clamp(16px, .5vw + 14.6px, 18.5px); color: #cfcdcb; max-width: 46ch; }

.cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; font-family: var(--body); font-weight: 700;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid transparent; transition: background .2s, border-color .2s, color .2s, transform .12s;
}
.btn:active { transform: translateY(1px); }
.btn--go { background: var(--red); color: #fff; }
.btn--go:hover { background: var(--red-lit); }
.btn--ghost { border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); }

.fine { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }

.hero__rule {
  position: absolute; left: 0; right: 0; bottom: 0; display: flex;
  align-items: center; justify-content: center;
}
.hero__rule::before, .hero__rule::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2));
}
.hero__rule::after { background: linear-gradient(270deg, transparent, var(--line-2)); }
.hero__rule img { margin: 0 18px; transform: translateY(50%); opacity: .9; }

/* ---- bands ---- */
.band { position: relative; padding: var(--bandpad) 0; z-index: 1; }
.band--tight { padding-top: clamp(40px, 5vw, 70px); }

.bandhead { margin-bottom: clamp(26px, 3vw, 44px); }
.thread { display: block; }
.thread i {
  display: block; width: 1px; height: clamp(28px, 3.4vw, 48px); margin-left: 8px;
  background: linear-gradient(transparent, var(--line-2));
}
.thread img { opacity: .95; }
.bandhead .eyebrow { margin-top: 12px; }

/* ---- what breaks ---- */
.breaks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.breaks li { background: var(--ink); padding: 34px clamp(20px, 2.4vw, 34px) 40px; position: relative; }
.breaks__n {
  font-family: var(--display); font-size: 52px; line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(229,16,13,.55); display: block; margin-bottom: 16px;
}
.breaks h3 { font-size: 19px; letter-spacing: .01em; margin-bottom: 8px; }
.breaks p { color: var(--muted); font-size: 15px; }

/* ---- panels ---- */
.panels {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px;
  background: var(--line); border: 1px solid var(--line);
}
.panel {
  grid-column: span 2; background: var(--panel);
  padding: 30px clamp(20px, 2vw, 30px) 34px; position: relative;
  transition: background .25s;
}
.panel--w { grid-column: span 3; }
.panel::after {
  content: ""; position: absolute; inset: 0 auto auto 0; height: 2px; width: 0;
  background: var(--red-lit); transition: width .3s cubic-bezier(.2,.7,.3,1);
}
.panel:hover { background: var(--panel-2); }
.panel:hover::after { width: 100%; }

.panel h3 {
  font-size: clamp(19px, 1.2vw, 23px); line-height: 1.24; margin-bottom: 12px; letter-spacing: .005em;
}
.panel p { color: #b3b0ae; font-size: 15px; }
.panel .panel__tag {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red-lit); font-weight: 700; margin-bottom: 14px;
}

/* ---- borderless spotlight ---- */
.spot { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.spot__copy p { color: #b6b3b1; margin-top: 16px; max-width: 48ch; }
.spot__copy .bandhead { margin-bottom: 26px; }

.spot__fig { border: 1px solid var(--line); background: var(--panel); padding: clamp(18px, 2.4vw, 34px); }
.dg-frame { fill: #17171c; stroke: var(--line-2); stroke-width: 1; }
.dg-bar { fill: #2a2a33; }
.dg-dot { fill: #6d6d78; }
.dg-fill { fill: #7d1512; }
.dg-hot { fill: var(--red); }
.dg-arrow { stroke: var(--muted); stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.dg-cap {
  fill: var(--muted); font-family: var(--body); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; text-anchor: middle; font-weight: 600;
}
.dg-cap--hot { fill: var(--text); }

/* ---- will not do ---- */
.wont { border-top: 1px solid var(--line); }
.wont li {
  padding: 22px 0 22px 44px; border-bottom: 1px solid var(--line);
  color: var(--muted); font-size: 15.5px; position: relative;
}
.wont li::before {
  content: ""; position: absolute; left: 6px; top: 30px;
  width: 18px; height: 2px; background: var(--red-lit); transform: rotate(-45deg);
}
.wont b { color: var(--text); font-weight: 700; letter-spacing: .01em; }

/* ---- faq ---- */
.faq { border-top: 1px solid var(--line); max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-size: clamp(16px, .5vw + 14.6px, 18px); font-weight: 600; letter-spacing: .005em;
  transition: color .18s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red-lit); }
.faq summary::before, .faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; background: var(--red-lit);
  transition: transform .25s, opacity .25s;
}
.faq summary::before { width: 15px; height: 2px; margin-top: -1px; }
.faq summary::after { width: 2px; height: 15px; margin-top: -7.5px; margin-right: 6.5px; }
.faq details[open] summary::after { transform: rotate(90deg); opacity: 0; }
.faq details[open] summary { color: var(--red-lit); }
.faq__a { padding: 0 44px 26px 0; }
.faq__a p { color: var(--muted); font-size: 15.5px; }
.faq__a p + p { margin-top: 12px; }
.faq__a .faq__code {
  font-family: var(--mono); font-size: 13.5px; color: #cfcdcb;
  background: var(--panel); border-left: 2px solid var(--red);
  padding: 12px 14px; margin-top: 14px;
  overflow-x: auto; white-space: nowrap;
}

/* ---- footer ---- */
.foot { position: relative; overflow: hidden; border-top: 1px solid var(--line); padding: clamp(44px, 6vw, 78px) 0 clamp(36px, 4vw, 56px); }
.foot__in { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px, 4vw, 56px); align-items: center; }
.foot__brand { display: flex; align-items: center; gap: 12px; }
.foot__brand p { font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.foot__legal { color: var(--muted); font-size: 12.5px; max-width: 56ch; line-height: 1.7; }
.foot__gh {
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  border-bottom: 1px solid var(--line-2); padding-bottom: 3px; white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.foot__gh:hover { color: var(--red-lit); border-color: var(--red-lit); }

/* ---- reveal ---- */
.rv { opacity: 0; transform: translateY(14px); }
.rv.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }

/* ---- responsive ---- */
@media (max-width: 1000px) {
  .breaks { grid-template-columns: 1fr; }
  .panels { grid-template-columns: repeat(2, 1fr); }
  .panel, .panel--w { grid-column: span 1; }
  .spot { grid-template-columns: 1fr; }
  .spot__fig { order: -1; }
}

@media (max-width: 780px) {
  .nav { display: none; }
  .gh { margin-left: auto; }
  .hero__slide--a { background-position: 26% center; }
  .hero__slide--b { background-position: 22% center; }
  .hero__slide--c { background-position: 71% center; }
  .hero__slide--d { background-position: 42% center; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(6,6,7,.8) 0%, rgba(6,6,7,.25) 26%, rgba(6,6,7,.86) 62%, var(--ink) 92%);
  }
  .hero__in { align-items: flex-end; padding-top: 140px; }
  .hero__copy { margin-left: 0; }
  .panels { grid-template-columns: 1fr; }
  .foot__in { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 460px) {
  .mark__text { display: none; }
  .btn { flex: 1; padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__slide { transition: none; }
  .rv, .rv.in { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
