:root {
  --bg: #f6f7ff;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --border: rgba(53, 67, 117, 0.12);
  --text: #12203b;
  --muted: #5e6b8d;
  --muted-soft: #8692b3;
  --purple: #6d5cff;
  --cyan: #1eb8ff;
  --mint: #2fd7a3;
  --coral: #ff6f5c;
  --amber: #ffb648;
  --shadow: 0 18px 60px rgba(77, 92, 152, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 12%, rgba(109, 92, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(30, 184, 255, 0.16), transparent 24%),
    radial-gradient(circle at 70% 82%, rgba(47, 215, 163, 0.14), transparent 28%),
    linear-gradient(180deg, #fcfcff 0%, #f5f7ff 40%, #eef2ff 100%);
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.orb,
.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.orb {
  filter: blur(24px);
  opacity: 0.9;
}

.orb-one {
  width: 340px;
  height: 340px;
  top: 120px;
  left: -40px;
  background: rgba(109, 92, 255, 0.22);
  border-radius: 50%;
}

.orb-two {
  width: 380px;
  height: 380px;
  top: 40px;
  right: -80px;
  background: rgba(30, 184, 255, 0.2);
  border-radius: 50%;
}

.orb-three {
  width: 420px;
  height: 420px;
  right: 12%;
  bottom: -120px;
  background: rgba(47, 215, 163, 0.14);
  border-radius: 50%;
}

.grid {
  background-image:
    linear-gradient(rgba(89, 104, 157, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 104, 157, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 90%);
}

.shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
  position: relative;
}

.panel {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.panel-inset {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 255, 0.82));
}

.hero {
  padding: 28px;
}

.hero-top,
.section-head,
.hero-actions,
.hero-badges,
.legend,
.radar-legend,
.source-links,
.vendor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-top {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.eyebrow,
.section-kicker,
.mini-eyebrow,
.subhead,
.matrix-note,
.matrix-table th,
.axis-label,
.legend-item,
.badge,
.callout-pill {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.mini-eyebrow,
.subhead {
  font-family: "Space Grotesk", sans-serif;
}

.eyebrow,
.section-kicker {
  color: var(--purple);
  font-weight: 700;
}

.mini-eyebrow,
.subhead {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 20px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 11ch;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
  line-height: 1.08;
}

.hero-text,
.plain-list li,
.summary-note,
.matrix-note,
.result-summary,
.rank-card p,
.vendor-card p,
.method-grid p,
.callout-list,
.weight-copy,
.table-feature-copy {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.chip:hover,
.slider-wrap input:hover,
.vendor-link:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: white;
  box-shadow: 0 14px 30px rgba(109, 92, 255, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
}

.badge {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  color: var(--muted);
}

.hero-summary {
  padding: 22px;
}

.plain-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.plain-list li {
  padding-left: 18px;
  position: relative;
}

.plain-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--purple));
  position: absolute;
  left: 0;
  top: 11px;
}

.summary-note {
  margin-top: 14px;
}

.content {
  display: grid;
  gap: 26px;
  margin-top: 26px;
}

.section {
  display: grid;
  gap: 16px;
}

.section-head {
  justify-content: space-between;
  align-items: end;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plain-grid,
.price-grid,
.story-grid {
  display: grid;
  gap: 16px;
}

.plain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-card,
.plain-card,
.price-card,
.story-card,
.rank-card,
.vendor-card,
.quote-card,
.method-grid .panel {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.insight-card strong,
.spotlight-name,
.score-pill {
  font-family: "Space Grotesk", sans-serif;
}

.plain-card,
.price-card,
.story-card,
.quote-card {
  display: grid;
  gap: 12px;
}

.plain-card h3,
.price-card h3,
.story-card h3,
.quote-card h3 {
  font-size: 1.2rem;
}

.matrix-wrap,
.calculator-controls,
.result-spotlight,
.radar-controls,
.radar-stage,
.price-panel,
.quote-panel,
.ask-intro,
.ask-console {
  padding: 22px;
}

.table-scroll {
  overflow-x: auto;
  margin-top: 16px;
}

.matrix-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}

.matrix-table th,
.matrix-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(53, 67, 117, 0.08);
  text-align: center;
}

.matrix-table th:first-child,
.matrix-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  text-align: left;
  background: #f9faff;
}

.matrix-table th:first-child {
  z-index: 2;
}

.matrix-table th {
  color: var(--muted);
  font-weight: 700;
  background: rgba(249, 250, 255, 0.92);
}

.table-feature {
  display: grid;
  gap: 4px;
}

.table-feature-title {
  font-weight: 700;
  color: var(--text);
}

.table-feature-copy {
  font-size: 0.92rem;
}

.signal {
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
}

.signal-2 {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
}

.signal-1 {
  background: linear-gradient(90deg, var(--amber) 50%, rgba(255, 182, 72, 0.14) 50%);
  border-color: rgba(255, 182, 72, 0.5);
}

.signal-0 {
  background: rgba(90, 107, 147, 0.08);
  border-color: rgba(90, 107, 147, 0.16);
}

.legend {
  align-items: center;
}

.legend-item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot-strong {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
}

.dot-partial {
  background: var(--amber);
}

.dot-none {
  background: rgba(90, 107, 147, 0.14);
}

.calculator-layout,
.radar-layout,
.method-grid,
.ask-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 16px;
}

