:root {
  --bg: #f1f9fc;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #252c38;
  --muted: #6b747b;
  --primary: #594cda;
  --primary-dark: #4035ad;
  --primary-soft: #efedff;
  --accent: #eb427e;
  --accent-soft: #ffeaf2;
  --success: #17a673;
  --warning: #d99021;
  --danger: #dc4c64;
  --line: #e5edf3;
  --shadow: 0 20px 45px rgba(37, 44, 56, .08);
  --shadow-strong: 0 30px 80px rgba(89, 76, 218, .18);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 22px;
  --sidebar: 246px;
  --sol-bg: #111312;
  --sol-panel: #202220;
  --sol-panel-soft: #171917;
  --sol-text: #f4f7f5;
  --sol-muted: #a4aaa5;
  --sol-line: rgba(255, 255, 255, .08);
  --sol-green: #00ffa3;
  --sol-purple: #b45cff;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  color: var(--sol-text);
  font: 400 14px/1.55 "Open Sans", sans-serif;
  background: var(--sol-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.theme-light {
  color: var(--text);
  background:
    radial-gradient(circle at 7% 5%, rgba(235, 66, 126, .12), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(89, 76, 218, .15), transparent 34%),
    var(--bg);
}
button, input, select, textarea { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
.material-symbols-rounded { font-size: 19px; }

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

.sidebar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: none;
  flex-direction: column;
  height: 100vh;
  padding: 22px 16px;
  background: rgba(255, 255, 255, .92);
  border-right: 1px solid rgba(229, 237, 243, .8);
  box-shadow: 8px 0 30px rgba(37, 44, 56, .03);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 26px;
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #7c6cff);
  box-shadow: 0 12px 24px rgba(89, 76, 218, .18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}
.brand strong, .brand small { display: block; }
.brand strong, .sidebar-footer strong {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.brand small, .sidebar-footer small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.nav-menu {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 0;
  border-radius: 15px;
  color: #596272;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  isolation: isolate;
  transition: color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.nav-item .material-symbols-rounded {
  width: 20px;
  flex: 0 0 20px;
  color: currentColor;
  font-size: 18px;
  opacity: .82;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.nav-item:hover {
  color: var(--primary);
  background: var(--primary-soft);
  transform: translateX(2px);
}
.nav-item:hover .material-symbols-rounded {
  opacity: 1;
  transform: scale(1.06);
}
.nav-item.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #7b6cff);
  box-shadow: 0 12px 24px rgba(89, 76, 218, .18);
}
.nav-item:focus-visible, .icon-btn:focus-visible, .btn:focus-visible, .input:focus-visible, .select:focus-visible, .textarea:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(89, 76, 218, .14);
}

.sidebar-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 8px 0;
  border-top: 1px solid var(--line);
}
.user-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  font-size: 11px;
  font-weight: 800;
}

.main-area { min-width: 0; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 32px;
  background: rgba(17, 19, 18, .82);
  border-bottom: 1px solid var(--sol-line);
  backdrop-filter: blur(14px);
}
.theme-light .topbar {
  background: rgba(255, 255, 255, .86);
  border-bottom-color: rgba(15, 23, 42, .08);
}
.sol-nav {
  gap: 20px;
}
.sol-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sol-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.theme-light .sol-brand { color: var(--text); }
.sol-brand span { color: var(--sol-green); }
.sol-logo-dot {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--sol-green), var(--sol-purple));
  box-shadow: 0 0 18px rgba(0, 255, 163, .35);
}
.sol-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  padding: 6px 9px;
  border: 0;
  border-radius: 8px;
  color: rgba(244, 247, 245, .86);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}
