@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --ink: #0b0b0b;
  --paper: #f7f1e6;
  --white: #fffdf8;
  --blue: #1a55ff;
  --pink: #ff4f87;
  --acid: #c8ff3d;
  --yellow: #ffd73b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.topbar {
  position: relative;
  z-index: 20;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3.5vw;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font: 1.15rem "Archivo Black", sans-serif;
  text-decoration: none;
}
.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 2px solid var(--ink);
  object-fit: cover;
}
nav { display: flex; gap: 34px; }
nav a, .tiktok-link {
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tiktok-link {
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
}
.x-link {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font: .85rem "Archivo Black", sans-serif;
  text-decoration: none;
}
.ca-status {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: .68rem;
  font-weight: 800;
}
.ca-status b {
  color: var(--pink);
  font-family: "Archivo Black", sans-serif;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: white;
  background: #c58c4e;
}
.hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: .82fr 1.18fr .82fr;
  background: #f7f1e6;
}
.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: 2px solid rgba(11,11,11,.72);
}
.hero-collage img:first-child { object-position: 50% 20%; }
.hero-collage img:nth-child(2) { object-position: 50% 48%; }
.hero-collage img:last-child {
  border-right: 0;
  object-position: 48% 28%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.72));
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(48px, 7vh, 84px) 3.5vw;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kicker span { color: var(--acid); }
.kicker.dark span { color: var(--pink); }
h1, h2 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: 0;
  line-height: .87;
  text-transform: uppercase;
}
h1 {
  max-width: 1500px;
  font-size: clamp(6rem, 11.5vw, 13rem);
}
.hero-line {
  max-width: 820px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}
.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 3.5vw;
  bottom: clamp(48px, 7vh, 84px);
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 2px solid white;
  font-size: .75rem;
  font-weight: 800;
  text-decoration: none;
}
.hero-scroll span { font-size: 1.4rem; }

@media (min-width: 1500px) {
  .hero-copy {
    padding-right: 18vw;
  }
  .hero-line {
    padding-right: 24px;
  }
}

.marquee {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--acid);
}
.marquee div {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 28px;
  padding: 15px 0;
  animation: ticker 26s linear infinite;
}
.marquee span {
  font: 1rem "Archivo Black", sans-serif;
  white-space: nowrap;
}
.marquee b { color: var(--pink); }
@keyframes ticker { to { transform: translateX(-50%); } }

.campaign {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 2px solid var(--ink);
}
.section-index {
  padding: 70px 26px;
  border-right: 2px solid var(--ink);
}
.section-index span {
  font: 2.4rem "Archivo Black", sans-serif;
}
.section-index p {
  margin: 10px 0 0;
  font-size: .68rem;
  font-weight: 800;
  writing-mode: vertical-rl;
}
.campaign-body { min-width: 0; padding: 90px 6vw; }
.story-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 8vw;
}
.story-grid h2, .bot-grid h2, .final-cta h2 {
  max-width: 950px;
  font-size: clamp(3rem, 7vw, 7rem);
}
.story-copy { padding-top: 52px; }
.story-copy p {
  margin: 0 0 22px;
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.6;
}
.story-copy .lead {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
}
.text-link {
  display: inline-flex;
  gap: 30px;
  margin-top: 22px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ink);
  font-size: .75rem;
  font-weight: 800;
  text-decoration: none;
}

