/* ─────────────────────────────────────────
   SoulMates Landing - style.css
   Mobile-first. Breakpoints: 640 / 1024 / 1280
   ───────────────────────────────────────── */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
button, input { font-family: inherit; }
[hidden] { display: none !important; }

/* ── Inline icons (referenced via <use>) ── */
.ic {
  width: 1.25em; height: 1.25em; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  vertical-align: middle;
}

/* ── Variables ── */
:root {
  --bg:       #060610;
  --bg2:      #09091a;
  --surface:  #0e0e20;
  --surface2: #141428;
  --border:   rgba(255,255,255,0.06);
  --border2:  rgba(255,255,255,0.12);
  --accent:   #5c44ff;
  --accent-h: #7060ff;
  --pink:     #ff4d6d;
  --text:     #eeeef8;
  --sub:      #8888aa;
  --muted:    #44445a;
  --nav-h:    60px;
}

/* ── Base ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Noise grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
  opacity: 0.022; pointer-events: none;
}

/* ── Typography ── */
h1, h2, h3, h4 { letter-spacing: -0.4px; line-height: 1.1; }
p { line-height: 1.7; }

.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1),
              transform 0.6s cubic-bezier(.22,1,.36,1);
}
.reveal.on { opacity: 1; transform: none; }

/* ─────────────────────────────────────────
   NAV  (mobile-first)
   ───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: var(--nav-h);
  background: rgba(6,6,16,0.9);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -0.5px;
  color: var(--text); text-decoration: none; z-index: 210;
}
.logo span { color: var(--accent); }

/* Desktop nav links - hidden on mobile */
.nav-center { display: none; gap: 28px; list-style: none; }
.nav-center a { color: var(--sub); font-size: 0.875rem; text-decoration: none; transition: color 0.15s; }
.nav-center a:hover { color: var(--text); }

/* Desktop nav-right - hidden on mobile */
.nav-right { display: none; gap: 8px; align-items: center; }

/* Hamburger */
.nav-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 210; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile dropdown */
.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; z-index: 190;
  background: rgba(9,9,26,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 20px;
  flex-direction: column; gap: 2px;
}
.nav-mobile.open { display: flex; animation: slideDown 0.2s ease; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

.nav-mobile a {
  display: block; padding: 13px 12px;
  font-size: 0.95rem; font-weight: 500;
  color: var(--sub); text-decoration: none;
  border-radius: 10px; transition: background 0.15s, color 0.15s;
}
.nav-mobile a:hover { background: var(--surface); color: var(--text); }
.nav-mobile-divider { height: 1px; background: var(--border); margin: 8px 0; }
.nav-mobile-actions {
  display: flex; flex-direction: column; gap: 8px; padding-top: 4px;
}
.nav-mobile-actions a {
  text-align: center; font-weight: 600 !important;
  border: 1px solid var(--border2) !important;
}
.nav-mobile-actions .mob-accent {
  background: var(--accent) !important; border-color: var(--accent) !important;
  color: #fff !important;
}

/* ── Shared buttons ── */
.btn-sm {
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid var(--border2); color: var(--text);
  background: transparent; cursor: pointer; display: inline-block;
  transition: background 0.15s; white-space: nowrap;
}
.btn-sm:hover { background: var(--surface2); }

.btn-accent {
  background: var(--accent) !important; border-color: var(--accent) !important;
  color: #fff !important; box-shadow: 0 0 20px rgba(92,68,255,0.28);
}
.btn-accent:hover { background: var(--accent-h) !important; }

.btn-primary {
  display: inline-block; text-decoration: none;
  font-size: 0.95rem; font-weight: 700;
  padding: 14px 28px; border-radius: 12px; border: none;
  background: var(--accent); color: #fff; cursor: pointer;
  box-shadow: 0 0 32px rgba(92,68,255,0.4);
  transition: transform 0.15s ease, opacity 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(92,68,255,0.55);
}

.btn-outline {
  display: inline-block; text-decoration: none;
  font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: 12px;
  border: 1px solid var(--border2); color: var(--text);
  background: transparent; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.btn-outline:hover { background: var(--surface2); border-color: rgba(255,255,255,0.18); }

/* ─────────────────────────────────────────
   HERO  (mobile-first)
   ───────────────────────────────────────── */
.hero-wrap { max-width: 1320px; margin: 0 auto; padding: 0 20px; }

.hero {
  display: flex; flex-direction: column; align-items: center;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 56px;
  text-align: center; gap: 52px;
}

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

/* Launch countdown badge */
.hero-eyebrow {
  background: rgba(92,68,255,0.07);
  border: 1px solid rgba(92,68,255,0.2);
  border-radius: 14px; padding: 16px 20px;
  margin-bottom: 28px;
  display: inline-block;
  text-align: center;
  /* mobile: full width up to 400px */
  width: 100%; max-width: 400px;
}

.cd-title {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px; display: flex; align-items: center;
  justify-content: center; gap: 8px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.6); }
}

