/* ============================================================================
   Salty Girls — Marina Club · landing page styles
   Cream/warm-white, deep ink, hot pink (CTA/accent), lime (signal), navy sparse.
   Logo = real brand artwork. Icons = Feather (mirrors the app). Photos local
   (Pexels, license-safe). See assets/credits.md.
   ========================================================================== */

:root {
  --ink: #2b1a2e;
  --ink-soft: #4a3650;
  --pink: #ff5fa2;
  --pink-cta: #e83e84;
  --pink-press: #cf2d70;
  --pink-bg: #fff0f6;
  --pink-soft: #ffd3e6;
  --lime: #c6ff4d;
  --lime-bg: #f4ffe0;
  --navy: #1e3a6e;
  --navy-bg: #eef3fb;
  --cream: #fffbfd;
  --cream-warm: #faf6f2;
  --cream-soft: #fff3f7;
  --white: #ffffff;
  --muted: #7a6473;
  --line: #ede5ec;
  --line-strong: #e6d4e0;

  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --wrap: 1120px;
  --shadow-sm: 0 2px 10px rgba(43, 26, 46, 0.05);
  --shadow-md: 0 18px 40px -22px rgba(43, 26, 46, 0.35);
  --shadow-lg: 0 40px 80px -40px rgba(43, 26, 46, 0.45);

  --font-display: "Syne", "Trebuchet MS", sans-serif;
  --font-body: "DM Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 800; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--white); padding: 12px 18px;
  border-radius: 0 0 12px 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--pink-cta); outline-offset: 3px; border-radius: 6px; }

/* Feather icons — one consistent style everywhere (24-grid, 2px, round). */
.ico {
  width: 22px; height: 22px; flex: none; display: block;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.ico-fill { fill: currentColor; stroke: none; }

/* --------------------------------------------------------------- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px; line-height: 1;
  text-decoration: none; padding: 13px 22px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
/* 19px/700 keeps white-on-pink as WCAG "large text" (passes AA at 3:1). */
.btn-lg { font-size: 19px; padding: 16px 30px; }
.btn-pink { background: var(--pink-cta); color: var(--white); box-shadow: 0 14px 26px -14px rgba(232, 62, 132, 0.85); }
.btn-pink:hover { background: var(--pink-press); transform: translateY(-2px); }
.btn-pink:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink-press); transform: translateY(-2px); }

/* ---------------------------------------------------------------- header ---- */
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
/* Transparent wordmark (assets/logo-mark.png) — no background plate, so no
   rectangle appears when the header changes on scroll. "Marina Club" is live text. */
.brand-logo { height: 38px; width: auto; display: block; }
.brand-club {
  font-size: 10px; font-weight: 700; line-height: 1.2; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  padding-left: 12px; border-left: 2px solid var(--lime);
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 253, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 74px; }
.nav { display: flex; gap: 30px; }
.nav a {
  text-decoration: none; font-size: 15px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0; transition: color 0.15s ease;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--pink); transition: width 0.2s ease; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header-cta { padding: 10px 18px; font-size: 14.5px; }

