/* ==========================================================================
   SoFi Theme - Premium Modern Fintech Design System
   Inspired by SoFi (https://www.sofi.com/)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --sofi-teal: #00B2A9;
    --sofi-teal-hover: #00968E;
    --sofi-teal-dark: #007A75;
    --sofi-cyan: #00C2B2;
    --sofi-cyan-light: #E0F7F5;
    --sofi-cyan-glow: rgba(0, 178, 169, 0.15);
    
    --sofi-navy: #0A192F;
    --sofi-navy-deep: #050D1A;
    --sofi-navy-card: #0D203D;
    --sofi-navy-light: #162B4D;
    
    --sofi-white: #FFFFFF;
    --sofi-bg-light: #F8FAFC;
    --sofi-bg-alt: #F1F5F9;
    --sofi-card: #FFFFFF;
    
    --sofi-text-main: #0F172A;
    --sofi-text-body: #334155;
    --sofi-text-muted: #64748B;
    --sofi-text-light: #94A3B8;
    
    --sofi-border: #E2E8F0;
    --sofi-border-light: #F1F5F9;
    
    --sofi-green: #10B981;
    --sofi-green-soft: rgba(16, 185, 129, 0.12);
    --sofi-red: #EF4444;
    --sofi-red-soft: rgba(239, 68, 68, 0.12);
    
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 6px 18px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.12);
    --shadow-teal: 0 8px 24px rgba(0, 178, 169, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--sofi-bg-light);
    color: var(--sofi-text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--sofi-text-main);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* ==========================================================================
   NAVIGATION BAR (SoFi Style)
   ========================================================================== */
.sofi-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--sofi-border);
    transition: all 0.3s ease;
}

.sofi-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sofi-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 26px;
    color: var(--sofi-text-main);
    letter-spacing: -0.5px;
}

.sofi-logo-badge {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--sofi-teal), var(--sofi-cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 178, 169, 0.3);
}

.sofi-brand-text {
    display: flex;
    flex-direction: column;
}

.sofi-brand-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--sofi-text-main);
    line-height: 1;
}

.sofi-brand-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--sofi-teal);
    text-transform: uppercase;
    margin-top: 2px;
}

.sofi-nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.sofi-nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--sofi-text-body);
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.sofi-nav-link:hover,
.sofi-nav-link.active {
    color: var(--sofi-teal);
}

.sofi-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: var(--sofi-teal);
    border-radius: 2px;
}

.sofi-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* --- BUTTONS --- */
.btn-sofi-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--sofi-text-main);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--sofi-border);
    background: transparent;
    transition: all 0.2s ease;
}

.btn-sofi-login:hover {
    background: var(--sofi-bg-alt);
    border-color: var(--sofi-text-muted);
    color: var(--sofi-text-main);
}

.btn-sofi-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    background: var(--sofi-teal);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-teal);
    transition: all 0.25s ease;
}

.btn-sofi-primary:hover {
    background: var(--sofi-teal-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 178, 169, 0.35);
}

.btn-sofi-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--sofi-text-main);
    padding: 12px 26px;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: 1.5px solid var(--sofi-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.btn-sofi-secondary:hover {
    background: var(--sofi-bg-alt);
    border-color: var(--sofi-text-muted);
    transform: translateY(-1px);
}

.btn-sofi-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    background: var(--sofi-navy);
    border: none;
    box-shadow: 0 8px 24px rgba(10, 25, 47, 0.2);
    transition: all 0.25s ease;
}

.btn-sofi-dark:hover {
    background: var(--sofi-navy-light);
    transform: translateY(-1px);
}

.sofi-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--sofi-text-main);
    cursor: pointer;
    padding: 6px;
}

/* ==========================================================================
   LIVE STREAMING CRYPTO TICKER
   ========================================================================== */
.sofi-ticker-wrapper {
    background: var(--sofi-navy-deep);
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding: 10px 0;
}

.sofi-ticker-track {
    display: inline-flex;
    animation: sofiTickerScroll 35s linear infinite;
    gap: 28px;
}

.sofi-ticker-track:hover {
    animation-play-state: paused;
}

.sofi-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    padding: 0 6px;
}