.countdown-row {
  display: flex; gap: 10px; align-items: center; justify-content: center;
}
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cd-num {
  font-size: 1.7rem; font-weight: 900; color: var(--text);
  min-width: 52px; text-align: center;
  font-variant-numeric: tabular-nums; letter-spacing: -1px;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 10px; padding: 8px 10px;
  transition: transform 0.12s ease;
}
.cd-num.tick { transform: scale(1.07) translateY(-2px); }
.cd-label { font-size: 0.58rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.cd-sep { font-size: 1.4rem; font-weight: 700; color: var(--muted); padding-bottom: 18px; line-height: 1; }

/* Hero headline */
.hero h1 {
  font-size: clamp(2.4rem, 9vw, 5rem); font-weight: 900;
  color: var(--text); margin-bottom: 20px;
  animation: fadeUp 0.75s cubic-bezier(.22,1,.36,1) both 0.1s;
}
.hero h1 .accent { color: var(--accent); }

.hero-desc {
  font-size: 1rem; line-height: 1.75; color: var(--sub);
  margin-bottom: 32px;
  animation: fadeUp 0.75s cubic-bezier(.22,1,.36,1) both 0.2s;
}

.hero-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
  animation: fadeUp 0.75s cubic-bezier(.22,1,.36,1) both 0.3s;
}

.hero-meta {
  display: flex; gap: 28px; justify-content: center;
  flex-wrap: wrap; padding-top: 28px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.75s cubic-bezier(.22,1,.36,1) both 0.4s;
}
.hero-meta-item { text-align: center; }
.hero-meta-item strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--text); }
.hero-meta-item span  { font-size: 0.75rem; color: var(--sub); margin-top: 2px; display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ── Phone Mockup (hero visual) ── */
.hero-visual {
  display: flex; justify-content: center; align-items: flex-end;
  position: relative; width: 100%; max-width: 340px; height: 460px;
  animation: fadeUp 0.85s cubic-bezier(.22,1,.36,1) both 0.25s;
}

.phone {
  width: 240px; height: 500px;
  background: var(--surface); border-radius: 36px;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.03),
    inset 0 1px 0 rgba(255,255,255,0.07);
  overflow: hidden; position: relative; flex-shrink: 0;
  animation: floatPhone 5s ease-in-out infinite;
}
@keyframes floatPhone {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}

.phone-notch {
  width: 90px; height: 24px; background: var(--bg);
  border-radius: 0 0 16px 16px; margin: 0 auto; position: relative; z-index: 2;
}
.phone-screen { padding: 0 14px 14px; height: calc(100% - 24px); display: flex; flex-direction: column; gap: 8px; }

