:root {
    --bg: #faf9f7;
    --bg2: #f5f3ef;
    --card: rgba(255, 255, 255, 0.9);
    --border: rgba(255, 107, 43, 0.12);
    --accent: #ff6b2b;
    --accent2: #e85d1c;
    --accent3: #d4440a;
    --success: #16a34a;
    --text: #1a1410;
    --muted: #7a7168;
    --glow: rgba(255, 107, 43, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body::before {
    content: '';
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(255,107,43,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255,160,90,.04) 0%, transparent 40%);
    pointer-events: none; z-index: 0;
}
a { color: var(--accent2); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Satoshi', sans-serif; letter-spacing: -.01em; }
.section-container { max-width: 1200px; margin: 0 auto; }

/* ── Scroll Animations ── */
.feature-card, .about-card, .price-card, .step, .founder-card, .compare-table {
    opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(.23,1,.32,1);
}
.feature-card.visible, .about-card.visible, .price-card.visible, .step.visible, .founder-card.visible, .compare-table.visible {
    opacity: 1; transform: translateY(0);
}
.feature-card:nth-child(2) { transition-delay: 0.08s; }
.feature-card:nth-child(3) { transition-delay: 0.16s; }
.feature-card:nth-child(4) { transition-delay: 0.24s; }
.feature-card:nth-child(5) { transition-delay: 0.32s; }
.feature-card:nth-child(6) { transition-delay: 0.4s; }
.about-card:nth-child(2) { transition-delay: 0.1s; }
.about-card:nth-child(3) { transition-delay: 0.2s; }
.price-card:nth-child(2) { transition-delay: 0.1s; }
.price-card:nth-child(3) { transition-delay: 0.2s; }

/* ── Navbar ── */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 14px 0;
    background: rgba(250, 249, 247, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}
.navbar.scrolled { background: rgba(250, 249, 247, 0.95); padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.15rem; font-weight: 800;
}
.nav-brand .icon {
    width: 36px; height: 36px; border-radius: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.nav-brand span {
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ── Buttons ── */
.btn-ghost {
    padding: 10px 22px; border-radius: 0; font-size: 0.88rem; font-weight: 600;
    color: var(--text); border: 1px solid var(--border); background: transparent;
    cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: var(--accent2); color: var(--accent2); transform: translateY(-1px); }
.btn-primary-lg {
    padding: 12px 28px; border-radius: 0; font-size: 0.9rem; font-weight: 700;
    color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: none; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
    box-shadow: 0 4px 20px var(--glow);
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow); }
.btn-glow { animation: btnPulse 3s infinite; }
@keyframes btnPulse { 0%,100%{ box-shadow: 0 4px 20px var(--glow); } 50% { box-shadow: 0 4px 40px rgba(108,99,255,0.4); } }
.btn-block { display: block; width: 100%; text-align: center; }

/* ── Mobile Toggle ── */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
.mobile-toggle span {
    display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px;
    position: absolute; left: 0; transition: all 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }
.mobile-toggle.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ── Hero Split ── */
.hero {
    position: relative; z-index: 1;
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 24px 80px; overflow: hidden;
}
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.65) 50%, rgba(0,0,0,.75) 100%);
}
.hero-mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 2; }
.mesh-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
    animation: orbFloat 12s ease-in-out infinite;
}
.mesh-orb-1 { width: 500px; height: 500px; top: -10%; left: -5%; background: rgba(255,107,43,.12); }
.mesh-orb-2 { width: 400px; height: 400px; bottom: -10%; right: -5%; background: rgba(255,160,90,.1); animation-delay: -4s; animation-duration: 15s; }
.mesh-orb-3 { width: 300px; height: 300px; top: 40%; left: 40%; background: rgba(217,119,6,.08); animation-delay: -8s; animation-duration: 18s; }
@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-20px) scale(1.05); }
    66% { transform: translate(-20px,30px) scale(.95); }
}
.hero-split {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 3;
}
.hero-left { animation: fadeInUp .6s ease both; color: #fff; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px; border-radius: 0;
    background: rgba(255,107,43,0.15); border: 1px solid rgba(255,107,43,0.3);
    font-size: 0.82rem; font-weight: 600; color: var(--accent);
    margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
    line-height: 1.1; margin-bottom: 20px; letter-spacing: -.02em; color: #fff;
}
.hero h1 .gradient {
    background: linear-gradient(135deg, var(--accent), #ffb380);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 520px; margin-bottom: 28px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-buttons .btn-primary-lg { padding: 14px 32px; font-size: .95rem; border-radius: 0; }
.hero-buttons .btn-ghost { padding: 14px 28px; font-size: .95rem; border-radius: 0; color: #fff; border-color: rgba(255,255,255,.25); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-trust {
    display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px;
    animation: fadeInUp .6s ease .3s both;
}
.hero-trust span { font-size: .82rem; color: rgba(255,255,255,.55); }

/* ── Dashboard Mockup ── */
.hero-right { animation: fadeInUp .6s ease .2s both; perspective: 1000px; }
.dash-mockup {
    background: #fff; border: 1px solid rgba(255,107,43,.15);
    box-shadow: 0 20px 60px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
    overflow: hidden; position: relative;
    transform: rotateY(-3deg) rotateX(2deg);
    transition: transform .4s; animation: mockupFloat 6s ease-in-out infinite;
}
.dash-mockup:hover { transform: rotateY(0) rotateX(0); }
@keyframes mockupFloat { 0%,100%{transform:rotateY(-3deg) rotateX(2deg)} 50%{transform:rotateY(-1deg) rotateX(0deg) translateY(-4px)} }
.dash-topbar {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 14px; background: #faf9f7; border-bottom: 1px solid rgba(0,0,0,.06);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #ef4444; } .dash-dot.yellow { background: #f59e0b; } .dash-dot.green { background: #22c55e; }
.dash-title { margin-left: 8px; font-size: .7rem; font-weight: 600; color: #7a7168; letter-spacing: .02em; }
.dash-body { padding: 16px; }

/* Mini stats */
.mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.mini-stat {
    background: #faf9f7; padding: 12px 10px; text-align: center;
    border: 1px solid rgba(0,0,0,.05); position: relative; overflow: hidden;
}
.mini-stat::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,var(--accent),transparent); }
.mini-stat.accent { background: #fff8f3; border-color: rgba(255,107,43,.15); }
.mini-icon { font-size: 1.1rem; margin-bottom: 4px; }
.mini-num { font-family: 'Satoshi', sans-serif; font-size: 1.3rem; font-weight: 800; color: #1a1410; }
.mini-label { font-size: .6rem; color: #7a7168; text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }

/* Bar chart */
.dash-chart { margin-bottom: 14px; }
.chart-label { font-size: .68rem; font-weight: 700; color: #7a7168; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.bar {
    flex: 1; background: linear-gradient(180deg, var(--accent), rgba(255,107,43,.4));
    height: 0; animation: barGrow 1s ease forwards; position: relative;
}
.bar:nth-child(1) { animation-delay: .3s; } .bar:nth-child(2) { animation-delay: .4s; }
.bar:nth-child(3) { animation-delay: .5s; } .bar:nth-child(4) { animation-delay: .6s; }
.bar:nth-child(5) { animation-delay: .7s; } .bar:nth-child(6) { animation-delay: .8s; }
.bar:nth-child(7) { animation-delay: .9s; }
@keyframes barGrow { to { height: var(--h); } }
.bar span { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); font-size: .55rem; color: #7a7168; white-space: nowrap; }

/* Chat preview */
.dash-chat { background: #faf9f7; padding: 10px; border: 1px solid rgba(0,0,0,.05); }
.chat-msg {
    padding: 7px 10px; margin-bottom: 6px; font-size: .7rem; line-height: 1.5;
    max-width: 85%;
}
.chat-msg.incoming { background: #fff; border: 1px solid rgba(0,0,0,.06); color: #1a1410; }
.chat-msg.outgoing {
    background: linear-gradient(135deg, var(--accent), #e85d1c); color: #fff;
    margin-left: auto; animation: fadeInUp .5s ease .8s both;
}
.chat-msg strong { font-weight: 700; }
.chat-typing {
    display: flex; gap: 4px; padding: 8px 12px; max-width: 60px;
}
.chat-typing span {
    width: 6px; height: 6px; border-radius: 50%; background: #ccc;
    animation: typingBounce .6s ease infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typingBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

/* Notification popup */
.dash-notif {
    position: absolute; top: 50px; right: -10px;
    background: #fff; border: 1px solid rgba(255,107,43,.2);
    padding: 8px 14px; font-size: .72rem; font-weight: 600; color: #1a1410;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    animation: notifSlide 4s ease infinite;
}
@keyframes notifSlide {
    0%,100% { opacity: 0; transform: translateX(20px); }
    15%,85% { opacity: 1; transform: translateX(0); }
}

/* Stats row removed — using hero-trust now */
.stats-row { display: none; }

/* ── Section Commons ── */
section { position: relative; z-index: 1; padding: 100px 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .tag {
    display: inline-block; padding: 5px 16px; border-radius: 0;
    background: rgba(255,107,43,0.08); border: 1px solid rgba(255,107,43,0.12);
    font-size: 0.75rem; font-weight: 700; color: var(--accent2);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 14px;
}
.section-header p { color: var(--muted); font-size: 1.02rem; max-width: 580px; margin: 0 auto; }
.section-header strong { color: var(--text); }

/* ── About Us ── */
.about-section { background: linear-gradient(180deg, transparent, rgba(255,107,43,0.03), transparent); }
.about-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.about-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 0;
    padding: 36px; text-align: center; transition: all 0.3s; backdrop-filter: blur(10px);
}
.about-card:hover { border-color: rgba(255,107,43,0.25); transform: translateY(-4px); }
.about-icon { font-size: 2.4rem; margin-bottom: 16px; }
.about-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.about-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

/* ── Features (Adash Service Sticky Scroll) ── */
.features-section { background: linear-gradient(180deg, transparent, rgba(255,107,43,.02), transparent); }
.features-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    max-width: 1200px; margin: 0 auto;
}
.features-left {
    position: sticky; top: 120px; align-self: start;
    padding-right: 20px;
}
.features-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900;
    line-height: 1.15; margin-bottom: 18px; letter-spacing: -.02em;
}
.features-left h2 .gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.features-left p { color: var(--muted); font-size: .98rem; line-height: 1.75; margin-bottom: 24px; }
.features-count {
    display: flex; gap: 28px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.fc-item { text-align: center; }
.fc-num { font-family: 'Satoshi', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--accent); }
.fc-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }

/* Right: sticky stacking cards */
.features-right {
    display: flex; flex-direction: column; gap: 24px;
    padding-bottom: 40vh; /* extra space so last card can stick */
}
.stack-card {
    position: sticky;
    top: calc(100px + var(--i, 0) * 40px);
    z-index: calc(10 + var(--i, 0));
    transition: all 0.35s cubic-bezier(.23,1,.32,1);
}
.feature-card {
    background: #fff; border: 1px solid rgba(0,0,0,.06);
    padding: 0; position: relative; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: all 0.35s cubic-bezier(.23,1,.32,1);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), transparent);
    opacity: 0; transition: opacity .35s;
}
.feature-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 50px rgba(255,107,43,.12), 0 4px 12px rgba(0,0,0,.06);
    border-color: rgba(255,107,43,.2);
}
.feature-card:hover::before { opacity: 1; }
.feature-card.featured { border-color: rgba(255,107,43,.15); background: linear-gradient(180deg, #fff8f3 0%, #fff 50%); }
.feature-card.featured::before { opacity: 1; }
.feature-tag {
    position: absolute; top: 20px; right: 20px;
    padding: 4px 12px; background: var(--accent); color: #fff;
    font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
}
.feature-icon {
    padding: 28px 28px 16px; font-size: 2.2rem;
    transition: transform .35s cubic-bezier(.23,1,.32,1);
}
.feature-card:hover .feature-icon { transform: translateY(-3px) scale(1.08); }
.feature-card h3 { font-size: 1.08rem; font-weight: 800; padding: 0 28px; margin-bottom: 8px; letter-spacing: -.01em; }
.feature-card p { color: var(--muted); font-size: .85rem; line-height: 1.7; padding: 0 28px 24px; }

/* ── Pricing ── */
.pricing-section { background: linear-gradient(180deg, transparent, rgba(255,107,43,0.03), transparent); }
.pricing-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    align-items: stretch;
}
.price-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 0;
    padding: 36px 28px; text-align: center; transition: all 0.3s; position: relative;
    backdrop-filter: blur(10px);
    display: flex; flex-direction: column;
}
.price-card:hover { border-color: rgba(255,107,43,0.25); transform: translateY(-4px); }
.price-card.popular {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255,107,43,0.08), rgba(255,160,90,0.04));
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255,107,43,0.12);
}
.price-card.popular:hover { transform: scale(1.07); }
.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    padding: 5px 20px; border-radius: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    font-size: 0.72rem; font-weight: 700; color: #fff; white-space: nowrap;
}
.price-tier { font-size: 0.9rem; font-weight: 700; color: var(--accent2); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.price-amount { font-size: 3rem; font-weight: 900; margin-bottom: 4px; }
.price-amount .currency { font-size: 1.4rem; vertical-align: super; color: var(--muted); }
.price-amount .period { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.price-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 24px; }
.price-features { list-style: none; text-align: left; margin-bottom: 28px; flex: 1; }
.price-features li {
    padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,140,50,0.06);
}
.price-features li:last-child { border: none; }

