:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --accent: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.4);
    --gold: #f59e0b;
    --bg-dark: #020617;
    --bg-card: rgba(30, 41, 59, 0.5);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --font-main: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.align-center { align-items: center; }
.text-center { text-align: center; }

/* ── NAV ─────────────────────────────────────────────────── */
.glass-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.logo {
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none; color: white;
    font-weight: 800; letter-spacing: 2px;
}
.logo img { height: 32px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    text-decoration: none; color: var(--text-dim);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover { color: white; }

.cta-button.mini {
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--bg-dark) !important;
    border-radius: 6px; font-size: 0.75rem; font-weight: 800;
    letter-spacing: 1px; transition: opacity 0.2s;
}
.cta-button.mini:hover { opacity: 0.85; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: white; border-radius: 2px; transition: all 0.3s;
}

.mobile-menu {
    display: none; flex-direction: column; gap: 0;
    background: rgba(2, 6, 23, 0.98);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 2rem 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    text-decoration: none; color: var(--text-dim);
    font-size: 0.9rem; font-weight: 600; letter-spacing: 1px;
    padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.2s;
}
.mobile-menu a:hover { color: white; }
.mobile-cta { margin-top: 1rem; color: var(--accent) !important; border-bottom: none !important; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden; padding-top: 80px;
}

.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: brightness(0.35) saturate(0.7); transform: scale(1.05);
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 40% 50%, transparent 0%, var(--bg-dark) 80%);
}

.hero-content { position: relative; z-index: 10; padding: 4rem 0; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 100px; padding: 0.35rem 1rem;
    font-family: var(--font-mono); font-size: 0.7rem;
    color: var(--accent); letter-spacing: 2px; margin-bottom: 2rem;
}

.badge-dot {
    width: 6px; height: 6px; background: var(--accent);
    border-radius: 50%; box-shadow: 0 0 8px var(--accent);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

h1 {
    font-size: 5rem; font-weight: 900; line-height: 1.1;
    margin-bottom: 1.5rem; letter-spacing: -2px;
}

.accent-text { color: var(--accent); text-shadow: 0 0 40px var(--accent-glow); }

.hero-subtitle {
    font-size: 1.2rem; color: var(--text-dim);
    max-width: 580px; margin-bottom: 2.5rem; line-height: 1.7;
}

.hero-actions { display: flex; gap: 1.5rem; margin-bottom: 4rem; flex-wrap: wrap; }

.hero-stats { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-val {
    font-family: var(--font-mono); font-size: 1.5rem;
    font-weight: 800; color: var(--accent);
}
.stat-label { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-block; padding: 1rem 2.5rem; border-radius: 8px;
    text-decoration: none; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer; border: none;
}

.btn-primary {
    background: var(--primary); color: white;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}
.btn-primary:hover {
    background: var(--primary-hover); transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
    background: transparent; color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.5); transform: translateY(-2px);
}

.btn-large { padding: 1.2rem 3rem; font-size: 1rem; }
.full-width { width: 100%; text-align: center; }

/* ── SHARED SECTION STYLES ───────────────────────────────── */
section { padding: 8rem 0; }

.section-title {
    font-size: 3rem; font-weight: 900;
    margin-bottom: 1rem; letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-dim); max-width: 600px;
    margin: 0 auto 4rem; font-size: 1rem; line-height: 1.7;
}

.label {
    font-family: var(--font-mono); color: var(--gold);
    font-size: 0.7rem; letter-spacing: 3px;
    margin-bottom: 1rem; display: block;
}

/* ── LIVE SNAPSHOT ───────────────────────────────────────── */
.live-snapshot-section { padding: 4rem 0; background: rgba(2, 6, 23, 0.4); border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); position: relative; overflow: hidden; }
.snapshot-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 3rem; }
.live-indicator { display: flex; align-items: center; gap: 0.5rem; background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1rem; color: #22c55e; font-size: 0.7rem; font-weight: 600; }
.pulse-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 10px rgba(34, 197, 94, 0.8); animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }

