:root {
            --blue: #0D0A08;
            --near-black: #0D0A08;
            --medium-gray: #6b7280;
            --light-gray: #F5F3EF;
            --border-gray: #f3f4f6;
            --white: #ffffff;
            
            --green: #0D0A08;
            --forest-green: #0D0A08;
            --indigo: #0D0A08;
            --amber: #0D0A08;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--white);
            color: var(--near-black);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            font-weight:  400;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            color: var(--near-black);
            letter-spacing: -0.04em;
            font-weight: 700;
        }

        p {
            color: var(--medium-gray);
            font-weight: 300;
        }

        a {
            text-decoration: none;
            transition: color 0.2s;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 28px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(13, 10, 8, 0.08);
        }

        @media(min-width:768px) {
            nav {
                padding: 0 56px;
            }
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-logo img {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            object-fit: contain;
        }

        .aivorize-wordmark {
            font-family: 'General Sans', 'Inter', sans-serif;
            font-weight: 500;
            font-size: 19px;
            letter-spacing: -0.8px;
            color: #0D0A08 !important;
            -webkit-font-smoothing: antialiased;
        }

        .nav-wordmark {
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--near-black);
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        @media(min-width:768px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-links a {
            font-size: 0.8rem;
            font-weight: 400;
            color: rgba(13, 10, 8, 0.65);
        }

        .nav-links a:hover {
            color: var(--near-black);
        }

        .nav-cta {
            font-size: 0.85rem;
            font-weight: 500;
            color: #F5F3EF;
            background: var(--near-black);
            padding: 8px 18px;
            border-radius: 100px;
        }

        .nav-cta:hover {
            opacity: 0.85;
        }

        /* ── HERO ── */
        .hero {
            max-width: 1100px;
            margin: 0 auto;
            padding: 160px 28px 100px;
            position: relative;
            text-align: left;
        }

        @media(min-width:768px) {
            .hero {
                padding: 160px 56px 120px;
            }
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--medium-gray);
            margin-bottom: 24px;
        }

        .hero-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .hero-h1 {
            font-weight: 700;
            font-size: clamp(3rem, 7vw, 5rem);
            line-height: 1.05;
            letter-spacing: -0.04em;
            color: var(--near-black);
            max-width: 800px;
            margin-bottom: 24px;
        }

        .hero-h1 em {
            font-style: normal;
            color: var(--primary);
        }

        .hero-sub {
            font-size: 1.2rem;
            line-height: 1.6;
            color: var(--medium-gray);
            max-width: 540px;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--near-black);
            color: var(--white);
            padding: 14px 28px;
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, transform 0.2s;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #2d2d30;
            transform: translateY(-1px);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--near-black);
            padding: 14px 28px;
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid var(--border-gray);
            transition: border-color 0.2s, background 0.2s;
        }

        .btn-ghost:hover {
            border-color: var(--medium-gray);
        }

        /* ── STATS BAR ── */
        .stats-bar {
            border-top: 1px solid var(--border-gray);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            background: var(--light-gray);
        }

        .stats-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 0;
        }

        @media(min-width:768px) {
            .stats-inner {
                padding: 0 56px;
            }
        }

        .stat-item {
            flex: 1;
            min-width: 140px;
            padding: 32px 24px;
            border-right: 1px solid var(--border-gray);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--near-black);
            letter-spacing: -0.04em;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--medium-gray);
            font-weight: 400;
        }

        /* ── PRODUCTS / SECTIONS ── */
        .section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 100px 28px;
        }

        @media(min-width:768px) {
            .section {
                padding: 120px 56px;
            }
        }

        .section-tag {
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--medium-gray);
            margin-bottom: 16px;
        }

        .section-heading {
            font-weight: 700;
            font-size: clamp(2rem, 4vw, 2.8rem);
            letter-spacing: -0.04em;
            color: var(--near-black);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .section-sub {
            font-size: 1rem;
            color: var(--medium-gray);
            line-height: 1.6;
            max-width: 500px;
            margin-bottom: 60px;
            font-weight: 300;
        }

        /* Product grid */
        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        @media(min-width:640px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(min-width:1024px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .product-card {
            background: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: 18px;
            padding: 26px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            height: 2.5px;
            background: transparent;
            border-top-left-radius: 18px;
            border-top-right-radius: 18px;
            transition: background 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04), 0 4px 10px rgba(0, 0, 0, 0.02);
        }

        .card-quickslip:hover::before { background: var(--primary); }
        .card-yaryan:hover::before { background: var(--primary); }
        .card-forge:hover::before { background: var(--primary); }
        .card-miniapps:hover::before { background: var(--primary); }

        .card-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
        }

        .card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: var(--light-gray);
        }

        .badge {
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            padding: 4px 10px;
            border-radius: 100px;
        }

        .badge-live {
            background: rgba(16, 185, 129, 0.1);
            color: var(--primary);
        }

        .badge-dev {
            background: rgba(245, 158, 11, 0.1);
            color: var(--primary);
        }

        .badge-soon {
            background: rgba(13, 10, 8, 0.1);
            color: var(--primary);
        }

        .card-body {
            flex: 1;
        }

        .card-name {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--near-black);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .card-tagline {
            font-size: 0.85rem;
            color: var(--medium-gray);
            margin-bottom: 12px;
        }

        .card-desc {
            font-size: 0.9rem;
            color: var(--medium-gray);
            line-height: 1.5;
            font-weight: 300;
        }

        .card-footer {
            margin-top: auto;
        }

        .card-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 500;
            background: var(--light-gray);
            color: var(--near-black);
            transition: background 0.2s;
        }

        .card-cta:hover {
            background: #ebebeb;
        }

        .card-cta-disabled {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 400;
            background: transparent;
            border: 1px solid var(--border-gray);
            color: var(--medium-gray);
            cursor: not-allowed;
        }

        .card-more {
            border: 1px dashed var(--border-gray);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 240px;
            gap: 16px;
            box-shadow: none;
        }

        .card-more:hover {
            transform: none;
            box-shadow: none;
            border-color: #d2d2d7;
        }

        /* Yaryan card */
        .card-yaryan {
            background: #F7F5F2;
        }

        .yaryan-features {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 16px;
        }

        .yaryan-tag {
            font-size: 0.7rem;
            color: var(--primary);
            background: rgba(45, 90, 61, 0.08);
            padding: 4px 10px;
            border-radius: 100px;
            font-weight: 400;
        }

        /* ── MISSION STRIP ── */
        .mission {
            background: var(--near-black);
            position: relative;
            overflow: hidden;
        }

        .mission::after {
            content: '';
            position: absolute;
            top: -300px;
            right: -300px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(13, 10, 8, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .mission-inner {
            max-width: 900px;
            margin: 0 auto;
            padding: 120px 28px;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        @media(min-width:768px) {
            .mission-inner {
                padding: 140px 56px;
            }
        }

        .mission-tag {
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 24px;
        }

        .mission-h2 {
            font-weight: 700;
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: -0.04em;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 32px;
            margin-left: auto;
            margin-right: auto;
        }

        .mission-h2 em {
            font-style: normal;
            color: var(--primary);
        }

        .mission-p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.45);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* ── TOOLS STRIP ── */
        .tools-strip {
            background: var(--light-gray);
            border-top: 1px solid var(--border-gray);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .tools-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 100px 28px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: flex-start;
        }

        @media(min-width:768px) {
            .tools-inner {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                padding: 100px 56px;
            }
        }

        .tools-text h3 {
            font-weight: 700;
            font-size: 1.8rem;
            letter-spacing: -0.04em;
            color: var(--near-black);
            margin-bottom: 12px;
        }

        .tools-text p {
            font-size: 1rem;
            color: var(--medium-gray);
            line-height: 1.5;
            max-width: 480px;
            font-weight: 300;
        }

        /* ── COMPANY STRIP ── */
        .company-strip {
            background: var(--white);
        }

        .company-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 100px 28px;
            display: flex;
            flex-direction: column;
            gap: 28px;
            align-items: flex-start;
        }

        @media(min-width:768px) {
            .company-inner {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                padding: 120px 56px;
            }
        }

        .company-text {
            max-width: 500px;
        }

        .company-text h2 {
            font-weight: 700;
            font-size: 2rem;
            letter-spacing: -0.04em;
            color: var(--near-black);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .company-text p {
            font-size: 1rem;
            color: var(--medium-gray);
            line-height: 1.6;
            font-weight: 300;
        }

        /* ── FOOTER ── */
        footer {
            border-top: 1px solid var(--border-gray);
            background: var(--light-gray);
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 80px 28px 60px;
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        @media(min-width:768px) {
            .footer-inner {
                flex-direction: row;
                justify-content: space-between;
                padding: 80px 56px 60px;
            }
        }

        .footer-brand {
            max-width: 260px;
        }

        .footer-brand-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .footer-brand-row img {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            object-fit: contain;
        }

        .footer-wordmark {
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            font-family: \'Outfit\', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--near-black);
            letter-spacing: -0.02em;
        }

        .footer-desc {
            font-size: 0.85rem;
            color: var(--medium-gray);
            line-height: 1.5;
            font-weight: 300;
        }

        .footer-cols {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

        .footer-col-title {
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--near-black);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a, .footer-links span {
            font-size: 0.85rem;
            color: var(--medium-gray);
            font-weight: 300;
        }

        .footer-links a:hover {
            color: var(--near-black);
        }

        .footer-links .muted {
            opacity: 0.6;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-gray);
            padding: 24px 28px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        @media(min-width:640px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 24px 56px;
            }
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: var(--medium-gray);
            font-weight: 300;
        }

        /* ── ANIMATIONS ── */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger */
        .fade-up:nth-child(1) { transition-delay: 0.0s; }
        .fade-up:nth-child(2) { transition-delay: 0.1s; }
        .fade-up:nth-child(3) { transition-delay: 0.2s; }
        .fade-up:nth-child(4) { transition-delay: 0.3s; }
        .fade-up:nth-child(5) { transition-delay: 0.4s; }
        /* ── FAQ ── */
        .faq-list {
            display: flex;
            flex-direction: column;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-gray);
            padding: 4px 0;
            transition: background 0.2s ease;
        }

        .faq-item:first-child {
            border-top: 1px solid var(--border-gray);
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 24px 4px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--near-black);
            letter-spacing: -0.02em;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-icon {
            position: relative;
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: "";
            position: absolute;
            background: var(--near-black);
            transition: opacity 0.2s ease, transform 0.25s ease;
        }

        .faq-icon::before {
            width: 2px;
            height: 12px;
            top: 3px;
            left: 8px;
        }

        .faq-icon::after {
            width: 12px;
            height: 2px;
            top: 8px;
            left: 3px;
        }

        .faq-item[open] .faq-icon::before {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-item .faq-answer-wrap {
            padding: 0 4px 24px;
            animation: faqFade 0.25s ease;
        }

        @keyframes faqFade {
            from {
                opacity: 0;
                transform: translateY(-4px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-answer {
            font-size: 0.9rem;
            color: var(--medium-gray);
            line-height: 1.65;
            font-weight: 300;
            max-width: 640px;
        }
