@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,500;0,9..40,700;0,9..40,900;1,9..40,300&display=swap');

/* =========================
   DESIGN TOKENS
========================= */
:root {
    --black: #0a0a0a;
    --off-black: #111111;
    --white: #ffffff;
    --cream: #f5f2ec;
    --lime: #c8f23c;
    --lime-dark: #a8d420;
    --orange: #ff5c1a;
    --orange-dark: #d94710;
    --green: #3dbd72;
    --muted: #888888;
    --border-dark: #1e1e1e;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-pill: 999px;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-brutal: 4px 4px 0px var(--black);
    --shadow-brutal-lg: 6px 6px 0px var(--black);
    --shadow-brutal-xl: 8px 8px 0px var(--black);
    --container-max: 1400px;
}

/* =========================
   RESET
========================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.turffed-body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(var(--container-max), calc(100% - 48px));
    margin: 0 auto;
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Brand */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    background: var(--lime);
    border: 3px solid var(--black);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-brutal);
}

    .brand-mark svg {
        width: 22px;
        height: 22px;
    }

.brand-wordmark {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: var(--white);
    line-height: 1;
}

/* Main nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

    .main-nav a {
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.65);
        transition: color 0.2s;
    }

        .main-nav a:hover {
            color: var(--white);
        }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--lime);
    color: var(--black) !important;
    border: 3px solid var(--black);
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-brutal);
    transition: transform 0.15s, box-shadow 0.15s !important;
}

    .nav-cta:hover {
        transform: translate(-2px,-2px);
        box-shadow: 6px 6px 0px var(--black) !important;
    }

/* ── Hamburger toggle button ── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1001; /* always above the mobile overlay */
    flex-shrink: 0;
}

    .nav-toggle .bar {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.25s ease, width 0.25s ease;
        transform-origin: center;
    }

/* Hamburger → X animation */
.nav-toggle.open .bar-1 { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar-2 { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .bar-3 { transform: translateY(-7px) rotate(-45deg); }

/* =========================
   MOBILE NAV OVERLAY
   Must live OUTSIDE <header> in the DOM — the header's
   backdrop-filter creates a containing block that traps
   position:fixed children and prevents full-screen coverage.
========================= */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-nav-overlay.open {
    display: flex;
    animation: mobile-nav-in 0.28s ease forwards;
}

@keyframes mobile-nav-in {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3rem);
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    text-transform: uppercase;
    padding: 0.55rem 1rem;
    transition: color 0.2s;
    line-height: 1.1;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active { color: var(--lime); }

.mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--lime);
    color: var(--black) !important;
    border: 3px solid var(--black);
    border-radius: var(--radius-pill);
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-brutal);
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    margin-top: 0.5rem;
}

.mobile-nav-cta:hover {
    transform: translate(-2px,-2px);
    box-shadow: 6px 6px 0 var(--black);
}

/* =========================
   HERO SECTION
========================= */
.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200,242,60,0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200,242,60,0.12);
    border: 1.5px solid rgba(200,242,60,0.35);
    border-radius: var(--radius-pill);
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 1.5rem;
    width: fit-content;
}

    .hero-badge::before {
        content: '';
        width: 8px;
        height: 8px;
        background: var(--lime);
        border-radius: 50%;
        animation: pulse-dot 2s infinite;
    }

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(5rem, 9vw, 11rem);
    line-height: 0.88;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 0;
}

    .hero-headline .hl-lime {
        color: var(--lime);
    }

    .hero-headline .hl-orange {
        color: var(--orange);
    }

.hero-subline {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-top: 1.8rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.4rem;
}

/* Primary CTA */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--lime);
    color: var(--black);
    border: 3px solid var(--black);
    border-radius: var(--radius-pill);
    padding: 0.65rem 0.65rem 0.65rem 1.6rem;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: var(--shadow-brutal-xl);
    transition: transform 0.15s, box-shadow 0.15s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

    .btn-download:hover {
        transform: translate(-3px,-3px);
        box-shadow: 11px 11px 0px var(--black);
    }

    .btn-download .btn-icon {
        width: 46px;
        height: 46px;
        background: var(--black);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    padding: 0.8rem 1.6rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    letter-spacing: 0.04em;
}

    .btn-ghost:hover {
        border-color: rgba(255,255,255,0.6);
        background: rgba(255,255,255,0.06);
    }

