/* ===========================
   LEDGERSYS — GLOBAL STYLES
=========================== */

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

:root {
    --navy: #12283c;
    --navy-dark: #0d1e2e;
    --navy-light: #1a3a56;
    --orange: #f7931a;
    --orange-dark: #e07d0a;
    --white: #ffffff;
    --black: #0a0a0a;
    --grey-light: #f4f6f9;
    --grey-mid: #e8ecf0;
    --grey-text: #6b7280;
    --green: #10b981;
    --red: #ef4444;
    --font: 'Inter', sans-serif;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* TYPOGRAPHY */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--grey-text); line-height: 1.7; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
section { padding: clamp(64px, 8vw, 120px) 0; }

@media (max-width: 1024px) { .container { padding: 0 32px; } }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* SECTION LABELS */
.section-label { display: inline-block; background: rgba(247,147,26,0.12); color: var(--orange); font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.section-title { color: var(--black); margin-bottom: 16px; }
.section-sub { font-size: 1.1rem; max-width: 600px; margin-bottom: 60px; }

/* ===========================
   BUTTONS
=========================== */
.btn-orange { background: var(--orange); color: var(--white); padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,147,26,0.35); }
.btn-orange.btn-large { padding: 16px 36px; font-size: 1.05rem; border-radius: 10px; }
.btn-ghost { color: var(--white); font-weight: 600; text-decoration: none; padding: 10px 20px; border-radius: 8px; transition: var(--transition); font-size: 0.95rem; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-outline { border: 2px solid rgba(255,255,255,0.4); color: var(--white); padding: 14px 32px; border-radius: 10px; font-weight: 700; text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-outline-dark { border: 2px solid var(--navy); color: var(--navy); padding: 12px 28px; border-radius: 8px; font-weight: 700; text-decoration: none; transition: var(--transition); display: inline-block; text-align: center; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); padding: 16px 36px; border-radius: 10px; font-weight: 800; font-size: 1.05rem; text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* ===========================
   HEADER
=========================== */
.header { background: var(--navy); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(10px); }
.header-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 32px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 40px; height: 40px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); font-weight: 900; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 1.25rem; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -0.5px; }
.logo-tagline { font-size: 0.65rem; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.5px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link { color: rgba(255,255,255,0.75); text-decoration: none; font-weight: 500; font-size: 0.9rem; padding: 8px 14px; border-radius: 6px; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 999; flex-direction: column; padding: 32px 24px; gap: 8px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav-link { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 1.1rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: var(--transition); }
.mobile-nav-link:hover { color: var(--orange); }
.mobile-cta { background: var(--orange); color: var(--white) !important; text-align: center; border-radius: 10px; padding: 16px !important; margin-top: 16px; border: none !important; }

/* ===========================
   HERO
=========================== */
.hero { background: var(--navy); padding: 80px 0 100px; overflow: hidden; }
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(247,147,26,0.15); color: var(--orange); font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 8px 18px; border-radius: 50px; margin-bottom: 24px; border: 1px solid rgba(247,147,26,0.25); }
.hero-headline { color: var(--white); margin-bottom: 24px; }
.hero-headline .highlight { color: var(--orange); }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust span { color: rgba(255,255,255,0.6); font-size: 0.85rem; display: flex; align-items: center; gap: 6px; }
.hero-trust i { color: var(--green); }

/* DASHBOARD MOCKUP */
.hero-visual { display: flex; justify-content: center; }
.dashboard-mockup { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); overflow: hidden; width: 100%; max-width: 480px; box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
.mockup-header { background: rgba(255,255,255,0.08); padding: 14px 18px; display: flex; align-items: center; gap: 8px; }
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }
.mockup-title { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-left: 8px; }
.mockup-body { padding: 24px; }
.mockup-stat { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.stat-label { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.stat-value { color: var(--white); font-weight: 700; font-size: 1rem; }
.stat-value.gain { color: var(--green); }
.stat-value.tax { color: var(--orange); }
.mockup-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 16px 0; }
.mockup-row { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr; gap: 8px; padding: 8px 0; font-size: 0.78rem; color: rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.04); }
.mockup-row.header-row { color: rgba(255,255,255,0.35); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.mockup-row .buy { color: var(--green); font-weight: 600; }
.mockup-row .sell { color: var(--red); font-weight: 600; }
.mockup-row .transfer { color: var(--orange); font-weight: 600; }

/* ===========================
   PROBLEM SECTION
=========================== */
.problem { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.problem-card { background: var(--grey-light); border-radius: var(--radius-lg); padding: 40px 32px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; transition: var(--transition); }
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.problem-icon { width: 64px; height: 64px; background: var(--navy); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--orange); }
.problem-arrow { font-size: 1.5rem; color: var(--orange); }
.problem-solution h3 { color: var(--black); margin-bottom: 8px; }

/* ===========================
   HOW IT WORKS
=========================== */
.how-it-works { background: var(--grey-light); }
.steps-grid { display: flex; align-items: center; gap: 0; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; flex: 1; text-align: center; box-shadow: var(--shadow); transition: var(--transition); position: relative; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-number { font-size: 3rem; font-weight: 900; color: rgba(247,147,26,0.15); line-height: 1; margin-bottom: 8px; }
.step-icon { width: 56px; height: 56px; background: var(--navy); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--orange); margin: 0 auto 20px; }
.step-card h3 { color: var(--black); margin-bottom: 12px; }
.step-connector { font-size: 1.5rem; color: var(--orange); padding: 0 16px; flex-shrink: 0; }

/* ===========================
   WHO IT'S FOR
=========================== */
.who { background: var(--white); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.who-card { background: var(--grey-light); border-radius: var(--radius-lg); padding: 40px 32px; transition: var(--transition); position: relative; }
.who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.who-card-featured { background: var(--navy); color: var(--white); }
.who-card-featured h3, .who-card-featured p { color: rgba(255,255,255,0.9); }
.who-card-featured .who-features li { color: rgba(255,255,255,0.8); }
.who-card-featured .who-features i { color: var(--orange); }
.who-card-featured .who-price { color: rgba(255,255,255,0.7); }
.who-card-featured .who-price strong { color: var(--orange); }
.who-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 16px; border-radius: 50px; white-space: nowrap; }
.who-icon { width: 56px; height: 56px; background: var(--orange); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--white); margin-bottom: 20px; }
.who-card h3 { color: var(--black); margin-bottom: 12px; }
.who-features { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.who-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--grey-text); }
.who-features i { color: var(--green); font-size: 0.85rem; flex-shrink: 0; }
.who-price { font-size: 0.9rem; color: var(--grey-text); margin-bottom: 20px; }
.who-price strong { color: var(--navy); font-size: 1.1rem; }

