/* Command K + misc CSS */
.cmdk-backdrop {
  position: fixed; inset: 0;
  background: rgba(8, 11, 18, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 14vh;
  animation: fade 0.12s ease;
}
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
.cmdk-panel {
  width: 640px; max-width: calc(100vw - 48px);
  background: var(--bg-surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  animation: pop 0.14s ease;
}
@keyframes pop { from { transform: translateY(6px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
.cmdk-input-row {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-1);
  color: var(--text-3);
}
.cmdk-input {
  flex: 1;
  background: transparent; border: none; outline: none;
  font-size: 15px; color: var(--text-1);
}
.cmdk-input::placeholder { color: var(--text-4); }
.cmdk-body { max-height: 420px; overflow-y: auto; padding: 6px; }
.cmdk-group-label {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-4); padding: 10px 12px 6px;
}
.cmdk-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px; border-radius: var(--r-sm);
  color: var(--text-2); cursor: pointer;
}
.cmdk-item:hover { background: var(--bg-muted); color: var(--text-1); }
.cmdk-item-body { flex: 1; min-width: 0; }
.cmdk-item-title { font-size: 13px; font-weight: 500; color: var(--text-1); }
.cmdk-item-sub { font-size: 11.5px; color: var(--text-3); margin-top: 1px; }
.cmdk-foot {
  display: flex; gap: 16px;
  padding: 10px 18px;
  border-top: 1px solid var(--border-1);
  font-size: 11px; color: var(--text-3);
}
.kbd {
  display: inline-block;
  padding: 1px 6px;
  border: 1px solid var(--border-2);
  border-radius: 4px;
  background: var(--bg-muted);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-2);
}

/* Dashboard */
.dash-hero {
  padding: 28px 32px 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.dash-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  pointer-events: none;
}
.dash-hero-kicker {
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.dash-hero-kicker .dot { background: var(--accent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:0.5} 50%{opacity:1} }
.dash-hero-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.12;
  max-width: 780px;
  color: var(--text-1);
}
.dash-hero-title em {
  font-style: normal;
  color: var(--accent);
  background: linear-gradient(120deg, var(--accent), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dash-hero-sub {
  font-size: 15px; color: var(--text-3);
  margin-top: 14px;
  max-width: 640px;
}
.dash-hero-meta {
  display: flex; gap: 18px; margin-top: 22px;
  padding-top: 22px; border-top: 1px solid var(--border-1);
}
.dash-hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.dash-hero-meta-label {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-4);
}
.dash-hero-meta-value {
  font-size: 17px; font-weight: 600; color: var(--text-1);
  font-variant-numeric: tabular-nums;
}

/* Dashboard grid */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dash-grid .full { grid-column: 1 / -1; }

/* Signal / alert row */
.signal-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-1);
  cursor: pointer;
  transition: background 0.08s;
}
.signal-row:last-child { border-bottom: none; }
.signal-row:hover { background: var(--bg-sunk); }
.signal-bar {
  width: 3px; align-self: stretch; border-radius: 2px;
  background: var(--text-4);
  flex-shrink: 0;
}
.signal-bar.warn { background: var(--warn); }
.signal-bar.pos { background: var(--pos); }
.signal-bar.neg { background: var(--neg); }
.signal-body { flex: 1; min-width: 0; }
.signal-head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.signal-name { font-size: 13.5px; font-weight: 600; color: var(--text-1); }
.signal-topic { font-size: 12px; color: var(--text-3); }
.signal-text { font-size: 13px; color: var(--text-2); line-height: 1.55; }
.signal-meta {
  font-size: 11px; color: var(--text-4);
  font-family: var(--font-mono);
  margin-top: 6px;
  display: flex; gap: 10px; align-items: center;
}
.signal-score {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--warn);
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--warn-bg);
  border: 1px solid var(--warn-bd);
}

/* Meeting row */
.mtg-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-1);
  cursor: pointer;
  transition: background 0.08s;
}
.mtg-row:last-child { border-bottom: none; }
.mtg-row:hover { background: var(--bg-sunk); }
.mtg-day {
  width: 44px; text-align: center; flex-shrink: 0;
}
.mtg-day-num {
  font-size: 22px; font-weight: 600; color: var(--text-1);
  letter-spacing: -0.6px; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.mtg-day-mo {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--text-3);
  text-transform: uppercase;
  margin-top: 2px; letter-spacing: 0.06em;
}
.mtg-body { flex: 1; min-width: 0; }
.mtg-title { font-size: 13.5px; font-weight: 500; color: var(--text-1); margin-bottom: 3px; }
.mtg-meta { font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 10px; }
.mtg-brief-ind {
  font-size: 10.5px; color: var(--accent);
  display: flex; align-items: center; gap: 4px;
  padding: 2px 7px; border-radius: 999px;
  background: var(--accent-soft);
}

