: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: none; /* diganti .svo-wordmark teks SVO biru-oranye */
}
/* Logo landing: teks murni SVO (biru + oranye), tanpa asset/gambar/pill. */
.svo-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  line-height: 1;
  user-select: none;
}
.svo-wordmark b { font-weight: 900; font-style: normal; }
.svo-wordmark .s,
.svo-wordmark .v { color: #1d8fff; }
.svo-wordmark .o { color: #ff7a1a; }
.svo-wordmark-sm { font-size: 1.05rem; }
.sidebar-footer .svo-wordmark { margin-right: 2px; }
.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;
  max-height: min(70vh, 520px);
  overflow: auto;
}
.svo-menu-empty {
  padding: 12px 14px;
  color: #98a2b3;
  font-size: 12px;
  font-weight: 700;
}
.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;
}
.css-logo,
.css-logo-compact {
  /* Legacy pill-logo dinonaktifkan — pakai .svo-wordmark teks saja. */
  display: none !important;
}
.landing-brand-right {
  gap: 8px;
  margin-left: 6px;
  text-decoration: none;
}
.nav-left-access {
  margin-right: 6px;
}
.nav-left-access.is-autohidden {
  /* Auto-hide dimatikan di landing standalone. */
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}
.landing-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}
.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: auto;
}
.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;
}
.logo-secret {
  gap: 8px;
  padding: 7px 12px 7px 8px;
}
body[data-page="dashboard"] .sync-status {
  display: inline-block;
  max-width: min(240px, 28vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
}
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; }
}

/* Neutralize old light landing rules when Pro Max theme is active */
body.theme-liquid[data-page="dashboard"] {
  background: #0a0e27 !important;
  color: #f8fafc !important;
}
body.theme-liquid[data-page="dashboard"] .landing-nav {
  background: rgba(15, 20, 40, 0.62) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
body.theme-liquid .landing-primary {
  background: #3b82f6 !important;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35) !important;
}
body.theme-liquid .toast-root .toast,
body.theme-liquid .global-loader {
  color: #fff;
}
/* =========================================================
   SVO Landing — clone visual of UI UX Pro Max
   https://ui-ux-pro-max-skill.nextlevelbuilder.io
   Dark glass + blue/orange ambience + gradient title
   ========================================================= */

:root {
  --pm-bg: #0a0e27;
  --pm-bg-deep: #050714;
  --pm-surface: rgba(22, 28, 52, 0.55);
  --pm-surface-strong: rgba(30, 36, 64, 0.72);
  --pm-border: rgba(255, 255, 255, 0.1);
  --pm-border-soft: rgba(255, 255, 255, 0.06);
  --pm-text: #f8fafc;
  --pm-muted: #94a3b8;
  --pm-dim: #64748b;
  --pm-blue: #3b82f6;
  --pm-blue-bright: #60a5fa;
  --pm-orange: #f97316;
  --pm-purple: #a855f7;
  --pm-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.theme-liquid,
body.theme-liquid[data-page="dashboard"] {
  color: var(--pm-text) !important;
  background: var(--pm-bg) !important;
  font-family: "DM Sans", Inter, system-ui, sans-serif;
  min-height: 100vh;
}

body.theme-liquid::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 18% 42%, rgba(37, 99, 235, 0.38), transparent 60%),
    radial-gradient(ellipse 50% 45% at 82% 48%, rgba(234, 88, 12, 0.28), transparent 58%),
    radial-gradient(ellipse 40% 35% at 50% 0%, rgba(99, 102, 241, 0.12), transparent 55%),
    linear-gradient(180deg, #0a0e27 0%, #070b1f 50%, #050714 100%);
}

body.theme-liquid::after {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 48%, rgba(59, 130, 246, 0.22), transparent 32%),
    radial-gradient(circle at 78% 52%, rgba(249, 115, 22, 0.16), transparent 30%);
  filter: blur(40px);
  animation: pmDrift 16s ease-in-out infinite alternate;
}

