﻿/* =============================================
   NexusAPI — Main Stylesheet
   Bold & Vibrant Theme
   ============================================= */

:root {
    --primary: #E84C1E;
    --primary-dark: #C13A12;
    --primary-light: #FF6B3D;
    --accent: #F5A623;
    --accent-dark: #D4881A;
    --violet: #7C3AED;
    --violet-light: #A78BFA;
    --teal: #0D9488;
    --teal-light: #2DD4BF;
    --dark: #0F0E0C;
    --dark-2: #1A1917;
    --dark-3: #252420;
    --dark-4: #2E2D28;
    --mid: #5C5A54;
    --muted: #8A8880;
    --light: #F5F3EE;
    --light-2: #EEECE7;
    --white: #FDFCF9;
    --text: #1A1917;
    --text-muted: #6B6963;
    --border: rgba(26,25,23,0.1);
    --border-strong: rgba(26,25,23,0.2);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --nav-h: 68px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(253,252,249,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

    .navbar.scrolled {
        box-shadow: var(--shadow);
    }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--dark);
}

.brand-icon {
    font-size: 22px;
    color: var(--primary);
    line-height: 1;
}

.brand-name {
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
}

    .nav-link:hover, .nav-link.active {
        color: var(--text);
        background: var(--light);
    }

    .nav-link.nav-cta {
        background: var(--primary);
        color: var(--white);
        padding: 8px 20px;
        border-radius: var(--radius-sm);
        font-weight: 600;
    }

        .nav-link.nav-cta:hover {
            background: var(--primary-dark);
            color: var(--white);
        }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: all 0.3s;
    }

