*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #F4F1E4;
  --line: rgba(10,10,10,0.07);
  --ink: #0A0A0A;
  --yellow: #FFCE26;
  --red: #FF2D2D;
  --pink: #FF31AF;
  --cyan: #20D2DE;
  --purple: #9B40FF;
  --white: #FFFFFF;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-lg: 9px 9px 0 var(--ink);
  --shadow-purple: 7px 7px 0 var(--purple);
  --bd: 3px solid var(--ink);
  --bd-thick: 4px solid var(--ink);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--cream);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 38px 38px;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__box {
  background: var(--white); border: var(--bd-thick);
  box-shadow: var(--shadow); padding: 1rem 1.5rem;
  font-family: 'Permanent Marker'; font-size: 1.8rem;
  animation: loadWiggle .6s var(--spring) infinite alternate;
}
@keyframes loadWiggle { from { transform: rotate(-3deg); } to { transform: rotate(3deg); } }

/* ============ DECOR ============ */
.float { position: absolute; pointer-events: none; z-index: 1; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--rot, 0deg)); }
}
@keyframes spinSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.2); }
  30% { transform: scale(1); }
}

.dots-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px;
}
.dots-grid span {
  width: 9px; height: 9px; border-radius: 50%; background: var(--ink); display: block;
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.1rem;
  background: var(--cream);
  border-bottom: var(--bd-thick);
}
.nav__logo {
  font-family: 'Permanent Marker'; font-size: 1.5rem; line-height: 1;
  display: flex; align-items: baseline;
}
.nav__logo .r1 { font-family: 'Baloo 2'; font-weight: 800; color: var(--cyan); -webkit-text-stroke: 1.5px var(--ink); }
.nav__logo .r2 { font-family: 'Baloo 2'; font-weight: 800; color: var(--pink); -webkit-text-stroke: 1.5px var(--ink); }

.btn {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  border: var(--bd); background: var(--yellow); color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: .6rem 1.1rem; font-size: .82rem; cursor: pointer;
  transition: transform .1s ease, box-shadow .1s ease;
  text-transform: uppercase; letter-spacing: .3px; white-space: nowrap;
}
.btn:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(4px,4px); box-shadow: 0 0 0 var(--ink); }
.btn--pink { background: var(--pink); color: var(--white); }
.btn--cyan { background: var(--cyan); }
.btn--red { background: var(--red); color: var(--white); }

/* ============ HERO ============ */
.hero {
  position: relative; z-index: 2;
  padding: 2.5rem 1.1rem 3rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  overflow: hidden;
}
.hero__tagsticker {
  background: var(--yellow); border: var(--bd); box-shadow: var(--shadow);
  padding: .5rem 1rem; font-weight: 700; font-size: .9rem;
  text-transform: uppercase; letter-spacing: .5px; line-height: 1.2;
  transform: rotate(-3deg); margin-bottom: 1.6rem;
  opacity: 0; animation: popIn .6s var(--spring) .3s forwards;
}

.hero__mark {
  position: relative;
  background: var(--white); border: var(--bd-thick);
  box-shadow: var(--shadow-purple);
  padding: 1.4rem 1.6rem; margin-bottom: .4rem;
  transform: rotate(-1.5deg);
  opacity: 0; animation: popIn .7s var(--spring) .45s forwards;
}
.hero__mark-text {
  font-family: 'Permanent Marker';
  font-size: clamp(3rem, 16vw, 5.5rem); line-height: .9;
  display: flex; align-items: baseline; justify-content: center;
}
.hero__mark-text .r1 {
  font-family: 'Baloo 2'; font-weight: 800; color: var(--cyan);
  -webkit-text-stroke: 2.5px var(--ink); font-size: .82em;
}
.hero__mark-text .r2 {
  font-family: 'Baloo 2'; font-weight: 800; color: var(--pink);
  -webkit-text-stroke: 2.5px var(--ink); font-size: .82em;
}
.hero__burst {
  position: absolute; top: -34px; right: -26px;
  width: 86px; height: 86px;
  animation: spinSlow 18s linear infinite;
}
.hero__burst .heart { transform-origin: center; animation: heartBeat 1.6s ease-in-out infinite; }