.calculator-output {
  display: grid;
  gap: 16px;
}

.slider-list {
  display: grid;
  gap: 16px;
}

.slider-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(53, 67, 117, 0.08);
}

.slider-head,
.spotlight-top,
.rank-head,
.vendor-head,
.field {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.slider-head {
  align-items: center;
  margin-bottom: 8px;
}

.weight-value,
.score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(109, 92, 255, 0.1);
  color: var(--purple);
  font-weight: 700;
}

.slider-wrap input {
  width: 100%;
  accent-color: var(--purple);
  cursor: pointer;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.chip.is-active {
  background: linear-gradient(135deg, rgba(109, 92, 255, 0.12), rgba(30, 184, 255, 0.12));
  border-color: rgba(109, 92, 255, 0.28);
  color: var(--text);
}

.spaced-top {
  margin-top: 22px;
}

.spotlight-card {
  display: grid;
  gap: 16px;
}

.spotlight-name {
  font-size: 2.1rem;
}

.spotlight-tags,
.rank-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(109, 92, 255, 0.08);
  color: var(--purple);
  font-size: 0.84rem;
  font-weight: 600;
}

.ranking-grid,
.vendor-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.ranking-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.vendor-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.rank-card,
.vendor-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
}

.rank-head,
.vendor-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
}

.rank-head h3,
.vendor-head h3 {
  margin-bottom: 4px;
}

.score-pill {
  flex-shrink: 0;
}

.vendor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(109, 92, 255, 0.08);
  border: 1px solid rgba(109, 92, 255, 0.14);
  color: var(--purple);
  font-weight: 700;
}

.vendor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.price-meta,
.vendor-meta,
.story-meta,
.quote-meta {
  color: var(--muted);
  line-height: 1.6;
}

.price-stack,
.quote-list {
  display: grid;
  gap: 14px;
}

.price-label {
  font-size: 0.8rem;
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.price-visibility {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 215, 163, 0.12);
  color: #1d8d68;
  font-weight: 700;
}

.price-visibility.partial {
  background: rgba(255, 182, 72, 0.14);
  color: #b57510;
}

.price-visibility.low {
  background: rgba(255, 111, 92, 0.12);
  color: #c44d3c;
}

.field {
  align-items: center;
  gap: 14px;
}

.field label {
  font-weight: 600;
}

select {
  width: min(100%, 260px);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
}

textarea {
  width: 100%;
  min-height: 122px;
  resize: vertical;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
}

.radar-callouts {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.callout-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.callout-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  color: var(--muted);
}

.radar-stage {
  display: grid;
  gap: 12px;
}

#radarChart {
  width: 100%;
  height: auto;
}

.radar-legend {
  gap: 16px;
}

.ask-text {
  margin-top: 10px;
  font-size: 1rem;
}

.ask-form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.ask-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.chat-log {
  display: grid;
  gap: 12px;
  max-height: 420px;
  overflow: auto;
  margin-top: 16px;
}

