:root {
  color-scheme: dark;
  --bg: #08090e;
  --ink: #fff7e8;
  --muted: #c8bdab;
  --line: rgba(255, 247, 232, 0.16);
  --coral: #ff7b6e;
  --gold: #ffe06b;
  --cream: #fff1c6;
  --aqua: #64dfcf;
  --blue: #a998ff;
  --rose: #ffb3c7;
  --panel: #141824;
  --shadow: 0 36px 100px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(180deg, #090a11 0%, var(--bg) 48%, #0b0d13 100%);
  background-size: 72px 72px, 72px 72px, auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,90,77,0.16), transparent 28%, transparent 72%, rgba(255,212,71,0.13)),
    repeating-linear-gradient(90deg, transparent 0 110px, rgba(255,255,255,0.025) 110px 112px);
  z-index: -1;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header,
.hero,
.marquee,
.playbook,
.studio,
.offers,
.contact,
footer {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  z-index: 10;
}

.brand,
.nav,
.actions,
.marquee,
footer {
  display: flex;
  align-items: center;
}

.brand {
  min-height: 44px;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 44% 56% 52% 48%;
  background: var(--rose);
  color: #131017;
  box-shadow: 8px 7px 0 var(--gold);
  transform: rotate(-5deg);
}

.nav {
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(18px);
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: rgba(255,255,255,0.08);
  outline: none;
}

.hero {
  min-height: clamp(720px, calc(100svh - 78px), 920px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: 28px 0 64px;
  position: relative;
  overflow: clip;
}

.wordmark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  z-index: -1;
  width: 100%;
  overflow: hidden;
  color: rgba(255,247,232,0.026);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(10rem, 28vw, 29rem);
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: 0;
}

.eyebrow,
.section-kicker,
.tile span,
.offer-list span,
.receipts span {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", "DM Sans", sans-serif;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(5.6rem, 14vw, 14rem);
  line-height: 0.76;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 7.6rem);
  line-height: 0.85;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.2vw, 2.45rem);
  line-height: 0.96;
}

.lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.55;
}

.actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: var(--gold);
  color: #111016;
  box-shadow: 0 16px 42px rgba(255,212,71,0.2);
}

.button.secondary {
  background: rgba(255,255,255,0.065);
}

.play-scene {
  position: relative;
  min-height: 560px;
  isolation: isolate;
  border-radius: 8px;
}

.scene-shot {
  position: absolute;
  inset: 22% 8% auto auto;
  width: min(56%, 360px);
  padding: 9px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  background: rgba(9,10,17,0.78);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  opacity: 0.86;
}

.scene-shot img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.shape {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.2);
}

.shape-red {
  left: 0;
  top: 9%;
  width: 46%;
  height: 42%;
  border-radius: 8px 70px 8px 54px;
  background: var(--rose);
  transform: rotate(-6deg);
}

.shape-yellow {
  right: -3%;
  top: 3%;
  width: 31%;
  height: 31%;
  border-radius: 999px 999px 8px 999px;
  background: var(--gold);
}

.shape-aqua {
  left: 11%;
  bottom: 9%;
  width: 28%;
  height: 22%;
  border-radius: 46px 8px 58px 8px;
  background: var(--aqua);
  opacity: 0.92;
}

.scene-card {
  position: absolute;
  z-index: 2;
  width: min(42%, 230px);
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  box-shadow: 12px 14px 0 rgba(0,0,0,0.18);
}

.scene-card span {
  color: #171016;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scene-card strong {
  color: #171016;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 0.92;
}

.scene-card-a {
  left: 0;
  top: 34%;
  background: var(--cream);
  transform: rotate(-2deg);
}

.scene-card-b {
  left: 14%;
  top: 3%;
  background: var(--gold);
  transform: rotate(3deg);
}

.scene-card-c {
  right: 2%;
  bottom: 2%;
  background: var(--aqua);
  transform: rotate(1deg);
}

.marquee {
  min-height: 68px;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  font-weight: 800;
}

.playbook {
  padding: clamp(84px, 12vw, 156px) 0;
}

.playbook-head {
  max-width: 980px;
  margin-bottom: 38px;
}

.playbook-board {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 12px;
}

.tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3.5vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.18);
}

.tile-large {
  grid-row: span 2;
  background:
    linear-gradient(145deg, rgba(255,179,199,0.22), transparent 45%),
    #151824;
}

.tile-coral {
  background: var(--coral);
  color: #130f14;
}

.tile-cream {
  background: var(--cream);
  color: #151017;
}

.tile-dark {
  background:
    linear-gradient(135deg, rgba(100,223,207,0.16), transparent 45%),
    #141824;
}

.tile p,
.studio-copy p,
.offer-list p {
  color: color-mix(in srgb, currentColor 74%, transparent);
  line-height: 1.55;
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: end;
  padding: clamp(82px, 10vw, 142px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.studio-copy p {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.16rem;
}

.receipts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.receipts div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.055);
}

.receipts strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.9;
}

.receipts small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.offers {
  padding: clamp(80px, 11vw, 150px) 0;
}

.offers h2 {
  max-width: 980px;
  margin-bottom: 36px;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.offer-list article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
}

.offer-list article:nth-child(2) {
  background: linear-gradient(145deg, rgba(255,224,107,0.24), rgba(255,179,199,0.13)), #171823;
}

.contact {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 28px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.contact h2 {
  max-width: 880px;
}

footer {
  min-height: 88px;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0 8px;
  }

  .hero,
  .studio,
  .contact,
  .offer-list,
  .playbook-board {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .play-scene {
    min-height: 500px;
  }

  .scene-shot {
    width: min(84%, 470px);
  }

  .tile-large {
    grid-row: auto;
  }

  .marquee {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .marquee,
  .playbook,
  .studio,
  .offers,
  .contact,
  footer {
    width: min(100% - 28px, 1220px);
  }

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

  .nav a {
    flex: 1;
    justify-content: center;
    padding-inline: 8px;
  }

  h1 {
    font-size: clamp(4.8rem, 22vw, 7.2rem);
  }

  .button {
    width: 100%;
  }

  .play-scene {
    min-height: 470px;
  }

  .scene-shot {
    inset: 24% 0 auto auto;
    width: 92%;
  }

  .scene-card {
    width: 44%;
    min-height: 104px;
    padding: 12px;
  }

  .scene-card-a {
    left: 0;
    top: 5%;
  }

  .scene-card-b {
    left: 49%;
    top: 0;
  }

  .scene-card-c {
    right: 4%;
    bottom: 1%;
  }

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