.sofi-ticker-sym {
    color: #94A3B8;
    font-weight: 700;
}

.sofi-ticker-val {
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 600;
}

.sofi-badge-up {
    color: #10B981;
    background: rgba(16, 185, 129, 0.15);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 700;
}

.sofi-badge-down {
    color: #F87171;
    background: rgba(239, 68, 68, 0.15);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 700;
}

@keyframes sofiTickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.sofi-hero {
    position: relative;
    padding: 80px 24px 100px;
    background: radial-gradient(circle at 80% 20%, rgba(0, 178, 169, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(10, 25, 47, 0.04) 0%, transparent 50%),
                #FFFFFF;
    border-bottom: 1px solid var(--sofi-border);
    overflow: hidden;
}

.sofi-container {
    max-width: 1280px;
    margin: 0 auto;
}

.sofi-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.sofi-pill-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sofi-cyan-light);
    color: var(--sofi-teal-dark);
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.sofi-pill-dot {
    width: 8px;
    height: 8px;
    background: var(--sofi-teal);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.sofi-hero-title {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 900;
    color: var(--sofi-text-main);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.sofi-hero-title span {
    color: var(--sofi-teal);
}

.sofi-hero-desc {
    font-size: 1.15rem;
    color: var(--sofi-text-body);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 580px;
}

.sofi-hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.sofi-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--sofi-border);
}

.sofi-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--sofi-text-muted);
}

.sofi-trust-item i {
    color: var(--sofi-teal);
    font-size: 18px;
}

/* --- HERO VISUAL CARD --- */
.sofi-hero-card {
    background: var(--sofi-navy-deep);
    border-radius: var(--radius-xl);
    padding: 32px;
    color: #ffffff;
    box-shadow: var(--shadow-xl);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sofi-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sofi-asset-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sofi-asset-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #F7931A;
}

.sofi-hero-stat-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 18px;
}

.sofi-stat-num {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #ffffff;
}

.sofi-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sofi-mini-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.sofi-mini-label {
    font-size: 11px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.sofi-mini-val {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
}

/* ==========================================================================
   FEATURE & VALUE PROP SECTIONS
   ========================================================================== */
.sofi-section {
    padding: 90px 24px;
}

.sofi-section-alt {
    background-color: #FFFFFF;
    border-top: 1px solid var(--sofi-border);
    border-bottom: 1px solid var(--sofi-border);
}

.sofi-section-navy {
    background: var(--sofi-navy);
    color: #FFFFFF;
}

.sofi-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.sofi-section-tag {
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--sofi-teal);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.sofi-section-title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: var(--sofi-text-main);
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.sofi-section-navy .sofi-section-title {
    color: #FFFFFF;
}

.sofi-section-subtitle {
    font-size: 1.1rem;
    color: var(--sofi-text-muted);
    line-height: 1.6;
}

.sofi-section-navy .sofi-section-subtitle {
    color: #94A3B8;
}

/* --- BENTO GRID CARDS --- */
.sofi-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sofi-bento-card {
    background: #FFFFFF;
    border: 1px solid var(--sofi-border);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sofi-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 178, 169, 0.4);
}

.sofi-bento-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #FFFFFF, var(--sofi-cyan-light));
    border-color: rgba(0, 178, 169, 0.3);
}

.sofi-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--sofi-cyan-light);
    color: var(--sofi-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.sofi-card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--sofi-text-main);
}

.sofi-card-desc {
    font-size: 14.5px;
    color: var(--sofi-text-body);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.sofi-card-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--sofi-teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sofi-card-link:hover {
    color: var(--sofi-teal-dark);
    gap: 10px;
}

/* ==========================================================================
   METRICS COUNTER SECTION
   ========================================================================== */
.sofi-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sofi-metric-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.sofi-metric-number {
    font-size: 38px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--sofi-teal);
    margin-bottom: 6px;
}

.sofi-metric-label {
    font-size: 14px;
    font-weight: 600;
    color: #94A3B8;
}

/* ==========================================================================
   COMPARISON TABLE / WHY SOFI
   ========================================================================== */
