:root {
    --primary-orange: #F97316;
    --charcoal-black: #0F172A;
    --steel-blue: #2563EB;
    --profit-green: #16A34A;
    --amber-heat: #F59E0B;
    --slate-dark: #1E293B;
    --slate-light: #CBD5E1;
    --off-white: #F8FAFC;
    --muted-text: #94A3B8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--off-white);
    color: var(--charcoal-black);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--charcoal-black);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Layout Parts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    background-color: var(--charcoal-black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--slate-light);
    font-weight: 500;
}

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

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background-color: #ea580c;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.btn-outline:hover {
    background-color: var(--primary-orange);
    color: white;
}

/* Hero Section */
.hero {
    padding: 6rem 0 5rem;
    background: linear-gradient(135deg, var(--charcoal-black) 0%, var(--slate-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--primary-orange);
    background: linear-gradient(to right, var(--primary-orange), var(--amber-heat));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero > .container > p:not(.hero-badge) {
    font-size: 1.2rem;
    color: var(--slate-light);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Social Proof Bar */
.social-proof {
    background: white;
    border-bottom: 1px solid var(--slate-light);
    padding: 2rem 0;
}

.proof-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.proof-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--charcoal-black);
}

.proof-label {
    font-size: 0.8rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-light);
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
}

/* Card Icon Badge */
.card-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
    border: 1px solid rgba(249, 115, 22, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.card-icon-badge i {
    width: 24px;
    height: 24px;
}

/* Currency Selector */
.currency-selector {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2.5rem;
    background: white;
    border: 1px solid var(--slate-light);
    border-radius: 0.5rem;
    padding: 0.25rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.currency-btn {
    padding: 0.5rem 1.25rem;
    border: none;
    background: transparent;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-text);
    cursor: pointer;
    transition: 0.2s;
}

.currency-btn:hover {
    color: var(--charcoal-black);
}

.currency-btn.active {
    background: var(--charcoal-black);
    color: white;
}

/* Features */
.features {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-light);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    color: var(--muted-text);
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background-color: #f1f5f9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.price-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.price-card .price-features {
    flex: 1;
}

.price-card.popular {
    border-color: var(--primary-orange);
    position: relative;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.price-card .price span {
    font-size: 1rem;
    color: var(--muted-text);
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.price-features li {
    margin-bottom: 0.75rem;
    color: var(--slate-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-features li::before {
    content: "✓";
    color: var(--profit-green);
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--charcoal-black);
    color: var(--slate-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary-orange);
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--muted-text);
}

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

.footer-bottom {
    border-top: 1px solid var(--slate-dark);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-text);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none;
    }
    .proof-grid {
        gap: 1.5rem;
    }
    .proof-divider {
        display: none;
    }
    .proof-item {
        min-width: 120px;
    }
    .currency-selector {
        width: 100%;
        max-width: 320px;
    }
    .currency-btn {
        flex: 1;
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* Onboarding & Auth Styles */
.onboarding-container, .auth-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.auth-container {
    max-width: 450px;
}

.onboarding-card, .auth-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    border: 1px solid var(--slate-light);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header i {
    width: 48px;
    height: 48px;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    color: var(--muted-text);
    font-size: 0.875rem;
}

.auth-footer a {
    color: var(--steel-blue);
    font-weight: 600;
}

/* Dashboard Styles */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background-color: var(--charcoal-black);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
}

.sidebar-header {
    padding: 2rem;
    border-bottom: 1px solid var(--slate-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.sidebar-menu {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: var(--slate-light);
    transition: 0.3s;
}

.menu-item:hover, .menu-item.active {
    background-color: var(--slate-dark);
    color: var(--primary-orange);
}

.sidebar-footer {
    padding: 2rem;
    border-top: 1px solid var(--slate-dark);
}

.main-content {
    flex: 1;
    margin-left: 260px;
    background-color: var(--off-white);
}

.top-bar {
    background: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--slate-light);
}

.dashboard-content {
    padding: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-light);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.stat-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: var(--off-white);
    color: var(--primary-orange);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--muted-text);
    font-size: 0.875rem;
}

