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

:root {
  --dark: #13020b;
  --navy: #0f1f2e;
  --rose: #9b3a57;
  --rose-bright: #c73767;
  --soft-rose: #f5e5ea;
  --cream: #fbf6f2;
  --text: #1f2933;
  --muted: #667085;
  --white: #ffffff;
  --line: #f0dfe5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* NAVBAR */
.nav {
  width: 100%;
  padding: 22px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(251, 246, 242, 0.92);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 32px rgba(19, 2, 11, 0.07);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -2.5px;
}

.brand-name::after {
  content: "♥";
  font-size: 0.72rem;
  color: var(--rose);
  position: relative;
  top: -16px;
  left: 2px;
}

.nav-btn,
.cta a {
  background: linear-gradient(135deg, var(--rose), var(--rose-bright));
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(155, 58, 87, 0.22);
}

.nav-btn:hover,
.cta a:hover,
button:hover {
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 88vh;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
  background:
    radial-gradient(circle at 88% 48%, rgba(199, 55, 103, 0.16), transparent 28%),
    radial-gradient(circle at 80% 50%, rgba(199, 55, 103, 0.09) 0 2px, transparent 2px),
    linear-gradient(135deg, #fffaf7 0%, #f8e4eb 100%);
  background-size: auto, 24px 24px, auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--white);
  color: var(--rose-bright);
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(19, 2, 11, 0.08);
}

.badge span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e65b88;
  display: inline-block;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.2rem, 7vw, 6.3rem);
  line-height: 0.92;
  color: var(--dark);
  max-width: 940px;
  letter-spacing: -4px;
}

.hero h1 span {
  display: block;
  color: var(--rose-bright);
}

.subtitle {
  font-size: 1.3rem;
  color: #4d4d5f;
  max-width: 760px;
  margin: 28px 0 22px;
}

/* FORM */
.waitlist-form {
  display: grid;
  gap: 14px;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.92);
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(155, 58, 87, 0.12);
  box-shadow: 0 24px 70px rgba(19, 2, 11, 0.12);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select {
  width: 100%;
  padding: 18px;
  border: 1px solid #ead4dc;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  color: var(--text);
}

input:focus,
select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(155, 58, 87, 0.12);
}

button {
  padding: 18px 20px;
  border: none;
  border-radius: 12px;
  background: var(--dark);
  color: var(--white);
  font-weight: 900;
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.privacy,
.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.success-message {
  display: none;
  margin-top: 18px;
  color: #087443;
  font-weight: 800;
}

/* HERO CARD */
.hero-card {
  background:
    radial-gradient(circle at 80% 10%, rgba(199, 55, 103, 0.28), transparent 38%),
    var(--dark);
  color: var(--white);
  border-radius: 28px;
  padding: 46px;
  box-shadow: 0 30px 75px rgba(19, 2, 11, 0.28);
}

.hero-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.card-line {
  width: 54px;
  height: 3px;
  background: var(--rose-bright);
  margin-bottom: 20px;
}

.hero-card li {
  list-style: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
}

.hero-card li span {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--rose), var(--rose-bright));
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 auto;
}

/* STATS */
.stats {
  width: 84%;
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(19, 2, 11, 0.08);
  border: 1px solid rgba(155, 58, 87, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.stats div {
  padding: 34px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: none;
}

.stats h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.3rem;
  color: var(--rose-bright);
  line-height: 1;
}

.stats p {
  margin-top: 10px;
  color: #16111a;
}

/* CONTENT SECTIONS */
.section,
.journey,
.cta {
  padding: 90px 8%;
  text-align: center;
}

.section-label {
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 14px;
}

.section h2,
.journey h2,
.cta h2 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto 20px;
}

.section p,
.cta p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.1rem;
}

.features {
  padding: 30px 8% 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(19, 2, 11, 0.06);
}

.feature-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.steps div {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.steps span {
  color: var(--rose);
  font-weight: 900;
  font-size: 1.4rem;
}

.steps p {
  margin-top: 8px;
  font-weight: 800;
}

.cta {
  background: var(--navy);
  color: var(--white);
}

.cta h2,
.cta p {
  color: var(--white);
}

.cta a {
  display: inline-block;
  margin-top: 26px;
}

/* FOOTER */
footer {
  padding: 38px 8%;
  text-align: center;
  background: var(--dark);
  color: var(--white);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
}

.footer-name::after {
  content: "♥";
  font-size: 0.65rem;
  color: var(--rose-light, #f2a0b4);
  position: relative;
  top: -12px;
  left: 2px;
}

footer .small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .features,
  .stats,
  .steps {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 0;
  }

  .stats div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 18px 6%;
  }

  .brand-icon {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 1.75rem;
    letter-spacing: -1.5px;
  }

  .nav-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .hero,
  .section,
  .journey,
  .cta,
  .features {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-card {
    padding: 32px;
  }
}
