        /* ── @import Fonts ── */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cal+Sans&family=Sora:wght@400;600;700;800&display=swap');
        @import url('/css/tokens.css');

        /* ── PART 1 — DESIGN TOKENS MAPPING ── */
        :root {
            --font-display: 'Cal Sans', 'Sora', -apple-system, sans-serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            --font-mono: ui-monospace, 'SF Mono', monospace;

            --ink: var(--gray-900);
            --surface: var(--bg);
            --card: var(--white);
            --brand: var(--brand-600);
            --brand-hover: var(--brand-500);
            --brand-light: var(--brand-100);
            --brand-muted: var(--sidebar-active-bg);
            --slate: var(--text-secondary);
            --slate-light: var(--text-muted);
            --line: var(--border);
            --dark-bg: var(--gray-950);
            --dark-card: var(--gray-900);
            --dark-line: var(--gray-800);
            
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.07);
            --shadow-md: 0 2px 8px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.10);
            --shadow-lg: 0 4px 16px rgba(0,0,0,0.08), 0 24px 64px rgba(0,0,0,0.14);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --font-body-fallback: 'Inter', sans-serif;
        }

        /* ── PART 2 — RESET & BASE TYPOGRAPHY ── */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--surface);
            color: var(--ink);
            font-family: var(--font-body);
            -webkit-font-smoothing: antialiased;
        }

        body {
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Typography Classes */
        .text-hero {
            font-size: clamp(48px, 6.5vw, 82px);
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -0.04em;
            color: var(--ink);
        }

        .text-h2 {
            font-size: clamp(32px, 4vw, 52px);
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.03em;
            color: var(--ink);
        }

        .text-h3 {
            font-size: 20px;
            font-family: var(--font-body);
            font-weight: 600;
            line-height: 1.3;
            color: var(--ink);
        }

        .text-body {
            font-size: 16px;
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.75;
            color: var(--slate);
        }

        .text-body-lg {
            font-size: 18px;
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--slate);
        }

        .text-label {
            font-size: 11px;
            font-family: var(--font-mono);
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--brand);
            display: inline-block;
        }

        .text-mono {
            font-family: var(--font-mono);
            font-weight: 600;
        }

        /* ── PART 3 — GLOBAL LAYOUT ── */
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        .section {
            padding: 120px 0;
            position: relative;
        }

        @media (max-width: 768px) {
            .section {
                padding: 72px 0;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 56px 0;
            }
        }

        /* Button Primitives */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            border: 1px solid transparent;
            cursor: pointer;
            text-decoration: none;
            letter-spacing: 0.01em;
            transition: all 200ms ease;
        }

        .btn-brand {
            background-color: var(--brand);
            color: white;
        }

        .btn-brand:hover {
            background-color: var(--brand-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(200, 75, 49, 0.35);
        }

        .btn-outline {
            background-color: transparent;
            border-color: var(--line);
            color: var(--ink);
        }

        .btn-outline:hover {
            background-color: rgba(13, 13, 13, 0.03);
            border-color: var(--ink);
            transform: translateY(-1px);
        }

        /* ── PART 4 — NAVBAR ── */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 68px;
            z-index: 1000;
            background-color: transparent;
            transition: all 200ms ease;
            display: flex;
            align-items: center;
        }

        .navbar.scrolled {
            background-color: rgba(247, 245, 242, 0.88);
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border-bottom: 1px solid var(--line);
        }

        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .brand-logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--ink);
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
        }

        .brand-logo-link svg {
            color: var(--brand);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--slate);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 200ms ease;
        }

        .nav-links a:hover {
            color: var(--ink);
            background-color: var(--brand-muted);
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1100;
        }

        .hamburger svg {
            color: var(--ink);
        }

        /* Mobile Menu Slide Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-color: white;
            z-index: 1050;
            display: flex;
            flex-direction: column;
            padding: 32px;
            transform: translateX(100%);
            transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-menu-overlay.open {
            transform: translateX(0);
        }

        .mobile-menu-close {
            align-self: flex-end;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            margin-bottom: 40px;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .mobile-nav-links a {
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            font-weight: 500;
            color: var(--ink);
            text-decoration: none;
        }

        .mobile-nav-links a:hover {
            color: var(--brand);
        }

        .mobile-menu-cta {
            margin-top: 48px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        @media (max-width: 1024px) {
            .nav-links, .nav-cta {
                display: none;
            }
            .hamburger {
                display: block;
            }
        }

        /* ── PART 5 — HERO SECTION ── */
        .hero {
            background-color: var(--surface);
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 68px;
            position: relative;
            overflow: hidden;
        }

        .hero-glow-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(ellipse at 70% 40%, rgba(200,75,49,0.07) 0%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 52% 48%;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--brand-light);
            border: 1px solid rgba(200,75,49,0.2);
            border-radius: 100px;
            padding: 6px 14px 6px 10px;
            margin-bottom: 24px;
        }

        .hero-pulse-dot {
            width: 8px;
            height: 8px;
            background-color: var(--brand);
            border-radius: 50%;
            animation: pulse-ring 2s ease-in-out infinite;
        }

        @keyframes pulse-ring {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.85); }
        }

        .hero h1 {
            margin-bottom: 20px;
        }

        .hero-desc {
            max-width: 460px;
            margin-bottom: 36px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 52px;
        }

        .hero-actions .btn-brand {
            padding: 14px 28px;
            font-size: 15px;
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 20px rgba(200,75,49,0.30);
        }

        .hero-actions .btn-brand:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(200, 75, 49, 0.45);
        }

        .hero-walkthrough-btn {
            background: none;
            border: none;
            color: var(--ink);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: color 200ms ease;
        }

        .hero-walkthrough-btn span.arrow {
            display: inline-block;
            transition: transform 200ms ease;
        }

        .hero-walkthrough-btn:hover {
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-color: var(--brand);
        }

        .hero-walkthrough-btn:hover span.arrow {
            transform: translateX(4px);
        }

        .hero-trust-strip {
            border-top: 1px solid var(--line);
            padding-top: 24px;
        }

        .hero-trust-label {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            color: var(--slate-light);
            margin-bottom: 14px;
        }

        .hero-logo-strip {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }

        .hero-logo-placeholder {
            background-color: var(--line);
            border-radius: 4px;
            height: 24px;
            opacity: 0.6;
        }

        /* Hero Right: SVG iPad & Staggered Cards */
        .hero-visual-wrapper {
            position: relative;
            width: 100%;
            max-width: 520px;
            margin: 0 auto;
        }

        /* SVG Staggered Slide In Animations */
        .svg-floating-card {
            opacity: 0;
            transform-origin: center;
        }

        .svg-animate-card-a {
            animation: card-slide-a 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 800ms;
        }

        .svg-animate-card-b {
            animation: card-slide-b 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 1100ms;
        }

        .svg-animate-card-c {
            animation: card-slide-c 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 1400ms;
        }

        @keyframes card-slide-a {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes card-slide-b {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes card-slide-c {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 1100px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 56px;
                text-align: center;
                padding-bottom: 80px;
            }
            .hero-desc {
                margin: 0 auto 36px;
            }
            .hero-actions {
                justify-content: center;
            }
            .hero-trust-strip {
                max-width: 480px;
                margin: 0 auto;
            }
            .hero-logo-strip {
                justify-content: center;
            }
        }

        /* ── PART 6 — PROBLEM SOLUTION BRIDGE ── */
        .bridge {
            background-color: var(--brand-muted);
            border-top: 1px solid rgba(200, 75, 49, 0.1);
            border-bottom: 1px solid rgba(200, 75, 49, 0.1);
        }

        .bridge-header {
            text-align: center;
            margin-bottom: 56px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .bridge-header h2 {
            margin-top: 4px;
        }

        .bridge-header .subtext {
            color: var(--slate);
            font-size: 18px;
            max-width: 440px;
        }

        .bridge-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        .bridge-card {
            background-color: var(--card);
            border-radius: var(--radius-md);
            padding: 32px;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: transform 200ms ease;
        }

        .bridge-card:hover {
            transform: translateY(-2px);
        }

        .bridge-icon-container {
            width: 48px;
            height: 48px;
            background-color: var(--brand-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
        }

        .bridge-card h3 {
            font-size: 20px;
        }

        .bridge-footer {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .bridge-line {
            width: 48px;
            height: 2px;
            background-color: var(--brand);
            border-radius: 2px;
            margin-top: 48px;
        }

        .bridge-transition-text {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--brand);
        }

        @media (max-width: 1024px) {
            .bridge-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* ── PART 7 — FEATURES TABBED SHOWCASE ── */
        .features {
            background-color: var(--card);
        }

        .features-header {
            text-align: center;
            margin-bottom: 64px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 64px;
            align-items: start;
        }

        .features-tab-nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: sticky;
            top: 100px;
        }

        .tab-btn {
            background: none;
            border: none;
            text-align: left;
            padding: 14px 20px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 500;
            color: var(--slate);
            cursor: pointer;
            border-left: 3px solid transparent;
            transition: all 150ms ease;
            width: 100%;
            border-radius: 0 8px 8px 0;
        }

        .tab-btn:hover {
            color: var(--ink);
            background-color: var(--brand-muted);
        }

        .tab-btn.tab-active {
            background-color: var(--brand-light);
            color: var(--ink);
            border-left-color: var(--brand);
            padding-left: 17px;
            font-weight: 600;
        }

        .tab-panel {
            display: none;
            opacity: 0;
            transition: opacity 300ms ease;
        }

        .tab-panel.panel-active {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 48px;
            align-items: center;
            opacity: 1;
        }

        .panel-illustration {
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            background-color: var(--surface);
            padding: 16px;
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            width: 100%;
        }

        .panel-copy {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .panel-copy h3 {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700;
        }

        .panel-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .panel-bullets li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            color: var(--slate);
        }

        .panel-bullet-marker {
            width: 8px;
            height: 8px;
            background-color: var(--brand);
            border-radius: 2px;
            flex-shrink: 0;
            margin-top: 6px;
        }

        @media (max-width: 1100px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .features-tab-nav {
                flex-direction: row;
                position: static;
                overflow-x: auto;
                padding-bottom: 8px;
                scrollbar-width: none;
            }
            .features-tab-nav::-webkit-scrollbar {
                display: none;
            }
            .tab-btn {
                border-left: none;
                border-bottom: 3px solid transparent;
                white-space: nowrap;
                padding: 12px 16px;
                text-align: center;
                border-radius: 4px 4px 0 0;
            }
            .tab-btn.tab-active {
                border-left-color: transparent;
                border-bottom-color: var(--brand);
                padding-left: 16px;
            }
            .tab-panel.panel-active {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .panel-illustration {
                order: -1;
            }
        }

        /* ── PART 8 — METRICS STRIP ── */
        .metrics {
            background-color: var(--dark-bg);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .metrics-glow-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(circle at 50% 50%, rgba(200, 75, 49, 0.12) 0%, transparent 60%);
        }

        .metrics-inner {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .metric-cell {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .metric-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 600;
            color: var(--brand);
            line-height: 1.1;
        }

        .metric-label {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 8px;
        }

        .metrics-divider {
            width: 1px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.08);
        }

        @media (max-width: 768px) {
            .metrics-inner {
                flex-direction: column;
                gap: 40px;
            }
            .metrics-divider {
                display: none;
            }
        }

        /* ── PART 9 — HOW IT WORKS ── */
        .process {
            background-color: var(--surface);
        }

        .process-header {
            text-align: center;
            margin-bottom: 64px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
        }

        .process-step-card {
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
            gap: 20px;
        }

        .process-icon-circle {
            width: 80px;
            height: 80px;
            background-color: var(--brand-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
        }

        .process-step-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--brand);
            letter-spacing: 0.1em;
            margin-top: 4px;
        }

        .process-step-card h3 {
            font-size: 20px;
            font-weight: 600;
        }

        /* Connecting Dashed Line SVGs */
        .process-connector-svg-1 {
            position: absolute;
            top: 40px;
            left: 80px;
            width: calc(100% - 160px);
            height: 16px;
            z-index: 1;
            pointer-events: none;
        }

        @media (max-width: 1024px) {
            .process-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .process-connector-svg-1 {
                display: none;
            }
        }

        /* ── PART 10 — TESTIMONIALS ── */
        .testimonials {
            background-color: var(--card);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 64px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background-color: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 32px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 24px;
        }

        .star-row {
            display: flex;
            gap: 4px;
            color: var(--brand);
        }

        .testimonial-quote {
            font-family: var(--font-display);
            font-size: 20px;
            line-height: 1.6;
            color: var(--ink);
        }

        .testimonial-divider {
            height: 1px;
            background-color: var(--line);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--brand-light);
            color: var(--brand);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-meta {
            display: flex;
            flex-direction: column;
        }

        .testimonial-name {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
        }

        .testimonial-role {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            color: var(--slate);
        }

        @media (max-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ── PART 11 — PRICING ── */
        .pricing {
            background-color: var(--surface);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 64px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: start;
            margin-bottom: 32px;
        }

        .price-card {
            background-color: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 32px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            position: relative;
            transition: transform 200ms ease;
        }

        .price-card:hover {
            transform: translateY(-2px);
        }

        .price-card.featured {
            border: 2px solid var(--brand);
            transform: scale(1.02);
            box-shadow: var(--shadow-lg);
            z-index: 2;
        }

        .price-card.enterprise-dark {
            background-color: var(--dark-card);
            border: 1px solid var(--dark-line);
            color: white;
        }

        .price-popular-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--brand);
            color: white;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.1em;
            padding: 5px 16px;
            border-radius: 100px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .price-plan-name {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--slate);
            margin-bottom: 8px;
        }

        .enterprise-dark .price-plan-name {
            color: rgba(255,255,255,0.5);
        }

        .price-value-container {
            margin-bottom: 24px;
        }

        .price-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 600;
            color: var(--ink);
        }

        .price-card.featured .price-amount {
            color: var(--brand);
        }

        .price-card.enterprise-dark .price-amount {
            color: white;
        }

        .price-subtext {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            color: var(--slate);
        }

        .enterprise-dark .price-subtext {
            color: rgba(255,255,255,0.4);
        }

        .price-divider {
            height: 1px;
            background-color: var(--line);
            margin: 24px 0;
        }

        .enterprise-dark .price-divider {
            background-color: var(--dark-line);
        }

        .price-features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 40px;
            flex: 1;
        }

        .price-feature-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: var(--slate);
        }

        .featured .price-feature-row {
            color: var(--ink);
        }

        .enterprise-dark .price-feature-row {
            color: rgba(255,255,255,0.75);
        }

        .price-feature-row svg {
            flex-shrink: 0;
        }

        .price-card-btn {
            width: 100%;
            padding: 13px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            cursor: pointer;
            border: 1px solid transparent;
            text-align: center;
            text-decoration: none;
            transition: all 200ms ease;
        }

        .starter-btn {
            border: 1.5px solid var(--brand);
            color: var(--brand);
            background-color: white;
        }

        .starter-btn:hover {
            background-color: var(--brand-light);
        }

        .growth-btn {
            background-color: var(--brand);
            color: white;
        }

        .growth-btn:hover {
            background-color: var(--brand-hover);
        }

        .enterprise-btn {
            border: 1.5px solid rgba(255,255,255,0.2);
            color: white;
            background-color: transparent;
        }

        .enterprise-btn:hover {
            background-color: rgba(255,255,255,0.05);
            border-color: white;
        }

        .pricing-footer-note {
            text-align: center;
            font-size: 14px;
            color: var(--slate);
        }

        @media (max-width: 1100px) {
            .price-card.featured {
                transform: scale(1);
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                max-width: 440px;
                margin: 0 auto 32px;
            }
        }

        /* ── PART 12 — INTEGRATIONS ── */
        .integrations {
            background-color: var(--card);
        }

        .integrations-header {
            text-align: center;
            margin-bottom: 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 48px;
        }

        .integration-tile {
            background-color: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            filter: grayscale(1);
            opacity: 0.65;
            cursor: default;
            transition: all 250ms ease;
        }

        .integration-tile:hover {
            filter: grayscale(0);
            opacity: 1;
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--brand-light);
            transform: translateY(-2px);
        }

        .integration-tile svg {
            width: 40px;
            height: 40px;
            display: block;
        }

        .integration-name {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--slate);
            transition: color 250ms ease;
        }

        .integration-tile:hover .integration-name {
            color: var(--ink);
        }

        @media (max-width: 1024px) {
            .integrations-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .integrations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ── PART 13 — CTA BANNER ── */
        .cta {
            background-color: var(--dark-bg);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
            border-top: 1px solid #222;
        }

        .cta-bg-pattern {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 5;
            max-width: 680px;
            margin: 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .cta-content h2 {
            font-size: clamp(36px, 5vw, 48px);
            color: white;
        }

        .cta-content p {
            color: rgba(255,255,255,0.55);
            font-size: 18px;
            margin-bottom: 20px;
        }

        .cta-content .btn-white {
            font-size: 16px;
            padding: 16px 36px;
            font-weight: 700;
            border-radius: var(--radius-sm);
        }

        .cta-content .btn-white:hover {
            background-color: var(--brand);
            color: white;
            box-shadow: 0 4px 24px rgba(200,75,49,0.4);
            transform: translateY(-2px);
        }

        /* ── PART 14 — FOOTER ── */
        .footer {
            background-color: #0D0D0D;
            color: rgba(255, 255, 255, 0.45);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }

        .footer-brand-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-brand-col .brand-logo-link {
            color: white;
        }

        .footer-tagline {
            font-family: var(--font-display);
            font-size: 16px;
            color: rgba(255, 255, 255, 0.35);
        }

        .social-icons-row {
            display: flex;
            gap: 12px;
            margin-top: 12px;
        }

        .social-icon-btn {
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 200ms ease;
        }

        .social-icon-btn:hover {
            background-color: var(--brand);
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-col h4 {
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links-list a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            transition: color 150ms ease;
        }

        .footer-links-list a:hover {
            color: white;
        }

        .footer-contact-item {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-bottom-bar {
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copyright {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.25);
        }

        .footer-legal-links {
            display: flex;
            gap: 24px;
        }

        .footer-legal-links a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.25);
            text-decoration: none;
            transition: color 150ms ease;
        }

        .footer-legal-links a:hover {
            color: white;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-bottom-bar {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ── PART 15 — SCROLL REVEAL ANIMATIONS ── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
