:root {
  --ink: #111318;
  --muted: #6b7280;
  --line: rgba(17, 19, 24, .1);
  --panel: rgba(255, 255, 255, .82);
  --paper: #f5f5f7;
  --accent: #0071e3;
  --accent-2: #34c759;
  --accent-3: #ff9f0a;
  --shadow: 0 28px 80px rgba(31, 35, 43, .12);
  --soft-shadow: 0 18px 42px rgba(31, 35, 43, .1);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page-bg, #fbfbfd);
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
p { line-height: 1.55; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.eyebrow,
.demo-list span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.demo-index { min-height: 100vh; display: grid; place-items: center; background: #f5f5f7; }
.index-shell { width: min(980px, calc(100% - 32px)); padding: 60px 0; }
.index-shell h1 { margin: 0; font-size: clamp(46px, 8vw, 90px); line-height: .9; letter-spacing: 0; }
.index-intro { max-width: 720px; color: var(--muted); font-size: 19px; line-height: 1.5; }
.demo-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.demo-list a { min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 22px; padding: 20px; background: #fff; box-shadow: var(--soft-shadow); }
.demo-list strong { font-size: 22px; }
.demo-list em { color: var(--muted); font-style: normal; line-height: 1.45; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(24px);
  background: rgba(251, 251, 253, .76);
  border-bottom: 1px solid rgba(17, 19, 24, .08);
}
.nav { position: relative; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: 0; }
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(145deg, #f5f5f7, #fff 24%, var(--accent) 52%, #111318);
  box-shadow: 0 12px 26px rgba(0, 113, 227, .2);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.quick-link { font-size: 14px; font-weight: 750; color: var(--accent); }
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  padding: 6px 8px 6px 16px;
  background: rgba(255,255,255,.8);
  box-shadow: var(--soft-shadow);
  color: #111318;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
}
.menu-trigger i { position: relative; width: 30px; height: 30px; border-radius: 50%; background: #111318; }
.menu-trigger i::before,
.menu-trigger i::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}
.menu-trigger i::before { top: 10px; }
.menu-trigger i::after { bottom: 10px; }
body.menu-open .menu-trigger i::before { top: 14px; transform: rotate(45deg); }
body.menu-open .menu-trigger i::after { bottom: 14px; transform: rotate(-45deg); }
.menu-drawer {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 42;
  width: min(920px, calc(100vw - 30px));
  max-height: min(760px, calc(100dvh - 92px));
  border: 1px solid rgba(17,19,24,.08);
  border-radius: 28px;
  padding: 0;
  background: #f5f5f7;
  box-shadow: 0 34px 90px rgba(31,35,43,.2);
  backdrop-filter: blur(28px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.menu-drawer::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
body.menu-open .menu-drawer { opacity: 1; transform: translateY(0); pointer-events: auto; }
.menu-scroll {
  max-height: inherit;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 12px;
  scrollbar-width: thin;
}
.menu-scroll::-webkit-scrollbar { width: 10px; }
.menu-scroll::-webkit-scrollbar-thumb { background: rgba(17,19,24,.22); border: 3px solid transparent; border-radius: 999px; background-clip: padding-box; }
.menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 22px;
  border-radius: 22px;
  background: #111318;
  color: #fff;
  margin-bottom: 10px;
}
.menu-intro strong {
  display: block;
  margin: 4px 0 6px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: .98;
  letter-spacing: 0;
}
.menu-intro span { color: rgba(255,255,255,.7); line-height: 1.45; }
.menu-intro .drawer-label { color: rgba(255,255,255,.58); margin: 0; }
.menu-intro > a,
.route-button,
.drawer-footer a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 820;
  white-space: nowrap;
}
.drawer-main { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-bottom: 10px; }
.drawer-main a,
.drawer-venue,
.drawer-event {
  border: 1px solid rgba(17,19,24,.07);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 20px rgba(31,35,43,.06);
}
.drawer-main a {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 16px;
  padding: 14px;
  color: #2f3642;
}
.drawer-main a strong {
  font-size: 16px;
  line-height: 1.1;
}
.drawer-main a span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.drawer-main a[aria-current="page"],
.drawer-main a:hover,
.drawer-main a:focus-visible { color: #fff; background: #111318; outline: none; }
.drawer-main a[aria-current="page"] span,
.drawer-main a:hover span,
.drawer-main a:focus-visible span { color: rgba(255,255,255,.68); }
.drawer-label { margin: 10px 4px 7px; color: #7b8391; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.drawer-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(17,19,24,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  margin-bottom: 10px;
}
.drawer-route .drawer-label { margin: 0 0 6px; }
.drawer-route h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}
.drawer-route p { max-width: 560px; margin: 8px 0 0; color: var(--muted); }
.drawer-venues,
.drawer-events { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-bottom: 10px; }
.drawer-venue,
.drawer-event { position: relative; min-height: 112px; border-radius: 18px; padding: 14px 34px 14px 14px; display: flex; flex-direction: column; justify-content: space-between; }
.drawer-event { min-height: 96px; }
.drawer-venue::after,
.drawer-event::after {
  content: ">";
  position: absolute;
  right: 11px;
  top: 11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #111318;
  font-size: 12px;
  font-weight: 900;
}
.drawer-venue strong,
.drawer-event strong { font-size: 15px; line-height: 1.05; }
.drawer-venue span,
.drawer-venue em,
.drawer-event span,
.drawer-event em { color: var(--muted); font-style: normal; font-size: 12px; font-weight: 700; }
.drawer-footer {
  position: sticky;
  bottom: -12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px -12px -12px;
  padding: 12px;
  border-top: 1px solid rgba(17,19,24,.08);
  background: #f5f5f7;
  box-shadow: 0 -16px 34px rgba(31,35,43,.08);
}
.drawer-footer span { color: var(--muted); font-size: 13px; font-weight: 760; }

.hero { padding: clamp(46px, 8vw, 110px) 0; }
.hero h1 { margin: 10px 0 18px; font-size: clamp(50px, 8.6vw, 112px); line-height: .9; letter-spacing: 0; }
.lead { color: #3f4652; font-size: clamp(19px, 2vw, 25px); line-height: 1.45; }
.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
}
.button { background: #111318; color: #fff; box-shadow: 0 18px 38px rgba(17,19,24,.18); }
.ghost-button { background: rgba(255,255,255,.78); border: 1px solid var(--line); box-shadow: var(--soft-shadow); }
.search-panel { max-width: 660px; margin: 28px 0 18px; padding: 8px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.88); box-shadow: var(--shadow); }
.search-panel label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.search-panel div { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.search-panel input,
.search-panel button { min-height: 54px; border-radius: 999px; border: 0; font: inherit; }
.search-panel input { width: 100%; padding: 0 18px; background: transparent; color: var(--ink); }
.search-panel button { padding: 0 20px; background: var(--accent); color: #fff; font-weight: 800; cursor: pointer; }

.hero-spotlight { min-height: calc(100vh - 68px); display: grid; justify-items: center; align-content: center; text-align: center; }
.hero-spotlight .lead { max-width: 720px; }
.hero-spotlight .search-panel { width: min(720px, 100%); margin-inline: auto; }
.spotlight-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.device-panel {
  width: min(780px, 100%);
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,245,247,.9));
  box-shadow: var(--shadow);
}
.device-top,
.device-dock,
.device-result { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.device-top { color: var(--muted); font-size: 14px; }
.device-top span { width: 12px; height: 12px; border-radius: 50%; background: var(--accent-2); }
.device-top em { font-style: normal; color: var(--accent); font-weight: 800; }
.device-search { margin: 18px 0; padding: 18px; border-radius: 22px; background: #fff; color: var(--muted); text-align: left; }
.device-result { padding: 18px; border-radius: 22px; background: rgba(255,255,255,.72); border: 1px solid var(--line); text-align: left; }
.device-result + .device-result { margin-top: 8px; }
.device-result span { color: var(--muted); }
.device-result.strong { background: #111318; color: #fff; }
.device-result.strong span { color: rgba(255,255,255,.68); }
.device-dock { margin-top: 16px; color: var(--muted); font-size: 13px; font-weight: 760; }

.hero-cards { min-height: calc(100vh - 68px); text-align: center; display: grid; align-content: center; justify-items: center; }
.hero-kicker { display: flex; gap: 12px; align-items: center; justify-content: center; color: var(--muted); }
.hero-cards .lead { max-width: 820px; }
.hero-cards .search-panel { width: min(720px, 100%); margin-inline: auto; }
.product-strip { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 38px; text-align: left; }
.product-strip article { min-height: 250px; border-radius: 30px; padding: 26px; background: #fff; box-shadow: var(--shadow); }
.product-strip span { color: var(--accent); font-weight: 850; }
.product-strip strong { display: block; margin-top: 68px; font-size: 36px; }
.product-strip p { color: var(--muted); }

.hero-privacy { min-height: calc(100vh - 68px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); align-items: center; gap: clamp(28px, 7vw, 88px); }
.privacy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; max-width: 620px; margin-top: 20px; }
.privacy-grid span { min-height: 72px; display: flex; align-items: center; padding: 16px; border-radius: 22px; background: rgba(255,255,255,.74); border: 1px solid var(--line); font-weight: 760; }
.privacy-pass { min-height: 520px; border-radius: 42px; padding: 34px; background: linear-gradient(145deg, #111318, #363f4d); color: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: space-between; }
.privacy-pass span { color: rgba(255,255,255,.62); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.privacy-pass strong { font-size: clamp(48px, 6vw, 78px); line-height: .92; }
.privacy-pass p { color: rgba(255,255,255,.72); font-size: 20px; }
.privacy-pass div { display: flex; justify-content: space-between; gap: 14px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 18px; }
.privacy-pass em { color: rgba(255,255,255,.66); font-style: normal; }

.hero-story { min-height: calc(100vh - 68px); display: grid; align-content: center; }
.hero-story h1 { max-width: 960px; }
.story-intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(340px, .8fr); gap: 28px; align-items: start; }
.story-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 44px; }
.story-steps article { min-height: 260px; border-radius: 34px; padding: 26px; background: #fff; box-shadow: var(--soft-shadow); display: flex; flex-direction: column; justify-content: space-between; }
.story-steps span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #111318; color: #fff; font-weight: 850; }
.story-steps strong { font-size: 38px; }
.story-steps p { color: var(--muted); }

.hero-os { min-height: calc(100vh - 68px); display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr); gap: clamp(28px, 6vw, 78px); align-items: center; }
.os-board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.os-board article { min-height: 220px; border: 1px solid var(--line); border-radius: 30px; padding: 24px; background: rgba(255,255,255,.78); box-shadow: var(--soft-shadow); display: flex; flex-direction: column; justify-content: space-between; }
.os-board article:first-child { grid-column: span 2; background: #111318; color: #fff; }
.os-board span { color: var(--accent); font-weight: 850; }
.os-board article:first-child span, .os-board article:first-child p { color: rgba(255,255,255,.68); }
.os-board strong { font-size: clamp(28px, 4vw, 52px); line-height: 1; }
.os-board p { color: var(--muted); }

.hero-dating { min-height: calc(100vh - 68px); display: grid; grid-template-columns: minmax(0, .88fr) minmax(340px, .78fr); gap: clamp(28px, 6vw, 78px); align-items: center; }
.dating-phone {
  min-height: 620px;
  border-radius: 44px;
  padding: 20px;
  background: #111318;
  color: #fff;
  box-shadow: 0 38px 90px rgba(255, 46, 99, .28);
}
.dating-top,
.app-tabs,
.match-stack { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dating-top button { border: 0; border-radius: 999px; padding: 10px 14px; background: rgba(255,255,255,.14); color: #fff; font-weight: 800; }
.match-card {
  min-height: 370px;
  margin: 18px 0;
  border-radius: 34px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.7)),
    radial-gradient(circle at 28% 18%, #ff7ab6, transparent 28%),
    radial-gradient(circle at 76% 22%, #00d4ff, transparent 25%),
    linear-gradient(135deg, #6d28d9, #111318 60%, #ff2e63);
}
.match-card span { align-self: flex-start; border-radius: 999px; padding: 7px 11px; background: rgba(255,255,255,.18); font-size: 12px; font-weight: 850; }
.match-card strong { margin-top: auto; font-size: 44px; line-height: .95; }
.match-card p { margin: 8px 0; color: rgba(255,255,255,.78); }
.match-card em { color: #8ef0b0; font-style: normal; font-weight: 850; }
.match-stack article { flex: 1; min-height: 100px; border-radius: 24px; padding: 16px; background: rgba(255,255,255,.1); display: flex; flex-direction: column; justify-content: space-between; }
.match-stack span,
.app-tabs span { color: rgba(255,255,255,.64); font-size: 12px; font-weight: 750; }
.app-tabs { margin-top: 16px; min-height: 58px; padding: 0 16px; border-radius: 999px; background: rgba(255,255,255,.12); }

.hero-heat { min-height: calc(100vh - 68px); display: grid; grid-template-columns: 1fr .82fr; gap: 18px; align-items: stretch; }
.heat-card {
  border-radius: 42px;
  padding: clamp(24px, 4vw, 46px);
  color: #fff;
  box-shadow: 0 38px 90px rgba(255, 105, 0, .22);
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.26), transparent 18rem),
    linear-gradient(155deg, #32030a 0%, #b91418 38%, #ff8a00 100%);
}
.heat-calendar { min-height: 650px; display: flex; flex-direction: column; justify-content: space-between; }
.heat-calendar h1 { color: #fff; }
.heat-calendar .eyebrow { color: rgba(255,255,255,.78); }
.heat-calendar .search-panel { box-shadow: none; background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.2); }
.heat-calendar .search-panel input { color: #fff; }
.heat-calendar .search-panel input::placeholder { color: rgba(255,255,255,.72); }
.date-dots { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; max-width: 520px; }
.date-dots span { aspect-ratio: 1; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; display: grid; place-items: center; font-weight: 850; }
.date-dots .active { background: #111318; border-color: #111318; }
.heat-session { display: flex; flex-direction: column; justify-content: space-between; text-align: center; }
.heat-session > strong { font-size: clamp(80px, 11vw, 150px); line-height: .85; }
.heat-session p { color: rgba(255,255,255,.78); font-size: 22px; }
.heat-ring { width: min(280px, 100%); aspect-ratio: 1; border-radius: 50%; margin: 0 auto; display: grid; place-items: center; border: 28px solid rgba(255,255,255,.9); box-shadow: inset 0 0 0 18px rgba(0,0,0,.08); }

.hero-trip { min-height: calc(100vh - 68px); display: grid; grid-template-columns: minmax(0, .82fr) minmax(340px, .7fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.trip-panel,
.trip-detail { border-radius: 42px; padding: clamp(24px, 4vw, 42px); background: #fff; box-shadow: var(--shadow); }
.trip-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.trip-tabs span { border-radius: 999px; padding: 10px 14px; background: #f1f3f5; font-weight: 800; }
.trip-tabs span:first-child { background: #111318; color: #fff; }
.trip-feature {
  min-height: 330px;
  border-radius: 32px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72)),
    radial-gradient(circle at 28% 22%, #91f2ff, transparent 26%),
    radial-gradient(circle at 70% 50%, #ff9f0a, transparent 27%),
    linear-gradient(135deg, #0f766e, #172554);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.trip-feature strong { font-size: 36px; line-height: 1; }
.trip-feature p { color: rgba(255,255,255,.78); }
.trip-feature a { align-self: flex-start; border-radius: 999px; padding: 12px 16px; background: #fff; color: #111318; font-weight: 850; }
.trip-detail { min-height: 520px; display: flex; flex-direction: column; justify-content: space-between; }
.trip-detail span { color: var(--accent); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.trip-detail strong { font-size: clamp(42px, 5vw, 72px); line-height: .92; }
.trip-detail p { color: var(--muted); font-size: 20px; }
.trip-detail div { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 18px; }
.trip-detail b { font-size: 32px; }
.trip-detail em { color: var(--muted); font-style: normal; }

.hero-night { min-height: calc(100vh - 68px); display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .85fr); gap: clamp(28px, 6vw, 78px); align-items: center; color: #fff; }
.hero-night .lead { color: rgba(255,255,255,.72); }
.hero-night .eyebrow { color: #7dd3fc; }
.hero-night h1 { color: #fff; }
.hero-night .search-panel { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); box-shadow: none; }
.hero-night .search-panel input { color: #fff; }
.signal-board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.signal-board article { min-height: 220px; border-radius: 30px; padding: 22px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 24px 70px rgba(0,0,0,.2); }
.signal-board span { color: #7dd3fc; font-weight: 850; }
.signal-board strong { font-size: 32px; line-height: 1; }

.hero-pass { min-height: calc(100vh - 68px); display: grid; grid-template-columns: minmax(340px, .78fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 78px); align-items: center; }
.pass-ticket {
  min-height: 580px;
  border-radius: 46px;
  padding: 36px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 32%),
    linear-gradient(160deg, #2e1065, #7c2d12 50%, #f97316);
  box-shadow: 0 38px 90px rgba(124,45,18,.28);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pass-ticket span { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.pass-ticket strong { font-size: clamp(56px, 7vw, 96px); line-height: .86; }
.pass-ticket p { color: rgba(255,255,255,.78); font-size: 22px; }
.pass-ticket div { display: flex; gap: 10px; flex-wrap: wrap; }
.pass-ticket b { border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 10px 14px; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.7); }
.ticker div { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker span { padding: 15px 22px; color: #3f4652; font-size: 13px; font-weight: 750; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-head { max-width: 720px; margin-bottom: 24px; }
.section-head.inline { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
h2 { margin: 4px 0 8px; font-size: clamp(34px, 5.6vw, 68px); line-height: .94; letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.15; }
.section-head p,
.check-card p,
.update-card p,
.article-card p,
.faq-card p,
.guide-card p,
.expect-card p,
.city-row { color: var(--muted); }
.text-link { font-weight: 800; color: var(--accent); }

.check-grid,
.update-grid,
.article-grid,
.guide-grid,
.expect-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.check-card,
.update-card,
.article-card,
.faq-card,
.guide-card,
.expect-card,
.region-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}
.check-card span,
.update-card span,
.article-card span,
.guide-card span { color: var(--accent); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.check-card strong,
.update-card strong,
.article-card strong,
.expect-card strong { display: block; font-size: 20px; line-height: 1.18; }
.region-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.region-card { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; }
.region-card strong { font-size: 30px; }
.region-card span { color: var(--accent); font-weight: 850; }
.city-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.city-row a { color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.guide-card { min-height: 290px; display: flex; flex-direction: column; justify-content: space-between; }
.guide-card a { font-weight: 850; color: var(--accent); }
.explainer-section { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: 44px; align-items: center; }
.explainer-copy p { color: #3f4652; font-size: 17px; }
.expect-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.link-columns { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.link-column { border-radius: 28px; background: #fff; padding: 24px; box-shadow: var(--soft-shadow); }
.link-column h2 { font-size: 25px; }
.link-column a { display: block; padding: 11px 0; color: #3f4652; font-weight: 760; border-top: 1px solid var(--line); }
.footer { border-top: 1px solid var(--line); background: rgba(255,255,255,.74); }
.footer .wrap { min-height: 96px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--muted); }
.footer strong { color: var(--ink); }

.demo-spotlight { --page-bg: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%); --accent: #0071e3; }
.demo-cards { --page-bg: #f5f5f7; --accent: #bf5af2; --accent-2: #30d158; }
.demo-cards .guide-grid { grid-template-columns: 1.15fr .92fr .92fr; }
.demo-cards .guide-card:first-child { min-height: 430px; background: #111318; color: #fff; }
.demo-cards .guide-card:first-child p { color: rgba(255,255,255,.7); }
.demo-privacy { --page-bg: linear-gradient(180deg, #f7fbff 0%, #f8f8fb 100%); --accent: #0a84ff; --accent-2: #64d2ff; }
.demo-privacy .explainer-section { border-radius: 42px; background: rgba(255,255,255,.56); padding-inline: clamp(18px, 4vw, 50px); }
.demo-story { --page-bg: #fffaf2; --accent: #ff9f0a; --accent-2: #007aff; }
.demo-story .faq-card { background: #fff; }
.demo-os { --page-bg: #f6f8fa; --accent: #34c759; --accent-2: #007aff; }
.demo-os .check-card,
.demo-os .update-card,
.demo-os .region-card { border-left: 5px solid var(--accent); }
.demo-dating { --page-bg: radial-gradient(circle at 80% 8%, rgba(255,46,99,.24), transparent 24rem), linear-gradient(180deg, #fff7fb 0%, #f5f7ff 100%); --accent: #ff2e63; --accent-2: #00d4ff; }
.demo-heat { --page-bg: linear-gradient(180deg, #fff1df 0%, #fff8ef 45%, #fff 100%); --accent: #ff6a00; --accent-2: #111318; }
.demo-trip { --page-bg: #eef2f3; --accent: #111318; --accent-2: #0f766e; }
.demo-night { --page-bg: radial-gradient(circle at 72% 22%, rgba(14,165,233,.2), transparent 24rem), linear-gradient(180deg, #070a12 0%, #101827 64%, #111318 100%); --ink: #f8fafc; --muted: rgba(255,255,255,.68); --panel: rgba(255,255,255,.08); --line: rgba(255,255,255,.14); --accent: #7dd3fc; }
.demo-night .site-header { background: rgba(7,10,18,.76); border-bottom-color: rgba(255,255,255,.1); }
.demo-night .brand,
.demo-night .quick-link,
.demo-night h2,
.demo-night h3,
.demo-night .footer strong { color: #fff; }
.demo-night .check-card,
.demo-night .update-card,
.demo-night .article-card,
.demo-night .faq-card,
.demo-night .guide-card,
.demo-night .expect-card,
.demo-night .region-card,
.demo-night .link-column { background: rgba(255,255,255,.08); color: #fff; }
.demo-night .footer { background: #070a12; border-top-color: rgba(255,255,255,.12); }
.demo-pass { --page-bg: linear-gradient(180deg, #fff7ed 0%, #f8fafc 100%); --accent: #f97316; --accent-2: #7c3aed; }

@media (max-width: 980px) {
  .demo-list,
  .hero-privacy,
  .story-intro,
  .hero-os,
  .explainer-section { grid-template-columns: 1fr; }
  .product-strip,
  .story-steps,
  .check-grid,
  .update-grid,
  .article-grid,
  .guide-grid,
  .demo-cards .guide-grid,
  .hero-dating,
  .hero-heat,
  .hero-trip,
  .hero-night,
  .hero-pass,
  .expect-grid,
  .region-grid,
  .faq-grid,
  .link-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .drawer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .drawer-venues,
  .drawer-events { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .privacy-pass { min-height: 420px; }
  .dating-phone,
  .heat-calendar,
  .trip-detail,
  .pass-ticket { min-height: 440px; }
  .hero-heat { align-items: stretch; }
}

@media (max-width: 640px) {
  body.menu-open { overflow: hidden; }
  .wrap { width: min(100% - 24px, 1180px); }
  .quick-link { display: none; }
  .brand span:last-child { font-size: 14px; }
  .menu-drawer {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    bottom: auto;
    width: auto;
    height: calc(100dvh - 88px);
    max-height: none;
    border-radius: 24px;
  }
  .menu-scroll {
    height: 100%;
    max-height: none;
    padding: 10px;
  }
  .menu-intro,
  .drawer-route,
  .drawer-footer { display: block; }
  .menu-intro { min-height: auto; padding: 18px; }
  .menu-intro > a,
  .route-button,
  .drawer-footer a { width: 100%; margin-top: 14px; }
  .drawer-route { padding: 18px; }
  .drawer-footer {
    margin: 10px -10px -10px;
    padding: 12px 10px 10px;
  }
  .drawer-main,
  .hero-dating,
  .hero-heat,
  .hero-trip,
  .hero-night,
  .hero-pass,
  .product-strip,
  .story-steps,
  .os-board,
  .check-grid,
  .update-grid,
  .article-grid,
  .guide-grid,
  .demo-cards .guide-grid,
  .expect-grid,
  .region-grid,
  .faq-grid,
  .link-columns { grid-template-columns: 1fr; }
  .os-board article:first-child { grid-column: auto; }
  .hero { padding-top: 34px; }
  .hero h1 { font-size: clamp(44px, 15vw, 72px); }
  .search-panel { border-radius: 28px; }
  .search-panel div { grid-template-columns: 1fr; }
  .section-head.inline { display: block; }
  .device-result { display: block; }
  .device-result span { display: block; margin-top: 6px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-pass strong { font-size: 46px; }
  .drawer-venues,
  .drawer-events { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .drawer-venue,
  .drawer-event { min-height: 94px; padding: 12px 32px 12px 12px; }
  .drawer-event { min-height: 86px; }
  .dating-phone,
  .heat-calendar,
  .trip-detail,
  .pass-ticket { min-height: auto; }
  .match-card { min-height: 300px; }
  .match-stack,
  .signal-board { display: grid; grid-template-columns: 1fr; }
  .date-dots { gap: 6px; }
}
