/*
  CoreOps Dashboard Mockup 005
  -------------------------------------------------------
  Eigenständige Demo-Welt für CoreEngineStudio.
  Kein Patch für die Hauptseite. Nur Screenshot-/Showroom-Demo.
*/
:root {
  --bg: #050607;
  --panel: rgba(18, 22, 24, 0.72);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f6f7f8;
  --muted: #8f9aa3;
  --muted-2: #68727b;
  --green: #48f3a6;
  --green-soft: rgba(72, 243, 166, 0.12);
  --orange: #ff9a4a;
  --orange-soft: rgba(255, 154, 74, 0.13);
  --blue: #58c7ff;
  --blue-soft: rgba(88, 199, 255, 0.12);
  --red: #ff5f6d;
  --purple: #b986ff;
  --radius: 22px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
button, input { font: inherit; }
button { cursor: pointer; }

.bg-orbs { position: fixed; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 999px; filter: blur(60px); opacity: .68; animation: floatOrb 12s ease-in-out infinite; }
.orb-a { width: 420px; height: 420px; left: -140px; top: -120px; background: rgba(72, 243, 166, .18); }
.orb-b { width: 470px; height: 470px; right: -170px; top: 90px; background: rgba(88, 199, 255, .12); animation-delay: -4s; }
.orb-c { width: 520px; height: 520px; left: 32%; bottom: -240px; background: rgba(255, 154, 74, .12); animation-delay: -7s; }
.grid-layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at top, #000, transparent 74%);
}
@keyframes floatOrb {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(24px, -18px, 0) scale(1.06); }
}