.chat-message {
  display: flex;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-bubble {
  max-width: min(82%, 740px);
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.65;
}

.chat-message.user .chat-bubble {
  background: linear-gradient(135deg, rgba(109, 92, 255, 0.12), rgba(30, 184, 255, 0.12));
}

.chat-role {
  font-size: 0.75rem;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-bottom: 6px;
}

.quote-card {
  background: rgba(255, 255, 255, 0.8);
}

.quote-card blockquote {
  color: var(--text);
  line-height: 1.7;
  font-weight: 500;
}

.quote-source {
  color: var(--muted);
  font-size: 0.94rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}

.method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.source-links a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(109, 92, 255, 0.08);
  color: var(--purple);
  font-weight: 600;
}

.site-footer {
  margin-top: 26px;
  padding: 24px 26px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.footer-block {
  display: grid;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  color: var(--purple);
  font-weight: 700;
}

.vendor-page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
  position: relative;
}

.vendor-page-main {
  display: grid;
  gap: 26px;
  margin-top: 26px;
}

.vendor-hero {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.vendor-hero-grid,
.vendor-breakout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 16px;
}

.vendor-intro-card,
.vendor-proof-card,
.vendor-signal-card,
.vendor-groups-card,
.vendor-notes-card,
.vendor-links-card {
  padding: 22px;
}

.vendor-proof-card,
.vendor-signal-card,
.vendor-groups-card,
.vendor-notes-card,
.vendor-links-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.vendor-proof-grid,
.vendor-mini-grid {
  display: grid;
  gap: 14px;
}

.vendor-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vendor-metric {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(53, 67, 117, 0.08);
  display: grid;
  gap: 8px;
}

.vendor-metric-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: var(--text);
}

.signal-list,
.note-list,
.path-list {
  display: grid;
  gap: 12px;
}

.signal-item,
.note-item,
.path-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(53, 67, 117, 0.08);
}

.signal-label,
.path-title {
  font-weight: 700;
  color: var(--text);
}

.signal-copy,
.path-copy,
.note-item {
  color: var(--muted);
  line-height: 1.65;
}

.spike-list {
  display: grid;
  gap: 14px;
}

.spike-row {
  display: grid;
  gap: 8px;
}

.spike-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.spike-bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(18, 32, 59, 0.08);
  overflow: hidden;
}

.spike-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
}

.vendor-profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1200px) {
  .insight-grid,
  .plain-grid,
  .price-grid,
  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid,
  .vendor-hero-grid,
  .vendor-breakout-layout {
    grid-template-columns: 1fr;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .calculator-layout,
  .radar-layout,
  .method-grid,
  .ask-layout,
  .vendor-mini-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 20px, 1440px);
    padding-top: 14px;
  }

  .hero,
  .matrix-wrap,
  .calculator-controls,
  .result-spotlight,
  .radar-controls,
  .radar-stage {
    padding: 18px;
  }

  .insight-grid,
  .plain-grid,
  .price-grid,
  .story-grid,
  .vendor-grid,
  .ranking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-top,
  .field,
  .section-head,
  .spike-top,
  .rank-head,
  .vendor-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .rank-head,
  .vendor-head {
    grid-template-columns: 1fr;
  }

  select {
    width: 100%;
  }

  .chat-bubble {
    max-width: 100%;
  }

  .ask-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .matrix-table th:first-child,
  .matrix-table td:first-child {
    min-width: 220px;
  }
}

/* Light Trust Center layout */
:root {
  --bg: #f7f9ff;
  --bg2: #fbfcff;
  --bg3: #ffffff;
  --bg4: #eef3ff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --border: rgba(94, 113, 168, 0.16);
  --text: #12203b;
  --muted: #627292;
  --muted-soft: #8695b5;
  --purple: #6b61ff;
  --cyan: #63c5ff;
  --mint: #9bd8ff;
  --coral: #ff8d69;
  --amber: #f3b449;
  --shadow: 0 20px 60px rgba(74, 92, 146, 0.12);
  --accent: #6282ff;
  --accent-mid: #87a7ff;
  --accent-dark: #405dc7;
  --accent-line: rgba(98, 130, 255, 0.18);
  --accent-soft: rgba(98, 130, 255, 0.06);
}

