        :root {
            --font-serif: Georgia, 'Times New Roman', serif;
            --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            --bg-dark: #070707;
            --text-light: #f5f5f5;
            --text-muted: #888888;
            --bg-light: #f9f9f9;
            --text-dark: #111111;
        }


        /* =========================================
           DESIGN SYSTEM: TYPOGRAPHY
           Adjust these font sizes to globally scale the text
           ========================================= */
        h1,
        h2 {
            font-family: var(--font-serif);
            font-weight: 300;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .hero h1 {
            font-size: clamp(3.0rem, 5vw, 4rem);
            line-height: 1.05;
        }

        .globe-content h2 {
            font-size: 4.5rem;
        }

        .waitlist-content h2,
        .contact-container h2,
        .faq-container h2,
        .testimonials-section h2 {
            font-size: 3.5rem;
        }

        .split-content h2 {
            font-size: 2.5rem;
        }

        .about-subheadline {
            font-family: var(--font-sans);
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 2rem;
            color: #fff;
            letter-spacing: -0.5px;
        }

        .num-label {
            font-size: 0.75rem;
        }

        .hero p,
        .globe-content p {
            font-size: 1.1rem;
        }

        .split-content>p {
            font-size: 0.95rem;
        }

        /* ========================================= */

        /* RESET & BASE */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg-dark);
            color: var(--text-light);
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* SKIP LINK */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #fff;
            color: #000;
            padding: 0.5rem 1rem;
            border-radius: 0 0 8px 8px;
            font-size: 0.85rem;
            font-weight: 500;
            z-index: 9999;
            transition: top 0.2s;
        }

        .skip-link:focus {
            top: 0;
        }

        /* BUTTONS */
        .btn-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            color: #000;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
            border: none;
            text-decoration: none;
        }

        .btn-pill:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
        }

        .btn-pill:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        }

        .btn-store {
            display: inline-flex;
            align-items: center;
            background: #fff;
            color: #000;
            padding: 10px 18px;
            border-radius: 18px;
            border: 1.5px solid rgba(255, 255, 255, 0.18);
            text-decoration: none;
            gap: 11px;
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
            cursor: pointer;
        }

        .btn-store:hover {
            background: #e8e8e8;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
        }

        .btn-store:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .btn-store-text {
            display: flex;
            flex-direction: column;
            text-align: left;
            line-height: 1.2;
        }

        .btn-store-label {
            font-size: 0.58rem;
            font-weight: 400;
            opacity: 0.75;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .btn-store-name {
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        .apple-icon {
            width: 22px;
            height: 27px;
            fill: currentColor;
            flex-shrink: 0;
        }

        .play-icon {
            width: 20px;
            height: 22px;
            flex-shrink: 0;
        }

        .webapp-link {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 0.6rem;
            margin-bottom: 0;
        }

        .webapp-link a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.15s ease;
        }

        .webapp-link a:hover {
            color: rgba(255, 255, 255, 0.9);
        }

        .btn-pill-dark {
            background: #111;
            color: #fff;
        }

        .btn-pill-dark:hover {
            background: #333;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
        }

        .btn-pill-dark:active {
            background: #111;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
        }

        .btn-pill-ghost {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-pill-ghost:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .btn-pill-ghost-dark {
            background: transparent;
            color: #111;
            border: 1px solid rgba(0, 0, 0, 0.2);
        }

        .btn-pill-ghost-dark:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .btn-group {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-top: auto;
        }

        /* NAV */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            height: 5.25rem;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            border-bottom: 1px solid transparent;
            transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, border-bottom 0.3s ease;
        }

        nav.nav-scrolled {
            background: rgba(7, 7, 7, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            font-size: 1.2rem;
            letter-spacing: -0.5px;
        }

        .logo-svg {
            height: 20px;
            width: auto;
        }

        .nav-links {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 2.5rem;
            height: 5.25rem;
            padding: 0;
            font-size: 0.85rem;
            color: #aaa;
            z-index: 1001;
            background: transparent;
            pointer-events: auto;
            opacity: 1;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-links a[aria-current="page"] {
            color: #fff;
            font-weight: 500;
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-thickness: 1px;
        }

        .nav-right {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-right > .btn-pill {
            min-width: 10rem;
        }

        /* HAMBURGER */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .hero-bg {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            width: 100%;
            z-index: 0;
        }

        .hero-bg picture,
        .hero-bg img {
            width: 100%;
            height: 100%;
        }

        .hero-bg picture {
            display: block;
        }

        .hero-bg img {
            object-fit: cover;
            object-position: center right;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--bg-dark) 10%, transparent 100%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 600px;
        }

        .hero h1 {
            margin-bottom: 1.5rem;
        }

        .hero-app-tags {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.25rem;
        }

        .hero-tag {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.75);
        }

        .hero p {
            font-size: 1.05rem;
            color: #aaa;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            font-weight: 300;
            max-width: 480px;
        }

        /* SPLIT SECTIONS (DARK) */
        .split-section {
            display: flex;
            align-items: stretch;
            padding: 8rem 5%;
            gap: 6rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .split-hero {
            min-height: 100vh;
            padding-top: 12rem;
            align-items: center;
        }

        @media (min-width: 1025px) {
            .split-reverse {
                flex-direction: row-reverse;
            }
        }

        /* IMPROVED FEATURES GRID */
        .features-grid-v2 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            width: 100%;
            margin-top: 3rem;
        }

        .feature-card {
            position: relative;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            height: 100%;
            /* Ensure all cards in a row have same height */
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        /* Subtle color glow on hover */
        .feature-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            background: radial-gradient(circle at top right, rgba(255, 184, 0, 0.1), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: -1;
        }

        .feature-card:hover::after {
            opacity: 1;
        }

        .feature-card .feature-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 500;
        }

        .feature-card .feature-title {
            font-size: 1.15rem;
            color: #fff;
            margin: 0;
            line-height: 1.4;
            font-weight: 400;
        }

        .feature-card .feature-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            margin: 0.5rem 0 0 0;
            line-height: 1.5;
        }

        .split-content {
            flex: 1;
            max-width: 450px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            padding: 4rem 0;
        }

        .split-image {
            flex: 1.2;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: #111;
            aspect-ratio: 16 / 9;
        }

        .split-image picture,
        .split-image img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .split-image picture {
            display: block;
        }

        .split-image img {
            object-fit: cover;
            object-position: center;
        }

        .num-label {
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
            margin-bottom: 1.5rem;
            display: block;
        }

        .num-label span {
            color: #fff;
            font-weight: 600;
            margin-left: 0.5rem;
        }

        .split-content h2 {
            margin-bottom: 1.5rem;
        }

        .split-content>p {
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            font-weight: 300;
            font-size: 0.95rem;
        }

        /* STATS ACCENT (FEATURES LIST) */
        .features-list {
            list-style: none;
            margin-bottom: 3rem;
            padding: 0;
        }

        .features-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 1rem;
            color: #fff;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .features-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #666;
            font-size: 1.2rem;
            line-height: 1;
        }

        /* TESTIMONIALS SECTION */
        .testimonials-section {
            padding: 8rem 5%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background: var(--bg-dark);
            text-align: center;
        }

        .testimonials-section h2 {
            margin-bottom: 4rem;
        }

        .testimonials-grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 1.5rem;
            max-width: 100vw;
            padding: 1rem 5vw 4rem 5%;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .testimonials-grid::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            flex: 0 0 85%;
            max-width: 800px;
            scroll-snap-align: center;
            background: #111;
            border-radius: 32px;
            padding: 3.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: transform 0.3s, background 0.3s;
        }

        @media (min-width: 768px) {
            .testimonial-card {
                flex: 0 0 65%;
                padding: 4rem;
            }
        }

        @media (min-width: 1200px) {
            .testimonial-card {
                flex: 0 0 55%;
            }
        }

        .testimonial-card:hover {
            background: #151515;
            transform: translateY(-5px);
        }

        .testimonial-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex-grow: 1;
            gap: 1.5rem;
        }

        .testimonial-stars {
            color: #FFB800;
            font-size: 1.5rem;
            letter-spacing: 4px;
        }

        .testimonial-text {
            color: #fff;
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            line-height: 1.35;
            font-family: var(--font-sans);
            font-weight: 400;
            letter-spacing: -0.02em;
            margin: 0;
        }

        .testimonial-author-block {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
        }

        .testimonial-author-info {
            display: flex;
            flex-direction: column;
            text-align: right;
        }

        .testimonial-author-name {
            font-size: 1.1rem;
            color: #fff;
            font-weight: 500;
        }

        .testimonial-author-role {
            font-size: 0.95rem;
            color: #888;
            margin-top: 0.2rem;
        }

        /* GLOBE / OYSTER SECTION (ABOUT SCOZO) */
        .globe-section {
            position: relative;
            min-height: 100vh;
            padding: 10vw 5%;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background: url('globe-bg.jpg') center center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .globe-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background: rgba(0, 0, 0, 0.55);
        }

        .globe-loop-section {
            min-height: auto;
            background: none !important;
            padding: 0 !important;
            display: block !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .globe-loop-sticky {
            position: relative;
            min-height: 80vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #050505;
        }

        .globe-loop-sticky.bg-visible {
            background: url('stay-in-control.webp') center center/cover no-repeat;
        }

        @media (min-width: 769px) {
            .globe-loop-sticky.bg-visible {
                background-attachment: fixed;
            }
        }

        .globe-loop-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .globe-content {
            position: relative;
            z-index: 10;
            max-width: 700px;
            margin: 0 auto;
        }

        .globe-content h2 {
            margin-bottom: 1.5rem;
            color: #333;
        }

        .globe-content p.globe-heading {
            font-family: var(--font-serif);
            font-size: 4.5rem;
            font-weight: 400;
            line-height: 1.05;
            color: #fff;
            margin: 0;
            letter-spacing: 0;
        }

        .globe-content p.globe-heading:last-of-type {
            margin-bottom: 2rem;
        }

        .globe-content p {
            color: #ccc;
            margin-bottom: 2.5rem;
            font-weight: 300;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* LIGHT THEME SECTIONS */
        .light-theme {
            background: var(--bg-light);
            color: var(--text-dark);
        }

        /* SCREENSHOTS CAROUSEL (DARK MARQUEE) */
        .screenshots-section.dark {
            padding: 10rem 0;
            background: #000;
            color: #fff;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            overflow: hidden;
        }

        .screenshots-section.dark .screenshots-header {
            padding: 0 5%;
            margin-bottom: 5rem;
            max-width: 900px;
        }

        .screenshots-section.dark .screenshots-header h2 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            color: #fff;
        }

        .screenshots-section.dark .screenshots-header p {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
        }

        .screenshots-marquee-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            display: flex;
        }

        .screenshots-marquee {
            display: flex;
            gap: 2.5rem;
            padding: 2rem 0;
            animation: marquee 40s linear infinite;
            width: max-content;
        }

        .screenshots-marquee:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 1.25rem)); }
        }

        .screenshot-item {
            flex: 0 0 280px;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            border: 8px solid #111;
            background: #000;
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .screenshot-item img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 22px;
        }

        /* WAITLIST (BOTTOM CTA) */
        .waitlist-section {
            padding: 8rem 5%;
            border-bottom: 1px solid #ebebeb;
        }

        .waitlist-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 6rem;
        }

        .waitlist-content {
            flex: 1;
            max-width: 450px;
        }

        .waitlist-content h2 {
            margin-bottom: 1rem;
        }

        .waitlist-content p {
            color: #666;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .waitlist-image {
            flex: 1.2;
            background: #eaeaea;
            border-radius: 12px;
            height: 450px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
        }

        .waitlist-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* FAQ (LIGHT) */
        .faq-section {
            padding: 8rem 5%;
            border-bottom: 1px solid #ebebeb;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-container h2 {
            text-align: center;
            margin-bottom: 5rem;
        }

        .faq-group-title {
            font-family: var(--font-sans);
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            color: #111;
        }

        .faq-item {
            border-bottom: 1px solid #ddd;
            padding: 1.5rem 0;
            border-top: none;
        }

        .faq-item:first-of-type {
            border-top: 1px solid #ddd;
        }

        .faq-item summary {
            font-family: var(--font-sans);
            font-size: 1.05rem;
            font-weight: 500;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #111;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-family: var(--font-sans);
            font-size: 1.5rem;
            color: #888;
            font-weight: 300;
            transition: transform 0.2s;
        }

        .faq-item[open] summary::after {
            content: '−';
            transform: rotate(180deg);
        }

        .faq-item p {
            margin-top: 1rem;
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
            font-weight: 400;
            padding-right: 2rem;
        }

        /* CONTACT (LIGHT) */
        .contact-section {
            padding: 8rem 5%;
            border-bottom: 1px solid #ebebeb;
        }

        .contact-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-container h2 {
            margin-bottom: 1rem;
        }

        .contact-container p {
            color: #666;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            text-align: left;
        }

        .contact-form label {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #666;
            margin-top: 0.65rem;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 1rem 1.5rem;
            border: 1px solid #ddd;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            font-family: var(--font-sans);
            transition: border-color 0.2s;
            background: #fff;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #111;
        }

        .contact-form button {
            padding: 1rem;
            border-radius: 50px;
            font-size: 1rem;
            margin-top: 1rem;
        }

        /* FOOTER (LIGHT) */
        footer {
            background: var(--bg-light);
            padding: 4rem 5% 2rem;
            font-size: 0.85rem;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 4rem;
        }

        .footer-logo {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            font-weight: 400;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            letter-spacing: -0.5px;
        }

        .footer-logo-box {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-tagline {
            font-family: var(--font-sans);
            font-size: 0.85rem;
            color: #888;
            font-weight: 400;
            letter-spacing: 0;
        }

        .footer-cols {
            display: flex;
            gap: 6rem;
            flex-wrap: wrap;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-col-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: #999;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .footer-col a {
            color: #444;
            transition: color 0.2s;
            text-decoration: none;
        }

        .footer-col a:hover {
            color: #000;
        }

        .footer-bottom {
            width: 100%;
            border-top: 1px solid #e0e0e0;
            margin-top: 4rem;
            padding-top: 2rem;
            color: #999;
            font-size: 0.75rem;
            display: flex;
            justify-content: space-between;
        }

        /* RESPONSIVE — 1024px */
        @media (max-width: 1024px) {
            .split-section {
                flex-direction: column;
                text-align: center;
                padding: 6rem 8%;
            }

            .split-content {
                max-width: 100%;
                padding-right: 0;
                margin-bottom: 3rem;
            }

            .btn-group {
                justify-content: center;
            }

            /* Keep hero CTAs left-aligned at mid viewports */
            .hero-content .btn-group,
            .hero-cta-group .btn-group {
                justify-content: flex-start;
            }

            .features-list li {
                text-align: left;
                max-width: 300px;
                margin: 0 auto 1rem;
            }

            .features-list li::before {
                left: -1.5rem;
            }

            .waitlist-container {
                flex-direction: column;
                text-align: center;
            }

            .globe-content h2 {
                font-size: clamp(2.4rem, 7vw, 3.5rem);
            }
        }

        /* RESPONSIVE — 768px (mobile) */
        @media (max-width: 768px) {
            .hide-mobile {
                display: none !important;
            }

            .split-hero {
                min-height: auto;
                padding-top: 10rem;
                padding-bottom: 5rem;
            }

            .split-section {
                padding: 4.5rem 6%;
                gap: 2.5rem;
            }

            .split-content h2 {
                font-size: 2.4rem;
                line-height: 1.1;
                margin-bottom: 1.5rem;
                letter-spacing: -0.03em;
            }

            .split-content p {
                font-size: 1.05rem;
                line-height: 1.5;
            }

            .split-image {
                width: 100%;
                margin: 0;
                aspect-ratio: 16 / 10;
                max-height: 320px;
                order: 2;
            }

            .features-grid-v2 {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                margin-top: 2.5rem;
            }

            .feature-card {
                padding: 2rem 1.75rem;
                border-radius: 18px;
            }

            .feature-card .feature-title {
                font-size: 1.1rem;
            }

            .feature-card .feature-desc {
                font-size: 0.9rem;
            }

            /* Adjust span cards to be 1 col on mobile */
            .feature-card[style*="grid-column: span 2"] {
                grid-column: span 1 !important;
            }

            .globe-section {
                background-attachment: scroll;
                padding: 20vw 8%;
                min-height: auto;
            }

            .globe-dynamic-island {
                background-image: url('../assets/scozo-footy-bg-v2-mob.jpg') !important;
                min-height: 100vh !important;
                align-items: flex-start;
                padding-top: 8rem;
            }

            .globe-dynamic-island .globe-content {
                text-align: center;
                width: 100%;
            }

            .globe-loop-section {
                min-height: auto;
            }

            .globe-loop-sticky {
                min-height: 72vh;
            }

            .globe-content {
                padding: 0 6%;
            }

            .globe-content h2 {
                font-size: 2.6rem;
                line-height: 1.1;
            }

            .globe-content p.globe-heading {
                font-size: 2.6rem;
                line-height: 1.1;
            }

            .globe-content p {
                font-size: 1.05rem;
                line-height: 1.4;
            }

            /* FAQ and other titles */
            .faq-container h2,
            .testimonials-section h2,
            .waitlist-content h2,
            .contact-container h2 {
                font-size: 2.8rem;
                line-height: 1.05;
                margin-bottom: 2rem;
            }

            .faq-section {
                padding: 4rem 5% 6rem;
            }

            /* Left-align all sections on mobile */
            .split-section,
            .waitlist-container,
            .globe-section,
            .faq-container h2,
            .contact-container {
                text-align: left;
            }

            /* Stack buttons, full width */
            .btn-group {
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 0.75rem;
                margin-top: 1.5rem;
            }

            .btn-group a:not(.btn-store),
            .btn-group button {
                text-align: center;
                width: 100%;
                padding: 1.2rem 2rem;
            }

            /* Store badges stay side-by-side or compact stack */
            .btn-group:has(.btn-store) {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 0.75rem;
                justify-content: flex-start;
                align-items: center;
            }

            .btn-group .btn-store {
                flex: 0 1 auto;
                min-width: 140px;
                padding: 0.4rem 1rem;
                border-radius: 10px;
            }

            .btn-store-label {
                font-size: 0.65rem;
            }

            .btn-store-name {
                font-size: 0.9rem;
            }

            .hero-cta-group {
                --mobile-cta-gap: 0.75rem;
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background: rgba(7, 7, 7, 0.85);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                padding: 0.8rem 5% calc(0.8rem + env(safe-area-inset-bottom));
                z-index: 1001;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: var(--mobile-cta-gap);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
            }

            .hero-cta-group .btn-group {
                order: 2;
                flex-direction: row !important;
                flex-wrap: nowrap !important;
                justify-content: center !important;
                align-items: center !important;
                width: 100% !important;
                gap: 0.5rem !important;
                margin-top: 0.3rem !important;
            }



            .hero-cta-group .btn-store {
                flex: 1 !important;
                min-width: 0 !important;
                padding: 0.45rem 0.75rem !important;
            }

            .hero-cta-group .webapp-link {
                order: 3;
                margin-top: 0;
                font-size: 0.72rem;
            }

            .hero {
                padding-bottom: 0 !important;
            }

            .features-list {
                margin: 1.5rem 0;
                padding-left: 0;
                margin-left: 0;
            }

            .features-list li {
                padding-left: 1rem;
                margin-left: 0;
                font-size: 1rem;
                margin-bottom: 0.75rem;
                text-align: left;
            }

            .features-list li::before {
                left: 0;
                font-size: 1rem;
                color: rgba(255, 255, 255, 0.5);
            }

            .hero-bg {
                background-image: none;
            }

            .hero-bg img {
                object-position: center top;
            }

            .hero-bg::after {
                background: rgba(0, 0, 0, 0.78);
            }

            .hamburger {
                display: flex;
                margin-left: auto;
            }

            .hero {
                display: flex !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                padding: 0 1.5rem !important;
                padding-top: 7rem !important;
                min-height: 100svh;
                justify-content: center !important;
            }

            .hero-content {
                padding: 0 !important;
                text-align: left !important;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start !important;
            }

            .hero h1 {
                font-size: 2.2rem !important;
                margin-top: 0.35rem;
                margin-bottom: 0.75rem;
                line-height: 1.1;
                text-align: left !important;
            }

            .btn-pill {
                width: auto !important;
                padding: 0.8rem 2rem !important;
                font-size: 0.95rem !important;
                max-width: none !important;
                margin: 0 !important;
            }

            .hero-app-tags {
                margin-bottom: 0.5rem;
                width: 100%;
                display: flex;
                justify-content: flex-start;
            }

            .hero p {
                margin-bottom: 1.25rem !important;
            }

            .hero-content .btn-group {
                justify-content: flex-start !important;
                align-items: flex-start !important;
                width: 100% !important;
                margin-top: 1.25rem !important;
            }

            .hero-content .hero-cta-group .btn-group {
                margin-top: 0.3rem !important;
            }

            .webapp-link {
                font-size: 0.72rem !important;
            }

            .logo-svg {
                height: 18px !important;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100% !important;
                height: 100dvh !important;
                background: rgba(7, 7, 7, 0.99);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 10rem 10% 10%;
                gap: 2.2rem;
                font-size: 1.6rem;
                z-index: 999;
                opacity: 0;
                pointer-events: none;
                transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                transform: translateX(30px);
            }

            .nav-links.open {
                opacity: 1;
                pointer-events: auto;
                transform: translateX(0);
            }

            body.nav-open .hero-cta-group {
                display: none !important;
            }

            body.nav-open nav {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                background: transparent !important;
                border-bottom-color: transparent !important;
            }

            .nav-links a {
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                width: 100%;
                padding-bottom: 0.75rem;
                font-family: var(--font-serif);
                font-style: italic;
            }

            .screenshots-section.dark {
                padding: 6rem 0;
            }

            .screenshots-section.dark .screenshots-header h2 {
                font-size: 2.2rem !important;
            }

            .screenshots-section.dark .screenshots-header p {
                font-size: 1rem !important;
            }

            .screenshots-marquee {
                gap: 1.5rem;
                animation-duration: 25s;
            }

            @keyframes marquee {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-50% - 0.75rem)); }
            }

            .screenshot-item {
                flex: 0 0 200px;
                border-width: 6px;
            }

            .nav-right>.btn-pill {
                display: none;
            }

            .waitlist-image {
                height: 300px;
                order: 2;
            }

            .footer-top {
                flex-direction: column;
                gap: 4rem;
            }

            .footer-cols {
                flex-direction: column;
                gap: 3rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        /* RESPONSIVE — 480px */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .split-content h2 {
                font-size: 2.2rem;
            }

            .split-section {
                padding: 4rem 6%;
            }
        }

        /* INSIGHTS SECTION */
        .insights-section {
            position: relative;
            height: 300vh;
            /* Increased for longer scroll path from bottom to top */
            background: #000;
        }

        .insights-sticky-wrapper {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            z-index: 1;
        }

        .insights-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: none;
            background-size: cover;
            background-position: center;
            opacity: 0.6;
            filter: brightness(0.6);
        }

        .insights-bg.bg-visible {
            background-image: url('scozo-bg.jpg');
        }

        .insights-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, #000, transparent 20%, transparent 80%, #000);
        }

        .insights-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1000px;
            padding: 0 5%;
        }

        .insights-content h2 {
            font-size: clamp(2.5rem, 6vw, 4.2rem);
            line-height: 1.1;
            margin-bottom: 2.5rem;
            letter-spacing: -1.5px;
            color: #fff;
            font-family: "Playfair Display", serif;
            font-weight: 300;
        }

        .insight-cards-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .insight-card {
            position: absolute;
            width: 280px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.2rem;
            color: #fff;
            pointer-events: auto;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .insight-card:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .insight-card .insight-value {
            font-size: 2rem;
            font-family: var(--font-sans);
            font-weight: 500;
            margin-bottom: 0.25rem;
            display: block;
            letter-spacing: -0.02em;
        }

        .insight-card .insight-label {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.3;
        }

        .insight-card .insight-icon {
            margin-bottom: 1.5rem;
            opacity: 0.7;
        }

        /* Distribution of cards - Starting from bottom of viewport */
        .card-2 {
            top: 100vh;
            left: 50%;
            transform: translateX(-50%);
        }

        .card-1 {
            top: 155vh;
            left: 8vw;
        }

        .card-3 {
            top: 175vh;
            right: 8vw;
        }

        @media (max-width: 768px) {
            .insights-section {
                height: 300vh;
                padding: 0;
            }

            .insights-sticky-wrapper {
                position: sticky;
                top: 0;
                height: 100vh;
                padding: 0;
                display: flex;
            }

            .insights-bg {
                opacity: 0.8;
                filter: brightness(0.5);
            }

            .insights-bg.bg-visible {
                background-image: url('scozo-bg-mob.jpg');
            }

            .insight-cards-layer {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                display: block;
                z-index: 2;
                padding: 0;
            }

            .insight-card {
                position: absolute;
                width: 220px;
                padding: 1.5rem;
                pointer-events: auto;
            }

            .insight-card .insight-value {
                font-size: 2.5rem;
            }

            .insight-card .insight-label {
                font-size: 1.15rem;
            }

            .insight-card .insight-icon {
                margin-bottom: 1rem;
            }

            .insight-card .insight-icon svg {
                width: 24px;
                height: 24px;
            }

            /* Mobile specific distribution - Starting from bottom */
            .card-2 {
                top: 100vh;
                left: 50%;
                transform: translateX(-50%);
            }

            .card-1 {
                top: 150vh;
                left: 5%;
            }

            .card-3 {
                top: 180vh;
                right: 5%;
                left: auto;
            }

            .insights-content h2 {
                font-size: 2.2rem;
                letter-spacing: -1.5px;
                padding: 0 5%;
            }
        }

        /* Sport Specific Overrides */
        .insights-section.is-footy .insights-bg {
            background-image: url('scozo-footy-bg.jpg');
        }

        @media (max-width: 768px) {
            .insights-section.is-footy .insights-bg {
                background-image: url('scozo-footy-bg-mobile.jpg');
            }
        }

        /* REDUCED MOTION */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
            }

            html {
                scroll-behavior: auto; /* end of reduced-motion */
            }
        }

        /* TRUST BAR */
        .hero-trust-bar {
            margin-top: 1.4rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.6rem;
        }

        .hero-trust-rating {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .hero-trust-stars {
            color: #f4c430;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }

        .hero-trust-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.45);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .hero-trust-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            justify-content: flex-start;
        }

        @media (max-width: 768px) {
            .hero-trust-bar {
                order: 1;
                align-items: center;
                margin-top: 0;
                margin-bottom: 0;
                gap: 0;
            }
            .hero-trust-rating {
                display: none;
            }
            .hero-trust-pills {
                justify-content: center;
                gap: 0.35rem;
            }
            .hero-trust-pill {
                font-size: 0.68rem;
                padding: 0.22rem 0.62rem;
            }
        }

        .hero-trust-pill {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            padding: 0.25rem 0.75rem;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        /* HERO REVIEW STRIP */
        .hero-review-strip {
            background: #111;
            padding: 8rem 5%;
            display: flex;
            justify-content: center;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .hero-review-card {
            max-width: 800px;
            width: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .hero-review-stars {
            color: #FFB800;
            font-size: 1.5rem;
            letter-spacing: 4px;
        }

        .hero-review-text {
            color: #fff;
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            line-height: 1.35;
            font-family: var(--font-sans);
            font-weight: 400;
            letter-spacing: -0.02em;
            margin: 0;
        }

        .hero-review-author {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.35);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
        }

        .hero-review-author::before,
        .hero-review-author::after {
            content: '';
            display: inline-block;
            width: 2rem;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
        }