body.theme-liquid .app-shell,
body.theme-liquid .main-area {
  background: transparent !important;
  min-width: 0;
  color: var(--pm-text);
}
body.theme-liquid .sidebar { display: none !important; }
body.theme-liquid .page-heading { display: none !important; }
body.theme-liquid .page-content {
  padding: 0 !important;
  max-width: none !important;
  overflow: visible;
}

/* —— Logo mark: text on solid rounded square —— */
.svo-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  color: #fff;
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: #3b82f6;
  border: 0;
  box-shadow: none;
  user-select: none;
}
.svo-mark-sm { width: 36px; height: 36px; font-size: 12px; border-radius: 50%; }
.svo-wordmark,
.svo-wordmark b { display: none !important; }

/* —— Floating pill nav (Pro Max placement) —— */
body.theme-liquid .landing-nav {
  position: sticky;
  top: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  min-height: 60px;
  margin: 20px auto 0;
  padding: 8px 12px 8px 12px;
  border-radius: 999px;
  background: rgba(15, 20, 40, 0.62) !important;
  border: 1px solid var(--pm-border) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  box-sizing: border-box;
}
body.theme-liquid .nav-left-access { margin: 0; }
body.theme-liquid .logo-secret,
body.theme-liquid .landing-secret,
body.theme-liquid .pm-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 14px 4px 4px;
  border: 0 !important;
  border-radius: 999px;
  color: var(--pm-text) !important;
  background: transparent !important;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  cursor: pointer;
  font-family: "Space Grotesk", "DM Sans", sans-serif;
}
body.theme-liquid .pm-brand-text {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
body.theme-liquid .logo-secret:hover,
body.theme-liquid .pm-brand:hover {
  background: rgba(255, 255, 255, 0.04) !important;
}
body.theme-liquid .landing-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}
body.theme-liquid .landing-links button {
  border: 0;
  background: transparent;
  color: var(--pm-muted) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
body.theme-liquid .landing-links button:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}
body.theme-liquid .landing-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
body.theme-liquid .landing-login {
  border: 0;
  background: transparent;
  color: var(--pm-muted) !important;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
}
body.theme-liquid .landing-primary,
body.theme-liquid .lg-btn-dark,
body.theme-liquid .pm-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 12px 20px !important;
  color: #fff !important;
  background: var(--pm-blue) !important;
  font-weight: 700 !important;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35) !important;
  transition: transform 0.25s var(--pm-ease), box-shadow 0.25s var(--pm-ease), background 0.2s;
}
body.theme-liquid .landing-primary:hover,
body.theme-liquid .lg-btn-dark:hover,
body.theme-liquid .pm-btn-primary:hover {
  background: #2563eb !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.45) !important;
}
body.theme-liquid .landing-outline,
body.theme-liquid .lg-btn-glass,
body.theme-liquid .pm-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--pm-border) !important;
  border-radius: 12px !important;
  padding: 12px 20px !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.04) !important;
  font-weight: 700 !important;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 0.25s var(--pm-ease), background 0.2s;
}
body.theme-liquid .pm-btn-ghost:hover,
body.theme-liquid .lg-btn-glass:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-1px);
}
body.theme-liquid .landing-brand-right,
body.theme-liquid .sync-status { display: none !important; }

body.theme-liquid .svo-menu-popover {
  display: none !important;
}
body.theme-liquid .svo-menu-list .nav-item {
  color: #e2e8f0;
  border-radius: 12px;
}
body.theme-liquid .svo-menu-list .nav-item:hover {
  background: rgba(59, 130, 246, 0.12);
}

/* —— Hero (Pro Max layout) —— */
.lg-hero,
.pm-hero {
  position: relative;
  padding: clamp(56px, 9vw, 110px) 20px 48px;
  text-align: center;
}
.pm-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.pm-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  animation: pmRise 0.7s var(--pm-ease) both;
}
.pm-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(15, 20, 40, 0.55);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(14px);
}
.pm-badge .material-symbols-rounded {
  font-size: 15px;
  color: var(--pm-blue-bright);
}

