:root {
  --cream: #FBF6F1;
  --cream-2: #F4ECE4;
  --paper: #FFFFFF;
  --ink: #2B2330;
  --ink-soft: #6E6470;
  --rose: #E45A6B;
  --rose-dark: #C13B54;
  --rose-soft: #FCE6E9;
  --gold: #E0A458;
  --line: #ECE2D9;
  --shadow: 0 18px 50px rgba(43, 35, 48, 0.12);
  --shadow-sm: 0 6px 20px rgba(43, 35, 48, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.1; margin: 0; }

.accent { color: var(--rose); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 8px 20px rgba(228, 90, 107, 0.30);
}
.btn:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(228, 90, 107, 0.38); }
.btn:active { transform: translateY(0); }
.btn--small { padding: 10px 18px; font-size: 14px; }
.btn--large { padding: 16px 32px; font-size: 17px; }
.btn--full { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 241, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { text-decoration: none; }
.brand__mark {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.brand__mark--small { font-size: 20px; color: var(--rose); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 64px; overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--rose-dark);
  background: var(--rose-soft);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__title { font-size: clamp(44px, 6vw, 72px); font-weight: 600; letter-spacing: -1.5px; }
.hero__sub { font-size: 18px; color: var(--ink-soft); max-width: 33ch; margin: 22px 0 32px; }
.hero__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__cta-note { font-size: 14px; color: var(--ink-soft); }

/* ---------- Phone mockup ---------- */
.hero__art { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: #1d1822;
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.phone__notch {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px;
  background: #1d1822;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone__screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #FCE6E9 0%, #FBF6F1 60%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.card-stack { position: absolute; inset: 38px 22px; }
.profile-card {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}
.profile-card--back { transform: rotate(-6deg) scale(0.92); opacity: 0.5; }
.profile-card--mid { transform: rotate(4deg) scale(0.96); opacity: 0.75; }
.profile-card--front { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.profile-card__photo {
  flex: 1;
  border-radius: 16px;
  background: linear-gradient(150deg, #E45A6B, #E0A458);
}
.profile-card__row { display: flex; align-items: center; justify-content: space-between; }
.profile-card__name { font-family: "Fraunces", serif; font-weight: 600; font-size: 18px; }
.verified {
  font-size: 11px; font-weight: 600; color: #2e7d5b;
  background: #e3f5ec; padding: 3px 8px; border-radius: 999px;
}
.profile-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.profile-card__tags span {
  font-size: 11px; color: var(--ink-soft);
  background: var(--cream); padding: 4px 9px; border-radius: 999px;
}
.profile-card__date {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--rose-dark);
  background: var(--rose-soft); padding: 8px 10px; border-radius: 10px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); }

/* ---------- Sections ---------- */
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 600; letter-spacing: -0.5px; }

.values { padding: 64px 0; }
.values .section-title { text-align: center; margin-bottom: 44px; }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.value__icon { font-size: 34px; margin-bottom: 14px; }
.value h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.value p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ---------- Cities ---------- */
.cities { padding: 40px 0 64px; }
.cities__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(140deg, #2B2330, #443a4d);
  color: #fff;
  border-radius: 28px;
  padding: 44px;
}
.cities__inner .section-title { color: #fff; margin-bottom: 16px; }
.cities__copy { color: rgba(255,255,255,0.78); font-size: 16px; margin: 0; }
.cities__copy strong { color: #fff; }
.cities__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.cities__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.cities__list em { font-weight: 400; color: rgba(255,255,255,0.6); font-style: normal; }
.cities__dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }
.cities__dot--live { background: #4ade80; box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25); }

/* ---------- Waitlist form ---------- */
.waitlist { padding: 24px 0 80px; }
.waitlist__inner { max-width: 560px; margin: 0 auto; text-align: center; }
.waitlist__sub { color: var(--ink-soft); font-size: 17px; margin: 12px 0 32px; }
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: left;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.optional { font-weight: 400; color: var(--ink-soft); }
.field input, .field select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-soft);
  background: #fff;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 6px 0 22px;
  cursor: pointer;
}
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--rose); flex-shrink: 0; }
.form__privacy { font-size: 13px; color: var(--ink-soft); text-align: center; margin: 16px 0 0; }
.form__error {
  color: var(--rose-dark);
  background: var(--rose-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  margin: 16px 0 0;
}

/* ---------- Success ---------- */
.success {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  animation: pop 0.4s ease;
}
.success__check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #e3f5ec;
  color: #2e7d5b;
  font-size: 32px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.success h3 { font-size: 26px; font-weight: 600; margin-bottom: 10px; }
.success p { color: var(--ink-soft); margin: 0; }
@keyframes pop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 32px 0; }
.footer__inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer__tag { color: var(--ink-soft); font-style: italic; }
.footer__copy { margin-left: auto; color: var(--ink-soft); font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__art { margin-top: 20px; }
  .values__grid { grid-template-columns: 1fr; }
  .cities__inner { grid-template-columns: 1fr; padding: 32px; }
  .footer__copy { margin-left: 0; width: 100%; }
}
