/* ========================================
   JARVIS AI Landing — ia.sirhurtado.pro
   Design system: sirhurtado.pro palette
   Navy / Teal / Sage / Silver / Stone
   ======================================== */

:root {
    /* Navy */
    --navy-50: #E8ECEF;
    --navy-100: #C4CDD5;
    --navy-200: #9EADB9;
    --navy-500: #203959;
    --navy-700: #111E30;
    --navy-800: #0B1420;
    --navy-900: #060B12;
    --navy-950: #030509;

    /* Teal */
    --teal-300: #7AAAB5;
    --teal-400: #5F8F97;
    --teal-500: #416772;
    --teal-600: #345258;
    --teal-700: #263D42;
    --teal-800: #1A2A2E;
    --teal-900: #0D1517;

    /* Sage */
    --sage-300: #B5CBC5;
    --sage-400: #A5BDB6;
    --sage-500: #96ADA5;
    --sage-600: #7A9189;

    /* Silver */
    --silver-200: #D4D9D8;
    --silver-300: #C1C9C7;
    --silver-400: #ABB7B3;
    --silver-500: #839492;

    /* Semantic */
    --bg: var(--navy-900);
    --bg-alt: var(--navy-950);
    --bg-card: rgba(11, 20, 32, 0.6);
    --bg-card-hover: rgba(11, 20, 32, 0.9);
    --text: var(--silver-200);
    --text-muted: var(--silver-500);
    --accent: var(--teal-400);
    --accent-hover: var(--teal-300);
    --accent-dim: var(--teal-700);
    --accent2: var(--sage-400);
    --border: var(--teal-800);
    --border-hover: var(--teal-600);
    --success: #22c55e;
    --warning: #eab308;
    --danger: #ef4444;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --radius: 12px;
    --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

::selection {
    background: var(--teal-600);
    color: #fff;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======== NAV ======== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
    background: rgba(6, 11, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
    padding: 7px 16px !important;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--teal-500), var(--sage-500));
    color: #fff !important;
    font-weight: 600 !important;
    transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; }

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    position: absolute;
    left: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 9px; }
.nav-hamburger span:nth-child(3) { top: 18px; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(6, 11, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 99;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu a {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
}

/* ======== HERO ======== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 48px;
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(65, 103, 114, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(65, 103, 114, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65, 103, 114, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-title-line { display: block; }

.hero-title-accent {
    background: linear-gradient(135deg, var(--teal-300), var(--sage-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--silver-300);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 32px;
}

.hero-desc strong { color: #fff; }

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-500), var(--sage-500));
    color: #fff;
}

.btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 20px rgba(65, 103, 114, 0.3);
}

.btn-ghost {
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--text);
}

.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ======== TERMINAL ======== */
.hero-terminal {
    width: 100%;
    max-width: 640px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(65, 103, 114, 0.1);
}

.terminal-chrome {
    background: var(--navy-800);
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.terminal-title {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

.terminal-body {
    background: var(--navy-950);
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.9;
    min-height: 280px;
}

.t-line {
    opacity: 0;
    transform: translateY(3px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.t-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.t-prompt { color: var(--teal-400); }
.t-cmd { color: var(--silver-200); }
.t-ok { color: var(--success); font-weight: 500; }
.t-info { color: var(--teal-400); }
.t-out { color: var(--silver-400); }

.t-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--accent);
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* ======== SECTIONS ======== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-alt);
}

.section-fade {
    height: 120px;
    background: linear-gradient(to bottom, var(--bg), var(--bg-alt));
    position: relative;
}

.section-alt + .section-fade {
    background: linear-gradient(to bottom, var(--bg-alt), var(--bg));
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-lead {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ======== PROBLEM ======== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.3s;
}

.problem-card:hover { border-color: rgba(239, 68, 68, 0.3); }

.problem-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
}

.problem-icon-red { color: var(--danger); opacity: 0.7; }
.problem-icon svg { width: 100%; height: 100%; }

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ======== APPROACH ======== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.approach-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.approach-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(65, 103, 114, 0.08);
}

.approach-number {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 12px;
    opacity: 0.6;
}

.approach-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.approach-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.approach-detail {
    padding: 10px 14px;
    background: rgba(65, 103, 114, 0.08);
    border-radius: 8px;
    border-left: 2px solid var(--accent-dim);
}

.approach-detail code {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--silver-400);
    line-height: 1.5;
    word-break: break-all;
}

/* ======== ARCHITECTURE ======== */
.arch-visual {
    margin-bottom: 48px;
    overflow-x: auto;
}

.arch-diagram {
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.7;
    color: var(--silver-400);
    background: var(--navy-950);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    white-space: pre;
    overflow-x: auto;
}

.arch-comment { color: var(--text-muted); opacity: 0.5; }
.arch-layer { color: var(--teal-300); font-weight: 600; }
.arch-dim { color: var(--text-muted); font-weight: 400; }
.arch-agent { color: var(--sage-400); font-weight: 600; }

.arch-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.arch-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.3s;
}