body {
  background:
    linear-gradient(180deg, #fdfdff 0%, #f7f9ff 38%, #eef3ff 100%);
  counter-reset: page-section;
}

.orb,
.grid {
  display: none;
}

.grid-bg,
.grid-bg2,
.glow-tl,
.glow-tr,
.glow-br,
.glow-mid,
.h-line,
.scan,
.corner {
  position: fixed;
  pointer-events: none;
}

.grid-bg,
.grid-bg2 {
  inset: 0;
  z-index: 0;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(98, 130, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 130, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.grid-bg2 {
  background-image:
    linear-gradient(rgba(98, 130, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 130, 255, 0.06) 1px, transparent 1px);
  background-size: 160px 160px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 85%);
}

.glow-tl,
.glow-tr,
.glow-br,
.glow-mid {
  border-radius: 50%;
  z-index: 0;
}

.glow-tl {
  width: 700px;
  height: 700px;
  top: -260px;
  left: -210px;
  background: radial-gradient(circle, rgba(98, 130, 255, 0.16) 0%, rgba(98, 130, 255, 0.05) 42%, transparent 72%);
}

.glow-tr {
  width: 520px;
  height: 520px;
  top: -60px;
  right: -140px;
  background: radial-gradient(circle, rgba(99, 197, 255, 0.12) 0%, transparent 72%);
}

.glow-br {
  width: 640px;
  height: 640px;
  right: -120px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(255, 141, 105, 0.08) 0%, transparent 72%);
}

.glow-mid {
  width: 840px;
  height: 300px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(108, 93, 255, 0.06) 0%, transparent 72%);
}

.h-line {
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(90deg, transparent 0%, rgba(98, 130, 255, 0.12) 20%, rgba(98, 130, 255, 0.24) 50%, rgba(98, 130, 255, 0.12) 80%, transparent 100%);
}

.h-line-1 {
  top: 48px;
}

.h-line-2 {
  top: 49px;
  opacity: 0.38;
}

.scan {
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 197, 255, 0) 10%, rgba(98, 130, 255, 0.9) 40%, rgba(99, 197, 255, 0.55) 50%, rgba(98, 130, 255, 0.9) 60%, rgba(99, 197, 255, 0) 90%, transparent 100%);
  opacity: 0.1;
  animation: scanDown 9s linear infinite;
}

.corner {
  width: 28px;
  height: 28px;
  z-index: 3;
}

.c-tl {
  top: 10px;
  left: 10px;
  border-top: 1px solid rgba(98, 130, 255, 0.45);
  border-left: 1px solid rgba(98, 130, 255, 0.45);
}

.c-tr {
  top: 10px;
  right: 10px;
  border-top: 1px solid rgba(98, 130, 255, 0.45);
  border-right: 1px solid rgba(98, 130, 255, 0.45);
}

.c-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 1px solid rgba(98, 130, 255, 0.45);
  border-left: 1px solid rgba(98, 130, 255, 0.45);
}

.c-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 1px solid rgba(98, 130, 255, 0.45);
  border-right: 1px solid rgba(98, 130, 255, 0.45);
}

.page,
.vendor-page-shell {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 80px;
}

.shell,
.vendor-page-shell {
  width: min(1440px, calc(100% - 32px));
}

.header {
  padding: 36px 52px 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 30px;
  align-items: start;
  border-bottom: 1px solid var(--accent-line);
  position: relative;
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 130, 255, 0.28), transparent);
}

.header-main {
  min-width: 0;
}

.body {
  padding: 0 52px;
  position: relative;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.wm-mark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(98, 130, 255, 0.3);
  background: linear-gradient(135deg, rgba(98, 130, 255, 0.22), rgba(99, 197, 255, 0.18));
  box-shadow: 0 0 0 3px rgba(98, 130, 255, 0.06);
}

.wm-text,
.sys-text,
.sec-label,
.sec-num,
.p-head,
.m-id,
.m-delta,
.pill,
.ops-badge,
.ops-foot,
.ops-li,
.section-kicker,
.mini-eyebrow,
.subhead,
.price-label,
.matrix-table th,
.legend-item,
.chat-role,
.axis-label,
.badge,
.callout-pill {
  font-family: ui-monospace, "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wm-text {
  font-size: 11px;
  color: var(--accent-dark);
}

.sys-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  background: rgba(98, 130, 255, 0.04);
  border: 1px solid rgba(98, 130, 255, 0.12);
  border-radius: 6px;
  padding: 7px 14px;
}

.sys-dot,
.ops-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(98, 130, 255, 0.5);
  animation: pulse 2.2s infinite;
  flex-shrink: 0;
}