.main-content {
    padding-top: var(--nav-h);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    padding: 100px 24px 80px;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--violet);
    bottom: -100px;
    left: 5%;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 30%;
    left: 40%;
    opacity: 0.2;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,76,30,0.2);
    border: 1px solid rgba(232,76,30,0.4);
    color: #FF8A6A;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
}

    .hero-title span {
        background: linear-gradient(135deg, var(--primary-light), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-code-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-code-bar {
    background: rgba(255,255,255,0.05);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-code-dots {
    display: flex;
    gap: 6px;
}

    .hero-code-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

.dot-red {
    background: #FF5F56;
}

.dot-yellow {
    background: #FFBD2E;
}

.dot-green {
    background: #27C93F;
}

.hero-code-title {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-left: 8px;
    font-family: var(--font-body);
}

.hero-code-body {
    padding: 24px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

.code-comment {
    color: rgba(255,255,255,0.35);
}

.code-key {
    color: #79D9FF;
}

.code-str {
    color: #A8FF78;
}

.code-num {
    color: var(--accent);
}

.code-kw {
    color: var(--primary-light);
}

.code-fn {
    color: var(--violet-light);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.hero-metric {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.hero-metric-val {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.hero-metric-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(232,76,30,0.35);
    }

.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
}

    .btn-ghost:hover {
        background: rgba(255,255,255,0.14);
        color: var(--white);
    }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: var(--white);
    }

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

    .btn-dark:hover {
        background: var(--dark-2);
        transform: translateY(-1px);
    }

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    padding: 10px 20px;
}

/* =============================================
   SECTIONS / GENERAL
   ============================================= */
.section {
    padding: 96px 24px;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-tinted {
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
    font-weight: 300;
}

.section-header {
    margin-bottom: 64px;
}

    .section-header.centered {
        text-align: center;
    }

        .section-header.centered .section-subtitle {
            margin: 0 auto;
        }

/* =============================================
   FEATURES GRID
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        opacity: 0;
        transition: opacity 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.icon-orange {
    background: rgba(232,76,30,0.1);
}

.icon-violet {
    background: rgba(124,58,237,0.1);
}

.icon-teal {
    background: rgba(13,148,136,0.1);
}

.icon-amber {
    background: rgba(245,166,35,0.1);
}

.icon-blue {
    background: rgba(59,130,246,0.1);
}

.icon-pink {
    background: rgba(236,72,153,0.1);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-item {
    background: var(--white);
    padding: 40px 32px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 400;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
    background: var(--dark);
    color: var(--white);
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,76,30,0.25), transparent), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(124,58,237,0.2), transparent);
}

.about-hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero-label {
    display: inline-block;
    background: rgba(232,76,30,0.2);
    border: 1px solid rgba(232,76,30,0.35);
    color: #FF8A6A;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.about-hero-sub {
    font-size: 19px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-weight: 300;
    max-width: 640px;
}

.about-story {
    max-width: 760px;
    margin: 0 auto;
}

    .about-story p {
        font-size: 18px;
        line-height: 1.8;
        color: var(--text);
        margin-bottom: 24px;
        font-weight: 300;
    }

        .about-story p strong {
            font-weight: 600;
            color: var(--text);
        }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.team-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s;
}

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.team-avatar {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
}

.avatar-orange {
    background: linear-gradient(135deg, #FF6B3D, #E84C1E);
    color: #fff;
}

.avatar-violet {
    background: linear-gradient(135deg, #A78BFA, #7C3AED);
    color: #fff;
}

.avatar-teal {
    background: linear-gradient(135deg, #2DD4BF, #0D9488);
    color: #fff;
}

.avatar-amber {
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    color: #fff;
}

.team-info {
    padding: 20px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--text-muted);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.value-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.value-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.value-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.value-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info-card {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: sticky;
    top: 90px;
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-method-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cm-orange {
    background: rgba(232,76,30,0.2);
}

.cm-violet {
    background: rgba(124,58,237,0.2);
}

.cm-teal {
    background: rgba(13,148,136,0.2);
}

.contact-method-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-method-val {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
    margin-top: 2px;
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-form-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* =============================================
   FORM ELEMENTS
   ============================================= */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

    .form-label span {
        color: var(--primary);
    }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: all 0.2s;
    outline: none;
    appearance: none;
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(232,76,30,0.12);
    }

    .form-control::placeholder {
        color: var(--muted);
    }

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

.form-error {
    font-size: 13px;
    color: #DC2626;
    margin-top: 5px;
}

/* Validation states */
.field-validation-error {
    font-size: 13px;
    color: #DC2626;
    margin-top: 5px;
    display: block;
}

.input-validation-error {
    border-color: #DC2626 !important;
}

.validation-summary-errors {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 20px;
}

    .validation-summary-errors ul {
        list-style: disc;
        padding-left: 16px;
    }

    .validation-summary-errors li {
        font-size: 14px;
        color: #DC2626;
        margin-bottom: 4px;
    }

.form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 13px;
}

    .form-divider::before, .form-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

    .form-check input[type="checkbox"] {
        width: 18px;
        height: 18px;
        border: 1.5px solid var(--border-strong);
        border-radius: 4px;
        margin-top: 2px;
        flex-shrink: 0;
        accent-color: var(--primary);
        cursor: pointer;
    }

.form-check-label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

    .form-check-label a {
        color: var(--primary);
        font-weight: 500;
    }

.form-footer-link {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 20px;
}

    .form-footer-link a {
        color: var(--primary);
        font-weight: 600;
    }

/* =============================================
   AUTH LAYOUT
   ============================================= */
.auth-body {
    background: var(--dark);
    overflow-y: auto;
    min-height: 100vh;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.auth-panel-brand {
    background: var(--dark-2);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.auth-brand-logo {
    margin-bottom: 60px;
}

.auth-brand-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.auth-brand-badge {
    display: inline-block;
    background: rgba(232,76,30,0.2);
    border: 1px solid rgba(232,76,30,0.35);
    color: #FF8A6A;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
}

.auth-brand-headline {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.auth-brand-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 40px;
}

.auth-brand-stats {
    display: flex;
    gap: 28px;
}

.auth-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auth-stat-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.auth-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.auth-brand-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(232,76,30,0.3);
    bottom: -80px;
    right: -80px;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(124,58,237,0.25);
    top: 20%;
    left: -60px;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: rgba(245,166,35,0.2);
    top: 50%;
    right: 20%;
}

.auth-panel-form {
    background: var(--white);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 40px;
    min-height: 100vh;
}

.auth-form-inner {
    width: 100%;
    max-width: 420px;
    padding: 20px 0;
}

.auth-form-header {
    margin-bottom: 36px;
}

.auth-form-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.auth-form-sub {
    font-size: 15px;
    color: var(--text-muted);
}

.auth-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.icon-wrap-orange {
    background: rgba(232,76,30,0.1);
}

.icon-wrap-green {
    background: rgba(13,148,136,0.1);
}

.icon-wrap-violet {
    background: rgba(124,58,237,0.1);
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 18px;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
}

.pw-strength {
    margin-top: 8px;
}

.pw-strength-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}

    .pw-strength-bar span {
        flex: 1;
        height: 3px;
        border-radius: 3px;
        background: var(--border);
        transition: background 0.3s;
    }

        .pw-strength-bar span.active-weak {
            background: #EF4444;
        }

        .pw-strength-bar span.active-fair {
            background: var(--accent);
        }

        .pw-strength-bar span.active-strong {
            background: var(--teal);
        }

.pw-strength-label {
    font-size: 12px;
    color: var(--text-muted);
}

.success-box {
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.success-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.success-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #166534;
    margin-bottom: 6px;
}

.success-sub {
    font-size: 14px;
    color: #166534;
    opacity: 0.8;
    line-height: 1.6;
}

.info-box {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: var(--radius);
    padding: 16px 18px;
    font-size: 14px;
    color: #1D4ED8;
    margin-bottom: 20px;
    line-height: 1.55;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 24px 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .nav-brand {
    margin-bottom: 16px;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    max-width: 260px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}

    .footer-links a:hover {
        color: var(--white);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* =============================================
   UTILITY
   ============================================= */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--text-muted);
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.badge-orange {
    background: rgba(232,76,30,0.12);
    color: var(--primary-dark);
}

.badge-teal {
    background: rgba(13,148,136,0.1);
    color: var(--teal);
}

.badge-violet {
    background: rgba(124,58,237,0.1);
    color: var(--violet);
}

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert-success {
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    color: #166534;
}

.alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
}

.alert-info {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1D4ED8;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .auth-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .auth-panel-brand {
        display: none;
    }

    .auth-panel-form {
        min-height: 100vh;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        position: static;
    }
}

@media (max-width: 680px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--border);
        gap: 4px;
    }

        .nav-links.open {
            display: flex;
        }

    .nav-toggle {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 64px 16px;
    }

    .contact-form-wrap, .contact-info-card {
        padding: 28px 20px;
    }
}