/* Hero stats strip */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
    color: var(--lime);
}

.hero-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 0.3rem;
}

/* Hero right - phone mockup */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 300px;
}

.phone-shell {
    background: #1a1a1a;
    border: 4px solid #333;
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 40px 80px rgba(0,0,0,0.8), 0 0 60px rgba(200,242,60,0.08);
    position: relative;
}

.phone-notch {
    width: 80px;
    height: 24px;
    background: #0a0a0a;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: linear-gradient(160deg, #111 0%, #0d1a0f 50%, #0a0a0a 100%);
    border-radius: 32px;
    overflow: hidden;
    height: 560px;
    position: relative;
}

/* App UI inside phone */
.app-topbar {
    padding: 14px 18px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--lime);
}

.app-notif {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.app-map-area {
    margin: 0 14px;
    height: 200px;
    background: linear-gradient(145deg, #0d1f12, #152b1a);
    border-radius: 18px;
    border: 1.5px solid rgba(61,189,114,0.25);
    overflow: hidden;
    position: relative;
}

.app-map-hole {
    position: absolute;
    border-radius: 50%;
}

.map-h1 {
    width: 55px;
    height: 30px;
    background: rgba(61,189,114,0.4);
    top: 30px;
    left: 25px;
    border-radius: 40px;
}

.map-h2 {
    width: 45px;
    height: 25px;
    background: rgba(255,92,26,0.5);
    top: 50px;
    left: 100px;
    border-radius: 40px;
    transform: rotate(25deg);
}

.map-h3 {
    width: 60px;
    height: 28px;
    background: rgba(61,189,114,0.3);
    top: 100px;
    left: 55px;
    border-radius: 40px;
    transform: rotate(-15deg);
}

.map-h4 {
    width: 50px;
    height: 26px;
    background: rgba(255,92,26,0.4);
    top: 80px;
    left: 175px;
    border-radius: 40px;
    transform: rotate(10deg);
}

.map-h5 {
    width: 42px;
    height: 22px;
    background: rgba(61,189,114,0.25);
    top: 140px;
    left: 150px;
    border-radius: 40px;
    transform: rotate(-20deg);
}

.map-you-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--lime);
    border: 2.5px solid var(--black);
    border-radius: 50%;
    top: 90px;
    left: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 900;
    color: var(--black);
    box-shadow: 0 0 12px rgba(200,242,60,0.7);
    animation: you-pulse 3s ease-in-out infinite;
}

@keyframes you-pulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(200,242,60,0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(200,242,60,0.9);
    }
}

.map-label {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.app-owned-badge {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(255,92,26,0.2);
    border: 1px solid rgba(255,92,26,0.4);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.06em;
}

.app-hole-strip {
    padding: 12px 14px 0;
}

.app-hole-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
}

.app-hole-cards {
    display: flex;
    gap: 8px;
    overflow: hidden;
}

.hole-card-mini {
    flex-shrink: 0;
    width: 80px;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 8px;
}

    .hole-card-mini.owned {
        background: rgba(255,92,26,0.1);
        border-color: rgba(255,92,26,0.3);
    }

    .hole-card-mini.mine {
        background: rgba(200,242,60,0.08);
        border-color: rgba(200,242,60,0.3);
    }

.hole-num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1;
    color: var(--white);
}

    .hole-num.orange {
        color: var(--orange);
    }

    .hole-num.lime {
        color: var(--lime);
    }

.hole-info {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.4);
    margin-top: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hole-owner {
    font-size: 0.58rem;
    font-weight: 700;
    margin-top: 4px;
}

    .hole-owner.red {
        color: var(--orange);
    }

    .hole-owner.green {
        color: var(--lime);
    }

.app-challenge-bar {
    margin: 10px 14px 0;
    background: rgba(255,92,26,0.08);
    border: 1.5px solid rgba(255,92,26,0.2);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.challenge-text {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
}

.challenge-caret {
    width: 22px;
    height: 22px;
    background: var(--orange);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--white);
}

/* Floating elements around phone */
.float-tag {
    position: absolute;
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: var(--radius-lg);
    padding: 0.7rem 1rem;
    box-shadow: var(--shadow-brutal);
    white-space: nowrap;
}

