:root {
  --ink: #080d16;
  --ink-2: #101824;
  --night: #050914;
  --night-2: #0c1320;
  --steel: #a9b2c0;
  --paper: #e8edf4;
  --paper-2: #f7f9fc;
  --copper: #6f7886;
  --champagne: #c5ccd6;
  --metal: linear-gradient(135deg, #4b535f 0%, #aeb6c1 38%, #f3f5f8 52%, #6f7886 100%);
  --line: rgba(197, 204, 214, 0.18);
  --line-strong: rgba(197, 204, 214, 0.36);
  --green: #78d6bd;
  --muted: #a7b0bf;
  --danger: #ff6b5f;
  --ok: #61d394;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 12px;
  --sharp: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--night);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 8%, rgba(165, 174, 188, 0.22), transparent 26rem),
    radial-gradient(circle at 12% 2%, rgba(197, 204, 214, 0.11), transparent 24rem),
    linear-gradient(135deg, rgba(197, 204, 214, 0.05) 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(315deg, rgba(197, 204, 214, 0.04) 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(180deg, #070b14 0%, #0b1220 46%, #10151d 100%);
  color: var(--paper);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(5, 9, 20, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: var(--metal);
  opacity: 0.56;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(197, 204, 214, 0.24));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  color: var(--paper-2);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-sub {
  color: rgba(197, 204, 214, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(197, 204, 214, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.nav-links a,
.nav-menu-toggle {
  color: rgba(232, 237, 244, 0.72);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 13px;
  background: transparent;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active,
.nav-menu:hover .nav-menu-toggle,
.nav-menu:focus-within .nav-menu-toggle {
  color: var(--paper-2);
  border-color: var(--line-strong);
  background: rgba(197, 204, 214, 0.08);
}

.nav-links a.active {
  box-shadow: inset 0 -1px 0 rgba(247, 249, 252, 0.28);
}

.nav-links .nav-cta {
  color: var(--ink);
  background: var(--champagne);
  border-color: transparent;
  box-shadow: 0 16px 42px rgba(112, 122, 136, 0.32);
}

.nav-menu {
  position: relative;
}

.nav-menu-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: none;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--sharp);
  background: rgba(5, 9, 20, 0.97);
  box-shadow: var(--shadow);
}

.nav-menu:hover .nav-menu-panel,
.nav-menu:focus-within .nav-menu-panel {
  display: grid;
  gap: 4px;
}

.nav-links .nav-menu-panel a {
  display: block;
  border-radius: var(--sharp);
  padding: 11px 12px;
  color: rgba(232, 237, 244, 0.76);
}

.nav-links .nav-menu-panel a:hover {
  color: var(--paper-2);
  background: rgba(197, 204, 214, 0.08);
}

.section {
  position: relative;
  padding: clamp(46px, 6vw, 82px) clamp(18px, 4vw, 56px);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 68%, rgba(197, 204, 214, 0.06) 68% 69%, transparent 69%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 22%);
}

.section-inner {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  color: var(--champagne);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.display {
  margin: 10px 0 12px;
  max-width: 860px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 6.8vw, 78px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: var(--paper-2);
}

.lead {
  max-width: 720px;
  color: rgba(232, 237, 244, 0.72);
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.product-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--sharp);
  background: var(--line);
}

.path-step {
  display: grid;
  gap: 5px;
  min-height: 84px;
  padding: 13px;
  color: rgba(232, 237, 244, 0.64);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.path-step:hover,
.path-step.active {
  color: var(--paper-2);
  background: linear-gradient(145deg, rgba(197, 204, 214, 0.14), rgba(255, 255, 255, 0.055));
}

.path-step.active {
  box-shadow: inset 0 0 0 1px rgba(197, 204, 214, 0.2);
}

.path-step small {
  color: var(--champagne);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-step b {
  color: inherit;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.path-step span {
  color: rgba(232, 237, 244, 0.58);
  font-size: 11px;
  line-height: 1.42;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--sharp);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  transition: transform 360ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.nav-menu-toggle:focus-visible,
.path-step:focus-visible,
.module-card:focus-visible {
  outline: 2px solid rgba(247, 249, 252, 0.72);
  outline-offset: 3px;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--ink);
  background: var(--champagne);
  border-color: transparent;
}

.btn-metal {
  color: var(--ink);
  background: var(--metal);
  border-color: transparent;
}

.btn-gold {
  color: var(--ink);
  background: var(--metal);
  border-color: transparent;
}

.btn-secondary {
  color: var(--paper-2);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.hero-grid > div:first-child {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(197, 204, 214, 0.2);
  border-radius: var(--sharp);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.026)),
    rgba(5, 9, 20, 0.58);
  box-shadow: 0 20px 66px rgba(0, 0, 0, 0.26);
}

.hero-grid > div:first-child::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--metal);
  opacity: 0.44;
}

.hero-grid > div:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 92% 10%, rgba(197, 204, 214, 0.12), transparent 16rem),
    repeating-linear-gradient(135deg, rgba(197, 204, 214, 0.04) 0 1px, transparent 1px 14px);
  opacity: 0.72;
}

.hero-grid > div:first-child > * {
  position: relative;
}

.signal-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), transparent 38%),
    linear-gradient(145deg, rgba(9, 14, 24, 0.98), rgba(18, 27, 40, 0.98));
  color: var(--paper-2);
  padding: clamp(24px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.signal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(197, 204, 214, 0.1) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 85% 10%, rgba(165, 174, 188, 0.2), transparent 16rem);
  opacity: 0.34;
  pointer-events: none;
}

