/* ====================================================
   FISHBOWL CRM — PRODUCTION CSS
   ====================================================  */

/* Base Reset & Variables */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-dark: #030816;
    --primary-blue: #2A5BFF;
    --navy-blue: #1539A2;
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass-bg: #1C1C1E;
    --glass-card-bg: rgba(28, 28, 30, 0.5);
    --border-light: rgba(255, 255, 255, 0.08);
    --input-bg: rgba(0, 0, 0, 0.4);
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --green: #34C759;
    --orange: #FF9500;
    --red: #FF3B30;
    --purple: #AF52DE;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark); font-family: var(--font-stack); color: var(--text-white);
    min-height: 100vh; display: flex; justify-content: center; align-items: center; overflow-x: hidden;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

.landing-body { display: block; }

/* ─────────────────────────────
   ANIMATIONS & KEYFRAMES
   ───────────────────────────── */
@keyframes driftBlue {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.5; }
    33% { transform: translate(120px, 80px) scale(1.2) rotate(15deg); opacity: 0.7; }
    66% { transform: translate(-50px, 150px) scale(0.9) rotate(-10deg); opacity: 0.6; }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.5; }
}
@keyframes driftNavy {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.4; }
    33% { transform: translate(-100px, -120px) scale(1.1) rotate(-15deg); opacity: 0.6; }
    66% { transform: translate(80px, -80px) scale(0.9) rotate(10deg); opacity: 0.5; }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.4; }
}
@keyframes floatUp { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes floatDown { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes hoverBob { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }
@keyframes pulseWidth { 0% { height: 10%; } 50% { height: 90%; } 100% { height: 10%; } }
@keyframes shine { 0% { left: -100%; opacity: 0; } 50% { opacity: 0.5; } 100% { left: 100%; opacity: 0; } }
@keyframes spin { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
@keyframes scaleIn { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* Abstract Mesh Backgrounds */
.mesh-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.5; }
.blue-glow { width: 60vw; height: 60vw; max-width: 800px; max-height: 800px; background: var(--primary-blue); top: -10%; left: -10%; animation: driftBlue 20s cubic-bezier(0.4, 0, 0.2, 1) infinite; }
.navy-glow { width: 70vw; height: 70vw; max-width: 900px; max-height: 900px; background: var(--navy-blue); bottom: -20%; right: -10%; animation: driftNavy 25s cubic-bezier(0.4, 0, 0.2, 1) infinite reverse; }

.glow-landing { top: 5%; left: 50%; transform: translateX(-50%); width: 800px; opacity: 0.4; }
.glow-landing-alt { bottom: 20%; left: -200px; opacity: 0.3; }

/* ─────────────────────────────
   GLOBAL COMPONENTS
   ───────────────────────────── */

/* Global Glass Card */
.glass-card { background: var(--glass-card-bg); border: 1px solid var(--border-light); border-radius: 32px; padding: 40px 32px; box-shadow: 0 24px 48px rgba(0,0,0,0.3); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; }
.glass-card:hover { border-color: rgba(255,255,255,0.15); box-shadow: 0 32px 56px rgba(0,0,0,0.5); }

/* Buttons */
.btn-primary { background: var(--primary-blue); color: var(--text-white); border: none; padding: 18px; border-radius: 16px; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 12px; transition: all 0.3s ease; margin-top: 12px; font-family: var(--font-stack); }
.btn-primary:hover { background: #1a4cf0; transform: translateY(-4px); box-shadow: 0 12px 24px rgba(42, 91, 255, 0.4); }
.btn-primary:active { transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-secondary { background: rgba(255, 255, 255, 0.05); color: var(--text-white); border: 1px solid var(--border-light); padding: 18px 24px; border-radius: 16px; font-size: 16px; font-weight: 600; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; transition: all 0.3s ease; font-family: var(--font-stack); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.3); }

/* Scroll fade-in animations */
.fade-in-element { opacity: 0; transform: translateY(30px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in-element.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────
   NAVIGATION
   ───────────────────────────── */
.navbar { width: 100%; padding: 20px 0; position: fixed; top: 0; left: 0; z-index: 100; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--border-light); background: rgba(3, 8, 22, 0.4); animation: floatDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { color: var(--text-white); text-decoration: none; font-weight: 500; font-size: 14px; opacity: 0.8; transition: opacity 0.3s; }
.nav-link:hover { opacity: 1; }
.nav-btn { background: #FFFFFF; color: #030816; padding: 10px 20px; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.nav-btn:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 16px rgba(255,255,255,0.2); }
.brand-header { display: flex; align-items: center; gap: 10px; }
.brand-icon { width: 24px; height: 24px; color: var(--text-white); }
.brand-text { font-size: 18px; font-weight: 800; letter-spacing: 1px; }

/* Mobile Menu */
.mobile-menu-btn { display: none; background: none; border: 1px solid var(--border-light); color: white; padding: 8px; border-radius: 10px; cursor: pointer; }
.mobile-menu-btn svg { width: 20px; height: 20px; }
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(3, 8, 22, 0.95); backdrop-filter: blur(20px); z-index: 99; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-menu-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu-content { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.mobile-menu-link { color: white; text-decoration: none; font-size: 24px; font-weight: 600; opacity: 0.8; transition: opacity 0.3s; }
.mobile-menu-link:hover { opacity: 1; }

/* ─────────────────────────────
   HERO SECTION
   ───────────────────────────── */
.hero-section { max-width: 1200px; margin: 0 auto; padding: 160px 40px 60px; text-align: center; display: flex; flex-direction: column; align-items: center; }

.badge-wrapper { position: relative; overflow: hidden; display: inline-block; border-radius: 100px; margin-bottom: 30px; opacity: 0; animation: floatUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards; }
.badge { background: rgba(42, 91, 255, 0.1); color: #5B82FF; padding: 8px 18px; font-size: 13px; font-weight: 600; border: 1px solid rgba(42, 91, 255, 0.3); position: relative; border-radius: 100px; }
.badge-shine { position: absolute; top: 0; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); animation: shine 3s infinite; transform: skewX(-20deg); }

.hero-title { font-size: 72px; font-weight: 800; line-height: 1.1; letter-spacing: -2.5px; margin-bottom: 24px; max-width: 900px; opacity: 0; animation: floatUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.7) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 20px; color: var(--text-muted); max-width: 700px; line-height: 1.6; margin-bottom: 40px; opacity: 0; animation: floatUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards; }
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-bottom: 80px; opacity: 0; animation: floatUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards; }
.hero-cta .btn-primary { margin-top: 0; }

/* ─────────────────────────────
   APP MOCKUP
   ───────────────────────────── */
.hero-mockup { width: 100%; max-width: 1050px; background: rgba(3, 8, 22, 0.85); border: 1px solid var(--border-light); border-radius: 20px; box-shadow: 0 40px 100px rgba(0,0,0,0.8); overflow: hidden; backdrop-filter: blur(30px); opacity: 0; animation: floatUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards, hoverBob 6s ease-in-out infinite 1.7s; text-align: left; }
.mockup-header { background: rgba(0,0,0,0.6); padding: 14px 20px; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between;}
.dots { display: flex; gap: 8px; width: 60px; }
.dot { width: 12px; height: 12px; border-radius: 6px; }
.dot.red { background: #FF5F56; } .dot.yellow { background: #FFBD2E; } .dot.green { background: #27C93F; }
.mock-url-bar { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.3); font-size: 11px; padding: 6px 40px; border-radius: 6px; font-weight: 500; }

.mockup-body { padding: 0; display: flex; height: 540px; }
.mock-sidebar { width: 220px; border-right: 1px solid var(--border-light); padding: 24px 20px; background: rgba(255,255,255,0.01); display: flex; flex-direction: column; gap: 16px; }
.mock-sidebar-logo { display:flex; align-items:center; gap: 8px; font-weight: 800; font-size: 14px; margin-bottom: 30px; opacity: 0.8; color: white;}
.mock-sidebar-logo i { width: 16px; height: 16px; }
.mock-menu-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; opacity: 0.6; }
.mock-menu-item.active { background: rgba(42, 91, 255, 0.15); opacity: 1; color: var(--primary-blue); }
.mock-menu-item i { width: 18px; height: 18px; }
.mock-line-text { flex: 1; height: 8px; background: rgba(255,255,255,0.2); border-radius: 4px; }
.mock-line-text.w-short { width: 60%; flex: none; }

.mock-content { flex: 1; padding: 32px 40px; background: rgba(255,255,255,0.02); display: flex; flex-direction: column; }
.mock-top-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mock-search { background: rgba(255,255,255,0.05); padding: 10px 20px; border-radius: 100px; display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.4); width: 250px; }
.mock-search i { width: 14px; height: 14px; }
.mock-avatar-row { display: flex; align-items: center; gap: 20px; }
.mock-bell { color: rgba(255,255,255,0.6); width: 18px; height:18px; }
.mock-avatar-circle { width: 36px; height: 36px; border-radius: 18px; background: linear-gradient(135deg, var(--primary-blue) 0%, var(--purple) 100%); border: 2px solid rgba(255,255,255,0.3); }

.mock-greeting { margin-bottom: 30px; }
.mock-company-badge { display: inline-flex; align-items: center; gap: 6px; background: black; padding: 6px 12px; border-radius: 100px; font-size: 10px; font-weight: 700; margin-bottom: 12px; }
.mock-company-badge i { width: 10px; height: 10px; }
.mock-greeting h2 { font-size: 28px; font-weight: 400; letter-spacing: -1px; }

.mock-app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mock-app-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border-light); border-radius: 20px; padding: 24px; }
.mock-col-2 { grid-column: span 2; }
.card-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }

/* Chart Mock */
.mock-chart-container { height: 80px; display: flex; align-items: flex-end; }
.mock-bar-wrapper { display: flex; gap: 12px; align-items: flex-end; height: 100%; width: 100%; }
.mock-bar { flex: 1; background: var(--primary-blue); border-radius: 6px 6px 0 0; opacity: 0.9; }
.b1 { animation: pulseWidth 3s ease-in-out infinite alternate; }
.b2 { animation: pulseWidth 4s ease-in-out infinite alternate-reverse; }
.b3 { animation: pulseWidth 2.5s ease-in-out infinite alternate; }
.b4 { height: 80%; background: #000; border: 1px solid rgba(255,255,255,0.2); }
.b5 { animation: pulseWidth 5s ease-in-out infinite alternate-reverse; }
.b6 { animation: pulseWidth 3.5s ease-in-out infinite alternate; }
.b7 { height: 90%; background: var(--green); }

/* Team Mock */
.team-stack { display: flex; margin-bottom: 15px; }
.stack-avatar-circle { width: 44px; height: 44px; border-radius: 22px; border: 3px solid #1C1C1E; margin-right: -15px; }
.c1 { background: linear-gradient(135deg, #FF6B6B, #FF4757); }
.c2 { background: linear-gradient(135deg, #70A1FF, #1E90FF); }
.c3 { background: linear-gradient(135deg, #FFA502, #FF6348); }
.stack-avatar { width: 44px; height: 44px; border-radius: 22px; border: 3px solid #1C1C1E; margin-right: -15px; }
.s4 { background: var(--primary-blue); display: flex; justify-content: center; align-items: center; font-size: 12px; font-weight: 700; color: white;}
.mt-4 { margin-top: 10px; }

/* Rule Mock */
.mock-rule { display: flex; align-items: center; background: rgba(0,0,0,0.3); padding: 12px; border-radius: 12px; gap: 12px; }
.rule-details { flex: 1; }
.mock-text-mini { width: 40px; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-top: 6px; }
.mock-toggle { width: 34px; height: 20px; border-radius: 10px; background: rgba(255,255,255,0.2); position: relative; }
.mock-toggle.active { background: var(--green); }
.mock-toggle.active::after { content:''; position:absolute; right: 2px; top: 2px; width: 16px; height: 16px; border-radius: 8px; background: white; }

/* List Mock */
.mock-lead-row { display: flex; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); gap: 12px; }
.mock-circle-icon { width: 32px; height: 32px; border-radius: 16px; background: rgba(255,255,255,0.1); }
.mock-text-line { height: 10px; background: rgba(255,255,255,0.2); border-radius: 5px; }
.w-long { width: 80%; } .w-mid { width: 50%; }
.mock-badge { padding: 4px 10px; border-radius: 8px; font-size: 10px; font-weight: 700; }
.mock-badge.green { background: rgba(52, 199, 89, 0.2); color: var(--green); }
.mock-badge.yellow { background: rgba(255, 149, 0, 0.2); color: var(--orange); }

/* ─────────────────────────────
   SOCIAL PROOF
   ───────────────────────────── */
.social-proof { text-align: center; margin: 40px auto 80px; max-width: 900px; padding: 0 40px; }
.social-proof p { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 30px; }
.logos-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.proof-stat { text-align: center; }
.stat-num { display: block; font-size: 32px; font-weight: 800; letter-spacing: -1px; background: linear-gradient(135deg, #FFFFFF, rgba(255,255,255,0.7)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { display: block; font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ─────────────────────────────
   BENTO FEATURES GRID
   ───────────────────────────── */
.bento-features { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
.features-header { text-align: center; margin-bottom: 60px; }
.section-badge { font-size: 12px; font-weight: 700; color: var(--primary-blue); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.features-header h2 { font-size: 40px; font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; }
.features-header p { font-size: 18px; color: var(--text-muted); }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}
.bento-card { padding: 40px 32px; background: rgba(28, 28, 30, 0.4); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.bento-card:hover { transform: scale(1.02); }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-vertical { grid-column: span 1; grid-row: span 2; }
.bento-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; line-height: 1.3;}
.bento-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px;}
.feature-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; justify-content: center; align-items: center; margin-bottom: 24px; }
.bento-wide { grid-column: span 3; }

.bento-split { display: flex; gap: 40px; align-items: center; }
.bento-split-left { flex: 1; }
.bento-split-right { flex: 1; display:flex; justify-content: center; }
.abstract-chat { width: 100%; border: 1px solid var(--border-light); border-radius: 16px; padding: 20px; background: rgba(0,0,0,0.4); height: 180px; display: flex; flex-direction: column; overflow: hidden; }
.chat-bubble { padding: 12px 16px; border-radius: 16px; font-size: 13px; max-width: 85%; margin-bottom: 12px; opacity: 0; position: absolute; }
.chat-bubble.left { background: rgba(255,255,255,0.1); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-bubble.right { background: var(--primary-blue); border-bottom-right-radius: 4px; align-self: flex-end; color: white; display: flex;}

/* Chat Sequence Animations */
@keyframes showMsg1 {
    0%, 10% { opacity: 0; transform: translateY(10px); position: relative; }
    15%, 85% { opacity: 1; transform: translateY(0); position: relative; }
    90%, 100% { opacity: 0; transform: translateY(-10px); position: relative; }
}
@keyframes showTyping {
    0%, 25% { opacity: 0; transform: translateY(10px); display: none; position: absolute;}
    30%, 55% { opacity: 1; transform: translateY(0); display: flex; position: relative;}
    60%, 100% { opacity: 0; transform: translateY(-10px); display: none; position: absolute;}
}
@keyframes showMsg2 {
    0%, 60% { opacity: 0; transform: translateY(10px); display: none; position: absolute;}
    65%, 85% { opacity: 1; transform: translateY(0); display: flex; position: relative;}
    90%, 100% { opacity: 0; transform: translateY(-10px); display: none; position: absolute;}
}
@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.msg-1 { animation: showMsg1 8s infinite; }
.typing-indicator { animation: showTyping 8s infinite; background: rgba(255,255,255,0.08) !important; color: white; align-items: center; gap: 4px; }
.msg-2 { animation: showMsg2 8s infinite; }

.dot-jump { width: 6px; height: 6px; border-radius: 3px; background: white; animation: typingDot 1.2s infinite; }
.dot-jump:nth-child(2) { animation-delay: 0.2s; }
.dot-jump:nth-child(3) { animation-delay: 0.4s; }

/* ─────────────────────────────
   STEPS / WORKFLOW
   ───────────────────────────── */
.steps-section { max-width: 1000px; margin: 0 auto; padding: 100px 40px; }
.steps-container { display: flex; flex-direction: column; gap: 0; }
.step-row { display: flex; align-items: center; gap: 32px; padding: 40px; background: rgba(28, 28, 30, 0.4); border-radius: 32px; }
.step-num { font-size: 80px; font-weight: 800; color: rgba(255,255,255,0.05); line-height: 1; flex-shrink: 0; }
.step-info h3 { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.step-info p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.step-divider { width: 2px; height: 60px; background: linear-gradient(180deg, var(--border-light), transparent); margin-left: 90px; }

/* ─────────────────────────────
   PRICING
   ───────────────────────────── */
.pricing-section { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card { padding: 40px 32px; text-align: center; position: relative; overflow: hidden; }
.pricing-featured { border-color: rgba(42, 91, 255, 0.4); background: rgba(42, 91, 255, 0.05); }
.pricing-featured:hover { border-color: rgba(42, 91, 255, 0.6); }
.pricing-popular { position: absolute; top: 16px; right: -32px; background: var(--primary-blue); color: white; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 4px 40px; transform: rotate(45deg); }
.pricing-badge { font-size: 14px; font-weight: 700; color: var(--primary-blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.pricing-price { font-size: 56px; font-weight: 800; letter-spacing: -2px; margin-bottom: 24px; }
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--text-muted); }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li { padding: 10px 0; font-size: 15px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border-light); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* ─────────────────────────────
   CTA & FOOTER
   ───────────────────────────── */
.cta-section { max-width: 1200px; margin: 0 auto; padding: 60px 40px 100px; }
.cta-box { text-align: center; padding: 100px 40px; background: linear-gradient(180deg, rgba(42, 91, 255, 0.1) 0%, rgba(28, 28, 30, 0.4) 100%); margin-bottom: 40px; }
.cta-box h2 { font-size: 48px; font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; }
.cta-box p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }

.footer { border-top: 1px solid var(--border-light); padding: 40px 0; background: rgba(0,0,0,0.2); }
.footer-content { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-copy { color: var(--text-muted); font-size: 14px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: white; }

/* ─────────────────────────────
   REGISTRATION PAGE
   ───────────────────────────── */
.page-container { max-width: 520px; width: 100%; padding: 40px 20px; text-align: center; }

.register-card { margin-top: 24px; }

.card-header { margin-bottom: 32px; }
.card-header h1, .card-header h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
.card-header p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.auth-form { display: flex; flex-direction: column; gap: 18px; text-align: left; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.3px; }
.input-wrap { display: flex; align-items: center; gap: 12px; background: var(--input-bg); border: 1px solid var(--border-light); border-radius: 16px; padding: 14px 16px; transition: border-color 0.3s; position: relative; }
.input-wrap:focus-within { border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(42, 91, 255, 0.15); }
.input-wrap i { width: 18px; height: 18px; color: rgba(255,255,255,0.4); flex-shrink: 0; }
.input-wrap input { background: transparent; border: none; color: var(--text-white); font-size: 15px; flex: 1; outline: none; font-family: var(--font-stack); }
.input-wrap input::placeholder { color: rgba(255,255,255,0.25); }
.helper-text { font-size: 12px; color: rgba(255,255,255,0.35); }

/* Password toggle */
.toggle-pw { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; padding: 4px; display: flex; align-items: center; }
.toggle-pw:hover { color: rgba(255,255,255,0.7); }

/* Password Strength */
.pw-strength { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; margin-top: -4px; }
.pw-bar { height: 100%; width: 0; border-radius: 2px; transition: width 0.3s, background 0.3s; }
.pw-bar.weak { background: var(--red); }
.pw-bar.medium { background: var(--orange); }
.pw-bar.strong { background: var(--green); }

/* Form Alert */
.form-alert { display: none; padding: 14px 16px; border-radius: 12px; font-size: 14px; font-weight: 500; margin-top: 4px; text-align: center; }
.form-alert.error { background: rgba(255, 59, 48, 0.12); color: #FF6B6B; border: 1px solid rgba(255, 59, 48, 0.2); }
.form-alert.success { background: rgba(52, 199, 89, 0.12); color: var(--green); border: 1px solid rgba(52, 199, 89, 0.2); }

/* Loader */
.loader { width: 22px; height: 22px; border: 3px solid rgba(255,255,255,0.2); border-top-color: white; border-radius: 50%; animation: spin 0.8s linear infinite; }

.form-footer-text { font-size: 14px; color: var(--text-muted); text-align: center; margin-top: 8px; }
.footer-link { color: var(--primary-blue); text-decoration: none; font-weight: 600; }
.footer-link:hover { text-decoration: underline; }

/* ─────────────────────────────
   SUCCESS OVERLAY
   ───────────────────────────── */
.success-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(3, 8, 22, 0.9); backdrop-filter: blur(20px); z-index: 200; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.success-overlay.active { opacity: 1; pointer-events: all; }
.success-card { max-width: 460px; width: 90%; text-align: center; animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.success-icon-circle { width: 72px; height: 72px; border-radius: 36px; background: rgba(52, 199, 89, 0.15); display: flex; justify-content: center; align-items: center; margin: 0 auto 20px; }
.success-icon-circle svg { width: 32px; height: 32px; color: var(--green); }
.success-card h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.success-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.success-code { background: rgba(42, 91, 255, 0.1); border: 1px solid rgba(42, 91, 255, 0.3); padding: 14px 20px; border-radius: 12px; font-size: 16px; font-weight: 700; color: #5B82FF; letter-spacing: 1px; margin-bottom: 24px; }
.success-actions { display: flex; gap: 12px; }

/* ─────────────────────────────
   RESPONSIVE
   ───────────────────────────── */
@media (max-width: 1000px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-wide { grid-column: span 2; }
    .bento-large { grid-column: span 2; grid-row: span 1; }
    .bento-vertical { grid-column: span 1; grid-row: span 1; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .pricing-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 900px) {
    .hero-title { font-size: 56px; }
    .mock-sidebar { display: none; }
    .mock-col-2 { grid-column: span 1; }
    .mock-app-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card:last-child { grid-column: span 1; max-width: 100%; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide, .bento-large, .bento-vertical { grid-column: span 1; }
    .bento-split { flex-direction: column; }
    .hero-title { font-size: 40px; }
    .hero-cta { flex-direction: column; }
    .step-row { flex-direction: column; text-align: center; gap: 16px; }
    .step-divider { margin-left: 0; align-self: center; }
    .cta-box h2 { font-size: 32px; }
    .mockup-body { height: 400px; }
    .success-actions { flex-direction: column; }
    .logos-grid { gap: 24px; }
    .pricing-price { font-size: 42px; }
}