.float-tag-1 {
    top: 60px;
    right: -70px;
    background: var(--lime);
    color: var(--black);
}

.float-tag-2 {
    bottom: 130px;
    left: -80px;
    background: var(--orange);
    color: var(--white);
}

.float-tag-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    opacity: 0.7;
}

.float-tag-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.1;
}

/* =========================
   MARQUEE STRIP
========================= */
.marquee-strip {
    background: var(--lime);
    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
    padding: 0.85rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0 2.5rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    color: var(--black);
    white-space: nowrap;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--black);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   WHAT IS TURFFED SECTION
========================= */
.section-what {
    padding: 8rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

    .section-what::before {
        content: 'TURF';
        font-family: var(--font-display);
        font-size: 30vw;
        color: rgba(255,255,255,0.018);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        white-space: nowrap;
    }

.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 1.4rem;
}

    .section-kicker::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--lime);
        display: block;
    }

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.section-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    max-width: 480px;
}

.what-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.035);
    border: 1.5px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, background 0.2s;
}

    .feature-row:hover {
        background: rgba(200,242,60,0.05);
        border-color: rgba(200,242,60,0.2);
    }

.feature-icon {
    width: 42px;
    height: 42px;
    background: var(--lime);
    border: 2px solid var(--black);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-brutal);
}

    .feature-icon.orange {
        background: var(--orange);
    }

    .feature-icon.green {
        background: var(--green);
    }

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

/* Right side: Big visual card */
.what-visual {
    position: relative;
}

.big-score-card {
    background: #111;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.score-card-header {
    background: linear-gradient(135deg, #0d1f12, #152b1a);
    padding: 1.8rem 2rem;
    border-bottom: 2px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.score-course {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.3rem;
}

.score-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.04em;
    line-height: 1;
}

.score-badge {
    background: rgba(200,242,60,0.15);
    border: 1.5px solid rgba(200,242,60,0.4);
    color: var(--lime);
    border-radius: 10px;
    padding: 0.4rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.score-holes {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0;
}

.score-hole {
    padding: 0.7rem 0.3rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .score-hole:nth-child(9n) {
        border-right: none;
    }

.sh-num {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.sh-score {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--white);
}

    .sh-score.birdie {
        color: var(--lime);
    }

    .sh-score.eagle {
        color: #fbbf24;
    }

    .sh-score.bogey {
        color: var(--orange);
    }

.sh-owned {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 3px auto 0;
}

    .sh-owned.yes {
        background: var(--lime);
        box-shadow: 0 0 6px rgba(200,242,60,0.7);
    }

    .sh-owned.no {
        background: transparent;
    }

.score-footer {
    padding: 1.4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.02);
}

.score-total {
    display: flex;
    flex-direction: column;
}

.st-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.2rem;
}

.st-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    line-height: 1;
    color: var(--lime);
}

.score-claimed {
    text-align: right;
}

.sc-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.2rem;
}

.sc-val {
    font-family: var(--font-display);
    font-size: 2.8rem;
    line-height: 1;
    color: var(--orange);
}

/* =========================
   HOW IT WORKS
========================= */
.section-how {
    padding: 8rem 0;
    background: #0d0d0d;
    position: relative;
}

    .section-how::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255,255,255,0.06);
    }

.how-header {
    text-align: center;
    margin-bottom: 5rem;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

    .how-steps::before {
        content: '';
        position: absolute;
        top: 52px;
        left: calc(16.66% + 30px);
        right: calc(16.66% + 30px);
        height: 2px;
        background: linear-gradient(90deg, var(--lime), var(--orange));
        z-index: 0;
    }

.step-card {
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
    overflow: hidden;
}

    .step-card:hover {
        transform: translateY(-4px);
        border-color: rgba(200,242,60,0.25);
        background: rgba(200,242,60,0.03);
    }

    .step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 24px 24px 0 0;
        opacity: 0;
        transition: opacity 0.25s;
    }

    .step-card:nth-child(1)::before {
        background: var(--lime);
    }

    .step-card:nth-child(2)::before {
        background: var(--orange);
    }

    .step-card:nth-child(3)::before {
        background: var(--green);
    }

    .step-card:hover::before {
        opacity: 1;
    }

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 3px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-card:nth-child(1) .step-number {
    background: var(--lime);
    color: var(--black);
    box-shadow: var(--shadow-brutal);
}

