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

        :root {
            --gold: #f0a830;
            --gold-soft: #fcd89d;
            --gold-glow: rgba(240, 168, 48, 0.38);
            --amber-deep: #d9750b;
            --bg-deep: #080a10;
            --bg-card: #11141e;
            --bg-card-alt: #0e1018;
            --border-subtle: #232638;
            --border-warm: #3a3224;
            --text-primary: #fef7e8;
            --text-secondary: #c4b99a;
            --text-muted: #8b8068;
            --radius-lg: 28px;
            --radius-md: 18px;
            --radius-full: 50px;
            --transition-fast: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: #06080e;
            color: var(--text-primary);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            letter-spacing: 0.01em;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 26px;
        }

        /* ── Header ── */
        .header {
            background: rgba(8, 10, 16, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(240, 168, 48, 0.14);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 15px 0;
            gap: 16px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 750;
            letter-spacing: -0.8px;
            background: linear-gradient(130deg, #fcd89d, #f0a830, #d9750b);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-decoration: none;
            white-space: nowrap;
            position: relative;
        }
        .logo::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0.5;
            border-radius: 1px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
            font-weight: 500;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #d5cdb8;
            transition: var(--transition-fast);
            font-size: 0.93rem;
            letter-spacing: 0.3px;
            white-space: nowrap;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.25s ease;
            border-radius: 1px;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold-soft);
            text-shadow: 0 0 7px var(--gold-glow);
        }
        .btn-outline-gold {
            background: transparent;
            border: 1.5px solid var(--gold);
            color: var(--gold-soft);
            padding: 9px 22px;
            border-radius: var(--radius-full);
            font-weight: 550;
            transition: var(--transition-fast);
            cursor: pointer;
            font-size: 0.88rem;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.3px;
        }
        .btn-outline-gold:hover {
            background: rgba(240, 168, 48, 0.1);
            box-shadow: 0 0 18px var(--gold-glow);
            border-color: #fcd89d;
        }

        /* ── Hero ── */
        .hero {
            padding: 75px 0 65px;
            background: radial-gradient(ellipse at 75% 15%, #1a1810 0%, #080a10 55%, #05060c 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -160px;
            right: -200px;
            width: 560px;
            height: 560px;
            background: radial-gradient(circle, rgba(240, 168, 48, 0.05) 0%, transparent 68%);
            pointer-events: none;
            border-radius: 50%;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -120px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(217, 117, 11, 0.04) 0%, transparent 65%);
            pointer-events: none;
            border-radius: 50%;
        }
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 44px;
            position: relative;
            z-index: 1;
        }
        .hero-content {
            flex: 1.25;
            min-width: 290px;
        }
        .badge-pill {
            background: rgba(240, 168, 48, 0.1);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border: 1px solid rgba(240, 168, 48, 0.35);
            padding: 7px 18px;
            border-radius: var(--radius-full);
            font-size: 0.76rem;
            font-weight: 550;
            display: inline-block;
            margin-bottom: 22px;
            color: var(--gold-soft);
            letter-spacing: 0.5px;
        }
        .hero-content h1 {
            font-size: clamp(2.1rem, 4.8vw, 3.6rem);
            font-weight: 800;
            line-height: 1.16;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            background: linear-gradient(to right, #fef9ee, #fcd89d, #e8a840);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 88%;
            margin-bottom: 28px;
            border-left: 3px solid var(--gold);
            padding-left: 16px;
            line-height: 1.7;
        }
        .btn-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary-gold {
            background: #1a1408;
            border: 1.5px solid var(--gold);
            color: #fef3d6;
            padding: 13px 28px;
            border-radius: 44px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition-fast);
            box-shadow: 0 0 10px rgba(240, 168, 48, 0.18);
            display: inline-block;
            font-size: 0.94rem;
            letter-spacing: 0.3px;
        }
        .btn-primary-gold:hover {
            background: rgba(240, 168, 48, 0.09);
            border-color: #fcd89d;
            box-shadow: 0 0 24px var(--gold-glow);
            transform: scale(1.025);
        }
        .btn-dark-subtle {
            background: #1c1f2a;
            color: #c5bfaa;
            padding: 13px 28px;
            border-radius: 44px;
            font-weight: 500;
            text-decoration: none;
            border: 1px solid #2e3142;
            transition: var(--transition-fast);
            font-size: 0.94rem;
            display: inline-block;
        }
        .btn-dark-subtle:hover {
            border-color: #5c5240;
            background: #222538;
            color: #e8dcc4;
        }
        .hero-mockup {
            flex: 0.85;
            background: #0c0e16;
            border-radius: 40px;
            border: 1px solid #25283a;
            box-shadow: 0 28px 44px -16px rgba(0, 0, 0, 0.75);
            overflow: hidden;
            min-width: 270px;
            max-width: 420px;
        }
        .mock-chat {
            padding: 16px 14px 20px;
            background: #090b14;
        }
        .mock-header-bar {
            display: flex;
            justify-content: space-between;
            padding: 0 4px 12px;
            color: #8b8068;
            font-size: 0.68rem;
            border-bottom: 1px solid #232638;
            letter-spacing: 0.4px;
        }
        .mock-msg-item {
            background: #11141e;
            margin: 12px 0;
            padding: 11px 13px;
            border-radius: 16px;
            border-left: 3px solid var(--gold);
        }
        .msg-name {
            font-weight: 700;
            color: #e0d3b8;
            font-size: 0.82rem;
        }
        .msg-text {
            font-size: 0.78rem;
            color: #b0a58e;
            margin-top: 2px;
        }
        .encrypt-tag {
            font-size: 0.64rem;
            color: #4ade80;
            display: inline-block;
            margin-top: 3px;
            letter-spacing: 0.3px;
        }

        /* ── Trust Bar ── */
        .trust-bar {
            background: #04060c;
            padding: 24px 0;
            border-bottom: 1px solid #1a1c2a;
        }
        .trust-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
            text-align: center;
        }
        .trust-item h4 {
            font-size: 1.7rem;
            font-weight: 700;
            background: linear-gradient(140deg, #c4b99a, #f0d89c);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .trust-item span {
            font-size: 0.78rem;
            color: var(--text-muted);
            letter-spacing: 0.4px;
        }

        /* ── Sections ── */
        .feat-section {
            padding: 72px 0;
            background: #070910;
        }
        .section-title {
            text-align: center;
            font-size: clamp(1.7rem, 3.2vw, 2.3rem);
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
            color: #fef7e8;
        }
        .section-desc {
            text-align: center;
            color: #9b8f76;
            max-width: 620px;
            margin: 0 auto 48px;
            font-size: 0.96rem;
            line-height: 1.6;
        }
        .feat-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
            gap: 24px;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            border: 1px solid var(--border-subtle);
            transition: var(--transition-fast);
            position: relative;
            overflow: hidden;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .card:hover {
            border-color: #5c4a28;
            box-shadow: 0 16px 32px -12px rgba(240, 168, 48, 0.16);
            transform: translateY(-2px);
        }
        .card:hover::before {
            opacity: 0.8;
        }
        .card-icon {
            font-size: 2.3rem;
            margin-bottom: 16px;
            display: block;
        }
        .card h3 {
            font-size: 1.12rem;
            font-weight: 700;
            margin-bottom: 7px;
            color: #f0e4cc;
        }
        .card p {
            font-size: 0.88rem;
            color: #9b8f76;
            line-height: 1.55;
        }
        .card ul {
            list-style: none;
            margin-top: 6px;
        }
        .card ul li {
            font-size: 0.83rem;
            color: #b0a58e;
            padding: 3px 0;
            padding-left: 15px;
            position: relative;
        }
        .card ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
            font-size: 0.7rem;
            top: 5px;
        }

        /* ── Audience ── */
        .audience-section {
            padding: 66px 0;
            background: #090b14;
            border-top: 1px solid #151826;
            border-bottom: 1px solid #151826;
        }
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
            gap: 20px;
        }
        .audience-card {
            background: #0f111c;
            border-radius: 22px;
            padding: 24px 20px;
            border: 1px solid #1c2034;
            text-align: center;
            transition: var(--transition-fast);
        }
        .audience-card:hover {
            border-color: #4a3d28;
            background: #131621;
        }
        .audience-card .icon-large {
            font-size: 2.6rem;
            display: block;
            margin-bottom: 10px;
        }
        .audience-card h4 {
            font-weight: 700;
            color: #e8dcc4;
            margin-bottom: 5px;
            font-size: 0.98rem;
        }
        .audience-card p {
            font-size: 0.82rem;
            color: #8e826e;
        }

        /* ── Compare Table ── */
        .compare-section {
            padding: 72px 0;
            background: #070910;
        }
        .compare-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 20px;
            border: 1px solid #1c2034;
        }
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
            font-size: 0.9rem;
        }
        .compare-table th,
        .compare-table td {
            padding: 14px 18px;
            text-align: center;
            border-bottom: 1px solid #1c2034;
        }
        .compare-table th {
            background: #0d0f18;
            color: #e8dcc4;
            font-weight: 650;
            letter-spacing: 0.3px;
            font-size: 0.85rem;
        }
        .compare-table td {
            color: #b0a58e;
            background: #0c0e16;
        }
        .compare-table .highlight-col {
            background: rgba(240, 168, 48, 0.05);
            color: #f0d89c;
            font-weight: 600;
        }
        .compare-table .check-gold {
            color: #f0a830;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .compare-table .cross-muted {
            color: #5c5040;
        }

        /* ── Link Cards ── */
        .link-cards-section {
            padding: 72px 0;
            background: #090b14;
            border-top: 1px solid #151826;
        }
        .link-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
            gap: 20px;
        }
        .link-card {
            background: #0f111c;
            border-radius: 26px;
            padding: 26px 20px;
            border: 1px solid #1c2034;
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .link-card:hover {
            border-color: #5c4a28;
            box-shadow: 0 10px 26px -10px rgba(240, 168, 48, 0.2);
            transform: translateY(-2px);
        }
        .link-card .lc-icon {
            font-size: 2rem;
        }
        .link-card h4 {
            font-weight: 700;
            color: #f0e4cc;
            font-size: 1rem;
        }
        .link-card p {
            font-size: 0.82rem;
            color: #9b8f76;
            flex: 1;
        }
        .link-card .lc-arrow {
            font-weight: 600;
            color: var(--gold);
            font-size: 0.82rem;
            letter-spacing: 0.4px;
        }

        /* ── Download Entry Cards ── */
        .download-entries {
            padding: 72px 0;
            background: #070910;
        }
        .dl-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 18px;
        }
        .dl-card {
            background: #0f111c;
            border-radius: 22px;
            padding: 22px 18px;
            border: 1px solid #1c2034;
            text-align: center;
            transition: var(--transition-fast);
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .dl-card:hover {
            border-color: #5c4a28;
            box-shadow: 0 8px 22px -8px rgba(240, 168, 48, 0.18);
            transform: translateY(-1px);
        }
        .dl-card .dl-icon {
            font-size: 2.2rem;
            display: block;
            margin-bottom: 8px;
        }
        .dl-card h4 {
            font-weight: 700;
            color: #f0e4cc;
            font-size: 0.95rem;
            margin-bottom: 4px;
        }
        .dl-card p {
            font-size: 0.78rem;
            color: #8e826e;
        }
        .dl-card .dl-tag {
            display: inline-block;
            margin-top: 8px;
            background: rgba(240, 168, 48, 0.12);
            color: var(--gold-soft);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* ── Testimonials ── */
        .testimonial-section {
            padding: 66px 0;
            background: #090b14;
            border-top: 1px solid #151826;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
        }
        .testimonial-card {
            background: #0f111c;
            border-radius: 22px;
            padding: 22px 20px;
            border: 1px solid #1c2034;
            position: relative;
        }
        .testimonial-card .quote-mark {
            font-size: 2.8rem;
            color: var(--gold);
            opacity: 0.3;
            line-height: 1;
            position: absolute;
            top: 10px;
            left: 16px;
            pointer-events: none;
        }
        .testimonial-card .t-text {
            font-size: 0.87rem;
            color: #c0b496;
            margin: 12px 0 14px;
            padding-left: 6px;
            line-height: 1.6;
        }
        .testimonial-card .t-author {
            font-weight: 700;
            color: #e8dcc4;
            font-size: 0.83rem;
        }
        .testimonial-card .t-role {
            font-size: 0.73rem;
            color: #7a6f5a;
        }

        /* ── FAQ ── */
        .faq-section {
            padding: 66px 0;
            background: #070910;
            border-top: 1px solid #151826;
        }
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .faq-item {
            background: #0f111c;
            border-radius: 18px;
            padding: 18px 20px;
            border: 1px solid #1c2034;
            transition: var(--transition-fast);
        }
        .faq-item:hover {
            border-color: #4a3d28;
        }
        .faq-item h4 {
            font-weight: 650;
            color: #f0e4cc;
            font-size: 0.94rem;
            margin-bottom: 6px;
        }
        .faq-item p {
            font-size: 0.84rem;
            color: #9b8f76;
            line-height: 1.55;
        }

        /* ── CTA ── */
        .cta-block {
            background: linear-gradient(100deg, #100e08, #06070f);
            border-top: 1px solid #232030;
            padding: 58px 0;
            text-align: center;
        }
        .cta-block h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fef7e8;
        }
        .cta-block p {
            color: #9b8f76;
            margin-bottom: 22px;
            font-size: 0.96rem;
        }

        /* ── SEO Content ── */
        .seo-content {
            padding: 60px 0 70px;
            background: #05070d;
            border-top: 1px solid #151826;
        }
        .seo-content .prose {
            max-width: 840px;
            margin: 0 auto;
            color: #a89b7c;
            font-size: 0.92rem;
            line-height: 1.85;
        }
        .seo-content .prose h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e8dcc4;
            margin: 32px 0 12px;
            letter-spacing: -0.2px;
        }
        .seo-content .prose h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #d5c9a8;
            margin: 22px 0 9px;
        }
        .seo-content .prose p {
            margin-bottom: 13px;
        }
        .seo-content .prose strong {
            color: #e0d3b8;
            font-weight: 600;
        }
        .seo-content .prose .highlight-box {
            background: #0f111c;
            border-left: 3px solid var(--gold);
            padding: 15px 18px;
            border-radius: 0 14px 14px 0;
            margin: 18px 0;
            font-style: italic;
            color: #c8bc9e;
        }

        /* ── Footer ── */
        .footer {
            background: #030509;
            padding: 44px 0 24px;
            border-top: 1px solid #151826;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 34px;
        }
        .footer-col h5 {
            font-weight: 600;
            color: #c8bc9e;
            margin-bottom: 9px;
            font-size: 0.87rem;
            letter-spacing: 0.3px;
        }
        .footer-col a {
            color: #7a6f5a;
            text-decoration: none;
            font-size: 0.82rem;
            display: block;
            margin-bottom: 5px;
            transition: var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--gold-soft);
        }
        .copyright {
            text-align: center;
            margin-top: 36px;
            color: #4a4236;
            font-size: 0.76rem;
            letter-spacing: 0.3px;
        }

        /* ── Responsive ── */
        @media (max-width: 780px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .nav-links {
                gap: 14px;
                font-size: 0.82rem;
            }
            .hero {
                padding: 44px 0 44px;
            }
            .hero-grid {
                gap: 28px;
            }
            .hero-mockup {
                max-width: 100%;
            }
            .btn-group {
                flex-direction: column;
                align-items: flex-start;
            }
            .trust-grid {
                justify-content: center;
                gap: 18px;
            }
            .seo-content .prose {
                font-size: 0.87rem;
            }
            .compare-table {
                font-size: 0.78rem;
            }
            .compare-table th,
            .compare-table td {
                padding: 10px 10px;
            }
        }
        @media (max-width: 480px) {
            .nav-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                gap: 10px;
                flex-wrap: wrap;
            }
            .container {
                padding: 0 14px;
            }
            .card,
            .audience-card,
            .link-card,
            .testimonial-card,
            .dl-card,
            .faq-item {
                padding: 18px 14px;
            }
            .hero-desc {
                max-width: 100%;
            }
        }