.arch-card:hover { border-color: var(--accent); }

.arch-card-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.arch-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 8px 0;
}

.arch-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ======== MEMORY ======== */
.memory-layers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.memory-layer {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    transition: border-color 0.3s;
}

.memory-layer:hover { border-color: var(--accent); }

.memory-layer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.memory-layer-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 3px 10px;
    border-radius: 6px;
}

.memory-layer-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.memory-layer h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.memory-layer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.memory-example {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--silver-400);
    background: var(--navy-950);
    padding: 10px 14px;
    border-radius: 8px;
    border-left: 2px solid var(--accent-dim);
}

.memory-example strong { color: var(--accent); }

.memory-reinforce {
    color: var(--sage-400);
    font-weight: 600;
    margin-left: 8px;
}

.memory-formula {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.memory-formula h3 {
    font-family: var(--font-display);
    font-size: 15px;
    color: #fff;
    margin-bottom: 16px;
}

.formula {
    display: block;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--teal-300);
    background: var(--navy-950);
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.formula sup { font-size: 10px; }

.memory-formula p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.memory-formula strong { color: var(--sage-400); }

/* ======== AGENTS ======== */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.agent-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}

.agent-card:hover { border-color: var(--accent); }

.agent-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.agent-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.agent-dot-active {
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
}

.agent-dot-standby {
    background: var(--warning);
    box-shadow: 0 0 6px var(--warning);
}

.agent-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    flex: 1;
}

.agent-model {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    background: var(--navy-800);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.agent-card > p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.agent-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.agent-tools span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 3px 8px;
    border-radius: 4px;
}

.agent-budget {
    position: relative;
}

.agent-budget-bar {
    height: 3px;
    background: var(--navy-700);
    border-radius: 2px;
    margin-bottom: 6px;
    overflow: hidden;
}

.agent-budget-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: var(--pct);
    background: linear-gradient(90deg, var(--teal-500), var(--sage-500));
    border-radius: 2px;
    transition: width 1s ease;
}

.agent-budget span {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

/* ======== COMPARISON TABLE ======== */
.compare-table-wrap {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.compare-table th,
.compare-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.compare-table th {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 1px;
}

.compare-table td {
    color: var(--text-muted);
}

.compare-table td:first-child {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--silver-400);
}

.compare-highlight {
    color: var(--accent) !important;
    font-weight: 600;
    background: rgba(65, 103, 114, 0.05);
}

/* ======== STATS ======== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat { padding: 20px; }

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.stat-pct {
    font-size: 24px;
    color: var(--accent);
}

.stat-unit {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 4px 0;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

/* ======== STACK ======== */
.stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.stack-pill {
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-muted);
    transition: border-color 0.2s;
}

.stack-pill:hover { border-color: var(--accent); }

.stack-pill strong {
    color: var(--text);
    margin-right: 6px;
}

/* ======== CTA ======== */
.section-cta {
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(65, 103, 114, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.section-cta p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ======== FOOTER ======== */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-left strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text);
}

.footer-left p {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.footer-copy p {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ======== SOON BUTTONS ======== */
.btn-soon {
    opacity: 0.6;
    cursor: default;
}

.nav-cta-soon {
    padding: 7px 16px;
    border-radius: 8px;
    background: var(--navy-700);
    color: var(--text-muted) !important;
    font-weight: 600;
    font-size: 13px;
    cursor: default;
    opacity: 0.7;
}

.mobile-soon {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 14px;
    opacity: 0.5;
}

.footer-soon {
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.4;
}

.footer-copy a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-copy a:hover { color: var(--accent-hover); }

/* ======== CREATOR SECTION ======== */
.section-creator {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.creator-inner {
    text-align: center;
}

.creator-content {
    max-width: 480px;
    margin: 0 auto;
}

.creator-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0 12px;
}

.creator-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ======== ANIMATIONS ======== */
[data-anim] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-anim].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
    .hero { padding: 80px 16px 60px; gap: 32px; }
    .hero-terminal { max-width: 100%; }
    .terminal-body { font-size: 11px; padding: 16px; }
    .section { padding: 64px 0; }
    .section-fade { height: 60px; }
    .problem-grid,
    .approach-grid,
    .arch-cards,
    .agents-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .arch-diagram { font-size: 10px; padding: 16px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
    .hero-title { font-size: 32px; }
}
