:root {
  --ink: #15131a;
  --soft-ink: #625f68;
  --paper: #f8f7f3;
  --line: rgba(21, 19, 26, 0.14);
  --lavender: #c9c4ff;
  --blue: #9ddcf5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

.nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
  padding: 28px 0;
}

.nav-mark,
.footer-mark {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nav-link {
  color: var(--soft-ink);
  font-size: 0.84rem;
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 140px 24px 96px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% 5% 8%;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.gradient-orb {
  position: absolute;
  z-index: -3;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.84;
}

.gradient-orb-one {
  width: min(72vw, 940px);
  height: min(72vw, 940px);
  left: 5%;
  top: 8%;
  background: radial-gradient(
    circle at 35% 35%,
    #f9c7db,
    var(--lavender) 46%,
    transparent 72%
  );
  animation: drift-one 13s ease-in-out infinite alternate;
}

.gradient-orb-two {
  width: min(62vw, 800px);
  height: min(62vw, 800px);
  right: 1%;
  bottom: -6%;
  background: radial-gradient(
    circle at 55% 48%,
    var(--blue),
    #d5f1e2 44%,
    transparent 72%
  );
  animation: drift-two 16s ease-in-out infinite alternate;
}

.hero-content {
  width: 100%;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 16px 0 0;
  font-size: clamp(4.25rem, 17.5vw, 15.5rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.coming-soon {
  margin: 28px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  font-style: italic;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 480px;
  margin: 20px auto 0;
  color: #4b4851;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  background: #342f3c;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft-ink);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span {
  display: block;
  width: 44px;
  height: 1px;
  background: currentColor;
}

.section-shell {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.about {
  padding-top: clamp(100px, 14vw, 180px);
  padding-bottom: clamp(100px, 14vw, 180px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(64px, 12vw, 180px);
  margin-top: 52px;
}

.about h2,
.interest h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-copy {
  align-self: end;
}

.about-copy p,
.interest-copy {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.03rem;
  line-height: 1.75;
}

.about-copy p + p {
  margin-top: 24px;
}

.interest {
  padding-bottom: 34px;
}

.interest-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(64px, 10vw, 140px);
  align-items: end;
  overflow: hidden;
  padding: clamp(38px, 7vw, 92px);
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 202, 222, 0.75),
      transparent 40%
    ),
    radial-gradient(
      circle at 82% 76%,
      rgba(157, 220, 245, 0.85),
      transparent 48%
    ),
    #ddd9ff;
}

.interest h2 {
  margin-top: 20px;
}

.interest-copy {
  max-width: 500px;
  margin-top: 30px;
  color: #514d59;
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
}

.input-row {
  display: flex;
  padding: 5px;
  border: 1px solid rgba(21, 19, 26, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.input-row input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 13px 16px;
  background: transparent;
  color: var(--ink);
}

.input-row input::placeholder {
  color: #77717d;
}

.input-row button {
  flex: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 19px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

.input-row:focus-within {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.form-note {
  min-height: 1.2em;
  margin: 10px 4px 0;
  color: #69636f;
  font-size: 0.7rem;
  line-height: 1.5;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 42px;
  padding-bottom: 42px;
  color: var(--soft-ink);
  font-size: 0.74rem;
}

.footer p {
  margin: 0;
}

.footer p:last-child {
  text-align: right;
}

@keyframes drift-one {
  to {
    transform: translate(6%, 5%) scale(1.05);
  }
}

@keyframes drift-two {
  to {
    transform: translate(-7%, -4%) scale(0.95);
  }
}

@media (max-width: 760px) {
  .nav,
  .section-shell {
    width: min(100% - 32px, 1220px);
  }

  .nav {
    padding-top: 22px;
  }

  .hero {
    min-height: 820px;
    padding-inline: 16px;
  }

  .hero::before {
    inset: 12% -28% 9%;
  }

  h1 {
    font-size: clamp(4.15rem, 24vw, 7.5rem);
  }

  .about-grid,
  .interest-card {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 46px;
  }

  .interest-card {
    gap: 56px;
    border-radius: 28px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .input-row {
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
  }

  .input-row button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gradient-orb {
    animation: none;
  }
}