.sys-text {
  font-size: 10px;
  color: var(--accent-dark);
}

.hero-title {
  margin-bottom: 6px;
  max-width: 9ch;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-shadow: 0 14px 30px rgba(70, 94, 178, 0.12);
}

.hero-title,
.hero-title .accent {
  color: var(--text);
}

.hero-title .accent {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(98, 130, 255, 0.18);
}

.hero-sub {
  margin: 12px 0 18px;
  font-family: ui-monospace, "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.15em;
}

.hero-text,
.summary-note {
  max-width: 70ch;
  color: var(--muted);
}

.summary-note {
  margin-top: 12px;
}

.hero-actions {
  margin-top: 24px;
}

.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 9px;
  color: var(--accent-dark);
  background: rgba(98, 130, 255, 0.05);
  border: 1px solid rgba(98, 130, 255, 0.12);
  box-shadow: inset 0 0 12px rgba(98, 130, 255, 0.04);
}

.pill-alt {
  color: #2485c3;
  border-color: rgba(99, 197, 255, 0.18);
  background: rgba(99, 197, 255, 0.05);
}

.button,
.ops-btn,
.vendor-link,
.back-link,
.footer-links a,
.source-links a {
  border-radius: 8px;
}

.button {
  min-height: 48px;
  padding: 0 18px;
  font-family: ui-monospace, "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: none;
}

.button-primary,
.ops-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 12px 24px rgba(98, 130, 255, 0.18);
}

.button-secondary {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
}

.ops-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.98) 100%);
  border: 1px solid rgba(98, 130, 255, 0.16);
  box-shadow: 0 18px 38px rgba(98, 130, 255, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.ops-c {
  position: absolute;
  width: 14px;
  height: 14px;
}

.ops-c.tl {
  top: 8px;
  left: 8px;
  border-top: 1px solid rgba(98, 130, 255, 0.6);
  border-left: 1px solid rgba(98, 130, 255, 0.6);
}

.ops-c.tr {
  top: 8px;
  right: 8px;
  border-top: 1px solid rgba(98, 130, 255, 0.6);
  border-right: 1px solid rgba(98, 130, 255, 0.6);
}

.ops-c.bl {
  bottom: 8px;
  left: 8px;
  border-bottom: 1px solid rgba(98, 130, 255, 0.6);
  border-left: 1px solid rgba(98, 130, 255, 0.6);
}

.ops-c.br {
  right: 8px;
  bottom: 8px;
  border-bottom: 1px solid rgba(98, 130, 255, 0.6);
  border-right: 1px solid rgba(98, 130, 255, 0.6);
}

.ops-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 130, 255, 0.45), transparent);
  animation: scanDown 3.6s linear infinite;
}

.ops-glow {
  position: absolute;
  top: -32px;
  right: -32px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 130, 255, 0.12) 0%, transparent 72%);
}

.ops-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 9px;
  color: var(--accent-dark);
}

.ops-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.ops-desc {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ops-div {
  height: 1px;
  background: linear-gradient(90deg, rgba(98, 130, 255, 0.22), transparent);
  margin-bottom: 14px;
}

.ops-list {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.ops-li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  color: var(--muted);
}

.ops-li::before {
  content: "▸";
  color: var(--accent-dark);
  font-size: 8px;
}

.ops-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  font-size: 11px;
}

.ops-foot {
  margin-top: 12px;
  text-align: center;
  font-size: 9px;
  color: var(--muted-soft);
}

.sec-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 38px 0 18px;
}

.sec-label {
  font-size: 10px;
  color: var(--accent-dark);
}

.sec-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(98, 130, 255, 0.28), rgba(98, 130, 255, 0.08), transparent);
}

.sec-num {
  font-size: 9px;
  color: var(--muted-soft);
}

.section {
  counter-increment: page-section;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  padding-bottom: 14px;
  margin: 34px 0 6px;
  border-bottom: 1px solid var(--accent-line);
  position: relative;
}

.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, rgba(98, 130, 255, 0.35), transparent);
}

.section-head > div:first-child {
  display: grid;
  gap: 8px;
}

.section-head h2,
.dash-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.02;
}

.section-kicker {
  font-size: 10px;
  color: var(--accent-dark);
}