.theme-light .sol-link { color: #26313d; }
.sol-link:hover, .sol-link.active {
  color: var(--sol-green);
  background: rgba(255, 255, 255, .07);
}
.svo-dropdown { position: relative; }
.svo-menu-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 80;
  display: none;
  width: 250px;
  padding: 10px;
  border: 1px solid var(--sol-line);
  border-radius: 16px;
  background: rgba(28, 31, 29, .96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
}
.theme-light .svo-menu-popover {
  border-color: rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .96);
}
.svo-menu-popover.open { display: block; }
.svo-menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svo-menu-list .nav-item {
  color: rgba(244, 247, 245, .78);
  border-radius: 10px;
}
.theme-light .svo-menu-list .nav-item { color: #526071; }
.sol-actions { margin-left: 0; }
.sol-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--sol-line);
  border-radius: 9px;
  color: rgba(244, 247, 245, .86);
  background: rgba(255, 255, 255, .05);
}
.theme-light .sol-icon {
  color: #526071;
  border-color: rgba(15, 23, 42, .08);
  background: #ffffff;
}
.page-heading {
  display: none;
  padding: 16px 32px 0;
}
body:not([data-page="dashboard"]) .page-heading { display: block; }
body:not([data-page="dashboard"]) .page-heading h1 {
  margin: 0;
  color: var(--sol-text);
  font-size: 24px;
}
.theme-light body:not([data-page="dashboard"]) .page-heading h1,
.theme-light .page-heading h1 { color: var(--text); }
body:not([data-page="dashboard"]) .page-heading p {
  margin: 4px 0 0;
  color: var(--sol-muted);
}
.topbar h1 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.topbar p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.sync-status {
  color: var(--muted);
  font-size: 11px;
}
.icon-btn {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #596272;
  background: var(--surface);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37, 44, 56, .05);
  transition: color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
.icon-btn:hover {
  color: var(--primary);
  border-color: rgba(89, 76, 218, .22);
  box-shadow: 0 14px 30px rgba(89, 76, 218, .12);
  transform: translateY(-1px);
}

.page-content {
  padding: 20px 32px 34px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .24s var(--ease), transform .24s var(--ease);
}

