:root {
  --ink: #111931;
  --ink-2: #3E4A66;
  --ink-3: #8B95AB;
  --line: #DDE3EE;
  --line-soft: #E9EDF4;
  --bg: #F8F9FB;
  --card: #FFFFFF;
  --blue: #168CE8;
  --teal: #07E1C2;
  --purple: #7D3EEE;
  --grad: linear-gradient(105deg, #7D3EEE 0%, #4A49F3 40%, #168CE8 72%, #07E1C2 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Golos Text', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Jost', sans-serif; line-height: 1.15; margin: 0 0 16px; }
h1 { font-size: clamp(38px, 5.4vw, 62px); font-weight: 700; letter-spacing: -0.015em; }
h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: #0F6CB8; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 14px;
}

.lead { font-size: 18px; color: var(--ink-2); max-width: 560px; }

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 56px);
  background: rgba(248, 249, 251, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Jost', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}
.nav-brand:hover { color: var(--ink); }
.nav-brand em { font-style: normal; font-weight: 500; color: var(--ink-3); }
.nav-brand em::first-letter { color: var(--teal); }

.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { font-size: 14.5px; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }

/* language switch */
.lang-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--card);
}
.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  padding: 5px 9px;
  border-radius: 8px;
  cursor: pointer;
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: #F6FAFF;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  color: #F6FAFF;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { color: #F6FAFF; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(17, 25, 49, 0.18); }
.btn-small { padding: 9px 16px; font-size: 13.5px; border-radius: 11px; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { color: var(--ink); box-shadow: none; border-color: var(--ink-3); }

/* hero */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 9vw, 120px) clamp(20px, 5vw, 56px) clamp(48px, 7vw, 90px);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { font-size: 13px; color: var(--ink-3); margin-top: 18px; }

/* hero visual: match card */
.hero-visual { display: flex; justify-content: center; }

.match-card {
  width: min(380px, 100%);
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(17, 25, 49, 0.10);
  position: relative;
}
.match-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  padding: 1.5px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}

.match-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.pair-sign {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  letter-spacing: -0.08em;
}
.match-head strong { display: block; font-family: 'Jost', sans-serif; font-size: 18px; font-weight: 600; }
.match-head span { font-size: 13px; color: var(--blue); font-weight: 500; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--bg);
  font-size: 13.5px;
}
.chip.more { color: var(--ink-3); }

.dot { width: 13px; height: 13px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.d-spotify { background: #1DB954; }
.d-linkedin { background: #0A66C2; }
.d-instagram { background: #C13584; }
.d-strava { background: #FC4C02; }
.d-letterboxd { background: #FF8000; }

.match-hint {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(22, 140, 232, 0.06);
  border: 1px solid rgba(22, 140, 232, 0.14);
  font-size: 13.5px;
  color: var(--ink-2);
}

/* sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 56px);
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 26px 24px;
}
.step-num {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 14px;
}
.step p { font-size: 14.5px; color: var(--ink-2); margin: 0; }

/* features grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 26px 24px;
}
.card p { font-size: 14.5px; color: var(--ink-2); margin: 0; }
.card-ico { font-size: 26px; line-height: 1; margin-bottom: 16px; height: 30px; display: flex; align-items: center; }
.sources-row { gap: 0; }
.sources-row .dot { width: 20px; height: 20px; border: 2px solid var(--card); margin-left: -6px; }
.sources-row .dot:first-child { margin-left: 0; }

/* privacy */
.privacy-inner {
  background: var(--ink);
  color: #E5EAF6;
  border-radius: 28px;
  padding: clamp(36px, 5vw, 64px);
}
.privacy-inner .eyebrow { color: #697590; }
.privacy-inner h2 { color: #F6FAFF; }
.privacy-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  max-width: 820px;
}
.privacy-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: #95A0B8;
}
.privacy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad);
}

/* waitlist */
.waitlist { text-align: center; }
.waitlist .lead { margin: 0 auto; }
.wl-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.wl-form[hidden] { display: none; }
.wl-form input {
  width: min(320px, 100%);
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--card);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
}
.wl-form input:focus { outline: 2px solid var(--blue); outline-offset: -1px; border-color: transparent; }
.wl-done { color: var(--blue); font-weight: 500; margin-top: 18px; }

/* footer */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 56px) 44px;
  border-top: 1px solid var(--line-soft);
}
.footer .nav-brand { font-size: 16px; }
.footer-note { font-size: 13px; color: var(--ink-3); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: 2; }
  .steps, .grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav .btn-small { display: none; }
  .lang-switch { margin-left: auto; }
  .steps, .grid { grid-template-columns: 1fr; }
  .privacy-list { grid-template-columns: 1fr; }
}
