        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* 深海蓝主调 + 青绿辅助色 —— 安全·信任·科技 */
            --deep-950: #060f1f;
            --deep-900: #0a1929;
            --deep-800: #0f2440;
            --deep-700: #132f56;
            --deep-600: #1a3f6e;
            --deep-500: #1e5090;
            --deep-400: #2563aa;
            --deep-350: #2f72c4;
            --deep-300: #4a8ed6;
            --deep-200: #7ab0e8;
            --deep-150: #a8cff5;
            --deep-100: #d4e8fa;
            --deep-50: #eaf4fd;
            --deep-25: #f5f9fd;

            --teal-600: #0d6e6e;
            --teal-500: #0e8c8c;
            --teal-400: #0ea5a5;
            --teal-350: #14b8b8;
            --teal-300: #2dd4c4;
            --teal-200: #5eeadb;
            --teal-100: #a7f7f0;
            --teal-50: #e0fcf8;

            --amber-500: #c2780a;
            --amber-400: #e8990f;
            --amber-300: #f5b642;
            --amber-100: #fef3d6;

            --gray-bg: #f8fafb;
            --gray-100: #f1f5f8;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --text-primary: #0f1a2e;
            --text-secondary: #1a2d47;
            --text-tertiary: #2c3f5a;
            --text-muted: #52647a;
            --white: #ffffff;

            --shadow-xs: 0 1px 2px rgba(10, 25, 45, 0.04);
            --shadow-sm: 0 1px 3px rgba(10, 25, 45, 0.06);
            --shadow-md: 0 4px 20px rgba(10, 25, 45, 0.07);
            --shadow-lg: 0 20px 40px -12px rgba(30, 80, 144, 0.16);
            --shadow-xl: 0 28px 50px -16px rgba(15, 36, 64, 0.20);
            --shadow-card: 0 2px 6px rgba(10, 25, 45, 0.03), 0 10px 28px rgba(10, 25, 45, 0.05);
            --shadow-card-hover: 0 4px 12px rgba(10, 25, 45, 0.04), 0 18px 40px rgba(30, 80, 144, 0.10);

            --radius-sm: 14px;
            --radius-md: 18px;
            --radius-lg: 24px;
            --radius-xl: 36px;
            --radius-full: 50%;
            --font-mono: 'SF Mono', 'Cascadia Code', 'Fira Code', 'JetBrains Mono', 'Consolas', monospace;
            --transition-fast: 0.15s ease;
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            background-color: var(--white);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            overflow-x: hidden;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .container-narrow {
            max-width: 880px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 0 0 1px rgba(10, 25, 45, 0.04), var(--shadow-xs);
            transition: box-shadow var(--transition-fast);
        }
        .header.scrolled {
            box-shadow: 0 0 0 1px rgba(10, 25, 45, 0.06), var(--shadow-sm);
        }
        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 13px 0;
            gap: 12px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            text-decoration: none;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #1a3f6e 0%, #2563aa 40%, #0e8c8c 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.05rem;
            letter-spacing: -0.5px;
            box-shadow: 0 4px 14px rgba(30, 80, 144, 0.28);
            position: relative;
        }
        .logo-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 13px;
            border: 2px solid rgba(14, 140, 140, 0.35);
            opacity: 0.7;
            pointer-events: none;
        }
        .logo-text {
            font-size: 1.45rem;
            font-weight: 700;
            letter-spacing: -0.4px;
            color: var(--deep-700);
            text-decoration: none;
        }
        .logo-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--teal-400);
            border-radius: var(--radius-full);
            margin-left: 1px;
            animation: pulse-teal 2.4s ease-in-out infinite;
        }
        @keyframes pulse-teal {
            0%,
            100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.8);
            }
        }
        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
            font-weight: 500;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            transition: color var(--transition-fast);
            font-size: 0.88rem;
            position: relative;
            padding: 5px 0;
            white-space: nowrap;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 0;
            height: 2.5px;
            background: var(--teal-400);
            border-radius: 2px;
            transition: width var(--transition-smooth);
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--deep-500);
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-cta {
            background: var(--deep-500);
            color: white !important;
            padding: 8px 18px !important;
            border-radius: 22px;
            font-weight: 600;
            font-size: 0.82rem !important;
            transition: all var(--transition-smooth) !important;
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(30, 80, 144, 0.26);
            letter-spacing: 0.01em;
        }
        .nav-cta:hover {
            background: var(--deep-600) !important;
            box-shadow: 0 6px 20px rgba(30, 80, 144, 0.36);
            transform: translateY(-1px);
            color: white !important;
        }
        .nav-cta::after {
            display: none !important;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 52px 0 46px;
            background: linear-gradient(172deg, #f5f9fd 0%, #eaf4fd 22%, #e0fcf8 50%, #f8fafb 100%);
            border-bottom: 1px solid #d4e8fa;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -70px;
            width: 440px;
            height: 440px;
            background: radial-gradient(circle, rgba(37, 99, 170, 0.06) 0%, transparent 66%);
            border-radius: var(--radius-full);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -50px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(14, 140, 140, 0.05) 0%, transparent 66%);
            border-radius: var(--radius-full);
            pointer-events: none;
        }
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 36px;
            position: relative;
            z-index: 1;
        }
        .hero-content {
            flex: 1.35;
            min-width: 280px;
        }
        .hero-badge {
            background: var(--deep-100);
            color: var(--deep-600);
            padding: 6px 15px;
            border-radius: 26px;
            font-size: 0.74rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
            border: 1px solid rgba(30, 80, 144, 0.10);
        }
        .hero-badge-icon {
            font-size: 0.9rem;
        }
        .hero-content h1 {
            font-size: 2.85rem;
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.025em;
            margin-bottom: 10px;
            color: var(--deep-900);
        }
        .hero-highlight {
            background: linear-gradient(135deg, #1a3f6e 0%, #2563aa 45%, #0e8c8c 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            position: relative;
            white-space: nowrap;
        }
        .hero-highlight::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 5px;
            background: rgba(14, 140, 140, 0.14);
            border-radius: 3px;
            z-index: -1;
        }
        .hero-subtitle {
            font-size: 1.08rem;
            font-weight: 600;
            color: var(--deep-500);
            margin-bottom: 12px;
            letter-spacing: 0.01em;
        }
        .hero-desc {
            font-size: 0.98rem;
            color: var(--text-tertiary);
            max-width: 88%;
            margin-bottom: 24px;
            line-height: 1.7;
        }
        .cta-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .btn-primary {
            background: var(--deep-500);
            color: white;
            border: none;
            padding: 13px 28px;
            border-radius: 26px;
            font-weight: 600;
            font-size: 0.94rem;
            cursor: pointer;
            transition: all var(--transition-smooth);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            box-shadow: 0 6px 18px rgba(30, 80, 144, 0.26);
            letter-spacing: 0.01em;
        }
        .btn-primary:hover {
            background: var(--deep-600);
            box-shadow: 0 8px 26px rgba(30, 80, 144, 0.36);
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--deep-400);
            color: var(--deep-500);
            padding: 12px 26px;
            border-radius: 26px;
            font-weight: 600;
            font-size: 0.94rem;
            text-decoration: none;
            transition: all var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.01em;
        }
        .btn-outline:hover {
            background: var(--deep-50);
            border-color: var(--deep-350);
            color: var(--deep-700);
            transform: translateY(-2px);
        }
        .hero-mockup {
            flex: 0.75;
            background: #0a1929;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            max-width: 280px;
            width: 100%;
            flex-shrink: 0;
            border: 2px solid #1a3f6e;
            transform: rotate(-1.5deg);
            transition: transform var(--transition-smooth);
        }
        .hero-mockup:hover {
            transform: rotate(0deg);
        }
        .mockup-phone {
            background: #060f1f;
            padding: 11px 8px 13px;
            border-radius: 24px;
        }
        .mockup-status {
            display: flex;
            justify-content: space-between;
            padding: 0 4px 9px;
            color: #a8cff5;
            font-size: 0.6rem;
            letter-spacing: 0.04em;
        }
        .chat-item {
            background: #132f56;
            margin-bottom: 7px;
            padding: 9px 11px;
            border-radius: var(--radius-sm);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background var(--transition-fast);
            border-left: 3px solid transparent;
        }
        .chat-item:nth-child(3) {
            border-left-color: #0ea5a5;
            background: #1a3f5e;
        }
        .chat-item:last-child {
            margin-bottom: 0;
        }
        .chat-name {
            font-weight: 600;
            color: white;
            font-size: 0.78rem;
        }
        .chat-preview {
            font-size: 0.64rem;
            color: #7ab0e8;
            margin-top: 2px;
        }
        .chat-time {
            font-size: 0.56rem;
            color: #7a8aa0;
        }
        .chat-lock {
            font-size: 0.53rem;
            color: #0ea5a5;
            margin-left: 2px;
        }
        .search-bar-mock {
            background: #1a3050;
            border-radius: 18px;
            padding: 5px 11px;
            margin-bottom: 10px;
            color: #7ab0e8;
            font-size: 0.68rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* ===== TRUST STRIP ===== */
        .trust-strip {
            background: var(--white);
            padding: 24px 0;
            border-bottom: 1px solid #e8f0f8;
        }
        .trust-strip-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            align-items: center;
            text-align: center;
        }
        .trust-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }
        .trust-stat-number {
            font-size: 1.65rem;
            font-weight: 700;
            color: var(--deep-500);
            font-family: var(--font-mono);
            letter-spacing: -0.02em;
        }
        .trust-stat-label {
            font-size: 0.76rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .trust-divider {
            width: 1px;
            height: 32px;
            background: #d4e0ed;
            flex-shrink: 0;
        }

        /* ===== SECTION COMMON ===== */
        .section {
            padding: 64px 0;
        }
        .section-alt {
            background: #f8fafb;
        }
        .section-tight {
            padding: 44px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .section-tag {
            display: inline-block;
            font-size: 0.74rem;
            font-weight: 650;
            color: var(--teal-500);
            text-transform: uppercase;
            letter-spacing: 0.07em;
            margin-bottom: 8px;
            background: var(--teal-50);
            padding: 4px 14px;
            border-radius: 18px;
        }
        .section-title {
            text-align: center;
            font-size: 1.95rem;
            font-weight: 750;
            margin-bottom: 8px;
            color: var(--deep-900);
            letter-spacing: -0.015em;
        }
        .section-sub {
            text-align: center;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-size: 0.96rem;
            line-height: 1.6;
        }

        /* ===== FEATURES GRID ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 22px;
        }
        .feature-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 26px 20px;
            transition: all var(--transition-smooth);
            border: 1px solid #dce8f4;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #1a3f6e 0%, #2563aa 40%, #0e8c8c 100%);
            opacity: 0;
            transition: opacity var(--transition-smooth);
            border-radius: 0 0 3px 3px;
        }
        .feature-card:hover {
            border-color: #b8d4f0;
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .feature-card:hover::before {
            opacity: 1;
        }
        .feature-icon {
            font-size: 2.3rem;
            margin-bottom: 12px;
            display: block;
        }
        .feature-card h3 {
            font-size: 1.18rem;
            margin-bottom: 7px;
            font-weight: 680;
            color: var(--deep-800);
            letter-spacing: -0.01em;
        }
        .feature-card p {
            color: var(--text-tertiary);
            line-height: 1.6;
            font-size: 0.88rem;
            flex-grow: 1;
        }
        .feature-card .card-link {
            margin-top: 10px;
            color: var(--teal-500);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.83rem;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap var(--transition-fast);
        }
        .feature-card .card-link:hover {
            gap: 8px;
            color: var(--deep-500);
        }

        /* ===== DOWNLOAD SELECTOR ===== */
        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 16px;
        }
        .download-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 24px 16px;
            text-align: center;
            border: 2px solid #dce8f4;
            text-decoration: none;
            color: var(--text-primary);
            transition: all var(--transition-spring);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 9px;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .download-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(30, 80, 144, 0.03) 100%);
            transition: height var(--transition-smooth);
        }
        .download-card:hover {
            border-color: var(--deep-350);
            box-shadow: 0 10px 28px rgba(30, 80, 144, 0.11);
            transform: translateY(-3px);
        }
        .download-card:hover::after {
            height: 100%;
        }
        .download-card.recommended {
            border-color: var(--teal-400);
            border-width: 2.5px;
            box-shadow: 0 5px 20px rgba(14, 140, 140, 0.13);
        }
        .download-card.recommended::before {
            content: '推荐';
            position: absolute;
            top: 9px;
            right: 9px;
            background: var(--teal-500);
            color: white;
            font-size: 0.68rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 11px;
            letter-spacing: 0.03em;
            z-index: 2;
        }
        .download-icon {
            font-size: 2.4rem;
            position: relative;
            z-index: 1;
        }
        .download-card h4 {
            font-weight: 680;
            color: var(--deep-800);
            font-size: 0.98rem;
            position: relative;
            z-index: 1;
        }
        .download-card .dl-tag {
            font-size: 0.7rem;
            color: var(--text-muted);
            background: var(--deep-50);
            padding: 4px 11px;
            border-radius: 14px;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        .download-card .dl-hint {
            font-size: 0.73rem;
            color: var(--text-muted);
            position: relative;
            z-index: 1;
            line-height: 1.4;
        }

        /* ===== TECH SHOWCASE ===== */
        .tech-showcase {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            align-items: center;
            justify-content: center;
        }
        .tech-visual {
            flex: 0.8;
            min-width: 240px;
            background: var(--deep-900);
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }
        .tech-visual-inner {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }
        .tech-node {
            background: #132f56;
            border-radius: var(--radius-sm);
            padding: 10px 16px;
            color: #d4e8fa;
            font-family: var(--font-mono);
            font-size: 0.76rem;
            width: 80%;
            text-align: center;
            border-left: 3px solid var(--teal-400);
            transition: all var(--transition-fast);
        }
        .tech-node.encrypted {
            border-left-color: #f5b642;
            background: #1a3050;
        }
        .tech-arrow {
            color: var(--teal-300);
            font-size: 1.2rem;
        }
        .tech-info {
            flex: 1;
            min-width: 260px;
        }
        .tech-info h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--deep-800);
            margin-bottom: 10px;
        }
        .tech-info p {
            color: var(--text-tertiary);
            line-height: 1.7;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        /* ===== SEO CONTENT ===== */
        .seo-content {
            padding: 52px 0 44px;
            background: var(--white);
        }
        .seo-content h2 {
            font-size: 1.65rem;
            font-weight: 700;
            color: var(--deep-900);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        .seo-content h3 {
            font-size: 1.2rem;
            font-weight: 650;
            color: var(--deep-600);
            margin: 20px 0 9px;
            letter-spacing: -0.005em;
        }
        .seo-content p {
            color: var(--text-tertiary);
            line-height: 1.8;
            margin-bottom: 12px;
            font-size: 0.93rem;
        }
        .seo-content ul,
        .seo-content ol {
            color: var(--text-tertiary);
            line-height: 1.8;
            margin: 7px 0 14px 18px;
            font-size: 0.91rem;
        }
        .seo-content li {
            margin-bottom: 5px;
        }
        .seo-content strong {
            color: var(--deep-600);
            font-weight: 650;
        }
        .seo-content a {
            color: var(--teal-500);
            text-decoration: underline;
            text-underline-offset: 3px;
            font-weight: 500;
            transition: color var(--transition-fast);
        }
        .seo-content a:hover {
            color: var(--deep-500);
        }
        .seo-content blockquote {
            border-left: 4px solid var(--teal-400);
            padding: 11px 16px;
            margin: 16px 0;
            background: var(--teal-50);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            color: var(--deep-700);
            font-style: italic;
            font-size: 0.9rem;
        }

        /* ===== TECH BADGES ===== */
        .tech-badge-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 9px;
            margin-top: 6px;
        }
        .tech-tag {
            background: rgba(30, 80, 144, 0.04);
            color: var(--deep-500);
            font-family: var(--font-mono);
            padding: 4px 12px;
            border-radius: 18px;
            font-weight: 500;
            font-size: 0.76rem;
            letter-spacing: 0.02em;
            border: 1px solid rgba(30, 80, 144, 0.10);
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        .tech-tag:hover {
            background: rgba(30, 80, 144, 0.08);
            border-color: var(--deep-350);
            color: var(--deep-700);
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 9px;
        }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius-md);
            border: 1px solid #dce8f4;
            overflow: hidden;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-xs);
        }
        .faq-item:hover {
            border-color: #b8d4f0;
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            padding: 16px 18px;
            font-weight: 650;
            color: var(--deep-800);
            display: flex;
            align-items: flex-start;
            gap: 9px;
            font-size: 0.93rem;
            cursor: default;
        }
        .faq-q-mark {
            color: var(--teal-500);
            font-weight: 700;
            flex-shrink: 0;
            font-size: 1.05rem;
            line-height: 1.5;
        }
        .faq-answer {
            padding: 0 18px 14px;
            color: var(--text-tertiary);
            font-size: 0.86rem;
            line-height: 1.7;
            margin: 0 18px;
            border-top: 1px solid #e8f2fb;
            padding-top: 10px;
        }

        /* ===== INNER LINKS ===== */
        .inner-link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 14px;
        }
        .inner-link-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            border: 1px solid #dce8f4;
            text-decoration: none;
            color: var(--text-primary);
            transition: all var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 11px;
            box-shadow: var(--shadow-xs);
        }
        .inner-link-card:hover {
            border-color: var(--teal-350);
            box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);
            transform: translateX(4px);
        }
        .inner-link-arrow {
            flex-shrink: 0;
            font-size: 1.2rem;
            color: var(--teal-500);
            transition: transform var(--transition-smooth);
        }
        .inner-link-card:hover .inner-link-arrow {
            transform: translateX(6px);
        }
        .inner-link-text h4 {
            font-weight: 650;
            color: var(--deep-800);
            margin-bottom: 2px;
            font-size: 0.9rem;
        }
        .inner-link-text p {
            font-size: 0.76rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* ===== TRUST BANNER ===== */
        .trust-banner {
            background: var(--deep-25);
            padding: 48px 0;
        }
        .trust-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        .trust-content h2 {
            font-size: 1.6rem;
            margin-bottom: 12px;
            color: var(--deep-800);
            letter-spacing: -0.01em;
        }
        .trust-content p {
            color: var(--text-tertiary);
            line-height: 1.7;
            font-size: 0.93rem;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--deep-950);
            color: #b8cde0;
            padding: 44px 0 22px;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 28px;
            margin-bottom: 32px;
        }
        .footer-col {
            min-width: 120px;
        }
        .footer-col h4 {
            color: white;
            margin-bottom: 12px;
            font-weight: 600;
            font-size: 0.82rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 8px;
        }
        .footer-col a {
            color: #a8cff5;
            text-decoration: none;
            transition: color var(--transition-fast);
            font-size: 0.82rem;
        }
        .footer-col a:hover {
            color: white;
        }
        .footer-brand {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 7px;
            letter-spacing: -0.3px;
        }
        .footer-brand-dot {
            display: inline-block;
            width: 5px;
            height: 5px;
            background: var(--teal-400);
            border-radius: var(--radius-full);
            margin-left: 2px;
            vertical-align: middle;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #1a3050;
            padding-top: 20px;
            font-size: 0.76rem;
            color: #8aa0b8;
        }
        .copyright a {
            color: #a8cff5;
            text-decoration: none;
        }
        .copyright a:hover {
            color: white;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 960px) {
            .hero-content h1 {
                font-size: 2.1rem;
            }
            .hero-desc {
                max-width: 100%;
            }
            .hero-grid {
                gap: 26px;
            }
            .hero-mockup {
                max-width: 230px;
                margin: 0 auto;
            }
            .nav-links {
                gap: 12px;
                font-size: 0.8rem;
            }
            .section-title {
                font-size: 1.55rem;
            }
            .trust-strip-grid {
                gap: 16px;
            }
            .trust-divider {
                display: none;
            }
            .seo-content h2 {
                font-size: 1.35rem;
            }
        }
        @media (max-width: 680px) {
            .hero-content h1 {
                font-size: 1.7rem;
            }
            .hero-desc {
                font-size: 0.88rem;
            }
            .hero-mockup {
                max-width: 200px;
            }
            .hero-grid {
                flex-direction: column;
                text-align: center;
            }
            .hero-desc {
                max-width: 100%;
            }
            .cta-group {
                justify-content: center;
            }
            .container {
                padding: 0 16px;
            }
            .nav-links {
                gap: 8px;
                font-size: 0.74rem;
            }
            .nav-cta {
                padding: 6px 13px !important;
                font-size: 0.74rem !important;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .download-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .inner-link-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                gap: 18px;
            }
            .section {
                padding: 40px 0;
            }
            .seo-content {
                padding: 32px 0;
            }
            .section-title {
                font-size: 1.35rem;
            }
            .logo-text {
                font-size: 1.15rem;
            }
            .tech-showcase {
                flex-direction: column;
            }
        }
        @media (max-width: 420px) {
            .download-grid {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 1.45rem;
            }
            .hero-mockup {
                max-width: 170px;
            }
            .btn-primary,
            .btn-outline {
                padding: 10px 18px;
                font-size: 0.82rem;
            }
            .nav-links {
                gap: 6px;
                font-size: 0.68rem;
            }
            .feature-card {
                padding: 18px 14px;
            }
        }