/* v20260722-carousel */
/* ══════════════════════════════════════════════════════
   Homepage redesign — hp-* classes
   Fonts: Space Grotesk (sans), JetBrains Mono (mono)
   Colors: #D9E635 ball · #1F3A26 forest · #141613 ink
           #F7F5EE cream · #F1EEE3 cream-2
   ══════════════════════════════════════════════════════ */

/* ── Page load animations ── */
@keyframes hpFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hpFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Base ── */
.hp-page {
    background: #F7F5EE;
    color: #141613;
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    animation: hpFadeIn 0.4s ease both;
}
.hp-hero {
    animation: hpFadeUp 0.55s ease both;
}
.hp-why    { animation: hpFadeUp 0.55s 0.1s ease both; }
.hp-highlights { animation: hpFadeUp 0.55s 0.2s ease both; }
.hp-features   { animation: hpFadeUp 0.55s 0.25s ease both; }
.hp-org        { animation: hpFadeUp 0.55s 0.3s ease both; }
.hp-anim-section { animation: hpFadeUp 0.55s 0.2s ease both; }

/* ── Nav ── */
.hp-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(247,245,238,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(20,22,19,0.09);
    padding: 18px 40px;
}
.hp-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.hp-nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.hp-ball-icon { display: flex; align-items: center; flex-shrink: 0; }
.hp-nav-wordmark {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #141613;
}
.hp-nav-slug {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    color: rgba(20,22,19,0.42);
    margin-left: 2px;
}
.hp-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}
.hp-nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(20,22,19,0.62);
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 6px;
    transition: color 0.15s;
}
.hp-nav-link:hover { color: #141613; }
.hp-nav-signin {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: #D9E635;
    color: #141613;
    border: none;
    padding: 9px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}
.hp-nav-signin:hover { background: #B8C91F; }

/* ── Hero ── */
.hp-hero {
    padding: 56px clamp(24px, 5%, 80px) 32px;
}
.hp-hero--splash {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px clamp(24px, 8%, 120px) 80px;
    text-align: center;
}
.hp-hero-splash-inner {
    max-width: 820px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hp-hero--splash .hp-hero-sub {
    text-align: center;
    max-width: 580px;
}
.hp-hero--splash .hp-cta-row {
    justify-content: center;
}
.hp-scroll-hint {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hp-scroll-hint-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(20,22,19,0.45);
}
.hp-scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(20,22,19,0.25);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    animation: hpScrollBounce 2.2s ease-in-out infinite;
}
.hp-scroll-wheel {
    width: 4px;
    height: 8px;
    background: #1F3A26;
    border-radius: 2px;
    animation: hpWheelDrop 2.2s ease-in-out infinite;
}
@keyframes hpScrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50%       { transform: translateY(5px); opacity: 1; }
}
@keyframes hpWheelDrop {
    0%        { opacity: 1;   transform: translateY(0); }
    60%       { opacity: 0;   transform: translateY(10px); }
    61%       { opacity: 0;   transform: translateY(0); }
    100%      { opacity: 1;   transform: translateY(0); }
}
.hp-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hp-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Staggered entrance animations */
.hp-anim-1 { animation: hpFadeUp 0.6s 0.15s ease both; }
.hp-anim-2 { animation: hpFadeUp 0.7s 0.3s  ease both; }
.hp-anim-3 { animation: hpFadeUp 0.6s 0.5s  ease both; }
.hp-anim-4 { animation: hpFadeUp 0.6s 0.65s ease both; }
.hp-anim-5 { animation: hpFadeUp 0.6s 0.8s  ease both; }

/* Scroll reveal */
.hp-scroll-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.hp-scroll-reveal.hp-visible {
    opacity: 1;
    transform: translateY(0);
}
.hp-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1F3A26;
    margin-bottom: 18px;
}
.hp-eyebrow--line {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hp-eyebrow--line::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: #1F3A26;
    flex-shrink: 0;
}
.hp-hero-h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 7vw, 92px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.96;
    color: #141613;
    margin: 0 0 22px;
}
.hp-swoosh {
    font-style: normal;
    color: #1F3A26;
    display: inline-block;
    position: relative;
    z-index: 0;
}
.hp-swoosh::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -4px;
    right: -4px;
    height: 18px;
    background: #D9E635;
    z-index: -1;
    transform: skewX(-8deg);
}
.hp-hero-sub {
    font-size: 19px;
    line-height: 1.5;
    color: rgba(20,22,19,0.62);
    max-width: 520px;
    margin: 0 0 36px;
}
.hp-cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.hp-btn-primary {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: #D9E635;
    color: #141613;
    border: none;
    padding: 14px 22px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s, transform 0.12s;
}
.hp-btn-primary:hover { background: #B8C91F; transform: translateX(2px); }
.hp-btn-ghost {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent;
    color: #141613;
    border: 1px solid rgba(20,22,19,0.09);
    padding: 14px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s;
}
.hp-btn-ghost:hover { border-color: #141613; }
.hp-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: rgba(20,22,19,0.62);
}
.hp-trust b { color: #1F3A26; font-weight: 700; }

/* Feature pills */
.hp-pills-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.hp-pill-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 12px;
    padding: 14px 18px;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.hp-pill-row:hover {
    border-color: rgba(31,58,38,0.2);
    box-shadow: 0 4px 16px -8px rgba(20,22,19,0.1);
}
.hp-pill-icon {
    width: 38px;
    height: 38px;
    background: #EEF38C;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hp-pill-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.hp-pill-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #141613;
}
.hp-pill-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: rgba(20,22,19,0.52);
    line-height: 1.4;
}
.hp-pill-check {
    width: 26px;
    height: 26px;
    background: #D9E635;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Product preview card */
.hp-preview-wrap {
    position: relative;
}
.hp-preview-shadow {
    position: absolute;
    inset: 14px -10px -10px 14px;
    background: #D9E635;
    opacity: 0.18;
    transform: rotate(2deg);
    border-radius: 16px;
    z-index: 0;
}
.hp-preview-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 16px;
    transform: rotate(0.5deg);
    box-shadow: 0 30px 60px -30px rgba(20,22,19,0.2);
    z-index: 1;
    overflow: hidden;
}
.hp-preview-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 35%, rgba(217,230,53,0.18), transparent 70%);
    pointer-events: none;
}
.hp-preview-head {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(20,22,19,0.09);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239,68,68,0.1);
    color: #c22;
    border: 1px solid rgba(239,68,68,0.25);
    padding: 5px 11px;
    border-radius: 4px;
}
.hp-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: hpLivePulse 1.8s ease-in-out infinite;
}
@keyframes hpLivePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}
.hp-live-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}
.hp-preview-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    color: rgba(20,22,19,0.42);
    text-transform: uppercase;
}
.hp-preview-label {
    position: absolute;
    top: 64px;
    right: 22px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
}
.hp-preview-body { padding: 22px; }
.hp-preview-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #141613;
    margin-bottom: 4px;
}
.hp-preview-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: rgba(20,22,19,0.62);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hp-match-rows { display: flex; flex-direction: column; gap: 0; }
.hp-match-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(20,22,19,0.09);
    align-items: center;
}
.hp-match-teams { display: flex; flex-direction: column; gap: 6px; }
.hp-match-team {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hp-match-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    min-width: 22px;
    color: #141613;
}
.hp-match-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #141613;
}
.hp-match-team--lead .hp-match-score,
.hp-match-team--lead .hp-match-name {
    color: #1F3A26;
    font-weight: 700;
}
.hp-match-court {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.hp-court-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: #1F3A26;
    letter-spacing: -0.04em;
    line-height: 1;
}
.hp-court-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
    margin-top: 3px;
}
.hp-preview-foot {
    padding: 14px 22px;
    background: #F7F5EE;
    border-top: 1px solid rgba(20,22,19,0.09);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp-preview-watchers {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(20,22,19,0.62);
}
.hp-preview-watch {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: #1F3A26;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
}

/* ── Shared section styles ── */
.hp-sec-inner {
    padding: 0 clamp(24px, 5%, 80px);
}
.hp-sec-hdr { margin-bottom: 56px; }
.hp-sec-hdr--center { text-align: center; }
.hp-sec-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1F3A26;
    margin-bottom: 14px;
    display: block;
}
.hp-sec-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #141613;
    margin: 0;
}
.hp-sec-title--lg { font-size: 56px; letter-spacing: -0.035em; }
.hp-sec-title em { font-style: normal; color: #1F3A26; }

/* ── Why ZeroZeroTwo ── */
.hp-why {
    background: #F7F5EE;
    padding: 96px 0;
}
.hp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.hp-why-card {
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hp-why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31,58,38,0.18);
    box-shadow: 0 20px 36px -22px rgba(20,22,19,0.12);
}
.hp-icon-tile {
    width: 44px;
    height: 44px;
    background: #EEF38C;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hp-card-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
}
.hp-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #141613;
    margin: 0;
}
.hp-card-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(20,22,19,0.62);
    margin: 0;
}