.sofi-table-card {
    background: #FFFFFF;
    border: 1px solid var(--sofi-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.sofi-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.sofi-table th {
    background: var(--sofi-bg-alt);
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--sofi-text-main);
    border-bottom: 1px solid var(--sofi-border);
}

.sofi-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--sofi-border);
    font-size: 14.5px;
    color: var(--sofi-text-body);
}

.sofi-table tr:last-child td {
    border-bottom: none;
}

.sofi-table td.highlight {
    background: rgba(0, 178, 169, 0.03);
    font-weight: 700;
    color: var(--sofi-teal-dark);
}

/* ==========================================================================
   CTA BANNER (SoFi Style)
   ========================================================================== */
.sofi-cta-banner {
    background: linear-gradient(135deg, var(--sofi-navy), var(--sofi-navy-deep));
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin: 40px 0;
}

.sofi-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 178, 169, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.sofi-cta-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.sofi-cta-desc {
    font-size: 1.15rem;
    color: #94A3B8;
    max-width: 620px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   FOOTER (SoFi Multi-Column Style)
   ========================================================================== */
.sofi-footer {
    background: var(--sofi-navy-deep);
    color: #94A3B8;
    padding: 80px 24px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sofi-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.sofi-footer-brand-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 0 24px;
    max-width: 320px;
    color: #94A3B8;
}

.sofi-footer-heading {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.sofi-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sofi-footer-link {
    font-size: 14px;
    color: #94A3B8;
    transition: color 0.2s ease;
}

.sofi-footer-link:hover {
    color: var(--sofi-teal);
}

.sofi-footer-legal {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12.5px;
    line-height: 1.7;
    color: #64748B;
}

.sofi-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    font-size: 13px;
    color: #64748B;
}

/* ==========================================================================
   AUTHENTICATION PAGES (Login / Signup)
   ========================================================================== */
.sofi-auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--sofi-bg-light);
}

.sofi-auth-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 60px;
}

.sofi-auth-container {
    width: 100%;
    max-width: 1080px;
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--sofi-border);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    overflow: hidden;
}

.sofi-auth-sidebar {
    background: linear-gradient(145deg, var(--sofi-navy-deep), var(--sofi-navy));
    padding: 48px 40px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.sofi-auth-sidebar::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0, 178, 169, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.sofi-auth-content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sofi-auth-header {
    margin-bottom: 28px;
}

.sofi-auth-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--sofi-text-main);
    margin-bottom: 6px;
}

.sofi-auth-subtitle {
    font-size: 14px;
    color: var(--sofi-text-muted);
}

.sofi-form-group {
    margin-bottom: 20px;
}

.sofi-form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--sofi-text-main);
    margin-bottom: 6px;
}

.sofi-input-wrap {
    position: relative;
}

.sofi-input {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--sofi-text-main);
    background: #FFFFFF;
    border: 1.5px solid var(--sofi-border);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.2s ease;
}

.sofi-input:focus {
    border-color: var(--sofi-teal);
    box-shadow: 0 0 0 3px var(--sofi-cyan-glow);
}

.sofi-input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sofi-text-muted);
    cursor: pointer;
}

.sofi-auth-alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sofi-alert-danger {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.sofi-alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.sofi-auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--sofi-text-muted);
}

.sofi-auth-footer a {
    color: var(--sofi-teal);
    font-weight: 700;
}

.sofi-auth-footer a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .sofi-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sofi-bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sofi-bento-card.featured {
        grid-column: span 2;
    }
    .sofi-metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sofi-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .sofi-auth-container {
        grid-template-columns: 1fr;
    }
    .sofi-auth-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .sofi-nav-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        gap: 0;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--sofi-border);
        box-shadow: var(--shadow-lg);
    }
    .sofi-nav-menu.active {
        display: flex;
    }
    .sofi-nav-link {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid var(--sofi-border-light);
    }
    .sofi-mobile-toggle {
        display: block;
    }
    .sofi-bento-grid {
        grid-template-columns: 1fr;
    }
    .sofi-bento-card.featured {
        grid-column: span 1;
    }
    .sofi-metrics-grid {
        grid-template-columns: 1fr;
    }
    .sofi-footer-grid {
        grid-template-columns: 1fr;
    }
    .sofi-auth-content {
        padding: 32px 24px;
    }
    .sofi-cta-banner {
        padding: 40px 24px;
    }
}