.matrix-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; min-height: 200px; }
.matrix-pick-card { background: rgba(30, 41, 59, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; transition: all 0.3s ease; backdrop-filter: blur(10px); text-align: left; }
.matrix-pick-card:hover { border-color: var(--accent); transform: translateY(-4px); background: rgba(30, 41, 59, 0.6); }
.pick-header { display: flex; justify-content: space-between; align-items: center; }
.pick-ticker { font-size: 1.5rem; font-weight: 800; font-family: var(--font-mono); color: var(--text-main); }
.pick-action { font-size: 0.6rem; font-weight: 800; padding: 0.15rem 0.5rem; border-radius: 4px; font-family: var(--font-mono); }
.pick-action.long { background: rgba(34, 197, 94, 0.15); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.pick-action.short { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.pick-stats { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-dim); }
.conviction-bar-container { height: 4px; background: rgba(255, 255, 255, 0.1); border-radius: 2px; overflow: hidden; margin-top: auto; }
.conviction-bar { height: 100%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); border-radius: 2px; }

.matrix-loader { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--text-dim); }
.spinner { width: 30px; height: 30px; border: 2px solid rgba(255, 255, 255, 0.1); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.snapshot-footer { text-align: center; margin-top: 3rem; }
.snapshot-footer a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.snapshot-footer a:hover { border-bottom-color: var(--accent); }

@media (max-width: 768px) {
    .matrix-mini-grid { grid-template-columns: 1fr; gap: 1rem; padding: 0 1rem; }
}

/* ── PLATFORM FEATURES ───────────────────────────────────── */
.dark-section { background: var(--bg-dark); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; text-align: left;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem; border-radius: 16px;
    transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
    border-color: rgba(6, 182, 212, 0.35); transform: translateY(-4px);
}

.card-icon {
    font-family: var(--font-mono); color: var(--accent);
    font-size: 1.75rem; font-weight: 800;
    margin-bottom: 1.25rem; opacity: 0.4;
}

.feature-card h3 { font-weight: 800; margin-bottom: 0.75rem; font-size: 1.05rem; }
.feature-card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; }

/* ── CORTEX SECTION ──────────────────────────────────────── */
.matrix-section {
    background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.accent-title {
    font-size: 3rem; font-weight: 900; color: white;
    margin-bottom: 1.5rem; letter-spacing: -1px; line-height: 1.15;
}

.prelude-list { list-style: none; margin-top: 1.5rem; }
.prelude-list li {
    position: relative; padding-left: 1.5rem;
    margin-bottom: 1.25rem; color: var(--text-dim);
    font-size: 0.95rem; line-height: 1.6;
}
.prelude-list li::before {
    content: ''; position: absolute; left: 0; top: 0.55rem;
    width: 6px; height: 6px; background: var(--accent);
    border-radius: 50%; box-shadow: 0 0 10px var(--accent);
}
.prelude-list li strong { color: var(--text-main); }

.station-img {
    width: 100%; border-radius: 16px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── MOBILE APPS ─────────────────────────────────────────── */
.apps-section {
    background: radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.05) 0%, transparent 60%);
}

.apps-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem; max-width: 1050px; margin: 0 auto 2rem; text-align: left;
}

.app-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; padding: 2.5rem 2rem;
    display: flex; flex-direction: column; gap: 1.5rem;
    transition: border-color 0.3s;
}
.app-card:hover { border-color: rgba(255,255,255,0.15); }

.app-card-pro {
    border-color: rgba(79, 70, 229, 0.3);
    background: rgba(79, 70, 229, 0.05);
}
.app-card-pro:hover { border-color: rgba(79, 70, 229, 0.55); }

.app-card-header { display: flex; flex-direction: column; gap: 0.5rem; }

.app-tier-badge {
    display: inline-block; padding: 0.2rem 0.75rem;
    border-radius: 100px; font-family: var(--font-mono);
    font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; width: fit-content;
}
.app-tier-badge.free {
    background: rgba(6, 182, 212, 0.15); color: var(--accent);
    border: 1px solid rgba(6, 182, 212, 0.3);
}
.app-tier-badge.pro {
    background: rgba(79, 70, 229, 0.2); color: #a5b4fc;
    border: 1px solid rgba(79, 70, 229, 0.4);
}

.app-card h3 { font-size: 1.3rem; font-weight: 800; }
.app-tagline { color: var(--text-dim); font-size: 0.875rem; line-height: 1.6; }