/* ── From Backyard ── */
.hp-formats {
    background: #F7F5EE;
    padding: 96px 0;
}
.hp-formats-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.hp-formats-hdr .hp-sec-title { margin-top: 10px; }
.hp-formats-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #141613;
    text-decoration: none;
    white-space: nowrap;
    transition: letter-spacing 0.15s;
    flex-shrink: 0;
    padding-bottom: 4px;
}
.hp-formats-link:hover { letter-spacing: 0.18em; }
.hp-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.hp-fmt-card {
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.hp-fmt-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31,58,38,0.18);
    box-shadow: 0 20px 36px -22px rgba(20,22,19,0.12);
}
.hp-fmt-banner {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp-fmt-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #141613;
}
.hp-fmt-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hp-fmt-division {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #141613;
    background: rgba(20,22,19,0.1);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.hp-fmt-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.hp-fmt-crest {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hp-fmt-icon-tile {
    width: 44px;
    height: 44px;
    background: #EEF38C;
    border: 1px solid rgba(31,58,38,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hp-fmt-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #141613;
}
.hp-fmt-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(20,22,19,0.62);
    margin: 0;
}
.hp-fmt-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hp-fmt-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: #141613;
}
.hp-fmt-foot {
    padding: 12px 20px;
    background: #fbfaf6;
    border-top: 1px solid rgba(20,22,19,0.09);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp-fmt-foot > span:first-child {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #1F3A26;
}
.hp-fmt-stat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(20,22,19,0.42);
}

/* ── How It Works ── */
.hp-how {
    background: #F1EEE3;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.hp-how-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,230,53,0.25), transparent 60%);
    pointer-events: none;
}
.hp-toggle-pill {
    display: inline-flex;
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 999px;
    padding: 4px;
    gap: 2px;
    margin-top: 24px;
}
.hp-toggle-btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: rgba(20,22,19,0.62);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.hp-toggle-btn--active {
    background: #D9E635;
    color: #141613;
}
.hp-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}
.hp-how-card {
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 14px;
    padding: 32px 28px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hp-how-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31,58,38,0.2);
    box-shadow: 0 20px 36px -22px rgba(20,22,19,0.12);
}
.hp-how-icon-tile {
    width: 36px;
    height: 36px;
    background: #EEF38C;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.hp-how-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.hp-how-step span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #1F3A26;
    letter-spacing: 0.16em;
    white-space: nowrap;
}
.hp-how-hairline {
    height: 1px;
    width: 40px;
    background: rgba(31,58,38,0.3);
}
.hp-how-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #141613;
    margin: 0 0 12px;
}
.hp-how-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(20,22,19,0.62);
    margin: 0;
}