/* ===========================
   FEATURES
=========================== */
.features { background: var(--navy); }
.features .section-label { background: rgba(247,147,26,0.2); }
.features .section-title { color: var(--white); }
.features .section-sub { color: rgba(255,255,255,0.6); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px 28px; transition: var(--transition); }
.feature-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(247,147,26,0.3); }
.feature-icon { width: 52px; height: 52px; background: rgba(247,147,26,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--orange); margin-bottom: 20px; }
.feature-card h3 { color: var(--white); margin-bottom: 12px; }
.feature-card p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }

/* ===========================
   EXCHANGES
=========================== */
.exchanges { background: var(--white); }
.exchange-logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.exchange-logo { background: var(--grey-light); border: 1px solid var(--grey-mid); border-radius: 10px; padding: 16px 28px; font-weight: 700; font-size: 0.95rem; color: var(--navy); transition: var(--transition); }
.exchange-logo:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ===========================
   PRICING SNAPSHOT
=========================== */
.pricing-snap { background: var(--grey-light); }
.currency-selector { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; }
.currency-selector label { font-weight: 600; color: var(--black); }
.currency-selector select { padding: 10px 16px; border: 2px solid var(--grey-mid); border-radius: 8px; font-family: var(--font); font-weight: 600; font-size: 0.9rem; cursor: pointer; background: var(--white); color: var(--navy); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow); transition: var(--transition); position: relative; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card-featured { background: var(--navy); }
.price-card-featured h3, .price-card-featured .price-amount, .price-card-featured p { color: var(--white); }
.price-card-featured ul li { color: rgba(255,255,255,0.75); }
.price-card-featured ul li i.fa-check { color: var(--orange); }
.price-card-featured ul li i.fa-times { color: rgba(255,255,255,0.25); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; white-space: nowrap; }
.price-card h3 { font-size: 1.1rem; color: var(--black); margin-bottom: 12px; }
.price-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.currency-symbol { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.price-card-featured .currency-symbol { color: var(--orange); }
.price-value { font-size: 2.8rem; font-weight: 900; color: var(--navy); line-height: 1; }
.price-card-featured .price-value { color: var(--white); }
.price-period { font-size: 0.85rem; color: var(--grey-text); margin-left: 4px; }
.price-card p { font-size: 0.9rem; margin-bottom: 24px; }
.price-card ul { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.price-card ul li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--grey-text); }
.price-card ul li i.fa-check { color: var(--green); }
.price-card ul li i.fa-times { color: var(--grey-mid); }