.sol-hero {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  margin: -20px -32px 14px;
  padding: 58px 32px 24px;
  background:
    linear-gradient(90deg, rgba(17, 19, 18, .86), rgba(17, 19, 18, .34)),
    radial-gradient(circle at 74% 44%, rgba(0, 255, 163, .34), transparent 18%),
    radial-gradient(circle at 86% 36%, rgba(180, 92, 255, .42), transparent 22%),
    linear-gradient(135deg, #243514, #0f1614 58%, #251d37);
}
.theme-light .sol-hero {
  background:
    linear-gradient(90deg, rgba(17, 19, 18, .74), rgba(17, 19, 18, .18)),
    radial-gradient(circle at 76% 40%, rgba(0, 255, 163, .42), transparent 18%),
    radial-gradient(circle at 88% 38%, rgba(180, 92, 255, .36), transparent 22%),
    linear-gradient(135deg, #dff8e9, #eef7ff 62%, #e9e0ff);
}
.sol-hero:after {
  content: "SVO";
  position: absolute;
  right: 9%;
  top: 20px;
  color: rgba(255, 255, 255, .18);
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -.08em;
  transform: rotate(-8deg);
}
.sol-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.sol-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sol-title-row h2 {
  margin: 0;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.15;
}
.sol-title-row h2 span { color: var(--sol-green); }
.ad-pill {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 999px;
  color: #111312;
  background: #ffffff;
  font-size: 10px;
  font-weight: 900;
}
.sol-search {
  display: grid;
  grid-template-columns: 1fr 48px;
  width: min(680px, 100%);
  min-height: 46px;
  margin-top: 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .62);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .26);
}
.sol-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: #ffffff;
  background: transparent;
}
.sol-search button {
  border: 0;
  border-radius: 0 8px 8px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7, #d946ef);
}
.sol-sponsored {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
}
.public-hero-copy {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  line-height: 1.55;
}
.public-search { margin-top: 18px; }
.market-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 12px;
  padding-bottom: 2px;
}
.market-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--sol-line);
  border-radius: 999px;
  color: rgba(244, 247, 245, .86);
  background: rgba(255, 255, 255, .055);
  font-size: 11px;
  font-weight: 800;
}
.market-chip strong { color: var(--sol-green); }
.market-chip small { color: var(--sol-muted); }
.theme-light .market-chip {
  color: #29313d;
  border-color: rgba(15, 23, 42, .08);
  background: #ffffff;
}
.sol-metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 10px;
}
.public-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.public-stat {
  min-height: 118px;
  padding: 16px;
}
.public-stat strong {
  display: block;
  color: var(--sol-green);
  font-size: 26px;
  line-height: 1;
}
.theme-light .public-stat strong { color: var(--primary); }
.public-stat span {
  display: block;
  margin-top: 10px;
  color: var(--sol-text);
  font-size: 13px;
  font-weight: 900;
}
.theme-light .public-stat span { color: var(--text); }
.public-stat small {
  display: block;
  margin-top: 6px;
  color: var(--sol-muted);
  font-size: 11px;
  line-height: 1.4;
}
.public-section {
  margin: 14px 0;
}
.public-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.public-panels {
  align-items: stretch;
}
.public-feature-list {
  display: grid;
  gap: 10px;
}
.public-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--sol-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .035);
}
.theme-light .public-feature {
  border-color: rgba(15, 23, 42, .08);
  background: #ffffff;
}
.public-feature .material-symbols-rounded {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 12px;
  color: #111312;
  background: var(--sol-green);
}
.public-feature strong {
  display: block;
  color: var(--sol-text);
  font-size: 13px;
}
.theme-light .public-feature strong { color: var(--text); }
.public-feature p {
  margin: 4px 0 0;
  color: var(--sol-muted);
  font-size: 11px;
  line-height: 1.45;
}
.public-chart {
  min-height: 260px;
}
.page-content.is-loading {
  opacity: .35;
  transform: translateY(6px);
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 24px;
  overflow: hidden;
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, .25), transparent 22%),
    linear-gradient(135deg, #594cda 0%, #6f61ef 48%, #eb427e 100%);
  box-shadow: var(--shadow-strong);
}
.dashboard-hero {
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
  gap: 18px;
  margin-bottom: 12px;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 28px;
}
.hero-panel:before {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-copy h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.hero-copy p {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.hero-visual {
  position: relative;
  min-height: 210px;
}
.phone-card {
  position: absolute;
  right: 40px;
  top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 210px;
  padding: 16px;
  border: 8px solid rgba(255, 255, 255, .38);
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
  color: var(--text);
  box-shadow: 0 30px 70px rgba(37, 44, 56, .22);
  text-align: center;
}
.phone-card img {
  width: 54px;
  margin-bottom: 18px;
}
.phone-card strong {
  font-size: 20px;
  line-height: 1.2;
}
.phone-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(37, 44, 56, .18);
  font-size: 12px;
  font-weight: 800;
}
.floating-card img { width: 30px; }
.card-a { left: 6px; top: 40px; }
.card-b { right: 0; bottom: 38px; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.compact-kpi {
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 10px;
}
.card {
  border: 1px solid rgba(229, 237, 243, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease), background .22s var(--ease);
}
.card:hover {
  border-color: rgba(89, 76, 218, .16);
  box-shadow: 0 24px 56px rgba(37, 44, 56, .10);
}
body:not(.theme-light) .card {
  border-color: var(--sol-line);
  color: var(--sol-text);
  background: var(--sol-panel);
  box-shadow: none;
}
body:not(.theme-light) .card:hover {
  border-color: rgba(0, 255, 163, .16);
  box-shadow: none;
}
.kpi-card {
  position: relative;
  min-height: 118px;
  padding: 14px;
  overflow: hidden;
}
.kpi-card:after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: var(--primary-soft);
}
body:not(.theme-light) .kpi-card:after { background: rgba(255, 255, 255, .04); }
.kpi-icon {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.kpi-label {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.kpi-value {
  position: relative;
  z-index: 1;
  margin: 7px 0 4px;
  color: var(--text);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 800;
  letter-spacing: -.03em;
}
body:not(.theme-light) .kpi-value,
body:not(.theme-light) .section-head h2,
body:not(.theme-light) .product-card h3,
body:not(.theme-light) .cart-row strong {
  color: var(--sol-text);
}
.kpi-meta {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}
body:not(.theme-light) .kpi-label,
body:not(.theme-light) .kpi-meta,
body:not(.theme-light) .section-head p,
body:not(.theme-light) .muted,
body:not(.theme-light) .small {
  color: var(--sol-muted);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(92px, 1fr));
  gap: 9px;
  margin: 12px 0;
}
.ecosystem-card {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(229, 237, 243, .9);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 28px rgba(37, 44, 56, .055);
  text-align: left;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease), background .22s var(--ease);
}
.ecosystem-card:hover:not(:disabled) {
  border-color: rgba(89, 76, 218, .22);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(89, 76, 218, .12);
  transform: translateY(-2px);
}
.ecosystem-card:disabled {
  cursor: default;
  opacity: .74;
}
.ecosystem-card .material-symbols-rounded {
  color: var(--primary);
  font-size: 20px;
}
.ecosystem-card strong {
  font-size: 11px;
  line-height: 1.15;
}
.ecosystem-card small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}
body:not(.theme-light) .ecosystem-card {
  border-color: var(--sol-line);
  color: var(--sol-text);
  background: var(--sol-panel);
  box-shadow: none;
}
body:not(.theme-light) .ecosystem-card:hover:not(:disabled) {
  border-color: rgba(0, 255, 163, .22);
  background: #252826;
  box-shadow: none;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}
