/* ===== RESET & BASE ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #0a1628;
            --navy-light: #14233e;
            --navy-medium: #1a2a4a;
            --gold: #c9a84c;
            --gold-light: #e0c66a;
            --gold-dark: #a8893a;
            --cream: #f8f6f0;
            --white: #ffffff;
            --dark: #0e0e1a;
            --text: #1a1a2e;
            --text-light: #4a4a6a;
            --green: #2ecc71;
            --green-dark: #1fa85a;
            --red: #e74c3c;
            --shadow: 0 8px 32px rgba(10, 22, 40, 0.15);
            --shadow-hover: 0 12px 48px rgba(10, 22, 40, 0.25);
            --radius: 12px;
            --radius-lg: 20px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            background: var(--cream);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font);
        }

        .btn-primary {
            background: var(--gold);
            color: var(--navy);
        }
        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--gold);
        }
        .btn-outline:hover {
            background: var(--gold);
            color: var(--navy);
            transform: translateY(-2px);
        }

        .btn-dark {
            background: var(--navy);
            color: var(--white);
        }
        .btn-dark:hover {
            background: var(--navy-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(10, 22, 40, 0.3);
        }

        .btn-gold-outline {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
        }
        .btn-gold-outline:hover {
            background: var(--gold);
            color: var(--navy);
            transform: translateY(-2px);
        }

        /* ===== HEADER / NAV ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 22, 40, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(201, 168, 76, 0.15);
            transition: var(--transition);
        }

        header.scrolled {
            background: rgba(10, 22, 40, 0.97);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.5px;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--gold);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1rem;
            color: var(--navy);
        }

        .logo span {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--white);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gold);
            color: var(--navy);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .nav-cta:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .nav-toggle span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--white);
            border-radius: 4px;
            transition: var(--transition);
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== PAGE SECTIONS ===== */
        .page-section {
            display: none;
            padding: 100px 0 80px;
            animation: fadeUp 0.5s ease forwards;
        }

        .page-section.active {
            display: block;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 12px;
            color: var(--navy);
        }

        .section-title .gold {
            color: var(--gold);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 640px;
            margin-bottom: 40px;
        }

        /* ===== HERO ===== */
        #home {
            background: var(--navy);
            color: var(--white);
            padding: 140px 0 40px;
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
        }

        #home.active {
            display: flex;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 168, 76, 0.15);
            border: 1px solid rgba(201, 168, 76, 0.3);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .hero-badge i {
            font-size: 0.6rem;
        }

        .hero-title {
            font-size: 3.6rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 20px;
        }

        .hero-title .gold {
            color: var(--gold);
        }

        .hero-desc {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 520px;
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .hero-stats .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold);
        }

        .hero-stats .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Hero right - now contains Short #1 */
        .hero-video-wrap {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            padding: 8px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .hero-video-wrap .video-placeholder {
            aspect-ratio: 9 / 16;
            max-width: 380px;
            margin: 0 auto;
            background: #0a1628;
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(201, 168, 76, 0.15);
        }

        .hero-video-wrap .video-placeholder iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ===== QUICK TAKE SPOTLIGHT (Short #2) – ENLARGED & CLEAN ===== */
        .quick-take-spotlight {
            display: flex;
            align-items: center;
            gap: 30px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(201, 168, 76, 0.15);
            border-radius: var(--radius);
            padding: 20px 30px;
            margin-top: 30px;
        }

        .quick-take-video {
            flex-shrink: 0;
            width: 180px;
        }

        .quick-take-video .short-wrapper {
            position: relative;
            padding-bottom: 177.77%;
            height: 0;
            overflow: hidden;
            background: #0a1628;
            border-radius: 8px;
            border: 2px solid var(--gold);
        }

        .quick-take-video .short-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .quick-take-content {
            flex: 1;
            color: #ffffff;
        }

        .quick-take-content h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .quick-take-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 0;
            max-width: 500px;
        }

        /* ===== DYNAMIC ROTATING TEXT ===== */
        .rotating-wrapper {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 4px;
        }

        .rotating-label {
            font-weight: 600;
            color: var(--gold);
        }

        .rotating-text {
            color: #ffffff;
            font-weight: 500;
            border-right: 2px solid var(--gold);
            padding-right: 6px;
            animation: blink-caret 0.8s step-end infinite;
        }

        @keyframes blink-caret {
            0%, 100% { border-color: var(--gold); }
            50% { border-color: transparent; }
        }

        /* ===== HOMEPAGE SIGNUP BANNER ===== */
        .home-signup-banner {
            margin-top: 60px;
            background: linear-gradient(135deg, #0e1a2f 0%, #1a2a4a 100%);
            border-radius: var(--radius-lg);
            padding: 48px 56px;
            border: 1px solid rgba(201, 168, 76, 0.25);
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .home-signup-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .home-signup-banner .banner-text h3 {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--white);
            margin-bottom: 6px;
        }

        .home-signup-banner .banner-text h3 .gold {
            color: var(--gold);
        }

        .home-signup-banner .banner-text p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.05rem;
        }

        .home-signup-banner .banner-form {
            display: flex;
            gap: 12px;
            position: relative;
            z-index: 2;
        }

        .home-signup-banner .banner-form input {
            flex: 1;
            padding: 16px 22px;
            border-radius: 50px;
            border: none;
            font-size: 1rem;
            font-family: var(--font);
            background: rgba(255, 255, 255, 0.07);
            color: var(--white);
            outline: 2px solid transparent;
            transition: var(--transition);
        }

        .home-signup-banner .banner-form input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .home-signup-banner .banner-form input:focus {
            outline-color: var(--gold);
            background: rgba(255, 255, 255, 0.12);
        }

        .home-signup-banner .banner-form .btn {
            padding: 16px 36px;
            flex-shrink: 0;
        }

        .home-signup-banner .banner-note {
            grid-column: 1 / -1;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.3);
            text-align: center;
            margin-top: -12px;
        }

        /* ===== HERO VIDEO — HIGHLIGHTED ===== */
        .hero-video-wrap {
            position: relative;
        }

        .hero-video-wrap::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: calc(var(--radius-lg) + 2px);
            background: linear-gradient(135deg, rgba(201,168,76,0.55), rgba(201,168,76,0) 45%, rgba(201,168,76,0.35));
            z-index: -1;
            filter: blur(2px);
            opacity: 0.9;
        }

        .video-tag {
            position: absolute;
            top: 18px;
            left: 18px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(231, 76, 60, 0.95);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 50px;
            box-shadow: 0 4px 14px rgba(231,76,60,0.4);
        }

        .video-tag .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #fff;
            animation: livePulse 1.4s ease-in-out infinite;
        }

        @keyframes livePulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.45; transform: scale(0.7); }
        }

        .video-caption {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 8px 4px;
            color: rgba(255,255,255,0.85);
        }

        .video-caption .vc-title {
            font-size: 0.92rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .video-caption .vc-title i { color: #ff0000; }

        .video-caption .vc-link {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--gold);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .video-caption .vc-link:hover { gap: 10px; color: var(--gold-light); }

        /* ===== THE BOARD — LIVE MARKET INTELLIGENCE ===== */
        .board {
            margin-top: 64px;
            background: linear-gradient(180deg, #0c1a30 0%, #0a1424 100%);
            border: 1px solid rgba(201, 168, 76, 0.18);
            border-radius: var(--radius-lg);
            padding: 28px 28px 32px;
            box-shadow: 0 24px 60px rgba(0,0,0,0.45);
            position: relative;
            overflow: hidden;
        }

        .board::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .board-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 6px;
        }

        .board-head .bh-left { display: flex; align-items: center; gap: 14px; }

        .board-title {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .board-title .gold { color: var(--gold); }

        .board-live {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--green);
            background: rgba(46,204,113,0.1);
            border: 1px solid rgba(46,204,113,0.25);
            padding: 5px 12px;
            border-radius: 50px;
        }

        .board-live .live-dot {
            width: 7px; height: 7px; border-radius: 50%;
            background: var(--green);
            animation: livePulse 1.4s ease-in-out infinite;
        }

        .board-meta {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.45);
            text-align: right;
            line-height: 1.5;
        }

        .board-meta .updated { color: rgba(255,255,255,0.7); font-weight: 600; }

        /* Ticker tape */
        .ticker-tape {
            margin: 20px -28px 24px;
            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            background: rgba(0,0,0,0.25);
            overflow: hidden;
            position: relative;
        }

        .ticker-track {
            display: inline-flex;
            gap: 0;
            white-space: nowrap;
            padding: 11px 0;
            animation: tickerScroll 38s linear infinite;
            will-change: transform;
        }

        .board:hover .ticker-track { animation-play-state: paused; }

        @keyframes tickerScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .ticker-item {
            display: inline-flex;
            align-items: baseline;
            gap: 8px;
            padding: 0 22px;
            border-right: 1px solid rgba(255,255,255,0.07);
            font-size: 0.9rem;
        }

        .ticker-item .t-sym { font-weight: 700; color: var(--white); letter-spacing: 0.5px; }
        .ticker-item .t-px  { color: rgba(255,255,255,0.7); font-variant-numeric: tabular-nums; }
        .ticker-item .t-chg { font-weight: 600; font-variant-numeric: tabular-nums; }
        .up   { color: var(--green); }
        .down { color: var(--red); }

        /* Board grid */
        .board-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 18px;
        }

        .board-card {
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: var(--radius);
            padding: 18px 20px 20px;
            position: relative;
        }

        .board-card.span-3 { grid-column: span 3; }
        .board-card.span-4 { grid-column: span 4; }
        .board-card.span-5 { grid-column: span 5; }
        .board-card.span-6 { grid-column: span 6; }
        .board-card.span-7 { grid-column: span 7; }
        .board-card.span-8 { grid-column: span 8; }

        .card-label {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .card-label i { font-size: 0.85rem; opacity: 0.9; }
        .card-label .sub {
            margin-left: auto;
            color: rgba(255,255,255,0.35);
            font-weight: 500;
            letter-spacing: 0.3px;
            text-transform: none;
            font-size: 0.7rem;
        }

        /* Fear & Greed gauge */
        .gauge-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .gauge { position: relative; width: 100%; max-width: 220px; }
        .gauge svg { width: 100%; height: auto; display: block; }
        .gauge-score {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            margin-top: -6px;
        }
        .gauge-rating {
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .gauge-hist {
            display: flex;
            gap: 16px;
            margin-top: 14px;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.5);
        }
        .gauge-hist b { color: rgba(255,255,255,0.85); display: block; font-size: 0.95rem; }

        /* Generic stat rows */
        .stat-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 0.9rem;
        }
        .stat-row:last-child { border-bottom: none; }
        .stat-row .sr-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
        .stat-row .sr-sym { font-weight: 700; color: var(--white); }
        .stat-row .sr-name {
            color: rgba(255,255,255,0.45);
            font-size: 0.78rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 110px;
        }
        .stat-row .sr-val { font-variant-numeric: tabular-nums; font-weight: 600; }
        .stat-row .sr-rank {
            width: 22px; height: 22px;
            display: inline-flex; align-items: center; justify-content: center;
            background: rgba(201,168,76,0.15);
            color: var(--gold);
            border-radius: 6px;
            font-size: 0.72rem; font-weight: 700;
        }

        /* Pressure bars (% to 52w high) */
        .pressure-row { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .pressure-row:last-child { border-bottom: none; }
        .pressure-top {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 7px; font-size: 0.88rem;
        }
        .pressure-top .pt-sym { font-weight: 700; color: var(--white); }
        .pressure-top .pt-pct { color: var(--gold); font-weight: 700; font-variant-numeric: tabular-nums; }
        .pressure-bar {
            height: 7px; border-radius: 50px;
            background: rgba(255,255,255,0.08);
            overflow: hidden;
        }
        .pressure-fill {
            height: 100%; border-radius: 50px;
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
            transition: width 0.9s cubic-bezier(0.4,0,0.2,1);
        }

        /* Momentum split */
        .momentum-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
        .momentum-col h5 {
            font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
            text-transform: uppercase; margin-bottom: 8px;
        }
        .momentum-col.gain h5 { color: var(--green); }
        .momentum-col.lose h5 { color: var(--red); }

        /* Sector heat */
        .sector-heat { display: flex; flex-direction: column; gap: 7px; }
        .sector-bar {
            display: grid;
            grid-template-columns: 96px 1fr 56px;
            align-items: center;
            gap: 10px;
            font-size: 0.82rem;
        }
        .sector-bar .sb-name { color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .sector-bar .sb-track {
            position: relative; height: 18px;
            background: rgba(255,255,255,0.05); border-radius: 5px;
            overflow: hidden;
        }
        .sector-bar .sb-track .sb-mid {
            position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
            background: rgba(255,255,255,0.18);
        }
        .sector-bar .sb-fill { position: absolute; top: 0; bottom: 0; }
        .sector-bar .sb-fill.up   { left: 50%; background: linear-gradient(90deg, rgba(46,204,113,0.4), var(--green)); border-radius: 0 5px 5px 0; }
        .sector-bar .sb-fill.down { right: 50%; background: linear-gradient(270deg, rgba(231,76,60,0.4), var(--red)); border-radius: 5px 0 0 5px; }
        .sector-bar .sb-val { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }

        /* Crypto chips */
        .crypto-strip { display: flex; flex-direction: column; gap: 10px; }
        .crypto-chip {
            display: flex; align-items: center; justify-content: space-between;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 10px; padding: 11px 14px;
        }
        .crypto-chip .cc-sym { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--white); }
        .crypto-chip .cc-sym i { color: var(--gold); }
        .crypto-chip .cc-px { font-variant-numeric: tabular-nums; color: rgba(255,255,255,0.85); font-weight: 600; }
        .crypto-chip .cc-chg { font-size: 0.82rem; font-weight: 600; font-variant-numeric: tabular-nums; }

        /* News list */
        .news-list { display: flex; flex-direction: column; }
        .news-item {
            display: flex; flex-direction: column; gap: 4px;
            padding: 11px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: var(--transition);
        }
        .news-item:last-child { border-bottom: none; }
        .news-item a {
            font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.88);
            line-height: 1.4; transition: var(--transition);
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
        }
        .news-item a:hover { color: var(--gold); }
        .news-item .news-meta { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; color: rgba(255,255,255,0.4); }
        .news-item .news-src { color: var(--gold); font-weight: 600; }

        .news-scroll { max-height: 360px; overflow-y: auto; padding-right: 8px; }
        .news-scroll::-webkit-scrollbar { width: 6px; }
        .news-scroll::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 50px; }

        .board-disclaimer {
            margin-top: 22px;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.35);
            text-align: center;
            line-height: 1.6;
        }
        .board-disclaimer a { color: rgba(255,255,255,0.55); text-decoration: underline; }

        /* Skeleton shimmer */
        .skeleton { color: transparent !important; position: relative; overflow: hidden; border-radius: 6px; }
        .skeleton::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.10), rgba(255,255,255,0.04));
            background-size: 200% 100%;
            animation: shimmer 1.4s infinite;
        }
        @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

        @media (max-width: 1024px) {
            .board-card.span-3, .board-card.span-4, .board-card.span-5 { grid-column: span 6; }
            .board-card.span-7, .board-card.span-8 { grid-column: span 12; }
        }

        @media (max-width: 680px) {
            .board { padding: 22px 16px 26px; }
            .ticker-tape { margin-left: -16px; margin-right: -16px; }
            .board-card.span-3, .board-card.span-4, .board-card.span-5,
            .board-card.span-6, .board-card.span-7, .board-card.span-8 { grid-column: span 12; }
            .momentum-split { grid-template-columns: 1fr; }
        }

        /* ===== INDEX OVERVIEW BAR ===== */
        .index-bar {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1px;
            margin-top: 40px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius);
            overflow: hidden;
        }
        .index-cell {
            background: #0b1a30;
            padding: 14px 16px;
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .index-cell .ic-name { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.3px; }
        .index-cell .ic-px { font-size: 1.05rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
        .index-cell .ic-chg { font-size: 0.82rem; font-weight: 600; font-variant-numeric: tabular-nums; }

        /* ===== TOOLS TEASER (home conversion band) ===== */
        .tools-teaser {
            margin-top: 60px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .teaser-card {
            background: var(--white);
            border: 1px solid rgba(10,22,40,0.07);
            border-radius: var(--radius);
            padding: 28px 26px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
        }
        .teaser-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
        .teaser-card .tc-icon {
            width: 52px; height: 52px; border-radius: 14px;
            background: linear-gradient(135deg, var(--navy), var(--navy-medium));
            display: flex; align-items: center; justify-content: center;
            color: var(--gold); font-size: 1.4rem; margin-bottom: 16px;
        }
        .teaser-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
        .teaser-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }
        .teaser-card .tc-go { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 600; font-size: 0.85rem; color: var(--gold); transition: var(--transition); }
        .teaser-card:hover .tc-go { gap: 11px; }

        /* ===== MARKETS / TOOLS PAGE HEADERS ===== */
        .page-hero {
            background: var(--navy);
            margin: -100px 0 40px;
            padding: 130px 0 40px;
            color: #fff;
        }
        .page-hero h1 { font-size: 2.6rem; font-weight: 800; letter-spacing: -1px; }
        .page-hero h1 .gold { color: var(--gold); }
        .page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 620px; margin-top: 10px; }

        /* Reuse dark board styling on markets/tools cards */
        .board.plain { margin-top: 0; }
        .board-section-title {
            font-size: 1.3rem; font-weight: 800; color: var(--navy);
            letter-spacing: -0.5px; margin: 44px 0 18px; display: flex; align-items: center; gap: 10px;
        }
        .board-section-title i { color: var(--gold); }
        .board-section-title .st-sub { font-size: 0.85rem; font-weight: 500; color: var(--text-light); margin-left: auto; }

        /* ===== BREAKOUT SCANNER ===== */
        .scanner-table { width: 100%; border-collapse: collapse; }
        .scanner-table th {
            text-align: left; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
            color: var(--gold); padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .scanner-table th.num, .scanner-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
        .scanner-table td { padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.92rem; color: rgba(255,255,255,0.85); }
        .scanner-table tr:hover td { background: rgba(255,255,255,0.03); }
        .scanner-table .sc-sym { font-weight: 700; color: #fff; }
        .scanner-table .sc-name { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
        .signal-pill {
            display: inline-block; padding: 3px 12px; border-radius: 50px;
            font-size: 0.7rem; font-weight: 700; letter-spacing: 0.4px;
        }
        .signal-pill.at { background: rgba(46,204,113,0.15); color: #2ecc71; }
        .signal-pill.out { background: rgba(201,168,76,0.15); color: var(--gold); }
        .signal-pill.coil { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
        .mini-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 50px; overflow: hidden; width: 90px; display: inline-block; vertical-align: middle; }
        .mini-bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }

        /* ===== TICKER LOOKUP ===== */
        .lookup-box { display: flex; gap: 12px; margin-bottom: 20px; }
        .lookup-box input {
            flex: 1; padding: 15px 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.05); color: #fff; font-size: 1rem; font-family: var(--font);
            text-transform: uppercase; letter-spacing: 1px; outline: none; transition: var(--transition);
        }
        .lookup-box input::placeholder { color: rgba(255,255,255,0.3); letter-spacing: 0.5px; text-transform: none; }
        .lookup-box input:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
        .lookup-result { display: none; }
        .lookup-result.show { display: block; animation: fadeUp 0.4s ease; }
        .lookup-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
        .lookup-head .lh-sym { font-size: 1.8rem; font-weight: 800; color: #fff; }
        .lookup-head .lh-name { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
        .lookup-head .lh-px { font-size: 2rem; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; }
        .lookup-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; }
        .lookup-stats .ls { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 12px 14px; }
        .lookup-stats .ls small { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
        .lookup-stats .ls b { font-size: 1.05rem; color: #fff; font-variant-numeric: tabular-nums; }
        .spark-svg { width: 100%; height: 90px; margin-top: 8px; }
        .lookup-actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
        .chip-btn {
            display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px;
            border-radius: 50px; font-size: 0.85rem; font-weight: 600; cursor: pointer;
            border: 1px solid rgba(201,168,76,0.4); background: transparent; color: var(--gold);
            font-family: var(--font); transition: var(--transition);
        }
        .chip-btn:hover { background: var(--gold); color: var(--navy); }
        .lookup-error { color: #e74c3c; font-size: 0.9rem; margin-top: 8px; }

        /* ===== PORTFOLIO / WATCHLIST TOOLS ===== */
        .tool-empty { color: rgba(255,255,255,0.4); font-size: 0.9rem; padding: 18px 0; text-align: center; }
        .holding-form, .alert-form, .watch-form { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
        .holding-form input, .alert-form input, .watch-form input, .alert-form select {
            padding: 11px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.05); color: #fff; font-size: 0.9rem; font-family: var(--font); outline: none;
        }
        .holding-form input { width: 120px; text-transform: uppercase; }
        .holding-form input.num, .alert-form input.num { width: 100px; text-transform: none; }
        .watch-form input { flex: 1; text-transform: uppercase; }
        .add-btn {
            padding: 11px 22px; border-radius: 10px; border: none; cursor: pointer;
            background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.9rem; font-family: var(--font);
            transition: var(--transition);
        }
        .add-btn:hover { background: var(--gold-light); }
        .port-summary {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 18px;
        }
        .port-summary .ps { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 16px 18px; }
        .port-summary .ps small { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
        .port-summary .ps b { font-size: 1.5rem; color: #fff; font-variant-numeric: tabular-nums; }
        .data-table { width: 100%; border-collapse: collapse; }
        .data-table th { text-align: left; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.4); padding: 8px 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .data-table th.num, .data-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
        .data-table td { padding: 11px 10px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: rgba(255,255,255,0.85); }
        .data-table .dt-sym { font-weight: 700; color: #fff; }
        .del-x { cursor: pointer; color: rgba(255,255,255,0.35); transition: var(--transition); font-size: 0.9rem; }
        .del-x:hover { color: var(--red); }
        .alert-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: rgba(255,255,255,0.85); }
        .alert-row.triggered { background: rgba(46,204,113,0.06); }
        .alert-badge { font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: rgba(201,168,76,0.15); color: var(--gold); }
        .alert-badge.hit { background: rgba(46,204,113,0.18); color: #2ecc71; }

        /* ===== LEARN / GLOSSARY ===== */
        #learn { background: var(--cream); }
        .learn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-top: 24px; }
        .learn-card { background: var(--white); border: 1px solid rgba(10,22,40,0.07); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); }
        .learn-card .lc-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(201,168,76,0.12); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
        .learn-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
        .learn-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }
        .learn-cta { margin-top: 40px; background: linear-gradient(135deg, var(--navy), var(--navy-medium)); border-radius: var(--radius-lg); padding: 40px; text-align: center; color: #fff; }
        .learn-cta h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
        .learn-cta h3 .gold { color: var(--gold); }
        .learn-cta p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 22px; }

        @media (max-width: 1024px) {
            .index-bar { grid-template-columns: repeat(3, 1fr); }
            .tools-teaser { grid-template-columns: 1fr; }
            .lookup-stats { grid-template-columns: repeat(2, 1fr); }
            .port-summary { grid-template-columns: 1fr; }
        }
        @media (max-width: 680px) {
            .index-bar { grid-template-columns: repeat(2, 1fr); }
            .page-hero h1 { font-size: 2rem; }
            .scanner-table .hide-sm, .data-table .hide-sm { display: none; }
        }

        /* ===== VIDEOS PAGE ===== */
        #videos {
            background: var(--cream);
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 28px;
            margin-top: 20px;
        }

        .video-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(10, 22, 40, 0.06);
        }

        .video-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .video-card .thumb {
            aspect-ratio: 16 / 9;
            background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-bottom: 3px solid var(--gold);
        }

        .video-card .thumb .thumb-icon {
            font-size: 2.4rem;
            color: var(--gold);
            opacity: 0.5;
        }

        .video-card .thumb .thumb-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.3px;
        }

        .video-card .thumb .thumb-badge {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            color: var(--gold);
            padding: 3px 14px;
            border-radius: 50px;
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid rgba(201, 168, 76, 0.2);
        }

        .video-card .thumb iframe {
            width: 100%;
            height: 100%;
            border: none;
            position: absolute;
            top: 0;
            left: 0;
        }

        .video-card .info {
            padding: 18px 20px 20px;
        }

        .video-card .info h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--navy);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-card .info p {
            font-size: 0.85rem;
            color: var(--text-light);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-card .info .meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 10px;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .video-card .info .meta i {
            color: var(--gold);
        }

        .channel-embed-wrap {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow);
            margin-top: 32px;
            border: 1px solid rgba(10, 22, 40, 0.06);
        }

        .channel-embed-wrap h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--navy);
        }

        .channel-embed-wrap .embed-container {
            aspect-ratio: 16 / 9;
            background: var(--navy);
            border-radius: var(--radius);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.2);
            font-size: 1.2rem;
            border: 1px solid rgba(201, 168, 76, 0.1);
        }

        .channel-embed-wrap .embed-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .channel-embed-wrap .embed-container .channel-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .channel-embed-wrap .embed-container .channel-placeholder i {
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.3;
        }

        /* ===== BLOG PAGE ===== */
        #blog {
            background: var(--cream);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 28px;
            margin-top: 20px;
        }

        .blog-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(10, 22, 40, 0.06);
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .blog-card .blog-img {
            height: 200px;
            background: var(--navy-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.2);
            font-size: 2rem;
            position: relative;
        }

        .blog-card .blog-img .category {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--gold);
            color: var(--navy);
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-card .blog-body {
            padding: 20px 22px 22px;
        }

        /* ===== VIDEOS PAGE ===== */
        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 28px;
            margin-top: 20px;
        }

        .video-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(10, 22, 40, 0.06);
        }

        .video-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .video-card-player {
            position: relative;
            aspect-ratio: 9 / 16;
            background: #0a1628;
        }

        .video-card-player iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-card-body {
            padding: 18px 20px 20px;
        }

        .video-card-body h3 {
            font-size: 1.02rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .video-card-body p {
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        .blog-card .blog-body .date {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 6px;
        }

        .blog-card .blog-body h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .blog-card .blog-body p {
            font-size: 0.92rem;
            color: var(--text-light);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-card .blog-body .read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 14px;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--gold);
            transition: var(--transition);
        }

        .blog-card .blog-body .read-more:hover {
            gap: 12px;
            color: var(--gold-dark);
        }

        /* ===== ABOUT PAGE ===== */
        #about {
            background: var(--cream);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            background: var(--navy);
            border-radius: var(--radius-lg);
            aspect-ratio: 4 / 3;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.15);
            font-size: 5rem;
            position: relative;
            overflow: hidden;
        }

        .about-image .about-badge {
            position: absolute;
            bottom: 24px;
            left: 24px;
            background: var(--gold);
            color: var(--navy);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .about-content h2 {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 16px;
            color: var(--navy);
        }

        .about-content h2 .gold {
            color: var(--gold);
        }

        .about-content p {
            color: var(--text-light);
            margin-bottom: 16px;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 24px;
        }

        .about-values .value-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .about-values .value-item i {
            color: var(--gold);
            font-size: 1.1rem;
        }

        /* ===== SUBSCRIBE PAGE ===== */
        #subscribe {
            background: var(--cream);
            padding: 120px 0 80px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        #subscribe.active {
            display: flex;
        }

        .subscribe-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .subscribe-left h2 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.1;
            color: var(--navy);
            margin-bottom: 16px;
        }

        .subscribe-left h2 .gold {
            color: var(--gold);
        }

        .subscribe-left p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .subscribe-left .feature-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
        }

        .subscribe-left .feature-list .feat {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--navy);
        }

        .subscribe-left .feature-list .feat i {
            color: var(--gold);
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }

        .subscribe-left .trust-badge {
            display: flex;
            align-items: center;
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(10, 22, 40, 0.06);
        }

        .subscribe-left .trust-badge span {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .subscribe-left .trust-badge i {
            color: var(--green);
        }

        .subscribe-right {
            background: var(--white);
            padding: 40px 44px 48px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-hover);
            border: 1px solid rgba(10, 22, 40, 0.06);
        }

        .subscribe-right h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .subscribe-right .sub-sub {
            color: var(--text-light);
            margin-bottom: 24px;
            font-size: 0.95rem;
        }

        .subscribe-right .form-group {
            margin-bottom: 16px;
        }

        .subscribe-right .form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid rgba(10, 22, 40, 0.08);
            border-radius: 10px;
            font-size: 1rem;
            font-family: var(--font);
            background: var(--cream);
            transition: var(--transition);
            color: var(--text);
        }

        .subscribe-right .form-group input:focus {
            outline: none;
            border-color: var(--gold);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
        }

        .subscribe-right .btn {
            width: 100%;
            justify-content: center;
            padding: 16px;
            font-size: 1.05rem;
            margin-top: 4px;
        }

        /* ===== CONTACT PAGE ===== */
        #contact {
            background: var(--cream);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h2 {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 12px;
            color: var(--navy);
        }

        .contact-info h2 .gold {
            color: var(--gold);
        }

        .contact-info p {
            color: var(--text-light);
            font-size: 1.05rem;
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-details .detail {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 1rem;
        }

        .contact-details .detail i {
            width: 44px;
            height: 44px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.1rem;
            box-shadow: var(--shadow);
        }

        .contact-form-wrap {
            background: var(--white);
            padding: 36px 40px 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            border: 1px solid rgba(10, 22, 40, 0.06);
        }

        .contact-form-wrap h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--navy);
        }

        .contact-form .form-group {
            margin-bottom: 18px;
        }

        .contact-form label {
            display: block;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 4px;
            color: var(--navy);
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid rgba(10, 22, 40, 0.08);
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: var(--font);
            transition: var(--transition);
            background: var(--cream);
            color: var(--text);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* ===== DISCLAIMER BAR ===== */
        .disclaimer-bar {
            background: rgba(10, 22, 40, 0.04);
            padding: 16px 0;
            font-size: 0.75rem;
            color: var(--text-light);
            text-align: center;
            border-top: 1px solid rgba(10, 22, 40, 0.05);
        }

        .disclaimer-bar strong {
            color: var(--navy);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--navy);
            color: rgba(255, 255, 255, 0.5);
            padding: 48px 0 32px;
            border-top: 1px solid rgba(201, 168, 76, 0.1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }

        .footer-brand .logo {
            margin-bottom: 12px;
        }

        .footer-brand p {
            font-size: 0.92rem;
            max-width: 320px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 14px;
            font-size: 0.95rem;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul a {
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-col ul a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .footer-socials {
            display: flex;
            gap: 16px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-socials a:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .subscribe-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .home-signup-banner {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 32px 28px;
                text-align: center;
            }

            .home-signup-banner .banner-form {
                flex-direction: column;
            }

            .home-signup-banner .banner-form input {
                width: 100%;
            }

            .home-signup-banner .banner-form .btn {
                width: 100%;
                justify-content: center;
            }

            .subscribe-left .trust-badge {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: var(--navy);
                flex-direction: column;
                padding: 24px 32px 32px;
                gap: 16px;
                border-bottom: 1px solid rgba(201, 168, 76, 0.1);
                transform: translateY(-120%);
                transition: var(--transition);
                opacity: 0;
                pointer-events: none;
            }

            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .nav-toggle {
                display: flex;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-stats {
                gap: 24px;
                flex-wrap: wrap;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .video-grid {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .about-values {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .contact-form-wrap {
                padding: 24px;
            }

            .subscribe-left h2 {
                font-size: 2rem;
            }

            .subscribe-right {
                padding: 28px 20px 32px;
            }

            .home-signup-banner {
                padding: 24px 16px;
            }

            .home-signup-banner .banner-text h3 {
                font-size: 1.6rem;
            }

            .quick-take-spotlight {
                flex-direction: column;
                text-align: center;
                padding: 24px 20px;
            }

            .quick-take-video {
                width: 160px;
            }

            .quick-take-content p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .hero-actions {
                flex-direction: column;
            }

            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }
        }

/* ===== MULTI-PAGE MAIN ===== */
.page-main { padding: 100px 0 80px; }
.page-main > .container { animation: fadeUp 0.5s ease; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin-top: 8px; }
.faq-item {
    background: var(--white);
    border: 1px solid rgba(10,22,40,0.08);
    border-radius: var(--radius);
    padding: 4px 22px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    padding: 16px 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\002B'; color: var(--gold); font-size: 1.3rem; font-weight: 700; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { color: var(--text-light); line-height: 1.7; padding: 0 0 18px; font-size: 0.95rem; }

/* ===== MULTI-PAGE: neutralize legacy flex on hero sections ===== */
#home.page-main, #subscribe.page-main { display: block; min-height: 0; }

/* ===== BLOG CARD AS LINK ===== */
a.blog-card { display: block; color: inherit; }

/* ===== ARTICLE PAGE ===== */
#article { padding-top: 0; }
.article-hero {
    padding: 130px 0 44px;
    color: #fff;
}
.article-hero .crumbs { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.article-hero .crumbs a { color: var(--gold); }
.article-hero .crumbs span { margin: 0 8px; opacity: 0.5; }
.article-cat {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold); padding: 5px 14px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3px; margin-bottom: 18px;
}
.article-hero h1 {
    font-size: 2.7rem; font-weight: 800; letter-spacing: -1px; line-height: 1.15;
    max-width: 860px;
}
.article-meta {
    display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px;
    font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.article-meta i { color: var(--gold); margin-right: 6px; }

.article-body { max-width: 760px; margin: 44px auto 0; }
.article-lead {
    font-size: 1.3rem; line-height: 1.7; color: var(--navy);
    font-weight: 500; margin-bottom: 28px;
}
.article-body p { font-size: 1.08rem; line-height: 1.85; color: var(--text); margin-bottom: 22px; }
.article-body h2 {
    font-size: 1.5rem; font-weight: 800; color: var(--navy);
    letter-spacing: -0.3px; margin: 36px 0 14px;
}
.article-body ul { margin: 0 0 22px 22px; }
.article-body li { font-size: 1.06rem; line-height: 1.7; color: var(--text); margin-bottom: 8px; }
.article-body strong { color: var(--navy); }
.article-body em { color: var(--text-light); }

.article-disclaimer {
    margin-top: 36px; padding: 16px 20px; border-radius: var(--radius);
    background: rgba(10,22,40,0.04); border: 1px solid rgba(10,22,40,0.08);
    font-size: 0.85rem; color: var(--text-light); line-height: 1.6;
}
.article-disclaimer i { color: var(--gold); margin-right: 6px; }

.article-cta {
    margin-top: 40px; padding: 32px 34px; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy), var(--navy-medium));
    color: #fff; display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.article-cta h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.article-cta p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.article-cta .btn { flex-shrink: 0; }

@media (max-width: 680px) {
    .article-hero h1 { font-size: 1.9rem; }
    .article-body { margin-top: 32px; }
    .article-lead { font-size: 1.12rem; }
}

/* ===== QUICK PICKS (ticker lookup shortcuts) ===== */
.quick-picks { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 6px; }
.quick-picks .qp-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-right: 2px; }
.qp-chip {
    font-family: var(--font); font-size: 0.8rem; font-weight: 700;
    padding: 6px 14px; border-radius: 50px; cursor: pointer;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75); transition: var(--transition);
}
.qp-chip:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.4); color: var(--gold); }

/* ===== STOCK EXPLORER (theme tabs + grid) ===== */
.theme-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.theme-tab {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-size: 0.85rem; font-weight: 600;
    padding: 9px 16px; border-radius: 50px; cursor: pointer;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65); transition: var(--transition);
}
.theme-tab:hover { background: rgba(255,255,255,0.08); color: #fff; }
.theme-tab.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.theme-stock {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: var(--transition);
}
.theme-stock:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.theme-stock .ts-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.theme-stock .ts-sym { font-weight: 800; color: #fff; font-size: 1.02rem; }
.theme-stock .ts-chg { font-weight: 700; font-size: 0.88rem; font-variant-numeric: tabular-nums; }
.theme-stock .ts-name { font-size: 0.78rem; color: rgba(255,255,255,0.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 8px; }
.theme-stock .ts-bottom { display: flex; align-items: center; justify-content: space-between; }
.theme-stock .ts-px { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-variant-numeric: tabular-nums; }
.theme-stock .ts-hi { font-size: 0.72rem; color: var(--gold); }

/* ===== STOCK COMPARISON TOOL ===== */
.compare-box { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.compare-box input {
    flex: 1; min-width: 220px; padding: 12px 16px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05);
    color: #fff; font-size: 0.92rem; font-family: var(--font); outline: none;
    text-transform: uppercase; letter-spacing: 0.4px;
}
.compare-box input::placeholder { text-transform: none; letter-spacing: normal; color: rgba(255,255,255,0.3); }
.compare-box select {
    padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05); color: #fff; font-size: 0.9rem; font-family: var(--font); outline: none;
}
.compare-result { display: none; }
.compare-result.show { display: block; animation: fadeUp 0.4s ease; }

.compare-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 14px; }
.compare-legend .cl-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 700; }
.compare-legend .cl-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.compare-legend .cl-val { font-variant-numeric: tabular-nums; font-weight: 700; }

.compare-chart-wrap { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 16px; }
.compare-chart-wrap svg { width: 100%; height: 260px; display: block; }

.compare-table-wrap { margin-top: 18px; overflow-x: auto; }

/* ===== ACCOUNT (LOGIN / REGISTER) CARD ===== */
.auth-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.auth-tab {
    font-family: var(--font); font-size: 0.88rem; font-weight: 700;
    padding: 9px 18px; border-radius: 50px; cursor: pointer;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6); transition: var(--transition);
}
.auth-tab:hover { background: rgba(255,255,255,0.08); color: #fff; }
.auth-tab.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.auth-form { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; max-width: 640px; }
.auth-form .calc-field { flex: 1; min-width: 200px; margin-bottom: 0; }
.auth-form .calc-field label { margin-bottom: 5px; }
.auth-submit { flex-shrink: 0; }

.auth-welcome { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.auth-welcome b { color: var(--gold); }

.sync-note { margin-top: 14px; font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.sync-note.ok { color: #2ecc71; }
.sync-note.err { color: #e74c3c; }

/* ===== AUTH-GATED SECTIONS (locked until logged in) ===== */
.auth-gated .gate-content { transition: filter 0.25s ease, opacity 0.25s ease; }
.auth-gated.locked .gate-content { filter: blur(5px); opacity: 0.4; pointer-events: none; user-select: none; }
.gate-overlay {
    display: none;
    position: absolute; inset: 0; z-index: 5;
    flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    text-align: center; padding: 24px;
}
.auth-gated.locked .gate-overlay { display: flex; }
.gate-overlay i { font-size: 1.8rem; color: var(--gold); }
.gate-overlay p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 340px; }

/* ===== CALCULATORS ===== */
.calc-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.calc-field label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 5px; }
.calc-field input {
    width: 100%; padding: 11px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05); color: #fff; font-size: 0.92rem; font-family: var(--font); outline: none;
}
.calc-field input:focus { border-color: var(--gold); }
.calc-result { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 16px 18px; }
.calc-row { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.calc-row:last-child { border-bottom: none; }
.calc-row b { color: #fff; font-variant-numeric: tabular-nums; }
.calc-row.highlight { background: rgba(201,168,76,0.08); margin: 4px -18px; padding: 10px 18px; }
.calc-row.highlight b { color: var(--gold); font-size: 1.1rem; }
.calc-warn { margin-top: 10px; font-size: 0.8rem; color: #e67e22; }

@media (max-width: 1024px) {
    .auth-form { flex-direction: column; align-items: stretch; }
    .auth-form .calc-field { min-width: 0; }
}

/* ===== HOME: SECTION HEADING ON DARK BACKGROUND ===== */
.home-section-head { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.home-section-head h2 { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 8px; }
.home-section-head h2 .gold { color: var(--gold); }
.home-section-head p { color: rgba(255,255,255,0.55); font-size: 1rem; }

/* ===== HOME: HOW IT WORKS (3-step) ===== */
.how-it-works { margin-top: 64px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.how-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 26px 24px; position: relative; }
.how-card .how-step { position: absolute; top: 20px; right: 22px; font-size: 2rem; font-weight: 800; color: rgba(201,168,76,0.15); }
.how-card .hc-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(201,168,76,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.how-card h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.how-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===== HOME: MID-PAGE CTA (reinforcement after THE BOARD) ===== */
.mid-cta {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius-lg);
    padding: 30px 36px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.mid-cta .mc-text h4 { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.mid-cta .mc-text p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 480px; }
.mid-cta .btn { flex-shrink: 0; }

/* ===== HOME: WHY TRUST STRIP ===== */
.why-strip { margin-top: 60px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-item { text-align: center; padding: 20px 14px; }
.why-item i { font-size: 1.5rem; color: var(--gold); margin-bottom: 12px; display: block; }
.why-item h5 { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.why-item p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ===== HOME: SIGNUP BANNER — "WHAT'S INSIDE" PREVIEW ===== */
.banner-preview { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.banner-preview li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.banner-preview li i { color: var(--gold); margin-top: 3px; font-size: 0.85rem; }

@media (max-width: 1024px) {
    .how-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .mid-cta { flex-direction: column; text-align: center; }
}
@media (max-width: 680px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== HERO: INLINE EMAIL CAPTURE ===== */
.hero-capture {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px;
}
.hero-capture input {
    padding: 15px 18px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06); color: #fff; font-size: 0.95rem; font-family: var(--font);
    outline: none; transition: var(--transition);
}
.hero-capture input::placeholder { color: rgba(255,255,255,0.35); }
.hero-capture input:focus { border-color: var(--gold); background: rgba(255,255,255,0.09); }
.hero-capture input[name="name"] { flex: 0 1 190px; min-width: 140px; }
.hero-capture input[name="email"] { flex: 1 1 220px; min-width: 200px; }
.hero-capture .btn { flex-shrink: 0; white-space: nowrap; }

.hero-trust {
    display: flex; align-items: center; flex-wrap: wrap; gap: 18px;
    font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 6px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust span i { color: var(--green); font-size: 0.78rem; }
.hero-scroll-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold); font-weight: 600; margin-left: auto; transition: var(--transition);
}
.hero-scroll-link:hover { gap: 10px; color: var(--gold-light); }

.hero-secondary { margin-bottom: 32px; }
.hero-secondary a {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.55); font-size: 0.88rem; font-weight: 600; transition: var(--transition);
}
.hero-secondary a:hover { color: #fff; }

@media (max-width: 680px) {
    .hero-capture { flex-direction: column; }
    .hero-capture input[name="name"], .hero-capture input[name="email"] { flex: 1 1 auto; width: 100%; }
    .hero-capture .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
    .hero-scroll-link { margin-left: 0; }
}
