:root {
  --bg: #eaf6fb;
  --bg-2: #f7fcfe;
  --white: #ffffff;
  --text: #0f1b24;
  --muted: #5b6b78;
  --border: #d7e6ee;
  --primary: #0e7c7b;
  --primary-dark: #0a5f5e;
  --teal: #14b8a6;
  --coral: #ff6b5b;
  --success: #16a34a;
  --max: 64rem;
  --display: "Plus Jakarta Sans", system-ui, sans-serif;
  --body: Inter, system-ui, sans-serif;
  --dock-gap: 8px;
  --safe-bottom: max(12px, env(safe-area-inset-bottom));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }
.font-display { font-family: var(--display); }

.wrap, .container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.wrap-narrow { width: min(48rem, calc(100% - 32px)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand img {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(14,124,123,.28);
  outline: 1px solid rgba(14,124,123,.28);
}
.brand-name { font-family: var(--display); font-size: 14px; font-weight: 800; line-height: 1; }
.brand-tag { display: block; font-size: 9px; color: var(--muted); margin-top: 2px; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(15,23,36,.06);
  white-space: nowrap;
}
.online-pill .muted { color: var(--muted); font-weight: 500; display: inline; }
.dot {
  position: relative;
  width: 8px; height: 8px;
}
.dot span, .dot i {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--success);
}
.dot i { animation: ping 1.4s cubic-bezier(0,0,.2,1) infinite; opacity: .75; }
@keyframes ping {
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(.97); }
.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(255,107,91,.7);
}
.btn-header { padding: 4px 10px; font-size: 11px; }
.btn-hero {
  position: relative;
  isolation: isolate;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.btn-hero .glow {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--coral);
  opacity: .5;
  filter: blur(18px);
  z-index: -1;
}
.btn-white { background: #fff; color: #128c7e; padding: 6px 12px; font-size: 11px; }
.btn-green { background: var(--success); color: #fff; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 32px 0 40px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, #7dd3fc 0%, transparent 55%),
              linear-gradient(180deg, #cbebff 0%, transparent 70%);
  opacity: .55;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: -8rem;
  right: -12%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: #7dd3fc;
  opacity: .28;
  filter: blur(64px);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(15,23,36,.06);
}
.trust-badge .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 800;
  max-width: 18ch;
  margin: 0 auto;
}
.grad {
  background: linear-gradient(90deg, var(--primary), #14b8a6 45%, var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 36rem;
  margin: 12px auto 20px;
}
.checks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
}
.checks span { display: inline-flex; align-items: center; gap: 6px; }
.check { color: var(--success); font-weight: 900; }

.earn-ticker {
  overflow: hidden;
  background: linear-gradient(180deg, #ecfdf5, #f0fdfa);
  border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0;
  padding: 10px 0 12px;
  margin: 8px 0 14px;
}
.earn-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #052e16;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  border-radius: 999px;
  padding: 5px 10px;
  margin: 0 12px 8px;
}
.earn-live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7);
  animation: ping 1.4s infinite;
}
.earn-rows {
  display: grid;
  gap: 8px;
}
.earn-mask {
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 20px), transparent);
}
.earn-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding-right: 10px;
}
.earn-track.fwd { animation: ticker 170s linear infinite; }
.earn-track.rev { animation: ticker-rev 190s linear infinite; }
.earn-rows .earn-mask:nth-child(1) .earn-track { animation-duration: 175s; }
.earn-rows .earn-mask:nth-child(2) .earn-track { animation-duration: 200s; }
.earn-rows .earn-mask:nth-child(3) .earn-track { animation-duration: 160s; }
.earn-rows .earn-mask:nth-child(4) .earn-track { animation-duration: 215s; }
.earn-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #d1fae5;
  border-radius: 999px;
  padding: 6px 10px 6px 6px;
  box-shadow: 0 1px 2px rgba(15,23,36,.04);
  font-size: 12px;
  color: var(--muted);
}
.earn-ava {
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 11px; font-weight: 800;
}
.earn-copy strong { color: var(--text); font-weight: 800; }
.earn-amt {
  background: #ecfdf5;
  color: #15803d;
  font-weight: 800;
  font-size: 12px;
  border-radius: 999px;
  padding: 3px 8px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ticker-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.earn-ticker:hover .earn-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .earn-track { animation: none; }
}