/* Metric strip */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.metric-cell {
  background: var(--bg-surface);
  padding: 20px 22px;
  position: relative;
}
.metric-cell-label {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-4);
  margin-bottom: 10px;
}
.metric-cell-value {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.8px; color: var(--text-1);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.metric-cell-delta {
  margin-top: 8px;
  font-size: 11.5px; color: var(--text-3);
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-mono);
}
.metric-cell-delta.up { color: var(--pos); }
.metric-cell-delta.down { color: var(--neg); }

/* Chief of Staff */
.cos-shell {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: calc(100vh - var(--topbar-h) - 80px);
}
.cos-greeting {
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.6px;
  color: var(--text-1);
  text-align: center;
  margin-top: 40px;
}
.cos-greeting .time { color: var(--text-3); font-weight: 400; }

.cos-suggest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.cos-suggest-card {
  padding: 14px 16px;
  border: 1px solid var(--border-1);
  border-radius: var(--r-md);
  background: var(--bg-surface);
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
}
.cos-suggest-card:hover { border-color: var(--border-3); background: var(--bg-sunk); }
.cos-suggest-title { font-size: 13px; font-weight: 500; color: var(--text-1); margin-bottom: 3px; }
.cos-suggest-sub { font-size: 11.5px; color: var(--text-3); }

.cos-msg {
  display: flex;
  gap: 14px;
  padding: 4px 0;
}
.cos-msg-av {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 7px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.cos-msg-av.user { background: var(--bg-muted); color: var(--text-2); }
.cos-msg-av.ai {
  background: linear-gradient(135deg, var(--accent), var(--blue-700));
  color: white;
}
.cos-msg-body { flex: 1; min-width: 0; padding-top: 3px; }
.cos-msg-name { font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; }
.cos-msg-content { font-size: 14.5px; color: var(--text-1); line-height: 1.65; }
.cos-msg-content p + p { margin-top: 10px; }
.cos-msg-content strong { color: var(--text-1); font-weight: 600; }
.cos-msg-content .cite {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 1px 6px 1px 7px;
  margin: 0 2px;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 500;
  cursor: pointer;
  vertical-align: baseline;
}
.cos-msg-content .cite:hover { background: var(--accent-ring); }

.cos-evidence {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.cos-evidence-card {
  border: 1px solid var(--border-1);
  border-radius: var(--r-md);
  padding: 12px 14px;
  background: var(--bg-sunk);
  display: flex; gap: 12px;
  font-size: 12.5px;
}
.cos-evidence-num {
  width: 22px; height: 22px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 6px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-mono);
}
.cos-evidence-body { flex: 1; }
.cos-evidence-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
  font-size: 11.5px;
  color: var(--text-3);
}
.cos-evidence-head .src {
  font-family: var(--font-mono); font-weight: 500; color: var(--text-2);
}
.cos-evidence-quote {
  color: var(--text-1);
  font-size: 13px;
  line-height: 1.55;
}
.cos-evidence-quote::before { content: '"'; color: var(--text-4); }
.cos-evidence-quote::after { content: '"'; color: var(--text-4); }

.cos-actions {
  display: flex; gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cos-action {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-2);
  background: var(--bg-surface);
  cursor: pointer;
  transition: border-color 0.12s, color 0.12s;
}
.cos-action:hover { border-color: var(--accent); color: var(--accent); }

.cos-typing {
  display: inline-flex; gap: 3px;
  padding: 4px 0;
}
.cos-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-3);
  animation: typing 1.3s infinite ease-in-out;
}
.cos-typing span:nth-child(2) { animation-delay: 0.15s; }
.cos-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.cos-composer {
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  background: var(--bg-surface);
  padding: 4px 4px 4px 16px;
  display: flex; align-items: flex-end;
  gap: 4px;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.12s, box-shadow 0.12s;
  position: sticky;
  bottom: 0;
}
.cos-composer:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-ring);
}
.cos-composer textarea {
  flex: 1;
  background: transparent; border: none; outline: none; resize: none;
  padding: 14px 0;
  font-size: 14.5px; color: var(--text-1);
  min-height: 24px; max-height: 180px;
  line-height: 1.5;
  font-family: inherit;
}
.cos-composer textarea::placeholder { color: var(--text-4); }
.cos-composer-btns { display: flex; gap: 2px; align-self: flex-end; padding: 6px; }
.cos-composer-send {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: var(--accent); color: white;
  display: grid; place-items: center;
}
.cos-composer-send:hover { background: var(--accent-hover); }
.cos-composer-send:disabled { background: var(--border-3); cursor: not-allowed; }

