:root {
  --ink: #102236;
  --ink-soft: #4d6178;
  --cream: #fcf6ef;
  --cream-deep: #f2e4d3;
  --shell: #f6efe7;
  --paper: #fffaf4;
  --gold: #d6a24b;
  --rose: #c46c56;
  --sage: #8c9c82;
  --sky: #dbe6f2;
  --midnight: #0d1a2b;
  --midnight-soft: #15263d;
  --line: rgba(16, 34, 54, 0.1);
  --shadow: 0 28px 90px rgba(16, 34, 54, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --content-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 162, 75, 0.16), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(196, 108, 86, 0.14), transparent 22%),
    linear-gradient(180deg, #f7f0e7 0%, #f8f4ef 44%, #efe5d9 100%);
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input {
  font: inherit;
}

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

.site-shell {
  padding: 28px;
}

.topbar,
.hero,
.section,
.footer {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 20px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(16, 34, 54, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, #f7d98f 0%, #d6a24b 52%, rgba(214, 162, 75, 0) 70%);
  box-shadow: 0 0 18px rgba(214, 162, 75, 0.32);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.brand-copy span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(16, 34, 54, 0.52);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a,
.footer-links a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(16, 34, 54, 0.66);
  transition: color 180ms ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--rose);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--rose), #aa4f41);
  box-shadow: 0 18px 32px rgba(196, 108, 86, 0.24);
}

.button-primary:hover {
  box-shadow: 0 24px 36px rgba(196, 108, 86, 0.28);
}

.button-secondary,
.button-soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(16, 34, 54, 0.08);
}

.button-secondary:hover,
.button-soft:hover {
  background: rgba(255, 255, 255, 0.82);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 40px 0 84px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(62px, 10vw, 116px);
  max-width: 660px;
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
  max-width: 760px;
}

h3 {
  font-size: 30px;
  line-height: 1.02;
}

p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-lead {
  max-width: 600px;
  font-size: 22px;
  line-height: 1.65;
}

.hero-actions,
.hero-tags,
.partner-points,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags span,
.partner-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(16, 34, 54, 0.72);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 34, 54, 0.08);
}

.hero-art {
  position: relative;
  min-height: 640px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(214, 162, 75, 0.22), transparent 34%),
    linear-gradient(145deg, #102236 0%, #0c1726 52%, #07111f 100%);
  box-shadow: var(--shadow);
}

.aurora,
.moon,
.wave,
.story-card,
.star {
  position: absolute;
}

.aurora {
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.72;
}

.aurora-one {
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(214, 162, 75, 0.34) 0%, rgba(214, 162, 75, 0) 72%);
}

.aurora-two {
  bottom: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(196, 108, 86, 0.24) 0%, rgba(196, 108, 86, 0) 72%);
}

.moon {
  top: 60px;
  right: 72px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 34%, #fff1c2 0%, #f7d98f 36%, #d6a24b 62%, rgba(214, 162, 75, 0.08) 78%, rgba(214, 162, 75, 0) 86%);
  box-shadow: 0 0 46px rgba(214, 162, 75, 0.28);
  animation: drift 9s ease-in-out infinite;
}

.star {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 247, 230, 0.86);
  box-shadow: 0 0 12px rgba(255, 247, 230, 0.7);
  animation: twinkle 3.2s ease-in-out infinite;
}

.star-a {
  top: 118px;
  left: 72px;
  animation-delay: 0.1s;
}

.star-b {
  top: 162px;
  left: 126px;
  animation-delay: 0.8s;
}

.star-c {
  top: 98px;
  right: 208px;
  animation-delay: 1.4s;
}

.story-card {
  padding: 26px 28px;
  border-radius: 26px;
  background: rgba(255, 251, 245, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.story-card-main {
  left: 42px;
  right: 100px;
  bottom: 86px;
}

.story-card-small {
  right: 44px;
  bottom: 210px;
  width: 240px;
}

.story-card h2,
.story-card p,
.story-label {
  color: var(--paper);
}

.story-card h2 {
  font-size: 40px;
  max-width: 420px;
  margin: 10px 0 8px;
}

.story-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 246, 230, 0.74);
}