.hero__headline {
  font-family: 'Archivo Black'; font-size: clamp(1.7rem, 7vw, 2.6rem);
  line-height: 1.05; text-transform: uppercase; max-width: 620px;
  margin: 1.8rem 0 .9rem;
  opacity: 0; animation: popIn .6s var(--spring) .65s forwards;
}
.hero__headline .hl { position: relative; white-space: nowrap; }
.hero__headline .hl-pink { color: var(--pink); }
.hero__headline .hl-cyan { color: var(--cyan); -webkit-text-stroke: 1px var(--ink); }
.hero__headline mark {
  background: var(--yellow); color: var(--ink);
  padding: 0 .15em; box-decoration-break: clone;
}

.hero__sub {
  font-size: .98rem; font-weight: 500; color: var(--ink); opacity: .8;
  max-width: 440px; line-height: 1.55; margin-bottom: 1.8rem;
  animation: popIn .6s var(--spring) .8s forwards; opacity: 0;
}

.hero__form {
  display: flex; width: 100%; max-width: 430px; gap: 0;
  opacity: 0; animation: popIn .6s var(--spring) .95s forwards;
}
.field {
  flex: 1; min-width: 0; border: var(--bd-thick); border-right: none;
  background: var(--white); padding: .9rem 1rem; font-size: .9rem;
  font-family: 'Space Grotesk'; font-weight: 500; color: var(--ink);
  outline: none; box-shadow: var(--shadow);
}
.field::placeholder { color: rgba(10,10,10,.4); }
.field:focus { background: #FFFDF5; }
.hero__form .btn {
  border-left: var(--bd-thick); font-size: .85rem; padding: .9rem 1.2rem;
  box-shadow: var(--shadow);
}
.hero__form .btn:active { transform: translate(4px,4px); box-shadow: 0 0 0 var(--ink); }

.success {
  display: none; width: 100%; max-width: 430px;
  background: var(--cyan); border: var(--bd-thick); box-shadow: var(--shadow);
  padding: 1rem; font-weight: 700; text-align: center;
}
.success.show { display: block; animation: popIn .5s var(--spring); }

.hero__proof {
  display: flex; align-items: center; gap: .6rem; margin-top: 1.4rem;
  opacity: 0; animation: popIn .6s var(--spring) 1.1s forwards;
}
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 30px; height: 30px; border-radius: 50%; border: 2.5px solid var(--ink);
  margin-left: -9px; display: block;
}
.hero__avatars span:first-child { margin-left: 0; }
.a1 { background: var(--cyan); } .a2 { background: var(--pink); }
.a3 { background: var(--yellow); } .a4 { background: var(--purple); }
.hero__proof p { font-size: .8rem; font-weight: 600; }
.hero__proof strong { color: var(--pink); }