/* ── Take a Tour ── */
.hp-tour {
    background: #F7F5EE;
    padding: 96px 0;
}
.hp-tour-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(20,22,19,0.62);
    max-width: 540px;
    margin: 14px auto 0;
    text-align: center;
}
.hp-tour-tabs {
    display: flex;
    justify-content: center;
    margin: 36px auto 28px;
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 999px;
    padding: 5px;
    gap: 4px;
    width: fit-content;
}
.hp-tab {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: rgba(20,22,19,0.62);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.hp-tab--active {
    background: #D9E635;
    color: #141613;
}
.hp-tour-panel {
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 14px;
    box-shadow: 0 30px 60px -30px rgba(20,22,19,0.15);
    overflow: hidden;
}
.hp-browser-chrome {
    background: #F1EEE3;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(20,22,19,0.09);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hp-browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.hp-browser-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: block;
}
.hp-url-bar {
    flex: 1;
    max-width: 360px;
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 5px;
    padding: 5px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(20,22,19,0.42);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-panel-view { padding: 36px; min-height: 460px; }

/* Live View */
.hp-live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
.hp-court-tile {
    background: #F7F5EE;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 10px;
    overflow: hidden;
}
.hp-court-head {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(20,22,19,0.09);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp-court-id {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #141613;
}
.hp-ct-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1F3A26;
    display: block;
}
.hp-pool-pill {
    background: #EEF38C;
    color: #1F3A26;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 6px;
    border-radius: 3px;
}
.hp-court-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hp-ct-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #141613;
}
.hp-ct-team--lead { color: #1F3A26; font-weight: 700; }
.hp-ct-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.04em;
}
.hp-ct-team--lead .hp-ct-score { color: #1F3A26; }
.hp-ct-vs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
    text-align: center;
    padding: 2px 0;
}
.hp-ct-vs--matchpt { color: #1F3A26; }
.hp-live-stats {
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(20,22,19,0.42);
}

/* Bracket View */
.hp-bracket-view {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 8px;
}
.hp-br-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 160px;
}
.hp-br-col--semi {
    justify-content: center;
    margin-top: 40px;
    gap: 40px;
}
.hp-br-col--final {
    justify-content: center;
    margin-top: 80px;
}
.hp-br-round-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
    text-align: center;
    margin-bottom: 4px;
}
.hp-br-pair { display: flex; flex-direction: column; gap: 10px; }
.hp-br-match {
    background: #F7F5EE;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 8px;
    padding: 10px 14px;
}
.hp-br-match--pending { opacity: 0.65; }
.hp-br-match--final {
    background: #EEF38C;
    border: 1.5px solid #B8C91F;
}
.hp-br-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: #141613;
    padding: 4px 0;
    gap: 8px;
}
.hp-br-team span:last-child {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 12px;
}
.hp-br-team--win { color: #1F3A26; font-weight: 700; }
.hp-br-team--win span:last-child { color: #1F3A26; }
.hp-br-sep {
    height: 1px;
    background: rgba(20,22,19,0.09);
    margin: 2px 0;
}
.hp-br-final-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1F3A26;
    text-align: center;
    margin-top: 10px;
}

/* Dashboard View */
.hp-dash-view {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
}
.hp-dash-welcome {
    background: #F7F5EE;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 12px;
    padding: 22px;
}
.hp-dash-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1F3A26;
    margin-bottom: 12px;
}
.hp-dash-greeting {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #141613;
    margin: 0 0 6px;
}
.hp-dash-greeting em { font-style: normal; color: #1F3A26; }
.hp-dash-next {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.62);
    margin-bottom: 16px;
}
.hp-dash-next b { color: #141613; font-weight: 700; }
.hp-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.hp-stat-tile {
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 8px;
    padding: 12px 14px;
}
.hp-stat-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #141613;
    line-height: 1;
}
.hp-stat-val span {
    font-size: 14px;
    color: rgba(20,22,19,0.42);
    font-weight: 500;
}
.hp-stat-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
    margin-top: 6px;
}
.hp-dash-upnext {
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 12px;
    padding: 22px;
}
.hp-dash-un-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.hp-dash-un-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1F3A26;
}
.hp-dash-un-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
}
.hp-un-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    background: #F7F5EE;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 6px;
}
.hp-ct-badge {
    background: #D9E635;
    color: #141613;
    border-radius: 6px;
    padding: 5px 9px;
    min-width: 38px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hp-ct-badge span {
    font-size: 7px;
    letter-spacing: 0.16em;
    opacity: 0.7;
    font-weight: 600;
}
.hp-un-vs {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #141613;
}
.hp-un-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
    margin-top: 2px;
}
.hp-un-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: #1F3A26;
    text-align: right;
    white-space: nowrap;
}

