/* GlowBrass — AI Buying Signal Intelligence */
:root {
 --bg: #050816;
 --surface: #0F172A;
 --border: #1E293B;
 --ink: #CBD5E1;
 --muted: #94A3B8;
 --muted-light: #64748B;
 --heading: #FFFFFF;
 --cyan: #00F0FF;
 --cyan-soft: rgba(0, 240, 255, 0.12);
 --purple: #8B5CF6;
 --green: #22C55E;
 --brass: #C9A227;
 --radius: 10px;
 --radius-lg: 14px;
 --max: 1180px;
 --header-h: 64px;
 --strip-h: 36px;
 --sans: "Plus Jakarta Sans", system-ui, sans-serif;
 --mono: "IBM Plex Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
 font-family: var(--sans);
 background: var(--bg);
 color: var(--ink);
 line-height: 1.6;
 -webkit-font-smoothing: antialiased;
}
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #fff; }
img, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max), 92vw); margin: 0 auto; }
.container.narrow { max-width: 720px; }

/* Typography */
.kicker { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 10px; }
h1, h2, h3 { color: var(--heading); line-height: 1.15; }
.text-gradient { background: linear-gradient(90deg, var(--cyan), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 58ch; }
.section-head { margin-bottom: 32px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }

/* Buttons */
.btn {
 display: inline-flex; align-items: center; justify-content: center; gap: 6px;
 padding: 10px 18px; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
 border: 1px solid transparent; cursor: pointer; transition: 0.2s;
}
.btn-primary { background: var(--cyan); color: #050816; border-color: var(--cyan); }
.btn-primary:hover { background: #33f3ff; color: #050816; box-shadow: 0 0 24px rgba(0,240,255,0.35); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-ghost { background: transparent; color: var(--muted); border-color: transparent; }
.btn-ghost:hover { color: var(--cyan); }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }
.btn-xs { padding: 5px 10px; font-size: 0.72rem; }
.btn-full { width: 100%; }

/* Glass */
.glass-card { background: rgba(15,23,42,0.85); border: 1px solid var(--border); border-radius: var(--radius-lg); }

/* Header */
.signal-strip {
 height: var(--strip-h); display: flex; align-items: center; justify-content: center; gap: 12px;
 background: rgba(15,23,42,0.95); border-bottom: 1px solid var(--border);
 font-size: 0.72rem; color: var(--muted); padding: 0 16px; overflow: hidden; white-space: nowrap;
}
.signal-strip a { color: var(--cyan); font-weight: 600; flex-shrink: 0; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(5,8,22,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: var(--header-h); width: min(var(--max), 92vw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 0.95rem; color: var(--heading); }
.brand-text span { font-size: 0.62rem; color: var(--muted-light); }
.nav-main { display: flex; gap: 4px; }
.nav-link { padding: 8px 12px; font-size: 0.84rem; font-weight: 500; color: var(--ink); border-radius: 8px; }
.nav-link:hover { color: var(--cyan); background: var(--cyan-soft); }
.nav-link--muted { color: var(--muted); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 1.2rem; cursor: pointer; }

/* Signal ticker (home hero top) */
.signal-ticker { overflow: hidden; border-bottom: 1px solid var(--border); background: rgba(0,240,255,0.03); padding: 10px 0; }
.ticker-track { display: flex; gap: 24px; width: max-content; animation: ticker 40s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-size: 0.75rem; white-space: nowrap; }
.ticker-item em { font-style: normal; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-light); }
.ticker-item strong { color: var(--heading); }
.ticker-item--funding em { color: var(--green); }
.ticker-item--hiring em { color: var(--cyan); }
.ticker-item--tech em { color: var(--purple); }
.ticker-item--expansion em { color: var(--brass); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Hero — centered + console (NOT dual-column twin) */
.signal-hero { padding: 56px 0 72px; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,240,255,0.06), transparent 60%); }
.signal-hero-center { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.hero-eyebrow { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cyan); margin-bottom: 14px; }
.signal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 18px; }
.hero-lead { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.hero-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 560px; margin: 0 auto; }
.hero-stat { padding: 14px 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
.hero-stat strong { display: block; font-size: 1.15rem; color: var(--cyan); font-family: var(--mono); }
.hero-stat span { font-size: 0.62rem; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.05em; }

/* Signal console */
.signal-console { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.console-head { display: flex; align-items: center; gap: 6px; padding: 10px 16px; background: rgba(5,8,22,0.6); border-bottom: 1px solid var(--border); }
.console-dot { width: 8px; height: 8px; border-radius: 50%; }
.console-dot:nth-child(1) { background: #F87171; }
.console-dot:nth-child(2) { background: #FBBF24; }
.console-dot:nth-child(3) { background: var(--green); }
.console-head em { flex: 1; font-size: 0.7rem; color: var(--muted-light); font-style: normal; margin-left: 8px; }
.console-live { font-size: 0.68rem; font-weight: 600; color: var(--green); padding: 2px 10px; border: 1px solid rgba(34,197,94,0.3); border-radius: 999px; background: rgba(34,197,94,0.1); }
.console-body { overflow: hidden; padding: 16px 0; }
.signal-scroll { display: flex; gap: 14px; padding: 0 16px; width: max-content; will-change: transform; }

/* Signal cards */
.signal-card { flex: 0 0 280px; padding: 16px; background: rgba(5,8,22,0.5); border: 1px solid var(--border); border-radius: var(--radius); }
.signal-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.signal-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.sig-event { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.sig-ai { font-size: 0.75rem; color: var(--cyan); font-style: italic; margin-bottom: 10px; }
.signal-card-foot { display: flex; justify-content: space-between; align-items: center; }
.sig-score strong { color: var(--green); font-family: var(--mono); }
.sig-cat { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 2px 8px; border-radius: 999px; }
.sig-cat--funding { background: rgba(34,197,94,0.15); color: var(--green); }
.sig-cat--hiring { background: var(--cyan-soft); color: var(--cyan); }
.sig-cat--tech { background: rgba(139,92,246,0.15); color: var(--purple); }
.sig-cat--launch { background: rgba(201,162,39,0.15); color: var(--brass); }
.sig-cat--exec { background: rgba(248,113,113,0.12); color: #F87171; }
.sig-cat--expansion { background: rgba(201,162,39,0.12); color: var(--brass); }

/* Bento grid */
.section-breathe { padding: clamp(56px, 7vw, 88px) 0; }
.section--card { background: var(--surface); border-block: 1px solid var(--border); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 12px; }
.bento-tile { display: flex; flex-direction: column; padding: 20px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); color: inherit; transition: 0.2s; }
.bento-tile:hover { border-color: var(--cyan); transform: translateY(-2px); }
.bento-tile--funding { grid-column: span 1; }
.bento-tile--hiring { grid-column: span 1; }
.bento-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-light); }
.bento-tile strong { font-size: 1.6rem; color: var(--cyan); font-family: var(--mono); margin: 8px 0 4px; }
.bento-tile p { font-size: 0.82rem; color: var(--muted); flex: 1; }
.bento-link { font-size: 0.78rem; color: var(--cyan); margin-top: 12px; font-weight: 600; }

/* Scoring */
.section-band { padding: clamp(56px, 7vw, 88px) 0; }
.section--score { background: linear-gradient(180deg, rgba(0,240,255,0.04), transparent); border-block: 1px solid var(--border); }
.score-panel { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.score-panel-main { display: flex; gap: 24px; align-items: flex-start; }
.score-ring svg { width: 120px; height: 120px; }
.score-num { font-size: 28px; font-weight: 700; fill: var(--heading); font-family: var(--mono); }
.score-lbl { font-size: 10px; fill: var(--muted); text-transform: uppercase; }
.score-breakdown h3 { margin-bottom: 8px; }
.score-lead { font-size: 0.9rem; color: var(--muted); margin-bottom: 14px; }
.score-factors { list-style: none; }
.score-factors li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.score-factors em { color: var(--green); font-style: normal; font-family: var(--mono); font-weight: 600; }
.score-logic { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.score-logic p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }

/* Map */
.section--map { background: radial-gradient(ellipse at center, rgba(139,92,246,0.06), transparent 70%); }
.opp-map-panel { overflow: hidden; border: 1px solid rgba(0,240,255,0.15); }
.opp-map-hud { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding: 14px 18px; background: rgba(5,8,22,0.65); border-bottom: 1px solid var(--border); }
.map-hud-stat strong { display: block; font-size: 1.1rem; color: var(--cyan); font-family: var(--mono); }
.map-hud-stat span { font-size: 0.68rem; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.04em; }
.map-hud-live { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; color: var(--green); padding: 4px 12px; border: 1px solid rgba(34,197,94,0.3); border-radius: 999px; background: rgba(34,197,94,0.08); }
.hud-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: hud-pulse 1.5s ease infinite; }
@keyframes hud-pulse { 50% { opacity: 0.4; transform: scale(0.85); } }
.opp-map-body { display: grid; grid-template-columns: 1fr 220px; min-height: 320px; }
.opp-map { width: 100%; height: 100%; min-height: 320px; display: block; }
.map-land { fill: rgba(15,23,42,0.9); stroke: rgba(0,240,255,0.12); stroke-width: 0.8; }
.map-arc { animation: arc-flow 6s linear infinite; }
@keyframes arc-flow { to { stroke-dashoffset: -16; } }
.map-marker { cursor: default; }
.map-pulse { animation: map-marker-pulse 2.4s ease-in-out infinite; }
.map-marker--mid .map-pulse { animation-delay: 0.6s; }
@keyframes map-marker-pulse { 0%, 100% { opacity: 0.25; r: 8; } 50% { opacity: 0.55; r: 14; } }
.map-core { filter: url(#mapGlow); }
.map-city { font-size: 8px; fill: var(--muted-light); text-anchor: middle; font-family: var(--sans); }
.opp-map-feed { padding: 16px; border-left: 1px solid var(--border); background: rgba(5,8,22,0.5); display: flex; flex-direction: column; }
.opp-map-feed ul { list-style: none; flex: 1; overflow: hidden; }
.opp-map-feed li { display: grid; grid-template-columns: 36px 1fr auto; gap: 8px; align-items: start; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.78rem; }
.opp-map-feed li:last-child { border-bottom: none; }
.opp-map-feed strong { display: block; color: var(--heading); font-size: 0.82rem; }
.opp-map-feed span { color: var(--muted-light); font-size: 0.72rem; }
.opp-map-feed time { font-size: 0.65rem; color: var(--green); font-family: var(--mono); }
.map-feed-score { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; font-family: var(--mono); font-weight: 700; font-size: 0.78rem; }
.map-feed-score--high { background: rgba(0,240,255,0.12); color: var(--cyan); border: 1px solid rgba(0,240,255,0.25); }
.map-feed-score--mid { background: rgba(139,92,246,0.12); color: var(--purple); border: 1px solid rgba(139,92,246,0.25); }
.map-feed-link { font-size: 0.78rem; font-weight: 600; margin-top: 12px; }
.map-legend { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; padding: 12px 18px; border-top: 1px solid var(--border); background: rgba(5,8,22,0.45); font-size: 0.78rem; color: var(--muted); }
.map-legend-note { margin-left: auto; font-size: 0.72rem; color: var(--muted-light); }
.map-dot circle { animation: map-pulse 2.5s ease infinite; }
@keyframes map-pulse { 50% { opacity: 0.5; } }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.dot--high { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.dot--mid { background: var(--purple); }
.dot--live { background: var(--green); animation: map-pulse 1.5s ease infinite; }

/* Proof */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proof-card { padding: 24px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.proof-card h3 { font-size: 1.1rem; margin: 8px 0; color: var(--green); }
.proof-card p { font-size: 0.85rem; color: var(--muted); }

/* Home CTA */
.section-cta { padding: 64px 0; text-align: center; background: linear-gradient(180deg, transparent, rgba(0,240,255,0.05)); border-top: 1px solid var(--border); }
.section-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 20px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* Inner pages */
.page-hero { padding: 56px 0 32px; text-align: center; background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0,240,255,0.05), transparent); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.page-body { padding: 32px 0 72px; }
.page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.page-actions--spaced { margin-top: 48px; }
.page-actions--above-grid { margin-top: 32px; margin-bottom: 56px; }
.page-actions--above-grid + .feature-grid { margin-top: 4px; }
.about-blocks + .page-actions { margin-top: 48px; }

/* Architecture */
.arch-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; align-items: center; padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 32px; }
.arch-pills, .arch-steps { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.arch-pills span, .arch-step { font-size: 0.72rem; padding: 4px 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 999px; }
.arch-step { color: var(--cyan); border-color: rgba(0,240,255,0.25); }
.arch-arrow { font-size: 1.4rem; color: var(--muted); }
.arch-output strong { display: block; font-size: 1rem; color: var(--heading); margin: 8px 0 4px; }
.arch-output p { font-size: 0.82rem; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; color: var(--muted); }

/* Signal grid (inner pages) */
.signal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.signal-grid .signal-card { flex: none; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.filter-chip { padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--muted); font-size: 0.8rem; cursor: pointer; }
.filter-chip.is-active, .filter-chip:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-soft); }

/* Data table */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.data-table th, .data-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.data-table th { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-light); background: rgba(5,8,22,0.5); }
.row-sub { display: block; font-size: 0.75rem; color: var(--muted-light); margin-top: 2px; }
.row-actions { display: flex; gap: 6px; }
.score-pill { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--cyan-soft); color: var(--cyan); font-family: var(--mono); font-weight: 600; font-size: 0.82rem; }

/* Workflows */
.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.workflow-card { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.wf-tag { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 2px 8px; border-radius: 999px; }
.wf-tag--funding { background: rgba(34,197,94,0.15); color: var(--green); }
.wf-tag--tech { background: rgba(139,92,246,0.15); color: var(--purple); }
.wf-tag--hiring { background: var(--cyan-soft); color: var(--cyan); }
.wf-tag--exec { background: rgba(248,113,113,0.12); color: #F87171; }
.wf-tag--expansion { background: rgba(201,162,39,0.12); color: var(--brass); }
.wf-tag--launch { background: rgba(201,162,39,0.15); color: var(--brass); }
.workflow-card h3 { font-size: 1rem; margin: 10px 0 8px; }
.workflow-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }

/* Integrations */
.int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.int-tile { padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
.int-logo { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 8px; background: var(--cyan-soft); color: var(--cyan); font-weight: 700; font-size: 0.8rem; margin-bottom: 8px; }
.int-tile strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.int-tile p { font-size: 0.72rem; color: var(--muted-light); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.price-card { padding: 28px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; }
.price-card--featured { border-color: var(--cyan); box-shadow: 0 0 32px rgba(0,240,255,0.1); }
.price-amount { font-size: 2rem; font-weight: 700; color: var(--heading); margin: 12px 0 4px; }
.price-amount em { font-size: 0.9rem; font-weight: 400; color: var(--muted); font-style: normal; }
.price-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }
.price-card ul { list-style: none; flex: 1; margin-bottom: 20px; }
.price-card li { font-size: 0.85rem; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
.price-card li::before { content: "✓ "; color: var(--green); }

/* Resources */
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.resource-card { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.res-tag { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--purple); }
.resource-card h3 { font-size: 1rem; margin: 8px 0; }
.resource-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.res-actions { display: flex; gap: 8px; }

/* Research */
.research-preview { margin-bottom: 24px; }
.research-input-row { display: flex; gap: 10px; margin-top: 8px; }
.research-input-row input { flex: 1; padding: 12px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--ink); }
.research-report { padding: 24px; margin-top: 20px; }
.report-sections { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }
.report-sections p { font-size: 0.88rem; color: var(--muted); }

/* API */
.api-preview { padding: 24px; overflow-x: auto; }
.api-preview pre { font-family: var(--mono); font-size: 0.8rem; color: var(--cyan); line-height: 1.6; }

/* Score compare */
.score-compare { margin-bottom: 32px; }
.trend-chart { display: flex; align-items: flex-end; gap: 8px; height: 100px; margin: 16px 0; }
.trend-chart span { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--cyan), var(--purple)); border-radius: 4px 4px 0 0; opacity: 0.8; }
.trend-note { font-size: 0.85rem; color: var(--muted); }

/* About */
.about-blocks { display: grid; gap: 24px; }
.about-blocks article { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.about-blocks h3 { font-size: 1.05rem; margin-bottom: 8px; }
.about-blocks p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* Contact form */
.contact-form { padding: 28px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 6px; color: var(--muted); }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 12px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--ink); }
.form-field select {
 appearance: none; -webkit-appearance: none; padding-right: 36px; cursor: pointer;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M2.5 4.5L6 8l3.5-3.5'/%3E%3C/svg%3E");
 background-repeat: no-repeat; background-position: right 14px center;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--cyan); }

/* Auth */
.auth-page { min-height: 100vh; background: var(--bg); }
.auth-shell { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-feed-panel { padding: 40px; background: var(--surface); border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.auth-panel-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-light); margin: 32px 0 16px; }
.auth-signal-list { list-style: none; flex: 1; }
.auth-signal-list li { padding: 14px 0; border-bottom: 1px solid var(--border); }
.auth-signal-list strong { display: block; font-size: 0.9rem; color: var(--heading); margin: 4px 0; }
.auth-signal-list em { font-size: 0.78rem; color: var(--muted); font-style: normal; }
.auth-panel-foot { font-size: 0.78rem; color: var(--muted-light); font-family: var(--mono); }
.auth-main { display: flex; align-items: center; justify-content: center; padding: 40px; }
.auth-card { width: 100%; max-width: 400px; }
.auth-card h1 { font-size: 1.6rem; margin-bottom: 8px; }
.auth-lead { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; font-size: 0.78rem; color: var(--muted-light); }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.auth-social { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.btn-social { padding: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); color: var(--ink); font-size: 0.78rem; cursor: pointer; }
.btn-social:hover { border-color: var(--cyan); }
.auth-note { font-size: 0.82rem; color: var(--muted); margin-top: 20px; text-align: center; }

/* Footer */
.footer-main { padding: 48px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); margin-top: 14px; line-height: 1.65; max-width: 32ch; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-light); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.84rem; color: var(--muted); }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { padding: 20px 0; border-top: 1px solid var(--border); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted-light); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: var(--muted-light); }

