:root {
  --bg: #fff7fd;
  --ink: #101015;
  --pink: #ff4fd8;
  --blue: #32c8ff;
  --yellow: #fff04a;
  --green: #30ff8a;
  --purple: #8b5cff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(255,79,216,.28), transparent 24rem),
    radial-gradient(circle at 84% 12%, rgba(50,200,255,.26), transparent 22rem),
    radial-gradient(circle at 50% 88%, rgba(48,255,138,.22), transparent 26rem),
    var(--bg);
  font-family: Chivo, system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { background: var(--pink); color: white; }

.eu-banner {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: .58rem 1rem;
  color: white;
  background: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.eu-banner a {
  margin-left: .5rem;
  color: var(--yellow);
  text-decoration: underline;
}

.confetti-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.confetti-field i,
.burst-piece {
  position: absolute;
  width: 10px;
  height: 18px;
  background: var(--pink);
}

.confetti-field i {
  top: -20px;
  animation: fall 5.8s linear infinite;
}

.confetti-field i:nth-child(4n) { background: var(--blue); }
.confetti-field i:nth-child(4n+1) { background: var(--yellow); }
.confetti-field i:nth-child(4n+2) { background: var(--green); }
.confetti-field i:nth-child(4n+3) { background: var(--purple); }
.confetti-field i:nth-child(1){left:3%;animation-delay:-.2s}.confetti-field i:nth-child(2){left:8%;animation-delay:-2s}.confetti-field i:nth-child(3){left:14%;animation-delay:-4s}.confetti-field i:nth-child(4){left:20%;animation-delay:-1s}.confetti-field i:nth-child(5){left:26%;animation-delay:-3.4s}
.confetti-field i:nth-child(6){left:33%;animation-delay:-.8s}.confetti-field i:nth-child(7){left:40%;animation-delay:-2.6s}.confetti-field i:nth-child(8){left:47%;animation-delay:-4.8s}.confetti-field i:nth-child(9){left:54%;animation-delay:-1.7s}.confetti-field i:nth-child(10){left:60%;animation-delay:-3.8s}
.confetti-field i:nth-child(11){left:66%;animation-delay:-.4s}.confetti-field i:nth-child(12){left:71%;animation-delay:-2.2s}.confetti-field i:nth-child(13){left:76%;animation-delay:-4.4s}.confetti-field i:nth-child(14){left:81%;animation-delay:-1.3s}.confetti-field i:nth-child(15){left:86%;animation-delay:-3.1s}
.confetti-field i:nth-child(16){left:90%;animation-delay:-.9s}.confetti-field i:nth-child(17){left:93%;animation-delay:-2.9s}.confetti-field i:nth-child(18){left:96%;animation-delay:-4.9s}.confetti-field i:nth-child(19){left:49%;animation-delay:-.1s}.confetti-field i:nth-child(20){left:58%;animation-delay:-2.7s}

@keyframes fall {
  to { transform: translateY(calc(100vh + 60px)) rotate(680deg); }
}

.burst-piece {
  position: fixed;
  z-index: 30;
  animation: burst .9s ease-out forwards;
}

@keyframes burst {
  to { translate: 0 -120px; opacity: 0; rotate: 420deg; }
}

header, main, footer {
  position: relative;
  z-index: 2;
}

header {
  padding: 1rem clamp(1rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
}

.logo span { font-size: 2rem; }

nav {
  display: flex;
  gap: 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 105px);
  padding: clamp(2rem, 7vw, 7rem) clamp(1rem, 5vw, 4rem);
  display: grid;
  place-items: center;
  text-align: center;
}

.emoji-logo {
  width: clamp(7rem, 18vw, 14rem);
  height: clamp(7rem, 18vw, 14rem);
  display: grid;
  place-items: center;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: white;
  box-shadow: 14px 14px 0 var(--pink);
  font-size: clamp(4rem, 11vw, 9rem);
  animation: pop 1.5s ease-in-out infinite;
}

@keyframes pop {
  50% { transform: translateY(-10px) rotate(8deg) scale(1.05); }
}

.eyebrow,
.simple-card span,
.eu span,
.ca-box p {
  margin: 1.4rem 0 .6rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 0;
  font-family: "Space Grotesk", Chivo, system-ui, sans-serif;
  font-size: clamp(4.4rem, 15vw, 15rem);
  line-height: .82;
  letter-spacing: -.09em;
  font-weight: 700;
}

h2 {
  max-width: 1050px;
  margin: 0 auto;
  font-family: "Space Grotesk", Chivo, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 700;
}

.story-line {
  max-width: 780px;
  margin: 1.3rem auto 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
  font-weight: 800;
}

.actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
}

button,
.actions a,
.ca-box button {
  min-height: 56px;
  padding: .95rem 1.15rem;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.actions a { background: white; }

.simple-card,
.ca-box,
.eu {
  margin: 0 clamp(1rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  padding: clamp(1.2rem, 4vw, 3rem);
  border: 4px solid var(--ink);
  background: white;
  box-shadow: 12px 12px 0 var(--ink);
}

.simple-card p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.three {
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.three article {
  min-height: 230px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 4px solid var(--ink);
  background: var(--pink);
  color: white;
  box-shadow: 9px 9px 0 var(--ink);
}

.three article:nth-child(2) { background: var(--blue); color: var(--ink); }
.three article:nth-child(3) { background: var(--green); color: var(--ink); }

.three b {
  font-family: "Space Grotesk", Chivo, system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: .8;
  letter-spacing: -.08em;
}

.three p {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.ca-box {
  text-align: center;
  background: var(--ink);
  color: white;
}

.ca-box h3 {
  margin: .5rem auto 1rem;
  max-width: 1100px;
  color: var(--yellow);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(1rem, 3vw, 2.6rem);
  word-break: break-word;
}

.eu { background: #f7f7f7; }

.eu p {
  font-family: "JetBrains Mono", monospace;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.55;
}

footer {
  padding: 1.2rem clamp(1rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
}

@media (max-width: 780px) {
  .eu-banner { text-align: left; font-size: .58rem; }
  nav { display: none; }
  .three { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  button, .actions a, .ca-box button { width: 100%; }
  footer { flex-direction: column; }
}

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