/* ── How It Works + Take A Tour (combined two-column) ── */
.hp-how-tour {
    background: #F1EEE3;
    padding: 96px 0;
}
.hp-how-tour-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 clamp(24px, 5%, 80px);
    align-items: stretch;
}
.hp-how-col,
.hp-tour-col {
    display: flex;
    flex-direction: column;
}
.hp-how-col .hp-toggle-pill {
    margin-top: 0;
}
.hp-tour-col .hp-tour-tabs {
    margin-top: 0;
    margin-left: 0;
    justify-content: flex-start;
}
.hp-tour-col .hp-panel-view {
    min-height: 320px;
    overflow-y: auto;
}
.hp-how-col-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #141613;
    margin: 0 0 20px;
}
.hp-how-col-title em { font-style: normal; color: #1F3A26; }
.hp-how-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hp-how-col-cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(20,22,19,0.09);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.hp-how-step-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 10px;
}
.hp-how-step-row > div:last-child {
    min-width: 0;
    overflow-wrap: break-word;
}
.hp-how-step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
    margin-bottom: 3px;
}
.hp-how-step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #141613;
    margin-bottom: 4px;
}
.hp-how-step-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(20,22,19,0.62);
}

/* ── Features Grid ── */
.hp-features {
    background: #F7F5EE;
    padding: 96px 0;
}
.hp-feat-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(20,22,19,0.62);
    max-width: 580px;
    margin: 16px auto 0;
    text-align: center;
}
.hp-feat-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
    margin-top: 56px;
    align-items: start;
}
.hp-feat-tile {
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 14px;
    padding: 28px;
    transition: transform 0.2s, border-color 0.2s;
}
.hp-feat-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(31,58,38,0.18);
}
.hp-tile-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1F3A26;
    margin-bottom: 14px;
}
.hp-tile-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #141613;
    margin: 0 0 8px;
}
.hp-tile-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(20,22,19,0.62);
    margin: 0 0 24px;
}