.section-head .legend {
  margin-left: auto;
}

.comparison-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.metric {
  position: relative;
  overflow: hidden;
  padding: 18px 20px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.98));
  border: 1px solid rgba(98, 130, 255, 0.12);
  box-shadow: inset 0 0 20px rgba(98, 130, 255, 0.04);
}

.metric::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--cyan));
}

.metric-glow {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 130, 255, 0.08) 0%, transparent 72%);
}

.m-id {
  margin-bottom: 10px;
  font-size: 9px;
  color: var(--muted-soft);
}

.m-val {
  margin-bottom: 4px;
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.m-delta {
  font-size: 9px;
  color: var(--accent-dark);
}

.metric.hi {
  border-color: rgba(98, 130, 255, 0.24);
  box-shadow: inset 0 0 24px rgba(98, 130, 255, 0.06), 0 14px 28px rgba(98, 130, 255, 0.08);
}

.two-col,
.calculator-layout,
.radar-layout,
.method-grid,
.ask-layout,
.story-layout,
.vendor-hero-grid,
.vendor-breakout-layout {
  gap: 12px;
}

.panel,
.panel-inset,
.full-panel,
.matrix-wrap,
.price-panel,
.quote-panel,
.ask-intro,
.ask-console,
.calculator-controls,
.result-spotlight,
.radar-controls,
.radar-stage,
.vendor-proof-card,
.vendor-signal-card,
.vendor-groups-card,
.vendor-notes-card,
.vendor-links-card,
.vendor-intro-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 249, 255, 0.97));
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.panel::before,
.panel-inset::before,
.full-panel::before,
.matrix-wrap::before,
.price-panel::before,
.quote-panel::before,
.ask-intro::before,
.ask-console::before,
.calculator-controls::before,
.result-spotlight::before,
.radar-controls::before,
.radar-stage::before,
.vendor-proof-card::before,
.vendor-signal-card::before,
.vendor-groups-card::before,
.vendor-notes-card::before,
.vendor-links-card::before,
.vendor-intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-dark), transparent 82%);
}

.overview-panels .panel {
  padding: 22px;
}

.plain-grid,
.insight-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.price-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-grid,
.method-grid {
  gap: 12px;
}

