:root {
  color-scheme: dark;
  --ink: #070908;
  --coal: #111312;
  --bone: #f2ead8;
  --paper: #d8d0bd;
  --muted: #9c998e;
  --blood: #e54535;
  --leaf: #3cbf67;
  --gold: #d7a642;
  --line: rgba(242, 234, 216, 0.17);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  letter-spacing: 0;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(242, 234, 216, 0.14);
  background: rgba(7, 9, 8, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  color: var(--leaf);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 18px;
}

.brand-copy,
.nav-links a,
.kicker,
.eyebrow,
.hero-stats dt,
.story-card span,
.heat-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--bone);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 9, 8, 0.2), rgba(7, 9, 8, 0.86)),
    url("./assets/frames/frame-0275.jpg") center 34% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.8), rgba(7, 9, 8, 0.15) 56%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 5px
    );
  mix-blend-mode: normal;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 28vh;
  background: linear-gradient(180deg, transparent, var(--ink));
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 48px;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 16px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(70px, 16vw, 184px);
  line-height: 0.82;
}

.lede {
  max-width: 720px;
  color: rgba(242, 234, 216, 0.88);
  font-size: clamp(22px, 4.2vw, 48px);
  font-weight: 850;
  line-height: 1;
}

.lede span {
  color: var(--leaf);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 18px;
  cursor: pointer;
  color: var(--bone);
  background: rgba(7, 9, 8, 0.76);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 234, 216, 0.45);
}

.button.primary {
  border-color: transparent;
  background: var(--blood);
  color: #fff7ef;
}

.button.ghost {
  color: var(--bone);
}

.hero-stats {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 234, 216, 0.16);
  border-radius: 8px;
  background: rgba(242, 234, 216, 0.16);
}

.hero-stats div {
  padding: 16px;
  background: rgba(7, 9, 8, 0.82);
}

.hero-stats dt,
.hero-stats dd {
  margin: 0;
}

.hero-stats dd {
  margin-top: 4px;
  color: var(--bone);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 900;
}

.marquee {
  display: flex;
  gap: 8px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--blood);
  color: #fff5ed;
  white-space: nowrap;
}

.marquee span {
  padding: 12px 18px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(18px, 4vw, 42px);
}

.section,
.video-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 116px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.video-copy h2 {
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--bone);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 0.92;
}

.section-heading h2 {
  white-space: nowrap;
}

.section-copy p,
.section-heading p,
.video-copy p,
.story-card p,
.heat-grid p,
.playbook p {
  color: var(--paper);
  font-size: 17px;
  line-height: 1.55;
}

.quote-block {
  border-left: 8px solid var(--leaf);
  padding: 20px 0 20px 24px;
}

.quote-block p {
  margin-bottom: 18px;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 950;
  line-height: 0.98;
}

.copy-line,
.caption-bank button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  cursor: pointer;
  color: var(--bone);
  background: transparent;
}

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

.story-card,
.heat-grid article,
.asset-card,
.playbook div {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111512;
  box-shadow: var(--shadow);
}

.story-card img {
  width: 100%;
  aspect-ratio: 9 / 13;
  object-fit: cover;
}

.story-card div {
  padding: 18px;
}

.story-card h3,
.heat-grid h3 {
  margin: 7px 0 8px;
  font-size: 28px;
  line-height: 1;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.video-shell {
  border: 1px solid rgba(242, 234, 216, 0.22);
  border-radius: 8px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(242, 234, 216, 0.12), rgba(242, 234, 216, 0.02));
}

.video-shell video {
  width: min(100%, 520px);
  margin: 0 auto;
  max-height: 78vh;
  border-radius: 6px;
  background: #000;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--leaf);
  font-weight: 850;
}

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

.heat-grid article,
.playbook div {
  padding: 20px;
}

.operator {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1fr;
  gap: clamp(28px, 6vw, 80px);
}

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

.playbook strong {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 20px;
}

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

.asset-card {
  color: var(--bone);
}

.asset-card img {
  width: 100%;
  aspect-ratio: 9 / 13;
  object-fit: cover;
  transition: transform 220ms ease;
}

.asset-card:hover img {
  transform: scale(1.035);
}

.asset-card span {
  display: block;
  padding: 14px;
  color: var(--paper);
  font-weight: 800;
}

.caption-bank {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.caption-bank button {
  min-height: 62px;
  text-align: left;
}

.caption-bank button:hover,
.copy-line:hover {
  border-color: var(--leaf);
  background: rgba(60, 191, 103, 0.1);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  color: var(--bone);
  margin-right: 8px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--leaf);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  transform: translateY(18px);
  border: 1px solid rgba(242, 234, 216, 0.24);
  border-radius: 6px;
  padding: 12px 16px;
  opacity: 0;
  color: var(--bone);
  background: rgba(7, 9, 8, 0.92);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    min-height: 86vh;
    background-position: center top;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(7, 9, 8, 0.25), rgba(7, 9, 8, 0.92));
  }

  .hero-inner {
    padding-top: 150px;
  }

  .intro,
  .video-section,
  .operator {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    white-space: normal;
  }

  .story-grid,
  .heat-grid,
  .asset-grid,
  .caption-bank {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .brand {
    width: 100%;
    justify-content: space-between;
  }

  .brand-copy {
    display: none;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero-inner {
    width: min(100% - 28px, 1120px);
    padding-bottom: 34px;
  }

  h1 {
    font-size: 54px;
    line-height: 0.9;
  }

  .lede {
    font-size: 24px;
  }

  .hero-stats,
  .story-grid,
  .heat-grid,
  .asset-grid,
  .caption-bank,
  .playbook {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}