.stat-trend {
    font-size: 0.75rem;
    font-weight: 600;
}

.trend-up { color: var(--profit-green); }
.trend-down { color: #ef4444; }

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.content-card {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-light);
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--off-white);
}

.activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-info h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.activity-info p {
    font-size: 0.8125rem;
    color: var(--muted-text);
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2000;
        transition: 0.3s;
    }
    
    .sidebar:not(.mobile-open) {
        height: 70px;
        overflow: hidden;
    }

    .sidebar.mobile-open {
        height: 100vh;
    }

    .sidebar-header {
        padding: 1rem 2rem;
        height: 70px;
    }

    .mobile-toggle {
        display: block;
    }

    .sidebar-header .logo span, .menu-item span, .sidebar-footer span {
        display: inline;
    }

    .sidebar:not(.mobile-open) .sidebar-menu,
    .sidebar:not(.mobile-open) .sidebar-footer {
        display: none;
    }

    .main-content {
        margin-left: 0;
        padding-top: 70px;
    }

    .top-bar {
        padding: 1rem;
    }

    .dashboard-content {
        padding: 1rem;
    }

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

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .card-header .header-right {
        width: 100%;
    }

    .card-header .form-control {
        width: 100% !important;
    }

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

    .settings-nav {
        position: static;
        margin-bottom: 1.5rem;
    }

    .settings-nav-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .settings-nav-item {
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }

    .settings-nav-item.active {
        border-left-color: transparent;
        border-bottom-color: var(--primary-orange);
    }

    .form-group > div, 
    form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .rule-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .rule-card > div:last-child {
        width: 100%;
        justify-content: space-between;
    }

    .top-bar {
        display: none; /* Hide top bar on mobile as we have the sidebar header */
    }

    .user-actions {
        flex-direction: column;
        width: 100%;
    }

    .user-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.auth-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-light);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header i {
    color: var(--primary-orange);
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--muted-text);
}

.auth-footer a {
    color: var(--steel-blue);
    font-weight: 600;
}

.steps-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.steps-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--slate-light);
    z-index: 1;
    transform: translateY(-50%);
}

.step-item {
    position: relative;
    z-index: 2;
    background: var(--off-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--slate-light);
    font-weight: bold;
    transition: 0.3s;
}

.step-item.active {
    border-color: var(--primary-orange);
    background: var(--primary-orange);
    color: white;
}

.step-item.completed {
    border-color: var(--profit-green);
    background: var(--profit-green);
    color: white;
}

.onboarding-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-light);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--slate-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.upload-area {
    border: 2px dashed var(--slate-light);
    padding: 3rem;
    text-align: center;
    border-radius: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.upload-area:hover {
    border-color: var(--primary-orange);
    background: rgba(249, 115, 22, 0.05);
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Inventory Table Styles */
.inventory-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.inventory-table th {
    padding: 1rem;
    background: var(--off-white);
    color: var(--muted-text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    border-bottom: 2px solid var(--slate-light);
}

.inventory-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--off-white);
    color: var(--charcoal-black);
    font-size: 0.9375rem;
}

.inventory-table tr:hover td {
    background-color: #f8fafc;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background-color: #ecfdf5;
    color: var(--profit-green);
}

.badge-warning {
    background-color: #fff7ed;
    color: var(--amber-heat);
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--muted-text);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: 0.2s;
}

.action-btn:hover {
    background: var(--off-white);
    color: var(--charcoal-black);
}

.action-btn i {
    width: 18px;
    height: 18px;
}

