:root {
  --cream: #eddec6;
  --cream-soft: #f8ebd7;
  --ink: #17130f;
  --pink: #ff8abd;
  --pink-deep: #f4519d;
  --paper: rgb(248 235 215 / 72%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--pink-deep); outline-offset: 4px; }

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--pink-deep);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.grain {
  pointer-events: none;
  position: fixed;
  z-index: 90;
  inset: 0;
  opacity: .15;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  padding: 24px 0;
  transform: translateX(-50%);
}

.site-header .brand {
  justify-self: start;
  font-size: 18px;
  letter-spacing: -.045em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgb(23 19 15 / 30%);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .25s ease;
}

.brand:hover .brand-mark { transform: rotate(-10deg) scale(1.06); }

.social-nav {
  display: flex;
  grid-column: 2;
  justify-self: center;
  gap: 8px;
}

.social-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  gap: 7px;
  border: 1px solid rgb(23 19 15 / 24%);
  border-radius: 999px;
  background: rgb(245 233 214 / 72%);
  color: var(--ink);
  padding: 0 15px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.social-nav a:hover { background: var(--ink); color: var(--pink); transform: translateY(-2px); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  width: min(1180px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 112px 0 70px;
}

.hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  top: -18rem;
  right: -22rem;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: rgb(255 151 196 / 42%);
  filter: blur(20px);
}

.hero::after {
  content: '';
  position: absolute;
  z-index: -2;
  bottom: -16rem;
  left: -28rem;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 42%);
  filter: blur(28px);
}

.intro-reveal { animation: intro-copy .85s cubic-bezier(.2,.75,.2,1) both; }
.intro-art { animation: intro-art .95s .08s cubic-bezier(.2,.75,.2,1) both; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  border: 1px solid rgb(23 19 15 / 24%);
  border-radius: 999px;
  background: rgb(255 255 255 / 25%);
  padding: 9px 13px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29c779;
  box-shadow: 0 0 0 5px rgb(41 199 121 / 17%);
  animation: pulse 2s ease-in-out infinite;
}

h1 {
  margin: 0;
  font-size: clamp(78px, 11.5vw, 168px);
  font-weight: 950;
  line-height: .72;
  letter-spacing: -.095em;
}

h1 span { display: block; }

.outline-word {
  color: var(--pink);
  -webkit-text-stroke: clamp(2px, .25vw, 4px) var(--ink);
  text-shadow: 8px 8px 0 var(--ink);
}

.hero-lede {
  max-width: 520px;
  margin: 38px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 560;
  line-height: 1.45;
  letter-spacing: -.025em;
}

.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; }

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  gap: 9px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--pink);
  padding: 0 23px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--pink-deep);
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-cta:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--pink-deep); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
}

.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateY(4px); }

.hero-art-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: .93;
  justify-self: end;
  perspective: 1100px;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform .12s linear;
}

.ape-cutout {
  position: absolute;
  z-index: 2;
  inset: -5% -4% -2% -1%;
  width: 105%;
  height: 108%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 19px rgb(95 44 58 / 18%));
  transform: translateZ(55px);
  user-select: none;
}

.ape-shadow {
  position: absolute;
  z-index: 1;
  right: 7%;
  bottom: 0;
  left: 11%;
  height: 7%;
  border-radius: 50%;
  background: rgb(23 19 15 / 18%);
  filter: blur(18px);
  transform: translateZ(-20px) scaleX(.9);
}

.marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--pink);
  padding: 17px 0;
  transform: rotate(-1.2deg) scale(1.02);
}

.marquee-track { display: flex; width: max-content; animation: marquee 24s linear infinite; }
.marquee-group { display: flex; flex-shrink: 0; }

.marquee span {
  padding-right: 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.section-pad { padding: clamp(100px, 12vw, 180px) max(20px, calc((100vw - 1180px) / 2)); }

.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 52px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}

.section-kicker > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.manifesto {
  background: radial-gradient(circle at 10% 15%, rgb(255 255 255 / 32%), transparent 25rem), var(--cream);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
  align-items: end;
  gap: clamp(40px, 8vw, 100px);
}

