:root {
  color-scheme: light;
  --cream: #fff8f0;
  --cream-deep: #f9efe4;
  --surface: rgba(255, 252, 247, 0.88);
  --rose: #d86f91;
  --rose-deep: #bf5d7b;
  --rose-soft: #f8d6e2;
  --sage: #8fae91;
  --ink: #44353a;
  --muted: #7e7074;
  --line: rgba(126, 112, 116, 0.18);
  --shadow: 0 18px 48px rgba(91, 61, 70, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 10%, rgba(248, 214, 226, 0.72), transparent 30%),
    linear-gradient(145deg, #fffaf4 0%, var(--cream) 44%, #fff2ef 100%);
  color: var(--ink);
  font-family: var(--sans);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.48), transparent 28%, rgba(255, 255, 255, 0.32)),
    repeating-linear-gradient(100deg, transparent 0 18px, rgba(216, 111, 145, 0.025) 18px 20px);
  pointer-events: none;
}

body[data-theme="green"] {
  --cream: #fbfbf0;
  --cream-deep: #eff4e8;
  --surface: rgba(254, 253, 247, 0.9);
  --rose: #8fae91;
  --rose-deep: #6f9672;
  --rose-soft: #dcebd3;
  --sage: #6f9672;
  --ink: #354036;
  --muted: #687267;
  --line: rgba(111, 150, 114, 0.22);
  --shadow: 0 18px 48px rgba(55, 74, 58, 0.13);
  background:
    radial-gradient(circle at 12% 10%, rgba(220, 235, 211, 0.76), transparent 30%),
    linear-gradient(145deg, #fffdf5 0%, var(--cream) 44%, #f0f7e9 100%);
}

body[data-theme="green"]::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 28%, rgba(255, 255, 255, 0.34)),
    repeating-linear-gradient(100deg, transparent 0 18px, rgba(111, 150, 114, 0.034) 18px 20px);
}

body[data-theme="green"] button:not(.theme-choice) {
  background: linear-gradient(135deg, #a9c9a7, var(--rose-deep));
  box-shadow: 0 14px 26px rgba(111, 150, 114, 0.24);
}

main {
  overflow: hidden;
}

.hero,
.how-it-works,
.privacy,
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: center;
  min-height: 100svh;
  padding: 52px 0 44px;
}

.hero-copy {
  max-width: 640px;
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(91, 61, 70, 0.06);
}

.theme-switcher span {
  padding-left: 9px;
  font-size: 0.82rem;
  font-weight: 700;
}

.theme-choice {
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0 13px;
  box-shadow: none;
  font-size: 0.82rem;
}

.theme-choice:hover {
  transform: none;
}