/* ── How It Works ── */
.steps-timeline { max-width: 700px; margin: 0 auto; position: relative; }
.steps-timeline::before {
    content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent2), transparent);
}
.step {
    display: flex; gap: 24px; position: relative;
    padding: 32px 0;
}
.step + .step { border-top: 1px solid rgba(255,140,50,0.04); }
.step-num {
    width: 50px; height: 50px; border-radius: 0; flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; font-weight: 800; color: #fff;
    box-shadow: 0 0 20px var(--glow); position: relative; z-index: 2;
}
.step-content { padding-top: 8px; }
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.step-content p { color: var(--muted); font-size: 0.88rem; }

/* ── Comparison Table ── */
.compare-section { background: linear-gradient(180deg, transparent, rgba(255,107,43,0.03), transparent); }
.compare-table-wrap { max-width: 1000px; margin: 0 auto; overflow-x: auto; border-radius: 0; border: 1px solid var(--border); }
.compare-table {
    width: 100%; border-collapse: collapse; font-size: 0.88rem;
    background: var(--card); backdrop-filter: blur(10px);
}
.compare-table thead { background: rgba(255,107,43,0.06); }
.compare-table th {
    padding: 20px 16px; font-weight: 700; text-align: center;
    border-bottom: 2px solid rgba(255,107,43,0.12);
    font-size: 0.9rem;
}
.compare-table th:first-child { text-align: left; }
.compare-table th.highlight {
    background: rgba(255,107,43,0.10); color: var(--accent2);
    border-bottom-color: var(--accent);
}
.compare-table td {
    padding: 14px 16px; border-bottom: 1px solid rgba(255,140,50,0.06);
    text-align: center; color: var(--muted);
}
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-table td.highlight { background: rgba(255,107,43,0.05); color: var(--success); font-weight: 600; }
.compare-table tbody tr:hover { background: rgba(255,107,43,0.03); }
.tool-logo {
    width: 36px; height: 36px; border-radius: 0; margin: 0 auto 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    background: rgba(255,255,255,0.05);
}
.tool-logo img { height: 20px; width: auto; object-fit: contain; filter: brightness(0.9); }

