/* ===== Reset & Variables ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #FAFAF7;
    --bg-alt: #F3F3EE;
    --surface: #FFFFFF;
    --text: #1A1A1A;
    --text-mid: #4A4A44;
    --text-muted: #8A8A80;
    --text-light: #B5B5AA;
    --accent: #2D6A4F;
    --accent-hover: #235840;
    --accent-light: #E8F0EC;
    --accent-warm: #D4A574;
    --accent-warm-light: #F5EDE3;
    --border: #E5E5DF;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --font-display: 'Instrument Serif', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --container: 1200px;
    --gap: 140px;
}

html { scroll-behavior: smooth; }

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

/* Grain texture overlay */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== Reveal animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered delays for grid children */
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.values-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.values-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.values-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.compare-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.compare-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.steps-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.steps-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.steps-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.outcomes-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.outcomes-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.outcomes-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
em { font-family: var(--font-display); font-style: italic; color: var(--accent); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 106, 79, 0.25);
}
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.35s ease;
}
.nav.scrolled {
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { text-decoration: none; font-size: 1.5rem; letter-spacing: -0.02em; }
.logo-uni { font-family: var(--font-body); font-weight: 700; color: var(--text); }
.logo-ari { font-family: var(--font-display); font-style: italic; color: var(--accent); }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta-btn { padding: 10px 24px; font-size: 0.85rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

/* Floating gradient orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: var(--accent-light); top: 8%; left: -5%; }
.orb-2 { width: 300px; height: 300px; background: var(--accent-warm-light); top: 18%; right: -3%; animation-delay: -5s; }
.orb-3 { width: 250px; height: 250px; background: var(--accent-light); bottom: 10%; right: 20%; animation-delay: -10s; }
.orb-4 { width: 200px; height: 200px; background: var(--accent-warm-light); bottom: 20%; left: 10%; animation-delay: -15s; }
.orb-5 { width: 350px; height: 350px; background: #EDE8F0; top: 40%; left: 38%; animation-delay: -8s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

.hero-content { position: relative; z-index: 2; }
.hero-badge {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 32px;
}
.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}
.hero-title em { font-size: 1.05em; }
.hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 48px;
    font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Floating thought nodes */
.thought-nodes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.node {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    animation: nodeFloat 15s ease-in-out infinite;
    opacity: 0.75;
}
.node-1 { top: 25%; left: 6%; }
.node-2 { top: 16%; right: 10%; animation-delay: -3s; }
.node-3 { top: 62%; left: 4%; animation-delay: -6s; }
.node-4 { top: 72%; right: 7%; animation-delay: -9s; }
.node-5 { top: 42%; left: 2%; animation-delay: -12s; }
.node-6 { top: 52%; right: 4%; animation-delay: -4s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* ===== Trust ===== */
.trust { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-text {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===== Section headers ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); letter-spacing: -0.02em; }

/* ===== Features ===== */
.features { padding: var(--gap) 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all 0.35s ease;
}
.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 12px; font-family: var(--font-body); font-weight: 600; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Demo ===== */
.demo { padding: var(--gap) 0; background: var(--bg-alt); }

.demo-window {
    max-width: 680px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.06);
}
.demo-header {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.demo-dots { display: flex; gap: 6px; }
.demo-dots span { width: 10px; height: 10px; border-radius: 50%; }
.demo-dots span:nth-child(1) { background: #FF6058; }
.demo-dots span:nth-child(2) { background: #FFBD2E; }
.demo-dots span:nth-child(3) { background: #28C840; }
.demo-title { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.demo-chat { padding: 28px 24px; display: flex; flex-direction: column; gap: 20px; }
.chat-msg { display: flex; }
.chat-user { justify-content: flex-end; }
.chat-bubble { max-width: 85%; padding: 16px 20px; border-radius: var(--radius); font-size: 0.9rem; line-height: 1.65; }
.chat-user .chat-bubble { background: var(--accent); color: #fff; border-bottom-right-radius: 4px; }
.chat-agent .chat-bubble { background: var(--bg); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.chat-agent .chat-bubble p { margin-bottom: 12px; }
.chat-agent .chat-bubble p:last-of-type { margin-bottom: 16px; }
.chat-thinking { font-size: 0.8rem; color: var(--accent); font-weight: 500; margin-bottom: 12px; font-style: italic; }
.chat-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.chat-tag {
    font-size: 0.73rem;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 500;
}


/* ===== Widget Showcase ===== */
.widgets { padding: var(--gap) 0; }

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 16px auto 0;
}

.widgets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.widget-mockup { text-align: center; }
.widget-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 16px;
}
.widget-caption {
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Widget frame — outer container matching landing page style */
.widget-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}
.widget-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

/* ---- bothive-web widget reproduction (exact dark theme) ---- */
/* Colors from bothive-web Tailwind: bg=#1a1a1a, card=#2d2d2d, border=#454545, text=#fafafa, muted=#a0a0a0 */
.bw {
    font-family: var(--font-body);
    background: #1a1a1a;
    color: #fafafa;
    border: 1px solid #454545;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}
.bw.bw-light {
    background: #fff;
    color: #1a1a1a;
    border-color: #e5e5e5;
}
.bw-body { padding: 16px 16px 8px; }

/* SelectWidget */
.bw-step { font-size: 12px; color: #a0a0a0; margin-bottom: 12px; }
.bw-title { font-size: 14px; font-weight: 500; margin-bottom: 16px; line-height: 1.4; }
.bw-options { display: flex; flex-direction: column; gap: 8px; }
.bw-opt {
    display: flex; align-items: center; gap: 12px;
    width: 100%; padding: 10px 14px;
    background: transparent;
    border: 1px solid #454545;
    border-radius: 6px;
    color: #fafafa;
    font-size: 14px; font-weight: 500;
    cursor: default;
    text-align: left;
    font-family: var(--font-body);
    transition: background 0.15s;
}
.bw-opt:hover { background: rgba(255,255,255,0.04); }
.bw-opt-selected {
    border-color: #fafafa;
    background: rgba(250,250,250,0.08);
}
.bw-radio {
    width: 16px; height: 16px;
    border: 2px solid #666;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.bw-radio-on { border-color: #fafafa; }
.bw-radio-on span {
    display: block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fafafa;
}
.bw-comment {
    display: flex; align-items: center; gap: 12px;
    margin-top: 12px;
    padding: 10px 14px;
    border: 1px solid #454545;
    border-radius: 6px;
}
.bw-pencil { color: #a0a0a0; font-size: 14px; }
.bw-placeholder { color: #a0a0a0; font-size: 14px; }
.bw-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 12px;
    border-top: 1px solid #454545;
}
.bw-back { font-size: 13px; color: #a0a0a0; font-weight: 500; }
.bw-footer-right { display: flex; gap: 8px; align-items: center; }
.bw-skip { font-size: 13px; color: #a0a0a0; font-weight: 500; }

/* CardWidget */
.bw-card-item {
    padding: 0 0 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}
.bw-card-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 8px; }
.bw.bw-light .bw-card-item { border-color: #e5e5e5; }
.bw-card-title { font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.bw-card-content { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 12px; }
.bw.bw-light .bw-card-content { color: #666; }
.bw-card-buttons { display: flex; gap: 8px; }
.bw-card-btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
    color: #666;
    cursor: default;
}
.bw-card-btn-primary {
    background: #1a1a1a;
    color: #fafafa;
    border-color: #1a1a1a;
}

/* CardDeck */
.bw-deck-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 16px 8px;
}
.bw-deck-title { font-size: 14px; font-weight: 500; }
.bw-deck-counter { font-size: 13px; color: #a0a0a0; }
.bw-deck-card {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    min-height: 140px;
    margin: 0 0 12px;
    padding: 20px;
    border: 1px solid #454545;
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    cursor: default;
}
.bw-deck-side {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a0a0a0;
    margin-bottom: 12px;
}
.bw-deck-question { font-size: 16px; font-weight: 500; line-height: 1.4; }
.bw-deck-hint { font-size: 12px; color: #666; margin-top: 14px; }
.bw-deck-controls { display: flex; gap: 8px; }
.bw-deck-btn {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #454545;
    cursor: default;
    font-family: var(--font-body);
    background: transparent;
}
.bw-deck-wrong { color: #dc2626; }
.bw-deck-wrong:hover { background: rgba(220,38,38,0.06); }
.bw-deck-correct { color: #16a34a; }
.bw-deck-correct:hover { background: rgba(22,163,74,0.06); }

/* Card tag */
.bw-card-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Checklist */
.bw-check {
    width: 16px; height: 16px;
    border: 2px solid #666;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: transparent;
}
.bw-check-on { border-color: #fafafa; background: #fafafa; color: #1a1a1a; font-weight: 700; }
.bw-opt-done { text-decoration: line-through; color: #666; }
.bw-opt-checked { opacity: 0.7; }

/* Progress Ring */
.bw-progress-widget { text-align: center; }
.bw-ring-container { position: relative; width: 120px; height: 120px; margin: 16px auto; }
.bw-ring { width: 100%; height: 100%; }
.bw-ring-label {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.bw-ring-value { font-size: 24px; font-weight: 700; color: #fafafa; }
.bw-ring-sub { font-size: 11px; color: #a0a0a0; }
.bw-progress-stats {
    display: flex; justify-content: center; gap: 24px;
    margin-top: 12px;
}
.bw-stat { display: flex; flex-direction: column; align-items: center; }
.bw-stat-num { font-size: 18px; font-weight: 600; color: #fafafa; }
.bw-stat-label { font-size: 11px; color: #a0a0a0; }

/* Bar Chart */
.bw-chart-widget { text-align: center; }
.bw-chart {
    display: flex; align-items: flex-end; justify-content: center;
    gap: 8px;
    height: 120px;
    margin: 16px 0;
    padding-bottom: 20px;
    position: relative;
}
.bw-bar-group {
    display: flex; flex-direction: column; align-items: center;
    flex: 1; height: 100%;
    justify-content: flex-end;
}
.bw-bar {
    width: 100%;
    max-width: 28px;
    background: #333;
    border-radius: 4px 4px 0 0;
    transition: height 0.3s;
}
.bw-bar-accent { background: #16a34a; }
.bw-bar-label { font-size: 10px; color: #666; margin-top: 6px; }
.bw-chart-summary {
    display: flex; justify-content: space-between;
    font-size: 12px; color: #a0a0a0;
    border-top: 1px solid #333;
    padding-top: 10px;
}
.bw-trend-up { color: #16a34a; }

/* Widget grid stagger */
.widgets-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.widgets-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.widgets-grid .reveal:nth-child(4) { transition-delay: 0.1s; }
.widgets-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.widgets-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

/* ===== Values ===== */
.values { padding: var(--gap) 0; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 36px;
    transition: all 0.3s;
}
.value-card:hover { border-color: var(--accent-warm); }
.value-number { font-family: var(--font-display); font-size: 2.5rem; color: var(--text-light); margin-bottom: 16px; line-height: 1; }
.value-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.15rem; margin-bottom: 12px; }
.value-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Sound Familiar ===== */
.familiar { padding: var(--gap) 0; background: var(--bg-alt); }
.familiar-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.familiar-item {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.25s;
    cursor: default;
}
.familiar-item:hover { border-color: var(--accent-warm); background: var(--accent-warm-light); }
.familiar-item:hover .familiar-check,
.familiar-item.checked .familiar-check { background: var(--accent-warm); color: #fff; }
.familiar-item:hover .familiar-check::after,
.familiar-item.checked .familiar-check::after { content: '\2713'; }
.familiar-item:hover .familiar-check span,
.familiar-item.checked .familiar-check span { display: none; }

.familiar-check {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--accent-warm-light);
    color: var(--accent-warm);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
    transition: all 0.25s;
}
.familiar-item p { font-size: 1rem; color: var(--text-mid); }

.familiar-cta { text-align: center; margin-top: 40px; font-size: 1.05rem; color: var(--text-muted); }
.familiar-cta a { color: var(--accent); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--accent); transition: opacity 0.2s; }
.familiar-cta a:hover { opacity: 0.7; }

/* ===== Steps ===== */
.steps { padding: var(--gap) 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.step { text-align: center; }
.step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin: 0 auto 20px;
}
.step h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

.step-agents { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 16px; }
.agent-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 500;
}

/* ===== Outcomes ===== */
.outcomes { padding: var(--gap) 0; background: var(--accent); color: #fff; }
.outcomes .section-tag { color: rgba(255,255,255,0.55); }
.outcomes .section-title { color: #fff; }
.outcomes em { color: var(--accent-warm); }

.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
.outcome {
    display: flex; align-items: center; gap: 16px;
    padding: 24px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}
.outcome:hover { background: rgba(255,255,255,0.12); }
.outcome-before { color: rgba(255,255,255,0.45); font-size: 0.9rem; text-decoration: line-through; flex: 1; }
.outcome-arrow { color: var(--accent-warm); font-size: 1.3rem; flex-shrink: 0; }
.outcome-after { color: #fff; font-weight: 600; font-size: 0.95rem; flex: 1; }

/* ===== Compare ===== */
.compare { padding: var(--gap) 0; }
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.compare-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.3s;
}
.compare-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.compare-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-light); font-weight: 600; margin-bottom: 8px; }
.compare-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; margin-bottom: 16px; }
.compare-problem { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.compare-solution { color: var(--accent); font-size: 0.9rem; font-weight: 500; }

/* ===== FAQ ===== */
.faq { padding: var(--gap) 0; background: var(--bg-alt); }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.25s;
}
.faq-item.active { border-color: var(--accent); }

.faq-q {
    width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px;
    background: none; border: none;
    font-family: var(--font-body); font-size: 1rem; font-weight: 600;
    color: var(--text);
    cursor: pointer; text-align: left;
}
.faq-icon { font-size: 1.5rem; color: var(--text-light); transition: transform 0.3s; font-weight: 300; line-height: 1; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-item.active .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===== Final CTA ===== */
.final-cta { padding: var(--gap) 0; }
.final-cta-content {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.final-cta-content::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 300px; height: 300px;
    background: var(--accent-light);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.final-cta-content::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 250px; height: 250px;
    background: var(--accent-warm-light);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}
.final-cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; position: relative; z-index: 1; }
.final-cta p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 32px; position: relative; z-index: 1; }
.final-cta .btn { position: relative; z-index: 1; }
.final-note { font-size: 0.85rem !important; color: var(--text-light) !important; margin-top: 16px !important; margin-bottom: 0 !important; }

/* ===== Footer ===== */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--border); }
.footer-inner { text-align: center; }
.footer-logo { text-decoration: none; font-size: 1.3rem; display: inline-block; margin-bottom: 8px; }
.footer-tagline { font-size: 0.8rem; color: var(--text-light); margin-bottom: 24px; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 24px; }
.footer-links a { text-decoration: none; color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--text-light); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root { --gap: 100px; }
    .features-grid, .compare-grid, .widgets-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .thought-nodes { display: none; }
}

@media (max-width: 768px) {
    :root { --gap: 80px; }
    .nav-links, .nav-cta-btn { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--surface);
        padding: 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
        box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    }
    .hero { padding: 100px 24px 60px; min-height: auto; }
    .features-grid, .values-grid, .compare-grid, .outcomes-grid, .steps-grid, .widgets-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; justify-content: center; }
    .final-cta-content { padding: 48px 24px; }
    .section-header { margin-bottom: 40px; }
    .outcome { gap: 12px; padding: 18px; }
}

@media (max-width: 480px) {
    :root { --gap: 64px; }
    .feature-card, .value-card, .compare-card { padding: 28px 20px; }
    .demo-chat { padding: 20px 16px; }
    .chat-bubble { max-width: 92%; padding: 12px 16px; }
}
