:root {
            --bg-primary: #050505;
            --bg-secondary: #0a0a0a;
            --bg-card: #111111;
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --text-muted: #555555;
            --accent-orange: #ff8c42;
            --accent-red: #ff6b35;
            --accent-violet: #7c3aed;
            --gradient-warm: linear-gradient(135deg, #ff5e3a 0%, #ff8c42 50%, #ffb347 100%);
            --gradient-warm-violet: linear-gradient(45deg, #ff8c42 0%, #7c3aed 100%);
            --gradient-glow: radial-gradient(ellipse at center, rgba(255, 140, 60, 0.2) 0%, transparent 60%);
            --border-color: #1a1a1a;
            --font-display: 'Plus Jakarta Sans', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .logo {
            font-family: var(--font-display);
            font-weight: 700;
        }

        .stat-value, .result-value, .metric-value, .step-number {
            font-family: var(--font-mono);
        }

        /* Cursor Glow */
        .cursor-glow {
            position: fixed;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 140, 60, 0.12) 0%, rgba(255, 100, 50, 0.05) 35%, transparent 70%);
            pointer-events: none;
            z-index: 1;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        /* Grid Background */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
            z-index: 0;
        }

        /* Grid Highlight - amber grid revealed near cursor */
        .grid-highlight {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255, 140, 60, 0.25) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 140, 60, 0.25) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
            z-index: 0;
            -webkit-mask-image: radial-gradient(circle 200px at var(--mx, -200px) var(--my, -200px), rgba(0,0,0,0.6) 0%, transparent 100%);
            mask-image: radial-gradient(circle 200px at var(--mx, -200px) var(--my, -200px), rgba(0,0,0,0.6) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        /* Center Stage Glow — point in center, symmetric fade to black edges */
        .glow-stage {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: radial-gradient(circle at 50% 50%,
                rgba(255, 140, 60, 0.14) 0%,
                rgba(255, 110, 50, 0.08) 15%,
                rgba(200, 80, 40, 0.03) 30%,
                transparent 45%,
                rgba(0, 0, 0, 0.3) 70%,
                rgba(0, 0, 0, 0.7) 100%);
            pointer-events: none;
            z-index: 1;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--text-primary);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-cta {
            padding: 0.75rem 1.5rem;
            background: var(--gradient-warm);
            border: none;
            border-radius: 6px;
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(255, 140, 60, 0.5);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            width: 120%;
            height: 70%;
            background: radial-gradient(ellipse at center top, rgba(255, 140, 60, 0.2) 0%, rgba(255, 150, 70, 0.1) 30%, transparent 60%);
            pointer-events: none;
            filter: blur(40px);
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 140, 60, 0.5) 50%, transparent 100%);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 140, 60, 0.1);
            border: 1px solid rgba(255, 140, 60, 0.2);
            border-radius: 4px;
            font-size: 0.75rem;
            color: #f97316;
            font-family: var(--font-mono);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out;
        }


        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            max-width: 900px;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.1s both;
        }

        .hero h1 span {
            background: var(--gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 3rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .btn-primary {
            padding: 1rem 2rem;
            background: var(--gradient-warm);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-body);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 0 35px rgba(255, 140, 60, 0.35);
            text-decoration: none;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 60px rgba(255, 140, 60, 0.5), 0 0 100px rgba(255, 100, 50, 0.3);
        }

        .btn-secondary {
            padding: 1rem 2rem;
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            font-family: var(--font-body);
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: var(--gradient-warm-violet);
            border-color: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(255, 140, 60, 0.25), 0 0 80px rgba(124, 58, 237, 0.15);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 4rem;
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid var(--border-color);
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .stat {
            text-align: center;
            cursor: default;
            transition: transform 0.3s;
        }

        .stat:hover {
            transform: scale(1.1);
        }

        .stat:hover .stat-value {
            filter: drop-shadow(0 0 35px rgba(255, 140, 60, 0.7));
        }

        .stat:hover .stat-label {
            color: var(--text-primary);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            font-family: var(--font-mono);
            background: var(--gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 25px rgba(255, 140, 60, 0.5));
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
        }

        /* Section Styles */
        section {
            padding: 6rem 4rem;
            position: relative;
            z-index: 1;
        }

        .section-label {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(255, 140, 60, 0.1);
            border: 1px solid rgba(255, 140, 60, 0.2);
            border-radius: 4px;
            font-size: 0.75rem;
            color: #f97316;
            font-family: var(--font-mono);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Value Proposition Section */
        .value-prop {
            background: var(--bg-secondary);
            text-align: center;
        }

        .value-prop .section-title {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 4rem;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .value-grid::before {
            content: '';
            position: absolute;
            top: -60px;
            left: -80px;
            right: -80px;
            bottom: -60px;
            background: radial-gradient(ellipse at 30% 50%, rgba(255, 140, 60, 0.22) 0%, transparent 50%),
                        radial-gradient(ellipse at 70% 50%, rgba(124, 58, 237, 0.18) 0%, transparent 50%),
                        radial-gradient(ellipse at 50% 80%, rgba(255, 94, 58, 0.14) 0%, transparent 40%);
            filter: blur(50px);
            pointer-events: none;
            z-index: -1;
        }

        .value-card {
            padding: 2.5rem 2rem;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff8c42, #7c3aed);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .value-card:hover {
            border-color: rgba(255, 140, 60, 0.6);
            border-width: 2px;
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 0 60px rgba(255, 140, 60, 0.25), 0 0 100px rgba(255, 140, 60, 0.1), 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .card-icon {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .card-icon svg {
            width: 28px;
            height: 28px;
            stroke: rgba(255, 255, 255, 0.7);
            stroke-width: 1.5;
            fill: none;
        }

        .card-pill {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: capitalize;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            padding: 0.35rem 0.9rem;
            white-space: nowrap;
            margin-bottom: 1.25rem;
        }

        .value-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }

        .value-card .card-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        .card-divider {
            width: 100%;
            height: 1px;
            background: var(--border-color);
            margin-top: auto;
            margin-bottom: 1.1rem;
        }

        .card-deliverables {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.4rem;
            font-size: 0.82rem;
            width: 100%;
        }

        .card-deliverables .del-label {
            color: var(--accent-orange);
            font-weight: 600;
            margin-bottom: 0.15rem;
        }

        .card-deliverables .del-item {
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .card-deliverables .del-item::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--accent-orange);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .value-micro {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: 2.5rem;
            font-style: italic;
        }

        .value-cta {
            text-align: center;
            margin-top: 1.25rem;
        }

        .value-cta a {
            color: var(--accent-orange);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        .value-cta a:hover {
            opacity: 0.8;
        }

        /* Founder Section */
        .founder {
            background: var(--bg-primary);
        }

        .founder-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .founder-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .founder-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .founder-header p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .founder-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .founder-highlight {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: var(--text-secondary);
            transition: color 0.3s;
            cursor: default;
        }

        .founder-highlight:hover {
            color: var(--accent-orange);
        }

        .founder-highlight::before {
            content: '';
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            background: rgba(255, 140, 60, 0.1);
            border: 1px solid rgba(255, 140, 60, 0.25);
            border-radius: 6px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8c42' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
            background-size: 12px;
            background-repeat: no-repeat;
            background-position: center;
        }

        .founder-text-col {
            padding-top: 2rem;
        }

        .founder-text {
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.75;
            transition: color 0.3s;
            cursor: default;
        }

        .founder-text:hover {
            color: var(--accent-orange);
        }

        .founder-photo-col {
            padding-top: 2rem;
            text-align: center;
        }

        .founder-photo {
            position: relative;
            display: inline-block;
        }

        .founder-photo img {
            width: 140px;
            height: 140px;
            border-radius: 14px;
            object-fit: cover;
            object-position: center top;
            filter: grayscale(20%);
            transition: filter 0.5s ease;
        }

        .founder-photo:hover img {
            filter: grayscale(0%);
        }

        .founder-photo::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            pointer-events: none;
        }

        .founder-name {
            font-size: 0.95rem;
            font-weight: 700;
            margin-top: 0.75rem;
        }

        .founder-name-text {
            position: relative;
        }

        .founder-role {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .founder-linkedin {
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.65rem;
            font-weight: 700;
            transition: all 0.3s;
        }

        .founder-linkedin:hover {
            background: rgba(255, 140, 60, 0.1);
            border-color: rgba(255, 140, 60, 0.3);
            color: var(--text-primary);
        }

        /* Process Section - Timeline */
        .process {
            text-align: center;
        }

        .timeline {
            display: flex;
            justify-content: center;
            gap: 5rem;
            margin-top: 5rem;
            position: relative;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 24px;
            left: 12%;
            right: 12%;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 140, 60, 0.25) 10%, rgba(255, 140, 60, 0.25) 90%, transparent 100%);
        }

        .timeline-step {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            max-width: 220px;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--bg-card);
            border: 1px solid rgba(255, 140, 60, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1rem;
            color: #f97316;
            margin-bottom: 1.75rem;
            position: relative;
            z-index: 2;
            transition: all 0.3s;
            box-shadow: 0 0 20px rgba(255, 140, 60, 0.2);
        }

        .timeline-step:hover .step-number {
            background: var(--gradient-warm);
            color: white;
            border-color: transparent;
            transform: scale(1.1);
            box-shadow: 0 0 40px rgba(255, 140, 60, 0.5);
        }

        .step-content {
            text-align: center;
        }

        .step-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.1rem;
        }

        .step-content p {
            color: #888888;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .step-duration {
            display: inline-block;
            margin-top: 0.75rem;
            padding: 0.25rem 0.75rem;
            background: rgba(255, 140, 60, 0.1);
            border: 1px solid rgba(255, 140, 60, 0.2);
            border-radius: 4px;
            font-size: 0.75rem;
            color: #f97316;
            font-family: var(--font-mono);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Use Cases Section */
        .usecases {
            background: var(--bg-secondary);
        }

        .usecases-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .usecases-header {
            margin-bottom: 3rem;
        }

        .usecases-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 1fr;
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .usecases-grid::before {
            content: '';
            position: absolute;
            top: -60px;
            left: -80px;
            right: -80px;
            bottom: -60px;
            background: radial-gradient(ellipse at 25% 40%, rgba(255, 140, 60, 0.2) 0%, transparent 50%),
                        radial-gradient(ellipse at 75% 60%, rgba(124, 58, 237, 0.16) 0%, transparent 50%),
                        radial-gradient(ellipse at 50% 90%, rgba(255, 94, 58, 0.12) 0%, transparent 40%);
            filter: blur(50px);
            pointer-events: none;
            z-index: -1;
        }

        .usecase-card {
            padding: 2rem;
            min-height: 220px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }

        .usecase-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff8c42, #7c3aed);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .usecase-card:hover {
            border-color: rgba(255, 140, 60, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 0 50px rgba(255, 140, 60, 0.15), 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .usecase-card:hover::before {
            opacity: 1;
        }

        .usecase-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .usecase-icon {
            width: 44px;
            height: 44px;
            background: rgba(255, 140, 60, 0.1);
            border: 1px solid rgba(255, 140, 60, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .usecase-metric {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            font-weight: 700;
            color: #ff8c42;
            background: rgba(255, 140, 60, 0.1);
            border: 1px solid rgba(255, 140, 60, 0.2);
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
        }

        .usecase-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-top: 1.5rem;
            margin-bottom: 0;
        }

        .usecase-desc {
            color: #888;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-top: 0.75rem;
        }

        .usecases-micro-bottom {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            font-style: italic;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--border-color);
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Results Section */
        .results {
            text-align: center;
        }

        .results-showcase {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .result-item {
            padding: 2.5rem 2rem;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            transition: all 0.3s;
        }

        .result-item:hover {
            border-color: rgba(255, 140, 60, 0.5);
            box-shadow: 0 0 40px rgba(255, 140, 60, 0.2);
        }

        .result-value {
            font-size: 2.8rem;
            font-weight: 700;
            font-family: var(--font-mono);
            background: var(--gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            filter: drop-shadow(0 0 30px rgba(255, 140, 60, 0.5));
        }

        .result-label {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .cta-box {
            max-width: 900px;
            margin: 4rem auto 0;
            padding: 4rem;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            text-align: left;
            display: flex;
            align-items: center;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff8c42, #7c3aed);
        }

        .cta-box::after {
            content: '';
            position: absolute;
            top: -20%;
            right: -5%;
            width: 45%;
            height: 140%;
            background:
                radial-gradient(ellipse at 60% 40%, rgba(255, 140, 60, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 40% 70%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(255, 94, 58, 0.08) 0%, transparent 40%);
            pointer-events: none;
            border-radius: 50%;
            filter: blur(30px);
        }

        .cta-content {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .cta-box h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .cta-box p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            margin-bottom: 2rem;
            max-width: 480px;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
        }

        /* Footer */
        footer {
            padding: 4rem 4rem 2rem;
            border-top: 1px solid var(--border-color);
            max-width: 900px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand .footer-logo {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            max-width: 280px;
            transition: color 0.3s;
            cursor: default;
        }

        .footer-brand p:hover {
            color: var(--accent-orange);
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
        }

        .footer-socials a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            background: rgba(255, 140, 60, 0.1);
            border-color: rgba(255, 140, 60, 0.3);
            color: var(--text-primary);
        }

        .footer-col .footer-heading {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.25rem;
            color: var(--text-primary);
        }

        .footer-col a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            padding: 0.3rem 0;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--accent-orange);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-bottom span {
            color: var(--text-muted);
            font-size: 0.82rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.82rem;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: var(--text-primary);
        }

        /* Responsive */
        @media (max-width: 968px) {
            nav {
                padding: 1rem 2rem;
            }

            .nav-links {
                display: none;
            }

            section {
                padding: 4rem 2rem;
            }

            .stats-bar {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .timeline {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            .timeline::before {
                display: none;
            }

            .timeline-step {
                max-width: 100%;
                width: 100%;
                align-items: center;
                text-align: center;
            }

            .usecases-grid {
                grid-template-columns: 1fr;
            }

            .usecases-inner {
                padding: 0;
            }

            .value-grid {
                grid-template-columns: 1fr;
            }

            .founder-grid {
                grid-template-columns: 1fr;
            }

            .founder-photo-col {
                order: -1;
            }

            .results-showcase {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-brand p {
                margin-left: auto;
                margin-right: auto;
            }

            .footer-socials {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }