:root {
  --bg: #1a1a1a;
  --surface: rgba(12, 10, 14, 0.78);
  --surface-solid: #161218;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --accent: #fe4e60;
  --accent-hot: #fe2f50;
  --accent-soft: #ff5a70;
  --accent-glow: rgba(254, 78, 96, 0.7);
  --success: #3dde8a;
  --danger: #ff4d4d;
  --warning: #ffd700;
  --info: #6cb6ff;
  --ring: rgba(255, 255, 255, 0.14);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --radius-card: 20px;
  --radius-pill: 999px;
  --space: 8px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-brand: "Montserrat", var(--font);
  --font-tag: "Comic Sans MS", "Comic Sans", cursive, var(--font);
}

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

html,
body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow: hidden;
}

button,
a {
  font-family: inherit;
}

body {
  display: flex;
  justify-content: center;
}

.stage {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-track {
  position: absolute;
  inset: 0 0 auto;
  height: 200%;
  animation: scrollBackground 30s linear infinite;
}

.bg-slice {
  width: 100%;
  height: 50%;
  background-image: url("../images/changtu.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.lp-header {
  position: absolute;
  top: calc(20px + env(safe-area-inset-top));
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(100% - 24px, 400px);
  transform: translateX(-50%);
}

.brand {
  width: 300px;
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 42px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0 12px;
}

.tagline-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.tagline p {
  flex: 1;
  color: var(--text);
  font-family: var(--font-tag);
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.live-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--ring);
  border-radius: var(--radius-pill);
  background: rgba(10, 8, 12, 0.55);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(61, 222, 138, 0.18);
  animation: livePulse 1.4s ease-in-out infinite;
}

.thumbs {
  position: absolute;
  bottom: calc(125px + env(safe-area-inset-bottom));
  left: 0;
  z-index: 5;
  width: 100%;
  overflow: hidden;
}

.thumbs-track {
  display: flex;
  gap: 8px;
  width: max-content;
  padding: 0 8px;
  animation: scrollThumbs 22s linear infinite;
}

.thumbnail {
  width: 120px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.cta-download {
  position: absolute;
  bottom: calc(32px + env(safe-area-inset-bottom));
  left: 16px;
  right: 16px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(145deg, var(--accent-soft), var(--accent-hot));
  box-shadow:
    0 8px 30px var(--accent-glow),
    0 0 40px rgba(255, 60, 80, 0.8),
    inset 0 -4px 10px rgba(0, 0, 0, 0.2),
    inset 0 4px 10px rgba(255, 255, 255, 0.2);
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
  animation: glowPulse 2.2s infinite ease-in-out;
}

.cta-download::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 36%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 64%
  );
  transform: translateX(-120%);
  animation: ctaShine 2.6s ease-in-out infinite;
  pointer-events: none;
}

.cta-icon {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.cta-download span {
  position: relative;
  z-index: 1;
  font-size: clamp(15px, 4.6vw, 20px);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.cta-download:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.cta-download:active {
  transform: scale(0.97);
}

.toast-stack {
  position: absolute;
  top: calc(220px + env(safe-area-inset-top));
  right: 12px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(240px, calc(100% - 24px));
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--ring);
  border-radius: 14px;
  background: rgba(16, 12, 16, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  animation: toastIn 0.35s ease both;
}

.toast-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url("../images/changtu.jpg");
  background-size: 280% auto;
  flex-shrink: 0;
}

.toast b {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.toast span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}

.perm-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.55);
}

.perm-gate[hidden] {
  display: none;
}

.perm-card {
  width: min(100%, 340px);
  padding: 20px 18px 0;
  border: 1px solid var(--ring);
  border-radius: 20px;
  background: rgba(28, 22, 26, 0.96);
  box-shadow: var(--shadow);
  text-align: center;
  animation: screenIn 0.28s ease both;
}

.perm-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.perm-card h2 {
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.perm-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.perm-facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin: 14px 0 16px;
}

.perm-facts span {
  padding: 8px 4px;
  border: 1px solid var(--ring);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.3;
}

.perm-facts b {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.perm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ring);
}

.perm-btn {
  min-height: 48px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.perm-btn + .perm-btn {
  border-left: 1px solid var(--ring);
}

.perm-allow {
  color: var(--accent-soft);
  font-weight: 800;
}

.perm-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -2px;
}