.insight-card,
.plain-card,
.price-card,
.story-card,
.rank-card,
.vendor-card,
.quote-card,
.slider-card,
.vendor-metric,
.signal-item,
.note-item,
.path-item {
  border-radius: 8px;
  border: 1px solid rgba(98, 130, 255, 0.12);
  background: rgba(98, 130, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.plain-card h3,
.insight-card h3,
.price-card h3,
.story-card h3,
.rank-card h3,
.vendor-card h3,
.quote-card h3 {
  font-size: 1.12rem;
}

.matrix-note {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(98, 130, 255, 0.04);
  border: 1px solid rgba(98, 130, 255, 0.08);
}

.legend-item {
  font-size: 10px;
  color: var(--muted);
}

.dot-strong,
.signal-2 {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
}

.dot-partial,
.signal-1 {
  background: linear-gradient(90deg, rgba(243, 180, 73, 0.95) 50%, rgba(243, 180, 73, 0.16) 50%);
}

.dot-none,
.signal-0 {
  background: rgba(98, 130, 255, 0.08);
  border-color: rgba(98, 130, 255, 0.14);
}

.matrix-table {
  min-width: 1100px;
}

.matrix-table th,
.matrix-table td {
  border-bottom: 1px solid rgba(98, 130, 255, 0.08);
}

.matrix-table th {
  color: var(--muted);
  background: rgba(248, 250, 255, 0.96);
}

.matrix-table th:first-child,
.matrix-table td:first-child {
  background: rgba(255, 255, 255, 0.98);
}

.chip,
select,
textarea {
  border-radius: 8px;
}

.chip {
  font-family: ui-monospace, "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(98, 130, 255, 0.12);
}

.chip.is-active {
  background: rgba(98, 130, 255, 0.09);
  border-color: rgba(98, 130, 255, 0.24);
}

.score-pill,
.weight-value,
.price-visibility {
  background: rgba(98, 130, 255, 0.08);
  color: var(--accent-dark);
  font-family: ui-monospace, "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
}

.price-visibility.partial {
  background: rgba(243, 180, 73, 0.14);
}

.price-visibility.low {
  background: rgba(255, 141, 105, 0.14);
}

.vendor-link,
.back-link,
.footer-links a,
.source-links a {
  padding: 10px 13px;
  min-height: 40px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(98, 130, 255, 0.12);
  color: var(--accent-dark);
  font-family: ui-monospace, "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag {
  border-radius: 6px;
  background: rgba(98, 130, 255, 0.08);
  color: var(--accent-dark);
  font-family: ui-monospace, "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card blockquote,
.quote-source,
.story-meta,
.price-meta,
.vendor-meta,
.path-copy,
.signal-copy,
.note-item,
.callout-list,
.chat-bubble {
  color: var(--muted);
}

.chat-bubble {
  border-radius: 10px;
  border: 1px solid rgba(98, 130, 255, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.chat-message.user .chat-bubble {
  background: rgba(98, 130, 255, 0.08);
}

.site-footer {
  margin-top: 42px;
  padding: 22px 24px;
}

.site-footer p {
  color: var(--muted);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.footer-block {
  gap: 10px;
}

.vendor-page-main {
  gap: 18px;
  margin-top: 18px;
}

.vendor-hero {
  padding: 32px 34px;
}

.spike-bar {
  background: rgba(98, 130, 255, 0.08);
}

.spike-fill {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
}

@media (max-width: 1200px) {
  .header {
    grid-template-columns: 1fr;
  }

  .comparison-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .body,
  .header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .comparison-metrics,
  .two-col,
  .calculator-layout,
  .radar-layout,
  .ask-layout,
  .story-layout,
  .footer-grid,
  .vendor-hero-grid,
  .vendor-breakout-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .shell,
  .vendor-page-shell {
    width: min(100% - 20px, 1440px);
  }

  .header,
  .body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .comparison-metrics,
  .story-grid,
  .method-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .stat-pills,
  .section-head,
  .legend,
  .footer-links {
    gap: 8px;
  }
}

/* ROI page */
.roi-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: 12px;
}

.roi-inputs,
.roi-output,
.roi-layer-stack,
.roi-primer-grid,
.roi-timeline-grid {
  display: grid;
  gap: 12px;
}

.roi-framework-grid {
  align-items: start;
}

.roi-panel {
  padding: 22px;
}

.roi-form-grid,
.roi-northstar-grid,
.roi-mini-grid {
  display: grid;
  gap: 12px;
}

.roi-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roi-mini-grid,
.roi-northstar-grid,
.roi-timeline-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roi-field {
  display: grid;
  gap: 8px;
}

.roi-field span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.roi-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(98, 130, 255, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
}

.roi-note {
  margin-top: 14px;
}

.roi-summary-copy {
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.roi-summary-copy strong {
  color: var(--text);
}

.roi-layer-card,
.roi-star-card {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(98, 130, 255, 0.12);
  background: rgba(98, 130, 255, 0.03);
  display: grid;
  gap: 10px;
}

.roi-star-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.roi-star-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.32rem;
  color: var(--text);
}

.roi-progress {
  display: grid;
  gap: 8px;
}

.roi-progress-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(98, 130, 255, 0.08);
  overflow: hidden;
}

.roi-progress-fill {
  height: 100%;
  border-radius: 999px;
}

.roi-progress-fill.current {
  background: linear-gradient(135deg, rgba(98, 130, 255, 0.55), rgba(99, 197, 255, 0.45));
}

.roi-progress-fill.target {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.roi-breakdown-list {
  display: grid;
  gap: 10px;
}

.roi-breakdown-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(98, 130, 255, 0.12);
  background: rgba(98, 130, 255, 0.03);
}

.roi-breakdown-metrics {
  display: grid;
  gap: 6px;
  justify-items: end;
  font-family: ui-monospace, "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 0.92rem;
  color: var(--accent-dark);
}

.roi-timeline-card h3 {
  font-size: 1.5rem;
}

@media (max-width: 1200px) {
  .roi-layout,
  .roi-framework-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .roi-form-grid,
  .roi-northstar-grid,
  .roi-mini-grid,
  .roi-timeline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .roi-breakdown-row,
  .roi-star-values {
    grid-template-columns: 1fr;
  }

  .roi-breakdown-metrics {
    justify-items: start;
  }
}
