:root {
  --cream:       #f0ede8;
  --red:         #c1604a;
  --red-hover:   #a84e3a;
  --dark:        #111010;
  --mid:         #6b6560;
  --light:       #d8d4ce;
  --card:        #faf9f7;
  --muted:       #b5b0aa;
  --font-body:   0.875rem;
  --font-small:  0.75rem;
  --radius-md:   10px;
  --radius-lg:   18px;
  --transition:  0.18s ease;
}

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

body {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  font-family: 'Barlow', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout ─────────────────────────────── */

.page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 960px;
  width: 100%;
  align-items: center;
}

/* ─── Left column ─────────────────────────── */

.left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.left-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--light);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--dark);
  width: fit-content;
  animation: fadeUp 0.4s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Logo */
.logo-wrap {
  animation: fadeUp 0.4s 0.08s ease both;
}

.logo-text {
  font-size: clamp(2.5rem, 5.8vw, 4.875rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 0.95;
  display: block;
  white-space: nowrap;
}

.accent { color: var(--red); }

/* Tagline */
.tagline {
  font-size: clamp(1rem, 1.6vw, 1.3125rem);
  font-style: italic;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.45;
  max-width: 400px;
  animation: fadeUp 0.4s 0.16s ease both;
}

/* Subtext */
.subtext {
  font-size: var(--font-body);
  color: var(--mid);
  line-height: 1.65;
  animation: fadeUp 0.4s 0.24s ease both;
}

/* Pills */
.pills {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  animation: fadeUp 0.4s 0.32s ease both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: white;
  border: 1px solid var(--light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: var(--font-body);
  font-weight: 700;
  color: var(--dark);
  width: 190px;
  cursor: default;
  transition: border-color var(--transition), transform var(--transition);
}

.pill:hover {
  border-color: var(--red);
  transform: translateX(4px);
}

.pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.pill:nth-child(2) { margin-left: 18px; }
.pill:nth-child(3) { margin-left: 36px; }

/* ─── Card ────────────────────────────────── */

.card {
  background: var(--card);
  border-top: 2.5px solid var(--red);
  border-right: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  border-left: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 0.4s 0.1s ease both;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.045);
}

.card-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red);
  text-transform: uppercase;
}

.card-title {
  font-size: 1.625rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.card-body {
  font-size: var(--font-body);
  color: var(--mid);
  line-height: 1.7;
}

/* Form */
.input-field {
  width: 100%;
  border: 1px solid var(--light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.9375rem;
  font-family: 'Barlow', sans-serif;
  color: var(--dark);
  background: white;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input-field::placeholder { color: var(--muted); }

.input-field:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(193, 96, 74, 0.1);
}

.input-field.error {
  border-color: var(--red);
  animation: shake 0.3s ease;
}

.btn {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: -0.01em;
  transition: background var(--transition), transform var(--transition);
}

.btn:hover  { background: var(--red-hover); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.privacy-note {
  font-size: var(--font-small);
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ─── Accessibility ──────────────────────── */

.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;
}

#waitlistForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ─── Animations ──────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}

/* ─── Responsive ──────────────────────────── */

@media (max-width: 840px) {
  .page {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 540px;
  }

  .tagline { max-width: 100%; }
  .card { padding: 28px; }
}

@media (max-width: 560px) {
  body { padding: 28px 24px; align-items: flex-start; }

  .card { padding: 20px; }
  .card-title { font-size: 1.3125rem; }

}

