:root {
  color-scheme: dark;
  --bg: #050711;
  --bg-elevated: #0a0e1b;
  --panel: rgba(13, 18, 34, .82);
  --panel-solid: #0d1222;
  --line: rgba(148, 163, 184, .16);
  --line-strong: rgba(103, 232, 249, .34);
  --text: #f4f7fb;
  --muted: #96a1b6;
  --cyan: #35d6ed;
  --purple: #8b5cf6;
  --pink: #e879f9;
  --green: #4ade80;
  --amber: #fbbf24;
  --red: #fb7185;
  --gradient: linear-gradient(125deg, #35d6ed 0%, #8b5cf6 58%, #e879f9 100%);
  --shadow: 0 28px 80px rgba(0, 0, 0, .38);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }

.portal-body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 2%, rgba(53, 214, 237, .11), transparent 31rem),
    radial-gradient(circle at 88% 12%, rgba(139, 92, 246, .13), transparent 33rem),
    linear-gradient(180deg, #050711 0%, #070a14 60%, #050711 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.portal-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 64px);
  background: rgba(5, 7, 17, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--text);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 0 14px rgba(53, 214, 237, .28)); }
.brand b { font-weight: 800; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 5px; }
.site-nav a, .side-nav a {
  color: var(--muted);
  text-decoration: none;
  border-radius: 10px;
  transition: .18s ease;
}
.site-nav a { padding: 9px 12px; font-size: .86rem; }
.site-nav a:hover, .side-nav a:hover, .side-nav a.active { color: var(--text); background: rgba(255,255,255,.06); }
.header-actions, .button-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 17px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: .88rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { color: #050711; background: linear-gradient(120deg, #67e8f9, #a78bfa); box-shadow: 0 12px 30px rgba(53, 214, 237, .16); }
.button.primary:hover { box-shadow: 0 16px 38px rgba(53, 214, 237, .24); }
.button.secondary { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.035); }
.button.secondary:hover { border-color: var(--line-strong); background: rgba(53,214,237,.06); }
.button.danger { color: #fecdd3; border-color: rgba(251,113,133,.3); background: rgba(251,113,133,.08); }
.button.disabled { pointer-events: none; color: #778196; opacity: .68; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8be8f6;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

.hero {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  padding: clamp(76px, 10vw, 135px) 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}
.hero-copy h1, .section-heading h2, .dashboard-hero h1, .access-panel h1 {
  margin: 18px 0;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: 1.04;
}
.hero-copy h1 { max-width: 770px; font-size: clamp(3rem, 6vw, 5.6rem); }
.hero-copy h1 em { font-style: normal; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy > p { max-width: 680px; color: #aab4c8; font-size: clamp(1rem, 1.6vw, 1.18rem); }
.hero-copy .button-row { margin-top: 32px; }
.proof-strip { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; color: var(--muted); font-size: .78rem; }
.proof-strip span { display: flex; align-items: center; gap: 7px; }
.proof-strip i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(74,222,128,.65); }

.command-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.command-orbit { position: absolute; width: 420px; aspect-ratio: 1; border: 1px solid rgba(103,232,249,.17); border-radius: 50%; animation: orbit 22s linear infinite; }
.command-orbit::after { content: ""; position: absolute; left: 50%; top: -5px; width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
@keyframes orbit { to { transform: rotate(360deg); } }
.command-core { position: relative; z-index: 2; width: min(100%, 410px); padding: 24px; border: 1px solid var(--line-strong); border-radius: 24px; background: rgba(9,13,26,.9); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.04); backdrop-filter: blur(18px); }
.command-top { display:flex; align-items:center; justify-content:space-between; gap:12px; padding-bottom:18px; border-bottom:1px solid var(--line); }
.command-top strong { font-size:.88rem; }
.live-chip, .status-chip, .plan-chip { display:inline-flex; align-items:center; gap:7px; padding:5px 9px; border:1px solid rgba(74,222,128,.25); border-radius:999px; background:rgba(74,222,128,.07); color:#86efac; font-size:.68rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; }
.live-chip::before { content:""; width:6px; height:6px; border-radius:50%; background:var(--green); }
.flow-list { display:grid; gap:11px; margin-top:18px; }
.flow-row { display:grid; grid-template-columns:37px 1fr auto; align-items:center; gap:12px; padding:12px; border:1px solid var(--line); border-radius:13px; background:rgba(255,255,255,.025); }
.flow-row .node { width:37px; height:37px; display:grid; place-items:center; border-radius:10px; background:linear-gradient(135deg,rgba(53,214,237,.18),rgba(139,92,246,.2)); color:#bff5fb; font-size:.72rem; font-weight:850; }
.flow-row strong { display:block; font-size:.82rem; }
.flow-row small { display:block; color:var(--muted); font-size:.67rem; }
.flow-row > small { color:#86efac; }

.section { position:relative; width:min(1240px, calc(100% - 40px)); margin:0 auto; padding:96px 0; }
.section-heading { max-width:760px; margin-bottom:44px; }
.section-heading.center { margin-inline:auto; text-align:center; }
.section-heading.center .eyebrow { justify-content:center; }
.section-heading h2 { font-size:clamp(2.2rem,4vw,3.7rem); }
.section-heading p { color:var(--muted); font-size:1.03rem; }
.feature-grid, .plan-grid, .workspace-grid, .metric-grid, .admin-grid { display:grid; gap:16px; }
.feature-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.feature-card, .plan-card, .workspace-card, .metric-card, .glass-panel, .admin-card { border:1px solid var(--line); background:var(--panel); box-shadow:0 16px 50px rgba(0,0,0,.16); backdrop-filter:blur(16px); }
.feature-card { min-height:255px; padding:25px; border-radius:18px; transition:.2s ease; }
.feature-card:hover { transform:translateY(-3px); border-color:var(--line-strong); }
.feature-icon { width:45px; height:45px; display:grid; place-items:center; margin-bottom:28px; border-radius:13px; color:#c8f7fc; background:linear-gradient(135deg,rgba(53,214,237,.15),rgba(139,92,246,.18)); font-weight:850; }
.feature-card h3, .workspace-card h3, .admin-card h2 { margin:0 0 10px; font-size:1.02rem; }
.feature-card p, .workspace-card p, .plan-card p, .admin-card p { margin:0; color:var(--muted); font-size:.87rem; }
.feature-card ul { margin:18px 0 0; padding:0; display:grid; gap:7px; list-style:none; color:#cbd5e1; font-size:.78rem; }
.feature-card li::before { content:"—"; color:var(--cyan); margin-right:8px; }

.brand-band { border-block:1px solid var(--line); background:linear-gradient(90deg,rgba(53,214,237,.04),rgba(139,92,246,.07),rgba(232,121,249,.04)); }
.brand-band-inner { width:min(1240px,calc(100% - 40px)); margin:auto; padding:34px 0; display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.brand-stat strong { display:block; font-size:1.45rem; color:var(--text); }
.brand-stat span { color:var(--muted); font-size:.76rem; }

.plan-grid { grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); align-items:stretch; }
.plan-card { position:relative; display:flex; flex-direction:column; min-height:310px; padding:24px; border-radius:18px; }
.plan-card.featured { border-color:rgba(103,232,249,.5); background:linear-gradient(160deg,rgba(53,214,237,.09),rgba(139,92,246,.08)); }
.plan-card h3 { margin:14px 0 2px; font-size:1.08rem; }
.plan-price { margin:20px 0; font-size:2rem; font-weight:800; letter-spacing:-.04em; }
.plan-price small { color:var(--muted); font-size:.75rem; font-weight:500; }
.plan-apps { min-height:76px; color:var(--muted); font-size:.77rem; }
.plan-card .button { margin-top:auto; width:100%; }

.site-footer { width:min(1240px,calc(100% - 40px)); margin:0 auto; padding:36px 0 45px; display:flex; justify-content:space-between; align-items:center; gap:20px; border-top:1px solid var(--line); color:var(--muted); font-size:.75rem; }
.footer-links { display:flex; flex-wrap:wrap; gap:18px; }
.footer-links a { text-decoration:none; }
.footer-links a:hover { color:var(--text); }

/* Public commercial surfaces */
.capability-link-card { position:relative; display:flex; flex-direction:column; color:inherit; text-decoration:none; }
.capability-link-card .capability-plan { position:absolute; top:25px; right:25px; color:#a5b4c8; font-size:.68rem; }
.capability-link-card .text-link { margin-top:auto; padding-top:22px; color:#8be8f6; font-size:.76rem; font-weight:750; }
.capability-link-card:hover .text-link { color:#fff; }
.conversion-split { display:grid; grid-template-columns:minmax(0,1fr) minmax(360px,.82fr); align-items:center; gap:clamp(42px,7vw,90px); }
.conversion-split .section-heading { margin:0; }
.section-cta { display:flex; justify-content:center; margin-top:28px; }
.final-cta { width:min(980px,calc(100% - 40px)); margin-bottom:80px; padding:64px; text-align:center; border:1px solid var(--line-strong); border-radius:28px; background:linear-gradient(135deg,rgba(53,214,237,.08),rgba(139,92,246,.1)); box-shadow:var(--shadow); }
.final-cta h2 { margin:16px auto; max-width:760px; font:760 clamp(2rem,4vw,3.4rem)/1.08 "Space Grotesk",Inter,sans-serif; letter-spacing:-.045em; }
.final-cta p { max-width:680px; margin:0 auto; color:var(--muted); }
.final-cta .button-row { justify-content:center; margin-top:28px; }
.plan-grid-four { grid-template-columns:repeat(4,minmax(0,1fr)); }
.plan-card-heading { min-height:72px; display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.plan-card-heading small { color:var(--muted); font-size:.69rem; line-height:1.45; }
.plan-summary { min-height:68px; }
.plan-feature-list { margin:20px 0 25px; padding:0; display:grid; gap:9px; list-style:none; color:#d4dcea; font-size:.74rem; }
.plan-feature-list li { display:grid; grid-template-columns:12px 1fr; gap:7px; }
.plan-feature-list li::before { content:"✓"; color:var(--green); font-weight:850; }
.plan-card h2 { margin:14px 0 2px; font-size:1.08rem; }

.page-hero { width:min(980px,calc(100% - 40px)); margin:0 auto; padding:110px 0 50px; text-align:center; }
.page-hero h1, .capability-hero h1 { margin:18px auto; font:760 clamp(2.8rem,6vw,5rem)/1.02 "Space Grotesk",Inter,sans-serif; letter-spacing:-.05em; }
.page-hero p { max-width:760px; margin:0 auto; color:#aab4c8; font-size:1.08rem; }
.pricing-hero { padding-bottom:28px; }
.trust-row { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:28px; }
.trust-row span { padding:7px 11px; border:1px solid var(--line); border-radius:999px; color:#bac4d5; background:rgba(255,255,255,.025); font-size:.7rem; }
.pricing-section-tight { padding-top:40px; }
.pricing-detail-card { min-height:620px; }
.pricing-detail-card .plan-feature-list { flex:1; }
.annual-note { min-height:auto !important; margin:-14px 0 18px !important; color:#8b96aa !important; font-size:.7rem !important; }
.catalog-note { max-width:900px; margin:26px auto 0; padding:14px 18px; border:1px solid var(--line); border-radius:13px; background:rgba(255,255,255,.025); color:var(--muted); text-align:center; font-size:.76rem; }
.capability-table-wrap { overflow:auto; border:1px solid var(--line); border-radius:18px; background:var(--panel); }
.capability-table { width:100%; min-width:780px; border-collapse:collapse; }
.capability-table th, .capability-table td { padding:16px 18px; border-bottom:1px solid var(--line); text-align:left; vertical-align:middle; }
.capability-table th { color:#8390a5; font-size:.67rem; letter-spacing:.09em; text-transform:uppercase; }
.capability-table td { color:#cbd5e1; font-size:.78rem; }
.capability-table td:nth-child(2) { max-width:540px; color:var(--muted); }
.capability-table a { color:#8be8f6; text-decoration:none; font-weight:700; }
.faq-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.faq-grid article { padding:24px; border:1px solid var(--line); border-radius:17px; background:var(--panel); }
.faq-grid h3 { margin:0 0 9px; font-size:.95rem; }
.faq-grid p { margin:0; color:var(--muted); font-size:.8rem; }

.capability-showcase-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.capability-showcase-card { padding:30px; border:1px solid var(--line); border-radius:21px; background:var(--panel); box-shadow:0 18px 50px rgba(0,0,0,.18); }
.capability-showcase-card:last-child { grid-column:1/-1; }
.capability-card-top { display:flex; align-items:start; justify-content:space-between; gap:20px; margin-bottom:28px; }
.capability-card-top .feature-icon { margin:0; }
.capability-showcase-card h2 { margin:12px 0; font:700 1.65rem "Space Grotesk",Inter,sans-serif; }
.capability-showcase-card p { color:var(--muted); font-size:.84rem; }
.capability-showcase-card .outcome-label { display:block; margin-top:24px; color:#8be8f6; font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; }
.capability-showcase-card .button { margin-top:22px; }

.capability-hero { width:min(1240px,calc(100% - 40px)); margin:0 auto; padding:110px 0 70px; display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.55fr); align-items:center; gap:clamp(40px,7vw,100px); }
.capability-hero h1 { margin-left:0; max-width:850px; }
.capability-hero > div > p { max-width:740px; color:#aab4c8; font-size:1.08rem; }
.capability-hero .button-row { margin-top:30px; }
.outcome-panel { padding:28px; border:1px solid var(--line-strong); border-radius:21px; background:linear-gradient(145deg,rgba(53,214,237,.07),rgba(139,92,246,.08)); }
.outcome-panel span, .outcome-panel small { display:block; color:var(--muted); font-size:.7rem; }
.outcome-panel strong { display:block; margin:14px 0 24px; font:650 1.12rem/1.5 "Space Grotesk",Inter,sans-serif; }
.capability-pillars { grid-template-columns:repeat(4,minmax(0,1fr)); }

.dashboard-layout { position:relative; z-index:1; min-height:100vh; display:grid; grid-template-columns:250px minmax(0,1fr); }
.dashboard-sidebar { position:sticky; top:0; height:100vh; padding:24px 16px; border-right:1px solid var(--line); background:rgba(7,10,20,.9); backdrop-filter:blur(20px); }
.dashboard-sidebar .brand { padding:0 8px 22px; }
.side-nav { display:grid; gap:5px; margin-top:16px; }
.side-nav-label { margin:20px 10px 8px; color:#657086; font-size:.65rem; font-weight:850; letter-spacing:.13em; text-transform:uppercase; }
.side-nav a { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:10px 12px; font-size:.82rem; }
.side-nav a span:first-child { display:flex; align-items:center; gap:10px; }
.nav-mark { width:27px; height:27px; display:grid; place-items:center; border-radius:8px; background:rgba(255,255,255,.045); color:#8be8f6; font-size:.67rem; font-weight:850; }
.side-bottom { position:absolute; left:16px; right:16px; bottom:18px; }
.dashboard-main { min-width:0; padding:26px clamp(20px,4vw,54px) 60px; }
.dashboard-topbar { display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:50px; margin-bottom:36px; }
.dashboard-topbar small { color:var(--muted); }
.dashboard-hero { display:flex; justify-content:space-between; align-items:flex-end; gap:28px; margin-bottom:32px; }
.dashboard-hero h1 { font-size:clamp(2rem,4vw,3.25rem); }
.dashboard-hero p { max-width:670px; margin:0; color:var(--muted); }
.account-card { min-width:250px; padding:16px; border:1px solid var(--line-strong); border-radius:16px; background:linear-gradient(135deg,rgba(53,214,237,.07),rgba(139,92,246,.08)); }
.account-card small { display:block; color:var(--muted); }
.account-card strong { display:block; margin:3px 0 10px; }
.plan-chip { color:#bff5fb; border-color:rgba(53,214,237,.26); background:rgba(53,214,237,.07); }
.metric-grid { grid-template-columns:repeat(4,minmax(0,1fr)); margin-bottom:22px; }
.metric-card { padding:18px; border-radius:15px; }
.metric-card span { color:var(--muted); font-size:.72rem; }
.metric-card strong { display:block; margin-top:5px; font-size:1.7rem; letter-spacing:-.04em; }
.metric-card small { color:#718096; }
.workspace-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.workspace-card { position:relative; display:flex; flex-direction:column; min-height:230px; padding:21px; border-radius:17px; overflow:hidden; }
.workspace-card::after { content:""; position:absolute; inset:auto -30px -60px auto; width:150px; height:150px; border-radius:50%; background:radial-gradient(circle,rgba(53,214,237,.1),transparent 65%); }
.workspace-head { display:flex; align-items:start; justify-content:space-between; gap:12px; margin-bottom:22px; }
.workspace-icon { width:40px; height:40px; display:grid; place-items:center; border-radius:11px; background:linear-gradient(135deg,rgba(53,214,237,.16),rgba(139,92,246,.19)); color:#c8f7fc; font-weight:850; }
.workspace-card .button { margin-top:auto; align-self:flex-start; position:relative; z-index:1; }
.workspace-card.locked { opacity:.72; }
.lock-chip { color:#fde68a; border:1px solid rgba(251,191,36,.25); background:rgba(251,191,36,.08); border-radius:999px; padding:4px 8px; font-size:.65rem; font-weight:800; }
.dashboard-section { margin-top:34px; }
.dashboard-section-title { display:flex; justify-content:space-between; align-items:end; gap:20px; margin-bottom:15px; }
.dashboard-section-title h2 { margin:0; font-size:1.13rem; }
.dashboard-section-title p { margin:3px 0 0; color:var(--muted); font-size:.8rem; }

.admin-grid { grid-template-columns:1.2fr .8fr; }
.admin-card { padding:21px; border-radius:17px; min-width:0; }
.status-list { display:grid; gap:10px; margin-top:18px; }
.status-row { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:11px 0; border-bottom:1px solid var(--line); font-size:.8rem; }
.status-row:last-child { border:0; }
.status-good { color:#86efac; }
.status-bad { color:#fda4af; }
.table-wrap { overflow:auto; border:1px solid var(--line); border-radius:15px; }
.portal-table { width:100%; border-collapse:collapse; min-width:760px; font-size:.77rem; }
.portal-table th { padding:12px 14px; color:#8b96aa; text-align:left; font-size:.65rem; letter-spacing:.08em; text-transform:uppercase; background:rgba(255,255,255,.025); }
.portal-table td { padding:13px 14px; border-top:1px solid var(--line); color:#d6deeb; }
.portal-table td small { display:block; color:var(--muted); }
.source-chip { display:inline-flex; padding:4px 8px; border-radius:999px; color:#bff5fb; background:rgba(53,214,237,.07); border:1px solid rgba(53,214,237,.17); font-size:.63rem; }
.bar { height:6px; margin-top:9px; border-radius:999px; background:rgba(255,255,255,.06); overflow:hidden; }
.bar > span { display:block; height:100%; background:var(--gradient); border-radius:inherit; }

.centered-page { display:grid; place-items:center; padding:24px; }
.access-panel { width:min(620px,100%); padding:34px; border-radius:var(--radius); }
.access-panel .brand { margin-bottom:40px; }
.access-panel h1 { font-size:clamp(2rem,6vw,3.2rem); }
.access-panel p { color:var(--muted); }
.access-panel .button-row { margin-top:28px; }

@media (max-width: 1040px) {
  .site-nav { display:none; }
  .hero { grid-template-columns:1fr; min-height:auto; }
  .hero-copy { text-align:center; }
  .hero-copy > p { margin-inline:auto; }
  .hero-copy .button-row, .proof-strip { justify-content:center; }
  .command-visual { min-height:430px; }
  .feature-grid, .workspace-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .metric-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .admin-grid { grid-template-columns:1fr; }
  .plan-grid-four, .capability-pillars { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .conversion-split, .capability-hero { grid-template-columns:1fr; }
}

@media (max-width: 760px) {
  .site-header { min-height:66px; padding-inline:15px; }
  .site-header .brand span { display:none; }
  .header-actions .button { padding-inline:12px; }
  .hero, .section, .brand-band-inner, .site-footer { width:min(100% - 28px,1240px); }
  .hero { padding-top:70px; }
  .command-visual { min-height:380px; }
  .command-orbit { width:330px; }
  .feature-grid, .workspace-grid, .metric-grid, .brand-band-inner { grid-template-columns:1fr; }
  .brand-band-inner { text-align:center; }
  .dashboard-layout { display:block; }
  .dashboard-sidebar { position:static; width:100%; height:auto; padding:13px 14px; border-right:0; border-bottom:1px solid var(--line); }
  .dashboard-sidebar .brand { padding:0; }
  .side-nav, .side-nav-label, .side-bottom { display:none; }
  .dashboard-main { padding:22px 14px 50px; }
  .dashboard-topbar { margin-bottom:24px; }
  .dashboard-hero { align-items:flex-start; flex-direction:column; }
  .account-card { width:100%; min-width:0; }
  .site-footer { align-items:flex-start; flex-direction:column; }
  .plan-grid-four, .capability-pillars, .capability-showcase-grid, .faq-grid { grid-template-columns:1fr; }
  .capability-showcase-card:last-child { grid-column:auto; }
  .final-cta { width:min(100% - 28px,980px); padding:40px 22px; }
  .capability-hero { width:min(100% - 28px,1240px); padding-top:70px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}