@keyframes popIn {
  0% { opacity: 0; transform: translateY(24px) scale(.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
/* keep hero rotations after popIn */
.hero__tagsticker { animation-fill-mode: forwards; }

/* ============ MARQUEE ============ */
.marquee {
  position: relative; z-index: 3;
  background: var(--ink); color: var(--cream);
  border-top: var(--bd-thick); border-bottom: var(--bd-thick);
  padding: .7rem 0; overflow: hidden; white-space: nowrap;
}
.marquee__track { display: inline-flex; animation: scroll 22s linear infinite; }
.marquee__track span {
  font-family: 'Archivo Black'; font-size: 1rem; text-transform: uppercase;
  padding: 0 1.2rem; letter-spacing: .5px;
}
.marquee__track .star { color: var(--pink); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ SECTION ============ */
.section { position: relative; z-index: 2; padding: 3.5rem 1.1rem; }
.eyebrow {
  display: inline-block; background: var(--ink); color: var(--cream);
  font-weight: 700; font-size: .72rem; text-transform: uppercase;
  letter-spacing: 2px; padding: .35rem .8rem; margin-bottom: 1rem;
  transform: rotate(-1.5deg);
}
.h2 {
  font-family: 'Archivo Black'; font-size: clamp(1.8rem, 7vw, 2.8rem);
  line-height: 1.05; text-transform: uppercase; margin-bottom: .8rem;
}
.section__intro { max-width: 560px; margin: 0 auto 2.5rem; text-align: center; }
.section__intro .h2 { margin-bottom: .6rem; }
.section__intro p { font-weight: 500; opacity: .75; line-height: 1.55; }

/* ============ STEPS ============ */
.steps { display: flex; flex-direction: column; gap: 1.4rem; max-width: 500px; margin: 0 auto; }
.step {
  background: var(--white); border: var(--bd-thick); box-shadow: var(--shadow);
  padding: 1.4rem; position: relative;
  transition: transform .15s var(--spring), box-shadow .15s ease;
}
.step:nth-child(1) { transform: rotate(-1deg); }
.step:nth-child(2) { transform: rotate(1deg); }
.step:nth-child(3) { transform: rotate(-1deg); }
.step:hover { transform: rotate(0) translateY(-3px); box-shadow: var(--shadow-lg); }
.step__num {
  position: absolute; top: -18px; left: -14px;
  width: 46px; height: 46px; border: var(--bd); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo Black'; font-size: 1.1rem; box-shadow: 3px 3px 0 var(--ink);
}
.step:nth-child(1) .step__num { background: var(--cyan); }
.step:nth-child(2) .step__num { background: var(--pink); color: var(--white); }
.step:nth-child(3) .step__num { background: var(--yellow); }
.step__tag {
  display: inline-block; font-family: 'Archivo Black'; font-size: .75rem;
  text-transform: uppercase; letter-spacing: 1px; padding: .25rem .6rem;
  border: 2px solid var(--ink); margin-bottom: .6rem; margin-left: 1.6rem;
}
.step h3 { font-family: 'Archivo Black'; font-size: 1.25rem; text-transform: uppercase; margin-bottom: .4rem; }
.step p { font-weight: 500; font-size: .9rem; line-height: 1.55; opacity: .8; }

/* ============ CRACK CODE ============ */
.crack {
  position: relative; z-index: 2;
  background: var(--purple);
  border-top: var(--bd-thick); border-bottom: var(--bd-thick);
  padding: 3.5rem 1.1rem; overflow: hidden;
  color: var(--white);
}
.crack__inner { max-width: 560px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.crack .eyebrow { background: var(--white); color: var(--ink); }
.crack__title {
  font-family: 'Archivo Black'; font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: .98; text-transform: uppercase; margin-bottom: 1rem;
  color: var(--white);
}
.crack__title .strike { position: relative; color: var(--white); opacity: .55; }
.crack__title .strike::after {
  content: ''; position: absolute; left: -4%; right: -4%; top: 48%; height: 6px;
  background: var(--red); transform: rotate(-4deg);
}
.crack__title .yellow { color: var(--yellow); }
.crack__gestures { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.8rem; text-align: left; }
.gesture {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.1); border: 3px solid var(--white);
  padding: .9rem 1rem; box-shadow: 5px 5px 0 rgba(0,0,0,.35);
}
.gesture__ico {
  flex-shrink: 0; width: 44px; height: 44px; border: 3px solid var(--white);
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
}
.gesture--like .gesture__ico { background: var(--pink); }
.gesture--pass .gesture__ico { background: var(--red); }
.gesture--tap .gesture__ico { background: var(--cyan); color: var(--ink); }
.gesture p { font-weight: 500; font-size: .9rem; line-height: 1.45; }
.gesture strong { font-family: 'Archivo Black'; text-transform: uppercase; display: block; font-size: .95rem; }

/* ============ FEATURES ============ */
.feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 640px; margin: 0 auto; }
.feat {
  border: var(--bd-thick); box-shadow: var(--shadow); padding: 1.2rem;
  background: var(--white);
  transition: transform .15s var(--spring), box-shadow .15s ease;
}
.feat:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.feat__ico {
  width: 48px; height: 48px; border: var(--bd); display: flex;
  align-items: center; justify-content: center; font-size: 1.4rem;
  margin-bottom: .8rem; box-shadow: 3px 3px 0 var(--ink);
}
.feat:nth-child(1) .feat__ico { background: var(--cyan); }
.feat:nth-child(2) .feat__ico { background: var(--pink); }
.feat:nth-child(3) .feat__ico { background: var(--yellow); }
.feat:nth-child(4) .feat__ico { background: var(--purple); }
.feat:nth-child(5) .feat__ico { background: var(--red); }
.feat:nth-child(6) .feat__ico { background: var(--cyan); }
.feat h4 { font-family: 'Archivo Black'; font-size: .95rem; text-transform: uppercase; margin-bottom: .35rem; }
.feat p { font-weight: 500; font-size: .8rem; line-height: 1.5; opacity: .78; }

/* ============ CTA ============ */
.cta { position: relative; z-index: 2; padding: 4rem 1.1rem; }
.cta__box {
  max-width: 540px; margin: 0 auto; text-align: center;
  background: var(--pink); border: var(--bd-thick); box-shadow: var(--shadow-lg);
  padding: 2.5rem 1.6rem; color: var(--white); position: relative; overflow: hidden;
}
.cta__box .h2 { color: var(--white); }
.cta__box p { font-weight: 600; margin-bottom: 1.6rem; opacity: .95; }
.cta__form { max-width: 380px; margin: 0 auto; }
.cta__form .field { border-color: var(--ink); }
.cta__stores { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }
.store {
  display: flex; align-items: center; gap: .4rem;
  background: var(--ink); color: var(--cream);
  border: 2px solid var(--ink); padding: .5rem .9rem; font-size: .72rem; font-weight: 600;
}
.store svg { width: 15px; height: 15px; fill: var(--cream); }

/* ============ FOOTER ============ */
.footer { position: relative; z-index: 2; border-top: var(--bd-thick); padding: 2.2rem 1.1rem; text-align: center; }
.footer__logo { font-family: 'Permanent Marker'; font-size: 1.6rem; margin-bottom: .5rem; }
.footer__logo .r1 { font-family: 'Baloo 2'; font-weight: 800; color: var(--cyan); -webkit-text-stroke: 1.5px var(--ink); }
.footer__logo .r2 { font-family: 'Baloo 2'; font-weight: 800; color: var(--pink); -webkit-text-stroke: 1.5px var(--ink); }
.footer p { font-size: .75rem; font-weight: 500; opacity: .6; }
.footer__links { display: flex; gap: 1.2rem; justify-content: center; margin-top: .8rem; }
.footer__links a { font-size: .75rem; font-weight: 700; color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--ink); }
.footer__links a:hover { color: var(--pink); border-color: var(--pink); }

/* ============ REVEAL ============ */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--spring), transform .6s var(--spring); }
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; } .rv-d4 { transition-delay: .32s; }
.rv-d5 { transition-delay: .4s; } .rv-d6 { transition-delay: .48s; }