.step-card:nth-child(2) .step-number {
    background: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-brutal);
}

.step-card:nth-child(3) .step-number {
    background: var(--green);
    color: var(--black);
    box-shadow: var(--shadow-brutal);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* =========================
   APP FEATURES SECTION (dark with accents)
========================= */
.section-features {
    padding: 8rem 0;
    background: var(--black);
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feat-card {
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.2s, border-color 0.2s;
}

    .feat-card:hover {
        transform: translateY(-4px);
        border-color: rgba(200,242,60,0.2);
    }

.feat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
    border: 3px solid var(--black);
    box-shadow: var(--shadow-brutal);
}

    .feat-icon-wrap.lime {
        background: var(--lime);
    }

    .feat-icon-wrap.orange {
        background: var(--orange);
    }

    .feat-icon-wrap.green {
        background: var(--green);
    }

.feat-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
}

.feat-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

/* =========================
   SOCIAL PROOF / WAITLIST STRIP
========================= */
.section-social {
    padding: 7rem 0;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

.social-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.social-left .section-headline {
    font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.social-counter {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.counter-block {
    display: flex;
    flex-direction: column;
}

.counter-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--lime);
}

.counter-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 0.3rem;
}

/* Waitlist form box */
.waitlist-box {
    background: #111;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 2.4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.waitlist-box-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
}

.waitlist-box-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-field {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    width: 100%;
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
}

    .form-field::placeholder {
        color: rgba(255,255,255,0.3);
    }

    .form-field:focus {
        border-color: var(--lime);
        background: rgba(200,242,60,0.04);
    }

.form-select-wrap {
    position: relative;
}

    .form-select-wrap::after {
        content: '↓';
        position: absolute;
        right: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255,255,255,0.4);
        pointer-events: none;
        font-size: 0.9rem;
    }

    .form-select-wrap select.form-field {
        background: rgba(255,255,255,0.05);
        cursor: pointer;
    }

        .form-select-wrap select.form-field option {
            background: #1a1a1a;
            color: var(--white);
        }

.submit-btn {
    width: 100%;
    background: var(--lime);
    color: var(--black);
    border: 3px solid var(--black);
    border-radius: var(--radius-pill);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--shadow-brutal);
    transition: transform 0.15s, box-shadow 0.15s;
    margin-top: 0.5rem;
}

    .submit-btn:hover {
        transform: translate(-2px,-2px);
        box-shadow: 6px 6px 0 var(--black);
    }

.form-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: 0.8rem;
    line-height: 1.5;
}

/* =========================
   FINAL CTA SECTION
========================= */
.section-cta {
    padding: 8rem 0;
    background: var(--lime);
    position: relative;
    overflow: hidden;
}

    .section-cta::before {
        content: 'CLAIM IT';
        font-family: var(--font-display);
        font-size: 22vw;
        color: rgba(0,0,0,0.07);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        white-space: nowrap;
    }

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

    .cta-inner .section-kicker {
        color: rgba(0,0,0,0.5);
    }

        .cta-inner .section-kicker::before {
            background: rgba(0,0,0,0.5);
        }

    .cta-inner .section-headline {
        color: var(--black);
        font-size: clamp(4rem, 8vw, 8.5rem);
        margin-bottom: 1.2rem;
    }

.cta-sub {
    font-size: 1.1rem;
    color: rgba(0,0,0,0.55);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-download-dark {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--black);
    color: var(--lime);
    border: 3px solid var(--black);
    border-radius: var(--radius-pill);
    padding: 0.65rem 0.65rem 0.65rem 1.8rem;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.35);
    transition: transform 0.15s, box-shadow 0.15s;
}

    .btn-download-dark:hover {
        transform: translate(-2px,-2px);
        box-shadow: 7px 7px 0 rgba(0,0,0,0.35);
    }

    .btn-download-dark .btn-icon {
        width: 46px;
        height: 46px;
        background: var(--lime);
        border: 2px solid var(--black);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--black);
        flex-shrink: 0;
    }

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--black);
    border: 3px solid var(--black);
    border-radius: var(--radius-pill);
    padding: 0.85rem 1.8rem;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

    .btn-outline-dark:hover {
        background: rgba(0,0,0,0.08);
    }