/* Stakeholder detail */
.sh-hero {
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
  margin-bottom: 24px;
  display: flex; gap: 28px; align-items: flex-start;
}
.sh-hero-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 28px; font-weight: 600;
  flex-shrink: 0;
}
.sh-hero-body { flex: 1; min-width: 0; }
.sh-hero-kicker {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-4); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.sh-hero-name {
  font-size: 32px; font-weight: 600;
  letter-spacing: -0.8px;
  color: var(--text-1);
  line-height: 1.1;
}
.sh-hero-role {
  font-size: 15px; color: var(--text-2);
  margin-top: 8px;
}
.sh-hero-tags {
  display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap;
}
.sh-hero-actions { display: flex; gap: 8px; }
.sh-hero-stats {
  display: flex; gap: 28px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-1);
}
.sh-hero-stat { }
.sh-hero-stat-label { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-4); margin-bottom: 4px; }
.sh-hero-stat-value { font-size: 17px; font-weight: 600; color: var(--text-1); font-variant-numeric: tabular-nums; }

/* Tabs */
.tabs {
  display: flex; gap: 2px;
  border-bottom: 1px solid var(--border-1);
  margin-bottom: 28px;
  padding: 0 4px;
}
.tab-btn {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.1s, border-color 0.1s;
}
.tab-btn:hover { color: var(--text-1); }
.tab-btn.active { color: var(--text-1); border-bottom-color: var(--accent); }

/* Position card */
.pos-card {
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  background: var(--bg-surface);
  padding: 18px 20px;
}
.pos-card-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.pos-card-topic { font-size: 13px; font-weight: 600; color: var(--text-1); flex: 1; }
.pos-card-summary {
  font-size: 13.5px; color: var(--text-2); line-height: 1.6;
  margin-bottom: 14px;
}
.pos-card-quote {
  border-left: 2px solid var(--border-3);
  padding: 4px 0 4px 14px;
  font-size: 13px; color: var(--text-2);
  font-style: italic;
  margin-bottom: 10px;
}
.pos-card-quote::before, .pos-card-quote::after { content: '"'; color: var(--text-4); font-style: normal; }
.pos-card-meta {
  font-size: 11px; color: var(--text-4);
  font-family: var(--font-mono);
  display: flex; gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-1);
}

/* Sentiment dial */
.sent-dial {
  width: 56px; height: 32px;
  position: relative;
}
.sent-dial svg { overflow: visible; }

.pos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Pull quote (editorial moment) */
.pullquote {
  padding: 36px 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  margin: 24px 0;
  position: relative;
}
.pullquote-mark {
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  position: absolute;
  top: 16px; left: 24px;
  opacity: 0.4;
}
.pullquote-text {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-1);
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-left: 40px;
  max-width: 760px;
}
.pullquote-cite {
  margin-top: 14px;
  margin-left: 40px;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

/* Landing */
.landing {
  background: var(--bg-surface);
  color: var(--text-1);
  font-family: var(--font-sans);
  min-height: 100vh;
}
.landing-nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-1);
}
[data-theme="dark"] .landing-nav { background: rgba(16,19,27,0.86); }
.landing-nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 32px;
}
.landing-nav-left { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; letter-spacing: -0.2px; }
.landing-nav-links { display: flex; align-items: center; gap: 26px; }
.landing-nav-links a { font-size: 13px; color: var(--text-3); }
.landing-nav-links a:hover { color: var(--text-1); }