.app-shell { position: relative; min-height: 100vh; display: flex; }
.sidebar {
  width: 292px;
  flex: 0 0 292px;
  min-height: 100vh;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, .34);
  backdrop-filter: blur(22px);
  position: sticky;
  top: 0;
}
.brand-card, .path-card, .side-note, .panel, .metric-card, .hero-login, .mode-strip {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.brand-card {
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: linear-gradient(145deg, rgba(72,243,166,.12), rgba(16,18,20,.76), rgba(255,154,74,.08));
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  border: 1px solid rgba(72, 243, 166, .28);
  background: rgba(0, 0, 0, .38);
  color: var(--green);
  font-weight: 900;
  letter-spacing: -.05em;
  box-shadow: 0 0 30px rgba(72, 243, 166, .16);
}
.brand-mark.small { width: 38px; height: 38px; border-radius: 13px; font-size: 13px; }
.eyebrow {
  display: block;
  margin: 0 0 4px;
  color: rgba(72, 243, 166, .72);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 10px;
  font-weight: 800;
}
.brand-card h1 { margin: 0; font-size: 22px; line-height: 1; }
.brand-card span, .mobile-brand small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.path-card { margin-top: 14px; border-radius: 18px; padding: 12px; background: rgba(255,255,255,.035); }
.path-card span { display: block; color: var(--muted-2); font-size: 11px; }
.path-card strong { display: block; margin-top: 4px; color: #dbe7df; font: 700 12px ui-monospace, SFMono-Regular, Menlo, monospace; }
.nav { margin-top: 18px; display: grid; gap: 8px; }
.nav-item {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 10px;
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: .22s ease;
}
.nav-item > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.nav-item b { display: block; color: inherit; font-size: 13px; }
.nav-item small { display: block; color: var(--muted-2); font-size: 11px; margin-top: 2px; }
.nav-item:hover { border-color: var(--line); background: rgba(255,255,255,.045); color: #fff; transform: translateX(2px); }
.nav-item.active { border-color: rgba(72,243,166,.25); background: rgba(72,243,166,.105); color: #fff; box-shadow: 0 0 26px rgba(72,243,166,.08); }
.nav-item.active > span { border-color: rgba(72,243,166,.25); color: var(--green); background: rgba(72,243,166,.1); }
.side-note { margin-top: 18px; border-radius: 18px; padding: 14px; background: rgba(255,255,255,.035); }
.side-note b { font-size: 13px; }
.side-note p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.side-action { width: 100%; margin-top: 12px; }

.workspace { min-width: 0; flex: 1; padding-bottom: 28px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, .72);
  backdrop-filter: blur(22px);
}
.mobile-brand { display: none; align-items: center; gap: 10px; }
.mobile-brand b { display: block; }
.title-block span { color: var(--muted-2); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 800; }
.title-block h2 { margin: 3px 0 0; font-size: 22px; }
.top-actions { display: flex; align-items: center; gap: 10px; }
.search {
  min-width: 256px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(0,0,0,.26);
  color: var(--muted-2);
  padding: 10px 12px;
  font-size: 13px;
}
.search.compact { min-width: 190px; }
.ghost-btn, .primary-btn {
  border: 0;
  border-radius: 14px;
  padding: 10px 13px;
  color: #d9e5df;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  transition: .2s ease;
}
.ghost-btn:hover { background: rgba(255,255,255,.09); border-color: var(--line-strong); }
.primary-btn {
  color: #04120d;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), #80ffd0);
  border-color: rgba(72,243,166,.4);
  box-shadow: 0 0 30px rgba(72,243,166,.14);
}
.primary-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.ghost-btn.small { padding: 8px 10px; font-size: 12px; }

.hero-login {
  margin: 18px 22px 14px;
  border-radius: 28px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  background: linear-gradient(135deg, rgba(72,243,166,.105), rgba(18,22,24,.76), rgba(255,154,74,.075));
  overflow: hidden;
  transition: .35s ease;
}
.hero-login.is-hidden { max-height: 0; opacity: 0; margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; border-width: 0; overflow: hidden; }
.hero-content { padding: 16px; display: flex; flex-direction: column; justify-content: center; }
.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.badge.green { color: #b7ffdf; border-color: rgba(72,243,166,.28); background: rgba(72,243,166,.11); }
.badge.orange { color: #ffd0a9; border-color: rgba(255,154,74,.3); background: rgba(255,154,74,.12); }
.badge.blue { color: #b8eaff; border-color: rgba(88,199,255,.3); background: rgba(88,199,255,.12); }
.hero-content h2 { margin: 18px 0 0; max-width: 780px; font-size: clamp(28px, 4vw, 56px); line-height: .96; letter-spacing: -.055em; }
.hero-content p { max-width: 680px; margin: 16px 0 0; color: var(--muted); line-height: 1.65; font-size: 15px; }
.hero-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.login-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 18px;
  background: rgba(0,0,0,.32);
  align-self: stretch;
}
.login-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.login-head b, .login-head span { display: block; }
.login-head span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.login-card label { display: block; color: var(--muted-2); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; margin: 13px 0 7px; }
.input-fake { border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.04); padding: 12px; color: #d9e5df; font-size: 13px; }
.login-status { margin-top: 16px; display: flex; align-items: center; gap: 8px; color: var(--green); font-size: 12px; }
.login-status span { width: 8px; height: 8px; border-radius: 99px; background: var(--green); box-shadow: 0 0 16px rgba(72,243,166,.9); }

.mode-strip {
  margin: 0 22px 14px;
  border-radius: 20px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255,255,255,.035);
}
.mode-strip b { display: block; }
.mode-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.mode-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  border-radius: 999px;
  padding: 9px 12px;
  transition: .2s ease;
}
.mode-btn.active { color: #06140f; background: var(--green); border-color: rgba(72,243,166,.5); font-weight: 900; }

.content-page { display: none; padding: 0 22px; animation: pageIn .22s ease both; }
.content-page.active { display: block; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); filter: blur(8px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.metrics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 14px; }
.metric-card { border-radius: 21px; padding: 16px; background: rgba(18,22,24,.68); min-height: 142px; }
.metric-card span { color: var(--muted); font-size: 13px; }
.metric-card strong { display: block; margin-top: 14px; font-size: 34px; letter-spacing: -.04em; }
.metric-card small { color: var(--muted-2); }
.meter { margin-top: 18px; height: 7px; background: rgba(255,255,255,.06); border-radius: 99px; overflow: hidden; }
.meter i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), var(--blue), var(--orange)); }
.panel { border-radius: var(--radius); padding: 16px; background: var(--panel); }
.panel-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.panel-head.standalone { margin: 0 0 14px; }
.panel-head h3 { margin: 0; font-size: 18px; }
.main-grid { display: grid; grid-template-columns: 1.28fr .72fr; gap: 14px; }
.main-grid.lower { margin-top: 14px; grid-template-columns: 1fr 360px; align-items: start; }
.chart-bars { height: 216px; display: flex; align-items: flex-end; gap: 9px; padding: 14px; border-radius: 18px; border: 1px solid rgba(255,255,255,.055); background: rgba(0,0,0,.25); }
.chart-bars i { flex: 1; min-width: 10px; border-radius: 10px 10px 3px 3px; background: linear-gradient(180deg, rgba(128,255,208,.95), rgba(88,199,255,.58), rgba(72,243,166,.18)); box-shadow: 0 0 26px rgba(72,243,166,.14); animation: growBars .55s ease both; }
@keyframes growBars { from { height: 10%; opacity: .2; } }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.mini-stats span { border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.035); border-radius: 15px; padding: 12px; color: var(--muted); font-size: 12px; }
.mini-stats b { color: #fff; display: block; font-size: 16px; margin-bottom: 2px; }
.timeline { display: grid; gap: 10px; }
.timeline div { border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 11px; background: rgba(255,255,255,.035); display: grid; grid-template-columns: 44px 1fr; column-gap: 8px; }
.timeline b { color: var(--green); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; grid-row: span 2; }
.timeline span { color: #fff; font-size: 13px; font-weight: 700; }
.timeline small { color: var(--muted-2); margin-top: 2px; }
.table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,.07); }
table { width: 100%; border-collapse: collapse; min-width: 710px; font-size: 13px; }
th { text-align: left; color: var(--muted-2); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; background: rgba(255,255,255,.035); padding: 12px; }
td { padding: 12px; border-top: 1px solid rgba(255,255,255,.055); color: #d6ded9; }
td:first-child { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--green); font-size: 12px; }
.status-pill { display: inline-flex; border-radius: 999px; padding: 5px 8px; border: 1px solid var(--line); font-size: 11px; font-weight: 800; }
.status-pill.green { color: #b8ffdf; border-color: rgba(72,243,166,.25); background: var(--green-soft); }
.status-pill.orange { color: #ffd0a9; border-color: rgba(255,154,74,.28); background: var(--orange-soft); }
.status-pill.blue { color: #baeaff; border-color: rgba(88,199,255,.28); background: var(--blue-soft); }
.status-pill.gray { color: #c6ccd0; background: rgba(255,255,255,.05); }
.muted { color: var(--muted); line-height: 1.58; font-size: 13px; }
.detail-list { display: grid; gap: 9px; margin-top: 14px; }
.detail-list div { display: flex; justify-content: space-between; gap: 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 10px; background: rgba(255,255,255,.035); }
.detail-list span { color: var(--muted-2); font-size: 12px; }
.detail-list b { font-size: 12px; text-align: right; }
.ai-card { margin-top: 14px; border: 1px solid rgba(72,243,166,.14); border-radius: 17px; padding: 13px; background: rgba(72,243,166,.06); }
.ai-card b { color: #b8ffdf; font-size: 13px; }
.ai-card p { margin: 6px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.page-grid.two-one { display: grid; grid-template-columns: 1fr 360px; gap: 14px; align-items: start; }
.full-height { min-height: 520px; }
.client-list, .automation-list, .role-grid, .health-list { display: grid; gap: 10px; }
.client-row, .automation-row, .role-card, .health-list div { border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 13px; background: rgba(255,255,255,.035); }
.client-row { display: grid; grid-template-columns: 46px 1fr auto; gap: 12px; align-items: center; }
.client-logo, .avatar { width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; background: rgba(72,243,166,.1); border: 1px solid rgba(72,243,166,.22); color: var(--green); font-weight: 900; }
.client-row h4 { margin: 0; }
.client-row p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.profile-card { text-align: center; padding: 16px 8px 6px; }
.profile-card .avatar { margin: 0 auto; width: 62px; height: 62px; border-radius: 22px; font-size: 18px; }
.profile-card h3 { margin: 12px 0 0; }
.profile-card p { color: var(--muted); font-size: 13px; line-height: 1.5; }
.kanban { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.kanban-col { border: 1px solid var(--line); background: rgba(18,22,24,.68); border-radius: var(--radius); padding: 12px; }
.kanban-col h3 { margin: 0 0 10px; font-size: 14px; text-transform: capitalize; }
.ticket-card { border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 12px; background: rgba(0,0,0,.25); margin-top: 10px; }
.ticket-card small { color: var(--green); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.ticket-card b { display: block; margin-top: 9px; line-height: 1.35; }
.ticket-card span { display: block; margin-top: 10px; color: var(--muted); font-size: 12px; }
.week-board { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 10px; }
.day-col { min-height: 284px; border: 1px solid rgba(255,255,255,.07); border-radius: 17px; padding: 10px; background: rgba(0,0,0,.24); }
.day-col h4 { margin: 0 0 10px; color: var(--muted-2); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.task { border: 1px solid rgba(88,199,255,.16); background: rgba(88,199,255,.07); border-radius: 14px; padding: 10px; margin-top: 8px; }
.task small { color: #b8eaff; }
.task b { display: block; margin-top: 4px; font-size: 13px; }
.automation-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.automation-row h4, .role-card h4 { margin: 0; }
.automation-row p, .role-card p, .health-list span { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.mail-card { border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 18px; background: rgba(0,0,0,.3); }
.mail-card small { color: var(--muted-2); }
.mail-card p { color: var(--muted); line-height: 1.6; }
.mail-card b { color: var(--green); }
.mail-card span { display: block; margin-top: 14px; border: 1px solid rgba(72,243,166,.14); background: rgba(72,243,166,.06); border-radius: 13px; padding: 10px; color: var(--muted); font-size: 12px; }
.role-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.role-card .role-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.health-list div b { display: block; }
.health-list div span { display: block; }

.presentation-mode .sidebar { display: none; }
.presentation-mode .workspace { width: 100%; }
.presentation-mode .topbar { position: static; }
.presentation-mode .hero-login { margin-top: 22px; }

@media (max-width: 1180px) {
  .metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .main-grid, .main-grid.lower, .page-grid.two-one { grid-template-columns: 1fr; }
  .kanban { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .week-board { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .top-actions .search { display: none; }
}
@media (max-width: 900px) {
  .sidebar { display: none; }
  .mobile-brand { display: flex; }
  .title-block { display: none; }
  .topbar { padding: 12px 14px; }
  .hero-login { grid-template-columns: 1fr; margin: 14px; }
  .mode-strip, .content-page { margin-left: 14px; margin-right: 14px; padding-left: 0; padding-right: 0; }
  .mode-strip { align-items: flex-start; flex-direction: column; }
  .metrics-grid, .kanban, .role-grid { grid-template-columns: 1fr; }
  .week-board { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .top-actions .ghost-btn { display: none; }
  .hero-content h2 { font-size: 31px; }
  .mini-stats { grid-template-columns: 1fr; }
  .week-board { grid-template-columns: 1fr; }
  .client-row { grid-template-columns: 42px 1fr; }
  .client-row .status-pill { grid-column: 2; width: fit-content; }
}


/* V005 · Möglichkeiten / System-Potenzial Seite */
.possibility-hero {
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(72,243,166,.14), transparent 34%),
    linear-gradient(135deg, rgba(72,243,166,.08), rgba(18,22,24,.72), rgba(88,199,255,.06));
}
.possibility-hero h3 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1;
  letter-spacing: -.045em;
}
.possibility-hero p {
  max-width: 790px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.possibility-orbit {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: rgba(0,0,0,.25);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.possibility-orbit::before,
.possibility-orbit::after {
  content: "";
  position: absolute;
  width: 185px;
  height: 185px;
  border: 1px solid rgba(72,243,166,.16);
  border-radius: 999px;
}
.possibility-orbit::after { width: 125px; height: 125px; border-color: rgba(88,199,255,.18); }
.possibility-orbit b {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  border: 1px solid rgba(72,243,166,.28);
  background: rgba(72,243,166,.1);
  color: var(--green);
  box-shadow: 0 0 42px rgba(72,243,166,.16);
}
.possibility-orbit span {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #dbe7df;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
}
.possibility-orbit span:nth-child(1) { top: 24px; left: 34px; }
.possibility-orbit span:nth-child(2) { top: 34px; right: 30px; }
.possibility-orbit span:nth-child(3) { bottom: 30px; left: 28px; }
.possibility-orbit span:nth-child(4) { right: 35px; bottom: 28px; }
.possibility-metrics { margin-bottom: 14px; }
.possibility-layout { margin-bottom: 14px; }
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.capability-card {
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  padding: 14px;
  min-height: 144px;
}
.capability-card b { display: block; color: #fff; font-size: 14px; }
.capability-card p { margin: 8px 0 12px; color: var(--muted); font-size: 12px; line-height: 1.52; }
.capability-card span {
  display: inline-flex;
  border: 1px solid rgba(72,243,166,.16);
  color: #b8ffdf;
  background: rgba(72,243,166,.06);
  border-radius: 999px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 800;
}
.customer-view { align-self: stretch; }
.portal-preview-card {
  border: 1px solid rgba(88,199,255,.16);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(88,199,255,.09), rgba(0,0,0,.28));
  padding: 16px;
}
.portal-preview-card small { color: #b8eaff; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.portal-preview-card h3 { margin: 10px 0 0; font-size: 22px; line-height: 1.08; }
.portal-preview-card p { color: var(--muted); font-size: 13px; line-height: 1.55; }
.portal-steps { display: grid; gap: 8px; margin-top: 14px; }
.portal-steps span {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  background: rgba(0,0,0,.22);
  color: var(--muted);
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 700;
}
.portal-steps span.done { color: #b8ffdf; border-color: rgba(72,243,166,.18); background: rgba(72,243,166,.06); }
.portal-steps span.active { color: #b8eaff; border-color: rgba(88,199,255,.18); background: rgba(88,199,255,.07); }
.compact-list { margin-top: 12px; }
.integration-table td:nth-child(2),
.integration-table td:nth-child(3) { color: var(--muted); }
.logic-flow { display: grid; gap: 10px; }
.logic-flow div {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  padding: 11px;
}
.logic-flow b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(72,243,166,.18);
  background: rgba(72,243,166,.08);
  color: var(--green);
  font: 900 12px ui-monospace, SFMono-Regular, Menlo, monospace;
}
.logic-flow span { color: #dbe7df; font-size: 13px; line-height: 1.35; }

@media (max-width: 1180px) {
  .possibility-hero { grid-template-columns: 1fr; }
  .possibility-orbit { min-height: 190px; }
}
@media (max-width: 700px) {
  .capability-grid { grid-template-columns: 1fr; }
}