/* =========================
   FOOTER
========================= */
footer {
    background: var(--off-black);
    border-top: 3px solid rgba(255,255,255,0.06);
    padding: 3rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .footer-links a {
        font-size: 0.85rem;
        font-weight: 600;
        color: rgba(255,255,255,0.4);
        letter-spacing: 0.04em;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--lime);
        }

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
}

/* =========================
   INNER PAGES (Our Story, How It Works, etc)
========================= */
.page-shell {
    padding-top: 120px;
    min-height: 100vh;
}

.page-hero {
    padding: 5rem 0 4rem;
    max-width: 860px;
}

    .page-hero .section-kicker {
        margin-bottom: 1.2rem;
    }

    .page-hero h1 {
        font-family: var(--font-display);
        font-size: clamp(3rem, 6vw, 6rem);
        line-height: 0.9;
        letter-spacing: 0.03em;
        margin-bottom: 1.5rem;
    }

    .page-hero p {
        font-size: 1.05rem;
        line-height: 1.75;
        color: rgba(255,255,255,0.5);
        max-width: 600px;
    }

.section {
    padding: 4rem 0;
}

/* Inner page cards */
.info-card {
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 2rem;
    transition: border-color 0.2s;
}

    .info-card:hover {
        border-color: rgba(200,242,60,0.25);
    }

.info-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

    .card-grid.three {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-grid.two {
        grid-template-columns: repeat(2, 1fr);
    }

.cta-panel {
    background: var(--lime);
    border: 3px solid var(--black);
    border-radius: 24px;
    padding: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--shadow-brutal-xl);
    flex-wrap: wrap;
}

    .cta-panel h3 {
        font-family: var(--font-display);
        font-size: 2rem;
        color: var(--black);
        letter-spacing: 0.03em;
    }

    .cta-panel p {
        font-size: 0.95rem;
        color: rgba(0,0,0,0.6);
        margin-top: 0.4rem;
        line-height: 1.6;
    }

    .cta-panel .btn-primary-xl {
        background: var(--black);
        color: var(--lime);
        border: 3px solid var(--black);
        box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
    }

        .cta-panel .btn-primary-xl:hover {
            transform: translate(-2px,-2px);
        }

/* Waitlist inner page form */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.4rem;
}

    .waitlist-form input,
    .waitlist-form select {
        background: rgba(255,255,255,0.05);
        border: 2px solid rgba(255,255,255,0.1);
        border-radius: var(--radius-lg);
        padding: 0.9rem 1.2rem;
        font-family: var(--font-body);
        font-size: 0.95rem;
        color: var(--white);
        outline: none;
        transition: border-color 0.2s;
    }

        .waitlist-form input::placeholder {
            color: rgba(255,255,255,0.3);
        }

        .waitlist-form input:focus,
        .waitlist-form select:focus {
            border-color: var(--lime);
        }

    .waitlist-form select {
        appearance: none;
        cursor: pointer;
    }

    .waitlist-form button {
        background: var(--lime);
        color: var(--black);
        border: 3px solid var(--black);
        border-radius: var(--radius-pill);
        padding: 1rem 2rem;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        cursor: pointer;
        box-shadow: var(--shadow-brutal);
        transition: transform 0.15s, box-shadow 0.15s;
    }

        .waitlist-form button:hover {
            transform: translate(-2px,-2px);
            box-shadow: 6px 6px 0 var(--black);
        }

/* General button used in inner pages */
.btn-primary-xl {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--lime);
    color: var(--black);
    border: 3px solid var(--black);
    border-radius: var(--radius-pill);
    padding: 0.85rem 1.6rem;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-brutal);
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

    .btn-primary-xl:hover {
        transform: translate(-2px,-2px);
        box-shadow: 6px 6px 0 var(--black);
    }

/* =========================
   SCROLL REVEAL
========================= */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1.is-visible {
    transition-delay: 0.1s;
}

.reveal-delay-2.is-visible {
    transition-delay: 0.2s;
}

.reveal-delay-3.is-visible {
    transition-delay: 0.3s;
}

/* =========================
   RESPONSIVE
========================= */

