:root {
  --cream: #fffdf9;
  --bg: #f8f9fa;
  --paper: #ffffff;
  --text: #2d3436;
  --muted: #636e72;
  --primary: #6c5ce7;
  --magenta: #8a2be2;
  --pink: #f8a5c2;
  --blue: #a0c4ff;
  --lilac: #dfe4ff;
  --matcha: #e2efe0;
  --sunset: #fde0d9;
  --cosmic: #1e1b2e;
  --golden: #fff3b3;
  --border: rgba(45, 52, 54, 0.08);
  --shadow: 0 16px 40px rgba(108, 92, 231, 0.12);
  --radius: 28px;
  --font: "Fredoka", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 12% -10%, rgba(248, 165, 194, 0.35), transparent 42%),
    radial-gradient(circle at 90% 8%, rgba(160, 196, 255, 0.32), transparent 36%),
    radial-gradient(circle at 50% 100%, rgba(108, 92, 231, 0.08), transparent 40%),
    var(--cream);
  min-height: 100vh;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--magenta);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 249, 0.78);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(108, 92, 231, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--magenta));
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(108, 92, 231, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 48px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin: 16px 0 14px;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  font: inherit;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--magenta));
  color: #fff;
  box-shadow: 0 14px 28px rgba(108, 92, 231, 0.28);
}

.btn-ghost {
  background: var(--paper);
  color: var(--text);
  border: 1px solid var(--border);
}

.mascot-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.blob-a {
  width: 280px;
  height: 280px;
  background: rgba(248, 165, 194, 0.45);
  top: 24px;
  right: 28px;
}

.blob-b {
  width: 220px;
  height: 220px;
  background: rgba(160, 196, 255, 0.5);
  bottom: 36px;
  left: 36px;
}

.mascot-card {
  position: relative;
  width: min(320px, 86%);
  background: var(--paper);
  border-radius: 36px;
  padding: 28px 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.mascot-card img {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  object-fit: contain;
}

.mascot-card p {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.ground {
  width: 160px;
  height: 18px;
  margin: -8px auto 8px;
  border-radius: 1000px;
  background: rgba(0, 0, 0, 0.12);
  filter: blur(4px);
  opacity: 0.8;
}

section {
  padding: 28px 0 56px;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(45, 52, 54, 0.05);
}

.icon-pill {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.icon-lilac { background: rgba(108, 92, 231, 0.12); }
.icon-pink { background: rgba(248, 165, 194, 0.35); }
.icon-blue { background: rgba(160, 196, 255, 0.45); }

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
}

.theme-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.swatch {
  min-height: 140px;
  border-radius: 22px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--text);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.swatch span {
  font-size: 13px;
  font-weight: 700;
}

.swatch small {
  opacity: 0.8;
  font-size: 12px;
}

.cream { background: linear-gradient(180deg, #faf8f5, #f5efe6); }
.matcha { background: linear-gradient(180deg, #f3f8f2, #e2efe0); }
.sunset { background: linear-gradient(180deg, #fff3ee, #fde0d9); }
.cosmic {
  background: linear-gradient(180deg, #1e1b2e, #2a2440);
  color: #fff;
}
.golden { background: linear-gradient(180deg, #fffdf0, #fff3b3); }

.waitlist {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.waitlist input {
  flex: 1;
  min-width: 220px;
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 0 16px;
  font: inherit;
  background: var(--paper);
}

.legal-page {
  padding: 48px 0 80px;
}

.legal-card {
  background: var(--paper);
  border-radius: 32px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.legal-card h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.legal-card .meta {
  color: var(--muted);
  margin-bottom: 28px;
}

.legal-card h2 {
  font-size: 1.2rem;
  margin: 28px 0 8px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  margin-bottom: 10px;
}

.legal-card ul {
  padding-left: 1.2rem;
  margin-bottom: 12px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  background: rgba(255, 255, 255, 0.45);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a,
.site-footer p {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 860px) {
  .hero,
  .grid,
  .theme-grid,
  .swatches {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }
}