/* WhatsApp */
.wa-wrap { padding: 0 0 8px; }
.wa-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 2px solid #25d366;
  background: linear-gradient(90deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18,140,126,.22);
}
.wa-bar:hover { transform: translateY(-1px); }
.wa-copy { display: flex; align-items: center; gap: 12px; text-align: left; min-width: 0; }
.wa-copy h3 { font-family: var(--display); font-size: 15px; font-weight: 800; text-shadow: 0 1px 0 rgba(0,0,0,.08); }
.wa-copy p { font-size: 12px; color: rgba(255,255,255,.9); }
.wa-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #fff; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

/* Sections */
.section { padding: 32px 0; }
.section.tight { padding: 24px 0; }
.section h2, .block-title {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.lead { color: var(--muted); font-size: 15px; line-height: 1.65; }
.feature-list { margin: 16px 0; display: grid; gap: 6px; }
.feature-list li {
  list-style: none;
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
}

/* Matches */
.live-head p { font-size: 10px; color: var(--muted); }
.matches {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.match-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 2px rgba(15,23,36,.05);
  transition: transform .15s ease, box-shadow .15s ease;
}
.match-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,23,36,.08); }
.photo-wrap { position: relative; flex-shrink: 0; }
.match-photo {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; background: #e2e8f0;
}
.online-badge {
  position: absolute; right: -3px; bottom: -3px;
  width: 12px; height: 12px;
}
.online-badge span, .online-badge i {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--success);
  border: 2px solid #fff;
}
.online-badge i { animation: ping 1.5s infinite; border: 0; opacity: .7; }
.match-meta { min-width: 0; flex: 1; }
.match-name { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; }
.flag {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 36, .12);
  flex-shrink: 0;
}
.match-name .age { color: var(--muted); font-size: 10px; font-weight: 500; }
.match-sub { display: flex; gap: 8px; align-items: center; font-size: 10px; color: var(--muted); margin-top: 2px; }
.match-sub .idle { font-style: normal; }
.typing { display: inline-flex; align-items: center; gap: 4px; color: var(--primary); font-style: normal; }
.typing b {
  width: 4px; height: 4px; border-radius: 50%; background: var(--primary);
  animation: bounce 1s infinite;
}
.typing b:nth-child(2) { animation-delay: .15s; }
.typing b:nth-child(3) { animation-delay: .3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-3px); opacity: 1; }
}
.match-actions { display: flex; gap: 6px; margin-top: 6px; }
.match-actions .btn { padding: 2px 8px; font-size: 10px; font-weight: 800; }
.more-active {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline dotted;
  text-underline-offset: 4px;
}

.rule { height: 9px; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Steps */
.center { text-align: center; }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(15,23,36,.05);
}
.step-ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(14,124,123,.1); font-size: 20px;
}
.step h3 { font-family: var(--display); font-size: 16px; margin: 10px 0 4px; }
.step h3 em { color: var(--primary); font-style: normal; margin-right: 6px; }
.step p { color: var(--muted); font-size: 12px; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0a5f5e, var(--primary) 45%, #0d9488);
  color: #fff;
  box-shadow: 0 16px 32px rgba(14,124,123,.28);
}
.stat {
  background: rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 12px 8px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.stat b { display: block; font-family: var(--display); font-size: 22px; font-weight: 800; }
.stat span {
  display: inline-flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.8); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-top: 4px;
}

.love-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin-top: 16px;
}
.love-box h3 { font-size: 15px; margin-bottom: 8px; }

.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(15,23,36,.05);
}
.person-top { display: flex; gap: 10px; align-items: center; }
.person-top strong { display: inline-flex; align-items: center; gap: 6px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 12px; color: #fff; flex-shrink: 0;
}
.earn { color: var(--success); font-weight: 800; font-size: 10px; }
.quote { margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.55; }

.cta-band { padding: 48px 0; text-align: center; }
.cta-box {
  border-radius: 24px;
  padding: 32px 20px;
  color: #fff;
  background: linear-gradient(135deg, #0a5f5e, var(--primary) 45%, #0d9488);
  box-shadow: 0 16px 32px rgba(14,124,123,.28);
}
.cta-box h2 { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 1.9rem); }
.cta-box p { color: rgba(255,255,255,.85); margin: 8px auto 24px; max-width: 28rem; font-size: 14px; }
.fineprint { margin-top: 16px; color: rgba(255,255,255,.7); font-size: 11px; }

.faq { display: grid; gap: 8px; margin-top: 20px; }
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-size: 18px; font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: 8px; font-size: 14px; }

#live, #how, #earners, #faq { scroll-margin-top: 72px; }

body.footer-in-view .payout-pop,
body.footer-in-view .install-card.is-visible {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none !important;
}