.perm-btn:active {
  transform: scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .perm-card {
    animation: none;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.62);
}

.overlay[hidden] {
  display: none;
}

.overlay-panel {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #0c0a0e;
  color: var(--text);
}

.overlay-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 14, 0.72) 0%, rgba(12, 10, 14, 0.88) 42%, #0c0a0e 100%),
    url("../images/changtu.jpg") center top / cover;
  pointer-events: none;
}

.screen {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: calc(16px + env(safe-area-inset-top)) 16px calc(16px + env(safe-area-inset-bottom));
  animation: screenIn 0.28s ease both;
}

.screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.steps {
  display: flex;
  gap: 4px;
  flex: 1;
}

.steps i {
  height: 4px;
  flex: 1;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
}

.steps i.on {
  background: var(--accent);
}

.brand-mini {
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 16px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 1px;
}

.kicker {
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.h2 {
  margin: 6px 0 8px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.sub {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.grow {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
}

.call-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar-wrap {
  position: relative;
  width: 148px;
  height: 148px;
  margin: 8px 0 12px;
}

.pulse-ring {
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(254, 78, 96, 0.45);
  border-radius: 50%;
  animation: ringOut 1.8s ease-out infinite;
}

.pulse-ring.delay {
  animation-delay: 0.6s;
}

.avatar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  background-image: url("../images/changtu.jpg");
  background-size: 240% auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.avatar.sofia { background-position: 100% 11%; }
.avatar.emily { background-position: 0% 2%; }
.avatar.lily { background-position: 0% 46%; }
.avatar.olivia { background-position: 100% 62%; }
.avatar.maya { background-position: 100% 78%; }

.online-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(61, 222, 138, 0.16);
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
}

.call-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
}

.stat {
  padding: 10px 8px;
  border: 1px solid var(--ring);
  border-radius: 14px;
  background: rgba(22, 16, 20, 0.9);
  text-align: center;
}

.stat b {
  display: block;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.stat span {
  color: var(--text-muted);
  font-size: 11px;
}

.face-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 4px;
}

.face-row i {
  width: 36px;
  height: 36px;
  border: 2px solid #120e12;
  border-radius: 50%;
  background-image: url("../images/changtu.jpg");
  background-size: 280% auto;
  margin-left: -10px;
}

.face-row i:first-child {
  margin-left: 0;
}

.face-row span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.actions.row {
  grid-template-columns: 1fr 1fr;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 16px;
  border: none;
  border-radius: var(--radius-pill);
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
}

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-accept {
  background: linear-gradient(180deg, #3ee07a, #1db954);
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--ring);
}

.btn-accent {
  background: linear-gradient(145deg, var(--accent-soft), var(--accent-hot));
  box-shadow: 0 8px 24px var(--accent-glow);
}

.choice-grid {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid var(--ring);
  border-radius: 16px;
  background: rgba(22, 16, 20, 0.94);
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.choice:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.choice:active {
  transform: scale(0.98);
}

.choice em {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(254, 78, 96, 0.16);
  font-style: normal;
  font-size: 20px;
}

.choice b {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.choice span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.radar-box {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 8px auto 16px;
}

.radar {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(254, 78, 96, 0.55);
  background:
    radial-gradient(circle, rgba(254, 78, 96, 0.28) 0 3px, transparent 4px) center / 100% 100% no-repeat,
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 40px);
  box-shadow: 0 0 40px rgba(254, 78, 96, 0.18) inset;
  overflow: hidden;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(254, 78, 96, 0.45) 100%);
  animation: spin 2.4s linear infinite;
  transform-origin: center;
}

.radar-pin {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-image: url("../images/changtu.jpg");
  background-repeat: no-repeat;
  background-size: 200px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  animation: pinIn 0.4s ease forwards;
}

.radar-pin.emily { background-position: 4% 1%; }
.radar-pin.sofia { background-position: 96% 13%; }
.radar-pin.lily { background-position: 5% 33%; }
.radar-pin.maya { background-position: 96% 41%; }
.radar-pin.olivia { background-position: 4% 54%; }
.radar-pin.nina { background-position: 96% 2%; }

.scan-log {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 148px;
  overflow: hidden;
}

.log-line {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(22, 16, 20, 0.92);
  font-size: 13px;
  line-height: 1.4;
  animation: toastIn 0.3s ease both;
}

.log-line .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

.progress {
  height: 8px;
  margin-top: 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress > i {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-hot), var(--warning));
  transform-origin: left center;
  transform: scaleX(0);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.match-photo.avatar {
  width: 72px;
  height: 88px;
  border: 0;
  border-radius: 12px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.prep-meter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 8px 0 16px;
  font-variant-numeric: tabular-nums;
}

.prep-pct {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(254, 78, 96, 0.35);
}

.prep-meter > span {
  color: var(--accent-soft);
  font-size: 22px;
  font-weight: 800;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  list-style: none;
  text-align: left;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--ring);
  border-radius: 12px;
  background: rgba(22, 16, 20, 0.92);
  opacity: 0.38;
  font-size: 13px;
  line-height: 1.4;
}

.check-list li.on {
  opacity: 1;
}

.check-list li i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
}

.check-list li.on i {
  border-color: var(--success);
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(61, 222, 138, 0.16);
  transform: scale(1);
}

.match-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: auto;
}

.match-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--ring);
  border-radius: 16px;
  background: rgba(22, 16, 20, 0.94);
  animation: cardIn 0.35s ease both;
}

.match-photo {
  width: 72px;
  height: 88px;
  border-radius: 12px;
  background-image: url("../images/changtu.jpg");
  background-size: 220% auto;
}

.match-card b {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.match-card .meta {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.heart-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(254, 78, 96, 0.16);
  color: var(--accent-soft);
  cursor: pointer;
  font-size: 18px;
}

.heart-btn.on {
  background: var(--accent);
  color: #fff;
}

.unlock-stack {
  text-align: center;
}

.countdown {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin: 12px auto 16px;
  border-radius: 50%;
  border: 6px solid rgba(254, 78, 96, 0.25);
  background: conic-gradient(var(--accent) var(--p, 0%), rgba(255, 255, 255, 0.08) 0);
  font-size: 36px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #120e12;
}

.tiny {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.5;
}

@keyframes scrollBackground {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes scrollThumbs {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes ctaShine {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow:
      0 8px 30px var(--accent-glow),
      0 0 40px rgba(255, 60, 80, 0.8),
      inset 0 -4px 10px rgba(0, 0, 0, 0.2),
      inset 0 4px 10px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 10px 35px rgba(254, 78, 96, 0.9),
      0 0 50px rgba(255, 60, 80, 1),
      inset 0 -4px 10px rgba(0, 0, 0, 0.2),
      inset 0 4px 10px rgba(255, 255, 255, 0.2);
  }
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes screenIn {
  from { opacity: 0.55; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ringOut {
  0% { opacity: 0.7; transform: scale(0.92); }
  100% { opacity: 0; transform: scale(1.18); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pinIn {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
  .brand { font-size: 48px; }
  .tagline-icon { width: 70px; height: 70px; }
  .tagline p { font-size: 16px; }
  .thumbs { bottom: 80px; }
  .cta-download {
    left: 24px;
    right: 24px;
    min-height: 68px;
  }
  .cta-download span { font-size: 20px; }
}

@media (max-width: 390px) {
  .brand { font-size: 34px; width: auto; }
  .tagline p { font-size: 16px; }
  .thumbnail { width: 100px; height: 168px; }
  .h2 { font-size: 22px; }
  .cta-download {
    left: 12px;
    right: 12px;
    min-height: 58px;
    gap: 8px;
    padding: 10px 16px;
  }
  .cta-download span { font-size: 16px; letter-spacing: 0.02em; }
  .cta-icon { width: 20px; height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-track,
  .thumbs-track,
  .cta-download,
  .cta-download::after,
  .live-dot,
  .pulse-ring,
  .radar-sweep,
  .toast,
  .screen,
  .match-card,
  .log-line,
  .radar-pin {
    animation: none !important;
  }
  .screen,
  .toast,
  .match-card {
    opacity: 1;
    transform: none;
  }
  .radar-pin {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  .cta-download::after {
    opacity: 0;
  }
}