/* Mini bracket in Tile 1 */
.hp-mini-bracket { display: flex; flex-direction: column; }
.hp-mb-match {
    background: #F7F5EE;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 5px;
    overflow: hidden;
}
.hp-mb-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #141613;
    gap: 8px;
}
.hp-mb-team--win {
    background: #EEF38C;
    border: 1px solid rgba(31,58,38,0.2);
    font-weight: 700;
    color: #141613;
}
.hp-mb-team--win span:last-child { color: #1F3A26; font-weight: 800; }
.hp-mb-match--final {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: rgba(217,230,53,0.4);
    border: 1px solid rgba(217,230,53,0.5);
    border-radius: 5px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    color: #141613;
}

/* Mini scoreboard in Tile 2 */
.hp-mini-scoreboard {
    background: #F7F5EE;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.hp-msb-court {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hp-msb-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #1F3A26;
    letter-spacing: -0.04em;
    line-height: 1;
}
.hp-msb-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
    margin-top: 4px;
}
.hp-msb-teams { flex: 1; }
.hp-msb-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #141613;
    padding: 3px 0;
}
.hp-msb-team--win { color: #1F3A26; font-weight: 700; }
.hp-msb-team span {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}
.hp-msb-vs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    color: rgba(20,22,19,0.42);
    text-align: center;
    padding: 2px 0;
}

