/* ============================================================
   WAVY — wavydating.com
   Style: Vibrant & Block-based · rose #D31C5C + electric blue
   Type: Outfit (display) / Work Sans (body)
   ============================================================ */

:root {
  /* brand */
  --rose:        #D31C5C;
  --rose-bright: #FF4D8D;
  --rose-deep:   #A30E45;
  --rose-tint:   #FFF1F4;
  --rose-soft:   #FFE0EA;
  --blue:        #2563EB;
  --blue-bright: #3B82F6;

  /* neutrals */
  --ink:    #15070E;   /* near-black plum */
  --ink-2:  #0B0712;   /* deepest */
  --paper:  #FFFFFF;
  --cream:  #FFF7F9;
  --muted:  #6B5560;
  --line:   #F1D9E1;

  --maxw: 1200px;
  --r:   18px;
  --r-lg: 26px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow:    0 18px 50px -18px rgba(163, 14, 69, .35);
  --shadow-lg: 0 40px 90px -30px rgba(21, 7, 14, .45);

  --pad: clamp(20px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Work Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand__word { font-family: "Outfit", sans-serif; line-height: 1.02; letter-spacing: -.02em; }

a { color: inherit; text-decoration: none; }
em { font-style: normal; }
strong { font-weight: 600; }

.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.grad { background: linear-gradient(100deg, var(--rose-bright), var(--rose)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-l { background: linear-gradient(100deg, #fff, #FFD0DF); -webkit-background-clip: text; background-clip: text; color: transparent; }

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

/* grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- buttons ---------- */
.btn {
  --b-bg: var(--rose); --b-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: .98rem;
  padding: .82em 1.4em; border-radius: 100px; border: 0; cursor: pointer;
  background: var(--b-bg); color: var(--b-fg); white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.btn--primary { box-shadow: 0 12px 30px -10px rgba(211,28,92,.7); }
.btn--primary:hover { box-shadow: 0 18px 40px -10px rgba(211,28,92,.85); }
.btn--blue { --b-bg: var(--blue); box-shadow: 0 12px 30px -10px rgba(37,99,235,.6); }
.btn--ghost { --b-bg: transparent; --b-fg: var(--ink); border: 1.6px solid var(--line); }
.btn--ghost:hover { border-color: var(--rose); color: var(--rose); }
.btn--lg { padding: 1.02em 1.7em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 100; transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s; }
.nav.scrolled { background: rgba(255,255,255,.82); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); }
.nav__inner { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; height: 72px; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; }
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 6px 14px rgba(211,28,92,.4)); }
.brand__word { font-size: 1.45rem; letter-spacing: -.04em; }
.brand__logo { height: 34px; width: auto; display: block; filter: drop-shadow(0 5px 12px rgba(211,28,92,.18)); transition: transform .2s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.04); }
.brand__logo--foot { height: 46px; filter: none; }
.nav__links { margin-left: auto; display: flex; gap: 1.8rem; font-weight: 500; font-size: .96rem; }
.nav__links a { position: relative; padding: .3em 0; color: var(--ink); opacity: .8; transition: opacity .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--rose); transition: width .25s var(--ease); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__cta .btn--ghost { border: 0; padding: .6em 1em; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__burger span { width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; gap: .2rem; padding: 1rem 1.25rem 1.5rem; background: rgba(255,255,255,.97); backdrop-filter: blur(16px); border-top: 1px solid var(--line); }
.nav__mobile a { padding: .85rem .4rem; font-family: "Outfit"; font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
.nav__mobile .btn { margin-top: .8rem; border: 0; }

/* ============ HERO ============ */
.hero { position: relative; padding: 132px var(--pad) 60px; overflow: hidden; background: radial-gradient(120% 90% at 80% -10%, #FFE7EF 0%, var(--cream) 45%, #fff 100%); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.orb--rose { width: 460px; height: 460px; background: radial-gradient(circle, var(--rose-bright), transparent 70%); top: -120px; right: -60px; animation: float 14s ease-in-out infinite; }
.orb--blue { width: 380px; height: 380px; background: radial-gradient(circle, var(--blue-bright), transparent 70%); bottom: -160px; left: -100px; opacity: .3; animation: float 18s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, 40px); } }

.hero__grid { position: relative; width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; min-height: 70vh; }

.eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-deep); background: var(--rose-soft); padding: .5em 1em; border-radius: 100px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 0 rgba(211,28,92,.6); animation: blink 1.6s infinite; }
@keyframes blink { 0%,100% { box-shadow: 0 0 0 0 rgba(211,28,92,.6); } 50% { box-shadow: 0 0 0 7px rgba(211,28,92,0); } }

.hero__title { font-size: clamp(2.7rem, 6.4vw, 5.1rem); font-weight: 800; margin: 1.1rem 0 0; }
.hero__title em { color: var(--rose); }
.hero__sub { font-size: clamp(1.06rem, 1.7vw, 1.32rem); color: var(--muted); max-width: 30ch; margin: 1.4rem 0 2rem; }
.hero__sub strong { color: var(--ink); }
.hero__actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero__stores { display: flex; gap: .7rem; margin-top: 1.7rem; flex-wrap: wrap; }
.store { display: inline-flex; align-items: center; gap: .6rem; padding: .55em 1.1em; border-radius: 14px; background: var(--ink); color: #fff; transition: transform .2s var(--ease), box-shadow .2s; }
.store:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.store span { display: flex; flex-direction: column; font-family: "Outfit"; font-weight: 600; font-size: 1rem; line-height: 1.1; }
.store small { font-weight: 400; font-size: .62rem; opacity: .8; letter-spacing: .04em; }
.store--dark { background: #fff; color: var(--ink); }

.hero__proof { margin-top: 1.8rem; font-size: 1rem; color: var(--muted); font-weight: 500; }
.hero__proof strong { color: var(--rose); }
.proof__num { font-family: "Outfit"; font-weight: 800; color: var(--ink); }

.scroll-hint { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); display: inline-flex; flex-direction: column; align-items: center; gap: 2px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,6px); } }

/* ---- radar + phone stage ---- */
.hero__stage { position: relative; display: grid; place-items: center; min-height: 540px; }
.radar { position: absolute; width: 480px; height: 480px; display: grid; place-items: center; }
.radar__ring { position: absolute; border: 1.5px solid rgba(211,28,92,.35); border-radius: 50%; width: 100%; height: 100%; animation: sonar 3.4s ease-out infinite; }
.radar__ring:nth-child(2) { animation-delay: 1.1s; }
.radar__ring:nth-child(3) { animation-delay: 2.2s; }
@keyframes sonar { 0% { transform: scale(.25); opacity: .9; } 100% { transform: scale(1); opacity: 0; } }
.pin { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.18); animation: pinpop 4s ease-in-out infinite; }
.pin--1 { top: 14%; left: 20%; animation-delay: .2s; }
.pin--2 { top: 30%; right: 12%; background: var(--rose); box-shadow: 0 0 0 4px rgba(211,28,92,.18); animation-delay: 1.4s; }
.pin--3 { bottom: 20%; left: 14%; animation-delay: 2.1s; }
.pin--4 { bottom: 14%; right: 22%; background: var(--rose); box-shadow: 0 0 0 4px rgba(211,28,92,.18); animation-delay: 3s; }
@keyframes pinpop { 0%,100% { transform: scale(.6); opacity: .4; } 50% { transform: scale(1); opacity: 1; } }

.phone { position: relative; width: 280px; height: 560px; background: linear-gradient(160deg, #1c0a16, #2a0d1d); border-radius: 44px; padding: 12px; box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,.06) inset; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone__notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #0c0510; border-radius: 0 0 16px 16px; z-index: 3; }
.phone__screen { position: relative; height: 100%; border-radius: 33px; background: linear-gradient(180deg, #2a0a18 0%, #15070e 100%); overflow: hidden; display: flex; flex-direction: column; }
.appbar { display: flex; justify-content: space-between; align-items: center; padding: 38px 18px 14px; color: #fff; font-size: .8rem; }
.appbar__live { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: #FFC0D4; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #36E07F; box-shadow: 0 0 8px #36E07F; animation: blink 1.4s infinite; }
.appbar__time { opacity: .6; font-variant-numeric: tabular-nums; }

.offer { margin: 6px 14px 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; overflow: hidden; backdrop-filter: blur(4px); animation: cardin .5s var(--ease) both; }
.offer__photo { position: relative; height: 230px; background: radial-gradient(120% 120% at 30% 20%, #FF6FA1, #D31C5C 60%, #7a0c34); display: grid; place-items: center; }
.offer__avatar { font-family: "Outfit"; font-weight: 800; font-size: 4rem; color: rgba(255,255,255,.92); }
.offer__loc { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 4px; font-size: .68rem; font-weight: 600; color: #fff; background: rgba(0,0,0,.35); padding: .3em .6em; border-radius: 100px; backdrop-filter: blur(4px); }
.offer__body { padding: 14px 16px 18px; color: #fff; }
.offer__name { font-family: "Outfit"; font-weight: 700; font-size: 1.25rem; display: flex; align-items: center; gap: .35rem; }
.verify { font-size: .7rem; color: #fff; background: var(--blue); width: 16px; height: 16px; border-radius: 50%; display: inline-grid; place-items: center; }
.offer__line { font-size: .8rem; opacity: .7; margin-top: 2px; }
.offer__row { display: flex; justify-content: center; gap: 1.2rem; margin-top: 16px; }
.offer__btn { width: 54px; height: 54px; border-radius: 50%; border: 0; display: grid; place-items: center; cursor: pointer; transition: transform .2s var(--ease); }
.offer__btn:hover { transform: scale(1.08); }
.offer__btn--pass { background: rgba(255,255,255,.12); color: #fff; }
.offer__btn--yes { background: linear-gradient(135deg, var(--rose-bright), var(--rose)); color: #fff; box-shadow: 0 10px 24px -8px rgba(211,28,92,.9); }

.match { position: absolute; inset: 0; padding: 60px 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem; background: radial-gradient(120% 80% at 50% 30%, #ff4f8d, #c2154f 70%, #7a0c34); color: #fff; text-align: center; animation: cardin .5s var(--ease) both; }
.match__burst { font-family: "Outfit"; font-weight: 800; font-size: 2rem; animation: pop .5s var(--ease) both; }
.match__sub { opacity: .85; font-size: .9rem; }
.match__chat { margin-top: 22px; display: flex; flex-direction: column; gap: .55rem; width: 100%; }
.bubble { max-width: 80%; padding: .6em .9em; border-radius: 16px; font-size: .82rem; }
.bubble--in { align-self: flex-start; background: rgba(255,255,255,.18); border-bottom-left-radius: 4px; animation: cardin .4s .15s var(--ease) both; }
.bubble--out { align-self: flex-end; background: #fff; color: var(--rose-deep); border-bottom-right-radius: 4px; font-weight: 500; animation: cardin .4s .4s var(--ease) both; }
@keyframes cardin { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }

/* ============ TICKER ============ */
.ticker { background: var(--rose); color: #fff; padding: 1.1rem 0; overflow: hidden; border-block: 0; }
.ticker__track { display: inline-flex; gap: 2rem; white-space: nowrap; align-items: center; animation: marquee 26s linear infinite; font-family: "Outfit"; font-weight: 800; font-size: clamp(1.3rem, 3vw, 2.1rem); text-transform: uppercase; letter-spacing: -.01em; }
.ticker__track .sep { color: rgba(255,255,255,.45); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ WHY ============ */
.kicker { font-family: "Outfit"; font-weight: 700; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose); }
.kicker--light { color: #FFB3CC; }

.why { padding: clamp(70px, 11vw, 140px) var(--pad); background: var(--paper); }
.why__head { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; margin-top: .8rem; max-width: 14ch; }
.strike { position: relative; color: var(--muted); }
.strike::after { content: ""; position: absolute; left: -2%; right: -2%; top: 52%; height: .12em; background: var(--rose); transform: scaleX(0); transform-origin: left; border-radius: 4px; }
.strike.in-view::after { transform: scaleX(1); transition: transform .7s .3s var(--ease); }

.why__split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 5rem); margin-top: 3rem; align-items: center; }
.why__lead p { font-size: clamp(1.2rem, 2vw, 1.55rem); margin-bottom: 1rem; }
.why__lead .muted { color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.18rem); }
.why__punch { font-family: "Outfit"; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: 1.5rem !important; }

.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center; padding: 1.8rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); }
.compare__col { text-align: center; }
.compare__tag { font-family: "Outfit"; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 1rem; }
.compare__col--new .compare__tag { color: var(--rose); }
.facegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.facegrid span { aspect-ratio: 1; border-radius: 9px; overflow: hidden; opacity: .75; filter: grayscale(.5); }
.facegrid span img { width: 100%; height: 100%; object-fit: cover; display: block; }
.compare__note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.compare__vs { font-family: "Outfit"; font-weight: 800; color: var(--rose); font-size: 1.1rem; }
.onebtn { display: grid; place-items: center; aspect-ratio: 1; }
.onebtn__btn { position: relative; width: 110px; height: 110px; border-radius: 50%; border: 0; cursor: pointer; background: linear-gradient(135deg, var(--rose-bright), var(--rose)); color: #fff; font-family: "Outfit"; font-weight: 700; font-size: 1.05rem; box-shadow: 0 14px 34px -10px rgba(211,28,92,.8); }
.onebtn__ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--rose); animation: sonar 2.6s ease-out infinite; }

/* ============ LIVE MATCH ============ */
.live { padding: clamp(70px, 11vw, 140px) var(--pad); background: linear-gradient(180deg, var(--ink) 0%, #240a18 100%); color: #fff; position: relative; overflow: hidden; }
.live::before { content: ""; position: absolute; top: -200px; right: -120px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(211,28,92,.5), transparent 70%); filter: blur(80px); pointer-events: none; }
.sec-head { max-width: 720px; position: relative; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head__title { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; margin-top: .8rem; }
.sec-head__sub { color: rgba(255,255,255,.72); font-size: clamp(1.02rem, 1.6vw, 1.22rem); margin-top: 1.2rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3.4rem; }
.step { position: relative; padding: 2rem 1.5rem; border-radius: var(--r-lg); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); transition: transform .3s var(--ease), background .3s, border-color .3s; }
.step:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); border-color: rgba(255,77,141,.5); }
.step__n { position: absolute; top: 1.4rem; right: 1.6rem; font-family: "Outfit"; font-weight: 800; font-size: 2.4rem; color: rgba(255,255,255,.08); }
.step__ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(135deg, var(--rose-bright), var(--rose)); color: #fff; margin-bottom: 1.2rem; box-shadow: 0 10px 24px -10px rgba(211,28,92,.9); }
.step__ic svg { width: 26px; height: 26px; }
.step h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: .5rem; }
.step p { font-size: .94rem; color: rgba(255,255,255,.66); }

.live__note { margin-top: 2.4rem; display: inline-flex; align-items: center; gap: .7rem; flex-wrap: wrap; padding: 1rem 1.4rem; border-radius: 100px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); font-size: .96rem; color: rgba(255,255,255,.85); }
.live__note svg { color: var(--rose-bright); flex-shrink: 0; }
.live__note strong { color: #fff; }
.live__note a { color: var(--rose-bright); font-weight: 600; }
.live__note a:hover { text-decoration: underline; }

/* ============ SPOTS ============ */
.spots { padding: clamp(70px, 11vw, 140px) var(--pad); background: var(--cream); }
.spots__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.spots__title { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; margin-top: .8rem; }
.spots__sub { color: var(--muted); font-size: clamp(1.04rem, 1.6vw, 1.22rem); margin-top: 1.2rem; }
.spots__list { list-style: none; margin-top: 2rem; display: grid; gap: 1.1rem; }
.spots__list li { display: flex; gap: .9rem; align-items: flex-start; font-size: 1.02rem; }
.spots__list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--rose); color: #fff; display: grid; place-items: center; margin-top: 2px; }
.spots__list strong { color: var(--ink); }

.spots__map { position: relative; }
.map { position: relative; aspect-ratio: 1.05; border-radius: var(--r-lg); background: linear-gradient(160deg, #fff, #FFEAF1); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.map__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(211,28,92,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(211,28,92,.08) 1px, transparent 1px); background-size: 44px 44px; }
.map__route { position: absolute; left: 18%; top: 60%; width: 52%; height: 28%; border: 2.5px dashed rgba(211,28,92,.4); border-radius: 60% 40% 50% 50%; border-right: 0; border-bottom: 0; }
.map__pin { position: absolute; width: 18px; height: 18px; border-radius: 50% 50% 50% 0; background: var(--rose); transform: rotate(-45deg); border: 0; cursor: default; box-shadow: 0 6px 14px -4px rgba(211,28,92,.8); }
.map__pin--a { top: 34%; left: 40%; }
.map__pin--b { top: 60%; left: 24%; background: var(--blue); box-shadow: 0 6px 14px -4px rgba(37,99,235,.8); }
.map__pin--c { top: 22%; left: 66%; background: var(--blue); box-shadow: 0 6px 14px -4px rgba(37,99,235,.8); }
.map__pulse { position: absolute; inset: -6px; border-radius: 50%; background: rgba(211,28,92,.4); transform: rotate(45deg); animation: ping 2.2s ease-out infinite; }
@keyframes ping { 0% { transform: rotate(45deg) scale(.6); opacity: .8; } 100% { transform: rotate(45deg) scale(2.4); opacity: 0; } }
.map__card { position: absolute; bottom: 130%; left: 50%; transform: rotate(45deg) translate(-46%, 0); transform-origin: center; width: max-content; background: #fff; border-radius: 12px; padding: .55rem .8rem; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.map__card strong { font-family: "Outfit"; font-size: .9rem; }
.map__card small { color: var(--muted); font-size: .72rem; }
.map__you { position: absolute; bottom: 16%; right: 20%; font-family: "Outfit"; font-weight: 700; font-size: .72rem; color: #fff; background: var(--ink); padding: .3em .7em; border-radius: 100px; }
.map__you::before { content: ""; position: absolute; top: -22px; left: 50%; transform: translateX(-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(37,99,235,.25); }
.spots__cards { display: grid; gap: .7rem; margin-top: 1rem; }
.spotcard { display: flex; align-items: center; gap: .8rem; padding: .85rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; transition: transform .2s var(--ease), box-shadow .2s; }
.spotcard:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.spotcard__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.spotcard__dot.is-public { background: #36C46A; }
.spotcard__dot.is-private { background: var(--blue); }
.spotcard div { display: flex; flex-direction: column; line-height: 1.3; }
.spotcard strong { font-family: "Outfit"; font-size: .98rem; }
.spotcard small { color: var(--muted); font-size: .78rem; }
.spotcard__go { margin-left: auto; font-family: "Outfit"; font-weight: 600; font-size: .85rem; color: var(--rose); }


/* ============ SHOWCASE ============ */
.showcase { padding: clamp(70px, 11vw, 140px) var(--pad); background: radial-gradient(120% 80% at 50% -10%, #2a0a18 0%, var(--ink) 55%, var(--ink-2) 100%); color: #fff; overflow: hidden; }
.showcase .sec-head__sub { color: rgba(255,255,255,.72); }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 2.2rem); margin-top: 3.6rem; }
.shot { margin: 0; border-radius: 28px; overflow: hidden; background: #fff; border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-lg); transition: transform .4s var(--ease), box-shadow .4s; }
.shot:nth-child(2) { transform: translateY(-22px); }
.shot:hover { transform: translateY(-10px); box-shadow: 0 50px 110px -30px rgba(211,28,92,.5); }
.shot:nth-child(2):hover { transform: translateY(-32px); }
.shot img { display: block; width: 100%; height: auto; }
@media (max-width: 760px) {
  .shots { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 80%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1.2rem; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); -webkit-overflow-scrolling: touch; }
  .shot { scroll-snap-align: center; }
  .shot:nth-child(2) { transform: none; }
}

/* ============ FINAL CTA ============ */
.cta { position: relative; isolation: isolate; padding: clamp(90px, 13vw, 160px) var(--pad); background: var(--rose-deep); color: #fff; overflow: hidden; text-align: center; }
.cta__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(150deg, rgba(211,28,92,.84) 0%, rgba(120,12,52,.92) 55%, rgba(11,7,18,.9) 100%); }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(80% 60% at 50% 35%, transparent 40%, rgba(11,7,18,.5) 100%); }
.cta__inner { position: relative; z-index: 1; }
.cta__title { font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 800; }
.cta__title .grad { background: linear-gradient(100deg, #fff, #FFD9E5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta__sub { font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: rgba(255,255,255,.9); max-width: 40ch; margin: 1.2rem auto 2.4rem; }

.waitlist { max-width: 540px; margin-inline: auto; }
.waitlist__row { display: flex; gap: .6rem; background: #fff; padding: .45rem; border-radius: 100px; box-shadow: var(--shadow-lg); }
.waitlist input { flex: 1; border: 0; background: transparent; padding: .7em 1.2em; font-family: "Work Sans"; font-size: 1.02rem; color: var(--ink); outline: 0; min-width: 0; }
.waitlist input::placeholder { color: #b39aa4; }
.waitlist .btn { flex-shrink: 0; }
.waitlist__msg { min-height: 1.4em; margin-top: 1rem; font-weight: 500; font-size: .96rem; }
.waitlist__msg.ok { color: #BFFFD8; }
.waitlist__msg.err { color: #FFD7D7; }
.cta__stores { display: flex; gap: .7rem; justify-content: center; margin-top: 2.4rem; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.foot { background: var(--ink-2); color: rgba(255,255,255,.7); padding: clamp(50px, 7vw, 84px) var(--pad) 2rem; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.foot__brand .brand { color: #fff; margin-bottom: 1rem; }
.foot__brand p { font-size: .95rem; max-width: 26ch; }
.foot__dot { color: var(--rose-bright); font-weight: 600; margin-top: .6rem; }
.foot__address { font-size: .82rem; color: rgba(255,255,255,.4); margin-top: .9rem; line-height: 1.65; max-width: 28ch; }
.foot__email { display: inline-block; font-size: .85rem; color: var(--rose-bright); margin-top: .7rem; transition: opacity .2s; }
.foot__email:hover { opacity: .75; }
.foot__h { font-family: "Outfit"; font-weight: 700; color: #fff; font-size: .9rem; letter-spacing: .04em; margin-bottom: 1rem; }
.foot__col { display: flex; flex-direction: column; gap: .7rem; }
.foot__col a { font-size: .94rem; transition: color .2s; }
.foot__col a:hover { color: var(--rose-bright); }
.foot__bar { display: flex; justify-content: space-between; align-items: center; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem; }
.foot__social { display: flex; gap: .8rem; }
.foot__social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.06); transition: background .2s, transform .2s, color .2s; }
.foot__social a:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .4s; }
.reveal.in-view { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; min-height: auto; }
  .hero__stage { order: -1; min-height: 460px; }
  .radar { width: 380px; height: 380px; }
  .why__split, .spots__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
}
@media (max-width: 760px) {
  .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav.open .nav__mobile { display: flex; }
  .hero { padding-top: 110px; }
  .hero__copy { display: flex; flex-direction: column; }
  .hero__copy .hero__actions { order: 2; margin-top: 1.5rem; }
  .hero__copy .hero__stores { order: 3; }
  .hero__copy .hero__sub { order: 4; margin-top: 1.5rem; }
  .hero__copy .hero__proof { order: 5; }
  .hero__sub { max-width: none; }
  .compare { grid-template-columns: 1fr; gap: 1.4rem; }
  .compare__vs { margin: 0 auto; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .foot__brand { grid-column: 1 / -1; }
  .foot__bar { flex-direction: column; gap: 1rem; text-align: center; }
  .waitlist__row { flex-direction: column; border-radius: 22px; }
  .waitlist .btn { width: 100%; }
  .live__note { border-radius: 16px; align-items: flex-start; }
}
@media (max-width: 460px) {
  .steps { grid-template-columns: 1fr; }
  .phone { width: 250px; height: 500px; }
  .hero__stores { flex-direction: column; align-items: stretch; }
  .store { justify-content: center; }
}

/* ============ INTERACTIVE JOIN SPOT ============ */
.joinspot { margin-top: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem; box-shadow: var(--shadow); }
.joinspot__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.joinspot__name { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1.25rem; }
.joinspot__meta { display: flex; align-items: center; gap: .45rem; font-size: .85rem; color: var(--muted); margin-top: .25rem; }
.joinspot__count { font-size: .85rem; color: var(--muted); white-space: nowrap; }
.joinspot__count b { font-family: "Outfit", sans-serif; font-size: 1.15rem; color: var(--ink); transition: color .2s; }
.joinspot__lbl { font-family: "Outfit", sans-serif; font-weight: 600; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 1.2rem 0 .8rem; }
.joinspot__people { display: flex; align-items: center; margin-bottom: 1.3rem; }
.ava { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1rem; color: #fff; background: var(--c, #ccc); border: 3px solid #fff; margin-left: -12px; flex-shrink: 0; }
.ava:first-child { margin-left: 0; }
.ava--more { background: var(--rose-soft); color: var(--rose-deep); font-size: .78rem; }
.ava--photo { overflow: hidden; }
.ava--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ava--you { background: linear-gradient(135deg, var(--rose-bright), var(--rose)); box-shadow: 0 0 0 3px rgba(211,28,92,.22); font-size: .62rem; position: relative; z-index: 2; }
.ava--in { animation: avain .45s var(--ease); }
@keyframes avain { 0% { transform: scale(0) translateX(-12px); opacity: 0; } 60% { transform: scale(1.14); } 100% { transform: scale(1); opacity: 1; } }
.joinspot__btn.is-joined { background: var(--rose-soft); color: var(--rose-deep); box-shadow: none; }

/* ============ INTERACTIONS ============ */
.scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 200; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--rose-bright), var(--rose), var(--blue)); will-change: transform; }
.nav__links a.active { opacity: 1; }
.nav__links a.active::after { width: 100%; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.shot, .step, .tip, .btn--lg { will-change: transform; }

/* ============ HERO — VIDEO BACKGROUND ============ */
.hero { isolation: isolate; min-height: 100svh; display: flex; align-items: center; padding: 120px var(--pad) 96px; background: var(--ink); color: #fff; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,7,18,.6) 0%, rgba(120,12,52,.5) 55%, rgba(11,7,18,.88) 100%); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(85% 65% at 50% 32%, transparent 36%, rgba(11,7,18,.62) 100%); }
.hero__grid { position: relative; z-index: 1; display: block; grid-template-columns: 1fr; width: min(100% - 2.5rem, 900px); margin-inline: auto; text-align: center; min-height: auto; }
.hero .eyebrow { color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); }
.hero__title { font-size: clamp(2.8rem, 7vw, 5.4rem); }
.hero__title em { color: var(--rose-bright); }
.hero__sub { color: rgba(255,255,255,.86); max-width: 46ch; margin: 1.5rem auto 2rem; }
.hero__sub strong { color: #fff; }
.hero__actions { justify-content: center; }
.hero__stores { justify-content: center; }
.hero__proof { color: rgba(255,255,255,.82); }
.hero__proof strong { color: var(--rose-bright); }
.proof__num { color: #fff; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero .btn--ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.12); }
.scroll-hint { color: rgba(255,255,255,.82); }

/* nav while transparent over the dark hero (homepage top, before scroll) */
.brand__logo--dark { display: none; }
.nav.scrolled .brand__logo--light { display: none; }
.nav.scrolled .brand__logo--dark { display: block; }
.nav:not(.nav--solid):not(.scrolled) .nav__links a,
.nav:not(.nav--solid):not(.scrolled) .nav__cta .btn--ghost { color: #fff; opacity: 1; }
.nav:not(.nav--solid):not(.scrolled) .nav__links a:hover { color: #fff; }
.nav:not(.nav--solid):not(.scrolled) .nav__burger span { background: #fff; }

/* ============ MOTION SAFETY ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__video, .cta__video { display: none; }
  .hero { background-image: url("assets/date-bg.jpg"); background-size: cover; background-position: center; }
  .cta { background-image: url("assets/cta-bg.jpg"); background-size: cover; background-position: center; }
}
