:root {
  --yellow: #FFD100;
  --ink: #17160F;
  --cream: #EDEAE0;
  --card: #E9E5D8;
  --red: #E23B2E;
  --gray-text: #4b4a44;
  --border: #d9d5c6;
  --radius-lg: 22px;
  --radius-md: 14px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Hazard stripe */
.hazard-bar {
  height: 10px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0 18px,
    var(--ink) 18px 36px
  );
}

/* Header */
.site-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header .btn { flex-shrink: 0; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--yellow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23,22,15,0.25);
}

.btn-primary:active { transform: translateY(0); }

/* Main card */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 56px 24px 48px;
  text-align: center;
}

.eyebrow {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
  margin: 0 0 8px;
  font-size: 1.05rem;
}

h1 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.lede {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray-text);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Mascots */
.mascots {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 5vw, 56px);
  margin: 48px 0 8px;
  flex-wrap: wrap;
}

.mascot {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.mascot-img {
  display: block;
  width: clamp(160px, 24vw, 250px);
  height: auto;
  filter: drop-shadow(0 16px 20px rgba(23, 22, 15, 0.22));
  transition: transform 0.25s ease;
}

.mascot:hover .mascot-img {
  transform: translateY(-6px);
}

.mascot figcaption {
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 1rem;
}

/* Waitlist */
.waitlist {
  margin-top: 56px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist h2 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin: 0 0 12px;
}

.waitlist-sub {
  color: var(--gray-text);
  margin: 0 0 28px;
  line-height: 1.5;
}

.waitlist-form { text-align: left; }

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row input[type="email"] {
  flex: 1 1 auto;
  min-width: 240px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
}

.form-row input[type="email"]:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.form-row .btn { flex: 0 0 auto; }

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gray-text);
  cursor: pointer;
}

.checkbox-row input {
  width: 17px;
  height: 17px;
  accent-color: var(--ink);
  flex-shrink: 0;
}

.form-msg {
  margin: 14px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-msg.success { color: #1e7a33; font-weight: 600; }
.form-msg.error { color: var(--red); font-weight: 600; }

/* Footer */
.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.disclaimer {
  color: var(--gray-text);
  font-size: 0.85rem;
  max-width: 560px;
  margin: 0;
}

.socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.social-btn:hover { background: var(--red); }

@media (max-width: 560px) {
  .site-header { padding: 18px 16px; }
  .brand-name { font-size: 0.85rem; }
  .card { padding: 40px 18px 36px; }
  .form-row { flex-direction: column; }
  .form-row input[type="email"] { min-width: 0; width: 100%; }
  .form-row .btn { width: 100%; justify-content: center; }
  .site-footer { flex-direction: column; text-align: center; }
}
