/* ============================================================
   TravelMatch — Premium Nomad Social landing system
   Brand: #EA7DD6 → #671EA8 on #0B0B14, glass + neon glow
   ============================================================ */

@font-face {
  font-family: "FrankRuhl";
  src: url("./assets/FrankRuhlLibre-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg:        #0B0B14;
  --bg-2:      #0E0E1A;
  --pink:      #EA7DD6;
  --purple:    #671EA8;
  --cyan:      #69D7D7;
  --ink:       #F3E7EE;
  --ink-soft:  #EEDEE6;
  --muted:     #9E8B97;
  --line:      rgba(255,255,255,0.10);
  --glass:     rgba(255,255,255,0.045);
  --glass-2:   rgba(255,255,255,0.07);
  --grad:      linear-gradient(135deg, #EA7DD6 0%, #671EA8 100%);
  --grad-soft: linear-gradient(135deg, rgba(234,125,214,0.10), rgba(103,30,168,0.10));
  --glow-pink: 0 0 28px rgba(234,125,214,0.18);
  --radius:    24px;
  --radius-lg: 32px;
  --maxw:      1180px;
  --serif: "FrankRuhl", "Frank Ruhl Libre", Georgia, serif;
  --sans:  "Assistant", "Heebo", -apple-system, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink-soft);
  line-height: 1.65;
  overflow-x: hidden;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Atmosphere: restrained deep-ink wash (no heavy pink clouds) + grain, fixed behind everything */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(70% 55% at 88% -8%, rgba(103,30,168,0.10), transparent 60%),
    radial-gradient(60% 50% at 6% 4%,   rgba(234,125,214,0.04), transparent 62%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(234,125,214,0.35); color: #fff; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 1.02rem;
  padding: 15px 30px; border-radius: 999px; border: none;
  cursor: pointer; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, filter .25s;
  white-space: nowrap;
}
.btn-grad {
  background: var(--grad); color: #fff;
  box-shadow: var(--glow-pink);
}
.btn-grad:hover { transform: translateY(-3px); box-shadow: 0 0 42px rgba(234,125,214,0.28); filter: brightness(1.04); }
.btn-ghost {
  background: var(--glass); color: var(--ink);
  border: 1.5px solid var(--line); backdrop-filter: blur(14px);
}
.btn-ghost:hover { background: var(--glass-2); transform: translateY(-3px); border-color: rgba(234,125,214,0.4); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: #fff;
  box-shadow: 0 0 40px rgba(37,211,102,0.32);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 0 62px rgba(37,211,102,0.52); filter: brightness(1.05); }
.btn-whatsapp svg { width: 22px; height: 22px; flex: none; }
.btn-instagram {
  background: linear-gradient(135deg, #FEDA75 0%, #FA7E1E 25%, #D62976 55%, #962FBF 80%, #4F5BD5 100%);
  color: #fff; box-shadow: 0 0 40px rgba(214,41,118,0.34);
}
.btn-instagram:hover { transform: translateY(-3px); box-shadow: 0 0 62px rgba(214,41,118,0.52); filter: brightness(1.05); }
.btn-instagram svg { width: 22px; height: 22px; flex: none; }

/* Round icon buttons (social) */
.icon-btn {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; color: var(--muted);
  background: var(--glass); border: 1.5px solid var(--line); backdrop-filter: blur(14px);
  transition: transform .25s, color .25s, border-color .25s, background .25s, box-shadow .25s;
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover {
  color: #fff; transform: translateY(-3px);
  border-color: rgba(234,125,214,0.5); background: var(--glass-2);
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}

/* App Store pill */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: #0B0B14; padding: 12px 24px 12px 22px;
  border-radius: 16px; font-family: var(--sans);
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(0,0,0,0.34); }
.store-btn svg { width: 30px; height: 30px; flex: none; }
.store-btn .sb-small { font-size: .68rem; opacity: .7; line-height: 1; margin-bottom: 3px; }
.store-btn .sb-big   { font-size: 1.24rem; font-weight: 800; line-height: 1; }
.store-btn.soon { position: relative; }
.app-store-status { cursor: default; }
.store-btn.soon::after {
  content: "בקרוב"; position: absolute; top: -9px; left: -9px;
  background: var(--grad); color: #fff; font-size: .62rem; font-weight: 800;
  padding: 3px 9px; border-radius: 999px; box-shadow: 0 8px 22px rgba(0,0,0,0.28);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(11,11,20,0.55);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.brand .wm { font-size: 1.5rem; font-weight: 800; letter-spacing: -.5px; }
.brand .wm b { color: var(--pink); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: .98rem; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 16px; min-width: 0; }
.rating { display: flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 700; font-size: .95rem; white-space: nowrap; }
.rating .stars { color: var(--pink); letter-spacing: 1px; }
.nav-cta-btn .lbl-short { display: none; }
.nav-toggle { display: none; }

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .5px;
  color: var(--pink); text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  background: var(--grad-soft); border: 1px solid rgba(234,125,214,0.25);
  margin-bottom: 22px;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 700; color: #fff; line-height: 1.12; letter-spacing: -.5px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 1.14rem; }

/* ---------- Hero (group-search problem → TravelMatch) ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 880px;
  display: flex; align-items: center;
  padding: 92px 0 76px;
  background:
    radial-gradient(54% 45% at 50% 56%, rgba(103,30,168,.20), transparent 68%),
    radial-gradient(34% 28% at 50% 50%, rgba(234,125,214,.08), transparent 72%),
    #0b0b14;
}
/* The photograph behind the story: real place, feed-recipe grade, and a heavy
   ink wash so the cards and copy stay perfectly readable on top of it. */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("./assets/photos/hero-copacabana.jpg") center 32% / cover no-repeat;
  filter: saturate(.72) contrast(1.05);
  opacity: .62;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,4,16,.82) 0%, rgba(7,4,16,.38) 30%,
                               rgba(7,4,16,.5) 60%, rgba(11,11,20,.97) 100%),
    linear-gradient(115deg, rgba(21,11,40,.44), transparent 45%);
}
.hero > .wrap { position: relative; z-index: 1;
}
.hero-wrap { position: relative; z-index: 1; display: flex; justify-content: center; }
.hero-inner { width: 100%; max-width: 1080px; text-align: center; }
.hero-inner h1 { font-size: clamp(2.8rem, 6vw, 5.1rem); margin-bottom: 18px; }
.hero-inner h1 .accent {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-inner .lede { font-size: 1.24rem; color: var(--muted); max-width: 650px; margin: 0 auto 34px; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.cta-note { margin: 12px auto 0; max-width: 460px; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.hero-trust { display: flex; align-items: center; justify-content: center; margin-top: 20px; color: var(--muted); font-size: .93rem; }
.hero-story {
  max-width: 960px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 26px;
}
.story-problems {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: stretch;
}
.old-search-card {
  position: relative; z-index: 1; text-align: right; padding: 20px;
  border-radius: 22px; border: 1px solid rgba(255,255,255,.13);
  background: rgba(24,23,37,.82); box-shadow: 0 24px 70px rgba(0,0,0,.38);
  backdrop-filter: blur(16px); transform: rotate(2deg);
}
.old-search-card.whatsapp-card { transform: rotate(-1.6deg); }
.old-search-card.facebook-card { transform: rotate(1.6deg); }
.old-search-card.fb2-card { transform: rotate(1.2deg); }
.fb2-card { border-top: 3px solid #5b7bd5; }
.fb2-card .old-search-head span { color: #93ace9; }
.fb2-card .platform-badge { background: #1877F2; }
.card-meta { margin-top: 10px; color: var(--muted); font-size: .8rem; font-weight: 600; }
.facebook-card { border-top: 3px solid #5b7bd5; }
.whatsapp-card { border-top: 3px solid #4fae62; }
.facebook-card .old-search-head span { color: #93ace9; }
.whatsapp-card .old-search-head span { color: #7fd9a0; }
.platform-badge {
  position: absolute; top: -13px; right: -10px; z-index: 3;
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 5px 14px rgba(0,0,0,.5);
}
.platform-badge svg { width: 18px; height: 18px; fill: #fff; }
.facebook-card .platform-badge { background: #1877F2; }
.whatsapp-card .platform-badge { background: #25D366; }
.old-search-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.old-search-head > img, .group-avatars img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none;
  border: 2px solid rgba(255,255,255,.16);
}
.old-search-head strong, .old-search-head span { display: block; }
.old-search-head strong { color: #fff; font-size: 1rem; }
.old-search-head span { color: var(--muted); font-size: .78rem; margin-top: 1px; }
.old-search-card p { color: var(--ink-soft); line-height: 1.55; font-size: 1rem; }
.group-avatars { display: flex; direction: ltr; width: 78px; flex: none; }
.group-avatars img { width: 42px; height: 42px; margin-left: -18px; border-color: #181725; }
.group-avatars img:first-child { margin-left: 0; }
.old-search-x {
  position: absolute; top: -15px; left: -13px; z-index: 3;
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; background: #ff5f82; color: #fff;
  font: 800 2rem/1 var(--sans); box-shadow: 0 10px 28px rgba(255,95,130,.36);
}
.story-arrow {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  color: var(--muted); font-size: .92rem;
}
.story-arrow strong { color: var(--pink); font-size: 1.02rem; }

/* the solution: the app's own push notification */
.story-solution { display: flex; justify-content: center; }
.app-notif {
  display: flex; align-items: center; gap: 12px;
  width: min(100%, 440px);
  background: rgba(38,32,54,.9);
  border: 1px solid rgba(234,125,214,.45);
  border-radius: 18px; padding: 13px 16px;
  text-align: right;
  box-shadow: 0 18px 44px rgba(0,0,0,.5), 0 0 34px rgba(234,125,214,.16);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.app-notif .appicon {
  width: 44px; height: 44px; border-radius: 10px; flex: none;
  background: #17121f; border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
}
.app-notif .appicon img { width: 30px; height: 30px; }
.app-notif .nb { min-width: 0; flex: 1; }
.app-notif .nt { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.app-notif .nt b { font-size: .72rem; font-weight: 700; color: var(--muted); letter-spacing: .05em; }
.app-notif .nt time { font-size: .7rem; color: var(--muted); }
.app-notif .nm { font-size: .95rem; font-weight: 800; color: #fff; line-height: 1.3; }
.notif-avatars { display: flex; flex-direction: row-reverse; flex: none; }
.notif-avatars img {
  width: 30px; height: 30px; border-radius: 50%; object-fit: cover;
  border: 2px solid #17121f;
}
.notif-avatars img + img { margin-inline-end: -9px; }
/* Phone frame */
.phone {
  position: relative; width: 300px; aspect-ratio: 9 / 19.5; margin: 0 auto;
  border-radius: 44px; padding: 11px;
  background: linear-gradient(160deg, #23233a, #0d0d16);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), var(--glow-pink), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #05050a; border-radius: 999px; z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden; position: relative;
  background: var(--grad-soft);
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
/* Soft bottom fade so the app screenshot closes cleanly inside the frame
   instead of a hard cut that reads as an orphaned/broken card at a page seam. */
.phone-screen::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 64px; z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5,5,12,0.82), transparent);
}
/* Placeholder shown when screenshot file not yet added */
.phone-screen .ph-fallback {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 10px;
  align-content: center; text-align: center; padding: 24px; color: var(--muted);
  background: radial-gradient(circle at 50% 30%, rgba(234,125,214,0.25), transparent 70%), var(--bg-2);
}
.phone-screen .ph-fallback b { color: var(--ink); font-family: var(--serif); font-size: 1.3rem; }
.phone-screen img:not([src]), .phone-screen img[src=""] { opacity: 0; }

/* floating badge chips around a feature phone */
.float-chip {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 16px; font-weight: 700; font-size: .92rem; color: #fff;
  background: rgba(14,14,26,0.82); border: 1px solid var(--line);
  backdrop-filter: blur(14px); box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip.c1 { top: 14%; right: 4%; }
.float-chip.c3 { bottom: 14%; left: 4%; animation-delay: -3s; }
.float-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.float-chip .dot-pink { background: var(--pink); box-shadow: 0 0 10px rgba(234,125,214,0.8); }
.float-chip .pct { color: var(--cyan); }
.float-chip .price { color: var(--pink); }
.float-chip .chip-heart { width: 16px; height: 16px; flex: none; color: var(--cyan); filter: drop-shadow(0 0 6px rgba(105,215,215,0.7)); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Stats strip ---------- */
.stats { padding: 30px 0 50px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat {
  text-align: center; padding: 26px 16px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(12px);
}
.stat .num { font-family: var(--serif); font-size: 2.4rem; color: #fff; line-height: 1; }
.stat .num .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--muted); font-size: .95rem; margin-top: 8px; }

/* ---------- Feature rows ---------- */
.features { padding: 70px 0; }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 46px 0;
}
.feature-row.flip .feature-media { order: 2; }
.feature-text .kicker {
  font-weight: 800; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px; display: block;
}
.feature-text h3 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 16px; }
.feature-text p { color: var(--muted); font-size: 1.12rem; margin-bottom: 22px; }
.feature-list { list-style: none; display: grid; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-weight: 600; }
.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  box-shadow: none;
  flex: none;
}
.feature-media { display: flex; justify-content: center; position: relative; }
.feature-media .phone { transform: rotate(-3deg); }
.feature-row.flip .feature-media .phone { transform: rotate(3deg); }

/* Featured row (villas — hero of act two): richer glass panel behind it */
.feature-row.featured {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--line);
  padding: 46px clamp(24px, 4vw, 52px);
  margin-top: 10px;
}
.feature-row.featured .feature-media .phone {
  box-shadow: 0 40px 90px rgba(0,0,0,0.56), inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* ---------- Bento grid ---------- */
.bento { padding: 60px 0; }
.bento-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.bento-card {
  padding: 30px; border-radius: var(--radius); position: relative; overflow: hidden;
  background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(12px);
  transition: transform .3s, border-color .3s, background .3s;
}
.bento-card:hover { transform: translateY(-6px); border-color: rgba(234,125,214,0.4); background: var(--glass-2); }
.bento-card .ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 18px; background: var(--grad-soft); border: 1px solid rgba(234,125,214,0.3);
}
.bento-card h4 { font-family: var(--serif); font-size: 1.35rem; color: #fff; margin-bottom: 8px; }
.bento-card p { color: var(--muted); font-size: 1rem; }
.bento-card.wide { grid-column: span 2; }

/* ---------- Act two (after the match) ---------- */
.act-two { padding: 40px 0 70px; }
.act-two-head {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  margin-bottom: 46px;
}
.act-two-copy h2 { font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 16px; }
.act-two-copy p { color: var(--muted); font-size: 1.16rem; }
.act-two-photo {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 40px rgba(234,125,214,0.14);
}
.act-two-photo img { width: 100%; height: 100%; object-fit: cover; }
.act-two-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,20,0.5), transparent 55%);
}

/* ---------- Emotion band ---------- */
.emotion {
  position: relative; overflow: hidden;
  min-height: 360px; display: flex; align-items: center;
  padding: 90px 0; margin: 20px 0;
}
.emotion-bg { position: absolute; inset: 0; z-index: 0; }
.emotion .wrap { position: relative; z-index: 1; }
.emotion-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.emotion-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to left, rgba(11,11,20,0.9) 8%, rgba(11,11,20,0.45) 55%, rgba(11,11,20,0.15) 100%),
    linear-gradient(to top, var(--bg), transparent 40%, var(--bg));
}
.emotion-line {
  font-family: var(--serif); color: #fff; font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 3.3rem); line-height: 1.18;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5); max-width: 620px;
}
.emotion-line .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

/* ---------- Steps ---------- */
.steps { padding: 70px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  padding: 22px 24px 30px; border-radius: var(--radius); position: relative;
  background: var(--glass); border: 1px solid var(--line);
}
.step-shot {
  border-radius: 18px; overflow: hidden; margin-bottom: 20px;
  aspect-ratio: 16 / 10; border: 1px solid var(--line);
  background: var(--grad-soft);
}
.step-shot img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.step .n {
  counter-increment: step; font-family: var(--serif); font-size: 3rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.step .n::before { content: "0" counter(step); }
.step h4 { font-family: var(--serif); font-size: 1.4rem; color: #fff; margin-bottom: 8px; }
.step p { color: var(--muted); }
.launch-step {
  min-height: 270px;
  padding: 32px 28px;
  overflow: hidden;
}
.launch-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.055), transparent 42%),
    radial-gradient(circle at 82% 88%, rgba(234,125,214,0.055), transparent 46%);
  pointer-events: none;
}
.launch-step .launch-icon {
  position: relative;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--ink);
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
}
.launch-step h4,
.launch-step p { position: relative; }
.launch-step h4 { font-size: 1.55rem; }
.launch-step p { font-size: 1.05rem; line-height: 1.65; }

/* ---------- Final CTA ---------- */
.cta { padding: 40px 0 90px; }
.cta-card {
  position: relative; overflow: hidden; text-align: center;
  padding: 74px 30px; border-radius: var(--radius-lg);
  background: var(--grad-soft); border: 1px solid rgba(234,125,214,0.3);
}
.cta-card::before {
  content: ""; position: absolute; inset: -50% -10% auto; height: 300px;
  background: radial-gradient(circle, rgba(234,125,214,0.11), transparent 65%); filter: blur(30px);
}
.cta-card .eyebrow { position: relative; }
.cta-card h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 16px; position: relative; }
.cta-card p { color: var(--ink-soft); font-size: 1.2rem; margin-bottom: 34px; position: relative; max-width: 560px; margin-inline: auto; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: rgba(8,8,14,0.6); }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand { max-width: 340px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 1rem; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { color: var(--ink); font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; font-family: var(--sans); font-weight: 800; }
.footer-col a { display: block; color: var(--muted); margin-bottom: 11px; font-weight: 600; transition: color .2s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: .9rem;
}

/* ---------- Legal / article pages ---------- */
.legal { padding: 60px 0 90px; }
.legal-head { max-width: 780px; margin: 0 auto 44px; text-align: center; }
.legal-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 14px; }
.legal-head .updated { color: var(--muted); font-size: .98rem; }
.legal-body {
  max-width: 780px; margin: 0 auto;
  background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 48px clamp(24px, 5vw, 56px); backdrop-filter: blur(12px);
}
.legal-body h2 { font-size: 1.55rem; margin: 40px 0 14px; color: #fff; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-family: var(--sans); font-weight: 800; font-size: 1.1rem; color: var(--ink); margin: 22px 0 8px; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 12px; }
.legal-body ul { padding-inline-start: 22px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--pink); text-decoration: underline; }
.legal-body strong { color: #fff; }
.legal-toc {
  background: var(--grad-soft); border: 1px solid rgba(234,125,214,0.2);
  border-radius: var(--radius); padding: 22px 26px; margin-bottom: 34px;
}
.legal-toc h4 { color: var(--ink); font-family: var(--sans); font-weight: 800; margin-bottom: 12px; }
.legal-toc a { color: var(--muted); text-decoration: none; }
.legal-toc a:hover { color: var(--pink); }
.legal-toc ol { padding-inline-start: 20px; columns: 2; gap: 24px; }
.legal-toc li { margin-bottom: 7px; }

/* ---------- Support page cards ---------- */
.support-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 980px; margin: 0 auto;
}
.support-card {
  padding: 30px 26px; border-radius: var(--radius); text-align: center;
  background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(12px);
  transition: transform .3s, border-color .3s, background .3s;
}
.support-card:hover { transform: translateY(-6px); border-color: rgba(234,125,214,0.4); background: var(--glass-2); }
.support-card .ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; margin: 0 auto 16px; background: var(--grad-soft); border: 1px solid rgba(234,125,214,0.3);
}
.support-card h3 { font-family: var(--serif); font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.support-card p { color: var(--muted); font-size: .98rem; margin-bottom: 14px; word-break: break-word; }
.support-card .support-link { color: var(--pink); font-weight: 700; font-size: .95rem; }
@media (max-width: 780px) { .support-cards { grid-template-columns: 1fr; max-width: 460px; } }

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
/* Content is fully visible by default; only hidden when JS is active (html.js) */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { min-height: auto; padding: 82px 0 58px; }
  .hero-wrap { justify-content: center; }
  .hero-inner { text-align: center; max-width: 620px; }
  .hero-inner .lede { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-story { max-width: 480px; gap: 20px; }
  .story-problems { grid-template-columns: 1fr; gap: 16px; }
  .old-search-card { padding: 17px; }
  .act-two-head { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .act-two-photo { order: 2; max-width: 460px; margin-inline: auto; width: 100%; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .feature-row.flip .feature-media { order: 0; }
  .feature-list li { justify-content: center; }
  .feature-list li { text-align: right; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }
  .steps-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .legal-toc ol { columns: 1; }
}
/* Compact nav: below 680px the rating + long CTA won't fit alongside the wordmark */
@media (max-width: 680px) {
  .nav-inner { height: 64px; }
  .rating { display: none; }
  .brand .wm { font-size: 1.3rem; }
  .brand img { width: 34px; height: 34px; }
  .nav-cta-btn { padding: 11px 20px; font-size: .95rem; }
  .nav-cta-btn .lbl-full { display: none; }
  .nav-cta-btn .lbl-short { display: inline; }
  .nav-ig { display: none; }
  .hero { padding: 54px 0 42px; }
  .store-btn { padding: 11px 18px; }
  .store-btn svg { width: 26px; height: 26px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .stats-grid, .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .float-chip { font-size: .8rem; padding: 8px 13px; }
  .float-chip.c1 { right: 0; top: 8%; } .float-chip.c3 { left: 0; bottom: 8%; }
  .hero-inner .lede { font-size: 1.1rem; }
  .hero-inner h1 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .old-search-card p { font-size: .92rem; }
  .emotion-line { text-align: center; margin-inline: auto; }
  .emotion-bg::after { background: linear-gradient(to top, rgba(11,11,20,0.94), rgba(11,11,20,0.66) 45%, rgba(11,11,20,0.8)); }
  .beta-pill { font-size: .82rem; padding: 7px 13px; }
  .phone { width: 264px; }
  .section-head { margin-bottom: 40px; }
  .footer-grid { flex-direction: column; gap: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-card { padding: 54px 22px; }
  .legal-body { padding: 34px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Digits inside an RTL block get reordered: "1,200+" renders as "+1,200".
   Isolating the number keeps the sign where it was written. */
.stats .num, .stats .num * { direction: ltr !important; unicode-bidi: isolate; }