/* ── 1920px / large desktop ── */
@media (min-width: 1600px) {
    :root { --container-max: 1600px; }

    .phone-mockup { width: 360px; }
    .phone-screen  { height: 640px; }

    .hero-headline { font-size: 10.5rem; }

    .section-hero { padding-top: 130px; }

    .hero-subline { font-size: 1.12rem; max-width: 520px; }
}

/* ── 1440px ── */
@media (min-width: 1400px) and (max-width: 1599px) {
    .phone-mockup { width: 330px; }
    .phone-screen  { height: 600px; }
}

/* ── Tablet / small desktop ── */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right { display: none; }

    .hero-headline { font-size: clamp(4.5rem, 13vw, 8rem); }

    .what-grid   { grid-template-columns: 1fr; gap: 3rem; }
    .social-inner { grid-template-columns: 1fr; gap: 3rem; }

    .courses-wrapper { grid-template-columns: 1fr; }
    .aus-map-panel   { position: static; }
}

/* ── Mobile nav breakpoint ── */
@media (max-width: 900px) {
    /* Desktop nav hidden; mobile overlay (.mobile-nav-overlay) handles nav */
    .main-nav { display: none; }

    .nav-toggle { display: flex; }

    .how-steps { grid-template-columns: 1fr; }
    .how-steps::before { display: none; }

    .features-grid { grid-template-columns: 1fr 1fr; }

    .card-grid.three { grid-template-columns: 1fr; }
    .card-grid.two   { grid-template-columns: 1fr; }

    .hb-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ── Small tablet / large phone (landscape) ── */
@media (max-width: 640px) {
    .container { width: calc(100% - 32px); }

    .hero-headline { font-size: clamp(3.5rem, 14vw, 5.5rem); }

    .features-grid { grid-template-columns: 1fr; }

    .hero-stats { gap: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

    .section-cta .section-headline { font-size: clamp(3rem, 12vw, 5rem); }
    .cta-actions  { flex-direction: column; align-items: center; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .footer-links { flex-wrap: wrap; gap: 1rem 1.5rem; }

    .social-counter { gap: 1.5rem; }

    .page-hero h1 { font-size: clamp(2.8rem, 10vw, 5rem); }

    .waitlist-box { padding: 1.5rem; }

    .section-hero { padding-top: 90px; padding-bottom: 30px; }
    .page-shell   { padding-top: 100px; }

    .hb-grid { grid-template-columns: repeat(4, 1fr); }

    .course-layout-map { height: 220px; }

    .info-card { padding: 1.25rem; }
}

/* ── iPhone / Android portrait (≤ 480px) ── */
@media (max-width: 480px) {
    .container { width: calc(100% - 24px); }

    .site-header { padding: 0.9rem 0; }

    .brand-wordmark { font-size: 1.6rem; }

    .hero-headline { font-size: clamp(3rem, 15vw, 5rem); }

    .hero-badge { font-size: 0.72rem; padding: 0.35rem 0.8rem; }

    .hero-subline { font-size: 0.9rem; }

    .hero-stat-num   { font-size: 1.6rem; }
    .hero-stat-label { font-size: 0.62rem; }

    .btn-download, .btn-ghost { font-size: 0.85rem; padding: 0.75rem 1.2rem; }

    .section-headline { font-size: clamp(2.5rem, 11vw, 4rem); }

    .section      { padding: 3rem 0; }
    .section-hero { min-height: 100svh; }

    .how-header   { margin-bottom: 2rem; }

    .step-card    { padding: 1.5rem; }

    .feat-card    { padding: 1.25rem; }

    .waitlist-box { padding: 1.25rem; }
    .waitlist-box-title { font-size: 1.4rem; }

    .submit-btn   { font-size: 0.88rem; }

    .footer-links { gap: 0.75rem 1.2rem; }
    .footer-copy  { font-size: 0.72rem; }

    .section-cta  { padding: 4rem 0; }

    .cta-panel { flex-direction: column; gap: 1.25rem; }
    .cta-panel h3 { font-size: 1.6rem; }

    .hb-grid { grid-template-columns: repeat(3, 1fr); gap: 0.3rem; }
    .hb-num  { font-size: 0.88rem; }
}

/* ── Small iPhone (≤ 390px, e.g. iPhone SE / 14) ── */
@media (max-width: 390px) {
    .hero-headline { font-size: clamp(2.8rem, 16vw, 4.5rem); }

    .hero-actions  { gap: 0.6rem; }

    .btn-download, .btn-ghost { width: 100%; justify-content: center; }

    .nav-cta { display: none; } /* hide CTA in mobile nav to save space */

    .brand-wordmark { font-size: 1.4rem; }

    .section-headline { font-size: clamp(2.2rem, 12vw, 3.5rem); }

    .hero-stats { grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
}

/* =========================
   IN-PHONE NOTIFICATION
========================= */
@keyframes ipn-slide-in {
    0%   { transform: translateY(-110%); opacity: 0; }
    65%  { transform: translateY(4px);   opacity: 1; }
    100% { transform: translateY(0);     opacity: 1; }
}

@keyframes ipn-slide-out {
    0%   { transform: translateY(0);      opacity: 1; }
    100% { transform: translateY(-110%);  opacity: 0; }
}

.in-phone-notif {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(16, 8, 4, 0.97);
    border-bottom: 1.5px solid rgba(255,92,26,0.45);
    padding: 9px 12px 9px 12px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    transform: translateY(-110%);
    backdrop-filter: blur(12px);
}

.in-phone-notif.ipn-show {
    animation: ipn-slide-in 0.42s cubic-bezier(0.34, 1.36, 0.64, 1) forwards;
}

.in-phone-notif.ipn-hide {
    animation: ipn-slide-out 0.3s ease-in forwards;
}

.ipn-icon {
    font-size: 1.05rem;
    flex-shrink: 0;
    line-height: 1.1;
    margin-top: 1px;
}

.ipn-texts {
    flex: 1;
    min-width: 0;
}

.ipn-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.25;
}

.ipn-body {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.52);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
    line-height: 1.3;
}

.ipn-time {
    font-size: 0.54rem;
    color: rgba(255,255,255,0.28);
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* =========================
   PHONE VIBRATION
========================= */
@keyframes phone-vibrate {
    0%   { transform: translateX(0)    rotate(0deg); }
    10%  { transform: translateX(-7px) rotate(-1.2deg); }
    20%  { transform: translateX(7px)  rotate(1.2deg); }
    30%  { transform: translateX(-6px) rotate(-1deg); }
    40%  { transform: translateX(6px)  rotate(1deg); }
    50%  { transform: translateX(-4px) rotate(-0.6deg); }
    60%  { transform: translateX(4px)  rotate(0.6deg); }
    70%  { transform: translateX(-2px) rotate(-0.3deg); }
    80%  { transform: translateX(2px)  rotate(0.3deg); }
    90%  { transform: translateX(-1px) rotate(-0.1deg); }
    100% { transform: translateX(0)    rotate(0deg); }
}

.phone-vibrate {
    animation: phone-vibrate 0.52s ease !important;
}

/* Bell shake when notification hits */
@keyframes bell-shake {
    0%   { transform: rotate(0); }
    15%  { transform: rotate(22deg); }
    30%  { transform: rotate(-20deg); }
    45%  { transform: rotate(16deg); }
    60%  { transform: rotate(-12deg); }
    75%  { transform: rotate(8deg); }
    90%  { transform: rotate(-4deg); }
    100% { transform: rotate(0); }
}

.bell-shake {
    display: inline-block;
    animation: bell-shake 0.6s ease;
    transform-origin: 50% 20%;
}

/* =========================
   EXTERNAL FLOAT-TAG ANIMATIONS
========================= */
@keyframes notif-enter {
    0%   { opacity: 0; transform: scale(0.82) translateX(22px) rotate(2deg); }
    60%  { opacity: 1; transform: scale(1.04) translateX(-3px) rotate(-0.5deg); }
    100% { opacity: 1; transform: scale(1) translateX(0) rotate(0deg); }
}

@keyframes notif-exit {
    0%   { opacity: 1; transform: scale(1) translateX(0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.82) translateX(22px) rotate(2deg); }
}

.notif-tag { transition: none; }

.notif-tag.notif-enter { animation: notif-enter 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.notif-tag.notif-exit  { animation: notif-exit  0.28s ease-in forwards; }

/* =========================
   COURSES PAGE
========================= */
.courses-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* ── Australia Map Panel ── */
.aus-map-panel {
    background: #0a140c;
    border: 1.5px solid rgba(200,242,60,0.12);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    position: sticky;
    top: 100px;
}

.aus-map-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.aus-map-count {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.aus-map-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #071009;
    border: 1px solid rgba(255,255,255,0.06);
}

.aus-map {
    display: block;
    width: 100%;
    height: auto;
}

.aus-outline {
    fill: rgba(200,242,60,0.06);
    stroke: rgba(200,242,60,0.32);
    stroke-width: 1.5;
    stroke-linejoin: round;
}

.aus-water {
    fill: #071009;
    stroke: rgba(200,242,60,0.18);
    stroke-width: 1;
}

.aus-tasmania {
    fill: rgba(200,242,60,0.04);
}

.state-label {
    font-family: var(--font-display);
    font-size: 14px;
    fill: rgba(255,255,255,0.12);
    text-anchor: middle;
    pointer-events: none;
    user-select: none;
}

/* Course marker dots */
.course-marker circle:first-child {
    fill: var(--lime);
    transition: r 0.2s, fill 0.2s;
}

.course-pulse {
    fill: none;
    stroke: var(--lime);
    stroke-width: 1.5;
    animation: marker-pulse 2.5s ease-out infinite;
    opacity: 0;
}

@keyframes marker-pulse {
    0%   { r: 8;  opacity: 0.6; }
    100% { r: 18; opacity: 0; }
}

.course-marker:hover circle:first-child,
.course-marker.active circle:first-child {
    fill: var(--orange);
}

.course-marker.active .course-pulse {
    stroke: var(--orange);
}

.aus-map-legend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot.lime { background: var(--lime); }

/* ── Course Panel (right side) ── */
.courses-panel {
    min-height: 500px;
}

.course-list-header {
    margin-bottom: 1.25rem;
}

.course-list-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
}

.course-list-header p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.course-list-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.course-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.course-list-item:hover {
    border-color: rgba(200,242,60,0.3);
    background: rgba(200,242,60,0.04);
    transform: translateX(4px);
}

.cli-name {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.cli-meta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    margin-bottom: 0.5rem;
}

.cli-bar {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    width: 100%;
    overflow: hidden;
}

.cli-bar-fill {
    height: 100%;
    background: var(--lime);
    border-radius: 99px;
}

.cli-right {
    text-align: right;
    flex-shrink: 0;
}

.cli-claimed {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--lime);
    line-height: 1;
}

.cli-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.3);
}