.feature-card img {
  width: 42px;
  flex: 0 0 auto;
}
.feature-card h3 {
  margin: 0;
  font-size: 14px;
}
.feature-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 18px;
  margin-top: 18px;
}
.dashboard-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  margin-top: 12px;
}
.sol-chart {
  display: grid;
  min-height: 210px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 18px;
  color: #d946ef;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #202220;
  background-size: 40px 40px;
}
.theme-light .sol-chart {
  background:
    linear-gradient(rgba(15,23,42,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.05) 1px, transparent 1px),
    #ffffff;
}
.sol-chart svg {
  width: min(100%, 440px);
  height: 220px;
  opacity: .9;
}
.section-card { padding: 22px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.section-head h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}
.section-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease), opacity .2s var(--ease);
}
.btn:hover {
  box-shadow: 0 12px 26px rgba(37, 44, 56, .08);
  transform: translateY(-1px);
}
.btn:active, .icon-btn:active, .nav-item:active {
  transform: translateY(0) scale(.98);
}
.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}
.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #7869ff);
  box-shadow: 0 14px 28px rgba(89, 76, 218, .24);
}
.btn-soft {
  color: var(--primary);
  background: #ffffff;
  border: 1px solid rgba(89, 76, 218, .18);
}
.btn-danger {
  color: var(--danger);
  background: #fff0f4;
}
.btn-ghost {
  color: #596272;
  background: #ffffff;
  border: 1px solid var(--line);
}

.toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 22px;
  background: var(--surface-soft);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label, .inline-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.inline-field {
  display: flex;
  align-items: center;
  gap: 8px;
}
.input, .select, .textarea {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  color: var(--text);
  background: #ffffff;
  padding: 9px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.input:focus, .select:focus, .textarea:focus {
  border-color: rgba(89, 76, 218, .55);
  box-shadow: 0 0 0 4px rgba(89, 76, 218, .10);
}
body:not(.theme-light) .input,
body:not(.theme-light) .select,
body:not(.theme-light) .textarea {
  border-color: var(--sol-line);
  color: var(--sol-text);
  background: #171917;
}
.input[type="date"] {
  min-width: 150px;
  padding-right: 12px;
  color-scheme: light;
  cursor: pointer;
}
.input[type="date"]::-webkit-calendar-picker-indicator {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  padding: 4px;
  background-color: var(--primary-soft);
  cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background-color: #ddd8ff;
  transform: scale(1.08);
}
.search { min-width: 260px; }

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}
body:not(.theme-light) .table-wrap {
  border-color: var(--sol-line);
  background: var(--sol-panel);
}
.data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
.data-table th {
  padding: 14px;
  color: #77818b;
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}
body:not(.theme-light) .data-table th {
  color: var(--sol-muted);
  background: #171917;
  border-bottom-color: var(--sol-line);
}
.data-table td {
  padding: 14px;
  border-bottom: 1px solid #edf2f7;
  font-size: 12px;
  vertical-align: middle;
}
body:not(.theme-light) .data-table td { border-bottom-color: var(--sol-line); }
.data-table tr:last-child td { border-bottom: 0; }
.data-table small, .small {
  color: var(--muted);
  font-size: 11px;
}
.money-in { color: var(--success); font-weight: 800; }
.money-out { color: var(--danger); font-weight: 800; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}
.badge-ok { color: #137855; background: #e7f8f1; }
.badge-low { color: #a56300; background: #fff4dc; }
.badge-off { color: #77818b; background: #eef2f5; }
.actions { white-space: nowrap; }
.actions .btn { margin-right: 6px; }
.pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
}
.empty {
  padding: 38px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}
.empty.compact { padding: 16px; }

.pos-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 18px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.product-card {
  min-height: 154px;
  padding: 18px;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.product-card.disabled {
  opacity: .55;
  cursor: not-allowed;
}
.product-card h3 {
  margin: 14px 0 4px;
  font-size: 14px;
  line-height: 1.35;
}
.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.product-price {
  margin-top: 13px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
}
.cart {
  position: sticky;
  top: 106px;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 132px);
}
.cart-items {
  flex: 1;
  overflow: auto;
}
.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row strong { font-size: 13px; }
.cart-row small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-control button {
  width: 29px;
  height: 29px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
}
body:not(.theme-light) .qty-control button {
  color: var(--sol-text);
  border-color: var(--sol-line);
  background: #171917;
}
.editable-cart-row {
  grid-template-columns: minmax(0, 1fr) 130px;
}
.editable-cart-row label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.cart-price-input,
.cart-qty-input {
  min-height: 34px;
  padding: 6px 10px;
  font-size: 12px;
}
.cart-qty-input {
  width: 66px;
  text-align: center;
}
.cart-summary {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 12px;
}
.summary-row.total {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 800;
}
.full-width {
  width: 100%;
  margin-top: 12px;
}
.sales-history { margin-top: 18px; }

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini-stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-soft);
}
.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.mini-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  font-weight: 800;
}
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.subheading {
  margin: 20px 0 10px;
  font-size: 14px;
}
.stock-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.muted { color: var(--muted); }