/* ------------------------------------------------------------------ hero ---- */
.hero { position: relative; overflow: hidden; padding: 66px 0 60px; }
.hero-glow {
  position: absolute; inset: -30% -10% auto -10%; height: 720px; pointer-events: none;
  background:
    radial-gradient(46% 60% at 80% 16%, rgba(255, 95, 162, 0.16), transparent 70%),
    radial-gradient(40% 50% at 10% 0%, rgba(198, 255, 77, 0.16), transparent 70%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 48px; align-items: center; }
.hero-copy { max-width: 600px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.eyebrow-flag, .kicker-flag { width: 13px; height: 13px; background: var(--pink); border-radius: 3px; transform: rotate(-8deg); flex: none; }

.hero-title { font-size: clamp(2.4rem, 4.2vw, 3.2rem); line-height: 1.05; letter-spacing: -1.3px; color: var(--ink); }
@media (max-width: 620px) { .hero-br { display: none; } }
.hero-sub { margin-top: 20px; font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.6; color: var(--ink-soft); max-width: 33em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-chips li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.hero-chips .ico { width: 17px; height: 17px; color: var(--pink-press); }

/* hero photo + live chip */
.hero-media { position: relative; }
.photo-card { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--cream-soft); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo { aspect-ratio: 5 / 4; }

.live-chip {
  position: absolute; left: -14px; bottom: -18px;
  display: inline-flex; align-items: center; gap: 11px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 11px 14px; box-shadow: var(--shadow-md);
}
.live-chip-ico { width: 34px; height: 34px; border-radius: 10px; background: var(--pink-bg); display: grid; place-items: center; color: var(--pink-press); }
.live-chip-ico .ico { width: 18px; height: 18px; }
.live-chip-text { display: flex; flex-direction: column; line-height: 1.2; }
.live-chip-text b { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: -0.2px; }
.live-chip-text span { font-size: 12px; color: var(--muted); }
.live-dots { display: inline-flex; gap: 4px; margin-left: 2px; }
.d { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex: none; }
.d-lime { background: var(--lime); }
.d-navy { background: var(--navy); }
.d-pink { background: var(--pink); }

/* ----------------------------------------------------- positioning strip ---- */
.strip { background: var(--ink); color: var(--cream); padding: 30px 0; }
.strip-inner { display: flex; flex-direction: column; gap: 18px; }
.role-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 0; }
.role-strip li {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1rem, 1.7vw, 1.3rem); letter-spacing: -0.2px; color: var(--cream);
}
.role-strip li:not(:last-child)::after { content: "·"; margin: 0 16px; color: rgba(255, 251, 253, 0.4); }

/* --------------------------------------------------------------- sections --- */
.section { padding: 84px 0; }
.section-alt { background: var(--cream-warm); }
.section-head { max-width: 640px; margin-bottom: 46px; }
.kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.kicker-light { color: rgba(255, 251, 253, 0.72); }
.section-title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.08; letter-spacing: -1px; color: var(--ink); text-wrap: balance; }

/* -------- roadmap: a lime dashed "marina route" threading 8 numbered nodes -- */
.roadmap-wrap { position: relative; }
.roadmap-route { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.route-path { fill: none; stroke: var(--lime); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 2 13; }
.route-v { display: none; }

.roadmap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; column-gap: 24px;
}
.rstep { position: relative; padding: 74px 6px 0; text-align: center; }
.rnode {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--pink-bg); display: grid; place-items: center; color: var(--ink);
  /* cream ring masks the dashed route right at the disc edge */
  box-shadow: 0 6px 16px -8px rgba(43, 26, 46, 0.4), 0 0 0 6px var(--cream);
}
.rstep:nth-child(4n+2) .rnode { background: var(--lime-bg); }
.rstep:nth-child(4n+3) .rnode { background: var(--navy-bg); }
.rnode .ico { width: 24px; height: 24px; }
.rnum {
  position: absolute; top: -7px; right: -7px; width: 21px; height: 21px; border-radius: 50%;
  background: var(--pink-cta); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  display: grid; place-items: center; border: 2px solid var(--cream);
}
.rtext h3 { font-size: 1.02rem; letter-spacing: -0.3px; color: var(--ink); margin-bottom: 6px; }
.rtext p { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }

/* --------------------------------------------------------- inside the app --- */
.phone-strip {
  display: flex; align-items: center; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 0 -28px; padding: 6px 28px 16px;
  -webkit-overflow-scrolling: touch;
}
.phone-strip .device { scroll-snap-align: center; }
/* When the four full-size phones comfortably fit, center them (no scroll).
   Below this they scroll horizontally rather than shrinking the screenshots. */
@media (min-width: 1120px) {
  .phone-strip { overflow-x: visible; justify-content: center; margin: 0; padding: 6px 0 4px; }
}
.strip-caption { margin-top: 30px; text-align: center; font-size: 13.5px; color: var(--muted); }

.device { position: relative; width: 246px; flex: none; margin: 0; background: var(--ink); border-radius: 40px; padding: 9px; box-shadow: var(--shadow-md); }
.device::before { content: ""; position: absolute; top: 17px; left: 50%; transform: translateX(-50%); width: 84px; height: 6px; background: rgba(255, 255, 255, 0.22); border-radius: 999px; z-index: 3; }
.device-screen { position: relative; background: var(--cream); border-radius: 32px; overflow: hidden; height: 500px; display: flex; flex-direction: column; }
.device-hero { width: 262px; box-shadow: var(--shadow-lg); z-index: 2; }
.device-hero .device-screen { height: 528px; }

