:root {
  --primary: #FF5A6E;
  --primary-deep: #EB4358;
  --background: #FFF9F5;
  --cream: #FFF2E7;
  --secondary: #3FC8B4;
  --secondary-deep: #1EA995;
  --highlight: #FFC53D;
  --text: #1F2430;
  --muted: #68707F;
  --line: rgba(31, 36, 48, 0.09);
  --glass: rgba(255, 255, 255, 0.66);
  --shadow: 0 30px 90px rgba(31, 36, 48, 0.12);
  --soft-shadow: 0 18px 50px rgba(31, 36, 48, 0.08);
  --radius: 34px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--text);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 90, 110, 0.12), transparent 24vw),
    radial-gradient(circle at 88% 12%, rgba(255, 197, 61, 0.14), transparent 18vw),
    radial-gradient(circle at 82% 82%, rgba(63, 200, 180, 0.13), transparent 22vw);
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .36;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 40;
  background: transparent;
}
.scroll-line span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--highlight));
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: min(var(--max), calc(100% - 34px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 249, 245, 0.72);
  backdrop-filter: blur(24px);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(31, 36, 48, 0.08);
}

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-icon { width: 56px; height: 56px; object-fit: contain; border-radius: 18px; }
.brand-wordmark { display: inline-flex; align-items: baseline; font-size: 32px; font-weight: 900; letter-spacing: -.05em; }
.brand-cadeau { color: var(--primary); }
.brand-picker { color: var(--text); }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav a:hover { background: rgba(255,255,255,.75); color: var(--text); transform: translateY(-1px); }
.nav .nav-cta { background: var(--text); color: white; box-shadow: 0 12px 28px rgba(31,36,48,.18); }
.nav .nav-cta:hover { background: #111722; color: white; }

.section-panel {
  position: relative;
  min-height: 100svh;
  padding: 120px max(24px, calc((100vw - var(--max)) / 2)) 92px;
}

.hero { display: grid; place-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.orb {
  position: absolute;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  filter: blur(6px);
  opacity: .22;
}
.orb-coral { background: var(--primary); left: -18vw; bottom: -18vw; }
.orb-teal { background: var(--secondary); right: -12vw; top: 5vw; }
.orb-gold { background: var(--highlight); right: 6vw; bottom: -15vw; }

.hero-inner {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.eyebrow, .kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 850;
  letter-spacing: .02em;
  font-size: 14px;
  text-transform: uppercase;
}
.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 0 8px rgba(63, 200, 180, .13);
}

h1, h2, h3 { margin-top: 0; letter-spacing: -.055em; line-height: .96; }
h1 {
  max-width: 9.8ch;
  margin-bottom: 26px;
  font-size: clamp(58px, 9vw, 118px);
  font-weight: 920;
}
h1 em { color: var(--primary); font-style: normal; }
.hero-lead {
  max-width: 670px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.62;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: min(680px, 100%);
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
}
.waitlist-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 18px 20px;
  color: var(--text);
  font-size: 16px;
}
.waitlist-form input::placeholder { color: #9AA0AA; }
.waitlist-form button, .button-link {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
  padding: 18px 26px;
  background: linear-gradient(135deg, var(--primary), #ff7484);
  color: white;
  font-weight: 850;
  box-shadow: 0 18px 40px rgba(255, 90, 110, .26);
  transition: transform .2s ease, box-shadow .2s ease;
}
.waitlist-form button:hover, .button-link:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(255,90,110,.32); }
.microcopy { color: var(--muted); font-size: 14px; margin: 12px 0 0 12px; }
.hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.hero-object { perspective: 1100px; }
.gift-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(520px, 82vw);
  aspect-ratio: 1 / 1;
  border-radius: 38%;
  background:
    linear-gradient(145deg, rgba(255,255,255,.85), rgba(255,255,255,.34)),
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.85), transparent 45%);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 45px 120px rgba(31,36,48,.13);
  transform-style: preserve-3d;
  overflow: hidden;
}
.gift-stage::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.9), transparent 62%);
  z-index: 0;
}
.gift-stage img { width: 74%; position: relative; z-index: 1; filter: drop-shadow(0 28px 34px rgba(31,36,48,.10)); }
.spark { position: absolute; z-index: 2; width: 42px; height: 42px; background: var(--highlight); clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%); }
.spark-one { left: 12%; top: 18%; }
.spark-two { right: 14%; top: 25%; transform: scale(.6); background: var(--secondary); }
.spark-three { right: 18%; bottom: 16%; transform: scale(.75); background: var(--primary); }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.scroll-cue i { width: 44px; height: 1px; background: var(--line); position: relative; display: block; }
.scroll-cue i::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid var(--muted); border-bottom: 1px solid var(--muted); transform: rotate(-45deg); }

.cinematic {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
  padding-top: 160px;
}
.sticky-copy { position: sticky; top: 150px; }
.cinematic h2, .section-heading h2, .showcase h2, .split h2, .final-cta h2 {
  font-size: clamp(42px, 6.2vw, 84px);
  max-width: 780px;
  margin-bottom: 24px;
}
.cinematic p:not(.kicker), .split-copy p, .final-cta p, .section-sub {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  max-width: 650px;
}
.phone-flow { min-height: 980px; position: relative; }
.flow-card {
  position: sticky;
  top: 150px;
  min-height: 285px;
  margin-bottom: 130px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}
