/* ==========================================================================
   Kaleidoscope MCP — standalone site theme
   Palette: orange #FF8300 / #FF5E00 · purple #5C008B / #312e81 / #8B2AAE
   Font: Inter · Icons: Bootstrap Icons
   ========================================================================== */

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

:root {
    --orange: #FF8300;
    --orange-dark: #FF5E00;
    --purple: #5C008B;
    --purple-light: #8B2AAE;
    --indigo: #312e81;
    --ink: #1e293b;
    --ink-soft: #1f2937;
    --muted: #64748b;
    --muted-2: #475569;
    --border: #e2e8f0;
    --bg: #f9fafb;
    --gray: #f8f9fa;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--ink-soft);
    background: #ffffff;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

a { color: inherit; }
img { max-width: 100%; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
}

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

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 25px; width: auto; display: block; }
.nav-logo .nav-logo-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--purple);
    background: rgba(92, 0, 139, 0.08);
    padding: 3px 8px;
    border-radius: 6px;
}

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

.nav-links a.nav-item {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.nav-links a.nav-item:hover,
.nav-links a.nav-item.active { color: var(--orange); }

.nav-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    padding: 9px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px 0 rgba(255, 131, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 16px -1px rgba(255, 131, 0, 0.4); color: #fff; }

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

@media (max-width: 860px) {
    .mobile-menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .nav-links.active { max-height: 420px; padding: 12px 24px 24px; }
    .nav-links a.nav-item { width: 100%; padding: 14px 0; border-bottom: 1px solid #f1f5f9; }
    .nav-links .nav-cta { margin-top: 16px; width: 100%; text-align: center; }
}

/* ── Buttons / shared ───────────────────────────────────────────────────── */
.btn-orange {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 131, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(255, 131, 0, 0.4); color: #fff; }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, rgba(92, 0, 139, 0.96) 0%, rgba(49, 46, 129, 0.96) 100%);
    color: white;
    padding: 170px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(620px circle at 20% 12%, rgba(255, 131, 0, 0.22), transparent 60%),
        radial-gradient(680px circle at 82% 78%, rgba(139, 42, 174, 0.32), transparent 62%);
    pointer-events: none;
}
.hero.hero-compact { padding: 150px 0 70px; }
.hero.hero-compact h1 { font-size: 2.8rem; }
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: 0.5px;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.hero p {
    font-size: 1.3rem;
    margin: 0 auto 2.5rem;
    opacity: 0.92;
    max-width: 820px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-meta {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.78);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta i { color: #fbbf24; }

/* ── Works-with / compatibility strip ───────────────────────────────────── */
.compat {
    background: #fff;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}
.compat-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 18px;
}
.compat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.compat-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    background: #f8fafc;
    border: 1px solid var(--border);
    padding: 9px 18px;
    border-radius: 50px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.compat-item:hover { border-color: var(--purple-light); transform: translateY(-2px); }
.compat-item i { color: var(--purple); font-size: 0.95em; }
.compat-item.muted {
    color: var(--muted);
    background: transparent;
    border-style: dashed;
    font-weight: 500;
}
.compat-item.muted:hover { transform: none; border-color: var(--border); }

/* ── Sections ───────────────────────────────────────────────────────────── */
.content-section { background: white; padding: 80px 0; }
.content-section.gray { background: var(--gray); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-block;
    background: rgba(92, 0, 139, 0.08);
    color: var(--purple);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title { font-size: 36px; font-weight: 700; color: var(--ink); margin: 0 0 20px; }
.section-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Live example block ─────────────────────────────────────────────────── */
.example-block {
    background: #0f172a;
    border-radius: 16px;
    padding: 40px;
    max-width: 860px;
    margin: 0 auto;
    font-family: 'Courier New', monospace;
}
.example-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.example-dot { width: 10px; height: 10px; border-radius: 50%; background: #10b981; box-shadow: 0 0 6px #10b981; }
.example-status { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: #94a3b8; letter-spacing: 0.5px; }
.example-query { color: #e2e8f0; font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.example-query .prompt { color: var(--orange); font-weight: 600; }
.example-output { color: #94a3b8; font-size: 0.875rem; line-height: 1.8; }
.example-output .ticker { color: #22d3ee; font-weight: 600; }
.example-output .score { color: #10b981; }

/* ── Cards: use-case ────────────────────────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 32px;
}
.use-case-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
}
.use-case-card:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 32px rgba(92, 0, 139, 0.1);
    transform: translateY(-4px);
}
.use-case-number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--purple);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.use-case-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin: 0 0 12px; }
.use-case-card p { color: var(--muted); line-height: 1.7; margin: 0 0 16px; }
.use-case-tools { display: flex; flex-wrap: wrap; gap: 8px; }
.tool-tag {
    background: #f1f5f9;
    color: var(--muted-2);
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    padding: 4px 10px;
    border-radius: 6px;
}

/* ── Tools: category filter bar ─────────────────────────────────────────── */
.tools-filter {
    position: sticky;
    top: 64px;
    z-index: 900;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 0;
}
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--muted-2);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}
.filter-pill:hover { border-color: var(--purple-light); color: var(--purple); }
.filter-pill.active {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(92, 0, 139, 0.25);
}
.filter-pill .soon-tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 131, 0, 0.12);
    padding: 2px 6px;
    border-radius: 50px;
}
.filter-pill.active .soon-tag { color: #fff; background: rgba(255, 255, 255, 0.2); }

@media (max-width: 768px) {
    .filter-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 12px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .filter-pills::-webkit-scrollbar { display: none; }
}

/* ── Tools grid ─────────────────────────────────────────────────────────── */
.tools-category { margin-bottom: 48px; scroll-margin-top: 130px; }
.tools-category[hidden] { display: none; }
.cat-count {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--border);
    padding: 2px 9px;
    border-radius: 50px;
    margin-left: 10px;
    vertical-align: middle;
}
.cat-soon {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 131, 0, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
    margin-left: 10px;
    vertical-align: middle;
}

/* Coming-soon category card */
.tools-category.is-soon .tools-category-label { border-bottom-color: rgba(255, 131, 0, 0.3); }
.soon-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #fffdfa 0%, #fff7ed 100%);
    border: 1px dashed #fcd9b6;
    border-radius: 14px;
    padding: 28px 32px;
}
.soon-icon {
    flex: 0 0 auto;
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--orange);
    background: rgba(255, 131, 0, 0.1);
}
.soon-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.soon-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin: 0; }
.soon-cta {
    flex: 0 0 auto;
    margin-left: auto;
    align-self: center;
    background: #fff;
    border: 1.5px solid var(--orange);
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.soon-cta:hover { background: var(--orange); color: #fff; }

.tools-empty { text-align: center; color: var(--muted); padding: 40px 0; }

@media (max-width: 640px) {
    .soon-card { flex-direction: column; align-items: flex-start; gap: 16px; }
    .soon-cta { margin-left: 0; }
}


.tools-category-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(92, 0, 139, 0.15);
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 20px;
}
.tool-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
}
.tool-card:hover { border-color: var(--purple); box-shadow: 0 4px 16px rgba(92, 0, 139, 0.08); }
.tool-card-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.tool-card-name {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--purple);
    background: rgba(92, 0, 139, 0.07);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}
.tool-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── Steps / setup ──────────────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 40px;
}
.step { text-align: center; }
.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.step h3 { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin: 0 0 12px; }
.step p { color: var(--muted); line-height: 1.7; margin: 0; }

.setup-method-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: inline-block;
}
.setup-method-title small { font-size: 0.85rem; font-weight: 500; color: var(--muted); margin-left: 8px; }

.config-block {
    background: #0f172a;
    border-radius: 12px;
    padding: 24px;
    margin-top: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.config-block pre {
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.8;
    margin: 0;
    white-space: pre-wrap;
}
.config-block .key { color: #22d3ee; }
.config-block .str { color: #86efac; }
.config-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

/* ── Personas ───────────────────────────────────────────────────────────── */
.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 24px;
}
.persona-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.2s ease;
}
.persona-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.persona-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(92, 0, 139, 0.1), rgba(49, 46, 129, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--purple);
}
.persona-card h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.persona-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* ── Why-card ───────────────────────────────────────────────────────────── */
.why-card {
    background: white;
    border: 1px solid var(--border);
    border-left: 4px solid #ef4444;
    border-radius: 14px;
    padding: 30px;
    transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.why-card .why-gap {
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: #ef4444; margin-bottom: 10px;
}
.why-card h3 { font-size: 1.15rem; color: #0f172a; margin: 0 0 10px; }
.why-card .why-alone { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.why-card .why-fix {
    font-size: 0.92rem; color: #0f172a; line-height: 1.6;
    border-top: 1px solid #f1f5f9; padding-top: 14px; margin: 0;
}
.why-card .why-fix strong { color: var(--orange); }
.code-pill { background:#fff7ed; color: var(--orange); padding:1px 5px; border-radius:4px; }

/* ── Proof / benchmark ──────────────────────────────────────────────────── */
.proof-block {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: 20px; padding: 48px; max-width: 900px; margin: 0 auto;
    color: white; box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.proof-headline { text-align: center; margin-bottom: 32px; }
.proof-headline .delta {
    font-size: 3.4rem; font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.proof-headline p { color: #94a3b8; font-size: 0.95rem; margin-top: 10px; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.proof-cfg {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; padding: 26px; text-align: center;
}
.proof-cfg.win { border-color: rgba(255,131,0,0.5); background: rgba(255,131,0,0.08); }
.proof-cfg .cfg-label { font-size: 0.82rem; color: #94a3b8; margin-bottom: 12px; }
.proof-cfg .cfg-score { font-size: 2.4rem; font-weight: 800; color: white; }
.proof-cfg .cfg-sub { font-size: 0.82rem; color: #cbd5e1; margin-top: 6px; }
.proof-note { font-size: 0.85rem; color: #94a3b8; text-align: center; line-height: 1.6; margin: 0; }
.proof-note strong { color: #fbbf24; }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 0 0 12px; }
.faq-item p { color: var(--muted-2); line-height: 1.7; margin: 0; }
.faq-item code { background:#f1f5f9; padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.link-orange { color: var(--orange); text-decoration: none; font-weight: 600; }
.link-orange:hover { text-decoration: underline; }

/* ── Resources: combined index (filter + type tags) ─────────────────────── */
.res-filter { justify-content: center; margin-bottom: 8px; }
.card-type-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 50px;
    margin-right: 10px;
    vertical-align: middle;
}
.card-type-tag.guide { color: var(--purple); background: rgba(92, 0, 139, 0.1); }
.card-type-tag.brief { color: var(--orange); background: rgba(255, 131, 0, 0.1); }
.insight-card[hidden] { display: none; }

/* ── Insights list (newsletter preview cards) ───────────────────────────── */
.insights-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.insight-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 34px 36px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.insight-card:hover {
    border-color: var(--purple);
    box-shadow: 0 12px 36px rgba(92, 0, 139, 0.1);
    transform: translateY(-3px);
}
.insight-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 12px;
}
.insight-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin: 0 0 10px;
}
.insight-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 16px;
}
.insight-meta .dot { color: #cbd5e1; }
.insight-dek {
    font-size: 1rem;
    color: var(--muted-2);
    line-height: 1.7;
    margin: 0 0 18px;
}
.insight-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--orange);
}
.insight-readmore i { transition: transform 0.25s ease; }
.insight-card:hover .insight-readmore i { transform: translateX(5px); }

/* ── Featured brief banner (landing) ────────────────────────────────────── */
.brief-feature {
    display: flex;
    align-items: center;
    gap: 36px;
    max-width: 940px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 38px 42px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.brief-feature:hover {
    border-color: var(--purple);
    box-shadow: 0 18px 44px rgba(92, 0, 139, 0.12);
    transform: translateY(-4px);
}
.brief-feature-body { flex: 1; min-width: 0; }
.brief-feature-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.brief-feature-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--purple);
}
.brief-feature-tag {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 131, 0, 0.1);
    padding: 3px 9px;
    border-radius: 50px;
}
.brief-feature-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin: 0 0 10px;
}
.brief-feature-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 14px;
}
.brief-feature-meta .dot { color: #cbd5e1; }
.brief-feature-dek {
    font-size: 1rem;
    color: var(--muted-2);
    line-height: 1.7;
    margin: 0;
}
.brief-feature-cta { flex: 0 0 auto; }
.brief-feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: 50px;
    box-shadow: 0 8px 22px rgba(255, 131, 0, 0.3);
    white-space: nowrap;
}
.brief-feature-btn i { transition: transform 0.25s ease; }
.brief-feature:hover .brief-feature-btn i { transform: translateX(5px); }

@media (max-width: 720px) {
    .brief-feature { flex-direction: column; align-items: flex-start; gap: 22px; padding: 30px 26px; }
    .brief-feature-title { font-size: 1.3rem; }
    .brief-feature-cta { width: 100%; }
    .brief-feature-btn { width: 100%; justify-content: center; }
}

/* ── Article (full newsletter) ──────────────────────────────────────────── */
.article { padding: 116px 0 40px; }
.article-col { max-width: 720px; margin: 0 auto; }
.article-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.2s ease;
}
.article-back:hover { color: var(--purple); }
.article-head { padding-bottom: 28px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.article-eyebrow {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 14px;
}
.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--muted);
}
.article-meta .dot { color: #cbd5e1; }

/* Prose typography (rendered Markdown) */
.prose { padding-top: 8px; }
.prose > p:first-child {
    font-size: 1.22rem;
    line-height: 1.7;
    color: var(--ink);
    margin: 24px 0 28px;
}
.prose p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #334155;
    margin: 0 0 1.4em;
}
.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin: 2em 0 0.7em;
}
.prose h3 { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin: 1.6em 0 0.6em; }
.prose ul { margin: 0 0 1.4em; padding-left: 1.3em; }
.prose li { font-size: 1.08rem; line-height: 1.75; color: #334155; margin-bottom: 0.7em; }
.prose li::marker { color: var(--purple); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--orange); text-decoration: underline; }
.prose code {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--purple);
    background: rgba(92, 0, 139, 0.07);
    padding: 1px 6px;
    border-radius: 4px;
}
.prose blockquote {
    border-left: 3px solid var(--orange);
    padding: 4px 0 4px 20px;
    margin: 1.6em 0;
    color: var(--muted);
    font-style: italic;
}
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2.6em 0; }
/* Trailing italic disclaimer paragraph */
.prose > p:last-child em,
.prose hr + p em { color: var(--muted); }
.prose hr + p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

