/*
 * Palette mirrors the Android app's Compose theme so the website and the app
 * read as one product. Variable names are historic (--red, --rose, --mint) and
 * are kept because ~60 rules reference them; only the values moved to the app's
 * purple/lavender scheme. Treat --red as "primary", --rose/--mint as "soft
 * surface" and --sky as "soft surface, one step deeper".
 *
 *   --ink        MezaInk           --red       MezaCoralDeep (primary)
 *   --ink-soft   MezaInkSoft       --red-dark  MezaPurpleDark
 *   --paper      MezaBackground    --rose-deep MezaPatternPurple
 *   --line       MezaLine          --lime      MezaLime (accent, unchanged)
 */
:root {
  --ink: #241b35;
  --ink-soft: #6d637a;
  --ink-faint: #9a90a8;
  --paper: #faf8fc;
  --rose: #f7f3fc;
  --rose-deep: #9167c9;
  --red: #6541a5;
  --red-dark: #24124f;
  --lime: #e94378;
  --sky: #eee7fa;
  --mint: #f7f3fc;
  --line: #d9cde8;
  --pink: #e94378;
  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
  --shadow: 0 28px 70px rgba(64, 42, 106, .14);
  --shadow-tight: 0 10px 26px rgba(64, 42, 106, .09);
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { min-width: 320px; margin: 0; background: radial-gradient(circle at 0 0, #fff 0, var(--paper) 46%, #f3eefa 100%); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(241, 223, 227, .8); background: rgba(255, 253, 253, .88); backdrop-filter: blur(14px); }
.nav { display: flex; min-height: 64px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: .07em; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; object-fit: cover; background: #fff; }
.nav-links { display: flex; gap: 28px; color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.nav-links a:hover, .mobile-nav a:hover { color: var(--red); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.language-switch { display: inline-flex; gap: 2px; padding: 2px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.72); }
.language-button { min-width: 31px; min-height: 28px; border: 0; border-radius: 999px; color: var(--ink-soft); background: transparent; font-family: var(--mono); font-size: 10px; font-weight: 700; cursor: pointer; }
.language-button.is-active { color: #fff; background: var(--ink); }
.mobile-language-switch { margin: 7px 0 2px; width: max-content; }
.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 999px; padding: 11px 20px; font-size: 13px; font-weight: 700; transition: .18s ease; }
.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: not-allowed; opacity: .5; transform: none; }
.button-dark { color: #fff; background: var(--ink); box-shadow: 0 9px 20px rgba(36, 32, 68, .18); }
.button-dark:hover { background: #352f61; }
.button-quiet, .button-outline { color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.62); }
.button-outline:hover, .button-quiet:hover { border-color: var(--red); color: var(--red); }
.button-coral { color: #fff; background: var(--red); box-shadow: 0 9px 22px rgba(185, 40, 69, .23); }
.button-coral:hover { background: var(--red-dark); }
.button-large { min-height: 50px; padding: 14px 24px; font-size: 14px; }
.button-block { width: 100%; }
.nav-toggle { display: none; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #fff; }
.mobile-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; gap: 2px; padding: 10px 24px 16px; border-bottom: 1px solid var(--line); color: var(--ink-soft); background: rgba(255, 253, 253, .98); box-shadow: var(--shadow-tight); font-size: 14px; font-weight: 600; }
.mobile-nav a { padding: 9px 0; }

.hero { padding-top: 58px; padding-bottom: 58px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 64px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px; color: var(--red); font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { width: 7px; height: 7px; border-radius: 50%; background: var(--rose-deep); content: ""; }
.eyebrow-light { color: #c9b4e8; }
.eyebrow-light::before { background: var(--lime); }
h1, h2, h3 { margin: 0; color: var(--ink); font-family: var(--display); letter-spacing: -.035em; line-height: 1.04; }
h1 { max-width: 650px; font-size: clamp(44px, 6vw, 72px); }
h1 span { color: var(--red); }
.hero-lead { max-width: 560px; margin: 24px 0 30px; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-meta { display: flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--ink-faint); font-family: var(--mono); font-size: 10px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(233,67,120,.19); }
.status-dot.is-warning { background: var(--rose-deep); box-shadow: 0 0 0 5px rgba(255,145,160,.17); }
.signal-panel { position: relative; min-height: 448px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; padding: 22px; background: linear-gradient(145deg, #fff 0, #f3eefa 65%, #f4edff 100%); box-shadow: var(--shadow); }
.signal-panel::before { position: absolute; right: -70px; bottom: -85px; width: 245px; height: 245px; border: 26px solid rgba(255,145,160,.38); border-radius: 50%; content: ""; }
.signal-panel-top { position: relative; z-index: 1; display: flex; justify-content: space-between; color: var(--ink-faint); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.detector-preview { position: relative; z-index: 1; margin-top: 21px; padding: 18px; border: 1px solid rgba(101,65,165,.16); border-radius: 20px; background: rgba(255,255,255,.72); box-shadow: 0 15px 35px rgba(64,42,106,.08); }
.detector-header { display: flex; align-items: center; gap: 8px; color: var(--ink-faint); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; }
.detector-live-dot { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(233,67,120,.18); animation: detectorPulse 1.7s ease-in-out infinite; }
.detector-time { margin-left: auto; color: var(--red); }
.detector-wave { display: flex; height: 74px; align-items: center; justify-content: center; gap: 6px; margin: 22px 0 17px; padding: 0 8px; border-top: 1px solid rgba(185,40,69,.12); border-bottom: 1px solid rgba(185,40,69,.12); }
.detector-wave i { width: 5px; height: var(--wave-height); min-height: 9px; border-radius: 99px; background: var(--red); animation: detectorWave 1.45s ease-in-out infinite alternate; }
.detector-wave i:nth-child(2n) { background: var(--ink); animation-delay: .12s; }.detector-wave i:nth-child(3n) { animation-delay: .24s; }.detector-wave i:nth-child(4n) { animation-delay: .38s; }
@keyframes detectorWave { from { transform: scaleY(.55); opacity: .55; } to { transform: scaleY(1); opacity: 1; } }
@keyframes detectorPulse { 50% { box-shadow: 0 0 0 8px rgba(198,243,18,.05); } }
.detector-match { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 14px; margin-bottom: 12px; }
.detector-match span { grid-column: 1; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; }.detector-match strong { grid-column: 2; color: var(--ink); font-family: var(--display); font-size: 25px; letter-spacing: -.04em; text-align: center; }
.detector-tag-wrap { display: grid; height: 104px; overflow: hidden; place-items: center; border-radius: 15px; background: #000; }
.detector-tag { width: 100%; height: 104px; object-fit: contain; background: #000; }
.detector-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; color: var(--ink-faint); font-family: var(--mono); font-size: 9px; }
.detector-pill { padding: 5px 8px; border-radius: 999px; color: var(--red-dark); background: var(--rose); font-weight: 700; letter-spacing: .08em; }
.signal-caption { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-top: 17px; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; }
.signal-caption strong { color: var(--ink); font-family: var(--display); font-size: 13px; }
.section-heading { max-width: 690px; margin-bottom: 46px; }
.section-heading h2 { font-size: clamp(32px, 4vw, 46px); }
.section-heading > p:last-child { max-width: 580px; margin: 15px 0 0; color: var(--ink-soft); font-size: 16px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-tight); }
.step-card { min-height: 260px; padding: 28px; border-right: 1px solid var(--line); }
.step-card:last-child { border: 0; }
.step-icon { display: grid; width: 42px; height: 42px; margin-bottom: 22px; place-items: center; border-radius: 13px; color: var(--ink); background: var(--rose); font-size: 22px; }
.step-icon svg { width: 22px; height: 22px; }
.step-card:nth-child(2) .step-icon { background: var(--sky); }.step-card:nth-child(3) .step-icon { background: var(--mint); }.step-card:nth-child(4) .step-icon { background: var(--lime); }
.step-card h3 { margin-bottom: 10px; font-size: 18px; }
.step-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.journey-section { background: #fff; }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.journey-card { min-height: 218px; padding: 24px; border: 1px solid var(--line); border-top: 3px solid var(--ink); border-radius: 16px; background: #fff; box-shadow: var(--shadow-tight); }
.journey-card > span { display: block; margin-bottom: 24px; color: var(--red); font-family: var(--mono); font-size: 11px; }
.journey-card h3 { margin-bottom: 10px; font-size: 18px; }
.journey-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.journey-card a { display: inline-block; margin-top: 17px; color: var(--red); font-size: 11px; font-weight: 700; }
.journey-card a b { margin-left: 4px; font-size: 14px; }
.journey-store-badges { margin-top: 17px; }
.google-play-badge { display: inline-block; width: 166px; line-height: 0; transition: transform .18s ease; }
.google-play-badge:hover { transform: translateY(-1px); }
.google-play-badge img { display: block; width: 100%; height: auto; }

.account-section { background: var(--ink); }
.account-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(520px, 600px); gap: 72px; align-items: start; }
.account-copy { padding-top: 34px; }
.account-copy h1, .account-copy h2 { max-width: 510px; color: #fff; font-size: clamp(34px, 4vw, 50px); }
.account-copy > p:not(.eyebrow) { max-width: 550px; margin: 20px 0 30px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.65; }
.check-list { display: grid; gap: 19px; padding: 0; margin: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: #fff; }
.check-list li > span { display: grid; width: 24px; height: 24px; flex: 0 0 auto; place-items: center; border-radius: 8px; color: var(--ink); background: var(--lime); font-weight: 800; }
.check-list strong, .check-list small { display: block; }.check-list strong { margin-bottom: 3px; font-size: 14px; }.check-list small { max-width: 410px; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.5; }
.panel-card { border-radius: 24px; padding: 30px; background: #fff; box-shadow: var(--shadow); }
.account-card { width: 100%; max-width: 600px; justify-self: end; }
.card-kicker, .plan-label, .footer-label { color: var(--red); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.panel-card h3 { margin-top: 12px; font-size: 26px; }.card-copy { margin: 11px 0 22px; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.google-button { display: flex; width: 100%; min-height: 50px; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: #fff; font-weight: 700; }.google-button:hover { border-color: var(--red); }.google-button:disabled { cursor: not-allowed; opacity: .55; }
.legal-consent { display: grid; gap: 9px; margin: 18px 0 6px; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.legal-consent.is-highlighted { padding: 10px 12px; border: 1.5px solid var(--red); border-radius: 10px; background: rgba(229,29,72,.06); }.legal-consent label { display: flex; gap: 8px; align-items: flex-start; }.legal-consent input { margin-top: 3px; accent-color: var(--red); }.legal-consent a, .legal-document a { color: var(--red-dark); font-weight: 700; }
.compact-footer { padding: 28px 0 20px; }.compact-footer .footer-bottom a { color: rgba(255,255,255,.78); }.compact-footer .footer-bottom a:hover { color: #fff; }
.legal-main { padding: 52px 0 88px; background: var(--paper); }.legal-wrap { max-width: 880px; }.legal-document { padding: 42px clamp(22px, 5vw, 64px); color: var(--ink); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-tight); }.legal-document h1 { margin: 8px 0 12px; font-size: clamp(34px, 5vw, 52px); line-height: 1.05; }.legal-document h2 { margin: 34px 0 10px; font-size: 22px; }.legal-document h3 { margin: 20px 0 6px; font-size: 15px; }.legal-document p, .legal-document li { color: var(--ink-soft); font-size: 14px; line-height: 1.7; }.legal-document ul { padding-left: 22px; }.legal-meta { color: var(--ink-soft); font-family: var(--mono); font-size: 11px !important; }.legal-caps { text-transform: uppercase; }
.google-g { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: #4285f4; background: #edf3ff; font-weight: 800; }
.google-signin-actions { display: grid; gap: 10px; margin: 0 0 4px; }
.google-continue-as { display: flex; width: 100%; min-height: 56px; align-items: center; gap: 12px; padding: 6px 14px 6px 6px; border: 1px solid #dadce0; border-radius: 999px; color: #3c4043; background: #fff; text-align: left; cursor: pointer; }
.google-continue-as:hover { background: #f7f8f8; box-shadow: 0 1px 2px rgba(60,64,67,.15); }
.google-continue-as img { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; background: #f1f3f4; }
.google-continue-as-copy { min-width: 0; flex: 1; }
.google-continue-as-copy strong, .google-continue-as-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.google-continue-as-copy strong { font-size: 14px; font-weight: 700; }
.google-continue-as-copy small { margin-top: 1px; color: #5f6368; font-size: 12px; font-weight: 500; }
.google-continue-as-mark { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; }
.inline-status, .billing-status { min-height: 24px; margin-top: 13px; color: var(--ink-faint); font-family: var(--mono); font-size: 10px; line-height: 1.45; }.inline-status.is-error, .billing-status.is-error { color: var(--red); }.inline-status.is-good, .billing-status.is-good { color: #3d7652; }
.account-profile { display: flex; align-items: center; gap: 11px; margin-top: 15px; padding: 11px; border-radius: 13px; background: #f7f4f5; }.account-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: var(--rose); }.account-profile div { min-width: 0; flex: 1; }.account-profile strong, .account-profile small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.account-profile strong { font-size: 12px; }.account-profile small { margin-top: 2px; color: var(--ink-soft); font-size: 10px; }.text-link { border: 0; color: var(--red); background: transparent; font-size: 10px; font-weight: 700; }
.account-referral { color: var(--red) !important; font-family: var(--mono); font-weight: 700; letter-spacing: .04em; }
.referral-field { display: grid; gap: 6px; margin: 0 0 14px; color: var(--ink); font-size: 11px; font-weight: 700; }.referral-field em { color: var(--ink-faint); font-style: normal; font-weight: 500; }.referral-field input { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; color: var(--ink); background: #fff; font: inherit; letter-spacing: .04em; text-transform: uppercase; }.referral-field input:focus { outline: 2px solid rgba(229,29,72,.18); border-color: var(--red); }.referral-field small { color: var(--ink-faint); font-size: 10px; font-weight: 500; line-height: 1.45; }
.terms-row { display: flex; gap: 8px; align-items: flex-start; margin-top: 20px; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }.terms-row input { margin-top: 2px; accent-color: var(--red); }.terms-row a { color: var(--red); font-weight: 700; }.fine-print { margin: 16px 0 0; color: var(--ink-faint); font-size: 10px; line-height: 1.5; }

.pricing-grid { display: grid; gap: 42px; align-items: start; }
.pricing-copy { max-width: 760px; }
.plan-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.free-plan-card { display: flex; min-height: 100%; flex-direction: column; padding: 34px 36px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--shadow-tight); }
.free-plan-card h3 { margin: 11px 0 4px; font-size: 28px; }
.free-plan-card .price-line { color: var(--ink); }
.free-plan-card .price-line span { color: var(--ink-soft); }
.free-plan-card .feature-list { margin: 22px 0; }
.free-plan-card .feature-list li { color: var(--ink-soft); }
.free-plan-card .feature-list li > span:first-child { color: var(--red); font-weight: 800; }.free-plan-card .feature-list li > span:first-child + span { color: var(--ink-soft); font-weight: 500; }
.free-plan-card .button-outline { margin-top: auto; color: var(--ink); background: #fff; }
.plan-card { position: relative; display: flex; min-height: 100%; overflow: hidden; flex-direction: column; border-radius: 25px; padding: 36px; color: #fff; background: linear-gradient(145deg, var(--red-dark), var(--red)); box-shadow: var(--shadow); }.plan-card::after { position: absolute; right: -80px; bottom: -80px; width: 230px; height: 230px; border: 30px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.plan-card .plan-label { position: relative; z-index: 1; color: #fff; }
.promo-badge { position: relative; z-index: 1; display: inline-flex; width: fit-content; margin: 12px 0 0; padding: 6px 10px; border-radius: 999px; color: var(--ink); background: var(--lime); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.promo-price-note { position: relative; z-index: 1; margin: 4px 0 -7px; color: rgba(255,255,255,.78); font-family: var(--mono); font-size: 10px; }
.plan-card h2 { position: relative; z-index: 1; margin-top: 12px; color: #fff; font-size: 34px; }.plan-summary { position: relative; z-index: 1; max-width: 330px; margin: 10px 0 28px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; }.price-line { position: relative; z-index: 1; display: flex; align-items: baseline; gap: 8px; }.price-line strong { font-family: var(--mono); font-size: 36px; }.price-line span { color: rgba(255,255,255,.72); font-size: 12px; }.feature-list { position: relative; z-index: 1; display: grid; gap: 11px; padding: 0; margin: 28px 0; list-style: none; }.feature-list li { display: flex; gap: 9px; align-items: flex-start; color: rgba(255,255,255,.86); font-size: 12px; }.feature-list li > span:first-child { color: #fff; font-weight: 800; }.feature-list li > span:first-child + span { color: rgba(255,255,255,.86); font-weight: 500; }.plan-card .button { position: relative; z-index: 1; color: var(--red-dark); background: #fff; box-shadow: none; font-weight: 700; }.plan-card .button:hover { background: var(--sky); color: var(--red-dark); }.billing-status { position: relative; z-index: 1; color: rgba(255,255,255,.65); }.billing-status.is-error { color: #ffd7e3; }.billing-status.is-good { color: #dcc9ff; }
.pricing-copy h2 { font-size: clamp(32px, 4vw, 52px); }.pricing-copy > p:not(.eyebrow) { max-width: 620px; margin: 17px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.download-section { background: #fff; }
.download-grid { display: grid; grid-template-columns: 1fr .86fr; gap: 84px; align-items: center; }
.download-grid .section-heading { margin-bottom: 0; }
.download-card { max-width: 520px; justify-self: end; }
.download-card h3 { margin-top: 12px; font-size: 26px; }
.store-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }


.faq-section { background: #fff; }.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 0; list-style: none; cursor: pointer; font-size: 15px; font-weight: 600; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary::after { color: var(--red); content: "+"; font-family: var(--mono); font-size: 20px; font-weight: 400; }.faq-list details[open] summary::after { content: "−"; }.faq-list p { max-width: 640px; margin: -4px 0 20px; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.site-footer { padding: 66px 0 28px; color: rgba(255,255,255,.7); background: var(--ink); }.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }.footer-brand { color: #fff; }.footer-copy { max-width: 270px; margin: 14px 0 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.6; }.footer-label { margin: 2px 0 15px; color: rgba(255,255,255,.4); }.footer-grid > div > a:not(.brand) { display: block; margin-bottom: 10px; color: rgba(255,255,255,.72); font-size: 12px; }.footer-grid > div > a:hover { color: #fff; }.footer-bottom { display: flex; justify-content: space-between; gap: 12px; padding-top: 23px; color: rgba(255,255,255,.4); font-family: var(--mono); font-size: 10px; }
.toast { position: fixed; left: 50%; bottom: 22px; z-index: 50; max-width: min(420px, calc(100% - 32px)); padding: 12px 16px; border-radius: 999px; color: #fff; background: var(--ink); box-shadow: var(--shadow-tight); opacity: 0; pointer-events: none; transform: translate(-50%, 14px); transition: .2s ease; font-size: 12px; }.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) { .nav-links, .nav-actions { display: none; }.nav-toggle { display: block; }.mobile-nav:not([hidden]) { display: grid; }.hero-grid, .account-grid, .download-grid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }.plan-stack { grid-template-columns: 1fr; }.hero { padding-top: 62px; }.signal-panel { max-width: 560px; }.steps-grid { grid-template-columns: 1fr 1fr; }.step-card:nth-child(2) { border-right: 0; }.step-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }.account-copy { max-width: 670px; }.panel-card, .download-card { max-width: 560px; }.download-card { justify-self: start; }.faq-grid { gap: 20px; }.footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .wrap { width: min(100% - 32px, 520px); }.section-pad { padding: 72px 0; }.hero { padding-top: 48px; }.hero h1 { font-size: 42px; }.hero-lead { font-size: 15px; }.hero-actions, .hero-actions .button { width: 100%; }.signal-panel { min-height: 420px; padding: 17px; }.detector-preview { padding: 14px; }.detector-wave { gap: 4px; padding: 0 3px; }.detector-wave i { width: 4px; }.steps-grid { grid-template-columns: 1fr; }.step-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }.step-card:last-child { border-bottom: 0; }.section-heading h2, .pricing-copy h2 { font-size: 34px; }.account-copy { padding-top: 0; }.account-copy h1, .account-copy h2 { font-size: 36px; }.free-plan-card, .panel-card, .plan-card { padding: 24px; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }.footer-grid > div:first-child { grid-column: 1/-1; }.footer-bottom { display: block; }.footer-bottom span { display: block; margin-top: 6px; } }
.contact-section { background: #fbf7f8; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(520px, 600px); gap: 72px; align-items: center; }
.contact-grid .section-heading { margin-bottom: 0; }
.contact-card { width: 100%; max-width: 600px; justify-self: end; }
.contact-side-note { max-width: 400px; margin-top: 30px; padding: 18px 20px; border-left: 3px solid var(--red); background: #fff; }
.contact-side-note strong { font-size: 13px; }
.contact-side-note p { margin: 5px 0 10px; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.contact-side-note .text-link { display: inline-block; font-family: var(--mono); font-size: 11px; }
.contact-form { display: grid; gap: 14px; margin-top: 20px; }
.contact-field { display: grid; gap: 6px; color: var(--ink); font-size: 11px; font-weight: 700; }
.contact-input { width: 100%; min-height: 43px; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; color: var(--ink); background: #fff; font: inherit; font-weight: 500; }
.contact-input:focus { outline: 2px solid rgba(229,29,72,.18); border-color: var(--red); }
.contact-textarea { min-height: 118px; resize: vertical; }
.contact-error { display: none; color: var(--red); font-size: 10px; font-weight: 500; }
.contact-error.is-visible { display: block; }
.contact-deletion { background: #fff; }
.contact-deletion-card { max-width: 720px; padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-tight); }
.contact-deletion-card h2 { margin: 8px 0 10px; font-size: clamp(26px, 4vw, 38px); }
.contact-deletion-card p:not(.eyebrow) { max-width: 580px; margin: 0 0 20px; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.account-page-section { min-height: calc(100vh - 170px); }
.onboarding-header { border-bottom: 1px solid var(--line); background: #fff; }
.onboarding-nav { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; }
.onboarding-actions { display: flex; align-items: center; gap: 18px; }
.onboarding-help { display: flex; align-items: center; gap: 7px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.onboarding-progress { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.onboarding-progress span { height: 4px; border-radius: 999px; background: #eee7ea; }
.onboarding-progress span.is-active { background: var(--red); }
.onboarding-step { margin: 8px 0 14px; color: var(--ink-faint); font: 10px var(--mono); }
.signin-main { min-height: calc(100vh - 110px); background: var(--ink); }
.signin-section { position: relative; min-height: calc(100vh - 110px); overflow: hidden; padding: 64px 0 90px; }
.signin-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 20%, rgba(229,29,72,.25), transparent 42%), radial-gradient(circle at 10% 90%, rgba(255,126,141,.13), transparent 34%); }
.signin-wrap { position: relative; z-index: 1; display: grid; place-items: center; }
.signin-card { width: min(100%, 560px); max-width: 560px; justify-self: center; }
.signin-card h1 { margin: 0; font-size: 32px; }
.signin-referral { margin-top: 20px; }
.signin-foot { margin: 20px 0 0; text-align: center; color: var(--ink-soft); font-size: 11px; }
.signin-foot a { color: var(--red); font-weight: 700; }
.signin-continue { display: flex; width: 100%; justify-content: center; margin-top: 18px; }
.onboarding-flow-wrap { position: relative; z-index: 1; }
.billing-disabled-state { max-width: 720px; margin: 48px auto; padding: 32px; border: 1px solid var(--line, #e1e3e7); border-radius: 24px; background: #eef3ef; box-shadow: 0 16px 40px rgba(23,24,27,.08); }
.billing-disabled-state h1 { margin: 8px 0 12px; }
.billing-disabled-state p:not(.eyebrow) { max-width: 580px; color: var(--ink-soft, #62656c); line-height: 1.6; }
.onboarding-flow-heading { max-width: 720px; margin: 0 auto 28px; color: #fff; text-align: center; }
.onboarding-flow-heading h1 { font-size: clamp(32px, 5vw, 48px); }
.onboarding-flow-heading p { margin-top: 10px; color: rgba(255,255,255,.68); line-height: 1.6; }
.onboarding-plan-stack { max-width: 980px; margin: 0 auto; }
.onboarding-plan-stack .free-plan-card, .onboarding-plan-stack .plan-card { min-height: 520px; }
.plan-stack { grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr); gap:18px; max-width:820px; margin-right:auto; margin-left:auto; align-items:center; }
.onboarding-plan-stack { max-width:820px; }
.credit-package { display:flex; min-height:0; flex-direction:column; padding:24px; border:1px solid var(--line); border-radius:8px; background:#fff; box-shadow:var(--shadow-tight); }
.credit-package.is-featured { min-height:344px; color:#fff; background:var(--ink); border:3px solid var(--red); box-shadow:0 18px 44px rgba(0,0,0,.28); }
.credit-package h3 { margin:0 0 18px; font-size:22px; }
.credit-package .recommended-star { color:var(--lime); font-family:Arial,sans-serif; }
.credit-package.is-featured h3, .credit-package.is-featured .price-line strong { color:#fff; }
.credit-package .price-line { display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; }
.credit-package .price-line strong { font-size:28px; }
.credit-package .price-line span { font:700 13px var(--mono); color:var(--ink-soft); }
.credit-package.is-featured .price-line span { color:rgba(255,255,255,.72); }
.credit-package .feature-list { min-height:0; margin:16px 0 22px; }
.credit-package .button { margin-top:auto; }
.credit-package:not(.is-featured) .feature-list li { color:var(--ink-soft); }
.wallet-heading { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:22px; }
.wallet-heading h1 { margin:4px 0; color:#fff; font-size:42px; }
.wallet-heading p { margin:0; color:rgba(255,255,255,.68); }
.wallet-zero-status { margin:0 0 18px; padding:13px 16px; border-left:4px solid var(--red); color:var(--ink); background:#fff; box-shadow:var(--shadow-tight); line-height:1.5; }
.bank-choice { display:flex; gap:10px; margin:0 0 20px; }
.bank-choice label { display:flex; gap:8px; align-items:center; min-width:110px; padding:12px 14px; border:1px solid var(--line); border-radius:6px; background:#fff; font-weight:700; }
.order-callout { margin:22px 0; padding:18px; border-left:4px solid var(--red); background:#fff; box-shadow:var(--shadow-tight); }
.order-callout p { white-space:pre-line; }
.order-callout .resume-payment { display:block; margin-top:14px; }
.order-callout[data-status="paid"], .order-callout[data-status="reconciled"] { border-left-color:#287b4e; }
.order-callout[data-status="expired"], .order-callout[data-status="failed"], .order-callout[data-status="refunded"] { border-left-color:#8b919b; }
.referral-share { display:grid; grid-template-columns:180px minmax(0,1fr); gap:20px; align-items:end; margin:22px 0; padding:18px; border:1px solid var(--line); border-radius:8px; background:#fff; }
.referral-share > div { display:grid; gap:8px; align-content:start; }
.referral-share strong { display:block; font:700 24px var(--mono); }
.referral-share label { display:grid; gap:6px; color:var(--ink-soft); font:10px var(--mono); text-transform:uppercase; }
.referral-share input { width:100%; min-height:42px; padding:9px 11px; border:1px solid var(--line); border-radius:6px; color:var(--ink); background:#f7f4f5; font:12px var(--mono); text-transform:none; }
.wallet-ledgers { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:30px; }
.wallet-ledgers section { padding-top:20px; border-top:1px solid var(--line); }
.wallet-ledgers h2, .wallet-ledgers strong { color:#fff; }
.wallet-ledgers .ledger-list > li, .wallet-ledgers .ledger-list > li:not(:has(div)) { color:rgba(255,255,255,.74); }
.ledger-list { display:grid; gap:0; padding:0; list-style:none; }
.ledger-list li { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:13px 0; border-bottom:1px solid var(--line); }
.ledger-list small { display:block; color:var(--ink-faint); margin-top:3px; }
.ledger-list b.is-positive { color:#287b4e; }
.welcome-flow-card { text-align: center; }
.welcome-check { display: grid; width: 54px; height: 54px; place-items: center; margin: 0 auto 18px; border-radius: 50%; color: var(--ink); background: var(--lime); font-size: 24px; font-weight: 800; }
.welcome-plan-summary { margin: 14px 0 0; padding: 13px; border-radius: 12px; color: var(--ink); background: #f7f4f5; font: 11px/1.5 var(--mono); }
.welcome-store-badges { justify-content: center; }
.admin-page { background: #fbf7f8; }
.admin-wrap { display: grid; gap: 28px; }
.admin-wrap h1 { max-width: 620px; font-size: clamp(38px, 5vw, 64px); }
.admin-auth-card h2, .admin-panel h2 { margin: 10px 0 18px; font-size: 24px; }
.admin-form-row { display: flex; gap: 12px; align-items: end; }
.admin-form { display: grid; gap: 15px; }
.admin-field { display: grid; gap: 7px; flex: 1; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.admin-field input, .admin-field select, .admin-field textarea { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; outline: none; color: var(--ink); background: #fff; font: 13px var(--body); letter-spacing: normal; text-transform: none; }
.admin-order-input { width:72px; min-height:34px; padding:6px 8px; border:1px solid var(--line); border-radius:6px; }
.admin-field input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(194, 36, 65, .1); }
.admin-field small { color: var(--ink-faint); font: 10px var(--sans); letter-spacing: normal; text-transform: none; }
.admin-checkbox { display: flex; align-items: center; gap: 8px; }
.admin-checkbox input { width: auto; min-height: 0; }
.admin-panel { display: grid; gap: 28px; }
.admin-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.admin-results { display: grid; gap: 8px; margin-top: 18px; }
.admin-account-result { display: grid; gap: 3px; width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; text-align: left; color: var(--ink); background: #fff; cursor: pointer; }
.admin-account-result:hover { border-color: var(--red); }
.admin-account-result strong { font-size: 12px; }.admin-account-result small { color: var(--ink-soft); font-size: 10px; }
.admin-empty { margin: 0; color: var(--ink-faint); font-size: 12px; }
.admin-section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.admin-table th { padding: 10px 12px; border-bottom: 1px solid var(--line); color: var(--ink-faint); font: 10px var(--mono); text-align: left; letter-spacing: .06em; text-transform: uppercase; }
.admin-table td { padding: 13px 12px; border-bottom: 1px solid var(--line); color: var(--ink-soft); vertical-align: top; }
.admin-table td strong, .admin-table td small { display: block; }.admin-table td strong { color: var(--ink); }.admin-table td small { margin-top: 3px; font-size: 10px; }
.admin-status-pill { display: inline-flex; padding: 5px 8px; border-radius: 999px; color: var(--ink-soft); background: #f2eff0; font: 10px var(--mono); text-transform: uppercase; }.admin-status-pill.is-active { color: #3d7652; background: #eef8db; }
@media (max-width: 760px) { .admin-columns { grid-template-columns: 1fr; }.admin-form-row { align-items: stretch; flex-direction: column; }.admin-form-row .button { width: 100%; }.admin-section-head { align-items: stretch; flex-direction: column; }.admin-section-head .button { width: 100%; } }
@media (max-width: 900px) { .journey-grid { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; gap: 44px; } .contact-card { justify-self: start; } }
@media (max-width: 600px) { .onboarding-actions { gap: 8px; } .onboarding-help span:last-child { display: none; } .signin-section { padding: 42px 0 64px; } .wallet-heading { align-items:stretch; flex-direction:column; } .wallet-heading .button { width:100%; } .wallet-ledgers, .referral-share, .plan-stack { grid-template-columns:1fr; } .credit-package, .credit-package.is-featured { min-height:0; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }

/* Admin: the retired credit-model controls are collapsed out of the way. */
.admin-legacy { padding: 22px 26px; }
.admin-legacy > summary { cursor: pointer; color: var(--ink-soft); font-size: 14px; list-style: none; }
.admin-legacy > summary::-webkit-details-marker { display: none; }
.admin-legacy > summary::before { display: inline-block; margin-right: 9px; color: var(--red); content: "\25B8"; transition: transform .15s ease; }
.admin-legacy[open] > summary::before { transform: rotate(90deg); }
.admin-legacy > summary strong { color: var(--ink); }
.admin-legacy > *:not(summary) { margin-top: 22px; }
.admin-legacy .admin-columns > .panel-card, .admin-legacy > .panel-card { box-shadow: none; border: 1px solid var(--line); }

/* Admin traffic dashboard ---------------------------------------------------
   Charts are single-hue by design: two purple steps measure only dE 13.2 to a
   normal-vision reader, so identity is carried by the panel title, never by a
   second series colour. */
.stats-controls { margin: 0; }
/* The content panel puts a select and a search box in the same header row as
   the traffic range picker, and flex:1 alone squeezes the select's longest
   option to an ellipsis. */
#contentPanel .stats-controls .admin-field { min-width: 148px; }
#contentPanel .stats-controls .admin-field:has(input[type="search"]) { min-width: 210px; }
@media (max-width: 760px) { #contentPanel .stats-controls .admin-field { min-width: 0; } }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 22px 0 26px; }
.stat-tile { padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.stat-tile .stat-label { color: var(--ink-soft); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.stat-tile .stat-value { margin-top: 8px; color: var(--ink); font-family: var(--display); font-size: 30px; font-weight: 700; line-height: 1.1; }
.stat-tile .stat-note { margin-top: 4px; color: var(--ink-faint); font-size: 12px; }
.chart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.chart-card { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.chart-card h3 { margin: 0 0 2px; font-size: 15px; }
.chart-card .chart-sub { margin: 0 0 14px; color: var(--ink-faint); font-size: 12px; }
.chart-card svg { display: block; width: 100%; height: auto; overflow: visible; }
.chart-card .grid-line { stroke: var(--line); stroke-width: 1; }
.chart-card .axis-label { fill: var(--ink-faint); font-family: var(--mono); font-size: 9px; }
.chart-card .bar { fill: var(--red); }
.chart-card .bar:hover { fill: var(--red-dark); }
.chart-card .hit { fill: transparent; cursor: pointer; }
.chart-card .value-label { fill: var(--ink); font-family: var(--mono); font-size: 10px; }
.chart-empty { padding: 26px 0; color: var(--ink-faint); font-size: 13px; text-align: center; }
.chart-tip { position: fixed; z-index: 40; padding: 7px 10px; border-radius: 8px; background: var(--ink); color: #fff; font-size: 12px; pointer-events: none; white-space: nowrap; box-shadow: var(--shadow-tight); }
.stats-table-toggle { margin-top: 22px; }
.stats-table-toggle > summary { cursor: pointer; color: var(--ink-soft); font-size: 13px; }
@media (max-width: 900px) { .stat-row { grid-template-columns: 1fr 1fr; }.chart-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .stat-row { grid-template-columns: 1fr; } }
.ranked-bars { display: grid; gap: 10px; }
.ranked-row { display: grid; grid-template-columns: 116px 1fr 44px; gap: 10px; align-items: center; }
.ranked-label { color: var(--ink-soft); font-size: 12px; text-transform: capitalize; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ranked-track { height: 12px; border-radius: 6px; background: var(--sky); }
.ranked-fill { display: block; height: 100%; min-width: 3px; border-radius: 6px; }
.ranked-value { color: var(--ink); font-family: var(--mono); font-size: 12px; text-align: right; }
/* Usage rows carry a second number - the installs behind the bar - so they get
   one more column and a wider label than the plain status ranking. Feature
   names are already sentence case, so they are not re-capitalised. */
.ranked-bars.is-usage .ranked-row { grid-template-columns: 150px 1fr 58px 78px; }
.ranked-bars.is-usage .ranked-label { text-transform: none; }
.ranked-bars.is-actions .ranked-row { grid-template-columns: 210px 1fr 58px; }
.ranked-reach { color: var(--ink-faint); font-family: var(--mono); font-size: 11px; text-align: right; white-space: nowrap; }
@media (max-width: 640px) {
  .ranked-bars.is-usage .ranked-row { grid-template-columns: 86px 1fr 46px 70px; }
  .ranked-bars.is-actions .ranked-row { grid-template-columns: 130px 1fr 46px; }
}

/* A "what the free tier costs you" note, not a feature. The marker keeps its
   width so the text stays aligned with the ticks above it, but is not drawn. */
.feature-list li.feature-note > span:first-child { visibility: hidden; }
.feature-list li.feature-note > span:first-child + span { color: var(--ink-faint); }
.plan-card .feature-list li.feature-note > span:first-child + span { color: rgba(255,255,255,.62); }