.app-bar { display: flex; justify-content: space-between; align-items: center; padding: 10px 0 4px; }
.app-bar-title { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.app-bar-icons { display: flex; gap: 8px; }
.app-bar-icon { width: 26px; height: 26px; border-radius: 7px; background: var(--surface2); border: 1px solid var(--border); }

.feed-card { flex: 1; background: var(--surface2); border-radius: 18px; border: 1px solid var(--border); overflow: hidden; }
.feed-card-photo {
  height: 54%; background: linear-gradient(160deg, #1a1535, #0e0e25);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.silhouette-head {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #2a2550, #1c1a3a);
  border: 1.5px solid rgba(255,255,255,0.06); position: absolute; top: 28%;
}
.silhouette-body {
  width: 60px; height: 50px; background: linear-gradient(to top, rgba(20,18,50,0.9), transparent);
  border-radius: 32px 32px 0 0; position: absolute; bottom: 0;
}
.compat-badge {
  position: absolute; top: 9px; right: 9px;
  background: rgba(92,68,255,0.9); backdrop-filter: blur(8px);
  border-radius: 7px; padding: 3px 8px; font-size: 0.65rem; font-weight: 700; color: #fff;
}

.feed-card-info { padding: 12px; }
.feed-name     { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feed-location { font-size: 0.65rem; color: var(--sub); margin-bottom: 8px; }
.compat-row    { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.compat-label  { font-size: 0.6rem; color: var(--sub); flex-shrink: 0; }
.compat-bar-wrap { flex: 1; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.compat-bar-fill { height: 100%; width: 91%; background: linear-gradient(to right, var(--accent), #9977ff); border-radius: 2px; }
.compat-pct    { font-size: 0.6rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.interest-chips { display: flex; gap: 4px; flex-wrap: wrap; }
.chip { font-size: 0.58rem; padding: 3px 7px; border-radius: 4px; background: var(--surface); border: 1px solid var(--border); color: var(--sub); white-space: nowrap; }

.feed-actions { display: flex; gap: 7px; padding: 0 14px 14px; }
.action-btn { flex: 1; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1rem; border: 1px solid var(--border); }
.action-btn.skip { background: var(--surface2); }
.action-btn.like { background: rgba(92,68,255,0.15); border-color: rgba(92,68,255,0.3); }

/* Secondary phone - hidden on mobile */
.phone-secondary {
  display: none;
  width: 200px; height: 420px; position: absolute;
  right: -20px; bottom: 0; border-radius: 30px;
  background: #0b0b1e; border: 1.5px solid rgba(255,255,255,0.07);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  overflow: hidden; z-index: -1;
  animation: floatPhone 5s ease-in-out infinite 1.2s;
}

.couple-screen { padding: 22px 12px 12px; height: 100%; display: flex; flex-direction: column; gap: 9px; }
.couple-header { text-align: center; }
.couple-hearts { font-size: 1.1rem; margin-bottom: 3px; color: var(--pink); display: flex; justify-content: center; }
.couple-hearts .ic { fill: var(--pink); }
.couple-names  { font-size: 0.7rem; font-weight: 700; color: var(--text); }
.couple-since  { font-size: 0.58rem; color: var(--sub); margin-top: 2px; }
.couple-stats  { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.couple-stat   { background: var(--surface); border: 1px solid var(--border); border-radius: 9px; padding: 7px; }
.couple-stat-num   { font-size: 0.95rem; font-weight: 800; color: var(--pink); }
.couple-stat-label { font-size: 0.5rem; color: var(--sub); margin-top: 1px; }
.couple-widgets { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.couple-widget  { background: var(--surface); border: 1px solid var(--border); border-radius: 9px; padding: 8px; display: flex; align-items: center; gap: 7px; }
.widget-icon    { width: 24px; height: 24px; border-radius: 6px; background: rgba(255,77,109,0.12); color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }
.widget-title   { font-size: 0.6rem; font-weight: 600; color: var(--text); }
.widget-sub     { font-size: 0.52rem; color: var(--sub); margin-top: 1px; }

.hero-glow   { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.glow-accent { width: 280px; height: 280px; background: rgba(92,68,255,0.1); bottom: 40px; left: 50%; transform: translateX(-40%); }
.glow-pink   { width: 180px; height: 180px; background: rgba(255,77,109,0.07); bottom: 0; right: 5%; }

/* ─────────────────────────────────────────
   TRUST BAR
   ───────────────────────────────────────── */
.trust {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 20px; background: var(--bg2);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  position: relative; z-index: 1;
}
.trust-label  { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.5px; }
.trust-items  { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: center; }
.trust-item   { display: flex; align-items: center; gap: 8px; color: var(--sub); font-size: 0.82rem; font-weight: 500; }
.trust-icon   { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; opacity: 0.75; }

/* ─────────────────────────────────────────
   FEATURES
   ───────────────────────────────────────── */
.features { padding: 80px 20px; max-width: 1320px; margin: 0 auto; }

.features-header { margin-bottom: 48px; }
.features-header h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.features-header p  { font-size: 0.95rem; color: var(--sub); max-width: 560px; }

.features-grid { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 18px; overflow: hidden; }
.feature       { background: var(--surface); padding: 32px 28px; transition: background 0.2s; cursor: default; }
.feature:hover { background: var(--surface2); }
.feature-ic    { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); background: rgba(92,68,255,0.1); border: 1px solid rgba(92,68,255,0.2); font-size: 1.05rem; margin-bottom: 18px; }
.feature:nth-child(2) .feature-ic { color: var(--pink); background: rgba(255,77,109,0.1); border-color: rgba(255,77,109,0.2); }
.feature-num   { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; color: var(--muted); margin-bottom: 12px; }
.feature h3    { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature p     { font-size: 0.875rem; line-height: 1.7; color: var(--sub); }
.feature-highlight { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--accent); font-weight: 600; }

/* ─────────────────────────────────────────
   SCREENS
   ───────────────────────────────────────── */
.screens { padding: 0 20px 80px; max-width: 1320px; margin: 0 auto; }
.screens-header { text-align: center; margin-bottom: 48px; }
.screens-header h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.screens-header p  { color: var(--sub); font-size: 0.95rem; max-width: 440px; margin: 0 auto; }

.screens-row  { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.screen-item  { text-align: center; }
.screen-label { font-size: 0.75rem; color: var(--sub); margin-top: 16px; font-weight: 500; }

.match-phone { width: 220px; height: 460px; background: var(--surface); border-radius: 32px; border: 1.5px solid rgba(255,255,255,0.1); box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 50px rgba(92,68,255,0.08); overflow: hidden; display: inline-block; }
.match-phone-sm { width: 190px; height: 400px; border-radius: 28px; box-shadow: 0 20px 40px rgba(0,0,0,0.35); }

.match-screen {
  height: 100%; background: linear-gradient(160deg, #0e0e22, #0a0a1a);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 20px; gap: 14px;
}
.match-avatars  { display: flex; align-items: center; }
.match-avatar   { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #2a2550, #1c1a3a); border: 2px solid var(--bg); }
.match-avatar:first-child { transform: translateX(10px); z-index: 1; }
.match-avatar:last-child  { transform: translateX(-10px); }
.match-title   { font-size: 1.1rem; font-weight: 800; color: var(--text); text-align: center; }
.match-sub     { font-size: 0.7rem; color: var(--sub); text-align: center; line-height: 1.5; }
.match-interests { width: 100%; background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; padding: 12px; }
.match-interests-title { font-size: 0.6rem; font-weight: 600; color: var(--muted); margin-bottom: 7px; letter-spacing: 1px; text-transform: uppercase; }
.match-interests-chips { display: flex; flex-wrap: wrap; gap: 4px; }
.match-actions { display: flex; flex-direction: column; gap: 7px; width: 100%; }
.match-btn { width: 100%; padding: 10px; border-radius: 9px; border: none; font-size: 0.75rem; font-weight: 700; cursor: pointer; text-align: center; font-family: inherit; }
.match-btn-primary { background: var(--accent); color: #fff; }
.match-btn-ghost   { background: var(--surface2); color: var(--sub); border: 1px solid var(--border); }

.chat-screen   { height: 100%; display: flex; flex-direction: column; background: var(--surface); }
.chat-header   { padding: 18px 12px 10px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 9px; }
.chat-ava      { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #2a2550, #1c1a3a); flex-shrink: 0; position: relative; }
.online-dot    { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; position: absolute; bottom: 0; right: 0; border: 1.5px solid var(--surface); }
.chat-name     { font-size: 0.75rem; font-weight: 700; color: var(--text); }
.chat-status   { font-size: 0.58rem; color: #22c55e; }
.compat-mini   { margin-left: auto; font-size: 0.6rem; font-weight: 700; color: var(--accent); background: rgba(92,68,255,0.1); padding: 2px 7px; border-radius: 5px; }
.chat-messages { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 7px; overflow: hidden; }
.msg { max-width: 78%; font-size: 0.63rem; line-height: 1.5; padding: 7px 9px; border-radius: 9px; }
.msg-in  { background: var(--surface2); color: var(--text); border-radius: 9px 9px 9px 2px; align-self: flex-start; }
.msg-out { background: rgba(92,68,255,0.2); color: var(--text); border-radius: 9px 9px 2px 9px; align-self: flex-end; }
.chat-input-row { padding: 8px 10px; display: flex; gap: 5px; align-items: center; border-top: 1px solid var(--border); }
.chat-input-box { flex: 1; height: 28px; background: var(--surface2); border-radius: 7px; border: 1px solid var(--border); }
.chat-send      { width: 28px; height: 28px; border-radius: 7px; background: var(--accent); flex-shrink: 0; }

/* ─────────────────────────────────────────
   INTEGRATIONS
   ───────────────────────────────────────── */
.integrations { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 20px; }
.integrations-inner  { max-width: 1320px; margin: 0 auto; }
.integrations-layout { display: flex; flex-direction: column; gap: 48px; }

.integrations-copy h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); font-weight: 800; margin-bottom: 14px; }
.integrations-copy p  { font-size: 0.95rem; color: var(--sub); line-height: 1.75; margin-bottom: 32px; }

.integration-cards { display: flex; flex-direction: column; gap: 10px; }
.int-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; transition: border-color 0.2s, transform 0.2s; }
.int-card:hover { border-color: rgba(92,68,255,0.35); transform: translateX(4px); }
.int-icon   { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.15rem; color: var(--accent); background: var(--surface2); border: 1px solid var(--border); }
.int-info   { flex: 1; }
.int-name   { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.int-desc   { font-size: 0.78rem; color: var(--sub); line-height: 1.5; }
.int-status { font-size: 0.62rem; font-weight: 600; padding: 3px 9px; border-radius: 6px; background: rgba(92,68,255,0.1); color: var(--accent); flex-shrink: 0; }

/* Data cards visual - hidden on mobile */
.integrations-visual { display: none; position: relative; height: 360px; }
.data-card         { position: absolute; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.data-card-steam   { width: 220px; left: 0; top: 0; }
.data-card-spotify { width: 210px; right: 0; top: 50px; z-index: 1; }
.data-card-kp      { width: 200px; left: 24px; bottom: 0; z-index: 2; }
.dc-header  { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.dc-icon    { width: 28px; height: 28px; border-radius: 7px; background: var(--surface2); border: 1px solid var(--border); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.dc-title   { font-size: 0.72rem; font-weight: 700; color: var(--text); }
.dc-sub     { font-size: 0.58rem; color: var(--sub); }
.dc-items   { display: flex; flex-direction: column; gap: 5px; }
.dc-item    { display: flex; align-items: center; justify-content: space-between; font-size: 0.68rem; }
.dc-item-name { color: var(--sub); }
.dc-item-val  { color: var(--text); font-weight: 600; font-size: 0.62rem; }
.dc-bar-row   { display: flex; flex-direction: column; gap: 5px; }
.dc-bar-item  { display: flex; align-items: center; gap: 7px; }
.dc-bar-label { font-size: 0.62rem; color: var(--sub); width: 56px; flex-shrink: 0; }
.dc-bar-track { flex: 1; height: 3px; background: var(--border); border-radius: 2px; }
.dc-bar-fill  { height: 100%; border-radius: 2px; background: #1db954; }
.dc-bar-fill.kp { background: #ff6600; }

/* ─────────────────────────────────────────
   COUPLES
   ───────────────────────────────────────── */
.couples        { padding: 80px 20px; max-width: 1320px; margin: 0 auto; }
.couples-layout { display: flex; flex-direction: column; gap: 48px; }
.couples-copy h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); font-weight: 800; margin-bottom: 14px; }
.couples-copy p  { font-size: 0.95rem; color: var(--sub); line-height: 1.75; margin-bottom: 32px; }
.couples-features { display: flex; flex-direction: column; gap: 20px; }
.couples-feat  { display: flex; gap: 16px; align-items: flex-start; }
.couples-feat-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,77,109,0.08); border: 1px solid rgba(255,77,109,0.15); color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.couples-feat h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.couples-feat p  { font-size: 0.825rem; color: var(--sub); line-height: 1.6; }

.couples-grid-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.cg-tile       { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px; transition: transform 0.2s, border-color 0.2s; }
.cg-tile:hover { transform: translateY(-3px); border-color: rgba(255,77,109,0.25); }
.cg-tile.tall  { grid-row: span 2; }
.cg-tile.pink-tint { background: rgba(255,77,109,0.04); border-color: rgba(255,77,109,0.12); }
.cg-icon  { font-size: 1.2rem; margin-bottom: 9px; color: var(--pink); display: flex; }
.cg-title { font-size: 0.78rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cg-desc  { font-size: 0.68rem; color: var(--sub); line-height: 1.5; }
.cg-mini-chart { margin-top: 12px; display: flex; align-items: flex-end; gap: 3px; height: 32px; }
.cg-bar { flex: 1; background: rgba(255,77,109,0.25); border-radius: 3px; }

/* ─────────────────────────────────────────
   TIMER (CTA section)
   ───────────────────────────────────────── */
.timer-wrapper {
  position: relative; margin: 0 auto 32px;
  max-width: 480px;
}
.timer-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(92,68,255,0.15), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.timer-content {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 20px; padding: 28px 24px 20px;
  position: relative; z-index: 1;
}
.timer-label {
  display: block; text-align: center;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.timer {
  display: flex; gap: 8px; align-items: flex-end; justify-content: center;
  flex-wrap: wrap;
}
.timer-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.timer-value {
  font-size: clamp(1.8rem, 6vw, 2.4rem); font-weight: 900;
  color: var(--text); font-variant-numeric: tabular-nums; letter-spacing: -1px;
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 12px; padding: 10px 14px; min-width: 60px; text-align: center;
  line-height: 1;
}
.timer-unit { font-size: 0.6rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.timer-dots { font-size: 1.6rem; font-weight: 700; color: var(--muted); padding-bottom: 20px; line-height: 1; }

.timer-progress { margin-top: 18px; height: 3px; background: var(--border2); border-radius: 2px; overflow: hidden; }
.timer-progress-bar { height: 100%; width: 0%; background: linear-gradient(to right, var(--accent), var(--pink)); border-radius: 2px; transition: width 1s linear; }

.timer-open {
  text-align: center; font-size: 1.1rem; font-weight: 700; color: var(--text);
  padding: 24px; display: flex; flex-direction: column; gap: 8px;
}
.timer-open span { font-size: 0.875rem; color: var(--sub); font-weight: 400; }

/* ─────────────────────────────────────────
   CTA
   ───────────────────────────────────────── */
.cta-section { background: var(--bg2); border-top: 1px solid var(--border); padding: 80px 20px; text-align: center; }
.cta-inner   { max-width: 520px; margin: 0 auto; }
.cta-section h2  { font-size: clamp(1.8rem, 6vw, 3rem); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 14px; }
.cta-section > .cta-inner > p { color: var(--sub); font-size: 0.95rem; line-height: 1.75; margin-bottom: 36px; }

.waitlist-form  { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.waitlist-input { background: var(--surface); border: 1px solid var(--border2); border-radius: 12px; padding: 14px 18px; font-size: 0.9rem; color: var(--text); outline: none; font-family: inherit; transition: border-color 0.2s; }
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-input::placeholder { color: var(--muted); }
.cta-note { font-size: 0.75rem; color: var(--muted); }

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 28px 20px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; position: relative; z-index: 1; }
.footer-logo   { font-size: 0.95rem; font-weight: 800; color: var(--text); }
.footer-logo span { color: var(--accent); }
.footer-links  { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.78rem; color: var(--sub); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy   { font-size: 0.72rem; color: var(--muted); }

/* ─────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────── */
.how { padding: 80px 20px; max-width: 1320px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 44px; }
.how-header h2 { font-size: clamp(1.7rem, 5vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.how-header p  { color: var(--sub); font-size: 0.95rem; max-width: 460px; margin: 0 auto; }

.how-steps { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
.how-step  { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 26px 24px; text-align: center; flex: 1; }
.how-num   { width: 38px; height: 38px; margin: 0 auto 14px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 24px rgba(92,68,255,0.4); }
.how-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.how-step p  { font-size: 0.85rem; color: var(--sub); line-height: 1.6; }
.how-line  { display: none; }

/* ─────────────────────────────────────────
   COMPARISON TABLE
   ───────────────────────────────────────── */
.compare { padding: 0 20px 80px; max-width: 920px; margin: 0 auto; }
.compare-header { text-align: center; margin-bottom: 36px; }
.compare-header h2 { font-size: clamp(1.6rem, 5vw, 2.3rem); font-weight: 800; }
.compare-table { border: 1px solid var(--border); border-radius: 18px; overflow: hidden; background: var(--surface); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.compare-row > div { background: var(--surface); padding: 14px 16px; font-size: 0.82rem; display: flex; align-items: center; gap: 8px; }
.compare-feat { display: none !important; }
.compare-them { color: var(--sub); }
.compare-us   { color: var(--text); font-weight: 600; background: rgba(92,68,255,0.06) !important; }
.compare-head { font-weight: 700; }
.compare-head .compare-them { color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.compare-head .compare-us   { color: var(--accent); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.compare .ic { width: 16px; height: 16px; flex-shrink: 0; }
.compare .ic.pos { color: #4ade80; }
.compare .ic.neg { color: var(--muted); }

/* ─────────────────────────────────────────
   FAQ
   ───────────────────────────────────────── */
.faq { padding: 0 20px 80px; max-width: 760px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 32px; }
.faq-header h2 { font-size: clamp(1.6rem, 5vw, 2.3rem); font-weight: 800; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.faq-item[open] { border-color: rgba(92,68,255,0.3); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 20px;
  font-size: 0.92rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after {
  content: ''; position: absolute; background: var(--accent); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  transition: transform 0.2s ease;
}
.faq-plus::before { width: 14px; height: 2px; }
.faq-plus::after  { width: 2px; height: 14px; }
.faq-item[open] .faq-plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item p { padding: 0 20px 18px; font-size: 0.86rem; color: var(--sub); line-height: 1.65; }
.faq-item a { color: var(--accent); text-decoration: none; }
.faq-item a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   WAITLIST - referral / virality
   ───────────────────────────────────────── */
.cta-lead { color: var(--sub); font-size: 0.95rem; line-height: 1.75; margin-bottom: 28px; }
.cta-tg-btn { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }


/* ─────────────────────────────────────────
   TABLET  ≥ 640px
   ───────────────────────────────────────── */
@media (min-width: 640px) {
  :root { --nav-h: 64px; }
  nav { padding: 0 32px; }

  .trust { flex-direction: row; padding: 24px 32px; gap: 20px; }

  .features  { padding: 100px 32px; }
  .screens   { padding: 0 32px 100px; }
  .screens-row { flex-direction: row; align-items: flex-end; justify-content: center; flex-wrap: wrap; gap: 24px; }
  .match-phone    { width: 210px; height: 440px; }
  .match-phone-sm { width: 180px; height: 380px; }

  .integrations { padding: 100px 32px; }
  .couples      { padding: 100px 32px; }
  .cta-section  { padding: 100px 32px; }

  .waitlist-form { flex-direction: row; max-width: 420px; margin-left: auto; margin-right: auto; }
  .waitlist-form .btn-primary { white-space: nowrap; }

  footer { flex-direction: row; justify-content: space-between; text-align: left; padding: 32px; }

  .hero-meta { gap: 40px; }

  .how { padding: 100px 32px; }
  .compare { padding: 0 32px 100px; }
  .faq { padding: 0 32px 80px; }
  .cta-section .waitlist-form { flex-direction: row; }
  .cta-section .waitlist-form .btn-primary { white-space: nowrap; }

  /* 3-column comparison with category label */
  .compare-row { grid-template-columns: 1.1fr 1fr 1fr; }
  .compare-feat { display: flex !important; color: var(--text); font-weight: 600; }
  .compare-head .compare-feat { color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
  .compare-row > div { font-size: 0.85rem; padding: 16px 18px; }
}

/* ─────────────────────────────────────────
   DESKTOP  ≥ 1024px
   ───────────────────────────────────────── */
@media (min-width: 1024px) {
  nav { padding: 0 6vw; }
  .nav-center { display: flex; }
  .nav-right  { display: flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none !important; }

  .hero-wrap { padding: 0 6vw; }
  .hero {
    flex-direction: row; text-align: left; gap: 0;
    align-items: center; min-height: 100vh;
    padding-top: calc(var(--nav-h) + 80px);
    padding-bottom: 80px;
  }
  .hero-copy { flex: 1; padding-right: 60px; max-width: none; }
  .hero-actions { justify-content: flex-start; }
  .hero-meta { justify-content: flex-start; }
  /* On desktop: shrink eyebrow to content width, don't stretch */
  .hero-eyebrow { width: auto; max-width: none; display: inline-block; text-align: center; }
  .countdown-row { justify-content: center; }
  .cd-title { justify-content: center; }

  .hero-visual { flex: 1; max-width: none; height: 600px; justify-content: center; }
  .phone { width: 260px; height: 540px; }
  .phone-secondary { display: block; }

  .features  { padding: 120px 6vw; }
  .features-grid { flex-direction: row; }
  .feature { flex: 1; }

  .screens { padding: 0 6vw 120px; }
  .screens-row { flex-direction: row; flex-wrap: nowrap; gap: 20px; }
  .match-phone    { width: 230px; height: 480px; }
  .match-phone-sm { width: 200px; height: 420px; }

  .integrations { padding: 120px 6vw; }
  .integrations-layout { flex-direction: row; gap: 80px; align-items: center; }
  .integrations-visual { display: block; flex: 1; }
  .integrations-copy   { flex: 1; }

  .couples { padding: 120px 6vw; }
  .couples-layout { flex-direction: row; gap: 80px; }
  .couples-copy        { flex: 1; }
  .couples-grid-visual { flex: 1; }

  .cta-section  { padding: 120px 6vw; }

  .how { padding: 120px 6vw; }
  .how-steps { flex-direction: row; align-items: stretch; gap: 0; }
  .how-line  { display: block; align-self: center; flex: 0 0 40px; height: 1px; background: linear-gradient(to right, var(--border2), transparent, var(--border2)); }
  .how-step  { margin: 0; }

  .compare { padding: 0 6vw 120px; }
  .faq     { padding: 0 6vw 100px; }
}

/* ─────────────────────────────────────────
   WIDE  ≥ 1280px
   ───────────────────────────────────────── */
@media (min-width: 1280px) {
  .hero-copy { padding-right: 80px; }
  .hero-visual { height: 660px; }
  .phone { width: 280px; height: 560px; }
  .phone-secondary { width: 220px; height: 460px; }
  .cd-num { font-size: 2rem; min-width: 60px; }
}

/* ─────────────────────────────────────────
   SMALL PHONES  ≤ 380px
   ───────────────────────────────────────── */
@media (max-width: 380px) {
  .hero-wrap { padding: 0 16px; }
  .hero-eyebrow { padding: 14px 14px; }
  .countdown-row { gap: 6px; }
  .cd-num { font-size: 1.35rem; min-width: 42px; padding: 7px 6px; }
  .cd-sep { font-size: 1.1rem; padding-bottom: 16px; }
  .cd-label { font-size: 0.52rem; }
  .hero-meta { gap: 18px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { flex: 1; text-align: center; padding: 13px 16px; }
  .timer-value { min-width: 50px; padding: 9px 8px; }
  .timer { gap: 5px; }
  .timer-dots { padding-bottom: 18px; }
  .trust-items { gap: 14px; }
  .features, .how, .screens, .integrations, .couples, .cta-section, .faq { padding-left: 16px; padding-right: 16px; }
  .wl-share-btn { padding: 9px 12px; font-size: 0.78rem; }
}

/* ─────────────────────────────────────────
   ACCESSIBILITY
   ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .phone, .phone-secondary, .eyebrow-dot { animation: none !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero h1, .hero-desc, .hero-actions, .hero-meta, .hero-visual { animation: none; opacity: 1; transform: none; }
}

/* ── Larger tap targets on touch ── */
@media (hover: none) {
  .btn-sm, .nav-mobile a, .wl-share-btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

/* -----------------------------------------
   HERO PHONE: CARD STACK + SWIPE
   ----------------------------------------- */
.feed-stack {
  flex: 1; position: relative; overflow: hidden;
}
.feed-stack .feed-card {
  position: absolute; inset: 0;
  background: var(--surface2); border-radius: 18px;
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.42s cubic-bezier(.25,1,.35,1), opacity 0.32s ease;
  will-change: transform;
  flex: none;
}
.fc-b2    { transform: scale(0.87) translateY(18px); z-index: 1; }
.fc-b1    { transform: scale(0.93) translateY(10px); z-index: 2; }
.fc-front { transform: scale(1) translateY(0);       z-index: 3; }
.fc-exit-r {
  transform: translateX(145%) rotate(22deg) !important;
  opacity: 0; z-index: 4;
  transition: transform 0.38s cubic-bezier(.4,0,.6,1), opacity 0.3s !important;
}
.fc-exit-l {
  transform: translateX(-145%) rotate(-22deg) !important;
  opacity: 0; z-index: 4;
  transition: transform 0.38s cubic-bezier(.4,0,.6,1), opacity 0.3s !important;
}

/* LIKE / МИМО stamps */
.swipe-stamp {
  position: absolute; top: 12px; z-index: 10;
  padding: 2px 8px; font-size: 0.58rem; font-weight: 800;
  letter-spacing: 1.5px; border-radius: 5px; border: 2px solid;
  opacity: 0; pointer-events: none;
  transition: opacity 0.14s ease;
}
.stamp-like { left: 10px; color: #4ade80; border-color: #4ade80; transform: rotate(-12deg); }
.stamp-nope { right: 10px; color: var(--pink); border-color: var(--pink); transform: rotate(12deg); }

/* Action button micro-interactions */
.action-btn {
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
  cursor: pointer;
}
.action-btn:active  { transform: scale(0.88); }
.action-btn.like:hover { background: rgba(74,222,128,0.18); border-color: rgba(74,222,128,0.5); color: #4ade80; }
.action-btn.skip:hover { background: rgba(255,77,109,0.15); border-color: rgba(255,77,109,0.45); color: var(--pink); }

/* Pulse hint on like button (mobile — no hover) */
@media (hover: none) {
  .action-btn.like { animation: pulseHint 3s ease-in-out 2s 2; }
}
@keyframes pulseHint {
  0%,100% { box-shadow: none; }
  50%      { box-shadow: 0 0 0 5px rgba(74,222,128,0.2); }
}