/* ===========================
   TRUST
=========================== */
.trust { background: var(--navy); }
.trust .section-title { color: var(--white); text-align: center; }
.trust .section-sub { color: rgba(255,255,255,0.6); text-align: center; margin: 0 auto 60px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: var(--transition); }
.trust-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.trust-icon { width: 56px; height: 56px; background: rgba(247,147,26,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--orange); margin: 0 auto 20px; }
.trust-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.05rem; }
.trust-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ===========================
   CTA BANNER
=========================== */
.cta-banner { background: var(--orange); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 40px; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--navy); }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; padding: 80px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.logo-footer .logo-name { font-size: 1.15rem; }
.footer-brand-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin: 20px 0 24px; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.social-link:hover { background: var(--orange); color: var(--white); }
.footer-col-title { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-link { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; padding: 6px 0; transition: var(--transition); }
.footer-link:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 28px 0; flex-wrap: wrap; gap: 16px; }
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-link { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-bottom-link:hover { color: var(--orange); }
.footer-btc { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-btc i { color: var(--orange); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 64px 0; }
    .nav, .header-cta { display: none; }
    .hamburger { display: flex; }
    .hero-container { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { order: -1; }
    .problem-grid { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); }
    .who-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-cta { flex-direction: column; }
    .hero-trust { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
    .header-container { padding: 0 16px; }
    .container { padding: 0 16px; }
    .dashboard-mockup { font-size: 0.85rem; }
    .mockup-row { grid-template-columns: 1.2fr 0.7fr 0.8fr 0.8fr; font-size: 0.72rem; }
}
/* LOGO IMAGE */
.logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-img-footer {
    height: 38px;
    opacity: 0.92;
}

.logo-img:hover, .logo-img-footer:hover {
    opacity: 0.85;
}
/* ===========================
   AUTH PAGES — LOGIN & REGISTER
=========================== */
.auth-section { min-height: calc(100vh - 72px); display: flex; }
.auth-container { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }

/* LEFT PANEL */
.auth-left { background: var(--navy); padding: 60px 48px; display: flex; align-items: center; }
.auth-left-content { max-width: 440px; }
.auth-back { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 48px; transition: var(--transition); }
.auth-back:hover { color: var(--orange); }
.auth-brand h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 12px; }
.auth-brand p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; margin-bottom: 48px; }
.auth-features { display: flex; flex-direction: column; gap: 28px; }
.auth-feature { display: flex; align-items: flex-start; gap: 16px; }
.auth-feature-icon { width: 44px; height: 44px; background: rgba(247,147,26,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--orange); flex-shrink: 0; }
.auth-feature h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.auth-feature p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.5; }

/* RIGHT PANEL */
.auth-right { background: var(--white); padding: 60px 48px; display: flex; align-items: center; justify-content: center; overflow-y: auto; }
.auth-form-container { width: 100%; max-width: 440px; }
.auth-form-header { margin-bottom: 32px; }
.auth-form-header h1 { color: var(--black); font-size: 2rem; margin-bottom: 8px; }
.auth-form-header p { color: var(--grey-text); font-size: 0.95rem; }
.auth-link { color: var(--orange); text-decoration: none; font-weight: 600; }
.auth-link:hover { text-decoration: underline; }

/* ALERTS */
.alert { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 0.9rem; font-weight: 500; }
.alert-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* FORM */
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--black); display: flex; justify-content: space-between; align-items: center; }
.forgot-link { color: var(--orange); text-decoration: none; font-weight: 500; font-size: 0.82rem; }
.forgot-link:hover { text-decoration: underline; }
.input-wrapper { position: relative; display: flex; align-items: center; }
.input-icon { position: absolute; left: 14px; color: var(--grey-text); font-size: 0.9rem; pointer-events: none; }
.input-wrapper input, .input-wrapper select { width: 100%; padding: 13px 14px 13px 42px; border: 2px solid var(--grey-mid); border-radius: 10px; font-family: var(--font); font-size: 0.95rem; color: var(--black); background: var(--white); transition: var(--transition); outline: none; appearance: none; }
.input-wrapper input:focus, .input-wrapper select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247,147,26,0.12); }
.input-wrapper input::placeholder { color: #9ca3af; }
.toggle-password { position: absolute; right: 14px; background: none; border: none; cursor: pointer; color: var(--grey-text); padding: 4px; transition: var(--transition); }
.toggle-password:hover { color: var(--orange); }

/* PLAN SELECTOR */
.plan-selector { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.plan-option input[type="radio"] { display: none; }
.plan-card { border: 2px solid var(--grey-mid); border-radius: 10px; padding: 12px 8px; text-align: center; cursor: pointer; transition: var(--transition); display: flex; flex-direction: column; gap: 4px; }
.plan-card:hover { border-color: var(--orange); }
.plan-option input[type="radio"]:checked + .plan-card { border-color: var(--orange); background: rgba(247,147,26,0.06); }
.plan-name { font-size: 0.78rem; font-weight: 700; color: var(--black); }
.plan-price { font-size: 0.85rem; font-weight: 800; color: var(--orange); }

/* FORM CHECK */
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--orange); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-check label { font-size: 0.875rem; color: var(--grey-text); cursor: pointer; line-height: 1.5; }

/* AUTH BUTTON */
.btn-auth { background: var(--orange); color: var(--white); padding: 15px 28px; border-radius: 10px; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; }
.btn-auth:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,147,26,0.35); }