.ui-statusbar { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px 5px; font-size: 11px; font-weight: 700; color: var(--ink); }
.ui-sig { width: 24px; height: 10px; border-radius: 3px; background: var(--ink); opacity: 0.85; }
.ui-pad { padding: 5px 15px 0; flex: 1; overflow: hidden; }
.ui-micro { font-size: 9px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--pink-press); margin-bottom: 3px; }
.ui-h-row { display: flex; align-items: flex-start; justify-content: space-between; }
.ui-h1 { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.5px; color: var(--ink); line-height: 1.12; }
.ui-change { font-size: 12px; font-weight: 600; color: var(--pink-press); }
.ui-note { font-size: 9.5px; color: var(--muted); margin-top: 6px; line-height: 1.4; }
.ui-segment { display: flex; gap: 4px; margin-top: 12px; padding: 4px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: 999px; }
.ui-seg { flex: 1; text-align: center; font-size: 11px; font-weight: 600; color: var(--muted); padding: 6px 0; border-radius: 999px; }
.ui-seg-on { background: var(--pink-cta); color: var(--white); }
.ui-label { font-size: 11px; font-weight: 600; color: var(--ink); margin: 13px 0 8px; }
.ui-pills { display: flex; gap: 7px; }
.ui-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; }
.ui-pill-on { border-color: var(--pink); background: var(--pink-bg); color: var(--pink-press); }
.ui-group { display: flex; align-items: center; gap: 7px; margin: 15px 0 8px; }
.ui-group-t { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--ink); }
.ui-group-c { font-size: 11px; color: var(--muted); }
.ui-row { display: flex; align-items: center; gap: 11px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 9px 11px; margin-bottom: 8px; box-shadow: var(--shadow-sm); }
.ui-av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; flex: none; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--pink-press); background: var(--pink-bg); }
.av-2 { color: var(--navy); background: var(--navy-bg); }
.ui-row-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ui-name { font-weight: 700; font-size: 13px; color: var(--ink); }
.ui-meta { font-size: 11px; color: var(--muted); }
.ui-loc { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; color: var(--muted); margin-top: 3px; }
.ui-loc .ico { width: 11px; height: 11px; }

/* map phone */
.ui-map { position: relative; flex: 1; overflow: hidden; }
.ui-coast { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin {
  position: absolute; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--white); border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 4px 5px 4px 8px; font-size: 9.5px; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-md); white-space: nowrap;
}
.map-pin .ico { width: 11px; height: 11px; color: var(--ink); }
.map-pin b { display: inline-grid; place-items: center; min-width: 16px; height: 16px; padding: 0 3px; background: var(--pink-cta); color: var(--white); border-radius: 999px; font-size: 9px; }
.map-pin-lg { font-size: 10.5px; z-index: 2; }
.map-fab { position: absolute; right: 12px; bottom: 12px; width: 34px; height: 34px; border-radius: 50%; background: var(--white); border: 1px solid var(--line); display: grid; place-items: center; color: var(--pink-press); box-shadow: var(--shadow-md); }
.map-fab .ico { width: 17px; height: 17px; }

/* pulse phone */
.ui-post { display: inline-flex; align-items: center; gap: 5px; background: var(--pink-cta); color: var(--white); font-size: 11px; font-weight: 700; padding: 6px 11px; border-radius: 999px; }
.ui-post .ico { width: 13px; height: 13px; }
.ui-scope { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; color: var(--muted); margin: 11px 0 2px; }
.ui-post-card { border-top: 1px solid var(--line); padding-top: 12px; margin-top: 8px; }
.ui-post-head { display: flex; align-items: flex-start; gap: 9px; }
.ui-post-head .ui-row-body { flex: 1; }
.ui-time { font-size: 10px; color: var(--muted); }
.ui-post-title { font-weight: 700; font-size: 13px; color: var(--ink); margin: 9px 0 4px; }
.ui-post-body { font-size: 11px; color: var(--ink); line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ui-reacts { display: flex; gap: 6px; margin-top: 11px; }
.ui-react { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; color: var(--muted); background: var(--cream-soft); border-radius: 8px; padding: 4px 7px; }
.ui-react img { width: 20px; height: 16px; object-fit: contain; }
.ui-comment { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--muted); margin-top: 11px; }
.ui-comment .ico { width: 15px; height: 15px; }