.wave {
  left: -8%;
  right: -8%;
  border-radius: 50% 50% 0 0;
}

.wave-one {
  bottom: -58px;
  height: 180px;
  background: linear-gradient(180deg, rgba(129, 156, 130, 0.3) 0%, rgba(129, 156, 130, 0.56) 100%);
}

.wave-two {
  bottom: -108px;
  height: 210px;
  background: linear-gradient(180deg, rgba(17, 31, 52, 0.6) 0%, rgba(8, 17, 31, 0.96) 100%);
}

.section {
  position: relative;
  margin-bottom: 28px;
  padding: 42px 0 54px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section-heading.narrow {
  max-width: 760px;
}

.intro-band,
.story-world,
.founder-note,
.partner-section,
.waitlist {
  display: grid;
  gap: 28px;
}

.intro-grid,
.experience-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.experience-card,
.step-card,
.founder-panel,
.founder-quote,
.partner-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(16, 34, 54, 0.08);
}

.feature-card,
.experience-card,
.step-card {
  display: grid;
  gap: 16px;
}

.feature-number,
.step-index {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}

.story-world {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.story-world-copy {
  display: grid;
  gap: 16px;
}

.icon-circle {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(214, 162, 75, 0.18), rgba(196, 108, 86, 0.12));
  color: var(--rose);
  font-size: 24px;
}

.founder-note {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.founder-panel {
  display: grid;
  gap: 16px;
}

.founder-quote {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(214, 162, 75, 0.18), transparent 38%),
    linear-gradient(145deg, #112137 0%, #0d1829 100%);
  color: var(--paper);
}

.founder-quote p {
  color: rgba(255, 250, 244, 0.92);
  font-size: 34px;
  line-height: 1.28;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.partner-section {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.partner-copy {
  display: grid;
  gap: 16px;
}

.partner-card {
  display: grid;
  align-content: start;
  gap: 16px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.88), rgba(242, 228, 211, 0.72));
}

.waitlist-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(214, 162, 75, 0.22), transparent 26%),
    radial-gradient(circle at left bottom, rgba(196, 108, 86, 0.14), transparent 24%),
    linear-gradient(145deg, #112137 0%, #0a1422 100%);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.waitlist-card h2,
.waitlist-card p,
.waitlist-card .eyebrow {
  color: var(--paper);
}

.waitlist-card p {
  max-width: 720px;
  color: rgba(255, 250, 244, 0.82);
}

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

.waitlist-form input {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  outline: none;
}

.waitlist-form input::placeholder {
  color: rgba(255, 250, 244, 0.5);
}

.waitlist-form input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.form-note {
  font-size: 14px;
  color: rgba(255, 250, 244, 0.62);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  padding: 8px 0 24px;
}

.footer strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer p {
  max-width: 540px;
  font-size: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(8px) translateX(-8px);
  }
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    border-radius: 28px;
  }

  .hero,
  .story-world,
  .founder-note,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 560px;
  }

  .intro-grid,
  .experience-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding: 16px;
  }

  .topbar {
    position: static;
    padding: 18px;
    gap: 18px;
  }

  .nav {
    gap: 14px;
  }

  .nav a,
  .footer-links a {
    font-size: 13px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 28px;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 48px;
  }

  .hero-art {
    min-height: 500px;
  }

  .story-card-main {
    left: 20px;
    right: 20px;
    bottom: 80px;
  }

  .story-card-main h2 {
    font-size: 34px;
  }

  .story-card-small {
    right: 20px;
    bottom: 220px;
    width: 200px;
  }

  .moon {
    top: 42px;
    right: 28px;
    width: 108px;
    height: 108px;
  }

  .waitlist-card,
  .feature-card,
  .experience-card,
  .step-card,
  .founder-panel,
  .founder-quote,
  .partner-card {
    padding: 24px;
  }

  .founder-quote p {
    font-size: 28px;
  }

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

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }
}

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

  .reveal,
  .button,
  .moon,
  .star {
    transition: none;
    animation: none;
  }
}