.article-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .insight-card { padding: 26px 24px; }
    .insight-title { font-size: 1.35rem; }
    .article-title { font-size: 1.9rem; }
    .prose > p:first-child { font-size: 1.1rem; }
}

/* ── Blog post: example-driven layout ───────────────────────────────────── */
.post-lede {
    max-width: 760px;
    margin: 0 auto 8px;
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--ink);
}
.post-lede p { margin: 0 0 1.1em; }
.post-section-label {
    max-width: 880px;
    margin: 56px auto 0;
    text-align: center;
}

/* one example */
.ex-item {
    max-width: 880px;
    margin: 0 auto;
    padding: 44px 0;
    border-top: 1px solid var(--border);
}
.ex-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.ex-n {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
}
.ex-kicker h3 { font-size: 1.35rem; font-weight: 700; color: var(--ink); margin: 0; line-height: 1.25; }

/* prompt bubble (reuses demo-prompt look, sized for article) */
.ex-prompt {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: #fff;
    border-radius: 14px 14px 14px 4px;
    padding: 16px 20px;
    margin-bottom: 18px;
    box-shadow: 0 10px 28px rgba(92, 0, 139, 0.18);
}
.ex-prompt .you {
    display: inline-block;
    font-size: 0.66rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: #fbbf24; margin-bottom: 6px;
}
.ex-prompt p { margin: 0; font-size: 1.05rem; line-height: 1.5; }