.manifesto h2,
.film-copy h2,
.buy-heading h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(58px, 8.7vw, 126px);
  font-weight: 950;
  line-height: .83;
  letter-spacing: -.075em;
}

.manifesto-copy { border-left: 2px solid var(--ink); padding-left: 28px; }
.manifesto-copy p { margin: 0; font-size: 17px; line-height: 1.55; letter-spacing: -.02em; }
.manifesto-copy p + p { margin-top: 24px; }

.identity-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 95px;
  border-block: 1px solid rgb(23 19 15 / 30%);
}

.identity-item { display: flex; flex-direction: column; gap: 13px; padding: 28px 28px 28px 0; }
.identity-item + .identity-item { border-left: 1px solid rgb(23 19 15 / 30%); padding-left: 28px; }
.identity-item span { font-size: 10px; font-weight: 900; letter-spacing: .16em; opacity: .55; }
.identity-item strong { font-size: clamp(22px, 3vw, 36px); letter-spacing: -.05em; }

.film-section {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  min-height: 100svh;
  background: radial-gradient(circle at 82% 40%, rgb(255 125 183 / 22%), transparent 30rem), var(--ink);
  color: #f9ead6;
}

.light-kicker, .film-copy h2 { color: var(--pink); }
.film-copy h2 { font-size: clamp(62px, 7.6vw, 112px); }

.film-copy > p {
  max-width: 440px;
  margin: 34px 0 0;
  color: rgb(249 234 214 / 72%);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
  letter-spacing: -.02em;
}

.film-stamp {
  display: inline-block;
  margin-top: 32px;
  border: 1px dashed var(--pink);
  border-radius: 999px;
  color: var(--pink);
  padding: 10px 15px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  transform: rotate(-2deg);
}

.video-stage {
  position: relative;
  perspective: 1200px;
  transform: rotateX(var(--soft-rx, 0deg)) rotateY(var(--soft-ry, 0deg));
  transform-style: preserve-3d;
  transition: transform .2s ease;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid #f9ead6;
  border-radius: 38px;
  background: var(--cream);
  box-shadow: 16px 18px 0 var(--pink-deep), 30px 33px 0 rgb(249 234 214 / 16%);
  transform: rotateY(-5deg) rotateX(2deg);
}

.video-frame::after {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 8px rgb(23 19 15 / 9%);
}

.video-frame video { width: 100%; height: 100%; object-fit: cover; }

.sound-toggle {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(249 234 214 / 35%);
  border-radius: 999px;
  background: rgb(23 19 15 / 76%);
  color: #f9ead6;
  padding: 11px 14px;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.sound-toggle:hover { background: var(--pink-deep); color: var(--ink); }

.floating-note {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 6px 7px 0 var(--pink-deep);
}

.note-one { top: -30px; right: -28px; animation: float-one 5s ease-in-out infinite; }
.note-two { bottom: -35px; left: -45px; animation: float-two 4.2s ease-in-out infinite; }

.buy-section { background: radial-gradient(circle at 90% 5%, rgb(255 138 189 / 32%), transparent 28rem), var(--cream); }

.buy-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 72px;
}

.buy-heading .section-kicker { align-self: flex-start; margin: 8px 0 0; }
.buy-heading h2 { text-align: right; }

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

.step-card {
  min-height: 325px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  padding: 26px;
  box-shadow: 7px 8px 0 var(--ink);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.step-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 10px 13px 0 var(--ink); }
.step-card:nth-child(2) { background: var(--pink); transform: rotate(-1deg); }
.step-card:nth-child(2):hover { transform: translateY(-8px) rotate(1deg); }

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 34px;
  border-bottom: 1px solid rgb(23 19 15 / 28%);
}

.step-top span { font-size: 12px; font-weight: 900; letter-spacing: .13em; }
.step-top b { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 19px; }
.step-card h3 { margin: 34px 0 14px; font-size: clamp(25px, 3vw, 37px); line-height: 1; letter-spacing: -.055em; }
.step-card p { margin: 0; font-size: 14px; line-height: 1.55; opacity: .7; }

.giant-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 75px;
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
  padding: 0 0 18px;
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.07em;
  text-decoration: none;
  transition: transform .25s ease;
}