/* Repricing Rule Cards */
.rule-card {
    padding: 1.5rem;
    border: 1px solid var(--slate-light);
    border-radius: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.rule-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.rule-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rule-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.rule-info p {
    color: var(--muted-text);
    font-size: 0.875rem;
}

/* Toggle Switch */
.toggle-switch {
    width: 40px;
    height: 20px;
    background: var(--slate-light);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-switch.active {
    background: var(--profit-green);
}

.toggle-handle {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.toggle-switch.active .toggle-handle {
    left: 22px;
}

/* Settings Page Specifics */
.settings-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
}

.settings-nav {
    position: sticky;
    top: 5rem;
}

.settings-nav-list {
    display: flex;
    flex-direction: column;
}

.settings-nav-item {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-text);
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: 0.3s;
}

.settings-nav-item:hover {
    color: var(--charcoal-black);
    background: var(--off-white);
}

.settings-nav-item.active {
    color: var(--primary-orange);
    background: rgba(249, 115, 22, 0.05);
    font-weight: 600;
    border-left-color: var(--primary-orange);
}

.settings-nav-item i {
    width: 18px;
    height: 18px;
}

.notification-setting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--off-white);
}

.notification-setting:last-child {
    border-bottom: none;
}

.security-option {
    padding: 1.5rem;
    border: 1px solid var(--slate-light);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Global nav reset for settings sidebar */
.settings-nav nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

/* Two-Panel Auth Layout */
.auth-split {
    display: flex;
    min-height: calc(100vh - 60px);
}

.auth-brand-panel {
    flex: 1;
    background: linear-gradient(135deg, var(--charcoal-black) 0%, var(--slate-dark) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.auth-brand-panel::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.auth-brand-panel::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.brand-content {
    position: relative;
    z-index: 1;
    max-width: 420px;
}

.brand-content h1 {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.brand-content h1 span {
    background: linear-gradient(to right, var(--primary-orange), var(--amber-heat));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-content > p {
    color: var(--slate-light);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.brand-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.brand-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--slate-light);
    font-size: 0.95rem;
}

.brand-features li .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: rgba(249, 115, 22, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-features li .feature-icon i {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
}

.auth-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--off-white);
    max-width: 560px;
}

.auth-form-panel .auth-form-inner {
    width: 100%;
    max-width: 420px;
}

.icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.icon-badge i {
    width: 28px;
    height: 28px;
    color: var(--primary-orange);
}

.auth-form-panel .auth-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.auth-form-panel .auth-header p {
    font-size: 0.9rem;
}

.alert {
    padding: 0.875rem 1rem;
    margin-bottom: 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.input-group {
    position: relative;
}

.input-group .form-control {
    padding-left: 2.75rem;
}

.input-group-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-text);
    pointer-events: none;
}

.input-group-icon i {
    width: 18px;
    height: 18px;
}

.password-checklist {
    margin-top: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--off-white);
    border-radius: 0.5rem;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.password-checklist.focused {
    border-color: var(--slate-light);
}

.password-checklist p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.password-checklist ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
}

.password-checklist li {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: var(--muted-text);
    transition: color 0.2s;
}

.password-checklist li.valid {
    color: var(--profit-green);
}

.password-checklist li .req-icon {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.password-checklist li .req-icon i {
    width: 14px;
    height: 14px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--muted-text);
    font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--slate-light);
}

.trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--muted-text);
    font-size: 0.75rem;
}

.trust-item i {
    width: 14px;
    height: 14px;
}

@media (max-width: 900px) {
    .auth-split {
        flex-direction: column;
    }

    .auth-brand-panel {
        padding: 2.5rem 2rem;
    }

    .auth-form-panel {
        max-width: 100%;
        padding: 2rem;
    }

    .password-checklist ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .auth-brand-panel {
        padding: 2rem 1.5rem;
    }

    .brand-content h1 {
        font-size: 1.75rem;
    }

    .brand-features {
        gap: 1rem;
    }

    .trust-signals {
        flex-direction: column;
        gap: 0.75rem;
    }
}
