/**
 * Custom Page CSS
 * Generated by Astra Page Converter Plugin
 * This CSS is specific to this page only
 */

/* CSS Reset for this page */
.custom-page-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.custom-page-wrapper {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}







/* Page-specific styles */
/* Force your background color */
body {
    background-color: #YOUR_COLOR !important;
}

html {
    background-color: #YOUR_COLOR !important;
}

/* Hide Astra header if it's showing */
.site-header {
    display: none !important;
}

.site-footer {
    display: none !important;
}
:root {
            --ink: #1c1917;
            --paper: #f5f2ec;
            --amber: #d97706;
            --amber-dark: #92400e;
            --amber-light: #fef3c7;
            --purple: #5b21b6;
            --purple-mid: #7c3aed;
            --purple-light: #ede9fe;
            --slate: #44403c;
            --muted: #a8a29e;
            --white: #ffffff;
            --card-bg: #ffffff;
            --border: #e5e1d8;
            /* Bridge section palette - warm deep teal instead of black */
            --bridge-bg: #1c3140;
            --bridge-card: #243d50;
            --bridge-border: #2e5068;
            /* Footer palette - warm dark brown instead of black */
            --footer-bg: #1c1917;
            --footer-card: #292524;
            --footer-border: #3c3532;
        }

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

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--paper);
            color: var(--ink);
            line-height: 1.65;
            overflow-x: hidden;
        }

        /* ─── HEADER ─── */
        header {
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(245, 242, 236, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }
        .header-content {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            font-family: 'Syne', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--ink);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .logo span { color: var(--amber); }

        nav { display: flex; align-items: center; gap: 6px; }
        nav a {
            text-decoration: none;
            color: var(--slate);
            font-weight: 500;
            font-size: 14px;
            padding: 8px 14px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover { background: var(--amber-light); color: var(--amber-dark); }

        .btn {
            display: inline-block;
            padding: 11px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: 0.25s;
            letter-spacing: 0.01em;
        }
        .btn-primary { background: var(--amber); color: white; }
        .btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(217,119,6,0.3); }
        .btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
        .btn-outline:hover { background: var(--ink); color: var(--white); }
        .btn-ghost { border: 1.5px solid var(--border); color: var(--slate); background: var(--white); }
        .btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
        .btn-purple { background: var(--purple); color: white; }
        .btn-purple:hover { background: var(--purple-mid); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(109,40,217,0.25); }

        /* ─── HERO ─── */
        .hero {
            padding: 100px 24px 80px;
            max-width: 1160px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 60px;
            align-items: center;
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--amber-dark);
            background: var(--amber-light);
            padding: 6px 14px;
            border-radius: 100px;
            margin-bottom: 24px;
        }
        .hero-eyebrow .dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--amber);
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .hero h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(38px, 4.5vw, 58px);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -1.5px;
            color: var(--ink);
            margin-bottom: 22px;
        }
        .hero h1 em {
            font-style: normal;
            color: var(--purple);
            position: relative;
        }
        .hero h1 em::after {
            content: '';
            position: absolute;
            bottom: 2px; left: 0; right: 0;
            height: 3px;
            background: var(--purple-mid);
            border-radius: 2px;
            opacity: 0.4;
        }

        .hero-sub {
            font-size: 17px;
            color: var(--slate);
            max-width: 480px;
            margin-bottom: 36px;
            line-height: 1.7;
        }
        .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

        .hero-stats {
            display: flex;
            gap: 28px;
            padding-top: 28px;
            border-top: 1px solid var(--border);
        }
        .stat-item { }
        .stat-num {
            font-family: 'Syne', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--ink);
            line-height: 1;
        }
        .stat-label {
            font-size: 12px;
            color: var(--muted);
            margin-top: 4px;
        }

        /* Hero right: ecosystem diagram */
        .hero-visual {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.06);
        }
        .eco-title {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--muted);
            margin-bottom: 20px;
        }
        .eco-node {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            border-radius: 10px;
            margin-bottom: 8px;
            transition: 0.2s;
            cursor: default;
        }
        .eco-node:hover { transform: translateX(4px); }
        .eco-node.bc { background: var(--amber-light); border: 1px solid #fcd34d; }
        .eco-node.pp { background: var(--purple-light); border: 1px solid #c4b5fd; }
        .eco-node.tool { background: var(--paper); border: 1px solid var(--border); }
        .eco-icon {
            width: 38px; height: 38px;
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .eco-icon.bc-i { background: var(--amber); }
        .eco-icon.pp-i { background: var(--purple); }
        .eco-icon.tool-i { background: #e5e7eb; }
        .eco-label {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 13px;
            color: var(--ink);
        }
        .eco-desc { font-size: 12px; color: var(--muted); margin-top: 1px; }

        .eco-arrow {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            font-size: 11px;
            color: var(--muted);
        }
        .eco-arrow-line {
            flex: 1;
            height: 1px;
            background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 4px, transparent 4px, transparent 8px);
        }

        /* ─── BRIDGE SECTION ─── */
        .bridge {
            background: var(--bridge-bg);
            color: var(--white);
            padding: 80px 24px;
            position: relative;
            overflow: hidden;
        }
        .bridge::before {
            content: '';
            position: absolute;
            top: -120px; right: -120px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(217,119,6,0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .bridge::after {
            content: '';
            position: absolute;
            bottom: -80px; left: -80px;
            width: 300px; height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .bridge-inner {
            max-width: 1160px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .bridge h2 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(28px, 3vw, 40px);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }
        .bridge h2 span { color: var(--amber); }
        .bridge p {
            color: #94a3b8;
            font-size: 16px;
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .bridge-cards { display: flex; flex-direction: column; gap: 14px; }
        .bridge-card {
            background: var(--bridge-card);
            border: 1px solid var(--bridge-border);
            border-radius: 12px;
            padding: 20px 22px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: border-color 0.2s, background 0.2s;
        }
        .bridge-card:hover { border-color: var(--amber); background: #2a4a60; }
        .bridge-card-icon {
            font-size: 22px;
            margin-top: 2px;
            flex-shrink: 0;
        }
        .bridge-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }
        .bridge-card p { color: #7a98af; font-size: 13px; margin: 0; }

        /* ─── CLAWDBOT ─── */
        .clawdbot-section {
            padding: 100px 24px;
            max-width: 1160px;
            margin: 0 auto;
        }
        .section-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--purple);
            margin-bottom: 14px;
        }
        .clawdbot-section h2 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(30px, 3.5vw, 46px);
            font-weight: 800;
            letter-spacing: -1.2px;
            line-height: 1.1;
            margin-bottom: 16px;
            max-width: 540px;
        }
        .clawdbot-section > p {
            color: var(--slate);
            font-size: 17px;
            max-width: 520px;
            margin-bottom: 14px;
            line-height: 1.7;
        }
        .tagline {
            font-weight: 500;
            color: var(--muted);
            font-style: italic;
            margin-bottom: 32px !important;
        }

        .clawdbot-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
            margin-top: 56px;
        }

        .terminal {
            background: #0f172a;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.18);
            font-family: 'DM Mono', monospace;
        }
        .terminal-bar {
            background: #1e293b;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dot-red { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
        .dot-yellow { width: 10px; height: 10px; border-radius: 50%; background: #f59e0b; }
        .dot-green { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; }
        .terminal-title { color: #475569; font-size: 12px; margin-left: 8px; }
        .terminal-body { padding: 28px; font-size: 13.5px; line-height: 2; }
        .t-cmd { color: #64748b; }
        .t-cmd::before { content: '> '; color: #475569; }
        .t-ok { color: #34d399; }
        .t-info { color: #38bdf8; }
        .t-bar { color: #818cf8; }
        .t-win { color: #fbbf24; font-weight: 500; }
        .t-cursor {
            display: inline-block;
            width: 8px; height: 14px;
            background: #38bdf8;
            vertical-align: middle;
            animation: blink 1s step-end infinite;
            margin-left: 2px;
        }
        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

        .feature-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
        .feature-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }
        .feature-check {
            width: 22px; height: 22px;
            border-radius: 6px;
            background: var(--purple-light);
            color: var(--purple);
            display: flex; align-items: center; justify-content: center;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .feature-item h4 {
            font-family: 'Syne', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 2px;
        }
        .feature-item p { font-size: 13px; color: var(--muted); }

        /* ─── ECOSYSTEM PRODUCTS ─── */
        .products-section {
            background: var(--white);
            padding: 100px 24px;
            border-top: 1px solid var(--border);
        }
        .products-inner { max-width: 1160px; margin: 0 auto; }
        .products-header { text-align: center; margin-bottom: 56px; }
        .products-header h2 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(28px, 3vw, 42px);
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 12px;
        }
        .products-header p { color: var(--muted); font-size: 16px; }

        .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .product-card {
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 28px;
            transition: 0.25s;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        .product-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
        }
        .product-card.amber::before { background: var(--amber); }
        .product-card.purple::before { background: var(--purple); }
        .product-card.slate::before { background: #64748b; }
        .product-card:hover { border-color: transparent; box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }

        .product-card-icon { font-size: 28px; margin-bottom: 16px; }
        .product-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 17px;
            font-weight: 800;
            margin-bottom: 6px;
        }
        .product-card-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 3px 10px;
            border-radius: 100px;
            margin-bottom: 12px;
        }
        .product-card-tag.amber { background: var(--amber-light); color: var(--amber-dark); }
        .product-card-tag.purple { background: var(--purple-light); color: var(--purple); }
        .product-card-tag.slate { background: #f1f5f9; color: #475569; }
        .product-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
        .product-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--ink);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .product-link:hover { color: var(--amber); }
        .product-link::after { content: '→'; transition: transform 0.2s; }
        .product-link:hover::after { transform: translateX(4px); }

        /* ─── TRUST / NEWS TEASER ─── */
        .news-section {
            padding: 100px 24px;
            max-width: 1160px;
            margin: 0 auto;
        }
        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
        }
        .news-header h2 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(24px, 2.5vw, 34px);
            font-weight: 800;
            letter-spacing: -0.8px;
        }
        .news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
        .news-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            transition: 0.2s;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .news-card:hover { border-color: var(--amber); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
        .news-card.featured { background: var(--bridge-bg); color: var(--white); border-color: transparent; }
        .news-tag {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--amber);
            margin-bottom: 12px;
        }
        .news-card.featured .news-tag { color: #fbbf24; }
        .news-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 10px;
        }
        .news-card.featured h3 { font-size: 18px; }
        .news-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
        .news-card.featured p { color: #9ca3af; }
        .news-meta {
            font-size: 12px;
            color: var(--muted);
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
        }
        .news-card.featured .news-meta { border-top-color: #2e5068; }

        /* ─── CTA BAND ─── */
        .cta-band {
            background: linear-gradient(135deg, var(--purple) 0%, #4c1d95 100%);
            padding: 80px 24px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .cta-band::before {
            content: '';
            position: absolute;
            top: -80px; right: -80px;
            width: 300px; height: 300px;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
        }
        .cta-band::after {
            content: '';
            position: absolute;
            bottom: -60px; left: -60px;
            width: 200px; height: 200px;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
        }
        .cta-band-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
        .cta-band h2 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(28px, 3.5vw, 44px);
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.15;
            margin-bottom: 16px;
        }
        .cta-band p { color: #c4b5fd; font-size: 16px; margin-bottom: 32px; line-height: 1.7; }
        .cta-band-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
        .btn-white { background: white; color: var(--purple); }
        .btn-white:hover { background: var(--amber-light); color: var(--amber-dark); }
        .btn-outline-white { border: 1.5px solid rgba(255,255,255,0.4); color: white; }
        .btn-outline-white:hover { background: rgba(255,255,255,0.1); }

        /* ─── FOOTER ─── */
        footer {
            background: var(--footer-bg);
            color: var(--white);
            padding: 60px 24px 32px;
        }
        .footer-inner {
            max-width: 1160px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        .footer-brand .logo { color: white; }
        .footer-brand p {
            color: #78716c;
            font-size: 14px;
            margin-top: 12px;
            line-height: 1.7;
            max-width: 260px;
        }
        .footer-col h4 {
            font-family: 'Syne', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #a8a29e;
            margin-bottom: 16px;
        }
        .footer-col a {
            display: block;
            color: #78716c;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 10px;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: var(--amber); }
        .footer-bottom {
            border-top: 1px solid var(--footer-border);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .footer-bottom p { color: #57534e; font-size: 13px; }
        .footer-pixel {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #57534e;
            font-size: 13px;
        }
        .footer-pixel a { color: #a78bfa; text-decoration: none; font-weight: 600; }
        .footer-pixel a:hover { color: var(--amber); }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 900px) {
            .hero { grid-template-columns: 1fr; padding: 60px 24px; }
            .hero-visual { display: none; }
            .bridge-inner { grid-template-columns: 1fr; gap: 40px; }
            .clawdbot-grid { grid-template-columns: 1fr; }
            .products-grid { grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }
        @media (max-width: 600px) {
            nav { display: none; }
            .hero-stats { flex-wrap: wrap; gap: 16px; }
            .footer-grid { grid-template-columns: 1fr; }
        }

        /* ─── ANIMATIONS ─── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-eyebrow { animation: fadeUp 0.5s ease both; }
        .hero h1 { animation: fadeUp 0.6s ease 0.1s both; }
        .hero-sub { animation: fadeUp 0.6s ease 0.2s both; }
        .hero-ctas { animation: fadeUp 0.6s ease 0.3s both; }
        .hero-stats { animation: fadeUp 0.6s ease 0.4s both; }

        /* === NAV SPACING FIX === */
        header nav {
        display: flex;
        gap: 24px;
        align-items: center;
       }