.app-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.app-features li {
    font-size: 0.875rem; color: var(--text-main);
    padding: 0.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.app-features li.muted { color: var(--text-dim); opacity: 0.45; }

.app-download { display: flex; align-items: center; gap: 1.5rem; }

.qr-block { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.qr-img {
    width: 70px; height: 70px; background: white;
    padding: 3px; border-radius: 5px; display: block;
}
.qr-block span {
    font-family: var(--font-mono); font-size: 0.55rem;
    color: var(--accent); letter-spacing: 1px; text-align: center;
}

.app-note { font-size: 0.72rem; color: var(--text-dim); font-family: var(--font-mono); }
.apps-footer-note { color: var(--text-dim); font-size: 0.78rem; font-family: var(--font-mono); margin-top: 1rem; }

.pro-access-note {
    display: flex; align-items: flex-start;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 8px; padding: 0.75rem 1rem;
    flex: 1;
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-section {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.pricing-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem; align-items: start;
    max-width: 1000px; margin: 0 auto; text-align: left;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; padding: 2.5rem 2rem;
    display: flex; flex-direction: column; gap: 2rem; position: relative;
}

.pricing-card-featured {
    border-color: rgba(79, 70, 229, 0.5);
    background: rgba(79, 70, 229, 0.07);
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(79, 70, 229, 0.15);
}

.pricing-best-value {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: white;
    font-size: 0.62rem; font-weight: 800; letter-spacing: 2px;
    padding: 0.3rem 1rem; border-radius: 100px; white-space: nowrap;
    font-family: var(--font-mono);
}

.pricing-header { display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-header h3 {
    font-family: var(--font-mono); font-size: 0.8rem;
    font-weight: 800; letter-spacing: 3px; color: var(--text-dim);
}

.price { display: flex; align-items: baseline; gap: 0.25rem; }
.price-num { font-size: 2.75rem; font-weight: 900; color: var(--text-main); line-height: 1; }
.price-period { color: var(--text-dim); font-size: 0.9rem; }
.pricing-header p { color: var(--text-dim); font-size: 0.875rem; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.pricing-features li {
    font-size: 0.875rem; color: var(--text-main);
    padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex; align-items: center; gap: 0.5rem;
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 800; font-size: 0.75rem; flex-shrink: 0; }
.pricing-features li.dimmed { color: var(--text-dim); opacity: 0.4; }
.pricing-features li.dimmed::before { content: '—'; color: var(--text-dim); }

/* ── PRO "IN DEVELOPMENT" card ───────────────────────────── */
.pricing-card-dev {
    border-color: rgba(255,255,255,0.05);
    background: rgba(15, 20, 40, 0.6);
    opacity: 0.72;
    filter: grayscale(0.3);
}
.pricing-dev-banner {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: #374151; color: #9ca3af;
    font-size: 0.62rem; font-weight: 800; letter-spacing: 2px;
    padding: 0.3rem 1rem; border-radius: 100px; white-space: nowrap;
    font-family: var(--font-mono);
}
.btn-dev {
    display: block; text-align: center;
    background: rgba(55,65,81,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    color: #6b7280;
    padding: 0.85rem 1.5rem; border-radius: 12px;
    font-family: var(--font-mono); font-size: 0.75rem;
    font-weight: 700; letter-spacing: 2px;
}

/* ── Tier tags inside feature cards ─────────────────────── */
.tier-tag {
    display: inline-block;
    font-family: var(--font-mono); font-size: 0.5rem; font-weight: 800;
    letter-spacing: 1.5px; padding: 0.15rem 0.5rem;
    border-radius: 4px; vertical-align: middle; margin-left: 0.4rem;
    position: relative; top: -1px;
}
.tier-free  { background: rgba(16,185,129,0.15); color: #34d399; border: 1px solid rgba(52,211,153,0.3); }
.tier-pulse { background: rgba(79,70,229,0.15);  color: #818cf8; border: 1px solid rgba(129,140,248,0.3); }

/* ── DASHBOARD CTA ───────────────────────────────────────── */
.login-section {
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 8rem 0;
}

.login-sub {
    margin-top: 1.25rem; color: var(--text-dim);
    font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 1px;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section { background: var(--bg-dark); }

.pixel-frame {
    padding: 1rem; background: #0d1117;
    border: 1px solid #1e2a3a; display: inline-block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); border-radius: 4px;
}
.portrait-img { width: 380px; height: auto; display: block; border-radius: 2px; }

.about-content { display: flex; flex-direction: column; gap: 1.25rem; }
.about-content p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.8; }

.about-sig {
    margin-top: 1rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.mono { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent); letter-spacing: 1px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #01040f;
}

.footer-grid {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 3rem; flex-wrap: wrap;
}

.footer-info { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-info p { font-size: 0.75rem; color: var(--text-dim); }
.footer-disclaimer { max-width: 340px; line-height: 1.6; opacity: 0.6; }

.footer-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: flex-start; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 1s ease forwards; }
.fade-in-delayed { opacity: 0; animation: fadeIn 1s ease 0.4s forwards; }

/* ── DASHBOARD TERMINAL ────────────────────────────────────── */
.terminal-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    min-height: 80vh;
}
.widget-panel {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.widget-panel.span-full { grid-column: 1 / -1; }
.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.widget-title {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--accent);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.widget-content { flex-grow: 1; overflow-y: auto; }
.widget-content.no-pad { margin: -1rem; margin-top: 0; padding: 0; height: 100%; display: flex; flex-direction: column; }

/* Custom Scrollbar for Widgets */
.widget-content::-webkit-scrollbar { width: 4px; }
.widget-content::-webkit-scrollbar-track { background: transparent; }
.widget-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
    .nav-container { padding: 0 2rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .pricing-card-featured { transform: scale(1); }
    .apps-grid { grid-template-columns: 1fr; max-width: 420px; }
    .accent-title { font-size: 2.5rem; }
    .terminal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .section-title { font-size: 2.25rem; }
    .accent-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; gap: 1rem; }
    .hero-actions .btn { text-align: center; }
    .hero-stats { gap: 1.25rem; }
    .stat-divider { display: none; }
    .portrait-img { width: 100%; }
    .app-download { flex-direction: column; align-items: flex-start; }
    .footer-grid { flex-direction: column; }
    .footer-links { gap: 0.75rem 1.5rem; }
    section { padding: 5rem 0; }
}