footer, .site-footer {
  background: #071018;
  color: #94a3b8;
  padding: 28px 0 16px;
  font-size: 13px;
  margin-top: auto;
}
.footer-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 18px;
}
.footer-brand p { margin: 10px 0 12px; max-width: 36rem; line-height: 1.6; }
.footer-brand .brand-tag { color: #7d8b99; }
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.site-footer h4 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.site-footer a {
  display: block;
  color: #cbd5e1;
  font-weight: 600;
  padding: 4px 0;
  position: relative;
  z-index: 2;
}
.site-footer a:hover { color: #fff; }
.site-footer .brand { display: flex; }
.pay-row { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-row span {
  background: #12202c;
  color: #e2e8f0;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 800;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #1e293b;
  padding-top: 16px;
  font-size: 12px;
}

.payout-pop {
  position: fixed;
  left: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 50;
  width: min(340px, calc(100vw - 32px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: .4s cubic-bezier(.2,.8,.2,1);
}
.payout-pop.show { opacity: 1; transform: none; }
.payout-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #d1fae5;
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 16px 40px rgba(15,23,36,.16);
}
.payout-copy { min-width: 0; flex: 1; }
.payout-copy strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.payout-copy span { display: block; font-size: 12px; color: var(--muted); }
.payout-copy b { color: #15803d; }
.payout-card em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  color: #16a34a;
  background: #ecfdf5;
  border-radius: 999px;
  padding: 3px 8px;
  flex-shrink: 0;
}

.install-card {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  width: 210px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15,23,36,.16);
  padding: 12px;
}
.install-card.is-visible { display: block; }
.install-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.install-head img { width: 28px; height: 28px; border-radius: 50%; }
.install-card h4 { font-size: 13px; font-weight: 800; }
.os-row { display: flex; gap: 14px; color: var(--muted); font-size: 11px; font-weight: 700; margin: 8px 0; }
.os-row span { display: inline-flex; align-items: center; gap: 6px; }
.os-icon { width: 16px; height: 16px; flex-shrink: 0; display: block; }
.install-card .btn { width: 100%; padding: 8px; font-size: 13px; }

.auth-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #cbebff, var(--bg-2));
  display: flex;
  flex-direction: column;
}
.auth-page .auth-wrap {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  width: 100%;
}
.auth-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(15,23,36,.12);
}
.auth-card h1 { font-family: var(--display); font-size: 1.5rem; margin: 10px 0 6px; }
.field { display: grid; gap: 6px; margin-top: 12px; font-weight: 700; font-size: 13px; }
.field input, .field select {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  width: 100%;
}
.field input:focus, .field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,124,123,.15); }
.auth-card .btn { width: 100%; margin-top: 16px; padding: 12px; }
.switch { text-align: center; margin-top: 14px; color: var(--muted); font-size: 13px; }
.switch a { color: var(--primary); font-weight: 800; }

