:root {
  color-scheme: light;
  --ink: #211b12;
  --muted: #665f54;
  --paper: #fffaf0;
  --sun: #ffdc3d;
  --violet: #9a66ff;
  --violet-deep: #5530b5;
  --coral: #ff6f61;
  --line: #211b12;
  --shadow: 10px 10px 0 #211b12;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 220, 61, 0.36), transparent 24rem),
    radial-gradient(circle at 92% 28%, rgba(154, 102, 255, 0.22), transparent 22rem),
    linear-gradient(135deg, #fffdf5 0%, var(--paper) 55%, #f4fff9 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.85rem 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: cover;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

nav a {
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  min-height: calc(100svh - 4.4rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 6rem) 0 clamp(3rem, 8vw, 7rem);
}

.hero-copy,
.drop-copy {
  min-width: 0;
}

.kicker,
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--violet-deep);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 1rem;
  max-width: 100%;
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 0.88;
  letter-spacing: 0;
  white-space: nowrap;
}

.lede {
  max-width: 40rem;
  margin-bottom: 1.7rem;
  color: #3f372d;
  font-size: clamp(1.18rem, 2.4vw, 1.7rem);
  font-weight: 750;
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button,
.signup button {
  min-height: 3.2rem;
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--line);
  font-weight: 950;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
}

.button:hover,
.button:focus-visible,
.signup button:hover,
.signup button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--line);
  outline: none;
}

.primary {
  background: var(--sun);
}

.secondary {
  background: #fff;
}

.mascot-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(25rem, 55vw, 39rem);
  isolation: isolate;
}

.sunburst {
  position: absolute;
  inset: 8% 0 5%;
  z-index: -1;
  border: 4px solid var(--line);
  border-radius: 45% 55% 48% 52%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), transparent 42%),
    repeating-linear-gradient(-20deg, rgba(255, 255, 255, 0.18) 0 12px, rgba(255, 220, 61, 0.25) 12px 24px),
    var(--sun);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.mascot {
  width: min(100%, 31rem);
  max-height: 72svh;
  object-fit: contain;
  filter: drop-shadow(14px 16px 0 rgba(85, 48, 181, 0.25));
}

.world-band {
  border-block: 4px solid var(--line);
  background:
    linear-gradient(90deg, rgba(32, 183, 168, 0.2), transparent 28%),
    #fff;
}

.section-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section-inner > h2,
.drop-copy h2 {
  max-width: 14ch;
  margin-bottom: 1.6rem;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid article {
  min-height: 15rem;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 6px 6px 0 var(--line);
  padding: 1.2rem;
}

.feature-grid article:nth-child(2) {
  background: #f0ecff;
}

.feature-grid article:nth-child(3) {
  background: #eafffb;
}

.feature-mark {
  display: inline-flex;
  margin-bottom: 2.4rem;
  color: var(--coral);
  font-weight: 950;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.feature-grid p,
.drop-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.drop-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.25rem, 8vw, 6rem) 0;
}

.signup {
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--violet);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.35rem);
}

.signup label {
  display: block;
  margin-bottom: 0.65rem;
  color: #fff;
  font-weight: 950;
}

.signup-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

input {
  min-width: 0;
  min-height: 3.2rem;
  border: 3px solid var(--line);
  border-radius: 8px;
  padding: 0 0.8rem;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

input:focus {
  outline: 3px solid var(--sun);
  outline-offset: 2px;
}

.signup button {
  cursor: pointer;
  background: var(--sun);
  color: var(--ink);
  font: inherit;
  padding: 0 1.1rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  border-top: 3px solid var(--line);
  padding: 1.25rem 0 2rem;
  color: var(--muted);
  font-weight: 850;
}

footer a {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  nav {
    display: none;
  }

  .hero,
  .drop-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1.75rem;
  }

  .hero-copy {
    order: 2;
  }

  .mascot-stage {
    min-height: 22rem;
    order: 1;
  }

  .mascot {
    max-height: 24rem;
  }

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

  .feature-grid article {
    min-height: 11rem;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .section-inner,
  .drop-section,
  footer {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  h1 {
    font-size: clamp(2.9rem, 13vw, 3.35rem);
    line-height: 0.94;
  }

  .lede {
    max-width: 24ch;
    font-size: 1rem;
    font-weight: 800;
  }

  .mascot {
    width: min(82vw, 20rem);
  }

  .hero-actions,
  .button {
    width: calc(100% - 8px);
  }

  .signup-row {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
