    :root {
        --black: #0a0a0a;
        --dark: #111113;
        --dark2: #16161a;
        --mid: #2a2a30;
        --steel: #3a3a42;
        --silver: #8a8a96;
        --light: #c8c8d4;
        --white: #f0f0f4;
        --accent: #5b8fff;
        --accent2: #a0c4ff;
        --gold: #c9a96e;
        --gold2: #e8c98a;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--black);
        color: var(--white);
        font-family: 'Geist', sans-serif;
        font-weight: 300;
        line-height: 1.9;
        overflow-x: hidden;
        cursor: none;
    }

    /* Custom cursor */
    .cursor {
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.1s ease;
        mix-blend-mode: screen;
    }

    .cursor-ring {
        position: fixed;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(91, 143, 255, 0.4);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transition: transform 0.25s ease, opacity 0.2s;
    }

    /* NAV */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 28px 56px;
        background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
        backdrop-filter: blur(0px);
    }

    .nav-logo {
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 300;
        letter-spacing: 0.3em;
        text-transform: lowercase;
        color: var(--white);
        text-decoration: none;
    }

    .nav-links {
        display: flex;
        gap: 48px;
        list-style: none;
    }

    .nav-links a {
        font-family: 'Geist Mono', monospace;
        font-size: 10px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--silver);
        text-decoration: none;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: var(--white);
    }

    .nav-cta {
        font-family: 'Geist Mono', monospace;
        font-size: 10px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--black);
        background: var(--white);
        padding: 10px 24px;
        text-decoration: none;
        transition: background 0.3s, color 0.3s;
    }

    .nav-cta:hover {
        background: var(--accent);
        color: var(--white);
    }

    /* ── Language Toggle ── */
    .lang-toggle {
        font-family: 'Geist Mono', monospace;
        font-size: 10px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--silver);
        background: transparent;
        border: 1px solid var(--steel);
        padding: 8px 14px;
        cursor: pointer;
        transition: color 0.3s, border-color 0.3s;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .lang-toggle:hover {
        color: var(--white);
        border-color: var(--accent);
    }

    /* ── RTL (Arabic) overrides ── */
    html[lang="ar"] body {
        font-family: 'Cairo', sans-serif;
        direction: rtl;
    }

    html[lang="ar"] .hero-title,
    html[lang="ar"] .section-title,
    html[lang="ar"] .about-card h3,
    html[lang="ar"] .philosophy-quote,
    html[lang="ar"] .philosophy-item h3,
    html[lang="ar"] .modal-title,
    html[lang="ar"] .success-title,
    html[lang="ar"] .number-big,
    html[lang="ar"] .plan-pct,
    html[lang="ar"] .plan-min {
        font-family: 'Cairo', sans-serif;
        line-height: 1.5;
    }

    html[lang="ar"] .section-label::before {
        display: none;
    }

    html[lang="ar"] .section-label::after {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--accent);
    }

    html[lang="ar"] .hero-content {
        padding: 0 56px 80px;
    }

    html[lang="ar"] .about-card:hover {
        transform: translateX(-8px);
    }

    html[lang="ar"] .btn-secondary::after {
        content: '←';
    }

    html[lang="ar"] .hero-stats {
        right: auto;
        left: 56px;
        text-align: left;
    }

    html[lang="ar"] .stat {
        text-align: left;
    }

    html[lang="ar"] .philosophy-quote {
        border-left: none;
        border-right: 1px solid var(--gold);
        padding-left: 0;
        padding-right: 32px;
    }

    html[lang="ar"] .service-item::before {
        transform-origin: right;
    }

    html[lang="ar"] nav {
        direction: rtl;
    }

    @media (max-width: 768px) {
        html[lang="ar"] .hero-stats {
            left: 20px;
        }
    }

    /* Hamburger */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        z-index: 200;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--white);
        transition: transform 0.3s, opacity 0.3s, width 0.3s;
        transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }

        .nav-links {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(24px);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 36px;
            z-index: 150;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .nav-links.mobile-open {
            opacity: 1;
            pointer-events: all;
        }

        .nav-links a {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 300;
            letter-spacing: 0.05em;
            color: var(--white) !important;
            text-transform: none;
        }

        .nav-links a:hover {
            color: var(--gold2) !important;
        }
    }

    /* HERO */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 700px;
        overflow: hidden;
    }

    .hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        filter: brightness(0.45) saturate(0.7);
        transform: scale(1.05);
        animation: slowZoom 18s ease-in-out infinite alternate;
    }

    @keyframes slowZoom {
        from {
            transform: scale(1.05);
        }

        to {
            transform: scale(1.12);
        }
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(165deg,
                rgba(10, 10, 10, 0.2) 0%,
                rgba(10, 10, 10, 0.5) 50%,
                rgba(10, 10, 10, 0.85) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 0 56px 80px;
        max-width: 900px;
    }

    .hero-tag {
        font-family: 'Geist Mono', monospace;
        font-size: 10px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--accent2);
        margin-bottom: 24px;
        opacity: 0;
        animation: fadeUp 1s ease 0.3s forwards;
    }

    .hero-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(52px, 7vw, 96px);
        font-weight: 300;
        line-height: 1.0;
        letter-spacing: -0.01em;
        color: var(--white);
        margin-bottom: 32px;
        opacity: 0;
        animation: fadeUp 1s ease 0.6s forwards;
    }

    .hero-title em {
        font-style: italic;
        color: var(--gold2);
    }

    .hero-desc {
        font-size: 15px;
        font-weight: 300;
        color: var(--light);
        line-height: 1.8;
        max-width: 520px;
        margin-bottom: 48px;
        opacity: 0;
        animation: fadeUp 1s ease 0.9s forwards;
    }

    .hero-actions {
        display: flex;
        gap: 20px;
        align-items: center;
        opacity: 0;
        animation: fadeUp 1s ease 1.1s forwards;
    }

    .btn-primary {
        font-family: 'Geist Mono', monospace;
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--black);
        background: var(--white);
        padding: 16px 36px;
        text-decoration: none;
        transition: background 0.3s, color 0.3s, transform 0.2s;
    }

    .btn-primary:hover {
        background: var(--accent);
        color: var(--white);
        transform: translateY(-1px);
    }

    .btn-secondary {
        font-family: 'Geist Mono', monospace;
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--silver);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: color 0.3s;
    }

    .btn-secondary:hover {
        color: var(--white);
    }

    .btn-secondary::after {
        content: '→';
        transition: transform 0.3s;
    }

    .btn-secondary:hover::after {
        transform: translateX(4px);
    }

    .hero-stats {
        position: absolute;
        right: 56px;
        bottom: 80px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 32px;
        opacity: 0;
        animation: fadeLeft 1s ease 1.3s forwards;
    }

    .stat {
        text-align: right;
    }

    .stat-num {
        font-family: 'Cormorant Garamond', serif;
        font-size: 36px;
        font-weight: 300;
        color: var(--gold2);
        line-height: 1;
    }

    .stat-label {
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--silver);
        margin-top: 4px;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeLeft {
        from {
            opacity: 0;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* TICKER */
    .ticker-bar {
        background: var(--dark2);
        border-top: 1px solid var(--mid);
        border-bottom: 1px solid var(--mid);
        padding: 14px 0;
        overflow: hidden;
        white-space: nowrap;
    }

    .ticker-inner {
        display: inline-flex;
        gap: 60px;
        animation: ticker 30s linear infinite;
    }

    .ticker-item {
        font-family: 'Geist Mono', monospace;
        font-size: 10px;
        letter-spacing: 0.1em;
        color: var(--silver);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .ticker-item span {
        color: var(--accent2);
    }

    @keyframes ticker {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* SECTION BASE */
    section {
        padding: 120px 56px;
    }

    .section-label {
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .section-label::before {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--accent);
    }

    .section-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(36px, 4vw, 60px);
        font-weight: 300;
        line-height: 1.1;
        color: var(--white);
    }

    /* ABOUT */
    .about {
        background: var(--dark);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-left .section-title {
        margin-bottom: 32px;
    }

    .about-text {
        color: var(--silver);
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 20px;
    }

    .about-right {
        position: relative;
    }

    .about-card {
        background: var(--dark2);
        border: 1px solid var(--mid);
        padding: 40px;
        margin-bottom: 16px;
        transition: border-color 0.3s, transform 0.3s;
    }

    .about-card:hover {
        border-color: var(--accent);
        transform: translateX(8px);
    }

    .about-card-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .about-card h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 400;
        color: var(--white);
        margin-bottom: 10px;
    }

    .about-card p {
        font-size: 13px;
        color: var(--silver);
        line-height: 1.7;
    }

    /* SERVICES */
    .services {
        background: var(--black);
    }

    .services-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 64px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--mid);
    }

    .service-item {
        background: var(--dark);
        padding: 52px 44px;
        transition: background 0.4s;
        position: relative;
        overflow: hidden;
    }

    .service-item::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, var(--accent), var(--accent2));
        transform: scaleX(0);
        transition: transform 0.4s;
        transform-origin: left;
    }

    .service-item:hover::before {
        transform: scaleX(1);
    }

    .service-item:hover {
        background: var(--dark2);
    }

    .service-num {
        font-family: 'Geist Mono', monospace;
        font-size: 10px;
        letter-spacing: 0.2em;
        color: var(--steel);
        margin-bottom: 32px;
    }

    .service-item h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 28px;
        font-weight: 300;
        color: var(--white);
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .service-item p {
        font-size: 13px;
        color: var(--silver);
        line-height: 1.8;
    }

    .service-tag {
        display: inline-block;
        margin-top: 24px;
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent2);
        padding: 6px 12px;
        border: 1px solid var(--accent);
    }

    /* NUMBERS */
    .numbers {
        background: var(--dark2);
        border-top: 1px solid var(--mid);
        border-bottom: 1px solid var(--mid);
        padding: 80px 56px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background-color: var(--mid);
    }

    .number-item {
        background: var(--dark2);
        padding: 48px 40px;
        text-align: center;
    }

    .number-big {
        font-family: 'Cormorant Garamond', serif;
        font-size: 56px;
        font-weight: 300;
        color: var(--white);
        line-height: 1;
        margin-bottom: 12px;
    }

    .number-big span {
        color: var(--gold2);
    }

    .number-label {
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--silver);
    }

    /* PARTNERS */
    .partners {
        background: var(--dark);
        padding: 100px 56px;
    }

    .partners-header {
        text-align: center;
        margin-bottom: 72px;
    }

    .partners-header .section-label {
        justify-content: center;
    }

    .partners-header .section-label::before {
        display: none;
    }

    .partners-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1px;
        background: var(--mid);
        margin-bottom: 1px;
    }

    .partner-cell {
        background: var(--dark2);
        padding: 40px 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        filter: grayscale(1) brightness(0.6);
        transition: filter 0.4s, background 0.3s;
        cursor: pointer;
        min-height: 110px;
    }

    .partner-cell:hover {
        filter: grayscale(0) brightness(1);
        background: var(--dark);
    }

    .partner-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .partner-icon {
        width: 100%;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partner-img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: opacity 0.4s;
    }

    .partner-name {
        font-family: 'Geist', sans-serif;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 0.05em;
        color: var(--light);
        text-align: center;
    }

    /* Apple */
    .logo-apple svg {
        width: 32px;
        height: 32px;
        fill: #f5f5f7;
    }

    /* Google */
    .logo-google {
        font-family: 'Geist', sans-serif;
        font-size: 22px;
        font-weight: 400;
    }

    .logo-google .g-blue {
        color: #4285f4;
    }

    .logo-google .g-red {
        color: #ea4335;
    }

    .logo-google .g-yellow {
        color: #fbbc04;
    }

    .logo-google .g-green {
        color: #34a853;
    }

    /* Microsoft */
    .logo-ms {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3px;
        width: 30px;
        height: 30px;
    }

    .ms-q {
        width: 13px;
        height: 13px;
    }

    /* BlackRock */
    .logo-text {
        font-family: 'Cormorant Garamond', serif;
        font-size: 18px;
        font-weight: 600;
        color: var(--white);
        letter-spacing: 0.05em;
    }

    /* Partners row 2 */
    .partners-grid-2 {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1px;
        background: var(--mid);
    }

    /* TEAM / PHILOSOPHY */
    .philosophy {
        background: var(--black);
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 100px;
        align-items: start;
    }

    .philosophy-sticky {
        position: sticky;
        top: 120px;
    }

    .philosophy-quote {
        font-family: 'Cormorant Garamond', serif;
        font-size: 34px;
        font-weight: 300;
        font-style: italic;
        line-height: 1.5;
        color: var(--white);
        margin: 32px 0;
        border-left: 1px solid var(--gold);
        padding-left: 32px;
    }

    .philosophy-items {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .philosophy-item {
        border-bottom: 1px solid var(--mid);
        padding: 36px 0;
        cursor: pointer;
    }

    .philosophy-item-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .philosophy-item h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 24px;
        font-weight: 400;
        color: var(--white);
    }

    .phi-toggle {
        width: 28px;
        height: 28px;
        border: 1px solid var(--mid);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--silver);
        font-size: 18px;
        flex-shrink: 0;
        transition: border-color 0.3s, background 0.3s;
    }

    .philosophy-item:hover .phi-toggle {
        border-color: var(--accent);
        background: rgba(91, 143, 255, 0.1);
        color: var(--accent);
    }

    .phi-body {
        font-size: 14px;
        color: var(--silver);
        line-height: 1.8;
        margin-top: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .philosophy-item.open .phi-body {
        max-height: 200px;
    }

    /* CTA SECTION */
    .cta-section {
        background: var(--dark2);
        text-align: center;
        padding: 120px 56px;
        position: relative;
        overflow: hidden;
    }

    .cta-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 70% at 50% 60%, rgba(91, 143, 255, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .cta-section .section-title {
        font-size: clamp(40px, 5vw, 72px);
        margin: 16px auto 32px;
        max-width: 700px;
    }

    .cta-section p {
        font-size: 15px;
        color: var(--silver);
        max-width: 480px;
        margin: 0 auto 48px;
        line-height: 1.8;
    }

    .cta-form {
        display: flex;
        gap: 0;
        max-width: 440px;
        margin: 0 auto 24px;
    }

    .cta-input {
        flex: 1;
        background: var(--dark);
        border: 1px solid var(--mid);
        border-right: none;
        padding: 16px 20px;
        color: var(--white);
        font-family: 'Geist', sans-serif;
        font-size: 13px;
        outline: none;
        transition: border-color 0.3s;
    }

    .cta-input:focus {
        border-color: var(--accent);
    }

    .cta-input::placeholder {
        color: var(--steel);
    }

    .cta-submit {
        background: var(--accent);
        color: var(--white);
        border: none;
        padding: 16px 28px;
        font-family: 'Geist Mono', monospace;
        font-size: 10px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.3s;
    }

    .cta-submit:hover {
        background: #4a7aee;
    }

    .cta-note {
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.15em;
        color: var(--steel);
        text-transform: uppercase;
    }

    /* FOOTER */
    footer {
        background: var(--black);
        border-top: 1px solid var(--mid);
        padding: 64px 56px 40px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }

    .footer-brand .nav-logo {
        display: block;
        margin-bottom: 20px;
    }

    .footer-brand p {
        font-size: 13px;
        color: var(--silver);
        line-height: 1.7;
        max-width: 260px;
    }

    .footer-col h4 {
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--silver);
        margin-bottom: 20px;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col li {
        margin-bottom: 12px;
    }

    .footer-col a {
        font-size: 13px;
        color: var(--steel);
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-col a:hover {
        color: var(--white);
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 32px;
        border-top: 1px solid var(--mid);
    }

    .footer-bottom p {
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.15em;
        color: var(--steel);
        text-transform: uppercase;
    }

    .footer-socials {
        display: flex;
        gap: 24px;
    }

    .footer-socials a {
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.15em;
        color: var(--steel);
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s;
    }

    .footer-socials a:hover {
        color: var(--accent);
    }

    /* Scroll reveal */
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* AI partner logos styled */
    .ai-badge {
        font-family: 'Geist', sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: var(--white);
        letter-spacing: -0.02em;
    }

    /* ── PRICING ── */
    .pricing {
        background: var(--black);
        padding: 120px 56px;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .pricing-header .section-label {
        justify-content: center;
    }

    .pricing-header .section-label::before {
        display: none;
    }

    .pricing-header .section-title {
        margin: 12px auto 16px;
    }

    .pricing-header p {
        color: var(--silver);
        font-size: 14px;
        line-height: 1.8;
        max-width: 520px;
        margin: 0 auto;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--mid);
        margin-bottom: 1px;
    }

    .pricing-grid-bottom {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--mid);
    }

    .plan-card {
        background: var(--dark);
        padding: 44px 36px 40px;
        position: relative;
        cursor: pointer;
        transition: background 0.35s, transform 0.3s;
        overflow: hidden;
    }

    .plan-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
    }

    .plan-card:hover {
        background: var(--dark2);
        transform: translateY(-4px);
    }

    .plan-card:hover::after {
        transform: scaleX(1);
    }

    /* tier colors */
    .plan-starter::after {
        background: linear-gradient(to right, #6b7aff, #a0b4ff);
    }

    .plan-silver::after {
        background: linear-gradient(to right, #9aaabb, #c8d8e8);
    }

    .plan-gold::after {
        background: linear-gradient(to right, var(--gold), var(--gold2));
    }

    .plan-platinum::after {
        background: linear-gradient(to right, #b084f8, #e0c4ff);
    }

    .plan-diamond::after {
        background: linear-gradient(to right, #5bf0c8, #80ffee);
    }

    .plan-elite::after {
        background: linear-gradient(to right, #ff9940, #ffc870);
    }

    .plan-sovereign::after {
        background: linear-gradient(to right, #f04060, #ff90a0);
    }

    .plan-badge {
        display: inline-block;
        font-family: 'Geist Mono', monospace;
        font-size: 8px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        padding: 4px 10px;
        border: 1px solid;
        margin-bottom: 24px;
    }

    .plan-starter .plan-badge {
        color: #8090ff;
        border-color: #8090ff;
    }

    .plan-silver .plan-badge {
        color: #b0c4d4;
        border-color: #9aaabb;
    }

    .plan-gold .plan-badge {
        color: var(--gold2);
        border-color: var(--gold);
    }

    .plan-platinum .plan-badge {
        color: #c8a0f8;
        border-color: #b084f8;
    }

    .plan-diamond .plan-badge {
        color: #5bf0c8;
        border-color: #5bf0c8;
    }

    .plan-elite .plan-badge {
        color: #ffc870;
        border-color: #ff9940;
    }

    .plan-sovereign .plan-badge {
        color: #ff90a0;
        border-color: #f04060;
    }

    .plan-featured {
        position: absolute;
        top: 0;
        right: 0;
        font-family: 'Geist Mono', monospace;
        font-size: 8px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 6px 14px;
        background: var(--gold);
        color: var(--black);
    }

    .plan-min {
        font-family: 'Cormorant Garamond', serif;
        font-size: 32px;
        font-weight: 300;
        color: var(--white);
        line-height: 1;
        margin-bottom: 4px;
    }

    .plan-min span {
        font-size: 16px;
        font-weight: 400;
        color: var(--silver);
        margin-left: 2px;
    }

    .plan-range-label {
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.15em;
        color: var(--silver);
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .plan-return {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin-bottom: 6px;
    }

    .plan-pct {
        font-family: 'Cormorant Garamond', serif;
        font-size: 44px;
        font-weight: 300;
        line-height: 1;
    }

    .plan-starter .plan-pct {
        color: #8090ff;
    }

    .plan-silver .plan-pct {
        color: #b0c4d4;
    }

    .plan-gold .plan-pct {
        color: var(--gold2);
    }

    .plan-platinum .plan-pct {
        color: #c8a0f8;
    }

    .plan-diamond .plan-pct {
        color: #5bf0c8;
    }

    .plan-elite .plan-pct {
        color: #ffc870;
    }

    .plan-sovereign .plan-pct {
        color: #ff90a0;
    }

    .plan-freq {
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.15em;
        color: var(--silver);
        text-transform: uppercase;
    }

    .plan-divider {
        height: 1px;
        background: var(--mid);
        margin: 20px 0;
    }

    .plan-features {
        list-style: none;
        margin-bottom: 28px;
    }

    .plan-features li {
        font-size: 12px;
        color: var(--silver);
        line-height: 1.6;
        padding: 5px 0;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .plan-features li::before {
        content: '→';
        color: var(--steel);
        flex-shrink: 0;
        font-size: 11px;
        margin-top: 1px;
    }

    .plan-btn {
        display: block;
        width: 100%;
        padding: 13px 20px;
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        text-align: center;
        border: 1px solid var(--mid);
        background: transparent;
        color: var(--silver);
        cursor: pointer;
        transition: border-color 0.3s, color 0.3s, background 0.3s;
    }

    .plan-btn:hover {
        border-color: var(--white);
        color: var(--white);
        background: rgba(255, 255, 255, 0.04);
    }

    .plan-card.plan-gold .plan-btn {
        background: var(--gold);
        color: var(--black);
        border-color: var(--gold);
    }

    .plan-card.plan-gold .plan-btn:hover {
        background: var(--gold2);
        border-color: var(--gold2);
    }

    /* ── MODAL ── */
    .modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.88);
        backdrop-filter: blur(12px);
        z-index: 1000;
        align-items: center;
        justify-content: center;
    }

    .modal-overlay.open {
        display: flex;
    }

    .modal-box {
        background: var(--dark2);
        border: 1px solid var(--mid);
        width: 100%;
        max-width: 540px;
        padding: 52px 48px;
        position: relative;
        animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes modalIn {
        from {
            opacity: 0;
            transform: translateY(30px) scale(0.97);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .modal-close {
        position: absolute;
        top: 20px;
        right: 24px;
        background: none;
        border: none;
        color: var(--silver);
        font-size: 22px;
        cursor: pointer;
        transition: color 0.2s;
        line-height: 1;
    }

    .modal-close:hover {
        color: var(--white);
    }

    .modal-plan-tag {
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        padding: 4px 12px;
        border: 1px solid;
        display: inline-block;
        margin-bottom: 20px;
    }

    .modal-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 32px;
        font-weight: 300;
        color: var(--white);
        margin-bottom: 8px;
    }

    .modal-subtitle {
        font-size: 13px;
        color: var(--silver);
        margin-bottom: 36px;
        line-height: 1.7;
    }

    .modal-field {
        margin-bottom: 18px;
    }

    .modal-field label {
        display: block;
        font-family: 'Geist Mono', monospace;
        font-size: 9px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--silver);
        margin-bottom: 8px;
    }

    .modal-field input,
    .modal-field select {
        width: 100%;
        background: var(--dark);
        border: 1px solid var(--mid);
        padding: 13px 16px;
        color: var(--white);
        font-family: 'Geist', sans-serif;
        font-size: 13px;
        outline: none;
        appearance: none;
        transition: border-color 0.3s;
    }

    .modal-field input:focus,
    .modal-field select:focus {
        border-color: var(--accent);
    }

    .modal-field input::placeholder {
        color: var(--steel);
    }

    .modal-field select option {
        background: var(--dark2);
    }

    .modal-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .modal-wa-note {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(37, 211, 102, 0.07);
        border: 1px solid rgba(37, 211, 102, 0.2);
        padding: 12px 16px;
        margin-bottom: 24px;
        font-size: 12px;
        color: #5ed47a;
    }

    .modal-submit {
        width: 100%;
        padding: 16px;
        background: var(--accent);
        color: var(--white);
        border: none;
        font-family: 'Geist Mono', monospace;
        font-size: 10px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .modal-submit:hover {
        background: #4a7aee;
    }

    .modal-legal {
        font-size: 10px;
        color: var(--steel);
        text-align: center;
        margin-top: 14px;
        line-height: 1.6;
    }

    /* success state */
    .modal-success {
        display: none;
        text-align: center;
        padding: 20px 0;
    }

    .modal-success.show {
        display: block;
    }

    .modal-form-body.hidden {
        display: none;
    }

    .success-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .success-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 28px;
        font-weight: 300;
        color: var(--white);
        margin-bottom: 12px;
    }

    .success-text {
        font-size: 13px;
        color: var(--silver);
        line-height: 1.7;
    }

    /* ═══════════════════════════════
     RESPONSIVE — TABLET (≤1024px)
  ═══════════════════════════════ */
    @media (max-width: 1024px) {
        nav {
            padding: 22px 32px;
        }

        section {
            padding: 100px 40px;
        }

        .hero-content {
            padding: 0 40px 72px;
        }

        .hero-stats {
            right: 40px;
            bottom: 72px;
            gap: 24px;
        }

        .stat-num {
            font-size: 28px;
        }

        .about {
            gap: 52px;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .numbers {
            padding: 60px 40px;
        }

        .partners-grid,
        .partners-grid-2 {
            grid-template-columns: repeat(3, 1fr);
        }

        .pricing-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .pricing-grid-bottom {
            grid-template-columns: repeat(3, 1fr);
        }

        .footer-top {
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 40px;
        }

        .footer-top .footer-col:last-child {
            display: none;
        }
    }

    /* ═══════════════════════════════
     RESPONSIVE — MOBILE (≤768px)
  ═══════════════════════════════ */
    @media (max-width: 768px) {

        /* Cursor off on touch */
        .cursor,
        .cursor-ring {
            display: none;
        }

        body {
            cursor: auto;
        }

        /* ── Nav ── */
        nav {
            padding: 18px 20px;
            background: rgba(10, 10, 10, 0.97) !important;
            backdrop-filter: blur(20px) !important;
        }

        .nav-links {
            display: none;
        }

        .nav-cta {
            font-size: 9px;
            padding: 9px 16px;
            letter-spacing: 0.1em;
        }

        /* ── Hero ── */
        .hero {
            height: 100svh;
            min-height: 600px;
        }

        .hero-content {
            padding: 0 20px 60px;
            max-width: 100%;
        }

        .hero-tag {
            font-size: 9px;
            margin-bottom: 16px;
        }

        .hero-title {
            font-size: clamp(38px, 10vw, 58px);
            margin-bottom: 20px;
        }

        .hero-desc {
            font-size: 13px;
            margin-bottom: 36px;
            max-width: 100%;
        }

        .hero-actions {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }

        .btn-primary {
            padding: 14px 28px;
            font-size: 10px;
        }

        .hero-stats {
            display: none;
        }

        /* ── Ticker ── */
        .ticker-bar {
            padding: 11px 0;
        }

        .ticker-item {
            font-size: 9px;
            gap: 6px;
        }

        /* ── Sections ── */
        section {
            padding: 72px 20px;
        }

        /* ── About ── */
        .about {
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 72px 20px;
        }

        .about-card {
            padding: 28px 24px;
        }

        .about-card h3 {
            font-size: 18px;
        }

        /* ── Numbers ── */
        .numbers {
            padding: 0;
            grid-template-columns: repeat(2, 1fr);
        }

        .number-item {
            padding: 36px 20px;
        }

        .number-big {
            font-size: 40px;
        }

        .number-label {
            font-size: 8px;
        }

        /* ── Services ── */
        .services-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 40px;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .service-item {
            padding: 36px 24px;
        }

        .service-item h3 {
            font-size: 22px;
        }

        /* ── Partners ── */
        .partners {
            padding: 72px 20px;
        }

        .partners-grid,
        .partners-grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .partner-cell {
            padding: 28px 16px;
            min-height: 90px;
        }

        .partner-icon {
            width: 36px;
            height: 36px;
        }

        .partner-name {
            font-size: 10px;
        }

        /* ── Philosophy ── */
        .philosophy {
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 72px 20px;
        }

        .philosophy-sticky {
            position: static;
        }

        .philosophy-quote {
            font-size: 22px;
            padding-left: 20px;
            margin: 20px 0;
        }

        .philosophy-item h3 {
            font-size: 18px;
        }

        .philosophy-item {
            padding: 24px 0;
        }

        /* ── Pricing ── */
        .pricing {
            padding: 72px 20px;
        }

        .pricing-header {
            margin-bottom: 48px;
        }

        .pricing-grid {
            grid-template-columns: 1fr;
        }

        .pricing-grid-bottom {
            grid-template-columns: 1fr;
        }

        .plan-card {
            padding: 36px 28px 32px;
        }

        .plan-min {
            font-size: 26px;
        }

        .plan-pct {
            font-size: 36px;
        }

        .plan-featured {
            font-size: 7px;
            padding: 5px 10px;
        }

        /* ── CTA ── */
        .cta-section {
            padding: 80px 20px;
        }

        .cta-section .section-title {
            font-size: clamp(32px, 9vw, 52px);
        }

        .cta-form {
            flex-direction: column;
            max-width: 100%;
        }

        .cta-input {
            border-right: 1px solid var(--mid);
            border-bottom: none;
            padding: 14px 16px;
        }

        .cta-submit {
            padding: 14px 20px;
        }

        /* ── Footer ── */
        footer {
            padding: 52px 20px 32px;
        }

        .footer-top {
            grid-template-columns: 1fr;
            gap: 36px;
        }

        .footer-top .footer-col:last-child {
            display: block;
        }

        .footer-brand p {
            max-width: 100%;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }

        .footer-socials {
            justify-content: center;
        }

        /* ── Modal ── */
        .modal-overlay {
            align-items: flex-end;
        }

        .modal-box {
            max-width: 100%;
            padding: 36px 22px 40px;
            margin: 0;
            border-left: none;
            border-right: none;
            border-bottom: none;
            border-radius: 16px 16px 0 0;
            max-height: 92svh;
            overflow-y: auto;
            animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes modalSlideUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-title {
            font-size: 26px;
        }

        .modal-subtitle {
            font-size: 12px;
        }

        .modal-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .modal-close {
            top: 16px;
            right: 18px;
            font-size: 26px;
        }

        /* Section titles */
        .section-title {
            font-size: clamp(28px, 8vw, 44px) !important;
        }
    }

    /* ═══════════════════════════════
     RESPONSIVE — SMALL (≤400px)
  ═══════════════════════════════ */
    @media (max-width: 400px) {
        .hero-title {
            font-size: 34px;
        }

        .number-big {
            font-size: 34px;
        }

        .partners-grid,
        .partners-grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .plan-min {
            font-size: 22px;
        }

        .plan-pct {
            font-size: 32px;
        }

        nav .nav-logo {
            font-size: 18px;
        }
    }