.app-shell { min-height: 100vh; background: var(--bg); display: flex; flex-direction: column; }
.app-top {
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
}
.app-top-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 56px; gap: 10px; flex-wrap: wrap; padding: 8px 0;
}
.wallet {
  background: #ecfdf5; color: #166534; font-weight: 800;
  border-radius: 999px; padding: 6px 10px; font-size: 13px;
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 56px);
  flex: 1;
}
.sidebar { background: transparent; padding: 12px; }
.chat-pane { padding: 12px; display: flex; flex-direction: column; min-height: 60vh; }
.thread {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 280px;
}
.bubble { max-width: 78%; padding: 8px 12px; border-radius: 14px; font-size: 14px; }
.bubble.them { background: #eef4fa; align-self: flex-start; }
.bubble.me { background: #d1fae5; align-self: flex-end; }
.composer { display: flex; gap: 8px; margin-top: 10px; }
.composer input {
  flex: 1; border: 1px solid var(--border); border-radius: 999px; padding: 11px 14px; outline: none; font-size: 16px;
}
.earn-chip { font-size: 12px; color: var(--success); font-weight: 800; text-align: right; min-height: 18px; }
.modal-bg {
  position: fixed; inset: 0; background: rgba(15,23,36,.5);
  display: none; place-items: center; z-index: 70; padding: 12px;
}
.modal-bg.open { display: grid; }
.modal { background: #fff; border-radius: 20px; padding: 20px; width: min(420px, 100%); }

@media (min-width: 640px) {
  .matches { grid-template-columns: 1fr 1fr; }
  .steps, .people-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .hero h1 { max-width: 22ch; }
}
@media (min-width: 900px) {
  .matches { grid-template-columns: 1fr 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr 1fr; }
  .app-grid { grid-template-columns: 340px 1fr; }
  .sidebar { background: #fff; border-right: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .site-header .brand-tag { display: none; }
  .online-pill { padding: 4px 8px; font-size: 11px; flex-shrink: 0; }
  .btn-header { padding: 6px 10px; font-size: 11px; white-space: nowrap; }
  .hero { padding: 24px 0 28px; }
  .hero-sub { font-size: 14px; }
  .btn-hero { width: min(100%, 340px); padding: 14px 16px; font-size: 13px; }
  .cta-box .btn-hero { width: 100%; }
  .section, .section.tight { padding: 22px 0; }
  .install-card.is-visible {
    display: flex;
    align-items: center;
    gap: 8px;
    left: 10px;
    right: 10px;
    width: auto;
    bottom: var(--safe-bottom);
    padding: 8px 10px;
    border-radius: 14px;
    z-index: 45;
  }
  .install-head { margin-bottom: 0; min-width: 0; flex: 1; }
  .install-head img { width: 32px; height: 32px; }
  .install-card h4 {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .os-row { display: none; }
  .install-card .btn {
    width: auto;
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 12px;
  }
  .payout-pop {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: var(--safe-bottom);
    z-index: 50;
  }
  body.install-docked .payout-pop {
    bottom: calc(var(--safe-bottom) + 62px + var(--dock-gap));
  }
  .payout-card { padding: 8px 10px; gap: 8px; }
  .payout-copy strong { font-size: 12px; }
  .payout-copy span { font-size: 11px; }
  .watch-sheet { width: 100%; max-height: 94vh; border-radius: 18px; }
  .watch-thread { max-height: 48vh; }
  .wrap, .container, .wrap-narrow { width: min(var(--max), calc(100% - 24px)); }
}

.watch-sheet {
  width: min(420px, 100%);
  max-height: min(88vh, 720px);
  background: #efeae2;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(15,23,36,.3);
}
.watch-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #008069;
  color: #fff;
}
.watch-who { min-width: 0; flex: 1; }
.watch-who strong { display: flex; align-items: center; gap: 6px; font-size: 15px; color: #fff; }
.watch-who span { display: block; font-size: 12px; color: #d0f0e8; }
.watch-close {
  width: 32px; height: 32px; border: 0; border-radius: 50%;
  background: transparent; font-size: 28px; line-height: 1; cursor: pointer; color: #fff;
}
.watch-thread {
  flex: 1;
  min-height: 280px;
  max-height: 52vh;
  overflow: auto;
  padding: 12px 10px 16px;
  background: #efeae2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.watch-row { display: flex; }
.watch-row.me { justify-content: flex-end; }
.watch-row .bubble { animation: pop .22s ease; max-width: 78%; }
.watch-thread .bubble.them { background: #fff; box-shadow: 0 1px 1px rgba(0,0,0,.08); }
.watch-thread .bubble.me { background: #d9fdd3; box-shadow: 0 1px 1px rgba(0,0,0,.08); }
.wa-note {
  align-self: center;
  max-width: 92%;
  margin: 4px 0 10px;
  background: #ffeecd;
  color: #54656f;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 1px 0.5px rgba(11,20,26,.08);
}
@keyframes pop {
  from { transform: translateY(6px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.wa-compose {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  padding: 5px 7px 7px;
  background: #efeae2;
}
.wa-input-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 21px;
  min-height: 42px;
  padding: 0 4px 0 2px;
  box-shadow: 0 1px 0.5px rgba(11,20,26,.13);
}
.wa-field {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #111b21;
  height: 42px;
  padding: 0 4px;
}
.wa-field::placeholder { color: #667781; }
.wa-ico {
  width: 40px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  color: #54656f;
}
.wa-ico svg { display: block; }
.wa-clip svg { transform: rotate(-45deg); transform-origin: 50% 50%; }
.wa-compose.is-typing .wa-cam { display: none; }
.wa-action {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #00a884;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 1px 3px rgba(11,20,26,.2);
}
.wa-action svg { display: block; }
.wa-action.is-send svg { margin-left: 3px; }
.watch-lock {
  padding: 14px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: #fff;
}
.watch-lock p { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.watch-lock .btn { width: 100%; padding: 12px; }
.legal { padding: 36px 0 16px; }
.legal h1 { font-family: var(--display); font-size: 1.6rem; margin-bottom: 10px; }
.legal p { color: var(--muted); margin-bottom: 12px; }

@media (max-width: 380px) {
  .brand-name { font-size: 13px; }
  .online-pill { font-size: 10px; gap: 4px; }
}
@media (max-width: 640px) {
  .watch-sheet { width: 100%; max-height: 94vh; border-radius: 18px; }
  .watch-thread { max-height: 48vh; min-height: 200px; }
}