.pm-title {
  margin: 8px 0 0;
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  animation: pmRise 0.8s 0.05s var(--pm-ease) both;
}
.pm-title .grad {
  display: block;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 42%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pm-title .plain {
  display: block;
  color: #fff;
  margin-top: 0.08em;
  font-size: 0.78em;
}

.pm-sub {
  max-width: 52ch;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: var(--pm-muted);
  animation: pmRise 0.8s 0.1s var(--pm-ease) both;
}

.pm-cli {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  min-width: min(420px, 92vw);
  justify-content: flex-start;
  padding: 12px 18px;
  border-radius: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13.5px;
  color: #e2e8f0;
  background: rgba(10, 14, 32, 0.75);
  border: 1px solid var(--pm-border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  animation: pmRise 0.8s 0.14s var(--pm-ease) both;
  white-space: nowrap;
}
.pm-cli .pm-cli-text { color: #fff; }
.pm-cli .pm-cli-cursor {
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 2px;
  background: #fff;
  vertical-align: -2px;
  animation: pmBlink 1s step-end infinite;
}
@keyframes pmBlink {
  50% { opacity: 0; }
}

/* Hostinger "We are" watermark → SVO */
#hlogo,
a[href*="hostinger.com"][class*="logo"],
div[id*="hostinger"],
div[class*="hostinger-logo"],
img[src*="hostinger"],
iframe[src*="hostinger"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.svo-we-are {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: rgba(15, 20, 40, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.svo-we-are .svo-mark { width: 28px; height: 28px; font-size: 10px; border-radius: 50%; }
.svo-we-are span em {
  font-style: normal;
  color: var(--pm-muted);
  font-weight: 500;
  margin-right: 4px;
}

.pm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
  animation: pmRise 0.8s 0.18s var(--pm-ease) both;
}

.pm-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: min(1000px, 100%);
  margin-top: 28px;
  animation: pmRise 0.9s 0.22s var(--pm-ease) both;
}
.pm-stat {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding: 22px 12px 18px;
  border-radius: 18px;
  background: rgba(18, 24, 48, 0.5);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s var(--pm-ease), border-color 0.3s, background 0.3s;
}
.pm-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(30, 40, 72, 0.58);
}
.pm-stat .material-symbols-rounded {
  color: var(--pm-blue-bright);
  font-size: 22px;
}
.pm-stat strong {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--pm-blue-bright);
}
.pm-stat span {
  font-size: 12px;
  font-weight: 500;
  color: var(--pm-muted);
}

/* —— Lower sections (dark glass) —— */
.lg-sheet,
.pm-sheet {
  width: min(1100px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 28px;
  background: rgba(16, 22, 46, 0.55);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.lg-sheet-intro,
.pm-sheet-intro {
  max-width: 48ch;
  margin: 0 auto 24px;
  text-align: center;
  color: var(--pm-muted);
  line-height: 1.55;
}

.lg-bento,
.pm-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.lg-card,
.pm-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  min-height: 130px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--pm-border-soft);
  transition: transform 0.3s var(--pm-ease), border-color 0.3s;
}
.lg-card:hover,
.pm-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.3);
}
.lg-card.wide,
.pm-card.wide { grid-column: span 6; }
.lg-card.tall,
.pm-card.tall { min-height: 200px; }
.lg-card strong,
.pm-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  color: var(--pm-blue-bright);
  margin-bottom: 6px;
}
.lg-card span,
.pm-card span { font-weight: 700; margin-bottom: 6px; color: #fff; }
.lg-card small,
.pm-card small { color: var(--pm-muted); line-height: 1.45; }

.lg-section,
.pm-section {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) 20px;
}
.lg-section-head,
.pm-section-head {
  max-width: 52ch;
  margin: 0 auto 28px;
  text-align: center;
}
.lg-section-head span,
.pm-section-head span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pm-blue-bright);
}
.lg-section-head h2,
.pm-section-head h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.04em;
  color: #fff;
}
.lg-section-head p,
.pm-section-head p { margin: 0; color: var(--pm-muted); }

.lg-grid-4,
.pm-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lg-grid-3,
.pm-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lg-grid-2,
.pm-grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 14px; }