/* Payout rows in Tile 3 */
.hp-payout-caption {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
    margin-top: 12px;
    margin-bottom: 8px;
}
.hp-payout-rows { display: flex; flex-direction: column; gap: 8px; }
.hp-payout-row {
    background: #F7F5EE;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 6px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #141613;
}
.hp-payout-amt {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #1F3A26;
}

/* Notification chips in Tile 4 */
.hp-notif-chips { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.hp-notif-chip {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    background: #F7F5EE;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 8px;
}
.hp-notif-chip--new { border-left: 3px solid #D9E635; }
.hp-notif-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #EEF38C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hp-notif-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #141613;
}
.hp-notif-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(20,22,19,0.42);
    margin-top: 2px;
}
.hp-notif-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(20,22,19,0.42);
    text-align: right;
    white-space: nowrap;
}

/* Mini profile in Tile 5 */
.hp-mini-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px;
    background: #F7F5EE;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 8px;
}
.hp-mp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D9E635;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #141613;
    flex-shrink: 0;
}
.hp-mp-info { flex: 1; }
.hp-mp-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #141613;
}
.hp-mp-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(20,22,19,0.42);
    letter-spacing: 0.06em;
    margin-top: 2px;
}
.hp-mp-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1F3A26;
    background: #EEF38C;
    padding: 4px 7px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ── Feature Highlights ── */
.hp-highlights {
    background: #F7F5EE;
    padding: 80px 0;
}
.hp-hl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.hp-hl-tile {
    background: #fff;
    border: 1px solid rgba(20,22,19,0.09);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hp-hl-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(31,58,38,0.18);
    box-shadow: 0 16px 32px -20px rgba(20,22,19,0.12);
}
.hp-hl-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #141613;
    margin: 0;
}
.hp-hl-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(20,22,19,0.62);
    margin: 0;
}