.giant-cta:hover { transform: scale(1.012); }
.giant-cta span { color: var(--pink-deep); }

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--pink);
  padding: clamp(110px, 13vw, 180px) max(20px, calc((100vw - 1180px) / 2)) 30px;
}

.footer-orbit {
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(950px, 90vw);
  aspect-ratio: 1;
  border: 1px solid rgb(23 19 15 / 24%);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgb(23 19 15 / 5%), 0 0 0 160px rgb(23 19 15 / 4%);
  transform: translate(-50%, -50%);
}

.footer-inner { position: relative; z-index: 2; text-align: center; }

.footer-eyebrow {
  display: inline-block;
  margin-bottom: 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.site-footer h2 { font-size: clamp(72px, 12vw, 176px); }
.site-footer h2 em { color: var(--cream); font-style: normal; -webkit-text-stroke: 3px var(--ink); }

.footer-actions { display: flex; justify-content: center; gap: 12px; margin-top: 50px; }

.footer-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  box-shadow: 4px 5px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.footer-actions a:hover { background: var(--ink); color: var(--pink); box-shadow: none; transform: translate(3px, 4px); }

.footer-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 1.4fr) 1fr;
  align-items: end;
  gap: 30px;
  margin-top: 130px;
  padding-top: 25px;
  border-top: 1px solid rgb(23 19 15 / 35%);
}

.footer-bottom p { margin: 0; font-size: 11px; line-height: 1.5; text-align: center; opacity: .65; }
.footer-bottom > span { justify-self: end; font-size: 10px; font-weight: 900; letter-spacing: .1em; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@keyframes intro-copy { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes intro-art { from { opacity: 0; transform: translateY(28px) scale(.92); } to { opacity: 1; transform: none; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgb(41 199 121 / 8%); } }
@keyframes float-one { 0%,100% { transform: translateY(0) rotate(4deg); } 50% { transform: translateY(-12px) rotate(7deg); } }
@keyframes float-two { 0%,100% { transform: translateY(0) rotate(-7deg); } 50% { transform: translateY(10px) rotate(-3deg); } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-art-stage { justify-self: center; width: min(84vw, 520px); }
  .manifesto-grid, .film-section { grid-template-columns: 1fr; }
  .film-copy { max-width: 620px; }
  .video-stage { width: min(100%, 650px); justify-self: center; }
  .buy-heading { align-items: flex-start; flex-direction: column; }
  .buy-heading h2 { text-align: left; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 260px; }
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-bottom > span { justify-self: center; }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding-top: 16px;
  }
  .site-header .brand { justify-self: center; }
  .social-nav {
    grid-column: 1;
    flex-wrap: wrap;
    justify-content: center;
    justify-self: center;
    max-width: 285px;
  }
  .social-nav a { height: 34px; padding-inline: 11px; }
  .hero { width: min(100% - 28px, 1180px); min-height: auto; padding-top: 150px; }
  h1 { font-size: clamp(76px, 29vw, 118px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-art-stage { width: 88vw; margin: 20px 0 34px; }
  .section-pad { padding-inline: 20px; }
  .manifesto h2, .film-copy h2, .buy-heading h2 { font-size: clamp(54px, 17vw, 84px); }
  .manifesto-copy { padding-left: 20px; }
  .identity-strip { grid-template-columns: 1fr; margin-top: 65px; }
  .identity-item, .identity-item + .identity-item { border-left: 0; padding: 22px 0; }
  .identity-item + .identity-item { border-top: 1px solid rgb(23 19 15 / 30%); }
  .video-frame { border-radius: 24px; box-shadow: 10px 12px 0 var(--pink-deep); transform: none; }
  .floating-note { width: 72px; height: 72px; font-size: 10px; }
  .note-one { right: -12px; }
  .note-two { left: -10px; }
  .buy-heading { margin-bottom: 48px; }
  .giant-cta { align-items: flex-end; font-size: 44px; }
  .site-footer h2 { font-size: clamp(68px, 22vw, 110px); }
  .site-footer h2 em { -webkit-text-stroke-width: 2px; }
  .footer-actions { align-items: stretch; flex-direction: column; }
  .footer-bottom { margin-top: 90px; }
}

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