.signal-panel > * {
  position: relative;
}

.signal-panel h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(197, 204, 214, 0.16);
  border-radius: var(--sharp);
  background: rgba(255, 255, 255, 0.045);
}

.signal-list strong {
  color: var(--champagne);
}

.signal-list span {
  color: rgba(232, 237, 244, 0.7);
  line-height: 1.5;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--sharp);
  background: var(--line);
}

.trust-item {
  min-height: 104px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-item b {
  display: block;
  margin-bottom: 5px;
  color: var(--paper-2);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.trust-item span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-title {
  margin: 8px 0 0;
  max-width: 760px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--paper-2);
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.section-text {
  max-width: 540px;
  color: rgba(232, 237, 244, 0.68);
  font-size: 15px;
  line-height: 1.72;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.module-card {
  position: relative;
  display: flex;
  min-height: 224px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--sharp);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 22, 0.78);
  color: var(--paper-2);
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.module-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--metal);
  opacity: 0.56;
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 180ms ease;
}

.module-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.module-card:hover::after {
  transform: scaleX(1);
}

.module-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.module-kicker {
  color: var(--champagne);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.module-card h3 {
  margin: 10px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.module-card p {
  margin: 0;
  color: rgba(232, 237, 244, 0.66);
  font-size: 14px;
  line-height: 1.58;
}

.module-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(197, 204, 214, 0.18);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-link {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dark-band {
  background:
    radial-gradient(circle at 82% 16%, rgba(165, 174, 188, 0.18), transparent 24rem),
    linear-gradient(145deg, #050914, #101824);
  color: var(--paper-2);
}

.dark-band .eyebrow,
.dark-band .section-title {
  color: var(--paper-2);
}

.dark-band .section-text {
  color: rgba(232, 237, 244, 0.66);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.workflow-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--sharp);
  background: rgba(255, 255, 255, 0.045);
}

.workflow-step b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: var(--sharp);
  background: var(--metal);
  color: var(--ink);
}

.workflow-step h3 {
  margin: 0 0 8px;
  color: var(--paper-2);
  font-size: 18px;
}

.workflow-step p {
  margin: 0;
  color: rgba(232, 237, 244, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

.snapshot-step b,
.snapshot-step span,
.snapshot-step-num {
  width: auto;
  height: auto;
  margin: 0;
}

.footer {
  padding: 34px clamp(18px, 4vw, 56px);
  background: #050914;
  border-top: 1px solid var(--line);
  color: rgba(232, 237, 244, 0.54);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  font-size: 12px;
}

.footer a {
  color: rgba(197, 204, 214, 0.78);
  text-decoration: none;
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-radius: var(--sharp);
  }

  .nav-menu {
    width: 100%;
  }

  .nav-menu-panel {
    position: static;
    width: 100%;
    min-width: 100%;
  }

  .hero-grid,
  .module-grid,
  .workflow-grid,
  .product-path,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

/* Paid workflow screens should feel like software, not long marketing pages. */
@supports selector(:has(*)) {
  .section:has(.product-path) {
    padding-top: clamp(18px, 2.4vw, 30px) !important;
    padding-bottom: clamp(14px, 2vw, 22px) !important;
  }

  .section:has(.product-path) > .section-inner {
    position: relative;
    overflow: hidden;
    padding: clamp(14px, 2vw, 22px);
    border: 1px solid rgba(197, 204, 214, 0.2);
    border-radius: var(--sharp);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024)),
      rgba(5, 9, 20, 0.5);
    box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
  }

  .section:has(.product-path) > .section-inner::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: var(--metal);
    opacity: 0.36;
  }

  .section:has(.product-path) > .section-inner > * {
    position: relative;
  }

  .section:has(.product-path) .eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 24px !important;
    padding: 5px 8px !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--sharp) !important;
    background: rgba(255, 255, 255, 0.045) !important;
    color: var(--champagne) !important;
    font-size: 10px !important;
    letter-spacing: 0.16em !important;
  }

  .section:has(.product-path) .display {
    max-width: 820px !important;
    margin: 8px 0 7px !important;
    font-family: "Manrope", "Aptos", "Segoe UI", sans-serif !important;
    font-size: clamp(25px, 3.4vw, 38px) !important;
    font-weight: 900 !important;
    line-height: 1.02 !important;
    letter-spacing: -0.058em !important;
  }

  .section:has(.product-path) .lead {
    max-width: 780px !important;
    margin: 0 !important;
    color: rgba(232, 237, 244, 0.68) !important;
    font-size: clamp(13px, 1.4vw, 15px) !important;
    line-height: 1.5 !important;
  }
}

