        :root {
            --bg-deep: #070B14;
            --bg-dark: #0B1120;
            --bg-card: #111827;
            --bg-card-hover: #1a2332;
            --ice-primary: #4FC3F7;
            --ice-bright: #81D4FA;
            --ice-deep: #0288D1;
            --ice-glow: rgba(79, 195, 247, 0.15);
            --ice-glow-strong: rgba(79, 195, 247, 0.3);
            --chrome: #B0BEC5;
            --chrome-light: #CFD8DC;
            --red: #ED2224;
            --red-dark: #c91c1e;
            --white: #FFFFFF;
            --gray-100: #F1F5F9;
            --gray-300: #E8ECF1;
            --gray-400: #C5CDD8;
            --gray-500: #A0AABB;
            --gray-700: #334155;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background: var(--bg-deep);
            color: var(--gray-300);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ============ GLOBAL ============ */
        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--white);
            line-height: 1.15;
        }

        h2 {
            font-size: clamp(2.25rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
        }

        h3 {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            margin-bottom: 0.5rem;
        }

        p { font-size: 1.0625rem; line-height: 1.7; }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-label {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.8125rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--ice-primary);
            margin-bottom: 0.75rem;
        }

        .section-subtitle {
            font-size: 1.1875rem;
            color: var(--gray-400);
            max-width: 640px;
        }

        .ice-text {
            background: linear-gradient(135deg, var(--ice-bright), var(--ice-primary), var(--ice-deep));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 18px 44px;
            background: linear-gradient(135deg, var(--ice-primary), var(--ice-deep));
            color: var(--white);
            font-family: var(--font-body);
            font-size: 0.9375rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 24px rgba(2, 136, 209, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(2, 136, 209, 0.5);
        }

        .hero .btn-primary {
            animation: btnGlow 3s ease-in-out infinite;
        }

        @keyframes btnGlow {
            0%, 100% { box-shadow: 0 4px 24px rgba(2, 136, 209, 0.35); }
            50% { box-shadow: 0 4px 36px rgba(79, 195, 247, 0.5); }
        }

        .hero .btn-primary:hover {
            animation: none;
            box-shadow: 0 8px 32px rgba(2, 136, 209, 0.5);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 40px;
            background: transparent;
            color: var(--ice-primary);
            font-family: var(--font-body);
            font-size: 0.9375rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid var(--ice-primary);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: var(--ice-glow);
            border-color: var(--ice-bright);
        }

        /* ============ NAV ============ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(7, 11, 20, 0.92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(79, 195, 247, 0.1);
            padding: 12px 0;
        }

        .nav-inner {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo img {
            height: 72px;
            width: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-400);
            text-decoration: none;
            letter-spacing: 0.03em;
            transition: color 0.2s ease;
        }

        .nav-links a:hover { color: var(--ice-primary); }

        .nav-cta {
            padding: 12px 32px !important;
            font-size: 0.9375rem !important;
            color: var(--bg-deep) !important;
        }

        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ============ HERO ============ */
        .hero {
            min-height: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 140px 24px 80px;
            position: relative;
            overflow: hidden;
            background: url('images/heroes/hero-bg.png') center top / cover no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                180deg,
                rgba(7, 11, 20, 0.6) 0%,
                rgba(7, 11, 20, 0.5) 40%,
                rgba(7, 11, 20, 0.7) 85%,
                rgba(7, 11, 20, 0.8) 100%
            );
            pointer-events: none;
        }

        .hero::after {
            display: none;
        }

        .hero-logo {
            width: 140px;
            margin: 0 auto 28px;
            animation: fadeInDown 1s ease;
        }

        .hero-logo img {
            width: 100%;
            height: auto;
        }

        .hero h1 {
            font-size: clamp(2.75rem, 7vw, 4.75rem);
            max-width: 800px;
            margin: 0 auto 20px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-sub {
            font-size: 1.1875rem;
            color: var(--gray-300);
            max-width: 560px;
            margin: 0 auto 16px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-cobrand {
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-top: 32px;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .hero-price {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-400);
            margin-bottom: 12px;
            animation: fadeInUp 1s ease 0.45s both;
        }

        .hero-price span {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
        }

        .hero-cobrand span { color: var(--ice-primary); }

        .hero-ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 48px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--ice-primary);
        }

        .hero-stat-label {
            font-size: 0.8125rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* ============ WHAT IS IT ============ */
        .what-is {
            background: #F5F7FA;
        }

        .what-is h2 { color: #0B1120; }
        .what-is .section-label { color: var(--ice-deep); }

        .what-is-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .what-is-content { max-width: 520px; }

        .what-is-content p {
            margin-bottom: 1rem;
            color: #374151;
        }

        .what-is-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .video-embed {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .video-embed iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .what-is-outcomes {
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border-radius: 12px;
            padding: 28px;
        }

        .what-is-outcomes h3 {
            font-size: 1.0625rem;
            margin-bottom: 16px;
            color: var(--ice-deep);
        }

        .what-is-outcomes ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .what-is-outcomes li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9375rem;
            color: #374151;
        }

        .what-is-outcomes li .icon {
            color: var(--ice-deep);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* ============ HOW IT WORKS ============ */
        .how-it-works {
            background: #FFFFFF;
        }

        .how-it-works h2 { color: #0B1120; }
        .how-it-works .section-label { color: var(--ice-deep); }
        .how-it-works .section-subtitle { color: #6B7280; }

        .steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            margin-top: 56px;
        }

        .step {
            background: #F5F7FA;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .step:hover {
            border-color: rgba(2, 136, 209, 0.2);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .step-number {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--ice-deep), #0277BD);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.4;
            line-height: 1;
            margin-bottom: 16px;
        }

        .step h3 {
            font-size: 1.0625rem;
            margin-bottom: 10px;
            color: #0B1120;
        }

        .step p {
            font-size: 0.875rem;
            color: #6B7280;
            line-height: 1.6;
        }

        .step-date {
            display: inline-block;
            margin-top: 14px;
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 700;
            color: #0277BD;
            background: rgba(2, 136, 209, 0.1);
            padding: 8px 18px;
            border-radius: 20px;
            letter-spacing: 0.03em;
        }

        .step-connector {
            display: none;
        }

        /* ============ POSITIONING GRAPHIC ============ */
        .positioning {
            background: #F5F7FA;
        }

        .positioning h2 { color: #0B1120; }
        .positioning .section-label { color: var(--ice-deep); }
        .positioning .ice-text {
            background: linear-gradient(135deg, #0288D1, #01579B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .positioning-inner {
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }

        .positioning-inner p {
            margin-bottom: 1.25rem;
            color: #374151;
        }

        .graphic-examples {
            text-align: center;
            margin: 40px 0;
        }

        .graphic-examples img {
            max-width: 100%;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .graphic-examples-caption {
            font-family: var(--font-display);
            font-size: 0.9375rem;
            font-weight: 600;
            color: #6B7280;
            margin-top: 16px;
            letter-spacing: 0.04em;
        }

        .graphic-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        .graphic-feature {
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border-radius: 12px;
            padding: 28px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .graphic-feature:hover {
            border-color: rgba(2, 136, 209, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .graphic-feature .gf-icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .graphic-feature h4 {
            font-size: 0.9375rem;
            margin-bottom: 6px;
            color: #0B1120;
        }

        .graphic-feature p {
            font-size: 0.8125rem;
            color: #6B7280;
        }

        /* ============ WHY COMPETE ============ */
        .why-compete {
            background: #FFFFFF;
        }

        .why-compete h2 { color: #0B1120; }
        .why-compete .section-label { color: var(--ice-deep); }
        .why-compete .section-subtitle { color: #6B7280; }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .why-card {
            background: #F5F7FA;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            padding: 36px;
            transition: all 0.3s ease;
        }

        .why-card:hover {
            border-color: rgba(2, 136, 209, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .why-card h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            color: #0B1120;
        }

        .why-card h3 .wc-icon {
            font-size: 1.5rem;
        }

        .why-card p {
            font-size: 0.9375rem;
            color: #6B7280;
        }

        .winning-example {
            background: #F5F7FA;
            padding: 60px 0;
        }

        .winning-example-inner {
            text-align: center;
        }

        .winning-example-inner img {
            max-width: 560px;
            width: 100%;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .winning-example-caption {
            font-family: var(--font-display);
            font-size: 0.9375rem;
            font-weight: 600;
            color: #6B7280;
            margin-top: 12px;
        }

        /* ============ INLINE CTAs ============ */
        .inline-cta {
            text-align: center;
            margin-top: 48px;
        }

        .inline-cta-link {
            display: block;
            margin-top: 12px;
            font-size: 0.9375rem;
            color: var(--ice-deep);
            text-decoration: none;
        }

        .inline-cta-link:hover { text-decoration: underline; }

        .inline-cta-dark .inline-cta-link {
            color: var(--ice-primary);
        }

        /* ============ WHO SHOULD COMPETE ============ */
        .who-compete {
            background: #F5F7FA;
        }

        .who-compete h2 { color: #0B1120; }
        .who-compete .section-label { color: var(--ice-deep); }
        .who-compete .section-subtitle { color: #6B7280; }

        .who-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        .who-card {
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .who-card:hover {
            border-color: rgba(2, 136, 209, 0.2);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .who-card .who-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .who-card h3 {
            font-size: 1rem;
            margin-bottom: 8px;
            color: #0B1120;
        }

        .who-card p {
            font-size: 0.8125rem;
            color: #6B7280;
        }

        /* ============ STAGE LIGHT EFFECTS ============ */
        .stage-glow {
            position: relative;
            overflow: hidden;
        }

        .stage-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/heroes/hero-bg.png') center center / cover no-repeat;
            opacity: 0.12;
            pointer-events: none;
        }

        .stage-glow::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 20% 0%, rgba(79, 195, 247, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 0%, rgba(79, 195, 247, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 100%, rgba(7, 11, 20, 0.9) 0%, transparent 60%);
            pointer-events: none;
        }

        .stage-glow > * { position: relative; z-index: 1; }

        /* Flare accent for special sections */
        .flare-accent {
            position: relative;
            overflow: hidden;
        }

        .flare-accent::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 500px;
            background:
                radial-gradient(ellipse at 30% 40%, rgba(129, 212, 250, 0.07) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 60%, rgba(2, 136, 209, 0.04) 0%, transparent 40%);
            pointer-events: none;
        }

        .flare-accent > * { position: relative; z-index: 1; }

        /* ============ PRIZES ============ */
        .prizes { background: var(--bg-deep); }

        .prize-highlight {
            text-align: center;
            margin-top: 56px;
            margin-bottom: 0;
        }

        .prize-value {
            font-family: var(--font-display);
            font-size: clamp(4rem, 9vw, 7rem);
            font-weight: 700;
            background: linear-gradient(
                135deg,
                var(--ice-bright) 0%,
                var(--ice-primary) 40%,
                var(--white) 50%,
                var(--ice-primary) 60%,
                var(--ice-deep) 100%
            );
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            animation: shimmer 4s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .prize-value-sub {
            font-family: var(--font-display);
            font-size: 1.25rem;
            color: var(--gray-400);
            font-weight: 600;
        }

        .prize-tiers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .prize-tier {
            background: var(--bg-card);
            border: 1px solid rgba(79, 195, 247, 0.08);
            border-radius: 16px;
            padding: 36px 28px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .prize-tier.featured {
            border-color: var(--ice-primary);
            box-shadow:
                0 0 40px rgba(79, 195, 247, 0.12),
                0 0 80px rgba(79, 195, 247, 0.05);
            position: relative;
        }

        .prize-tier.featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--ice-deep), var(--ice-primary), var(--ice-bright));
        }

        .prize-place {
            font-family: var(--font-display);
            font-size: 0.8125rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--ice-primary);
            margin-bottom: 12px;
        }

        .prize-tier h3 {
            font-size: 1.375rem;
            margin-bottom: 16px;
        }

        .prize-tier ul {
            list-style: none;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .prize-tier li {
            font-size: 0.875rem;
            color: var(--gray-300);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .prize-tier li .check {
            color: var(--ice-primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* ============ JUDGING ============ */
        .judging {
            background: #FFFFFF;
        }

        .judging h2 { color: #0B1120; }
        .judging .section-label { color: var(--ice-deep); }
        .judging .section-subtitle { color: #6B7280; }

        .judging-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        .judge-criteria {
            background: #F5F7FA;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 12px;
            padding: 28px;
            transition: all 0.3s ease;
        }

        .judge-criteria:hover {
            border-color: rgba(2, 136, 209, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .jc-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .jc-top h3 { font-size: 1rem; margin-bottom: 0; color: #0B1120; }

        .jc-points {
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--ice-deep);
            font-size: 1.5rem;
        }

        .judge-criteria p {
            font-size: 0.875rem;
            color: #6B7280;
        }

        /* ============ TIMELINE ============ */
        .timeline-section { background: var(--bg-deep); }
        .timeline-section .section-subtitle { color: var(--gray-300); }

        .timeline {
            max-width: 760px;
            margin: 48px auto 0;
        }

        .timeline-item {
            display: flex;
            gap: 32px;
            padding-bottom: 40px;
            position: relative;
        }

        .timeline-item:not(:last-child)::before {
            content: '';
            position: absolute;
            left: 23px;
            top: 52px;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--ice-primary), rgba(79, 195, 247, 0.1));
        }

        .timeline-dot {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--ice-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--ice-primary);
        }

        .timeline-content h3 {
            font-size: 1.375rem;
            margin-bottom: 6px;
        }

        .timeline-content .tl-date {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--ice-primary);
            margin-bottom: 8px;
        }

        .timeline-content p {
            font-size: 1.0625rem;
            color: #E2E8F0;
            line-height: 1.7;
        }

        /* ============ TESTIMONIALS ============ */
        .testimonials {
            background: #F5F7FA;
        }

        .testimonials h2 { color: #0B1120; }
        .testimonials .section-label { color: var(--ice-deep); }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .testimonial {
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            padding: 32px;
        }

        .testimonial-quote {
            font-size: 1rem;
            font-style: italic;
            color: #374151;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .testimonial-quote::before {
            content: '\201C';
            font-family: var(--font-display);
            font-size: 3rem;
            font-style: normal;
            color: var(--ice-deep);
            opacity: 0.5;
            line-height: 0;
            vertical-align: -0.6em;
            margin-right: 4px;
        }

        .testimonial-author {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.9375rem;
            color: #0B1120;
        }

        .testimonial-role {
            font-size: 0.8125rem;
            color: #6B7280;
        }

        /* ============ FOUNDERS ============ */
        .founders { background: var(--bg-deep); }

        .founders-inner {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .founders-inner > p {
            margin-bottom: 1rem;
            color: var(--gray-300);
            font-size: 1.0625rem;
            line-height: 1.7;
        }

        .founders-names {
            display: flex;
            gap: 64px;
            justify-content: center;
            margin-top: 48px;
            flex-wrap: wrap;
        }

        .founder {
            text-align: center;
            max-width: 360px;
        }

        .founder-avatar-img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            display: block;
            border: 3px solid rgba(79, 195, 247, 0.3);
        }

        .founder h3 { font-size: 1.375rem; margin-bottom: 6px; }

        .founder p {
            font-size: 1rem;
            color: var(--gray-300);
            line-height: 1.6;
        }

        .founder-links {
            margin-top: 14px;
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        .founder-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(79, 195, 247, 0.3);
            color: var(--ice-primary);
            text-decoration: none;
            transition: all 0.2s;
        }

        .founder-links a:hover {
            background: rgba(79, 195, 247, 0.15);
            border-color: var(--ice-primary);
            color: var(--white);
        }

        .founder-links a svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .founders-cobrand {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(79, 195, 247, 0.1);
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-400);
            letter-spacing: 0.08em;
        }

        .founders-cobrand span { color: var(--ice-primary); }

        /* ============ FAQ ============ */
        .faq {
            background: #FFFFFF;
        }

        .faq h2 { color: #0B1120; }
        .faq .section-label { color: var(--ice-deep); }

        .faq-list {
            max-width: 720px;
            margin: 48px auto 0;
        }

        .faq-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-family: var(--font-display);
            font-size: 1.0625rem;
            font-weight: 700;
            color: #0B1120;
            gap: 16px;
        }

        .faq-question:hover { color: var(--ice-deep); }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--ice-deep);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-inner {
            padding-bottom: 24px;
            font-size: 0.9375rem;
            color: #6B7280;
            line-height: 1.7;
        }

        /* ============ INFO SESSION MODAL ============ */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(7, 11, 20, 0.85);
            backdrop-filter: blur(8px);
            z-index: 200;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .modal-overlay.open {
            display: flex;
        }

        .modal {
            background: var(--bg-deep);
            border: 1px solid rgba(79, 195, 247, 0.15);
            border-radius: 16px;
            padding: 48px 40px;
            max-width: 520px;
            width: 100%;
            text-align: center;
            position: relative;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 20px;
            background: none;
            border: none;
            color: var(--gray-500);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 4px;
            line-height: 1;
            transition: color 0.2s;
        }

        .modal-close:hover { color: var(--white); }

        .modal h2 {
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 12px;
        }

        .modal .section-subtitle {
            color: var(--gray-300);
            margin-bottom: 24px;
            font-size: 1rem;
            line-height: 1.6;
        }

        .modal .info-session-date {
            font-family: var(--font-display);
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--ice-primary);
            margin-bottom: 28px;
            letter-spacing: 0.03em;
        }

        .info-session-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .info-session-form input {
            width: 100%;
            padding: 16px 20px;
            border-radius: 8px;
            border: 1px solid rgba(79, 195, 247, 0.2);
            background: rgba(255, 255, 255, 0.06);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }

        .info-session-form input::placeholder {
            color: var(--gray-500);
        }

        .info-session-form input:focus {
            border-color: var(--ice-primary);
        }

        .info-session-form button {
            width: 100%;
            padding: 16px 36px;
            border-radius: 8px;
            border: none;
            background: linear-gradient(135deg, var(--ice-primary), var(--ice-deep));
            color: var(--bg-deep);
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .info-session-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(79, 195, 247, 0.35);
        }

        .info-session-note {
            font-size: 0.875rem;
            color: var(--gray-500);
            margin-top: 16px;
        }

        .info-session-success {
            display: none;
            padding: 24px;
        }

        .info-session-success h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            color: var(--ice-primary);
        }

        .info-session-success p {
            color: var(--gray-300);
            font-size: 1rem;
        }

        /* ============ FINAL CTA ============ */
        .final-cta {
            background: var(--bg-deep);
            text-align: center;
            padding: 120px 24px;
            position: relative;
            overflow: hidden;
        }

        .register-form-wrap {
            max-width: 500px;
            margin: 2rem auto 0;
        }
        .register-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .register-form-row {
            display: flex;
            gap: 12px;
        }
        .register-form-row input {
            flex: 1;
        }
        .register-form input {
            width: 100%;
            padding: 16px 20px;
            border-radius: 8px;
            border: 1px solid rgba(79, 195, 247, 0.2);
            background: rgba(255, 255, 255, 0.06);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .register-form input::placeholder {
            color: var(--gray-500);
        }
        .register-form input:focus {
            border-color: var(--ice-primary);
        }
        .register-form button {
            width: 100%;
            padding: 16px 36px;
            border-radius: 8px;
            border: none;
            background: linear-gradient(135deg, var(--ice-primary), var(--ice-deep));
            color: var(--bg-deep);
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 4px;
        }
        .register-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(79, 195, 247, 0.35);
        }
        .register-note {
            font-size: 0.875rem;
            color: var(--gray-500);
            margin-top: 16px;
        }
        .register-success {
            display: none;
            padding: 24px;
        }
        .register-success h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--ice-primary);
            font-family: var(--font-display);
        }
        .register-success p {
            color: var(--gray-300);
            font-size: 1.05rem;
            line-height: 1.6;
        }
        @media (max-width: 600px) {
            .register-form-row {
                flex-direction: column;
            }
        }
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/heroes/hero-bg.png') center center / cover no-repeat;
            opacity: 0.18;
            pointer-events: none;
        }

        .final-cta::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 50% 30%, rgba(79, 195, 247, 0.1) 0%, transparent 60%),
                linear-gradient(180deg, var(--bg-deep) 0%, transparent 20%, transparent 80%, var(--bg-dark) 100%);
            pointer-events: none;
        }

        .final-cta > * { position: relative; z-index: 1; }

        .final-cta h2 {
            font-size: clamp(2.5rem, 5vw, 3.75rem);
            max-width: 640px;
            margin: 0 auto 16px;
        }

        .final-cta p {
            font-size: 1.125rem;
            color: var(--gray-300);
            margin-bottom: 40px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta-contact {
            margin-top: 24px;
            font-size: 0.9375rem !important;
            color: var(--gray-400) !important;
        }

        .final-cta-contact a {
            color: var(--ice-primary);
            text-decoration: none;
        }

        .final-cta-contact a:hover { text-decoration: underline; }

        .final-cta-price {
            font-family: var(--font-display);
            font-size: 1.375rem !important;
            font-weight: 700;
            color: var(--white) !important;
            margin-bottom: 32px !important;
        }

        /* ============ FOOTER ============ */
        footer {
            background: var(--bg-dark);
            border-top: 1px solid rgba(79, 195, 247, 0.06);
            padding: 56px 0 32px;
        }

        .footer-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 48px;
            margin-bottom: 40px;
        }

        .footer-brand {
            max-width: 360px;
        }

        .footer-logo-img {
            height: 72px;
            width: auto;
            margin-bottom: 16px;
        }

        .footer-desc {
            font-size: 0.875rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        .footer-nav {
            display: flex;
            gap: 56px;
        }

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

        .footer-heading {
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
            letter-spacing: 0.03em;
        }

        .footer-col a {
            font-size: 0.875rem;
            color: var(--gray-500);
            text-decoration: none;
            padding: 4px 0;
            transition: color 0.2s;
        }

        .footer-col a:hover { color: var(--ice-primary); }

        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid rgba(79, 195, 247, 0.06);
            text-align: center;
        }

        .footer-copy {
            font-size: 0.8125rem;
            color: var(--gray-500);
        }

        /* ============ ANIMATIONS ============ */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 900px) {
            section { padding: 72px 0; }

            .desktop-break { display: none; }

            .nav-links { display: none; }
            .nav-mobile-toggle { display: block; }

            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(7, 11, 20, 0.97);
                backdrop-filter: blur(16px);
                padding: 24px;
                border-bottom: 1px solid rgba(79, 195, 247, 0.1);
            }

            .hero { min-height: auto; padding: 100px 24px 60px; }
            .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
            .hero-sub { font-size: 1rem; }
            .hero-cobrand { font-size: 0.75rem; letter-spacing: 0.06em; }
            .hero-stats { gap: 28px; }

            .what-is-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .steps { grid-template-columns: 1fr; gap: 16px; }
            .step { display: flex; text-align: left; gap: 20px; padding: 24px; }
            .step-number { font-size: 2rem; margin-bottom: 0; min-width: 44px; }

            .graphic-features { grid-template-columns: repeat(2, 1fr); }
            .why-grid { grid-template-columns: 1fr; }
            .who-grid { grid-template-columns: repeat(2, 1fr); }
            .prize-tiers { grid-template-columns: 1fr; }
            .judging-grid { grid-template-columns: 1fr; }
            .testimonial-grid { grid-template-columns: 1fr; }

            .footer-top {
                flex-direction: column;
                gap: 32px;
            }

            .footer-nav {
                flex-wrap: wrap;
                gap: 32px;
            }
        }

        @media (max-width: 480px) {
            .graphic-features { grid-template-columns: 1fr; }
            .who-grid { grid-template-columns: 1fr; }
            .hero-ctas { flex-direction: column; align-items: stretch; }
            .btn-primary, .btn-outline { width: 100%; max-width: none; text-align: center; }

            .footer-nav { flex-direction: column; gap: 28px; }
        }

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
    padding: 160px 0 80px;
    background: var(--bg-deep);
    text-align: center;
    border-bottom: 1px solid rgba(79, 195, 247, 0.08);
}

.page-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-hero .section-subtitle {
    margin: 0 auto;
}

/* ============ MODAL ============ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--bg-card);
    border: 1px solid rgba(79, 195, 247, 0.15);
    border-radius: 12px;
    padding: 48px;
    max-width: 520px;
    width: 100%;
    position: relative;
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--white); }

.modal h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.modal p.modal-sub {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin-bottom: 28px;
}

@media (max-width: 600px) {
    .modal { padding: 32px 24px; }
}
