/* =====================================================================
   QuickHoop public landing page — "Streetball Bold".
   Ported from wireframe/candidates/01-streetball-bold-tr.html.

   EVERYTHING is scoped under .lp so these generic class names (.feature,
   .game-card, .standings, .stat, .btn …) never collide with the app's own
   component styles in app.css. The landing keeps the template's dark palette
   regardless of the app's dark/light theme — the tokens are redefined locally
   on .lp — so it always looks like the marketing splash.
   ===================================================================== */

.lp {
    /* theme-independent brand / type / geometry */
    --orange: #f97316;
    --orange-bright: #fb923c;
    --orange-deep: #c2410c;
    --lime: #a3e635;
    --lime-deep: #65a30d;
    --font-display: 'Archivo', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem; --s-5: 1.5rem;
    --s-6: 2rem; --s-7: 3rem; --s-8: 4rem; --s-9: 6rem;
    --radius: 14px; --radius-sm: 10px; --radius-pill: 999px;
    --maxw: 1200px;

    /* break out of the centered .app-main / .container to full viewport width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -1.5rem;        /* eat the .container.py-4 top padding */
    margin-bottom: -1.5rem;
    overflow-x: hidden;         /* contain the 100vw children / slice motifs */

    background: var(--asphalt);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.65;
}

/* Surface / text / line / accent tokens follow the app's dark / light theme
   (data-bs-theme on <html>). Brand orange + lime stay constant. */
[data-bs-theme="dark"] .lp {
    --asphalt: #15171c;
    --asphalt-2: #1f242c;
    --asphalt-3: #272d37;
    --ink: #f5f5f4;
    --muted: #9ca3af;
    --muted-2: #6b7280;
    --line: rgba(245, 245, 244, .10);
    --line-strong: rgba(245, 245, 244, .18);
    --accent-text: #fb923c;   /* orange that reads on the surface */
    --success-text: #a3e635;  /* lime/green that reads on the surface */
    --shadow: 0 18px 40px -18px rgba(0, 0, 0, .7);
}

[data-bs-theme="light"] .lp {
    --asphalt: #f4f5f7;
    --asphalt-2: #ffffff;
    --asphalt-3: #eef1f5;
    --ink: #0f172a;
    --muted: #64748b;
    --muted-2: #94a3b8;
    --line: rgba(15, 23, 42, .10);
    --line-strong: rgba(15, 23, 42, .16);
    --accent-text: #c2410c;
    --success-text: #4d7c0f;
    --shadow: 0 18px 40px -18px rgba(15, 23, 42, .22);
}

/* The phone mockup is always the dark app UI regardless of page theme, so it
   keeps the dark tokens (placed after the theme blocks to win the tie). */
.lp .phone {
    --asphalt: #15171c;
    --asphalt-2: #1f242c;
    --asphalt-3: #272d37;
    --ink: #f5f5f4;
    --muted: #9ca3af;
    --muted-2: #6b7280;
    --line: rgba(245, 245, 244, .10);
    --line-strong: rgba(245, 245, 244, .18);
    --accent-text: #fb923c;
    --success-text: #a3e635;
}
.lp *, .lp *::before, .lp *::after { box-sizing: border-box; }
.lp a { color: inherit; text-decoration: none; }
.lp ul { margin: 0; padding: 0; list-style: none; }
.lp svg { display: block; max-width: 100%; }
.lp a:focus-visible, .lp button:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 6px; }

.lp .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- type helpers ---------- */
.lp .display { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; line-height: .92; letter-spacing: -.01em; margin: 0; color: var(--ink); }
.lp .eyebrow {
    font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .18em;
    font-size: .78rem; color: var(--accent-text); margin: 0 0 var(--s-3);
    display: inline-flex; align-items: center; gap: .5rem;
}
.lp .eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--orange); display: inline-block; }
.lp .section-head { max-width: 640px; margin: 0 0 var(--s-7); }
.lp .section-head .display { font-size: clamp(2rem, 5vw, 3.1rem); }
.lp .section-head p { color: var(--muted); font-size: 1.05rem; margin: var(--s-4) 0 0; }
.lp .accent { color: var(--orange); }
.lp .accent-lime { color: var(--success-text); }