.theme-choice.is-active {
  border-color: var(--line);
  background: var(--rose-soft);
  color: var(--rose-deep);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: clamp(4.1rem, 12vw, 8.6rem);
  font-weight: 700;
  line-height: 0.88;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.lead {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.waitlist-card {
  width: min(100%, 600px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.waitlist-card label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
}

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

input,
button {
  min-height: 54px;
  border-radius: 18px;
  font: inherit;
}

input {
  width: 100%;
  border: 1px solid rgba(191, 93, 123, 0.28);
  background: rgba(255, 248, 240, 0.74);
  color: var(--ink);
  padding: 0 16px;
  outline: none;
}

input:focus {
  border-color: rgba(191, 93, 123, 0.72);
  box-shadow: 0 0 0 4px rgba(216, 111, 145, 0.16);
}

button {
  border: 0;
  background: linear-gradient(135deg, #e58aa5, var(--rose-deep));
  color: #fffaf8;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(191, 93, 123, 0.25);
}

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

button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.success {
  color: #527b5b;
}

.form-note.error {
  color: #a84e65;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.7);
  color: var(--muted);
  font-size: 0.9rem;
}

.phone-stage {
  position: relative;
  min-height: 640px;
}

.screen-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 10px solid #211f20;
  border-radius: 42px;
  background: #fffaf4;
  box-shadow: var(--shadow), 0 8px 0 rgba(255, 255, 255, 0.7) inset;
}

.screen-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-home {
  top: 0;
  right: 0;
  z-index: 2;
  width: min(360px, 78vw);
  aspect-ratio: 1080 / 2376;
}

.screen-activity {
  bottom: 20px;
  left: 0;
  z-index: 1;
  width: 250px;
  aspect-ratio: 1080 / 2376;
  transform: rotate(-4deg);
  opacity: 0.92;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 10px solid #211f20;
  border-radius: 42px;
  background: linear-gradient(180deg, #fffaf5, #fff5ef);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.phone-main {
  top: 0;
  right: 0;
  z-index: 2;
  width: min(360px, 78vw);
  min-height: 640px;
  padding: 18px;
}

.phone-side {
  bottom: 20px;
  left: 0;
  z-index: 1;
  width: 250px;
  min-height: 440px;
  padding: 16px;
  transform: rotate(-4deg);
  opacity: 0.9;
}

.phone-top,
.app-brand,
.used-card,
.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-top {
  color: #272223;
  font-size: 0.78rem;
  font-weight: 700;
}

.app-brand {
  gap: 12px;
  justify-content: flex-start;
  margin: 20px 0;
}

.brand-mark,
.app-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  font-weight: 800;
}

.brand-mark {
  width: 48px;
  height: 48px;
  background: var(--rose-soft);
  color: var(--rose-deep);
}

.app-brand strong {
  display: block;
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.app-brand small,
.helper,
.app-row small,
.flower-card small {
  color: var(--muted);
}

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

.metric-grid article,
.used-card,
.mini-card,
.flower-card,
.steps article,
.privacy-card,
.privacy-points article {
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 10px 24px rgba(91, 61, 70, 0.09);
}

.metric-grid article {
  min-height: 132px;
  padding: 16px 14px;
  border-radius: 24px;
}

.metric-grid span,
.used-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.metric-grid strong {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--ink);
}

.used-card {
  margin-top: 12px;
  padding: 14px;
  border-radius: 20px;
}

.helper {
  margin: 16px 0;
  font-size: 0.83rem;
  text-align: center;
}

.screen-section-title {
  margin: 18px 0 10px;
  font-weight: 800;
}

.app-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.78);
}

.app-row {
  gap: 12px;
  justify-content: flex-start;
  padding: 12px;
}

.app-row + .app-row {
  border-top: 1px solid var(--line);
}

.app-row.active {
  background: rgba(248, 214, 226, 0.5);
}

.app-icon {
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 0.72rem;
}

.instagram {
  background: linear-gradient(135deg, #feda75, #d62976 45%, #4f5bd5);
}

.tiktok {
  background: #111;
}

.radio {
  width: 24px;
  height: 24px;
  margin-left: auto;
  border: 7px solid var(--rose-deep);
  border-radius: 999px;
}

.radio.empty {
  border: 2px solid rgba(68, 53, 58, 0.42);
}

.app-button {
  width: 100%;
  margin-top: 16px;
}

.phone-side h2 {
  margin: 18px 0;
  font-size: 2.4rem;
}

.mini-card,
.flower-card {
  padding: 16px;
  border-radius: 24px;
}

.bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 130px;
  margin-top: 16px;
}

.bars i {
  display: block;
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e78ba6, #f5becb);
}

.flower-card {
  margin-top: 14px;
  text-align: center;
}

.flower {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 12px auto 4px;
  border-radius: 32px;
  background: #fff1e6;
}

.flower::before {
  position: absolute;
  left: 48px;
  top: 38px;
  width: 12px;
  height: 52px;
  border-radius: 999px;
  background: var(--sage);
  content: "";
}

.flower::after {
  position: absolute;
  left: 34px;
  top: 26px;
  width: 42px;
  height: 34px;
  border-radius: 50% 50% 45% 45%;
  background: var(--rose-soft);
  box-shadow: 22px 8px 0 #ef9eb5, 10px 24px 0 #f5b8c8;
  content: "";
}

.flower i {
  position: absolute;
  left: 28px;
  bottom: 14px;
  width: 58px;
  height: 18px;
  border-radius: 50%;
  background: #835633;
}

.how-it-works,
.privacy {
  padding: 70px 0;
}

.how-it-works {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.steps,
.privacy-points {
  display: grid;
  gap: 16px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.steps article,
.privacy-points article,
.privacy-card {
  border-radius: 26px;
  padding: 22px;
}

.steps article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-weight: 800;
}

.steps p,
.privacy p,
.privacy-points p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.privacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.privacy-card {
  background: linear-gradient(135deg, var(--rose-soft), rgba(255, 252, 247, 0.9));
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 48px;
  color: var(--muted);
}

footer span {
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
}

footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 34px;
  }

  .phone-stage {
    min-height: 620px;
  }

  .screen-home {
    left: 50%;
    right: auto;
    transform: translateX(-42%);
  }

  .screen-activity {
    left: 4%;
  }

  .phone-main {
    left: 50%;
    right: auto;
    transform: translateX(-44%);
  }

  .phone-side {
    left: 4%;
  }

  .how-it-works,
  .privacy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero,
  .how-it-works,
  .privacy,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .email-row,
  .steps {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    display: grid;
    min-height: auto;
  }

  .screen-card {
    position: relative;
    inset: auto;
    width: min(100%, 330px);
    margin: 0 auto;
    transform: none;
  }

  .screen-activity {
    display: none;
  }

  .phone-main {
    width: min(342px, 96vw);
    min-height: 628px;
    transform: translateX(-50%);
  }

  .phone-side {
    display: none;
  }

  .metric-grid strong {
    font-size: 2rem;
  }

  footer {
    flex-direction: column;
  }
}