/* ── Founder (Split Layout) ── */
.founder-section { background: linear-gradient(180deg, transparent, rgba(255,107,43,.03), transparent); }
.founder-split {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
    align-items: center; max-width: 1100px; margin: 0 auto;
}
.founder-visual { text-align: center; }
.founder-img-wrap {
    position: relative; display: inline-block; margin-bottom: 24px;
}
.founder-img-wrap img {
    width: 300px; height: 300px; object-fit: cover;
    border: 3px solid rgba(255,107,43,.3);
    filter: grayscale(10%);
    position: relative; z-index: 2;
}
.founder-img-wrap::before {
    content: ''; position: absolute; inset: -8px; z-index: 1;
    background: linear-gradient(135deg, var(--accent), transparent 60%);
    opacity: .2;
}
.founder-badge-float {
    position: absolute; bottom: -10px; right: -10px; z-index: 3;
    background: var(--accent); color: #fff;
    padding: 5px 12px; font-size: .72rem; font-weight: 700;
}
.founder-stats-mini {
    display: flex; justify-content: center; gap: 24px;
    padding: 16px 0; border-top: 1px solid var(--border);
}
.fsm-item { text-align: center; }
.fsm-num { font-family:'Satoshi',sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--accent); }
.fsm-label { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.founder-content .tag { margin-bottom: 16px; }
.founder-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 16px; }
.founder-content h2 .gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.founder-role-badge {
    display: inline-block; padding: 6px 16px; margin-bottom: 20px;
    background: rgba(255,107,43,.08); border: 1px solid rgba(255,107,43,.15);
    font-size: .8rem; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: .04em;
}
.founder-content p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 24px; }
.founder-content strong { color: var(--text); }
.founder-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.founder-pills span {
    padding: 5px 14px; font-size: .75rem; font-weight: 600;
    background: rgba(255,107,43,.06); border: 1px solid rgba(255,107,43,.12);
    color: var(--accent2);
}
.founder-contact {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; background: var(--accent); color: #fff;
    font-weight: 700; font-size: .88rem; transition: all .3s;
}
.founder-contact:hover { background: #e85d1c; transform: translateY(-2px); }

/* ── CTA (Dark Split) ── */
.cta-section {
    background: #0f0e0d; position: relative; overflow: hidden;
    padding: 100px 24px;
}
.cta-bg-mesh { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .3;
}
.cta-orb-1 { width: 400px; height: 400px; top: -10%; left: -5%; background: rgba(255,107,43,.4); }
.cta-orb-2 { width: 300px; height: 300px; bottom: -10%; right: 5%; background: rgba(255,160,90,.25); }
.cta-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
    position: relative; z-index: 2;
}
.cta-badge {
    display: inline-block; padding: 5px 16px; margin-bottom: 20px;
    background: rgba(255,107,43,.15); border: 1px solid rgba(255,107,43,.3);
    font-size: .75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .06em;
}
.cta-inner h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
    color: #fff; line-height: 1.1; margin-bottom: 18px; letter-spacing: -.02em;
}
.cta-inner p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.cta-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-demo-link {
    color: rgba(255,255,255,.6); font-size: .9rem; font-weight: 600;
    transition: color .2s;
}
.cta-demo-link:hover { color: #fff; }
.cta-trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.cta-trust-row span { font-size: .78rem; color: rgba(255,255,255,.45); }
.cta-feature-list {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    padding: 8px;
}
.cfl-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .88rem; color: rgba(255,255,255,.75); font-weight: 500;
    transition: background .2s;
}
.cfl-item:last-child { border-bottom: none; }
.cfl-item:hover { background: rgba(255,107,43,.08); }
.cfl-icon { font-size: 1.1rem; }