/* ---------- buttons ---------- */
.lp .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
    font-size: .92rem; padding: .85rem 1.5rem; border-radius: var(--radius-pill); border: 2px solid transparent;
    cursor: pointer; white-space: nowrap;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.lp .btn svg { width: 18px; height: 18px; }
.lp .btn-primary { background: var(--orange); color: #1a0d04; box-shadow: 0 10px 24px -10px rgba(249, 115, 22, .8); }
.lp .btn-primary:hover { transform: translateY(-3px); background: var(--orange-bright); box-shadow: 0 16px 30px -10px rgba(249, 115, 22, .9); }
.lp .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.lp .btn-ghost:hover { transform: translateY(-3px); border-color: var(--orange); color: var(--accent-text); }
.lp .btn-lime { background: var(--lime); color: #14210a; box-shadow: 0 10px 24px -10px rgba(163, 230, 53, .6); }
.lp .btn-lime:hover { transform: translateY(-3px); filter: brightness(1.05); }
.lp .btn-sm { padding: .6rem 1.1rem; font-size: .82rem; }

/* ---------- badges ---------- */
.lp .badge {
    display: inline-flex; align-items: center; gap: .4rem;
    font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    font-size: .7rem; padding: .3rem .7rem; border-radius: var(--radius-pill);
}
.lp .badge-pickup { background: rgba(163, 230, 53, .16); color: var(--success-text); }
.lp .badge-tournament { background: rgba(249, 115, 22, .18); color: var(--accent-text); }
.lp .badge-live { background: rgba(249, 115, 22, .16); color: var(--accent-text); }
.lp .badge-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(249, 115, 22, .6); animation: lp-pulse 1.8s infinite; }
@keyframes lp-pulse { 0% { box-shadow: 0 0 0 0 rgba(249,115,22,.55); } 70% { box-shadow: 0 0 0 8px rgba(249,115,22,0); } 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); } }

/* ---------- hero ---------- */
.lp .hero { position: relative; overflow: hidden; padding: var(--s-9) 0 var(--s-8); }
.lp .hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(620px 420px at 88% -8%, rgba(249, 115, 22, .22), transparent 60%),
        radial-gradient(520px 360px at 6% 8%, rgba(163, 230, 53, .10), transparent 60%);
}
.lp .hero .court-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .5; pointer-events: none; }
.lp .hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-8); align-items: center; }
.lp .hero-copy h1 { font-size: clamp(2.7rem, 7.2vw, 5.3rem); }
.lp .hero-copy h1 .swish { color: var(--orange); position: relative; display: inline-block; }
.lp .hero-copy p.lead { font-size: 1.18rem; color: var(--muted); max-width: 34ch; margin: var(--s-5) 0 var(--s-6); }
.lp .hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.lp .hero-trust { display: flex; align-items: center; gap: var(--s-4); margin-top: var(--s-6); color: var(--muted); font-size: .9rem; }
.lp .avatar-row { display: flex; }
.lp .avatar-row .av { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--asphalt); margin-left: -10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: .78rem; color: #14210a; }
.lp .avatar-row .av:first-child { margin-left: 0; }

.lp .hero-visual { position: relative; }
.lp .court-card { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--line-strong); background: linear-gradient(160deg, #20262f, #15171c 70%); box-shadow: var(--shadow); padding: 6px; }
.lp .court-card .court-inner { border-radius: 18px; overflow: hidden; display: block; }
.lp .scoreboard { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; align-items: center; justify-content: space-between; background: rgba(13, 15, 19, .72); backdrop-filter: blur(4px); border: 1px solid var(--line); border-radius: 14px; padding: .6rem .9rem; }
.lp .scoreboard .team { display: flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; }
.lp .scoreboard .chip { width: 14px; height: 14px; border-radius: 4px; }
.lp .scoreboard .score { font-family: var(--font-display); font-weight: 900; font-size: 1.55rem; letter-spacing: .02em; }
.lp .scoreboard .vs { color: var(--muted); font-size: .7rem; font-family: var(--font-display); font-weight: 700; }
.lp .floating-pill { position: absolute; border-radius: 14px; padding: .6rem .85rem; background: rgba(13, 15, 19, .82); border: 1px solid var(--line-strong); backdrop-filter: blur(4px); box-shadow: var(--shadow); display: flex; align-items: center; gap: .6rem; font-size: .82rem; }
.lp .floating-pill .ic { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex: none; }
.lp .floating-pill strong { font-family: var(--font-display); font-weight: 800; font-size: .95rem; display: block; line-height: 1.1; }
.lp .floating-pill span { color: var(--muted); font-size: .72rem; }
.lp .fp-1 { bottom: -18px; left: -14px; }
.lp .fp-2 { top: 42%; right: -16px; }

/* ---------- stats strip ---------- */
.lp .stats { position: relative; z-index: 3; background: linear-gradient(90deg, var(--orange-deep), var(--orange) 55%, var(--orange-bright)); margin-top: calc(var(--s-7) * -1 + 10px); }
.lp .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); clip-path: polygon(0 14%, 100% 0, 100% 86%, 0 100%); padding: var(--s-7) 0; }
.lp .stat { padding: 0 var(--s-4); text-align: center; border-right: 1px solid rgba(20, 10, 4, .18); }
.lp .stat:last-child { border-right: 0; }
.lp .stat .num { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.1rem, 4.4vw, 3.1rem); color: #1a0d04; line-height: 1; letter-spacing: -.02em; }
.lp .stat .label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; color: rgba(26, 13, 4, .78); margin-top: .4rem; }