/* tab bar */
.ui-tabbar { display: flex; justify-content: space-around; padding: 9px 6px 13px; background: var(--cream); border-top: 1px solid var(--line); }
.ui-tab { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 9px; font-weight: 500; color: var(--muted); }
.ui-tab .ico { width: 18px; height: 18px; }
.ui-tab-on { color: var(--pink-press); }

/* --------------------------------------------------------------- features --- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card-mark { width: 48px; height: 48px; border-radius: 14px; background: var(--pink-bg); display: grid; place-items: center; color: var(--ink); }
.card-mark.mark-lime { background: var(--lime-bg); }
.card-mark.mark-navy { background: var(--navy-bg); }
.card-mark .ico { width: 24px; height: 24px; }
.card h3 { font-size: 1.18rem; letter-spacing: -0.3px; margin: 18px 0 8px; color: var(--ink); }
.card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

/* -------------------------------------------------------------- split bands - */
.split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 52px; align-items: center; }
.split-reverse { grid-template-columns: 1.18fr 0.82fr; }
.split-reverse .split-media { order: 2; }
.split-reverse .split-copy { order: 1; }
.split-media { aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); }
.split-copy .section-title { margin-bottom: 16px; }
.split-lead { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.62; }
.check-list { margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--ink); }
.check-list .ico { width: 20px; height: 20px; color: var(--pink-press); }
.split-note { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink); background: var(--cream-soft); border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; }
.split-note .ico { width: 18px; height: 18px; color: var(--pink-press); }

/* ------------------------------------------- preview tags (recreation flag) - */
.preview-tag {
  display: inline-flex; align-items: center;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--ink); background: var(--lime); border-radius: 999px; padding: 4px 10px;
}
.preview-note { display: inline-flex; align-items: center; gap: 11px; margin-top: 16px; font-size: 13.5px; color: var(--ink-soft); max-width: 34em; }
.device-tag { position: absolute; top: 12px; right: 12px; z-index: 5; font-size: 9px; padding: 3px 8px; box-shadow: var(--shadow-sm); }

/* ---------------------------------------------- spot card (product preview) - */
.spot-figure { position: relative; aspect-ratio: auto; background: none; box-shadow: none; align-self: center; }
.spot-figure .preview-tag { position: absolute; top: -12px; left: 20px; z-index: 3; box-shadow: var(--shadow-sm); }
.spotcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 380px; margin: 0 auto; }
.spotcard-photo { position: relative; aspect-ratio: 3 / 2; background: var(--cream-soft); }
.spotcard-photo img { width: 100%; height: 100%; object-fit: cover; }
.spotcard-cat { position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--ink); background: rgba(255, 255, 255, 0.94); border-radius: 999px; padding: 5px 11px; box-shadow: var(--shadow-sm); }
.spotcard-cat .ico { width: 15px; height: 15px; color: var(--pink-press); }
.spotcard-body { padding: 16px 18px 18px; }
.spotcard-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.spotcard-row h3 { font-size: 1.3rem; letter-spacing: -0.4px; color: var(--ink); }
.spotcard-rating { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: 15px; color: var(--ink); }
.spotcard-rating .ico { width: 15px; height: 15px; color: var(--pink); }
.spotcard-dist { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.spotcard-dist .ico { width: 14px; height: 14px; }
.spotcard-tags { display: flex; gap: 6px; flex-wrap: wrap; margin: 13px 0; }
.spotcard-tags i { font-style: normal; font-size: 11px; font-weight: 600; color: var(--ink); background: var(--lime-bg); border-radius: 999px; padding: 3px 10px; }
.spotcard-by { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); padding-top: 12px; border-top: 1px solid var(--line); }
.spotcard-av { width: 24px; height: 24px; border-radius: 50%; background: var(--pink-bg); color: var(--pink-press); font-family: var(--font-display); font-weight: 700; font-size: 12px; display: grid; place-items: center; }

/* ----------------------------------------- real screenshots in the frames -- */
.section-sub { margin-top: 14px; font-size: 1.05rem; line-height: 1.6; color: var(--ink-soft); max-width: 40em; }
.device-real::before { display: none; }
/* Real screenshots keep their natural aspect ratio: the FRAME matches the
   screenshot ratio (map/girls/pulse/me ≈ 772x1600, spot ≈ 944x1600), so
   object-fit: cover shows the full screen with no crop and no horizontal
   squeeze. Never object-fit: fill. */