/* ── Footer (Dark) ── */
.footer {
    background: #0a0908;
    border-top: 1px solid rgba(255,107,43,.12);
    padding: 60px 24px 28px;
    position: relative; z-index: 1;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p { color: rgba(255,255,255,.4); font-size: .85rem; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    font-size: 1.2rem; opacity: .5; transition: opacity .2s;
    text-decoration: none;
}
.footer-social a:hover { opacity: 1; }
.footer-col h4 {
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: rgba(255,255,255,.9); margin-bottom: 16px;
    padding-bottom: 8px; border-bottom: 1px solid rgba(255,107,43,.15);
}
.footer-col a {
    display: block; color: rgba(255,255,255,.4); font-size: .84rem;
    padding: 5px 0; transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }
.footer-bottom a { color: rgba(255,107,43,.7); transition: color .2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; gap: 40px; }
    .hero-left { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .dash-mockup { transform: none; animation: none; }
    .dash-notif { display: none; }
    .features-split { grid-template-columns: 1fr; gap: 40px; }
    .features-left { position: static; text-align: center; padding-right: 0; }
    .features-left p { max-width: 500px; margin-left: auto; margin-right: auto; }
    .features-count { justify-content: center; }
    .features-left .btn-primary-lg { margin-bottom: 12px; }
    .features-right { padding-bottom: 0; }
    .stack-card { position: relative; top: auto; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .price-card.popular { transform: scale(1); }
    .founder-split { grid-template-columns: 1fr; gap: 40px; }
    .cta-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .cta-actions { justify-content: center; }
    .cta-trust-row { justify-content: center; }
    .price-card.popular:hover { transform: scale(1.02); }
    .about-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .founder-card { flex-direction: column; text-align: center; padding: 36px 24px; }
    .founder-tags { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; background: rgba(250,249,247,0.98);
        border-top: 1px solid var(--border); padding: 16px 24px; gap: 12px;
        backdrop-filter: blur(20px);
    }
    .nav-links.show { display: flex; }
    .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 0.95rem; }
    .hero-buttons .btn-primary-lg { padding: 14px 28px; }
    .stats-row { gap: 24px; }
    .stat-item .num { font-size: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .step { padding: 20px 0; }
    .steps-timeline::before { left: 24px; }
    .cta-box { padding: 40px 20px; }
    .cta-box h2 { font-size: 1.5rem; }
    .compare-table { font-size: 0.78rem; }
    .compare-table th, .compare-table td { padding: 10px 8px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 12px auto 0; }
    .founder-image img { width: 140px; height: 140px; }
}

/* ── Auth Pages (Login/Register) ── */
.auth-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 24px; position: relative; z-index: 1;
}
.auth-container { width: 100%; max-width: 440px; }
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .icon {
    width: 56px; height: 56px; border-radius: 0; margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
}
.auth-logo h1 {
    font-size: 1.4rem; font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.auth-logo p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.auth-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 0;
    padding: 36px; backdrop-filter: blur(20px);
}
.auth-card .form-group { margin-bottom: 20px; }
.auth-card label {
    display: block; font-size: 0.78rem; font-weight: 600; color: var(--muted);
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em;
}
.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"] {
    width: 100%; padding: 12px 16px;
    background: rgba(245,243,239,0.8); border: 1px solid var(--border); border-radius: 0;
    color: var(--text); font-size: 0.9rem; font-family: 'Inter', sans-serif;
    outline: none; transition: all 0.2s;
}
.auth-card input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--glow); }
.auth-submit {
    width: 100%; padding: 14px; border-radius: 0; font-size: 0.95rem; font-weight: 700;
    color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: none; cursor: pointer; transition: all 0.3s; margin-top: 8px;
    box-shadow: 0 4px 20px var(--glow);
}
.auth-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow); }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--muted); }
.auth-footer a { color: var(--accent2); font-weight: 600; }

.alert { padding: 12px 16px; border-radius: 0; font-size: 0.88rem; margin-bottom: 20px; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #86efac; }
.alert-warn { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); color: #fcd34d; }
.alert-info { background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.25); color: #7dd3fc; }

td {
    text-align: left !important;
}