/* Modal & toast */
.gb-modal-overlay { position: fixed; inset: 0; background: rgba(5,8,22,0.8); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: 0.2s; }
.gb-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.gb-modal { position: relative; width: min(420px, 100%); padding: 28px; }
.gb-modal h2 { font-size: 1.2rem; margin-bottom: 12px; }
.gb-modal-body p { color: var(--muted); margin-bottom: 16px; font-size: 0.9rem; }
.gb-modal-close { position: absolute; top: 12px; right: 14px; background: none; border: none; color: var(--muted); font-size: 1.4rem; cursor: pointer; }
.gb-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--surface); border: 1px solid var(--cyan); color: var(--ink); padding: 12px 20px; border-radius: 999px; font-size: 0.85rem; z-index: 300; opacity: 0; transition: 0.3s; pointer-events: none; }
.gb-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Brand pillars & trust */
.hero-sub { font-size: 1.1rem; color: var(--cyan); font-weight: 600; margin-bottom: 12px; }
.pillar-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; text-align: left; }
.pillar { padding: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.pillar strong { display: block; font-size: 0.78rem; color: var(--heading); margin-bottom: 4px; }
.pillar span { font-size: 0.72rem; color: var(--muted-light); line-height: 1.4; }
.trust-bar { margin-top: 32px; text-align: center; padding-top: 24px; border-top: 1px solid var(--border); }
.trust-bar p { font-size: 0.72rem; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.trust-logos span { font-size: 0.85rem; font-weight: 600; color: var(--muted); }

/* Signal types */
.signal-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.signal-type { padding: 18px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.signal-type h3 { font-size: 0.92rem; margin-bottom: 6px; }
.signal-type p { font-size: 0.8rem; color: var(--muted); }
.signal-type--funding { border-left: 3px solid var(--green); }
.signal-type--tech { border-left: 3px solid var(--purple); }
.signal-type--hiring { border-left: 3px solid var(--cyan); }

/* 24h feed */
.feed-24h { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.feed-col { padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.feed-col-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; font-size: 0.78rem; color: var(--muted); }
.feed-col-head strong { font-size: 1.2rem; color: var(--cyan); font-family: var(--mono); }
.feed-col-list { list-style: none; }
.feed-col-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.78rem; }
.feed-col-list li:last-child { border-bottom: none; }
.feed-col-list strong { display: block; color: var(--heading); font-size: 0.85rem; }
.feed-col-list span { display: block; color: var(--muted); margin: 2px 0; }
.feed-col-list time { font-family: var(--mono); font-size: 0.68rem; color: var(--muted-light); }
.feed-col-list em { float: right; font-style: normal; color: var(--green); font-family: var(--mono); }
.feed-col-link { display: inline-block; margin-top: 10px; font-size: 0.78rem; font-weight: 600; }

/* Pipeline */
.pipeline-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 28px 0; }
.pipeline-step { padding: 18px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.pipeline-step span { font-size: 0.68rem; font-family: var(--mono); color: var(--cyan); }
.pipeline-step h3 { font-size: 0.92rem; margin: 8px 0 6px; }
.pipeline-step p { font-size: 0.8rem; color: var(--muted); }

/* Company profile */
.company-profile { padding: 24px; margin-bottom: 28px; }
.company-profile-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.profile-meta { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.score-pill--lg { font-size: 1rem; padding: 8px 16px; }
.company-profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.profile-block { padding: 14px; background: rgba(5,8,22,0.4); border: 1px solid var(--border); border-radius: var(--radius); }
.profile-block--wide { grid-column: 1 / -1; }
.profile-block h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-light); margin-bottom: 8px; }
.profile-block p { font-size: 0.85rem; color: var(--muted); }
.profile-list { list-style: none; font-size: 0.85rem; color: var(--muted); }
.profile-list li { padding: 4px 0; }
.profile-list time { font-family: var(--mono); color: var(--muted-light); margin-right: 8px; }
.mini-chart { display: flex; align-items: flex-end; gap: 6px; height: 48px; margin-top: 10px; }
.mini-chart span { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--cyan), var(--purple)); border-radius: 3px 3px 0 0; opacity: 0.75; }
.activity-feed { list-style: none; }
.activity-feed li { display: grid; grid-template-columns: 56px auto 1fr; gap: 10px; align-items: start; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.activity-feed li:last-child { border-bottom: none; }
.activity-feed time { font-family: var(--mono); font-size: 0.72rem; color: var(--muted-light); }
.activity-feed p { color: var(--muted); margin: 0; }

/* Signal detail */
.signal-detail { padding: 24px; margin-top: 24px; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }
.detail-grid h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-light); margin-bottom: 6px; }
.detail-grid p { font-size: 0.88rem; color: var(--muted); }