.device-real .device-screen { height: auto; aspect-ratio: 772 / 1600; }
.device-inline .device-screen { aspect-ratio: 944 / 1600; }
.device-shot { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Girls marketing composite: sample crew rows over the real (empty) screenshot */
.device-composite { position: relative; }
.sample-tag {
  position: absolute; top: 12px; right: 12px; z-index: 6;
  font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--ink); background: var(--lime); border-radius: 999px; padding: 3px 9px;
  box-shadow: var(--shadow-sm);
}
.girls-overlay {
  position: absolute; left: 0; right: 0; top: 40%; bottom: 13%;
  background: linear-gradient(180deg, #fdeef3 0%, #fdf6f5 100%);
  padding: 12px 14px 0; display: flex; flex-direction: column; gap: 8px;
}
.ov-group { display: flex; align-items: center; gap: 7px; }
.ov-group-t { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--ink); }
.ov-group-c { font-size: 11px; color: var(--muted); }
.ov-row { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 8px 10px; box-shadow: var(--shadow-sm); }
.ov-av { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: none; font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.ov-av.av-1 { color: var(--pink-press); background: var(--pink-bg); }
.ov-av.av-2 { color: var(--navy); background: var(--navy-bg); }
.ov-av.av-3 { color: var(--ink); background: var(--lime-bg); }
.ov-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ov-name { font-weight: 700; font-size: 13px; color: var(--ink); }
.ov-meta { font-size: 11px; color: var(--muted); }

/* spot detail phone inside the Local knowledge split */
.spot-figure { aspect-ratio: auto !important; background: none; box-shadow: none; align-self: center; }
.device-inline { width: 250px; margin: 0 auto; }
/* Local knowledge: the spot screenshot as a standalone rounded product card
   (no phone frame). Natural ratio, so nothing is stretched or badly cropped. */
.spot-shot {
  display: block; width: 100%; max-width: 300px; height: auto; margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
}

/* crew notes */
.crew-notes { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.crew-notes-label { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
.crew-note { font-size: 14px; line-height: 1.5; color: var(--ink); font-style: italic; background: var(--cream-soft); border-left: 3px solid var(--lime); border-radius: 0 12px 12px 0; padding: 10px 14px; }

/* meetups block */
.meetup-media { position: relative; aspect-ratio: auto !important; background: none; box-shadow: none; }
.meetup-photo { aspect-ratio: 4 / 5; }
.meetup-card { position: absolute; left: -18px; bottom: -26px; width: 82%; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.meetup-card img { width: 100%; display: block; }
.flag-accent { position: absolute; top: -16px; right: 20px; width: 52px; height: auto; transform: rotate(9deg); filter: drop-shadow(0 6px 12px rgba(43, 26, 46, 0.28)); z-index: 4; }
.meetup-bullets { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 18px; }
.meetup-bullets li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--ink); }
.meetup-bullets .ico { width: 19px; height: 19px; color: var(--pink-press); flex: none; }

/* scattered brand flags: single transparent flags as subtle accents
   (hero photo corner, roadmap route start, crew-notes label, meetup card). */
.flag-scatter { position: absolute; height: auto; z-index: 4; filter: drop-shadow(0 5px 10px rgba(43, 26, 46, 0.22)); }
.flag-hero { width: 46px; top: -20px; right: 22px; transform: rotate(8deg); }
.flag-route { width: 40px; top: -14px; left: 96px; transform: rotate(-7deg); }
.flag-inline { display: inline-block; width: 22px; height: auto; vertical-align: -5px; margin-right: 8px; }

/* ---------------------------------------------------------------- privacy --- */
.privacy { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: start; }
.privacy-head { position: sticky; top: 100px; }
.privacy-lead { margin-top: 18px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; max-width: 30em; }
.privacy-founder { display: flex; align-items: center; gap: 12px; margin-top: 26px; padding: 14px 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); font-size: 14px; font-style: italic; color: var(--ink); max-width: 30em; }
.pf-mark { flex: none; }
.pf-mark img { width: 34px; height: 34px; border-radius: 9px; display: block; }
.privacy-list { display: flex; flex-direction: column; gap: 14px; }
.privacy-list li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; font-size: 15px; line-height: 1.55; color: var(--ink-soft); box-shadow: var(--shadow-sm); }
.pl-mark { width: 48px; height: 48px; border-radius: 14px; background: var(--pink-bg); display: grid; place-items: center; color: var(--ink); }
.pl-mark.mark-lime { background: var(--lime-bg); }
.pl-mark.mark-navy { background: var(--navy-bg); }
.pl-mark .ico { width: 24px; height: 24px; }
.privacy-list strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 4px; }

