@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/anton-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/anton-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

  /* ==================================================================
     BUSKR v3 — "When the city goes live"
     One idea drives the page: press GO LIVE and the street lights up.
     Brand: the app icon's azure, Buskr gold/orange for money+energy,
     Anton (the brand display face) for voice, deep dusk-night ground.
     ================================================================== */


  :root {
    --night:    #05070f;
    --surface:  #0d1424;
    --surface-2:#111a30;
    --hairline: rgba(150,180,235,0.13);
    --hairline-2: rgba(150,180,235,0.24);

    --ink:   #f3f6fc;
    --muted: #9aa6c0;
    --muted-2:#7f8aa5;

    --brand:      #2e9bf0;
    --brand-deep: #1668d8;
    --brand-soft: #82c4ff;

    --gold:   #f2b50a;
    --gold-2: #ffce3d;
    --orange: #ef5a24;
    --tip-pink: #ec4d7b;
    --tip-red:  #e33d3d;

    --live: #35d97b;

    --maxw: 1160px;
    --r: 18px;
    --r-lg: 26px;

    --display: "Anton", "Arial Narrow", Impact, sans-serif;
    --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
    --mono: ui-monospace, "SF Mono", Menlo, monospace;

    --shadow-lg: 0 44px 100px -30px rgba(2,6,18,0.95);
    --shadow:    0 24px 55px -20px rgba(2,6,18,0.85);
    --shadow-sm: 0 12px 28px -12px rgba(2,6,18,0.75);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    margin: 0; background: var(--night); color: var(--ink);
    font-family: var(--sans); line-height: 1.62; letter-spacing: -0.006em;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
  }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  ::selection { background: rgba(46,155,240,0.45); }
  [id] { scroll-margin-top: 84px; }

  /* ------------ type ------------ */
  .display { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.014em; line-height: 0.96; margin: 0; text-wrap: balance; }
  h1.display { font-size: clamp(2.3rem, 7vw, 5.6rem); }
  h2.display { font-size: clamp(2.1rem, 5vw, 3.9rem); }
  h3 { font: 650 1.14rem/1.32 var(--sans); letter-spacing: -0.02em; margin: 0; }
  p { margin: 0; }
  .lede { color: var(--muted); font-size: clamp(1.04rem, 1.5vw, 1.19rem); max-width: 56ch; }
  .eyebrow {
    font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--brand-soft); display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px;
  }
  .eyebrow.gold { color: var(--gold); }
  .eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }
  .grad-gold { background: linear-gradient(115deg, var(--gold-2), var(--gold) 55%, var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .grad-blue { background: linear-gradient(115deg, var(--brand-soft), var(--brand) 60%, var(--brand-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }

  .rv { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
  .rv.in { opacity: 1; transform: none; }
  .rv.d1 { transition-delay: .09s; } .rv.d2 { transition-delay: .18s; }

  a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
  .vh { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

  button, a.btn, .ptab, .amt { touch-action: manipulation; }

  /* ------------ header ------------ */
  header.site {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: linear-gradient(rgba(5,7,15,0.85), rgba(5,7,15,0.6) 70%, transparent);
    backdrop-filter: blur(14px) saturate(150%); -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-bottom: 1px solid rgba(150,180,235,0.07);
  }
  .site-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
  .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
  .brand img { width: 32px; height: 32px; border-radius: 8px; box-shadow: 0 4px 16px -4px rgba(46,155,240,0.7); }
  .brand b { font-family: var(--display); font-weight: 400; font-size: 1.3rem; letter-spacing: 0.045em; }
  nav.links { display: flex; gap: 26px; }
  nav.links a { color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 520; transition: color .16s; padding: 10px 0; }
  nav.links a:hover { color: var(--ink); }
  @media (max-width: 820px){ nav.links { display: none; } }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font: 640 0.97rem var(--sans); text-decoration: none; cursor: pointer;
    padding: 13px 23px; min-height: 46px; border-radius: 999px; border: 1px solid transparent;
    transition: transform .16s ease, box-shadow .2s ease, border-color .16s;
    -webkit-tap-highlight-color: transparent;
  }
  .btn-brand { color: #fff; background: linear-gradient(160deg, var(--brand), var(--brand-deep)); box-shadow: 0 12px 34px -10px rgba(46,155,240,0.65); }
  .btn-brand:hover { transform: translateY(-2px); box-shadow: 0 18px 46px -12px rgba(46,155,240,0.8); }
  .btn-ghost { color: var(--ink); border-color: var(--hairline-2); background: rgba(150,180,235,0.05); }
  .btn-ghost:hover { transform: translateY(-2px); border-color: rgba(150,180,235,0.42); }
  .btn-sm { padding: 10px 17px; min-height: 44px; font-size: 0.89rem; }

  /* ==================================================================
     HERO — the living street
     ================================================================== */
  .hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: hidden; }
  .sky {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg, #0d1238 0%, #0a0f2c 34%, #070b1d 62%, var(--night) 100%);
    transition: filter 1.2s ease;
  }
  .hero.lit .sky { filter: brightness(1.15) saturate(1.15); }
  #city { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
  .hero-fade { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 160px; background: linear-gradient(transparent, var(--night)); pointer-events: none; }

  .hero-content {
    position: relative; z-index: 3; flex: 1;
    display: flex; flex-direction: column; justify-content: center;
    padding-block: 120px 150px;
  }
  .hero h1 { margin-bottom: 8px; }
  .hero h1 .lit-word { color: rgba(150,180,235,0.34); transition: color .9s ease, text-shadow .9s ease; }
  .hero.lit h1 .lit-word { color: var(--gold); text-shadow: 0 0 44px rgba(242,181,10,0.45); }
  .hero .lede { margin: 20px 0 30px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

  .golive {
    position: relative; display: inline-flex; align-items: center; gap: 13px;
    border: 1px solid rgba(242,181,10,0.5); border-radius: 999px; cursor: pointer;
    background: rgba(242,181,10,0.07); color: var(--ink);
    padding: 13px 22px 13px 15px; min-height: 52px; font: 700 1rem var(--sans); letter-spacing: -0.01em;
    transition: background .3s, border-color .3s, box-shadow .3s, transform .16s;
    -webkit-tap-highlight-color: transparent;
  }
  .golive:hover { transform: translateY(-2px); }
  .golive .dot { width: 30px; height: 30px; border-radius: 50%; background: rgba(242,181,10,0.22); display: grid; place-items: center; transition: background .3s; }
  .golive .dot::before { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); transition: all .3s; }
  .hero.lit .golive { background: linear-gradient(160deg, rgba(53,217,123,0.16), rgba(53,217,123,0.06)); border-color: rgba(53,217,123,0.6); box-shadow: 0 10px 40px -10px rgba(53,217,123,0.5); }
  .hero.lit .golive .dot::before { background: var(--live); box-shadow: 0 0 14px rgba(53,217,123,0.9); animation: heartbeat 1.8s ease-in-out infinite; }
  @keyframes heartbeat { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.35);} }

  .live-counter {
    position: absolute; z-index: 3; top: 92px; right: 24px;
    display: flex; align-items: center; gap: 9px;
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--live); background: rgba(6,10,20,0.7); border: 1px solid rgba(53,217,123,0.35);
    padding: 9px 14px; border-radius: 999px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    opacity: 0; transform: translateY(-8px); transition: opacity .5s .3s, transform .5s .3s;
  }
  .hero.lit .live-counter { opacity: 1; transform: none; }
  .live-counter i { width: 8px; height: 8px; border-radius: 50%; background: var(--live); animation: heartbeat 1.8s infinite; }
  @media (max-width: 640px){ .live-counter { display: none; } }

  .scroll-cue {
    position: absolute; z-index: 3; bottom: 26px; left: 50%; transform: translateX(-50%);
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-2);
    display: flex; flex-direction: column; align-items: center; gap: 9px; pointer-events: none;
  }
  .scroll-cue::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--muted-2), transparent); animation: drip 2s ease-in-out infinite; }
  @keyframes drip { 0%{ transform: scaleY(0); transform-origin: top; } 55%{ transform: scaleY(1); } 100%{ transform: scaleY(0); transform-origin: bottom; } }

  /* ------------ ticker ------------ */
  .belt { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); overflow: hidden; background: #0a1122; position: relative; z-index: 4; }
  .belt-track { display: flex; width: max-content; animation: slide 32s linear infinite; }
  .belt-track > div { display: flex; padding: 14px 0; }
  .belt span { font-family: var(--display); font-size: 15px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted-2); white-space: nowrap; padding: 0 30px; display: inline-flex; align-items: center; }
  .belt span::after { content: "✦"; color: var(--gold); font-size: 11px; margin-left: 60px; }
  @keyframes slide { to { transform: translateX(-50%); } }

  /* ================== sections ================== */
  section.block { padding: clamp(84px, 11vw, 150px) 0; position: relative; }
  section.block.flush { padding-top: 0; }

  .statement { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
  @media (max-width: 860px){ .statement { grid-template-columns: 1fr; } }
  .statement .big p { font: 480 clamp(1.45rem, 2.9vw, 2.2rem)/1.36 var(--sans); letter-spacing: -0.028em; color: var(--ink); }
  .statement .big p b { color: var(--gold); font-weight: 640; }
  .statement .big p em { font-style: normal; color: var(--brand-soft); }
  .facts { display: flex; flex-direction: column; border-top: 1px solid var(--hairline); margin-top: 34px; }
  .fact { display: grid; grid-template-columns: 96px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--hairline); }
  .fact .n { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--gold); line-height: 1; }
  .fact .c strong { display: block; font-size: 1.02rem; letter-spacing: -0.015em; margin-bottom: 3px; }
  .fact .c span { color: var(--muted); font-size: 0.93rem; }

  /* ================== app tour ================== */
  .tour-grid { display: grid; grid-template-columns: 1fr 400px; gap: clamp(30px, 5vw, 80px); }
  @media (max-width: 920px){ .tour-grid { grid-template-columns: 1fr; } }

  .tour-steps { display: flex; flex-direction: column; gap: clamp(60px, 12vh, 130px); padding: 6vh 0 10vh; }
  .step { max-width: 440px; opacity: 0.34; transition: opacity .4s ease; cursor: pointer; border: 0; background: none; text-align: left; color: var(--ink); padding: 0; font: inherit; }
  .step.on { opacity: 1; }
  .step .num { font-family: var(--display); font-size: 15px; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 10px; }
  .step h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.02; margin-bottom: 12px; }
  .step p { color: var(--muted); font-size: 1rem; }
  .step .try { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-soft); }

  .phone-rail { position: relative; }
  .phone-sticky { position: sticky; top: 90px; display: flex; justify-content: center; }
  @media (max-width: 920px){
    .phone-sticky { position: relative; top: 0; margin-top: 8px; }
    .tour-steps { gap: 44px; padding-bottom: 4vh; }
    .step { opacity: 1; max-width: none; }
  }

  .phone {
    position: relative; width: min(340px, 88vw); aspect-ratio: 340/700;
    border-radius: 48px; padding: 12px;
    background: linear-gradient(165deg, #212a40, #0a0e1c);
    border: 1px solid rgba(150,180,235,0.22);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.1);
  }
  @supports not (aspect-ratio: 1) { .phone { height: 690px; } }
  .phone::after {
    content: ""; position: absolute; inset: -14% -22%; z-index: -1; border-radius: 50%;
    background: radial-gradient(48% 42% at 50% 32%, rgba(46,155,240,0.2), transparent 68%);
    filter: blur(6px);
  }
  .screenwrap { position: relative; height: 100%; border-radius: 37px; overflow: hidden; background: #070c18; }
  .appscreen { position: absolute; inset: 0; opacity: 0; transform: scale(0.985); transition: opacity .45s ease, transform .45s ease; pointer-events: none; display: flex; flex-direction: column; }
  .appscreen.on { opacity: 1; transform: none; pointer-events: auto; }

  .statusbar { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px 6px; font: 640 12px var(--sans); color: rgba(243,246,252,0.9); }
  .statusbar .cam { width: 74px; height: 22px; border-radius: 12px; background: #000; }

  /* --- screen: MAP --- */
  .s-map { background: radial-gradient(80% 50% at 60% 26%, rgba(46,155,240,0.16), transparent 60%), linear-gradient(180deg, #0a1830, #070c18); }
  .mapzone { position: relative; flex: 1; }
  .mapgrid { position: absolute; inset: 0; background-image: linear-gradient(rgba(150,180,235,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(150,180,235,0.07) 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(130% 90% at 50% 40%, #000 55%, transparent); -webkit-mask-image: radial-gradient(130% 90% at 50% 40%, #000 55%, transparent); }
  .mroad { position: absolute; background: rgba(150,180,235,0.11); }
  .mr1 { height: 2px; top: 30%; left: -10%; right: -10%; transform: rotate(-10deg); }
  .mr2 { height: 2px; top: 58%; left: -10%; right: -10%; transform: rotate(6deg); }
  .mr3 { width: 2px; top: 0; bottom: 0; left: 47%; }
  .avpin { position: absolute; width: 48px; height: 48px; margin: -24px 0 0 -24px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: #0d1424; display: grid; place-items: center; font: 700 15px var(--sans); color: #fff; -webkit-tap-highlight-color: transparent; }
  .avpin i { position: absolute; inset: 0; border-radius: 50%; border: 3px solid var(--live); }
  .avpin.quiet i { border-color: rgba(150,180,235,0.35); }
  .avpin.hot i { animation: ringpulse 2.2s ease-in-out infinite; }
  @keyframes ringpulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(53,217,123,0.5);} 50%{ box-shadow: 0 0 0 9px rgba(53,217,123,0);} }
  .maptip { position: absolute; left: 12px; right: 12px; bottom: 12px; background: rgba(13,20,38,0.93); border: 1px solid var(--hairline-2); border-radius: 18px; padding: 14px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .maptip .lp { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--live); margin-bottom: 7px; }
  .maptip .lp i { width: 7px; height: 7px; border-radius: 50%; background: var(--live); animation: heartbeat 1.9s infinite; }
  .maptip .nm { font: 680 1.05rem var(--sans); letter-spacing: -0.02em; }
  .maptip .mt { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
  .maptip .row { display: flex; gap: 8px; margin-top: 12px; }
  .maptip .row span { flex: 1; text-align: center; font: 640 0.78rem var(--sans); padding: 9px 0; border-radius: 11px; border: 1px solid var(--hairline); color: var(--muted); }
  .maptip .row .t { color: #fff; background: linear-gradient(165deg, var(--tip-pink), var(--tip-red)); border-color: transparent; }

  /* --- screen: LIVE / boost board --- */
  .s-live { background: linear-gradient(180deg, #0c1226, #070c18); padding-bottom: 14px; }
  .livehead { padding: 10px 18px 12px; }
  .livehead .lp { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--live); }
  .livehead .lp i { width: 8px; height: 8px; border-radius: 50%; background: var(--live); animation: heartbeat 1.8s infinite; }
  .livehead .nm { margin: 6px 0 0; font-family: var(--display); font-weight: 400; font-size: 1.75rem; letter-spacing: 0.02em; text-transform: uppercase; }
  .livestats { display: flex; gap: 8px; padding: 0 18px 12px; }
  .lstat { flex: 1; background: rgba(150,180,235,0.06); border: 1px solid var(--hairline); border-radius: 13px; padding: 9px 11px; }
  .lstat b { display: block; font: 740 1.05rem var(--sans); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
  .lstat.gold b { color: var(--gold); }
  .lstat span { font-size: 0.66rem; color: var(--muted); font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
  .bb-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); padding: 0 19px 4px; }
  .bboard { display: flex; flex-direction: column; gap: 8px; padding: 0 14px; flex: 1; }
  .bbrow { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 14px; background: rgba(150,180,235,0.05); border: 1px solid var(--hairline); transition: transform .5s cubic-bezier(.25,1.2,.35,1), background .3s, border-color .3s; }
  .bbrow.lead { background: linear-gradient(160deg, rgba(242,181,10,0.14), rgba(150,180,235,0.03) 65%); border-color: rgba(242,181,10,0.42); }
  .bbrow .md { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: rgba(150,180,235,0.1); font: 700 0.88rem var(--sans); }
  .bbrow.lead .md { background: linear-gradient(160deg, var(--gold-2), var(--orange)); color: #211300; }
  .bbrow .ti { font: 640 0.9rem var(--sans); letter-spacing: -0.015em; }
  .bbrow .mm { display: flex; gap: 2.5px; margin-top: 6px; }
  .bbrow .mm i { height: 5px; flex: 1; border-radius: 3px; background: rgba(150,180,235,0.15); }
  .bbrow .mm i.on { height: 8px; background: linear-gradient(90deg, var(--brand), var(--brand-soft)); }
  .bbrow.lead .mm i.on { background: linear-gradient(90deg, var(--gold), var(--orange)); }
  .bbtn { border: 0; cursor: pointer; border-radius: 999px; padding: 10px 14px; min-height: 40px; font: 700 0.78rem var(--sans); color: #fff; background: linear-gradient(165deg, var(--brand), var(--brand-deep)); transition: transform .15s; -webkit-tap-highlight-color: transparent; position: relative; }
  .bbtn::after { content: ""; position: absolute; inset: -4px; border-radius: inherit; }
  .bbtn:active { transform: scale(0.93); }
  .bbtn[disabled] { opacity: 0.35; cursor: default; }
  .bcredit { display: flex; align-items: center; gap: 7px; padding: 11px 19px 6px; }
  .bcredit i { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px rgba(242,181,10,0.8); transition: all .3s; }
  .bcredit i.off { background: rgba(150,180,235,0.18); box-shadow: none; }
  .bcredit span { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }

  /* --- screen: TIP (mirrors the real app sheet) --- */
  .s-tip { background: linear-gradient(160deg, rgba(236,77,123,0.10), rgba(46,155,240,0.06) 45%, #0a0f1e 75%); padding: 0 16px 16px; }
  .tiphead { text-align: center; padding: 6px 10px 4px; }
  .tiphead .heart { width: 58px; height: 58px; margin: 2px auto 8px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 35% 30%, rgba(236,77,123,0.4), rgba(227,61,61,0.22)); }
  .tiphead .heart svg { width: 26px; height: 26px; fill: var(--tip-pink); }
  .tiphead .nm { font: 740 1.18rem var(--sans); letter-spacing: -0.025em; }
  .tiphead p { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
  .amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 12px; }
  .amt {
    border: 1.5px solid var(--hairline-2); border-radius: 16px; cursor: pointer; background: rgba(150,180,235,0.05);
    padding: 12px 6px 10px; min-height: 62px; text-align: center; color: var(--ink); transition: all .18s; -webkit-tap-highlight-color: transparent;
    font: inherit;
  }
  .amt b { display: block; font: 780 1.25rem var(--sans); letter-spacing: -0.03em; }
  .amt span { font-size: 0.64rem; color: var(--muted); font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
  .amt.sel { border-color: var(--tip-pink); background: rgba(236,77,123,0.13); box-shadow: 0 8px 24px -10px rgba(236,77,123,0.5); transform: translateY(-2px); }
  .feeline { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--muted); padding: 12px 4px 0; }
  .feeline b { color: var(--ink); font-variant-numeric: tabular-nums; }
  .sendtip {
    margin-top: 11px; width: 100%; border: 0; cursor: pointer; border-radius: 17px; padding: 15px; min-height: 52px;
    font: 740 1.02rem var(--sans); color: #fff; letter-spacing: -0.01em;
    background: linear-gradient(160deg, var(--tip-pink), var(--tip-red));
    box-shadow: 0 14px 34px -10px rgba(236,77,123,0.6);
    display: flex; align-items: center; justify-content: center; gap: 9px;
    transition: transform .16s; -webkit-tap-highlight-color: transparent;
  }
  .sendtip:active { transform: scale(0.97); }
  .sendtip svg { width: 17px; height: 17px; fill: #fff; }
  .tipnote { text-align: center; font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); padding-top: 9px; }
  .tipsuccess {
    position: absolute; inset: 0; display: grid; place-items: center; z-index: 5;
    background: rgba(7,12,24,0.86); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    opacity: 0; pointer-events: none; transition: opacity .35s;
  }
  .tipsuccess.show { opacity: 1; pointer-events: auto; }
  .tipsuccess .inner { text-align: center; transform: scale(0.9); transition: transform .35s cubic-bezier(.2,1.4,.4,1); }
  .tipsuccess.show .inner { transform: none; }
  .tipsuccess .burst { width: 84px; height: 84px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle, rgba(242,181,10,0.35), rgba(242,181,10,0.06)); }
  .tipsuccess .burst svg { width: 38px; height: 38px; fill: var(--gold); }
  .tipsuccess .h { font: 760 1.3rem var(--sans); }
  .tipsuccess p { color: var(--muted); font-size: 0.85rem; margin-top: 5px; }

  /* --- screen: FOLLOW --- */
  .s-follow { background: linear-gradient(180deg, #0b1226, #070c18); padding: 0 14px 16px; }
  .notif {
    margin-top: 8px; display: flex; gap: 11px; align-items: center;
    background: rgba(20,28,50,0.94); border: 1px solid var(--hairline-2); border-radius: 17px; padding: 12px;
    box-shadow: var(--shadow-sm); animation: notifin 3.4s ease-in-out infinite;
  }
  @keyframes notifin { 0%, 12% { transform: translateY(-90px); opacity: 0; } 22%, 88% { transform: none; opacity: 1; } 100% { transform: none; opacity: 1; } }
  .notif img { width: 38px; height: 38px; border-radius: 10px; }
  .notif .nb strong { display: block; font: 680 0.86rem var(--sans); }
  .notif .nb span { font-size: 0.76rem; color: var(--muted); }
  .followcard { margin-top: 16px; background: rgba(150,180,235,0.05); border: 1px solid var(--hairline); border-radius: 20px; padding: 18px; text-align: center; }
  .followcard .avatar { width: 74px; height: 74px; margin: 4px auto 10px; border-radius: 50%; background: linear-gradient(165deg, var(--brand), var(--brand-deep)); display: grid; place-items: center; font: 700 1.7rem var(--sans); color: #fff; position: relative; }
  .followcard .avatar i { position: absolute; inset: -4px; border-radius: 50%; border: 3px solid var(--live); animation: ringpulse 2.2s infinite; }
  .followcard .nm { font: 700 1.15rem var(--sans); letter-spacing: -0.02em; }
  .followcard p { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }
  .followbtn {
    margin-top: 13px; border: 0; cursor: pointer; border-radius: 999px; padding: 12px 30px; min-height: 46px;
    font: 700 0.92rem var(--sans); color: #fff; background: linear-gradient(165deg, var(--brand), var(--brand-deep));
    box-shadow: 0 10px 26px -8px rgba(46,155,240,0.7); transition: all .2s; -webkit-tap-highlight-color: transparent;
  }
  .followbtn.following { background: rgba(53,217,123,0.14); color: var(--live); border: 1px solid rgba(53,217,123,0.45); box-shadow: none; }
  .followstats { display: flex; justify-content: center; gap: 22px; margin-top: 14px; font-size: 0.75rem; color: var(--muted); }
  .followstats b { color: var(--ink); font-variant-numeric: tabular-nums; }

  .phone-tabs { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
  .ptab {
    border: 1px solid var(--hairline); background: rgba(150,180,235,0.04); color: var(--muted);
    font: 640 0.8rem var(--sans); padding: 10px 16px; min-height: 44px; border-radius: 999px; cursor: pointer;
    transition: all .2s; -webkit-tap-highlight-color: transparent;
  }
  .ptab.on { color: #fff; background: linear-gradient(165deg, var(--brand), var(--brand-deep)); border-color: transparent; }

  /* ================== artists ================== */
  .artists {
    position: relative; overflow: hidden;
    border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
    background:
      radial-gradient(70% 120% at 90% -20%, rgba(242,181,10,0.13), transparent 55%),
      linear-gradient(180deg, #0a0f22, var(--night));
  }
  .artists .inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; padding-block: clamp(64px, 9vw, 120px); }
  @media (max-width: 880px){ .artists .inner { grid-template-columns: 1fr; } }
  .bigstats { display: flex; flex-direction: column; gap: 6px; }
  .bigstat { display: flex; align-items: baseline; gap: 20px; border-bottom: 1px solid var(--hairline); padding: 18px 0; flex-wrap: wrap; }
  .bigstat .n { font-family: var(--display); font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1; color: var(--gold); min-width: 140px; }
  .bigstat .c { color: var(--muted); font-size: 0.98rem; }
  .bigstat .c b { color: var(--ink); }

  /* ------------ quote ------------ */
  .quote { max-width: 900px; }
  .quote p { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.12; letter-spacing: 0.015em; }
  .quote p .g { color: var(--gold); }
  .quote .by { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-top: 24px; }

  .heritage-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 34px); margin-top: clamp(34px, 5vw, 54px); border-top: 1px solid var(--hairline); padding-top: clamp(26px, 4vw, 40px); }
  @media (max-width: 800px){ .heritage-facts { grid-template-columns: 1fr; } }
  .hfact .era { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
  .hfact p { color: var(--muted); font-size: 0.96rem; }
  .hfact p i { color: var(--brand-soft); font-style: italic; }
  .values-line { margin-top: clamp(30px, 4vw, 44px); font: 480 clamp(1.1rem, 1.9vw, 1.4rem)/1.5 var(--sans); letter-spacing: -0.02em; color: var(--ink); max-width: 46ch; }
  .values-line b { color: var(--gold); font-weight: 640; }

  /* ------------ CTA ------------ */
  .cta {
    position: relative; overflow: hidden; text-align: center;
    border: 1px solid rgba(46,155,240,0.32); border-radius: 34px;
    padding: clamp(54px, 8vw, 100px) 28px;
    background:
      radial-gradient(90% 130% at 50% -35%, rgba(46,155,240,0.28), transparent 60%),
      linear-gradient(180deg, #0d1530, #080d1c);
    box-shadow: var(--shadow);
  }
  .cta .appicon { width: 84px; height: 84px; border-radius: 20px; box-shadow: 0 20px 50px -12px rgba(46,155,240,0.85); margin-bottom: 24px; }
  .cta h2 { margin-bottom: 14px; }
  .cta .lede { margin: 0 auto 28px; }
  .who { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
  .who label {
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    border: 1px solid var(--hairline-2); border-radius: 999px; padding: 10px 18px; min-height: 44px;
    font: 620 0.9rem var(--sans); color: var(--muted); transition: all .2s;
  }
  .who input { position: absolute; opacity: 0; pointer-events: none; }
  .who label:has(input:checked) { color: #fff; border-color: var(--brand); background: rgba(46,155,240,0.16); }
  .who label:has(input:focus-visible) { outline: 2px solid var(--brand); outline-offset: 2px; }
  .signup { display: flex; gap: 10px; max-width: 470px; margin: 0 auto; }
  .signup input {
    flex: 1; min-width: 0; background: rgba(5,8,16,0.75); border: 1px solid var(--hairline-2); color: var(--ink);
    border-radius: 999px; padding: 14px 20px; font: 500 max(16px, 1rem) var(--sans);
  }
  .signup input::placeholder { color: var(--muted-2); }
  @media (max-width: 520px){ .signup { flex-direction: column; } .signup .btn { width: 100%; } }
  .signup-done { display: none; align-items: center; justify-content: center; gap: 9px; color: var(--live); font-weight: 660; font-size: 1.06rem; }
  .signup-note { font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 16px; }

  .stickybar {
    position: fixed; left: 50%; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); transform: translate(-50%, 120px); z-index: 90;
    display: flex; align-items: center; gap: 13px;
    background: rgba(9,14,28,0.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--hairline-2); border-radius: 999px; padding: 9px 11px 9px 17px;
    box-shadow: var(--shadow); transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .3s, visibility .5s; opacity: 0; visibility: hidden;
  }
  .stickybar.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
  .stickybar img { width: 26px; height: 26px; border-radius: 7px; }
  .stickybar .t { font: 620 0.9rem var(--sans); white-space: nowrap; }
  @media (max-width: 560px){ .stickybar .t { display: none; } }

  footer.site2 { border-top: 1px solid var(--hairline); background: #04060c; padding: 42px 0 calc(48px + env(safe-area-inset-bottom, 0px)); }
  .foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
  .foot nav { display: flex; gap: 8px; flex-wrap: wrap; }
  .foot a { color: var(--muted-2); text-decoration: none; font-size: 0.88rem; padding: 10px 8px; display: inline-block; }
  .foot a:hover { color: var(--muted); }
  .foot .fine { width: 100%; margin-top: 8px; color: var(--muted-2); font-size: 0.82rem; }

  @media (prefers-reduced-motion: reduce) {
    .rv { opacity: 1; transform: none; transition: none; }
    .belt-track, .notif, .scroll-cue::after, .golive .dot::before, .live-counter i,
    .maptip .lp i, .livehead .lp i, .avpin.hot i, .followcard .avatar i { animation: none !important; }
    html { scroll-behavior: auto; }
  }