.topbar {
  min-height: 64px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.brand-mark {
  width: 34px !important;
  height: 34px !important;
}

.brand-name {
  font-size: 13px !important;
}

.brand-sub {
  font-size: 9px !important;
}

.nav-links a,
.nav-menu-toggle {
  padding: 7px 10px !important;
  font-size: 11px !important;
}

.product-path {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  margin-top: 16px !important;
  border-color: rgba(197, 204, 214, 0.22) !important;
  background: rgba(197, 204, 214, 0.16) !important;
}

.path-step {
  min-height: 54px !important;
  gap: 2px !important;
  padding: 9px 10px !important;
}

.path-step small {
  font-size: 8px !important;
}

.path-step b {
  font-size: 12px !important;
}

.path-step span {
  font-size: 10px !important;
  line-height: 1.25 !important;
}

.section[style*="padding-top:0"] {
  padding-top: 0 !important;
}

/* Premium-minimal workspace cards for paid/compliance workflow pages. */
.workspace-status,
.report-shell,
.workspace-shell,
.snapshot-grid,
.notice-workspace {
  gap: 12px !important;
}

.panel,
.status-card,
.setup-card,
.report-document,
.snapshot-card,
.detail-panel,
.subpanel,
.section-card,
.toolbar {
  border-color: rgba(197, 204, 214, 0.2) !important;
  border-radius: var(--sharp) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(5, 9, 20, 0.74) !important;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28) !important;
}

.panel,
.form-panel,
.setup-card,
.section-card,
.subpanel,
.status-card,
.priority-panel,
.priority-read,
.metric,
.trust-card,
.snapshot-row,
.action-list li,
.tool-list li,
.audit-list li,
.item-list li,
.list li {
  padding: clamp(11px, 1.5vw, 16px) !important;
}

.panel h2,
.setup-card h2 {
  margin-bottom: 6px !important;
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif !important;
  font-size: clamp(20px, 2.2vw, 28px) !important;
  line-height: 1 !important;
  letter-spacing: -0.055em !important;
}

.panel p,
.setup-card p,
.section-card p {
  font-size: 13px !important;
  line-height: 1.48 !important;
}

.detail-cover,
.snapshot-cover,
.report-cover {
  padding: clamp(18px, 2.8vw, 30px) !important;
  background:
    radial-gradient(circle at 92% 18%, rgba(197, 204, 214, 0.18), transparent 17rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)) !important;
}

.detail-cover h2,
.snapshot-cover h2,
.report-cover h2 {
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.07em !important;
}

.snapshot-body,
.report-body,
.detail-body {
  gap: 12px !important;
  padding: clamp(14px, 2vw, 22px) !important;
}

.metric-grid,
.trust-grid,
.workflow-path,
.cover-meta,
.plan-grid {
  gap: 8px !important;
}

.metric b,
.status-card b,
.cover-meta strong,
.score-block b {
  font-size: clamp(20px, 2.6vw, 30px) !important;
}

.toolbar {
  padding: 11px 12px !important;
}

.button-row {
  gap: 8px !important;
  margin-top: 18px !important;
}

.btn,
.mini-btn,
.generate-btn {
  min-height: 40px !important;
  padding: 9px 13px !important;
  border-radius: var(--sharp) !important;
}

input,
select,
textarea {
  min-height: 40px !important;
  padding: 9px 11px !important;
  border-radius: var(--sharp) !important;
}

textarea {
  min-height: 74px !important;
}

.form-grid,
.setup-grid {
  gap: 10px !important;
  margin-top: 14px !important;
}

.check-grid,
.snapshot-list,
.saved-list,
.item-list,
.list,
.action-list,
.tool-list,
.audit-list {
  gap: 7px !important;
}

.notice {
  margin-top: 10px !important;
  padding: 11px 12px !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.notice-workspace .panel,
.notice-workspace .form-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(5, 9, 20, 0.76) !important;
}

.notice-workspace input,
.notice-workspace textarea,
.notice-workspace .type-btn {
  color: var(--paper-2) !important;
  background: rgba(5, 9, 20, 0.78) !important;
  border-color: var(--line) !important;
}

.notice-workspace .panel-head h2,
.notice-workspace .context-banner b {
  color: var(--paper-2) !important;
}

@media (max-width: 920px) {
  .topbar {
    gap: 12px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .hero-grid > div:first-child,
  .section:has(.product-path) > .section-inner {
    padding: 16px !important;
  }

  .product-path {
    grid-template-columns: 1fr !important;
  }
}