/* text response (when no screenshot) */
.ex-response {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}
.ex-response-head {
    display: flex; align-items: center; gap: 7px;
    padding: 12px 18px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem; font-weight: 600; color: var(--muted);
}
.ex-response-head i { color: var(--orange); }
.ex-response-body { padding: 22px; }
.ex-response-body p { margin: 0 0 14px; color: var(--muted-2); line-height: 1.75; font-size: 0.98rem; }
.ex-response-body p:last-of-type { margin-bottom: 0; }
.ex-response-body code {
    font-family: 'Courier New', monospace; font-size: 0.86em;
    color: var(--purple); background: rgba(92, 0, 139, 0.07);
    padding: 1px 6px; border-radius: 4px;
}

/* screenshot window (reuses shot-bar) */
.ex-window {
    border-radius: 14px; overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
    background: #0f172a;
}
.ex-window .ex-shot { background: #fff; }
.ex-window .ex-shot img { width: 100%; display: block; }

.ex-tools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.ex-take {
    margin: 18px 0 0;
    padding: 14px 18px;
    background: #fff7ed;
    border-left: 3px solid var(--orange);
    border-radius: 0 10px 10px 0;
    font-size: 0.96rem; line-height: 1.65; color: var(--ink);
}
.ex-take strong { color: var(--orange-dark); }

@media (max-width: 768px) {
    .ex-kicker h3 { font-size: 1.15rem; }
    .post-lede { font-size: 1.08rem; }
}

/* ── CTA band ───────────────────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--purple) 0%, var(--indigo) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}
.cta-band h2 { font-size: 2.5rem; font-weight: 700; margin: 0 0 1rem; }
.cta-band p { font-size: 1.25rem; margin: 0 auto 2.5rem; opacity: 0.9; max-width: 600px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Inline cross-link card (landing → tools) ───────────────────────────── */
.deepdive {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 40px;
    max-width: 900px;
    margin: 0 auto;
}
.deepdive h3 { margin: 0 0 6px; font-size: 1.3rem; color: var(--ink); }
.deepdive p { margin: 0; color: var(--muted); }
.deepdive .btn-orange { font-size: 1rem; padding: 13px 28px; white-space: nowrap; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
    background: #1f2937;
    color: #cbd5e1;
    padding: 56px 0 28px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid #374151;
}
.footer-brand { max-width: 360px; }
.footer-brand img { height: 24px; margin-bottom: 16px; }
.footer-brand p { color: #94a3b8; font-size: 0.92rem; line-height: 1.6; margin: 0; }
.footer-links-group { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin: 0 0 14px; }
.footer-col a { display: block; color: #94a3b8; text-decoration: none; font-size: 0.9rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    font-size: 0.85rem;
    color: #94a3b8;
}
.footer-bottom a { color: #94a3b8; text-decoration: none; margin-left: 20px; }
.footer-bottom a:hover { color: var(--orange); }

/* ── Before / after (the shift) ─────────────────────────────────────────── */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
    align-items: stretch;
}
.ba-col {
    border-radius: 16px;
    padding: 34px 32px;
    border: 1px solid var(--border);
    background: #fff;
}
.ba-before { background: #fafafa; }
.ba-after {
    background: linear-gradient(135deg, rgba(92,0,139,0.04), rgba(255,131,0,0.05));
    border-color: rgba(92, 0, 139, 0.2);
}
.ba-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.ba-before .ba-tag { color: var(--muted-2); background: #eef2f6; }
.ba-after .ba-tag { color: #fff; background: linear-gradient(135deg, var(--purple), var(--indigo)); }
.ba-col h3 { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin: 0 0 18px; }
.ba-list { list-style: none; margin: 0 0 20px; padding: 0; }
.ba-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: var(--muted-2);
    font-size: 0.95rem;
    line-height: 1.55;
}
.ba-before .ba-list li::before {
    content: "\2715"; /* ✕ */
    position: absolute; left: 0; top: 0;
    color: #cbd5e1; font-weight: 700;
}
.ba-after .ba-list li::before {
    content: "\2713"; /* ✓ */
    position: absolute; left: 0; top: 0;
    color: #10b981; font-weight: 700;
}
.ba-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    width: 100%;
}
.ba-time.on { color: var(--orange); }

@media (max-width: 760px) {
    .ba-grid { grid-template-columns: 1fr; }
}

/* ── Vignettes (conversational use cases) ───────────────────────────────── */
.vignette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 24px;
}
.vignette {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}
.vignette:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 32px rgba(92, 0, 139, 0.1);
    transform: translateY(-4px);
}
.vignette-q {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 14px;
}
.vignette-q .ask {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}
.vignette > p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0 0 18px;
}
.vignette code {
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    color: var(--purple);
    background: rgba(92, 0, 139, 0.07);
    padding: 1px 6px;
    border-radius: 4px;
}

