:root {
  color-scheme: light;
  --content-width: 1120px;
  --bg: #fff8ef;
  --bg-deep: #ffd9c7;
  --surface: rgba(255, 255, 255, 0.58);
  --surface-strong: rgba(255, 255, 255, 0.78);
  --text: #1d1830;
  --muted: #5b536b;
  --accent: #ff6b57;
  --accent-soft: #ff9b7f;
  --line: rgba(29, 24, 48, 0.08);
  --shadow: 0 30px 80px rgba(80, 34, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(252, 137, 120, 0.28), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(252, 190, 180, 0.34), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 217, 199, 0.36), transparent 32%),
    linear-gradient(180deg, #fffdf9 0%, #fff8ef 48%, #fff4ea 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 32px;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.65;
  pointer-events: none;
}

.ambient-one {
  top: -140px;
  right: -40px;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, rgba(255, 131, 111, 0.28), rgba(255, 255, 255, 0.02));
}

.ambient-two {
  bottom: -90px;
  left: -20px;
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, rgba(255, 222, 215, 0.86), rgba(255, 131, 111, 0.16));
}

.hero-grid,
.experience-panel,
.footer-note {
  position: relative;
  z-index: 1;
}

.hero-grid {
  width: min(100%, var(--content-width));
  min-height: auto;
  margin: 0 auto;
}

.hero-copy {
  width: 100%;
  padding: 28px 0 10px;
  animation: fade-up 900ms ease both;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 24px;
}

.hero-brand-mark {
  width: min(100%, 520px);
  height: auto;
  display: block;
}

h1 {
  margin: 0;
  max-width: none;
  font-family: "Instrument Serif", serif;
  font-size: clamp(4.8rem, 8vw, 8.8rem);
  line-height: 0.93;
  font-weight: 400;
}

h1 span {
  display: inline-block;
  color: var(--accent);
  font-style: italic;
}

.lead {
  width: 100%;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.86;
}

.waitlist-card {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(29, 24, 48, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 241, 0.72));
  box-shadow: 0 22px 44px rgba(31, 29, 60, 0.07);
}

.waitlist-copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}

.waitlist-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.waitlist-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.waitlist-form input {
  min-width: 0;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(29, 24, 48, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
}

.waitlist-form input:focus {
  outline: 2px solid rgba(255, 107, 87, 0.28);
  outline-offset: 2px;
}

.waitlist-submit {
  height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: var(--text);
  color: #fffdf8;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.waitlist-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.waitlist-status.is-error {
  color: #b44037;
}

.waitlist-status.is-success {
  color: #1f5c48;
}

.waitlist-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.waitlist-benefits span {
  padding: 10px 14px;
  border: 1px solid rgba(29, 24, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 34px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 16px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 18px 40px rgba(255, 107, 87, 0.28);
  color: #fffdf8;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(255, 107, 87, 0.34);
}

.availability {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.footer-note {
  margin: 28px auto 0;
  width: min(100%, var(--content-width));
  color: var(--muted);
  font-size: 0.92rem;
}

.experience-panel {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-width));
  margin: 12px auto 0;
  padding: 24px 0 8px;
}

.experience-intro {
  width: 100%;
}

.experience-intro h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
}

.experience-lead {
  width: 100%;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.experience-card {
  padding: 24px;
  border: 1px solid rgba(29, 24, 48, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(31, 29, 60, 0.05);
}

.experience-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.55;
}

.founding-note {
  margin-top: 22px;
  padding: 24px 26px;
  border-left: 4px solid rgba(252, 137, 120, 0.7);
  border-radius: 20px;
  background: rgba(255, 250, 246, 0.82);
}

.founding-note p {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founding-note strong {
  display: block;
  max-width: 32ch;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.06;
}

.footer-note p {
  margin: 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.45;
  }
}

@media (max-width: 960px) {
  .page-shell {
    padding: 24px 20px 28px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
    padding: 20px 0 0;
  }

  .waitlist-form,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.5rem, 18vw, 5.6rem);
  }

  .hero-brand {
    margin-bottom: 26px;
  }

  .hero-brand-mark {
    width: min(100%, 360px);
  }

  .footer-note {
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .hero-brand {
    padding: 18px 20px;
    border: 1px solid rgba(29, 24, 48, 0.06);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 247, 241, 0.72));
    box-shadow: 0 18px 40px rgba(31, 29, 60, 0.08);
    backdrop-filter: blur(8px);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .waitlist-card {
    padding: 20px;
  }

  .waitlist-submit {
    width: 100%;
  }

  .primary-action {
    width: 100%;
  }

  .hero-brand-mark {
    width: min(100%, 220px);
    filter: drop-shadow(0 10px 24px rgba(255, 107, 87, 0.12));
  }
}