    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --primary: #6C63FF;
        --primary-dark: #5548e0;
        --secondary: #4ECDC4;
        --bg: #0f0f14;
        --bg-surface: #18181f;
        --bg-card: #1e1e28;
        --border: rgba(255, 255, 255, .08);
        --border-focus: rgba(108, 99, 255, .5);
        --text: #e8e8f0;
        --text-muted: #8888a8;
        --text-faint: #555570;
        --radius-sm: 8px;
        --radius-md: 14px;
        --radius-lg: 20px;
        --transition: .2s cubic-bezier(.4, 0, .2, 1);
        --max-w: 1280px;
        --error: #f87171;
        --success: #4ade80;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

    a {
        color: var(--primary);
        text-decoration: none;
        transition: color var(--transition);
    }

    a:hover {
        color: var(--secondary);
    }

    button {
        cursor: pointer;
        font: inherit;
        border: none;
        background: none;
    }

    svg {
        display: block;
    }

    .container {
        width: 100%;
        max-width: var(--max-w);
        margin-inline: auto;
        padding-inline: clamp(16px, 4vw, 48px);
    }

    /* HEADER */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(15, 15, 20, .85);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        transition: box-shadow var(--transition);
    }

    .site-header.scrolled {
        box-shadow: 0 4px 32px rgba(0, 0, 0, .4);
    }

    .header-inner {
        display: flex;
        align-items: center;
        gap: 24px;
        height: 64px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
    }

    .logo-text {
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: -.02em;
        background: linear-gradient(135deg, #fff 40%, var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: auto;
    }

    .nav-link {
        padding: 6px 14px;
        border-radius: var(--radius-sm);
        font-size: .9rem;
        font-weight: 500;
        color: var(--text-muted);
        transition: color var(--transition), background var(--transition);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--text);
        background: rgba(255, 255, 255, .06);
    }

    .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        margin-left: auto;
        padding: 8px;
        border-radius: var(--radius-sm);
    }

    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text-muted);
        border-radius: 2px;
    }

    .mobile-nav {
        display: none;
        flex-direction: column;
        padding: 12px 16px 16px;
        border-top: 1px solid var(--border);
        background: var(--bg-surface);
        gap: 2px;
    }

    .mobile-nav.open {
        display: flex;
    }

    /* HERO */
    .page-hero {
        padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
        text-align: center;
        background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(108, 99, 255, .18) 0%, transparent 70%);
    }

    .page-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(108, 99, 255, .15);
        border: 1px solid rgba(108, 99, 255, .3);
        color: #a39dff;
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: .05em;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 999px;
        margin-bottom: 20px;
    }

    .page-hero h1 {
        font-size: clamp(1.8rem, 4vw, 3rem);
        font-weight: 800;
        letter-spacing: -.04em;
        margin-bottom: 16px;
    }

    .gradient-text {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .page-hero p {
        font-size: .97rem;
        color: var(--text-muted);
        max-width: 520px;
        margin-inline: auto;
    }

    /* LAYOUT */
    .contact-layout {
        display: grid;
        grid-template-columns: 340px 1fr;
        gap: 40px;
        padding: clamp(40px, 5vw, 72px) 0;
        align-items: start;
        max-width: 1000px;
        margin-inline: auto;
    }

    /* SIDEBAR */
    .contact-sidebar {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .info-card {
        background: var(--bg-card);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-md);
        padding: 24px;
    }

    .info-card-title {
        font-size: .75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--text-faint);
        margin-bottom: 16px;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .info-item-icon {
        width: 36px;
        height: 36px;
        border-radius: var(--radius-sm);
        background: rgba(108, 99, 255, .12);
        border: 1px solid rgba(108, 99, 255, .2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .info-item-icon svg {
        width: 17px;
        height: 17px;
        color: var(--primary);
    }

    .info-item-label {
        font-size: .72rem;
        color: var(--text-faint);
        margin-bottom: 2px;
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    .info-item-value {
        font-size: .88rem;
        color: var(--text);
    }

    .info-item-value a {
        color: var(--primary);
    }

    .topic-card {
        background: var(--bg-card);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-md);
        padding: 24px;
    }

    .topic-card h3 {
        font-size: .75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--text-faint);
        margin-bottom: 14px;
    }

    .topic-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .topic-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .85rem;
        color: var(--text-muted);
    }

    .topic-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    /* FORM */
    .contact-form-wrap {
        background: var(--bg-card);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 4vw, 40px);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .field {
        display: flex;
        flex-direction: column;
        gap: 7px;
        margin-bottom: 20px;
    }

    .field:last-child {
        margin-bottom: 0;
    }

    label {
        font-size: .82rem;
        font-weight: 600;
        color: var(--text);
    }

    label .req {
        color: var(--primary);
        margin-left: 2px;
    }

    .input,
    .select,
    .textarea {
        background: var(--bg-surface);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 11px 16px;
        font-size: .9rem;
        color: var(--text);
        font-family: inherit;
        width: 100%;
        transition: border-color var(--transition), box-shadow var(--transition);
        outline: none;
        -webkit-appearance: none;
    }

    .input::placeholder,
    .textarea::placeholder {
        color: var(--text-faint);
    }

    .input:focus,
    .select:focus,
    .textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(108, 99, 255, .18);
    }

    .input.error,
    .select.error,
    .textarea.error {
        border-color: var(--error);
        box-shadow: 0 0 0 3px rgba(248, 113, 113, .15);
    }

    .select {
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238888a8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 18px;
        padding-right: 40px;
    }

    .select option {
        background: #1e1e28;
    }

    .textarea {
        resize: vertical;
        min-height: 140px;
        line-height: 1.6;
    }

    .field-hint {
        font-size: .75rem;
        color: var(--text-faint);
    }

    .field-error {
        font-size: .75rem;
        color: var(--error);
        display: none;
    }

    .field-error.visible {
        display: block;
    }

    .char-counter {
        font-size: .72rem;
        color: var(--text-faint);
        text-align: right;
    }

    .char-counter.warn {
        color: #fde68a;
    }

    .char-counter.over {
        color: var(--error);
    }

    /* Checkbox */
    .checkbox-field {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    .checkbox-field input[type="checkbox"] {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 2px;
        accent-color: var(--primary);
    }

    .checkbox-field label {
        font-size: .83rem;
        color: var(--text-muted);
        font-weight: 400;
        cursor: pointer;
    }

    .checkbox-field label a {
        color: var(--primary);
    }

    /* Submit */
    .btn-submit {
        width: 100%;
        padding: 14px;
        background: var(--primary);
        color: #fff;
        border-radius: var(--radius-sm);
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: -.01em;
        transition: all var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .btn-submit:hover:not(:disabled) {
        background: var(--primary-dark);
        box-shadow: 0 6px 24px rgba(108, 99, 255, .4);
        transform: translateY(-1px);
    }

    .btn-submit:disabled {
        opacity: .6;
        cursor: not-allowed;
        transform: none;
    }

    .btn-submit svg {
        width: 18px;
        height: 18px;
    }

    /* Success state */
    .success-state {
        display: none;
        text-align: center;
        padding: 48px 24px;
    }

    .success-state.visible {
        display: block;
    }

    .success-icon {
        width: 72px;
        height: 72px;
        background: rgba(74, 222, 128, .12);
        border: 2px solid rgba(74, 222, 128, .25);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-inline: auto;
        margin-bottom: 24px;
    }

    .success-icon svg {
        width: 36px;
        height: 36px;
        color: var(--success);
    }

    .success-state h2 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .success-state p {
        color: var(--text-muted);
        font-size: .93rem;
        margin-bottom: 24px;
    }

    .btn-reset {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 22px;
        border: 1.5px solid var(--border);
        color: var(--text-muted);
        border-radius: var(--radius-sm);
        font-size: .88rem;
        font-weight: 500;
        transition: all var(--transition);
    }

    .btn-reset:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: rgba(108, 99, 255, .08);
    }

    /* FOOTER */
    .site-footer {
        background: var(--bg-surface);
        border-top: 1px solid var(--border);
    }

    .footer-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 48px;
        padding-block: clamp(40px, 5vw, 64px);
        align-items: start;
    }

    .footer-brand {
        max-width: 260px;
    }

    .footer-tagline {
        margin-top: 10px;
        font-size: .83rem;
        color: var(--text-faint);
    }

    .footer-nav {
        display: flex;
        gap: 48px;
        flex-wrap: wrap;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col h4 {
        font-size: .78rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--text-faint);
        margin-bottom: 4px;
    }

    .footer-col a {
        font-size: .85rem;
        color: var(--text-muted);
        transition: color var(--transition);
    }

    .footer-col a:hover {
        color: var(--text);
    }

    .footer-bottom {
        border-top: 1px solid var(--border);
        padding-block: 20px;
    }

    .footer-bottom .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-bottom p {
        font-size: .78rem;
        color: var(--text-faint);
    }

    /* ── FEATURED ON ──────────────────────────────────────────── */
    .featured-on {
        padding: clamp(36px, 5vw, 56px) 0;
        border-top: 1px solid var(--border);
        background: var(--bg);
    }

    .featured-on-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .featured-on-label {
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--text-faint);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .featured-on-label::before,
    .featured-on-label::after {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background: var(--border);
    }

    .featured-on-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(16px, 3vw, 40px);
        flex-wrap: wrap;
        width: 100%;
    }

    /* Target every anchor + image inside the section, classed or not */
    .featured-on-inner > a,
    .featured-on-logos a {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        opacity: .55;
        transition: opacity var(--transition), transform var(--transition);
        filter: grayscale(100%) brightness(1.4);
        max-width: 100%;
    }

    .featured-on-inner > a:hover,
    .featured-on-logos a:hover {
        opacity: 1;
        transform: translateY(-2px);
        filter: grayscale(0%);
    }

    /* Force uniform height; override any inline style or HTML width attribute */
    .featured-on-inner > a img,
    .featured-on-logos a img {
        display: block;
        height: 40px !important;
        width: auto !important;
        max-width: 220px;
        object-fit: contain;
    }

    @media (max-width: 480px) {
        .featured-on-logos {
            gap: 16px;
        }

        .featured-on-inner > a img,
        .featured-on-logos a img {
            height: 30px !important;
            max-width: 160px;
        }
    }

    /* Spinner */
    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .spinner {
        width: 18px;
        height: 18px;
        border: 2px solid rgba(255, 255, 255, .3);
        border-top-color: #fff;
        border-radius: 50%;
        animation: spin .7s linear infinite;
    }

    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .12);
        border-radius: 3px;
    }

    :focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
        border-radius: 4px;
    }

    @media (max-width: 768px) {
        .main-nav {
            display: none;
        }

        .menu-toggle {
            display: flex;
        }

        .contact-layout {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .footer-inner {
            grid-template-columns: 1fr;
        }

        .footer-bottom .container {
            flex-direction: column;
            text-align: center;
        }
    }