@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --ink: #1a1410;
  --soft-ink: #4b3b33;
  --cream: #f7f1ea;
  --peach: #f6c9a8;
  --coral: #ee8f6a;
  --sage: #cdd6c5;
  --gold: #e6b85c;
  --shadow: 0 30px 80px rgba(44, 30, 21, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff7f1 0%, var(--cream) 45%, #f1e5d9 100%);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 3.5rem clamp(1.5rem, 4vw, 4rem) 2.5rem;
}

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

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  z-index: -1;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(238, 143, 106, 0.4) 0%, rgba(238, 143, 106, 0) 70%);
  top: -80px;
  right: 10%;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(205, 214, 197, 0.6) 0%, rgba(205, 214, 197, 0) 70%);
  bottom: -40px;
  left: 6%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--soft-ink);
}

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(230, 184, 92, 0.35);
  border: 1px solid rgba(26, 20, 16, 0.08);
}

.brand-name {
  font-size: 1rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-ink);
  margin: 0;
}

h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  margin: 0;
  line-height: 1.05;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--soft-ink);
  margin: 0;
  max-width: 40rem;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1rem;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.waitlist input {
  border: 1px solid #e7d6c7;
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fffaf6;
}

.waitlist button {
  border: none;
  border-radius: 14px;
  padding: 0.95rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--coral), var(--gold));
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist button:disabled {
  cursor: progress;
  opacity: 0.8;
  box-shadow: none;
  transform: none;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--soft-ink);
}

.form-status.success {
  color: #2d5743;
}

.form-status.error {
  color: #8c2f2f;
}

.waitlist button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(238, 143, 106, 0.35);
}

.fine {
  font-size: 0.9rem;
  color: var(--soft-ink);
  margin: 0;
}

.signal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.signal h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.signal p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.5;
}

.quote {
  background: linear-gradient(120deg, rgba(246, 201, 168, 0.6), rgba(205, 214, 197, 0.6));
  padding: 2.5rem clamp(1.5rem, 3vw, 3rem);
  border-radius: 24px;
  display: grid;
  gap: 0.75rem;
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.quote span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--soft-ink);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--soft-ink);
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 20, 16, 0.1);
}

.accent {
  font-weight: 600;
}

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

@media (min-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .waitlist {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .waitlist button {
    min-width: 200px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content {
    animation: rise 0.9s ease both;
  }

  .signal > div {
    animation: fade 0.8s ease both;
  }

  .signal > div:nth-child(2) {
    animation-delay: 0.1s;
  }

  .signal > div:nth-child(3) {
    animation-delay: 0.2s;
  }
}

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

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