/* ── Organizer CTA ── */
.hp-org {
    background: #F1EEE3;
    padding: 96px 0;
}
.hp-org-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.hp-org-left { display: flex; flex-direction: column; gap: 0; }
.hp-org-left .hp-sec-eyebrow { margin-bottom: 18px; }
.hp-org-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #141613;
    margin: 0 0 20px;
}
.hp-org-title em { font-style: normal; color: #1F3A26; }
.hp-org-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(20,22,19,0.62);
    max-width: 520px;
    margin: 0 0 32px;
}
.hp-org-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hp-org-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: #141613;
    line-height: 1.5;
}
.hp-org-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #D9E635;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Organizer bracket diagram */
.hp-org-right { display: flex; align-items: center; justify-content: center; }
.hp-org-bracket {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
    max-width: 380px;
}
.hp-ob-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.hp-ob-col--semi {
    justify-content: center;
    gap: 24px;
}
.hp-ob-col--final {
    flex: none;
    width: 120px;
}
.hp-ob-node {
    background: #fff;
    border: 1px solid rgba(31,58,38,0.2);
    border-radius: 6px;
    padding: 10px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: #141613;
    letter-spacing: 0.02em;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hp-ob-node small {
    font-size: 9px;
    color: rgba(20,22,19,0.42);
    letter-spacing: 0.12em;
}
.hp-ob-node--final {
    background: #D9E635;
    border-color: #B8C91F;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    align-items: center;
}
.hp-ob-node--final small { color: rgba(20,22,19,0.55); }

/* ── Footer ── */
.hp-footer-bar {
    background: #F7F5EE;
    border-top: 1px solid rgba(20,22,19,0.09);
    padding: 32px clamp(24px, 5%, 80px);
}
.hp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.hp-footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #141613;
}
.hp-footer-links {
    display: flex;
    gap: 24px;
}
.hp-footer-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: rgba(20,22,19,0.62);
    text-decoration: none;
    transition: color 0.15s;
}
.hp-footer-links a:hover { color: #141613; }
.hp-footer-copy {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(20,22,19,0.42);
    letter-spacing: 0.04em;
}

/* ══ FOOTER APP STORE BUTTONS ══ */
.hp-footer-apps {
    display: flex;
    gap: 10px;
    align-items: center;
}
.hp-app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #141613;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 9px 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
}
.hp-app-btn:hover { background: #2a2c29; transform: translateY(-1px); }
.hp-app-btn:active { transform: translateY(0); }
.hp-app-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ══ COMING SOON MODAL ══ */
.hp-cs-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    padding: 20px;
}
.hp-cs-modal {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.hp-cs-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}
.hp-cs-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #141613;
    margin-bottom: 10px;
}
.hp-cs-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: rgba(20,22,19,0.65);
    line-height: 1.6;
    margin-bottom: 24px;
}
.hp-cs-close {
    background: #141613;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.hp-cs-close:hover { background: #2a2c29; }

/* ══ MOBILE RESPONSIVE ══ */
@media (max-width: 1100px) {
    .hp-why-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-formats-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-how-grid { grid-template-columns: 1fr; gap: 16px; }
    .hp-feat-grid { grid-template-columns: 1fr 1fr; }
    .hp-feat-tile[style*="grid-row"] { grid-row: auto; }
    .hp-org-grid { grid-template-columns: 1fr; gap: 40px; }
    .hp-org-right { display: none; }
    .hp-how-tour-inner { gap: 40px; }
    .hp-hl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .hp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hp-pills-wrap { max-width: 480px; }
    .hp-preview-wrap { max-width: 440px; margin: 0 auto; }
    .hp-live-grid { grid-template-columns: 1fr; }
    .hp-dash-view { grid-template-columns: 1fr; }
    .hp-bracket-view { overflow-x: auto; }
    .hp-how-tour-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 700px) {
    .hp-nav { padding: 14px 20px; }
    .hp-nav-links { display: none; }
    .hp-hero { padding: 40px 5% 56px; }
    .hp-hero--splash { padding: 80px 24px 60px; min-height: 100svh; }
    .hp-hero-h1 { font-size: clamp(40px, 11vw, 72px); }
    .hp-hero-sub { font-size: 16px; }
    .hp-cta-row { flex-direction: column; align-items: center; }
    .hp-why { padding: 64px 0; }
    .hp-why-grid { grid-template-columns: 1fr; }
    .hp-formats { padding: 64px 0; }
    .hp-formats-hdr { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hp-formats-grid { grid-template-columns: 1fr; }
    .hp-how { padding: 64px 0; }
    .hp-tour { padding: 64px 0; }
    .hp-how-tour { padding: 64px 0; }
    .hp-how-col-title { font-size: 26px; }
    .hp-tour-tabs { flex-wrap: wrap; border-radius: 12px; width: 100%; }
    .hp-tab { flex: 1; text-align: center; padding: 10px 12px; }
    .hp-panel-view { padding: 20px; min-height: auto; }
    .hp-live-grid { grid-template-columns: 1fr; }
    .hp-highlights { padding: 56px 0; }
    .hp-hl-grid { grid-template-columns: 1fr; }
    .hp-features { padding: 64px 0; }
    .hp-feat-grid { grid-template-columns: 1fr; }
    .hp-sec-title { font-size: 32px; }
    .hp-sec-title--lg { font-size: 36px; }
    .hp-org { padding: 64px 0; }
    .hp-org-title { font-size: 36px; }
    .hp-footer-bar { padding: 24px 20px; }
    .hp-footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hp-footer-apps { flex-direction: row; flex-wrap: wrap; }
    .hp-app-btn { font-size: 12px; padding: 8px 14px; }
    /* Consistent 20px horizontal padding on mobile */
    .hp-sec-inner,
    .hp-how-tour-inner { padding-left: 20px; padding-right: 20px; }
    .hp-hero { padding-left: 20px; padding-right: 20px; }
    /* Toggle pill full width to prevent overflow */
    .hp-toggle-pill { width: 100%; }
    .hp-toggle-btn { flex: 1; text-align: center; padding: 8px 10px; }
}

/* ══════════════════════════════════════════════════════
   Screenshot Carousel  — sc-* classes
   ══════════════════════════════════════════════════════ */
.hp-showcase {
    background: #F7F5EE;
    padding: 1.5rem 0 3rem;
}
.hp-showcase .hp-sec-eyebrow { color: #1F3A26; }
.hp-showcase .hp-sec-title   { color: #141613; }
.hp-showcase .hp-sec-title em { color: #1F3A26; font-style: normal; }

.hp-sec-inner--wide { max-width: 1100px; }

/* Centered, constrained carousel wrapper */
.sc-carousel-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(8px, 1.5vw, 16px);
}

/* Carousel wrapper */
.sc-carousel {
    position: relative;
    user-select: none;
}

/* Clipping window */
.sc-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.28), 0 8px 24px rgba(0,0,0,0.12);
}

/* Sliding track */
.sc-track {
    display: flex;
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Each slide */
.sc-slide {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    height: 900px;
}
.sc-img {
    display: block;
    width: 100%;
    height: 900px;
    object-fit: cover;
    object-position: top center;
}

/* Gradient + text overlay */
.sc-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 6rem 2.5rem 1.5rem;
    background: linear-gradient(to top,
        rgba(5,12,6,0.96) 0%,
        rgba(5,12,6,0.72) 40%,
        transparent 100%);
    pointer-events: none;
}
.sc-overlay-text {
    animation: scTextIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes scTextIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.sc-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #D9E635;
    background: rgba(217,230,53,0.12);
    border: 1px solid rgba(217,230,53,0.3);
    border-radius: 100px;
    padding: 3px 10px;
    margin-bottom: 0.6rem;
}
.sc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.sc-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.5;
    max-width: 560px;
    margin-bottom: 1.25rem;
}

/* Progress bars */
.sc-prog {
    display: flex;
    gap: 6px;
    pointer-events: all;
}
.sc-prog-item {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 100px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.sc-prog-item--done .sc-prog-fill {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.55);
    border-radius: 100px;
}
.sc-prog-item--active .sc-prog-fill {
    width: 0;
    height: 100%;
    background: #D9E635;
    border-radius: 100px;
    animation: scProgFill 6.5s linear forwards;
}
@keyframes scProgFill {
    from { width: 0%; }
    to   { width: 100%; }
}

/* Slide counter */
.sc-counter {
    position: absolute;
    top: 20px; right: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    pointer-events: none;
    z-index: 2;
}

/* Arrows */
.sc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    z-index: 2;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.sc-arrow:hover {
    background: rgba(217,230,53,0.18);
    border-color: rgba(217,230,53,0.5);
    transform: translateY(-50%) scale(1.08);
}
.sc-arrow--l { left:  16px; }
.sc-arrow--r { right: 16px; }


/* Mobile */
@media (max-width: 700px) {
    .hp-showcase { padding: 3.5rem 0 2.5rem; }
    .sc-carousel-wrap { padding: 0 12px; }
    .sc-slide   { height: 480px; }
    .sc-img     { height: 480px; }
    .sc-overlay { padding: 2rem 1rem 1rem; }
    .sc-title   { font-size: 1.1rem; }
    .sc-sub     { font-size: 0.78rem; margin-bottom: 0.75rem; }
    .sc-arrow--l { left:  4px; }
    .sc-arrow--r { right: 4px; }
    .sc-arrow   { width: 36px; height: 36px; }
    .sc-counter { display: none; }
}