/* ---------- section shells ---------- */
.lp section.block { padding: var(--s-9) 0; position: relative; }
.lp .surface { background: var(--asphalt-2); }
.lp .angle-top { clip-path: polygon(0 3.5vw, 100% 0, 100% 100%, 0 100%); margin-top: -3vw; padding-top: calc(var(--s-9) + 3vw); }

/* ---------- features ---------- */
.lp .feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.lp .feature { background: var(--asphalt-2); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-5); position: relative; transition: transform .2s ease, border-color .2s ease, background .2s ease; overflow: hidden; }
.lp .feature::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--orange); transition: width .25s ease; }
.lp .feature:hover { transform: translateY(-6px); border-color: var(--line-strong); background: var(--asphalt-3); }
.lp .feature:hover::after { width: 100%; }
.lp .feature .ic { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(249, 115, 22, .14); margin-bottom: var(--s-4); }
.lp .feature:nth-child(2) .ic, .lp .feature:nth-child(4) .ic { background: rgba(163, 230, 53, .14); }
.lp .feature .step { position: absolute; top: var(--s-4); right: var(--s-5); font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; color: var(--asphalt-3); }
.lp .feature h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .01em; font-size: 1.18rem; margin: 0 0 .5rem; color: var(--ink); }
.lp .feature p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- showcase rows (games / courts / players) ---------- */
.lp .head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-5); margin-bottom: var(--s-7); flex-wrap: wrap; }
.lp .head-row .section-head { margin-bottom: 0; }
.lp .cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.lp .cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }

.lp .game-card { background: var(--asphalt-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease; }
.lp .game-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.lp .game-card .banner { height: 96px; position: relative; display: flex; align-items: flex-start; justify-content: space-between; padding: var(--s-4); }
.lp .game-card .banner.b1 { background: linear-gradient(135deg, #7c2d12, #f97316); }
.lp .game-card .banner.b2 { background: linear-gradient(135deg, #3f6212, #a3e635); }
.lp .game-card .banner.b3 { background: linear-gradient(135deg, #7c2d12, #fb923c); }
.lp .game-card .banner .court-mini { position: absolute; right: 10px; bottom: -6px; opacity: .35; }
.lp .game-card .body { padding: var(--s-5); display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.lp .game-card h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.18rem; margin: 0; letter-spacing: .01em; color: var(--ink); }
.lp .game-meta { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .88rem; }
.lp .game-meta svg { width: 16px; height: 16px; flex: none; color: var(--accent-text); }
.lp .game-card .foot { margin-top: auto; padding-top: var(--s-4); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.lp .players-count { display: flex; align-items: center; gap: .5rem; font-size: .86rem; color: var(--ink); }
.lp .capacity { width: 96px; height: 7px; border-radius: 5px; background: var(--asphalt-3); overflow: hidden; }
.lp .capacity i { display: block; height: 100%; background: var(--lime); border-radius: 5px; }
.lp .capacity.warn i { background: var(--orange); }
.lp .spots { font-family: var(--font-display); font-weight: 800; font-size: .82rem; }

.lp .court-tile { background: var(--asphalt-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.lp .court-tile:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.lp .court-photo { height: 150px; position: relative; overflow: hidden; }
.lp .court-photo .ct-grad { position: absolute; inset: 0; }
.lp .ct1 { background: linear-gradient(160deg, #1e3a8a, #0f766e); }
.lp .ct2 { background: linear-gradient(160deg, #7c2d12, #b45309); }
.lp .ct3 { background: linear-gradient(160deg, #334155, #0f766e); }
.lp .court-photo .dist { position: absolute; top: 10px; right: 10px; background: rgba(13, 15, 19, .78); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .28rem .7rem; font-family: var(--font-display); font-weight: 800; font-size: .74rem; display: flex; align-items: center; gap: .35rem; }
.lp .court-photo .dist svg { width: 13px; height: 13px; color: var(--success-text); }
.lp .court-body { padding: var(--s-5); }
.lp .court-body h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.16rem; margin: 0 0 .35rem; letter-spacing: .01em; color: var(--ink); }
.lp .court-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: var(--s-3); }
.lp .court-tags .t { font-size: .76rem; color: var(--muted); background: var(--asphalt); border: 1px solid var(--line); padding: .28rem .6rem; border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: .35rem; }
.lp .court-tags .t svg { width: 13px; height: 13px; color: var(--accent-text); }
.lp .court-tags .t.io { color: var(--success-text); border-color: rgba(163, 230, 53, .3); }

.lp .player-card { background: var(--asphalt-2); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-6) var(--s-5) var(--s-5); text-align: center; position: relative; overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.lp .player-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 64px; background: linear-gradient(180deg, rgba(249, 115, 22, .12), transparent); }
.lp .player-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.lp .player-avatar { position: relative; z-index: 1; width: 74px; height: 74px; border-radius: 50%; margin: 0 auto var(--s-4); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 1.55rem; color: #14210a; border: 3px solid var(--asphalt-2); }
.lp .player-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; margin: 0; letter-spacing: .01em; color: var(--ink); }
.lp .player-pos { color: var(--accent-text); font-size: .82rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-top: .15rem; }
.lp .player-level { display: inline-block; margin-top: var(--s-3); font-size: .74rem; color: var(--muted); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .25rem .7rem; }
.lp .player-record { display: flex; justify-content: center; gap: var(--s-5); margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--line); }
.lp .player-record div { display: flex; flex-direction: column; }
.lp .player-record .v { font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; line-height: 1; }
.lp .player-record .v.w { color: var(--success-text); }
.lp .player-record .v.l { color: var(--muted); }
.lp .player-record .k { font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-top: .25rem; }

/* ---------- tournament teaser ---------- */
.lp .tourney-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); align-items: center; }
.lp .standings { background: var(--asphalt); border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.lp .standings .s-head { display: flex; align-items: center; justify-content: space-between; padding: var(--s-4) var(--s-5); background: var(--asphalt-3); border-bottom: 1px solid var(--line); }
.lp .standings .s-head .ttl { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: .95rem; }
.lp table.std { width: 100%; border-collapse: collapse; font-size: .9rem; }
.lp table.std th, .lp table.std td { padding: .7rem var(--s-5); text-align: center; }
.lp table.std th { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .68rem; color: var(--muted-2); border-bottom: 1px solid var(--line); }
.lp table.std th:first-child, .lp table.std td:first-child { text-align: left; }
.lp table.std td { border-bottom: 1px solid var(--line); }
.lp table.std tbody tr:last-child td { border-bottom: 0; }
.lp table.std .team-cell { display: flex; align-items: center; gap: .6rem; }
.lp table.std .rank { width: 24px; height: 24px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: .8rem; background: var(--asphalt-3); color: var(--muted); flex: none; }
.lp table.std tr.lead .rank { background: var(--orange); color: #1a0d04; }
.lp table.std tr.lead td:first-child { color: var(--ink); font-weight: 600; }
.lp table.std .team-name { font-weight: 600; }
.lp table.std .diff-pos { color: var(--success-text); font-weight: 700; }
.lp table.std .diff-neg { color: var(--muted); }
.lp .crown { color: var(--orange); }
.lp .mini-bracket { margin-top: var(--s-5); }

/* ---------- closing CTA ---------- */
.lp .cta-band { position: relative; overflow: hidden; background: var(--asphalt-2); }
.lp .cta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; padding: var(--s-9) var(--s-5); }
.lp .cta-band::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(560px 320px at 20% 120%, rgba(249, 115, 22, .22), transparent 60%), radial-gradient(520px 320px at 85% -20%, rgba(163, 230, 53, .14), transparent 60%); }
.lp .cta-inner .display { font-size: clamp(2.3rem, 6vw, 4rem); }
.lp .cta-inner p { color: var(--muted); font-size: 1.12rem; margin: var(--s-5) auto var(--s-6); max-width: 46ch; }
.lp .cta-actions { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.lp .site-foot { background: var(--asphalt); border-top: 1px solid var(--line); padding: var(--s-8) 0 var(--s-6); }
.lp .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-6); }
.lp .footer-brand .lp-brand { margin-bottom: var(--s-4); }
.lp .footer-brand p { color: var(--muted); font-size: .92rem; max-width: 34ch; margin: 0 0 var(--s-5); }
.lp .lp-brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 900; font-size: 1.45rem; letter-spacing: -.02em; text-transform: uppercase; color: var(--ink); }
.lp .lp-brand .ball { width: 32px; height: 32px; flex: none; }
.lp .lp-brand .b { color: var(--orange); }
.lp .footer-col h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: var(--ink); margin: 0 0 var(--s-4); }
.lp .footer-col a { display: block; color: var(--muted); font-size: .9rem; padding: .3rem 0; transition: color .15s, padding-left .15s; }
.lp .footer-col a:hover { color: var(--accent-text); padding-left: 4px; }
.lp .footer-bottom { margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; color: var(--muted-2); font-size: .84rem; }
.lp .footer-bottom .socials { display: flex; gap: .6rem; }
.lp .footer-bottom .socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .18s ease; }
.lp .footer-bottom .socials a:hover { color: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.lp .footer-bottom .socials svg { width: 18px; height: 18px; }

/* ---------- mobile app section ---------- */
.lp .app-section { position: relative; overflow: hidden; }
.lp .app-section::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(520px 420px at 78% 30%, rgba(249, 115, 22, .16), transparent 60%), radial-gradient(460px 360px at 12% 90%, rgba(163, 230, 53, .10), transparent 60%); }
.lp .app-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-8); align-items: center; }
.lp .app-feats { display: flex; flex-direction: column; gap: var(--s-5); margin: var(--s-6) 0; }
.lp .app-feat { display: flex; gap: var(--s-4); align-items: flex-start; }
.lp .app-feat .ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: flex; align-items: center; justify-content: center; background: rgba(249, 115, 22, .14); color: var(--accent-text); }
.lp .app-feat:nth-child(2) .ic { background: rgba(163, 230, 53, .14); color: var(--success-text); }
.lp .app-feat h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .02em; font-size: 1.02rem; margin: 0 0 .15rem; color: var(--ink); }
.lp .app-feat p { color: var(--muted); font-size: .92rem; margin: 0; }
.lp .store-badges { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.lp .store-badge { display: inline-flex; flex-direction: row; align-items: center; gap: .65rem; background: #0d0f13; border: 1px solid var(--line-strong); border-radius: 14px; padding: .6rem 1.05rem; transition: transform .16s ease, border-color .16s ease; }
.lp .store-badge:hover { transform: translateY(-3px); border-color: var(--orange); }
.lp .store-badge .glyph { width: 24px; height: 24px; flex: none; }
.lp .store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.12; }
.lp .store-badge .sb-text small { font-size: .6rem; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.lp .store-badge .sb-text strong { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--ink); }

.lp .app-visual { display: flex; justify-content: center; align-items: center; }
.lp .phone { position: relative; width: 300px; height: 602px; border-radius: 46px; background: #0a0c10; border: 1px solid var(--line-strong); padding: 12px; box-shadow: var(--shadow); }
.lp .phone::before { content: ""; position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 118px; height: 24px; border-radius: 0 0 16px 16px; background: #0a0c10; z-index: 4; }
.lp .phone-screen { position: relative; height: 100%; border-radius: 35px; overflow: hidden; background: var(--asphalt); display: flex; flex-direction: column; }
.lp .ps-status { display: flex; align-items: center; justify-content: space-between; padding: 13px 22px 4px; font-family: var(--font-display); font-weight: 700; font-size: .72rem; color: var(--ink); }
.lp .ps-status .bars { display: inline-flex; gap: 3px; align-items: flex-end; }
.lp .ps-status .bars i { width: 3px; background: var(--ink); border-radius: 1px; display: block; }
.lp .ps-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 18px 4px; }
.lp .ps-head .ttl { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 1.1rem; letter-spacing: -.01em; }
.lp .ps-head .ttl .b { color: var(--orange); }
.lp .ps-head .pin { width: 30px; height: 30px; border-radius: 9px; background: var(--asphalt-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--accent-text); }
.lp .ps-sec { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .64rem; color: var(--muted-2); padding: 10px 18px 6px; }
.lp .ps-list { flex: 1; padding: 0 14px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.lp .ps-game { background: var(--asphalt-2); border: 1px solid var(--line); border-radius: 13px; padding: 10px 11px; display: flex; align-items: center; gap: 10px; }
.lp .ps-game .gi { width: 36px; height: 36px; border-radius: 10px; flex: none; display: flex; align-items: center; justify-content: center; background: rgba(249, 115, 22, .16); }
.lp .ps-game .gi.lime { background: rgba(163, 230, 53, .16); }
.lp .ps-game .gm { flex: 1; min-width: 0; }
.lp .ps-game .gm b { font-family: var(--font-display); font-weight: 800; font-size: .82rem; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp .ps-game .gm span { color: var(--muted); font-size: .7rem; }
.lp .ps-game .gj { font-family: var(--font-display); font-weight: 800; font-size: .66rem; text-transform: uppercase; letter-spacing: .03em; padding: .34rem .6rem; border-radius: 999px; flex: none; }
.lp .ps-game .gj.go { background: var(--orange); color: #1a0d04; }
.lp .ps-game .gj.gl { background: rgba(163, 230, 53, .18); color: var(--success-text); }
.lp .ps-toast { margin: 10px 14px 0; background: rgba(13, 15, 19, .92); border: 1px solid var(--line-strong); border-radius: 12px; padding: .55rem .65rem; display: flex; align-items: center; gap: .55rem; }
.lp .ps-toast .ic { width: 28px; height: 28px; border-radius: 8px; flex: none; display: flex; align-items: center; justify-content: center; background: rgba(163, 230, 53, .18); color: var(--success-text); }
.lp .ps-toast b { font-family: var(--font-display); font-weight: 800; font-size: .78rem; display: block; line-height: 1.15; }
.lp .ps-toast span { color: var(--muted); font-size: .66rem; }
.lp .ps-tabs { margin-top: 12px; display: flex; justify-content: space-around; padding: 9px 6px 16px; border-top: 1px solid var(--line); background: var(--asphalt-2); }
.lp .ps-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--muted-2); font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: .55rem; }
.lp .ps-tab svg { width: 21px; height: 21px; }
.lp .ps-tab.active { color: var(--orange); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
    .lp .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .lp .cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .lp .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
    .lp .hero-visual { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
    .lp .app-grid { grid-template-columns: 1fr; gap: var(--s-7); }
    .lp .app-visual { order: -1; }
    .lp .tourney-grid { grid-template-columns: 1fr; }
    .lp .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
    .lp .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
    .lp .cards-3 { grid-template-columns: 1fr; }
    .lp .stats-inner { grid-template-columns: repeat(2, 1fr); gap: var(--s-6) 0; clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); }
    .lp .stat { border-right: 0; }
    .lp .stat:nth-child(odd) { border-right: 1px solid rgba(20, 10, 4, .18); }
}
@media (max-width: 560px) {
    .lp .wrap { padding: 0 var(--s-4); }
    .lp section.block { padding: var(--s-8) 0; }
    .lp .hero { padding: var(--s-8) 0 var(--s-7); }
    .lp .feature-grid { grid-template-columns: 1fr; }
    .lp .cards-4 { grid-template-columns: 1fr; }
    .lp .footer-grid { grid-template-columns: 1fr; }
    .lp .head-row { flex-direction: column; align-items: flex-start; }
    .lp .hero-trust { flex-wrap: wrap; }
    .lp .scoreboard .score { font-size: 1.25rem; }
    .lp .floating-pill { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .lp * { animation: none !important; }
    .lp .btn:hover, .lp .feature:hover, .lp .game-card:hover, .lp .court-tile:hover, .lp .player-card:hover { transform: none; }
}