/* ------------------------------------------------------------- closed beta -- */
.section-beta { position: relative; overflow: hidden; background: var(--ink); color: var(--cream); text-align: center; }
.beta-glow { position: absolute; inset: auto -10% -40% -10%; height: 460px; pointer-events: none; background: radial-gradient(40% 70% at 50% 100%, rgba(255, 95, 162, 0.32), transparent 70%), radial-gradient(30% 50% at 20% 100%, rgba(198, 255, 77, 0.16), transparent 70%); }
.beta { position: relative; display: flex; flex-direction: column; align-items: center; }
.beta-icon { width: 76px; height: 76px; border-radius: 20px; box-shadow: var(--shadow-md); margin-bottom: 22px; }
.beta-title { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -1px; color: var(--cream); margin-top: 2px; text-wrap: balance; }
.beta-sub { margin: 20px 0 32px; max-width: 34em; font-size: 1.08rem; line-height: 1.6; color: rgba(255, 251, 253, 0.82); }
.beta-fineprint { margin-top: 18px; font-size: 13px; letter-spacing: 0.4px; color: rgba(255, 251, 253, 0.6); }

/* ----------------------------------------------------------------- footer --- */
.site-footer { background: #221523; color: var(--cream); padding: 52px 0 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-brand { display: inline-flex; align-items: center; gap: 14px; }
.footer-logo { width: 46px; height: 46px; border-radius: 12px; }
.footer-email { font-weight: 600; color: var(--cream); text-decoration: none; }
.footer-email:hover { color: var(--pink); }
.footer-note { font-size: 13px; color: rgba(255, 251, 253, 0.6); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a { font-size: 14px; font-weight: 500; color: rgba(255, 251, 253, 0.78); text-decoration: none; }
.footer-links a:hover { color: var(--pink); }
.footer-bottom { padding-top: 22px; }
.footer-bottom p { font-size: 13px; color: rgba(255, 251, 253, 0.5); }

/* ------------------------------------------------------ beta access modal --- */
.beta-modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; }
.beta-modal[hidden] { display: none; }
body.beta-modal-open { overflow: hidden; }
.beta-modal-backdrop { position: absolute; inset: 0; background: rgba(43, 26, 46, 0.5); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.beta-modal-card {
  position: relative; width: 100%; max-width: 420px;
  background: var(--cream); border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  padding: 30px 26px 26px; max-height: calc(100vh - 40px); overflow-y: auto;
}
.beta-modal-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  display: grid; place-items: center; background: var(--cream-soft);
  border: 1px solid var(--line); border-radius: 50%; cursor: pointer; color: var(--ink);
}
.beta-modal-close .ico { width: 16px; height: 16px; }
.beta-modal-close:hover { border-color: var(--pink); color: var(--pink-press); }
.beta-modal-title { font-size: 1.65rem; letter-spacing: -0.6px; color: var(--ink); }
.beta-modal-sub { margin-top: 8px; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.beta-form { display: flex; flex-direction: column; }
.beta-field { display: block; margin-top: 18px; border: 0; padding: 0; }
.beta-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.beta-field input[type="text"], .beta-field input[type="email"] {
  width: 100%; box-sizing: border-box; font-family: var(--font-body); font-size: 16px;
  color: var(--ink); background: #fff; border: 1.5px solid var(--line-strong);
  border-radius: 14px; padding: 13px 14px; outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.beta-field input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px var(--pink-bg); }
.beta-field input::placeholder { color: var(--muted); opacity: 0.75; }
.beta-phones legend.beta-label { margin-bottom: 7px; }
.beta-phone-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.beta-phone {
  font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line-strong); border-radius: 14px;
  padding: 14px 0; cursor: pointer; transition: all 0.15s ease;
}
.beta-phone:hover { border-color: var(--pink); }
.beta-phone[aria-pressed="true"] { background: var(--pink-cta); border-color: var(--pink-cta); color: #fff; }
.beta-hp { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }
.beta-form-error { margin: 14px 0 0; font-size: 14px; line-height: 1.5; color: var(--pink-press); background: var(--pink-bg); border-radius: 12px; padding: 10px 13px; }
.beta-form-error a { color: var(--pink-press); font-weight: 700; }
.beta-submit { margin-top: 18px; width: 100%; }
.beta-submit:disabled { opacity: 0.65; cursor: default; transform: none; }
.beta-privacy-note { margin-top: 12px; font-size: 12.5px; line-height: 1.5; color: var(--muted); text-align: center; }
.beta-success { text-align: center; padding: 8px 0 4px; }
.beta-success-flag { width: 44px; height: auto; margin: 0 auto 14px; transform: rotate(8deg); }
.beta-success .beta-modal-sub { margin-bottom: 20px; }
@media (max-width: 480px) {
  .beta-modal { padding: 12px; align-items: end; }
  .beta-modal-card { max-width: none; border-radius: 22px 22px 16px 16px; }
}

/* ------------------------------------------- content pages (privacy etc.) --- */
.page { max-width: 720px; margin: 0 auto; padding: 64px 28px 90px; }
.page .kicker { margin-bottom: 12px; }
.page h1 { font-size: clamp(2rem, 4.5vw, 2.7rem); letter-spacing: -1px; line-height: 1.08; color: var(--ink); }
.page-updated { margin-top: 12px; font-size: 13.5px; color: var(--muted); }
.page-lead { margin-top: 20px; font-size: 1.08rem; line-height: 1.65; color: var(--ink-soft); }
.page h2 { font-size: 1.35rem; letter-spacing: -0.4px; color: var(--ink); margin: 40px 0 12px; }
.page p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 12px; }
.page ul { list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.page ul li { position: relative; padding-left: 22px; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }
.page ul li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--pink); transform: rotate(-8deg); }
.page strong { color: var(--ink); }
.page a { color: var(--pink-press); font-weight: 600; }
.page .page-note { background: var(--cream-soft); border: 1px solid var(--line); border-left: 3px solid var(--lime); border-radius: 0 14px 14px 0; padding: 14px 16px; font-size: 14.5px; }
.page-back { display: inline-flex; align-items: center; gap: 7px; margin-top: 44px; font-size: 15px; font-weight: 600; color: var(--ink); text-decoration: none; }
.page-back:hover { color: var(--pink-press); }