/* ============ DESKTOP ============ */
@media (min-width: 768px) {
  body { background-size: 46px 46px; }
  .section { padding: 5rem 2rem; }
  .steps { flex-direction: row; max-width: 940px; }
  .step { flex: 1; }
  .hero { padding: 3.5rem 2rem 4rem; }
  .hero__burst { width: 104px; height: 104px; top: -42px; right: -34px; }
}
@media (min-width: 480px) {
  .float--show { display: block; }
}
@media (max-width: 479px) {
  .float { display: none; }
  .float--mobile { display: block; }
}

/* ============ DOOMSCROLL CALLOUT ============ */
.doom { padding: 2.8rem 1.1rem .6rem; display: flex; justify-content: center; position: relative; z-index: 2; }
.doom__card {
  display: inline-flex; align-items: center; gap: .8rem;
  background: var(--white); border: var(--bd-thick); box-shadow: var(--shadow-lg);
  padding: .8rem 1.3rem .8rem .8rem; transform: rotate(-2.5deg); max-width: 92vw;
}
.doom__emoji { width: 76px; height: 76px; object-fit: cover; border: var(--bd); border-radius: 12px; box-shadow: 3px 3px 0 var(--ink); flex-shrink: 0; animation: bob 3s ease-in-out infinite; }
.doom__text { font-family: 'Archivo Black'; font-size: clamp(1rem, 4.3vw, 1.45rem); line-height: 1.04; text-transform: uppercase; text-align: left; }
.doom__text .q { display: block; }
.doom__text .yes { color: var(--pink); -webkit-text-stroke: .5px var(--ink); font-size: 1.18em; display: inline-block; transform: rotate(-1deg); }
@media (min-width: 768px) { .doom__emoji { width: 94px; height: 94px; } .doom { padding-top: 3.4rem; } }