/* ── Scale stat strip ───────────────────────────────────────────────────── */
.stat-strip-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 56px 0;
}
.stat-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.stat-label { font-size: 0.8rem; color: #94a3b8; line-height: 1.4; }

@media (max-width: 860px) {
    .stat-strip { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; }
}
@media (max-width: 480px) {
    .stat-strip { grid-template-columns: repeat(2, 1fr); }
    .stat-num { font-size: 1.8rem; }
}

/* ── Bottom line ────────────────────────────────────────────────────────── */
.bottomline { max-width: 820px; margin: 0 auto; text-align: center; }
.bottomline p { font-size: 1.15rem; color: var(--muted-2); line-height: 1.8; margin: 0; }
.bottomline em { color: var(--ink); font-style: italic; }

/* ── Screenshot showcase ────────────────────────────────────────────────── */
.shots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 36px;
    max-width: 920px;
    margin: 0 auto;
}
.shot-card { margin: 0; }
.shot-frame {
    background: #0f172a;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
}
.shot-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: #1e293b;
}
.shot-bar span { width: 11px; height: 11px; border-radius: 50%; background: #475569; }
.shot-bar span:nth-child(1) { background: #ef4444; }
.shot-bar span:nth-child(2) { background: #f59e0b; }
.shot-bar span:nth-child(3) { background: #10b981; }
.shot-viewport {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #ffffff;
    overflow: hidden;
}
.shot-viewport img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.shot-placeholder {
    display: none;
    position: absolute; inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #94a3b8;
    background:
        repeating-linear-gradient(45deg, #f8fafc 0 14px, #f1f5f9 14px 28px);
}
.shot-placeholder i { font-size: 2rem; opacity: 0.7; }
.shot-placeholder span { font-size: 0.85rem; letter-spacing: 0.5px; }
.shot-viewport.is-empty .shot-placeholder { display: flex; }
.shot-card figcaption {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

/* Window-bar title used inside screenshot cards */
.demo-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-left: 10px;
}
.demo-title i { color: var(--orange); }

/* ── Popout banner (clickable, leads to a deeper page) ──────────────────── */
.popout {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--purple) 0%, var(--indigo) 100%);
    box-shadow: 0 30px 60px rgba(92, 0, 139, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.popout::after {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(520px circle at 12% 10%, rgba(255, 131, 0, 0.28), transparent 60%),
        radial-gradient(560px circle at 88% 90%, rgba(139, 42, 174, 0.40), transparent 62%);
    pointer-events: none;
}
.popout:hover { transform: translateY(-6px); box-shadow: 0 40px 80px rgba(92, 0, 139, 0.4); color: #fff; }
.popout > * { position: relative; z-index: 1; }
.popout-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fbbf24;
    margin-bottom: 16px;
}
.popout h2 { font-size: 2.1rem; font-weight: 700; margin: 0 0 14px; line-height: 1.2; }
.popout p { font-size: 1.15rem; opacity: 0.9; max-width: 620px; margin: 0 auto 28px; }
.popout-go {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(255, 131, 0, 0.35);
}
.popout-go i { transition: transform 0.3s ease; }
.popout:hover .popout-go i { transform: translateX(5px); }

@media (max-width: 768px) {
    .popout { padding: 44px 26px; }
    .popout h2 { font-size: 1.6rem; }
    .popout p { font-size: 1rem; }
}

/* ── Scroll reveal ──────────────────────────────────────────────────────── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.animate { opacity: 1; transform: translateY(0); }

/* ── Modal ──────────────────────────────────────────────────────────────── */
.mcp-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
.mcp-modal.active { display: flex; }
.mcp-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 560px;
    width: 92%;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.mcp-modal-header {
    padding: 28px 32px 22px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    border-radius: 16px 16px 0 0;
    position: relative;
}
.mcp-modal-header h2 { font-size: 1.4rem; font-weight: 700; color: white; margin: 0; }
.mcp-modal-header p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin: 6px 0 0; }
.mcp-modal-close {
    position: absolute; top: 18px; right: 18px;
    background: rgba(255,255,255,0.15); border: none;
    font-size: 1.4rem; color: white; cursor: pointer;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; transition: background 0.2s;
}
.mcp-modal-close:hover { background: rgba(255,255,255,0.28); }
.mcp-modal-body { padding: 28px 32px 32px; }

/* ── Form ───────────────────────────────────────────────────────────────── */
.mcp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mcp-form-group { margin-bottom: 18px; }
.mcp-form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: #374151; margin-bottom: 6px; }
.mcp-form-group .required { color: #ef4444; margin-left: 2px; }
.mcp-form-group input,
.mcp-form-group textarea {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid #d1d5db; border-radius: 8px;
    font-size: 0.95rem; font-family: inherit; color: var(--ink);
    background: #fafafa; box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mcp-form-group input:focus,
.mcp-form-group textarea:focus {
    outline: none; border-color: var(--purple-light);
    box-shadow: 0 0 0 3px rgba(139,42,174,0.12);
    background: white;
}
.mcp-form-group input.mcp-error,
.mcp-form-group textarea.mcp-error { border-color: #ef4444; }
.mcp-form-group textarea { resize: vertical; min-height: 90px; }
.mcp-error-msg { font-size: 0.8rem; color: #ef4444; margin-top: 4px; display: block; min-height: 1em; }
.mcp-submit-btn {
    width: 100%; padding: 13px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white; border: none; border-radius: 8px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mcp-submit-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.mcp-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.mcp-form-msg { margin-top: 14px; padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; display: none; }
.mcp-form-msg.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.mcp-form-msg.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero { padding: 130px 0 80px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .section-title { font-size: 28px; }
    .content-section { padding: 60px 0; }
    .proof-grid { grid-template-columns: 1fr; }
    .proof-block { padding: 32px 22px; }
    .cta-band h2 { font-size: 1.9rem; }
    .deepdive { padding: 28px 24px; }
}
@media (max-width: 500px) {
    .mcp-form-row { grid-template-columns: 1fr; }
    .mcp-modal-body { padding: 20px; }
}