/* ============================================================ responsive === */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 640px; }
  .hero-media { max-width: 520px; }
  .privacy { grid-template-columns: 1fr; gap: 32px; }
  .privacy-head { position: static; }
  .split, .split-reverse { grid-template-columns: 1fr; gap: 30px; }
  .split-reverse .split-media, .split-reverse .split-copy { order: initial; }
  .split-media { max-width: 460px; aspect-ratio: 5 / 4; }
}

/* roadmap becomes a vertical lime route below 900 */
@media (max-width: 900px) {
  .route-h { display: none; }
  .route-v { display: block; left: 0; width: 58px; height: 100%; }
  .flag-route { left: 4px; top: -28px; width: 34px; }
  .roadmap { grid-template-columns: 1fr; grid-auto-rows: auto; row-gap: 4px; }
  .rstep { display: grid; grid-template-columns: 58px 1fr; gap: 16px; padding: 16px 0; text-align: left; align-items: center; }
  .rnode { position: static; transform: none; margin: 0 auto; }
  .rtext h3 { font-size: 1.12rem; }
  .rtext p { font-size: 14px; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 44px 0 52px; }
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 32px; }
  .header-cta { display: none; }
  .brand-logo { height: 34px; }
  .features { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .phone-strip { margin: 0 -20px; padding: 6px 20px 14px; }
  .live-chip { left: 0; }
  .meetup-bullets { grid-template-columns: 1fr; }
  .meetup-card { position: static; width: 100%; margin-top: 16px; left: auto; bottom: auto; }
  .flag-accent { display: none; }
}

@media (max-width: 380px) {
  .device { width: 238px; }
  .hero-chips { gap: 9px 14px; }
}