/* ── Course Detail ── */
.course-back-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.course-back-btn:hover { color: var(--white); }

.course-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.course-detail-state {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.3rem;
}

.course-detail-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.course-detail-meta {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.course-claimed-badge {
    background: var(--lime);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    border: 2px solid var(--black);
    box-shadow: var(--shadow-brutal);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Bird's-eye course layout ── */
.course-layout-panel {
    background: #071009;
    border: 1.5px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.course-layout-label {
    padding: 0.75rem 1.2rem 0;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.28);
}

.course-layout-map {
    width: 100%;
    height: 300px;
    padding: 0.5rem 1rem 0.5rem;
}

.course-layout-map svg {
    border-radius: 10px;
}

.course-layout-legend {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem 0.9rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* ── Hole breakdown grid ── */
.hb-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.hb-hole {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 0.4rem 0.2rem;
    text-align: center;
}

.hb-hole.mine  { border-color: rgba(200,242,60,0.25); background: rgba(200,242,60,0.05); }
.hb-hole.rival { border-color: rgba(255,92,26,0.25);  background: rgba(255,92,26,0.05); }

.hb-num {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1;
    color: var(--white);
}

.hb-par {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0.15rem 0;
}

.hb-status {
    font-size: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Map tooltip ── */
.map-tooltip {
    position: fixed;
    display: none;
    background: var(--black);
    color: var(--white);
    border: 1.5px solid rgba(200,242,60,0.4);
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    pointer-events: none;
    z-index: 9999;
    white-space: nowrap;
    box-shadow: var(--shadow-brutal);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .courses-wrapper {
        grid-template-columns: 1fr;
    }

    .aus-map-panel {
        position: static;
    }

    .hb-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 640px) {
    .hb-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .course-layout-map {
        height: 220px;
    }
}
