/* Varox marketing site — shared styles (home + blog base). */
        /* Landing: dark SaaS — navy mesh, indigo + teal glows (modern conversion layout) */
        :root {
            --bg-deep: #070a12;
            --bg: #0c1018;
            --bg-card: rgba(18, 22, 34, 0.72);
            --bg-card-hover: rgba(28, 32, 48, 0.85);
            --bg-elevated: rgba(255, 255, 255, 0.04);
            --text: #fafafa;
            --text-muted: #a1a1aa;
            --border: rgba(255, 255, 255, 0.08);
            --accent: #6366f1;
            --accent-hover: #818cf8;
            --accent-soft: rgba(99, 102, 241, 0.18);
            --teal: #2dd4bf;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
            --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.45);
            --radius: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            /* Hero headline (independent from header bar height) */
            --hero-h1-size: clamp(2.5rem, 6.75vw, 4.5rem);
            /* varox-logo.png: layout slot + scale so the mark reads clearly (large on screen) */
            --logo-header-layout-height: 3.55rem;
            --logo-header-scale: 2.35;
        }

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

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg-deep);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            position: relative;
            /* iOS safe area (notch / home indicator) */
            padding-left: env(safe-area-inset-left, 0px);
            padding-right: env(safe-area-inset-right, 0px);
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background:
                radial-gradient(ellipse 120% 70% at 50% -25%, rgba(99, 102, 241, 0.28), transparent 55%),
                radial-gradient(ellipse 80% 50% at 95% 35%, rgba(45, 212, 191, 0.09), transparent 50%),
                radial-gradient(ellipse 70% 45% at 5% 85%, rgba(99, 102, 241, 0.12), transparent 50%),
                var(--bg-deep);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Marketing hyperlinks — readable contrast on dark backgrounds (#070a12, cards) */
        a:link {
            color: #7c8cff;
        }

        a:visited {
            color: #8b5cf6;
        }

        a:hover {
            color: #a5b4fc;
            text-decoration: underline;
        }

        a.logo:link,
        a.logo:visited,
        a.logo:hover,
        a.footer-brand:link,
        a.footer-brand:visited,
        a.footer-brand:hover {
            color: var(--text);
            text-decoration: none;
        }

        a.cta-button:hover,
        a.cta-button-white:hover,
        a.cta-button-large:hover {
            text-decoration: none;
        }

        a.cta-button:link,
        a.cta-button:visited {
            color: #fff !important;
        }

        a.cta-button.btn-secondary:link,
        a.cta-button.btn-secondary:visited {
            color: var(--text) !important;
        }

        a.cta-button.btn-secondary:hover {
            color: var(--text) !important;
        }

        a.cta-button-white:link,
        a.cta-button-white:visited {
            color: var(--accent) !important;
        }
        
        /* Header — slim bar; logo draws larger via transform (overflow visible).
           Exclude in-article headers (e.g. .blog-header) so blog posts are not treated as fixed nav chrome. */
        header:not(.blog-header) {
            background: rgba(7, 10, 18, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 0.875rem 0;
            padding-top: max(0.875rem, env(safe-area-inset-top, 0px));
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            overflow: visible;
            transition: box-shadow 0.25s ease, background 0.25s ease;
        }

        header:not(.blog-header).is-scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
            background: rgba(7, 10, 18, 0.92);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            color: var(--text);
            text-decoration: none;
            overflow: visible;
        }

        .logo img {
            height: var(--logo-header-layout-height);
            width: auto;
            max-width: min(640px, 90vw);
            object-fit: contain;
            object-position: left center;
            transform: scale(var(--logo-header-scale));
            transform-origin: left center;
            filter: drop-shadow(0 2px 14px rgba(99, 102, 241, 0.28));
            will-change: transform;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }
        
        .nav-links a,
        .nav-links a:link,
        .nav-links a:visited {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.9375rem;
            transition: color 0.2s ease;
        }
        
        .nav-links a.nav-signin,
        .nav-links a.nav-signin:link,
        .nav-links a.nav-signin:visited {
            color: var(--text-muted);
            font-weight: 500;
        }

        .nav-links a:hover:not(.cta-button) {
            color: #a5b4fc;
            text-decoration: underline;
        }

        .nav-links a.cta-button {
            background: linear-gradient(135deg, var(--accent-hover), var(--accent));
            color: #fff !important;
            padding: 0.55rem 1.35rem;
            border-radius: 9999px;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
        }

        .nav-links a.cta-button:hover {
            background: linear-gradient(135deg, #a5b4fc, var(--accent-hover));
            color: #fff !important;
            box-shadow: 0 6px 28px rgba(99, 102, 241, 0.45);
        }
        
        /* Hero */
        .hero {
            padding: 8.25rem 0 3rem;
            text-align: center;
            color: var(--text);
            background: transparent;
            border-bottom: none;
        }

        .hero-inner {
            max-width: 52rem;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: var(--hero-h1-size);
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: 1.35rem;
            color: var(--text);
            line-height: 1.12;
            border-bottom: none;
            display: block;
        }

        .hero h1 .accent {
            background: linear-gradient(135deg, #c4b5fd 0%, var(--accent) 45%, #22d3ee 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-lead {
            font-size: clamp(1.05rem, 2vw, 1.2rem);
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.65;
            max-width: 38rem;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            align-items: center;
            margin-bottom: 1.75rem;
        }

        .hero-subtext {
            font-size: 0.8125rem;
            color: var(--text-muted);
            margin-bottom: 0;
            max-width: 36rem;
            margin-left: auto;
            margin-right: auto;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1rem 1.25rem;
            text-align: left;
            backdrop-filter: blur(8px);
        }

        .hero-trust-line {
            font-size: 0.9375rem;
            color: rgba(250, 250, 250, 0.78);
            margin: 0 auto 0.85rem;
            max-width: 34rem;
            font-weight: 500;
            letter-spacing: 0.01em;
            line-height: 1.5;
        }

        .hero-note {
            font-size: 0.8125rem;
            color: rgba(161, 161, 170, 0.88);
            max-width: 36rem;
            margin: 0 auto;
            line-height: 1.55;
        }

        .cta-button--subtle {
            padding: 0.55rem 1.15rem;
            font-size: 0.875rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.04);
            box-shadow: none;
        }

        .cta-button--subtle:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--accent-hover), var(--accent));
            color: #fff !important;
            padding: 0.8rem 1.65rem;
            text-decoration: none;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.9375rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: none;
            margin: 0;
            box-shadow: 0 4px 24px rgba(99, 102, 241, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text) !important;
            border: 1px solid var(--border);
            box-shadow: none;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.14);
            color: var(--text) !important;
        }

        /* Product preview / app mockup */
        .product-preview {
            padding: 0 0 4rem;
        }

        .preview-container {
            max-width: 1120px;
        }

        .preview-window {
            border-radius: var(--radius-xl);
            border: 1px solid var(--border);
            background: linear-gradient(180deg, rgba(22, 26, 40, 0.95) 0%, rgba(12, 16, 24, 0.98) 100%);
            box-shadow: var(--shadow-soft), 0 0 0 1px rgba(99, 102, 241, 0.06), 0 40px 80px -20px rgba(0, 0, 0, 0.6);
            overflow: hidden;
        }

        .preview-chrome {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 14px 18px;
            border-bottom: 1px solid var(--border);
            background: rgba(0, 0, 0, 0.25);
        }

        .preview-chrome span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
        }

        .preview-chrome span:nth-child(1) {
            background: #f87171;
        }

        .preview-chrome span:nth-child(2) {
            background: #fbbf24;
        }

        .preview-chrome span:nth-child(3) {
            background: #4ade80;
        }

        .preview-body {
            display: grid;
            grid-template-columns: 220px 1fr;
            min-height: 320px;
        }

        .preview-body--screenshot {
            display: block;
            min-height: 0;
        }

        .preview-screenshot {
            width: 100%;
            height: auto;
            display: block;
            vertical-align: middle;
        }

        /* App screenshot carousel */
        .preview-carousel-wrap {
            display: flex;
            flex-direction: column;
            background: rgba(0, 0, 0, 0.12);
        }

        .preview-carousel {
            display: flex;
            flex-direction: column;
            min-height: 0;
        }

        .preview-carousel-viewport {
            overflow: hidden;
        }

        .preview-carousel-track {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
        }

        .preview-carousel-slide {
            flex: 0 0 100%;
            min-width: 100%;
        }

        .preview-carousel-toolbar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.85rem;
            padding: 0.9rem 1rem;
            background: rgba(0, 0, 0, 0.22);
            border-top: 1px solid var(--border);
            flex-shrink: 0;
        }

        .preview-carousel-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            min-width: 2.75rem;
            min-height: 2.75rem;
            border-radius: 9999px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text);
            cursor: pointer;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .preview-carousel-btn:hover {
            background: rgba(99, 102, 241, 0.2);
            border-color: rgba(99, 102, 241, 0.35);
            color: #fff;
        }

        .preview-carousel-btn:focus-visible {
            outline: 2px solid var(--accent-hover);
            outline-offset: 2px;
        }

        .preview-carousel-dots {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .preview-carousel-dots button {
            width: 2.75rem;
            height: 2.75rem;
            padding: 0;
            border: none;
            border-radius: 9999px;
            background: transparent;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .preview-carousel-dots button::after {
            content: "";
            width: 0.55rem;
            height: 0.55rem;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.22);
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .preview-carousel-dots button:hover::after {
            background: rgba(255, 255, 255, 0.38);
        }

        .preview-carousel-dots button[aria-selected="true"]::after {
            background: var(--accent-hover);
            transform: scale(1.25);
        }

        .preview-carousel-dots button:focus-visible {
            outline: 2px solid var(--accent-hover);
            outline-offset: 2px;
        }

        .preview-caption {
            margin: 0;
            padding: 0.65rem 1rem 0;
            text-align: center;
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 0.01em;
            line-height: 1.45;
        }

        @media (max-width: 768px) {
            .preview-carousel-toolbar {
                padding: 0.75rem 0.65rem;
                gap: 0.5rem;
            }

            .preview-carousel-btn {
                width: 2.25rem;
                height: 2.25rem;
            }

            .preview-body {
                grid-template-columns: 1fr;
            }

            .preview-sidebar {
                display: none;
            }
        }

        .preview-sidebar {
            border-right: 1px solid var(--border);
            padding: 1rem;
            background: rgba(0, 0, 0, 0.2);
        }

        .preview-search {
            height: 32px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border);
            margin-bottom: 1.25rem;
        }

        .preview-nav-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

        .preview-tree {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .preview-tree strong {
            color: var(--text);
            font-weight: 600;
        }

        .preview-canvas {
            position: relative;
            min-height: 320px;
            overflow: hidden;
        }

        .preview-scene {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.35), transparent 45%),
                radial-gradient(circle at 70% 60%, rgba(45, 212, 191, 0.15), transparent 40%),
                radial-gradient(circle at 50% 100%, rgba(79, 70, 229, 0.25), transparent 55%),
                linear-gradient(165deg, #0f1420 0%, #12182a 50%, #0a0e18 100%);
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(0.5px);
        }

        .shape-1 {
            width: 120px;
            height: 120px;
            left: 18%;
            top: 22%;
            background: linear-gradient(135deg, rgba(129, 140, 248, 0.9), rgba(99, 102, 241, 0.4));
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.35);
        }

        .shape-2 {
            width: 80px;
            height: 80px;
            right: 28%;
            top: 18%;
            border-radius: 18px;
            transform: rotate(12deg);
            background: linear-gradient(145deg, rgba(45, 212, 191, 0.5), rgba(34, 211, 238, 0.15));
            box-shadow: 0 16px 48px rgba(45, 212, 191, 0.2);
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            right: 8%;
            bottom: -20%;
            background: linear-gradient(200deg, rgba(99, 102, 241, 0.25), transparent);
            opacity: 0.8;
        }

        .preview-panel {
            position: absolute;
            right: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            width: 140px;
            padding: 12px;
            border-radius: 12px;
            background: rgba(12, 16, 28, 0.85);
            border: 1px solid var(--border);
            backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
        }

        .preview-panel-title {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .preview-cube {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 10px;
            background: linear-gradient(145deg, #818cf8, var(--accent));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }

        .preview-footer-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            padding: 10px;
            border-top: 1px solid var(--border);
            background: rgba(0, 0, 0, 0.25);
            font-size: 12px;
            color: var(--text-muted);
        }

        .preview-footer-bar i {
            opacity: 0.65;
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background: transparent;
        }

        .section-title {
            text-align: center;
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 2.5rem;
            color: var(--text);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 2rem;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            box-shadow: var(--shadow-card);
            backdrop-filter: blur(12px);
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-soft), 0 0 0 1px rgba(99, 102, 241, 0.15);
            border-color: rgba(99, 102, 241, 0.25);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1rem;
            opacity: 0.95;
        }
        
        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .feature-card p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.9375rem;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .step {
            text-align: center;
            padding: 2rem;
        }
        
        .step-number {
            width: 56px;
            height: 56px;
            background: var(--accent);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
        }
        
        .step h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .step p {
            color: var(--text-muted);
            font-size: 0.9375rem;
        }
        
        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: transparent;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
        }
        
        .benefit-icon {
            font-size: 1.35rem;
            color: var(--accent);
            margin-top: 0.2rem;
        }
        
        .benefit-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
        
        .benefit-content p {
            color: var(--text-muted);
            font-size: 0.9375rem;
        }

        /* Why teams choose Varox */
        .trust-choose-section {
            padding: 72px 0;
            background: transparent;
            border-bottom: 1px solid var(--border);
        }

        .trust-choose-list {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            max-width: 760px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.85rem 2.5rem;
        }

        .trust-choose-item {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            color: var(--text-muted);
            font-size: 0.9375rem;
            line-height: 1.45;
        }

        .trust-choose-item i {
            color: var(--teal);
            margin-top: 0.2rem;
            font-size: 0.8rem;
        }

        /* Pricing summary */
        .pricing-section {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 920px;
            margin: 0 auto 1.75rem;
        }

        .pricing-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-card);
            backdrop-filter: blur(12px);
        }

        .pricing-card--pro {
            border-color: rgba(99, 102, 241, 0.38);
            box-shadow: var(--shadow-card), 0 0 0 1px rgba(99, 102, 241, 0.1);
        }

        .pricing-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 0.4rem;
        }

        .pricing-price {
            font-size: clamp(1.65rem, 3.5vw, 2rem);
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.03em;
            margin-bottom: 1.25rem;
        }

        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-card li {
            position: relative;
            padding: 0.38rem 0 0.38rem 1.35rem;
            color: var(--text-muted);
            font-size: 0.9375rem;
            line-height: 1.45;
        }

        .pricing-card li::before {
            content: "\2713";
            position: absolute;
            left: 0;
            color: var(--teal);
            font-weight: 700;
        }

        .pricing-footnote {
            text-align: center;
            font-size: 0.8125rem;
            color: var(--text-muted);
            max-width: 40rem;
            margin: 0 auto 1.5rem;
            line-height: 1.5;
        }

        .pricing-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            justify-content: center;
            align-items: center;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #312e81 0%, var(--accent) 42%, #0d9488 100%);
            text-align: center;
            color: #fff;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 255, 255, 0.12), transparent);
            pointer-events: none;
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }
        
        .cta-section h2 {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.05rem;
            margin-bottom: 2rem;
            opacity: 0.92;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button-white {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #fff;
            color: var(--accent) !important;
            padding: 0.75rem 1.75rem;
            text-decoration: none;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.9375rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 14px rgba(0,0,0,0.2);
        }
        
        .cta-button-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.25);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid var(--border);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        
        .about-text h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .about-text p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-size: 0.9375rem;
        }
        
        .about-text ul {
            list-style: none;
            padding: 0;
        }
        
        .about-text ul li {
            padding: 0.5rem 0;
            color: var(--text-muted);
            position: relative;
            padding-left: 1.5rem;
            font-size: 0.9375rem;
        }
        
        .about-text ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .about-stats .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
        }
        
        .about-stats .stat-item h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        
        .about-stats .stat-item p {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.875rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: transparent;
        }
        
        .faq-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            margin-bottom: 1rem;
            padding: 1.5rem 1.75rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
        }
        
        .faq-item h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text);
        }
        
        .faq-item p {
            color: var(--text-muted);
            line-height: 1.65;
            font-size: 0.9375rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid var(--border);
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .contact-info p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.7;
            font-size: 0.9375rem;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        
        .contact-item i {
            font-size: 1.35rem;
            color: var(--accent);
            margin-top: 0.2rem;
        }
        
        .contact-item h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
        
        .contact-item p {
            color: var(--text-muted);
            margin: 0;
            font-size: 0.9375rem;
        }

        .contact-cta {
            text-align: center;
            padding: 2rem;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
        }
        
        .contact-cta h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .contact-cta p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 0.9375rem;
        }
        
        /* Footer */
        footer {
            background: rgba(4, 6, 12, 0.95);
            color: var(--text);
            padding: 3rem 0 max(1rem, env(safe-area-inset-bottom, 0px));
            text-align: center;
            border-top: 1px solid var(--border);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            margin-bottom: 1rem;
            text-decoration: none;
            color: var(--text);
        }

        .footer-brand:hover {
            color: var(--text);
        }

        .footer-brand img {
            height: 4.05rem;
            width: auto;
            max-width: min(420px, 85vw);
            object-fit: contain;
            object-position: left center;
            transform: scale(1.48);
            transform-origin: left center;
            filter: drop-shadow(0 2px 10px rgba(99, 102, 241, 0.22));
        }
        
        .footer-section h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .footer-section p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.875rem;
        }

        .footer-section a {
            text-decoration: none;
            line-height: 1.6;
            font-size: 0.875rem;
        }

        .footer-section a:hover {
            text-decoration: underline;
        }

        /* Footer link columns: collapsible on small screens */
        .footer-section--brand {
            text-align: inherit;
        }

        details.footer-accordion {
            text-align: left;
        }

        .footer-accordion__summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text);
            user-select: none;
        }

        .footer-accordion__summary::-webkit-details-marker {
            display: none;
        }

        .footer-accordion__summary span {
            flex: 1;
            text-align: left;
        }

        .footer-accordion__icon {
            font-size: 0.65rem;
            opacity: 0.75;
            transition: transform 0.2s ease;
            flex-shrink: 0;
        }

        details.footer-accordion[open] .footer-accordion__icon {
            transform: rotate(180deg);
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 0.5rem;
                text-align: left;
            }

            .footer-section--brand {
                text-align: center;
                padding-bottom: 1rem;
                margin-bottom: 0.5rem;
                border-bottom: 1px solid var(--border);
            }

            details.footer-accordion {
                border-bottom: 1px solid var(--border);
                padding-bottom: 0.35rem;
                margin-bottom: 0.35rem;
            }

            details.footer-accordion:last-of-type {
                border-bottom: none;
                margin-bottom: 0;
                padding-bottom: 0;
            }
        }

        @media (min-width: 769px) {
            .footer-accordion__icon {
                display: none !important;
            }

            .footer-accordion__summary {
                cursor: default;
                justify-content: flex-start;
            }
        }
        
        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 1rem;
            color: var(--text-muted);
            font-size: 0.8125rem;
        }

        /* Barely visible tier note (legal/clarity without competing with main copy) */
        .tier-hint {
            font-size: 0.6875rem;
            font-weight: 400;
            color: rgba(161, 161, 170, 0.42);
            letter-spacing: 0.02em;
            line-height: 1.45;
            max-width: 36rem;
            margin: 0 auto 0.65rem;
        }

        .tier-hint a {
            text-underline-offset: 2px;
        }

        .tier-hint a:link {
            color: #7c8cff;
        }

        .tier-hint a:visited {
            color: #8b5cf6;
        }

        .tier-hint a:hover {
            color: #a5b4fc;
        }

        .tier-hint--inline {
            margin: 0.65rem 0 0;
            max-width: none;
            text-align: left;
        }

        @media (max-width: 768px) {
            .tier-hint {
                font-size: 0.65625rem;
                padding: 0 0.5rem;
            }

            .tier-hint--inline {
                padding: 0;
            }
        }
        
        /* Blog Content */
        .blog-content {
            padding: 40px 0;
            background: var(--bg);
        }
        
        .back-button {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 0.6rem 1.25rem;
            border-radius: 9999px;
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 2rem;
            transition: background 0.2s ease;
        }
        
        .back-button:hover {
            background: var(--accent-hover);
        }
        
        .full-blog-post {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .full-blog-post h1 {
            color: var(--text);
            font-size: 2.25rem;
            margin-bottom: 1rem;
            letter-spacing: -0.03em;
        }
        
        .full-blog-post h2 {
            color: var(--text);
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        .full-blog-post h3 {
            color: var(--accent);
            font-size: 1.2rem;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }
        
        .full-blog-post .meta {
            color: var(--text-muted);
            font-size: 0.875rem;
            margin-bottom: 2rem;
        }
        
        .full-blog-post .highlight {
            background: rgba(60, 80, 224, 0.12);
            padding: 1rem 1.25rem;
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1rem 0;
            color: var(--text-muted);
        }
        
        .full-blog-post ul, .full-blog-post ol {
            margin: 1rem 0;
            padding-left: 2rem;
        }
        
        .full-blog-post li {
            margin: 0.5rem 0;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
        }
        
        .comparison-table th, .comparison-table td {
            border: 1px solid var(--border);
            padding: 12px;
            text-align: left;
        }
        
        .comparison-table th {
            background: var(--bg-card);
            font-weight: 600;
            color: var(--text);
        }
        
        .comparison-table td {
            color: var(--text-muted);
            background: var(--bg);
        }
        
        .cta {
            background: var(--accent-soft);
            border: 1px solid rgba(60, 80, 224, 0.25);
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            margin: 2rem 0;
            text-align: center;
        }
        
        .full-blog-post .cta .cta-button {
            margin-top: 1rem;
        }

        /* Responsive Design */
        .hero-cta-optional {
            display: inline-flex;
        }

        @media (max-width: 768px) {
            :root {
                --hero-h1-size: 3rem;
                --logo-header-layout-height: 3rem;
                --logo-header-scale: 2.05;
            }

            .hero-cta-optional {
                display: none;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            /* Keep product links reachable on small screens (wrap / shrink, no hamburger) */
            .nav-desktop-only {
                display: list-item;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: flex-end;
                row-gap: 0.35rem;
                column-gap: 0.45rem;
                max-width: min(100%, calc(100vw - 5.5rem));
            }

            .nav-links a:not(.cta-button),
            .nav-links a.nav-signin {
                font-size: 0.8125rem;
            }

            .nav-links a.cta-button {
                padding: 0.45rem 0.95rem;
                font-size: 0.8125rem;
            }

            .hero {
                padding-top: 6.25rem;
                padding-bottom: 2.25rem;
            }
            
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-details {
                gap: 1rem;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .features-grid, .steps, .benefits-grid {
                grid-template-columns: 1fr;
            }

            .trust-choose-list,
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Compact trust strip below hero (commercial / Paddle-friendly signals) */
        .trust-strip {
            padding: 0 0 1.75rem;
        }

        .trust-strip-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0.45rem 1.25rem;
            max-width: 56rem;
            margin: 0 auto;
            padding: 0.85rem 1.35rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
        }

        .trust-strip__item {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.8125rem;
            font-weight: 500;
            color: rgba(250, 250, 250, 0.74);
            letter-spacing: 0.02em;
        }

        .trust-strip__item i {
            color: var(--teal);
            font-size: 0.72rem;
            opacity: 0.95;
        }

        @media (max-width: 768px) {
            .trust-strip-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .features-lead {
            text-align: center;
            font-size: 0.8125rem;
            color: var(--text-muted);
            max-width: 42rem;
            margin: -1.25rem auto 0;
            line-height: 1.55;
        }

        .pricing-price-suffix {
            font-size: 0.95rem;
            font-weight: 600;
            opacity: 0.85;
        }
        
        .schema-markup {
            display: none;
        }