/* DIVIDER */
.auth-divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--grey-mid); }
.auth-divider span { color: var(--grey-text); font-size: 0.85rem; }

/* FOOTER NOTE */
.auth-footer-note { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--grey-text); font-size: 0.85rem; }
.auth-footer-note i { color: var(--orange); }

/* AUTH RESPONSIVE */
@media (max-width: 768px) {
    .auth-container { grid-template-columns: 1fr; }
    .auth-left { display: none; }
    .auth-right { padding: 40px 24px; }
    .plan-selector { grid-template-columns: repeat(2, 1fr); }
/* ===========================
   HOMEPAGE ADDITIONS — v2
=========================== */

/* Hero bankless line */
.hero-bankless { display: flex; align-items: center; gap: 10px; margin-top: 16px; color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* 4-column who grid */
.who-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.who-icon-agent { background: rgba(247,147,26,0.15); color: var(--orange); }

/* Vision 2030 section */
.vision-section { background: var(--navy); padding: clamp(64px,8vw,100px) 0; }
.vision-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px,5vw,80px); align-items: center; }
.vision-body { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.8; margin-bottom: 32px; }
.vision-pillars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.vision-pillar { display: flex; align-items: flex-start; gap: 14px; }
.vision-pillar-icon { width: 40px; height: 40px; background: rgba(247,147,26,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1rem; flex-shrink: 0; }
.vision-pillar strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.vision-pillar p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; margin: 0; }
.vision-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vision-stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px 24px; text-align: center; }
.vision-stat-num { display: block; font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.vision-stat-label { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.4; }

/* Bankless section */
.bankless-section { background: var(--white); padding: clamp(64px,8vw,100px) 0; }
.bankless-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,72px); align-items: center; }
.bankless-wallets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.wallet-tag { background: var(--grey-light); border: 1px solid var(--grey-mid); color: var(--navy); padding: 5px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.wallet-tag i { color: var(--orange); }
.btcpay-card { background: var(--grey-light); border: 2px solid var(--grey-mid); border-radius: 20px; overflow: hidden; }
.btcpay-card-header { background: var(--navy); padding: 14px 20px; display: flex; align-items: center; gap: 10px; }
.btcpay-card-header span:first-of-type { color: var(--white); font-weight: 700; font-size: 0.875rem; flex: 1; }
.btcpay-status-badge { background: rgba(16,185,129,0.2); color: #10b981; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.btcpay-card-body { padding: 24px; text-align: center; }
.btcpay-amount { font-size: 1.6rem; font-weight: 900; color: var(--black); margin-bottom: 4px; }
.btcpay-fiat { font-size: 0.82rem; color: var(--grey-text); margin-bottom: 20px; }
.btcpay-qr-area { background: var(--white); border-radius: 12px; padding: 24px; margin-bottom: 16px; display: flex; flex-direction: column; align-items: center; }
.btcpay-timer { display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--orange); font-size: 0.82rem; font-weight: 700; }

/* Pricing BTC note */
.pricing-btc-note { display: flex; align-items: flex-start; gap: 12px; background: rgba(247,147,26,0.08); border: 1px solid rgba(247,147,26,0.2); border-radius: 12px; padding: 16px 20px; margin-top: 24px; font-size: 0.875rem; color: var(--grey-text); }
.pricing-btc-note i { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* Responsive additions */
@media (max-width: 1100px) {
    .who-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .vision-inner { grid-template-columns: 1fr; gap: 40px; }
    .vision-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .bankless-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .who-grid-4 { grid-template-columns: 1fr; }
    .vision-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .vision-stat-num { font-size: 2rem; }
}
@media (max-width: 480px) {
    .vision-stats-grid { grid-template-columns: 1fr 1fr; }
}