/* Hiring trends */
.hiring-trends { padding: 22px; margin-bottom: 24px; }
.trend-row { display: grid; grid-template-columns: 120px 1fr 48px; gap: 10px; align-items: center; padding: 8px 0; font-size: 0.82rem; }
.trend-bar { height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; }
.trend-bar i { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--cyan), var(--green)); border-radius: 999px; }
.trend-row em { font-style: normal; font-family: var(--mono); color: var(--cyan); text-align: right; }
.trend-row p { grid-column: 1 / -1; font-size: 0.75rem; color: var(--muted-light); margin: 0; padding-left: 120px; }

/* Tech stack diff */
.stack-diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stack-diff { padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.stack-diff h3 { font-size: 1rem; margin-bottom: 12px; }
.stack-change { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.85rem; }
.stack-removed { padding: 4px 10px; background: rgba(248,113,113,0.12); color: #F87171; border-radius: 6px; text-decoration: line-through; }
.stack-added { padding: 4px 10px; background: rgba(34,197,94,0.12); color: var(--green); border-radius: 6px; }
.stack-arrow { color: var(--muted); }
.stack-diff p { font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }

/* Compare panel */
.compare-panel { padding: 20px; margin-top: 24px; }
.data-table--compact td, .data-table--compact th { padding: 10px 14px; }

/* Workflow templates */
.section-sub { font-size: 1.3rem; margin: 36px 0 8px; }
.template-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.template-card { padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }

/* Pricing compare */
.pricing-compare { margin-top: 32px; }
.data-table--pricing td:first-child { color: var(--muted); }

/* Resources blocks */
.resource-block { margin-bottom: 40px; }
.resource-block > h3 { font-size: 1.2rem; margin-bottom: 16px; }

/* API endpoints */
.api-endpoints { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.api-endpoint { padding: 16px; }
.api-endpoint h3 { font-size: 0.88rem; font-family: var(--mono); color: var(--cyan); margin-bottom: 6px; }
.api-endpoint p { font-size: 0.82rem; color: var(--muted); }

/* Integration setup */
.setup-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.setup-step { padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.setup-step span { display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center; border-radius: 50%; background: var(--cyan-soft); color: var(--cyan); font-size: 0.75rem; font-weight: 700; margin-bottom: 8px; }
.setup-step h3 { font-size: 0.9rem; margin-bottom: 6px; }
.setup-step p { font-size: 0.8rem; color: var(--muted); }

/* Live demo layout */
.live-demo-layout { display: grid; grid-template-columns: 1fr 240px; gap: 16px; align-items: start; }
.live-sidebar { padding: 18px; }
.live-stats, .live-movers { list-style: none; margin-bottom: 16px; }
.live-stats li, .live-movers li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.live-stats strong { color: var(--cyan); font-family: var(--mono); }
.live-movers em { font-style: normal; color: var(--green); font-family: var(--mono); font-size: 0.78rem; }

/* Responsive */
@media (max-width: 1024px) {
 .bento-grid, .signal-types, .feed-24h, .pipeline-flow, .pillar-row { grid-template-columns: repeat(2, 1fr); }
 .company-profile-grid, .template-grid, .setup-steps, .api-endpoints { grid-template-columns: 1fr 1fr; }
 .live-demo-layout { grid-template-columns: 1fr; }
 .opp-map-body { grid-template-columns: 1fr; }
 .opp-map-feed { border-left: none; border-top: 1px solid var(--border); }
 .map-legend-note { margin-left: 0; width: 100%; }
 .score-panel { grid-template-columns: 1fr; }
 .arch-flow { grid-template-columns: 1fr; }
 .arch-arrow { display: none; }
 .feature-grid, .workflow-grid, .proof-grid, .price-grid { grid-template-columns: 1fr; }
 .int-grid { grid-template-columns: repeat(2, 1fr); }
 .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-main { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px; }
 .nav-main.is-open { display: flex; }
 .header-actions .btn-outline:not(.btn-sm) { display: none; }
 .hero-stats-row, .pillar-row, .feed-24h, .signal-types, .stack-diff-grid { grid-template-columns: 1fr; }
 .detail-grid, .company-profile-grid { grid-template-columns: 1fr; }
 .bento-grid { grid-template-columns: 1fr; }
 .auth-shell { grid-template-columns: 1fr; }
 .auth-feed-panel { display: none; }
 .resource-grid { grid-template-columns: 1fr; }
 .report-sections { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; }
}