.lg-tile,
.pm-tile {
  padding: 22px;
  border-radius: 18px;
  background: rgba(18, 24, 48, 0.5);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(16px);
  transition: transform 0.3s var(--pm-ease), border-color 0.3s;
}
.lg-tile:hover,
.pm-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.35);
}
.lg-tile h3,
.pm-tile h3 {
  margin: 12px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-size: 1.1rem;
}
.lg-tile p,
.pm-tile p { margin: 0; color: var(--pm-muted); }
.lg-tile button,
.pm-tile button {
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--pm-blue-bright);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
.lg-tile .material-symbols-rounded,
.pm-tile .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--pm-blue-bright);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.lg-feature-list,
.pm-feature-list { display: grid; gap: 10px; }
.lg-feature,
.pm-feature {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(18, 24, 48, 0.5);
  border: 1px solid var(--pm-border);
}
.lg-feature .material-symbols-rounded,
.pm-feature .material-symbols-rounded {
  color: var(--pm-blue-bright);
  font-size: 24px;
}
.lg-feature strong,
.pm-feature strong { display: block; margin-bottom: 4px; color: #fff; }
.lg-feature p,
.pm-feature p { margin: 0; color: var(--pm-muted); }

.lg-proj,
.pm-proj {
  padding: 22px;
  border-radius: 18px;
  background: rgba(18, 24, 48, 0.6);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(16px);
}
.lg-proj h3,
.pm-proj h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
}
.lg-proj p,
.pm-proj p { margin: 0 0 16px; color: var(--pm-muted); }
.lg-proj svg,
.pm-proj svg { width: 100%; height: auto; display: block; }

.lg-cta,
.pm-cta {
  width: min(1100px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: clamp(40px, 6vw, 64px);
  border-radius: 28px;
  text-align: center;
  background: rgba(16, 22, 46, 0.6);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.lg-cta > span,
.pm-cta > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pm-blue-bright);
}
.lg-cta h2,
.pm-cta h2 {
  margin: 10px auto 22px;
  max-width: 18ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.04em;
  color: #fff;
}
.lg-cta .actions,
.pm-cta .actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lg-footer,
.pm-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 56px 20px 72px;
  color: var(--pm-muted);
}
.lg-footer strong,
.pm-footer strong { color: #fff; font-size: 1.15rem; }
.lg-footer span,
.pm-footer span { display: block; color: #fff; font-weight: 700; margin-bottom: 8px; }
.lg-footer a,
.pm-footer a { color: var(--pm-muted); text-decoration: none; }
.lg-footer a:hover,
.pm-footer a:hover { color: var(--pm-blue-bright); }

.lg-reveal,
.pm-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--pm-ease), transform 0.7s var(--pm-ease);
}
.lg-reveal.is-in,
.pm-reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes pmRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes pmDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-1.5%, 1%, 0) scale(1.04); }
}

@media (max-width: 980px) {
  body.theme-liquid .landing-links { display: none; }
  .pm-stats { grid-template-columns: repeat(3, 1fr); }
  .lg-bento .lg-card,
  .lg-bento .lg-card.wide,
  .pm-bento .pm-card,
  .pm-bento .pm-card.wide { grid-column: span 6; }
  .lg-grid-4,
  .lg-grid-3,
  .lg-grid-2,
  .pm-grid-4,
  .pm-grid-3,
  .pm-grid-2,
  .lg-footer,
  .pm-footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body.theme-liquid .landing-nav {
    top: 12px;
    width: calc(100% - 24px);
    margin: 12px auto 0;
    padding: 8px;
    border-radius: 22px;
  }
  body.theme-liquid .landing-login { display: none; }
  .pm-stats { grid-template-columns: repeat(2, 1fr); }
  .lg-bento .lg-card,
  .lg-bento .lg-card.wide,
  .pm-bento .pm-card,
  .pm-bento .pm-card.wide,
  .lg-grid-4,
  .lg-grid-3,
  .lg-grid-2,
  .pm-grid-4,
  .pm-grid-3,
  .pm-grid-2,
  .lg-footer,
  .pm-footer { grid-template-columns: 1fr; }
  .lg-bento .lg-card,
  .pm-bento .pm-card { grid-column: span 12; }
}
