        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --cyan: #22d3ee;
            --cyan-soft: #a5f3fc;
            --cyan-glow: rgba(34, 211, 238, 0.35);
            --bg-deep: #05070a;
            --bg-card: #0e131f;
            --border-subtle: #1e2a3e;
            --text-primary: #eef2ff;
            --text-secondary: #9ca8bf;
            --text-muted: #6c86a3;
            --radius-lg: 28px;
            --radius-full: 60px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
            background-color: #0a0c12;
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ── Header ── */
        .header {
            background: rgba(10, 12, 18, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(56, 189, 248, 0.12);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 16px 0;
            gap: 18px;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: -1px;
            background: linear-gradient(120deg, #a5f3fc, #22d3ee);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-decoration: none;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            font-weight: 500;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #cbd5e6;
            transition: var(--transition-fast);
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--cyan);
            text-shadow: 0 0 6px var(--cyan-glow);
        }
        .btn-outline-light {
            background: transparent;
            border: 1px solid var(--cyan);
            color: var(--cyan);
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-weight: 500;
            transition: var(--transition-fast);
            cursor: pointer;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-block;
        }
        .btn-outline-light:hover {
            background: rgba(34, 211, 238, 0.1);
            box-shadow: 0 0 10px var(--cyan-glow);
        }

        /* ── Hero ── */
        .page-hero {
            padding: 70px 0 40px;
            text-align: center;
            background: radial-gradient(circle at 50% 0%, #11161f, #05070a);
            border-bottom: 1px solid #1e293b;
        }
        .page-hero h1 {
            font-size: clamp(2rem, 4.5vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(to right, #f0f9ff, #7dd3fc);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 12px;
        }
        .page-hero .subtitle {
            font-size: 1.1rem;
            color: #8a99b4;
            max-width: 620px;
            margin: 0 auto;
        }

        /* ── Platform Sections ── */
        .platform-section {
            padding: 70px 0;
            background: #05080f;
            border-bottom: 1px solid #111826;
        }
        .platform-section.alt-bg {
            background: #080b14;
        }
        .platform-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .platform-grid.reverse {
            flex-direction: row-reverse;
        }
        .platform-text {
            flex: 1;
            min-width: 260px;
        }
        .platform-text h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #dce6f5;
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }
        .platform-text p {
            font-size: 0.95rem;
            color: #9aaebe;
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .platform-text strong {
            color: #cbd5e6;
            font-weight: 600;
        }
        .platform-visual {
            flex: 0.8;
            min-width: 220px;
            text-align: center;
        }
        .device-mock {
            background: #0f111a;
            border-radius: 36px;
            border: 1px solid #1e293b;
            padding: 24px 20px;
            display: inline-block;
            box-shadow: 0 20px 36px -16px rgba(0,0,0,0.7);
        }
        .device-icon {
            font-size: 4rem;
            margin-bottom: 10px;
            filter: drop-shadow(0 0 10px rgba(34,211,238,0.3));
        }
        .device-label {
            font-weight: 700;
            color: #a5f3fc;
            font-size: 1rem;
            letter-spacing: 0.4px;
        }

        /* ── Sync Mechanism ── */
        .sync-section {
            padding: 70px 0;
            background: #060910;
            border-bottom: 1px solid #111826;
        }
        .sync-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }
        .sync-card {
            background: #0d111c;
            border-radius: 20px;
            padding: 24px 18px;
            border: 1px solid #1a2436;
            text-align: center;
            transition: var(--transition-fast);
        }
        .sync-card:hover {
            border-color: #33475e;
            background: #101622;
        }
        .sync-icon {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        .sync-card h4 {
            font-weight: 700;
            color: #dce6f5;
            margin-bottom: 6px;
        }
        .sync-card p {
            font-size: 0.85rem;
            color: #7e90ab;
        }

        /* ── Creative Download Entry ── */
        .download-entry {
            padding: 60px 0;
            background: #05080f;
            text-align: center;
            border-top: 1px solid #111826;
        }
        .entry-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 28px;
        }
        .entry-card {
            background: #0e131f;
            border: 1px solid #1e2a3e;
            border-radius: 24px;
            padding: 20px 28px;
            text-decoration: none;
            color: #cbd5e6;
            font-weight: 600;
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        .entry-card:hover {
            border-color: var(--cyan);
            box-shadow: 0 8px 20px -8px rgba(34,211,238,0.2);
            color: #fff;
        }
        .entry-card span {
            font-size: 1.4rem;
        }

        /* ── CTA ── */
        .cta-block {
            background: linear-gradient(95deg, #0b1120, #03070f);
            border-top: 1px solid #1e2a3a;
            padding: 60px 0;
            text-align: center;
        }
        .cta-block h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .cta-block p {
            color: #8a99b4;
            margin-bottom: 22px;
        }
        .btn-primary-glow {
            background: #0f172a;
            border: 1.5px solid var(--cyan);
            color: #e2efff;
            padding: 12px 30px;
            border-radius: 44px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition-fast);
            box-shadow: 0 0 8px rgba(34,211,238,0.15);
            display: inline-block;
        }
        .btn-primary-glow:hover {
            background: rgba(34,211,238,0.08);
            border-color: #67e8f9;
            box-shadow: 0 0 20px var(--cyan-glow);
            transform: scale(1.02);
        }

        /* ── Footer ── */
        .footer {
            background: #020408;
            padding: 50px 0 28px;
            border-top: 1px solid #111826;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 38px;
        }
        .footer-col h5 {
            font-weight: 600;
            color: #b9c8df;
            margin-bottom: 10px;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
        }
        .footer-col a {
            color: #6c86a3;
            text-decoration: none;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 6px;
            transition: var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--cyan);
        }
        .copyright {
            text-align: center;
            margin-top: 42px;
            color: #4c617b;
            font-size: 0.8rem;
        }

        @media (max-width: 780px) {
            .platform-grid {
                flex-direction: column !important;
                gap: 28px;
            }
            .page-hero h1 {
                font-size: 1.9rem;
            }
            .nav-links {
                gap: 16px;
            }
        }
        @media (max-width: 480px) {
            .nav-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            .container {
                padding: 0 16px;
            }
            .device-mock {
                padding: 16px 12px;
            }
        }