.landing-hero {
  padding: 120px 32px 100px;
  max-width: 1120px; margin: 0 auto;
}
.landing-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px 4px 6px;
  background: var(--bg-sunk);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  font-size: 12px; color: var(--text-2);
  margin-bottom: 24px;
}
.landing-eyebrow .dot { background: var(--pos); }
.landing-eyebrow .tag {
  padding: 1px 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.landing-h1 {
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.02;
  color: var(--text-1);
  max-width: 880px;
}
.landing-h1 em {
  font-style: normal;
  color: var(--accent);
}
.landing-lede {
  font-size: 19px; color: var(--text-2);
  line-height: 1.55;
  max-width: 640px;
  margin-top: 24px;
}
.landing-cta-row {
  display: flex; gap: 12px; margin-top: 36px; align-items: center;
}

.landing-section { padding: 100px 32px; max-width: 1120px; margin: 0 auto; }
.landing-section-kicker { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 16px; }
.landing-section-h { font-size: 40px; font-weight: 600; letter-spacing: -1.2px; line-height: 1.1; max-width: 720px; color: var(--text-1); }
.landing-section-lede { font-size: 17px; color: var(--text-2); max-width: 600px; margin-top: 16px; line-height: 1.6; }

.landing-product-frame {
  margin-top: 56px;
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  background: var(--bg-sunk);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.landing-product-frame .dash-hero,
.landing-product-frame .metric-strip,
.landing-product-frame .card { margin: 0; border-radius: 0; border-left: none; border-right: none; box-shadow: none; }
.landing-product-frame .dash-hero { border-radius: 0; }

.landing-cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.landing-cap-card {
  padding: 28px;
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  background: var(--bg-surface);
  transition: border-color 0.15s;
}
.landing-cap-card:hover { border-color: var(--border-3); }
.landing-cap-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.landing-cap-title { font-size: 18px; font-weight: 600; letter-spacing: -0.3px; color: var(--text-1); margin-bottom: 8px; }
.landing-cap-body { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.landing-compare {
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  margin-top: 56px;
  overflow: hidden;
}
.landing-compare table { width: 100%; border-collapse: collapse; }
.landing-compare th, .landing-compare td {
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--border-1);
}
.landing-compare th {
  background: var(--bg-sunk);
  color: var(--text-3);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.landing-compare td.feat { color: var(--text-1); font-weight: 500; }
.landing-compare td.us { color: var(--accent); font-weight: 600; }
.landing-compare tr:last-child td { border-bottom: none; }

.landing-cta-big {
  margin: 100px 32px;
  max-width: 1120px;
  margin-left: auto; margin-right: auto;
  padding: 64px;
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-sunk));
  position: relative;
  overflow: hidden;
  text-align: center;
}
.landing-cta-big::before {
  content: '';
  position: absolute;
  inset: -100px;
  background: radial-gradient(ellipse at top, var(--accent-soft), transparent 60%);
  pointer-events: none;
}
.landing-cta-big > * { position: relative; }
.landing-cta-big h2 { font-size: 38px; font-weight: 600; letter-spacing: -1px; line-height: 1.1; color: var(--text-1); max-width: 560px; margin: 0 auto; }
.landing-cta-big p { font-size: 16px; color: var(--text-2); margin-top: 16px; max-width: 520px; margin-left: auto; margin-right: auto; }

.landing-foot {
  border-top: 1px solid var(--border-1);
  padding: 40px 32px;
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: var(--text-3);
}

/* Direction: editorial */
[data-direction="editorial"] .dash-hero-title,
[data-direction="editorial"] .landing-h1,
[data-direction="editorial"] .landing-section-h,
[data-direction="editorial"] .landing-cta-big h2,
[data-direction="editorial"] .page-title,
[data-direction="editorial"] .sh-hero-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -1.2px;
}
[data-direction="editorial"] .dash-hero-title em,
[data-direction="editorial"] .landing-h1 em {
  font-style: italic;
  background: none;
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
}

/* Direction: terminal */
[data-direction="terminal"] .dash-hero,
[data-direction="terminal"] .sh-hero,
[data-direction="terminal"] .card,
[data-direction="terminal"] .metric-strip {
  border-radius: 4px;
}
[data-direction="terminal"] .page { padding: 24px 28px; }
[data-direction="terminal"] .page-title { font-size: 22px; }
[data-direction="terminal"] .dash-hero-title { font-size: 24px; }

/* Direction: soft */
[data-direction="soft"] .card,
[data-direction="soft"] .dash-hero,
[data-direction="soft"] .sh-hero,
[data-direction="soft"] .pullquote { border-radius: 18px; }
[data-direction="soft"] .landing-hero { padding-top: 140px; }

/* Responsive: keep simple */
@media (max-width: 1000px) {
  .dash-grid, .pos-grid, .cos-suggest, .landing-cap-grid { grid-template-columns: 1fr; }
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
  .page { padding: 24px; }
}