.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.portfolio-strip .asset-chip-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}
.asset-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #596272;
  background: var(--surface-soft);
  font-size: 11px;
  font-weight: 700;
}
.asset-chip strong { color: var(--primary); }
.investment-form .inline-field {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}
.investment-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}
.rate-preview {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(89, 76, 218, .16);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, var(--primary-soft));
}
.rate-preview strong {
  color: var(--primary);
  font-size: 13px;
}
.rate-preview small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(37, 44, 56, .42);
  backdrop-filter: blur(6px);
  animation: fadeIn .18s var(--ease);
}
.modal {
  width: min(780px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(37, 44, 56, .24);
  animation: modalIn .24s var(--ease);
}
.modal-head, .modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.modal-foot {
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}
.modal-body { padding: 22px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.span-2 { grid-column: span 2; }
.receipt {
  max-width: 360px;
  margin: 0 auto;
  color: var(--text);
}
.receipt h2 {
  margin: 0 0 6px;
  text-align: center;
}
.receipt p {
  margin: 0 0 12px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}
.receipt hr {
  margin: 14px 0;
  border: 0;
  border-top: 1px dashed #b6c6d2;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 8px 0;
  font-size: 12px;
}
.receipt-row.total {
  font-size: 18px;
  font-weight: 800;
}

.toast-root {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  max-width: 360px;
  padding: 13px 16px;
  border-radius: 18px;
  color: #ffffff;
  background: var(--text);
  box-shadow: var(--shadow);
  font-size: 12px;
  animation: toastIn .22s var(--ease);
}
.toast.error { background: #9f2f43; }
.global-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(4px);
  font-weight: 800;
}
.spinner {
  width: 25px;
  height: 25px;
  border: 3px solid #ddd8ff;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.hidden { display: none !important; }
.mobile-only { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1180px) {
  .hero-panel { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .kpi-grid, .feature-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compact-kpi { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ecosystem-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .public-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .public-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pos-layout { grid-template-columns: 1fr 340px; }
  .sol-metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .app-shell { display: block; }
  .sidebar {
    position: fixed;
    left: 0;
    width: 264px;
    transform: translateX(-105%);
    transition: transform .24s var(--ease), box-shadow .24s var(--ease);
  }
  .sidebar.open {
    box-shadow: 22px 0 55px rgba(37, 44, 56, .18);
    transform: translateX(0);
  }
  .mobile-only { display: grid; }
  .sol-nav {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
  }
  .sol-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    margin-left: 0;
    padding-bottom: 4px;
  }
  .sol-actions { margin-left: auto; }
  .svo-menu-popover {
    left: 0;
    width: min(250px, calc(100vw - 24px));
  }
  .page-content { padding: 16px; }
  .sol-hero {
    margin: -16px -16px 14px;
    padding: 72px 16px 20px;
  }
  .sol-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topbar { padding: 0 16px; }
  .hero-panel { border-radius: 26px; }
  .hero-copy h2 { font-size: 32px; }
  .kpi-grid, .feature-strip, .grid-2, .pos-layout, .form-grid, .status-grid {
    grid-template-columns: 1fr;
  }
  .compact-kpi, .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .public-stat-grid,
  .public-services {
    grid-template-columns: 1fr;
  }
  .portfolio-strip { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cart {
    position: static;
    height: auto;
  }
  .sync-status { display: none; }
  .search {
    flex: 1;
    min-width: 100%;
  }
  .inline-field {
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
  }
  .inline-field .input { width: 100%; }
  .pager { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .sol-metric-grid { grid-template-columns: 1fr; }
  .compact-kpi, .ecosystem-grid { grid-template-columns: 1fr; }
  .public-stat-grid, .public-services { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .toolbar .select, .toolbar .btn, .toolbar .input { width: 100%; }
}

/* Public landing inspired by modern POS/SaaS pages. */
body[data-page="dashboard"] {
  color: #101828;
  background: #ffffff;
}
body[data-page="dashboard"] .landing-nav {
  min-height: 72px;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  background: rgba(255, 255, 255, .94);
}
.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #101828;
  text-decoration: none;
}
.landing-brand strong {
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
}
.landing-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a1a, #7c3aed);
  font-size: 11px;
  font-weight: 950;
}
.landing-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.landing-links button,
.landing-login {
  border: 0;
  color: #344054;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}
.landing-links button {
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 999px;
}
.landing-links button:hover {
  color: #ff7a1a;
  background: #fff4ec;
}
.landing-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
}
.landing-primary,
.landing-outline,
.landing-secret {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 900;
}
.landing-primary {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a1a, #7c3aed);
  box-shadow: 0 14px 30px rgba(255, 122, 26, .18);
}
.landing-outline {
  border: 1px solid #e4e7ec;
  color: #101828;
  background: #ffffff;
}
.landing-secret {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(124, 58, 237, .18);
  color: #7c3aed;
  background: #f5f3ff;
}
body[data-page="dashboard"] .sync-status {
  display: none;
}
body[data-page="dashboard"] .page-content {
  padding: 0;
}
.ol-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: 34px;
  min-height: 640px;
  overflow: hidden;
  padding: 96px clamp(22px, 6vw, 86px) 62px;
  background:
    radial-gradient(circle at 85% 18%, rgba(124, 58, 237, .16), transparent 28%),
    radial-gradient(circle at 10% 18%, rgba(255, 122, 26, .12), transparent 24%),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 58%, #f8fbff 100%);
}
.ol-hero:before {
  content: "";
  position: absolute;
  inset: auto -120px -220px auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 122, 26, .08);
}
.ol-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  align-self: center;
}
.ol-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ff7a1a;
  background: #fff1e8;
  font-size: 13px;
  font-weight: 950;
}
.ol-hero h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .94;
  letter-spacing: -.06em;
}
.ol-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #667085;
  font-size: 18px;
  line-height: 1.7;
}
.ol-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.ol-hero small {
  display: block;
  margin-top: 28px;
  color: #98a2b3;
  font-size: 12px;
  font-weight: 800;
}
.ol-hero-visual {
  position: relative;
  min-height: 520px;
}
.ol-phone-mock {
  position: absolute;
  right: 12%;
  top: 42px;
  display: grid;
  width: 230px;
  height: 430px;
  place-items: center;
  border: 12px solid #111827;
  border-radius: 42px;
  color: #ffffff;
  background: linear-gradient(160deg, #ff7a1a, #7c3aed 58%, #2563eb);
  box-shadow: 0 36px 90px rgba(16, 24, 40, .18);
}
.ol-phone-mock div {
  position: absolute;
  top: 16px;
  width: 76px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
}
.ol-phone-mock strong {
  font-size: 50px;
  font-weight: 950;
}
.ol-phone-mock span {
  position: absolute;
  bottom: 46px;
  font-size: 13px;
  font-weight: 900;
}
.ol-orbit-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(16, 24, 40, .12);
}
.ol-orbit-card.primary { left: 4%; top: 120px; }
.ol-orbit-card.secondary { right: 0; bottom: 118px; }
.ol-orbit-card .material-symbols-rounded {
  color: #ff7a1a;
  font-size: 24px;
}
.ol-orbit-card strong {
  font-size: 14px;
}
.ol-stats,
.ol-section,
.ol-cta-band,
.ol-footer {
  margin-inline: clamp(18px, 5vw, 72px);
}
.ol-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -36px;
  position: relative;
  z-index: 3;
}
body[data-page="dashboard"] .public-stat,
body[data-page="dashboard"] .ol-business-card,
body[data-page="dashboard"] .ol-projection-card,
body[data-page="dashboard"] .ol-integration-card,
body[data-page="dashboard"] .ol-story-card {
  border: 1px solid #eef2f6;
  color: #101828;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(16, 24, 40, .07);
}
body[data-page="dashboard"] .public-stat strong {
  color: #ff7a1a;
}
body[data-page="dashboard"] .public-stat span,
body[data-page="dashboard"] .public-feature strong {
  color: #101828;
}
body[data-page="dashboard"] .public-stat small,
body[data-page="dashboard"] .public-feature p {
  color: #667085;
}
.ol-section {
  padding: 84px 0 0;
}
.ol-section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.ol-section-head span {
  color: #ff7a1a;
  font-size: 13px;
  font-weight: 950;
}
.ol-section-head h2 {
  margin: 8px 0 0;
  color: #101828;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.ol-section-head p {
  margin: 12px auto 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
}
.ol-business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ol-business-card {
  padding: 22px;
  border-radius: 28px;
  cursor: pointer;
}
.ol-business-card .material-symbols-rounded {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a1a, #7c3aed);
  font-size: 25px;
}
.ol-business-card h3 {
  margin: 18px 0 8px;
  color: #101828;
  font-size: 18px;
}
.ol-business-card p {
  color: #667085;
  font-size: 13px;
  line-height: 1.6;
}
.ol-business-card button {
  margin-top: 14px;
  border: 0;
  color: #ff7a1a;
  background: transparent;
  font-weight: 900;
}
.ol-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 18px;
}
body[data-page="dashboard"] .public-feature {
  border-color: #eef2f6;
  background: #ffffff;
}
.ol-projection-card {
  padding: 24px;
  border-radius: 30px;
}
.ol-projection-card h3 {
  margin: 0;
  color: #101828;
  font-size: 22px;
}
.ol-projection-card p {
  color: #667085;
}
body[data-page="dashboard"] .sol-chart {
  color: #d946ef;
  background:
    linear-gradient(rgba(16,24,40,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,24,40,.04) 1px, transparent 1px),
    #f8fafc;
}
.ol-integration-grid,
.ol-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.ol-integration-card,
.ol-story-card {
  padding: 20px;
  border-radius: 24px;
}
.ol-integration-card .material-symbols-rounded {
  color: #17a673;
}
.ol-integration-card strong,
.ol-story-card strong {
  display: block;
  color: #101828;
  font-size: 15px;
}
.ol-integration-card p,
.ol-story-card p {
  color: #667085;
  font-size: 13px;
  line-height: 1.6;
}
.ol-cta-band {
  margin-top: 84px;
  padding: 46px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.24), transparent 24%),
    linear-gradient(135deg, #ff7a1a, #7c3aed);
  text-align: center;
}
.ol-cta-band span {
  font-weight: 950;
}
.ol-cta-band h2 {
  margin: 10px auto 22px;
  max-width: 760px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}
.ol-cta-band .landing-outline {
  margin-left: 10px;
}
.ol-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-top: 42px;
  padding: 36px 0 46px;
  color: #667085;
}
.ol-footer strong,
.ol-footer span {
  color: #101828;
  font-weight: 950;
}
@media (max-width: 1180px) {
  .landing-links { display: none; }
  .ol-hero { grid-template-columns: 1fr; }
  .ol-hero-visual { min-height: 380px; }
  .ol-stats, .ol-business-grid, .ol-integration-grid, .ol-story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ol-feature-layout { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  body[data-page="dashboard"] .landing-nav {
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 14px;
  }
  .landing-actions {
    width: 100%;
    flex-wrap: wrap;
    margin-left: 0;
  }
  .landing-login { display: none; }
  .ol-hero {
    min-height: auto;
    padding: 72px 18px 34px;
  }
  .ol-hero h2 { font-size: 44px; }
  .ol-phone-mock {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .ol-orbit-card.primary { left: 0; }
  .ol-orbit-card.secondary { right: 0; }
  .ol-stats, .ol-business-grid, .ol-integration-grid, .ol-story-grid, .ol-footer {
    grid-template-columns: 1fr;
  }
  .ol-cta-band { padding: 34px 18px; }
}