.real-gumbus {
  padding: 90px 3.5vw 100px;
  border-bottom: 2px solid var(--ink);
  background: var(--yellow);
}
.real-gumbus-copy {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: end;
  gap: 5vw;
  margin-bottom: 48px;
}
.real-gumbus-copy .kicker { align-self: start; }
.real-gumbus-copy h2 {
  font-size: clamp(3rem, 7vw, 7rem);
}
.real-gumbus-copy > p:last-child {
  max-width: 300px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.45;
}
.photo-strip {
  display: grid;
  grid-template-columns: .8fr 1.25fr .8fr;
  align-items: end;
  gap: 18px;
}
.photo-strip figure {
  height: 430px;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.photo-strip .photo-tall { height: 520px; }
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-section {
  padding: 80px 3.5vw 100px;
  color: var(--paper);
  background: var(--blue);
}
.studio-heading {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 4vw;
  margin-bottom: 55px;
}
.section-index.light {
  padding: 0 22px 0 0;
  border-right-color: rgba(255,255,255,.5);
}
.studio-heading h2 { font-size: clamp(3rem, 8vw, 8rem); }
.studio {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
}
.preview-wrap {
  position: relative;
  min-width: 0;
  padding: clamp(18px, 4vw, 55px);
  border-right: 2px solid var(--ink);
  background: #161616;
}
.preview-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  color: var(--paper);
  background: var(--ink);
  font-size: .65rem;
  font-weight: 800;
}
#gumbus-canvas {
  display: block;
  width: min(100%, 680px);
  aspect-ratio: 1;
  margin: auto;
  border: 2px solid var(--ink);
  background: white;
}
.controls { display: flex; flex-direction: column; }
.control-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  border-bottom: 2px solid var(--ink);
  font-size: .75rem;
  font-weight: 800;
}
.control-head button {
  border: 0;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.controls label {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid #bdb8ae;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.controls select {
  width: 100%;
  padding: 11px 34px 11px 12px;
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font: 600 .85rem "DM Sans", sans-serif;
}
.download {
  min-height: 82px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  border: 0;
  color: var(--paper);
  background: var(--pink);
  font: 1rem "Archivo Black", sans-serif;
  cursor: pointer;
}
.download span { font-size: 1.8rem; }
.download:hover { background: var(--acid); color: var(--ink); }

.bot-grid {
  display: grid;
  grid-template-columns: 140px 1fr 150px;
  align-items: center;
  gap: 5vw;
}
.bot-grid > div:nth-child(2) > p:last-child {
  max-width: 700px;
  font-size: 1.08rem;
  line-height: 1.6;
}
.bot-status {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  text-align: center;
  font: .8rem "Archivo Black", sans-serif;
}
.bot-status i {
  width: 20px;
  height: 20px;
  margin: auto;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 8px rgba(255,79,135,.25);
}
.round-link {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font: .85rem "Archivo Black", sans-serif;
  text-decoration: none;
  text-align: center;
}
.round-link b { font-size: 1.5rem; }

.promise {
  padding: 80px 5vw 100px;
  color: var(--paper);
  background: var(--ink);
}
.promise-index {
  margin-bottom: 80px;
  color: #8e8a83;
  font-size: .7rem;
  font-weight: 800;
}
.promise-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: end;
  gap: 7vw;
}
.promise-grid > * { min-width: 0; }
.hundred {
  max-width: 100%;
  font: clamp(7rem, 22vw, 20rem)/.72 "Archivo Black", sans-serif;
  color: var(--acid);
}
.hundred span { color: var(--pink); font-size: .35em; }
.promise h2 { font-size: clamp(3rem, 7vw, 7.5rem); }
.promise-grid p {
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.support-link {
  display: inline-flex;
  margin-top: 24px;
  padding: 14px 18px;
  border: 2px solid var(--paper);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.support-link:hover {
  color: var(--ink);
  background: var(--paper);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 100px 5vw;
}
.final-cta .kicker { grid-column: 1 / -1; }
.final-cta a {
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font: .8rem "Archivo Black", sans-serif;
  text-decoration: none;
  text-align: center;
}

footer {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 3.5vw;
  border-top: 2px solid var(--ink);
}
footer p { color: #555; font-size: .78rem; }
footer > div { justify-self: end; display: flex; gap: 22px; }
footer > div a { font-size: .75rem; font-weight: 800; text-decoration: none; }

@media (max-width: 820px) {
  .topbar { grid-template-columns: 1fr auto; height: 64px; }
  nav { display: none; }
  .nav-actions { gap: 5px; }
  .tiktok-link { padding: 10px; font-size: .62rem; }
  .x-link { width: 36px; height: 36px; flex-basis: 36px; }
  .ca-status { min-height: 36px; padding: 0 8px; font-size: .59rem; }
  .hero { min-height: 76vh; }
  .hero-collage {
    grid-template-columns: 1fr;
  }
  .hero-collage img {
    display: none;
    border: 0;
  }
  .hero-collage img:nth-child(2) {
    display: block;
    object-position: 50% 48%;
  }
  .hero-copy { padding-bottom: 90px; }
  h1 { font-size: clamp(4rem, 23vw, 8rem); }
  .hero-scroll { left: 3.5vw; right: auto; bottom: 34px; }
  .campaign { grid-template-columns: 62px minmax(0, 1fr); }
  .section-index { padding: 45px 12px; }
  .section-index span { font-size: 1.3rem; }
  .campaign-body { padding: 60px 7vw; }
  .bot-grid .kicker { max-width: 220px; }
  .story-grid { grid-template-columns: 1fr; gap: 20px; }
  .story-copy { padding-top: 0; }
  .story-grid h2, .bot-grid h2, .final-cta h2 { font-size: clamp(2.7rem, 12vw, 5rem); }
  .bot-grid h2 { font-size: 10vw; }
  .studio-section { padding: 60px 16px; }
  .real-gumbus { padding: 60px 16px; }
  .real-gumbus-copy { grid-template-columns: 1fr; gap: 20px; }
  .real-gumbus-copy h2 { font-size: clamp(2.8rem, 13vw, 5rem); }
  .photo-strip {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 10px;
  }
  .photo-strip figure,
  .photo-strip .photo-tall { height: 270px; }
  .photo-strip figure:nth-child(2) { grid-column: 1 / -1; grid-row: 1; height: 340px; }
  .studio-heading { grid-template-columns: 55px 1fr; }
  .studio-heading h2 { font-size: clamp(2.8rem, 13vw, 5rem); }
  .studio { grid-template-columns: 1fr; }
  .preview-wrap { border-right: 0; border-bottom: 2px solid var(--ink); }
  .controls label { min-height: 72px; }
  .download { min-height: 74px; }
  .bot-grid { grid-template-columns: 1fr; }
  .bot-status, .round-link { width: 110px; }
  .promise { padding: 60px 20px 75px; }
  .promise-index { margin-bottom: 55px; }
  .promise-grid { grid-template-columns: 1fr; }
  .hundred { font-size: 30vw; }
  .promise h2 { font-size: 12vw; }
  .final-cta { grid-template-columns: 1fr; padding: 70px 20px; }
  footer { grid-template-columns: 1fr; gap: 20px; }
  footer > div { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee div { animation: none; }
}