.flow-card h3 { font-size: clamp(30px, 4vw, 54px); margin-bottom: 16px; }
.flow-card p { color: var(--muted); font-size: 20px; line-height: 1.6; margin: 0; }
.bubble-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  margin-bottom: 34px;
  color: white;
  background: var(--primary);
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(255,90,110,.24);
}
.card-b { transform: translateX(32px); }
.card-b .bubble-icon { background: var(--secondary); }
.card-c { transform: translateX(-18px); }
.card-c .bubble-icon { background: var(--highlight); color: var(--text); }

.steps { min-height: auto; padding-top: 130px; }
.section-heading { margin-bottom: 42px; }
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.48));
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  position: relative;
}
.step-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  right: -80px;
  top: -70px;
  background: rgba(255,90,110,.10);
}
.step-card:nth-child(2)::before { background: rgba(63,200,180,.14); }
.step-card:nth-child(3)::before { background: rgba(255,197,61,.18); }
.step-number { color: var(--primary); font-weight: 900; letter-spacing: .08em; margin-bottom: auto; }
.step-card h3 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 14px; }
.step-card p { margin: 0; color: var(--muted); line-height: 1.62; font-size: 17px; }

.showcase {
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.showcase-copy { max-width: 920px; }
.showcase .kicker { justify-content: center; }
.occasion-grid {
  width: min(940px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.occasion-grid span {
  padding: 22px 18px;
  min-height: 86px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: 0 12px 34px rgba(31,36,48,.07);
  color: var(--text);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
}
.split-visual { position: relative; min-height: 520px; }
.choice-card {
  position: absolute;
  left: 0;
  right: 8%;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
}
.choice-card small { display: block; color: var(--muted); font-weight: 800; margin-bottom: 10px; }
.choice-card strong { font-size: clamp(22px, 2.6vw, 34px); line-height: 1.14; letter-spacing: -.035em; }
.choice-card.active { top: 20px; transform: rotate(-2deg); }
.choice-card:nth-child(2) { top: 190px; left: 8%; right: 0; transform: rotate(2deg); }
.choice-card.result { top: 365px; left: 3%; right: 5%; border-color: rgba(63,200,180,.22); }
.choice-card.result::after {
  content: "✓";
  position: absolute;
  right: 24px;
  top: -28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--secondary);
  color: white;
  border: 7px solid var(--background);
  font-weight: 950;
}

.final-cta {
  min-height: 88svh;
  display: grid;
  place-items: center;
}
.cta-card {
  width: min(900px, 100%);
  text-align: center;
  padding: clamp(34px, 7vw, 76px);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.52)),
    radial-gradient(circle at 15% 15%, rgba(255,90,110,.12), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(63,200,180,.14), transparent 28%);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 45px 130px rgba(31,36,48,.12);
  backdrop-filter: blur(22px);
}
.cta-card img { width: 116px; margin: 0 auto 20px; }
.cta-card .kicker { justify-content: center; }
.cta-card p { margin-left: auto; margin-right: auto; }
.cta-form { margin: 32px auto 0; }

.site-footer {
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto 28px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(18px);
}
.site-footer span, .site-footer a { font-weight: 850; }
.site-footer a { color: var(--primary); }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="100"] { --delay: 100ms; }
[data-reveal-delay="120"] { --delay: 120ms; }
[data-reveal-delay="200"] { --delay: 200ms; }

.thankyou-page { min-height: 100svh; display: grid; place-items: center; padding: 24px; }
.thankyou {
  width: min(720px, 100%);
  text-align: center;
  padding: clamp(34px, 7vw, 74px);
  border-radius: 44px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.thankyou img { width: 130px; margin: 0 auto 20px; }
.thankyou h1 { max-width: none; font-size: clamp(44px, 7vw, 80px); margin-bottom: 18px; }
.thankyou p:not(.kicker) { color: var(--muted); font-size: 20px; line-height: 1.6; margin: 0 auto 28px; max-width: 540px; }
.button-link { display: inline-flex; }

@media (max-width: 980px) {
  .site-header { top: 12px; }
  .brand img { width: 178px; }
  .nav a:not(.nav-cta) { display: none; }
  .section-panel { padding-left: 22px; padding-right: 22px; }
  .hero-inner, .cinematic, .split { grid-template-columns: 1fr; }
  .hero-object { order: -1; padding-top: 42px; }
  .gift-stage { width: min(440px, 88vw); margin: 0 auto; }
  h1 { max-width: 11ch; }
  .sticky-copy { position: relative; top: auto; }
  .phone-flow { min-height: auto; }
  .flow-card { position: relative; top: auto; margin-bottom: 18px; transform: none !important; }
  .step-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 280px; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .split-visual { min-height: 500px; }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 20px); padding: 10px 10px 10px 14px; }
  .brand img { width: 152px; }
  .nav .nav-cta { padding: 11px 12px; font-size: 13px; }
  .section-panel { min-height: auto; padding-top: 106px; padding-bottom: 70px; }
  .hero { min-height: 100svh; }
  h1 { font-size: clamp(52px, 15vw, 82px); }
  .waitlist-form { grid-template-columns: 1fr; border-radius: 28px; padding: 12px; }
  .waitlist-form input { padding: 16px 16px; }
  .waitlist-form button { width: 100%; }
  .microcopy { margin-left: 0; text-align: center; }
  .occasion-grid { grid-template-columns: 1fr; }
  .choice-card { right: 0; }
  .choice-card:nth-child(2) { left: 0; }
  .site-footer { border-radius: 26px; flex-direction: column; align-items: flex-start; }
}


.final-cta .cta-card > img { width: 88px; height: 88px; object-fit: contain; border-radius: 28px; }
.thankyou img { width: 120px; height: 120px; object-fit: contain; border-radius: 32px; }

@media (max-width: 720px) { .brand-icon { width: 46px; height: 46px; } .brand-wordmark { font-size: 26px; } }
