/*assets/css/app.css */

:root {
  --blue: #0066ff;
  --violet: #7a3cff;
  --cyan: #00d4ff;
  --navy: #081328;
  --black: #0a0f1a;
  --white: #f8fafc;
  --mist: #eef2f7;
  --cloud: #d6dbe3;
  --slate: #647488;
  --steel: #1f2937;
  --panel: rgba(255, 255, 255, .86);
  --panel-solid: #ffffff;
  --ink: #0c1323;
  --muted: #647488;
  --line: rgba(100, 116, 136, .18);
  --glow: rgba(0, 102, 255, .28);
  --risk: #ff4d6d;
  --warn: #ff9f43;
  --success: #00c48c;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(8, 19, 40, .12);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--white); }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% -10%, rgba(0, 212, 255, .22), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(122, 60, 255, .18), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #eef2f7 48%, #f8fafc 100%);
}

a { color: inherit; }
.shell { display: grid; grid-template-columns: 276px minmax(0, 1fr); min-height: 100vh; }
aside {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 24% 10%, rgba(0, 102, 255, .45), transparent 34%),
    radial-gradient(circle at 94% 26%, rgba(122, 60, 255, .42), transparent 28%),
    linear-gradient(180deg, #081328 0%, #050914 100%);
  color: white;
  overflow-y: auto;
}
.brand { display: block; width: 168px; margin: 2px 10px 8px; text-decoration: none; }
.brand img { display: block; width: 100%; height: auto; }
.tag {
  color: rgba(248, 250, 252, .66);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 10px 26px;
}
nav { display: grid; gap: 6px; }
.nav-section {
  color: rgba(248, 250, 252, .42);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 12px 4px;
}
.nav-section:first-child { padding-top: 0; }
nav a {
  position: relative;
  color: rgba(248, 250, 252, .72);
  text-decoration: none;
  padding: 11px 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
nav a:hover { color: white; background: rgba(255, 255, 255, .08); transform: translateX(2px); }
nav a.active {
  color: white;
  background: linear-gradient(135deg, rgba(0, 102, 255, .24), rgba(122, 60, 255, .24));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), 0 14px 34px rgba(0, 102, 255, .14);
}
nav a.active::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 11px;
  bottom: 11px;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
}
main { min-width: 0; padding: 34px; }
.topbar { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 26px; }
h1 {
  margin: 0;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 2;
  letter-spacing: -.02em;
  color: var(--ink);
}
.sub { margin: 10px 0 0; color: var(--muted); max-width: 820px; line-height: 1.5; font-size: 16px; }
h2 { margin: 0 0 14px; font-size: 18px; letter-spacing: -.01em; }
.button {
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  padding: 12px 16px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 14px 34px rgba(0, 102, 255, .22);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 18px 44px rgba(0, 102, 255, .28); filter: saturate(1.08); }
.button:disabled { cursor: wait; opacity: .78; transform: none; filter: grayscale(.08); }
.button.secondary { background: rgba(0, 102, 255, .08); color: var(--blue); box-shadow: none; }
.button.secondary:hover { background: rgba(122, 60, 255, .12); color: var(--violet); }

.grid { display: grid; gap: 16px; }
.hero { grid-template-columns: minmax(0, 1.35fr) 330px; align-items: stretch; }
.columns { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 16px; }
.confidence-layout { grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); margin-top: 16px; }
.metric-row { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.metric-row.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 10px; }
.card, .metric, .auth-card {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.card { padding: 22px; }
.metric { padding: 18px; overflow: hidden; }
.metric::after {
  content: "";
  position: absolute;
  inset: auto 14px 0 14px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--violet));
  opacity: .75;
}
.metric strong { display: block; font-size: clamp(18px, 1.6vw, 30px); color: var(--ink); margin-bottom: 4px; letter-spacing: -.03em; overflow-wrap: anywhere; }
.hero-metric { margin: 8px 0 14px; }
.hero-metric strong { font-size: clamp(24px, 2.4vw, 40px); }
.metric span { color: var(--muted); font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.brief {
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(122, 60, 255, .52), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(0, 212, 255, .34), transparent 30%),
    linear-gradient(135deg, #081328 0%, #0a0f1a 100%);
  border-color: rgba(255, 255, 255, .1);
  overflow: hidden;
}
.brief::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 320px;
  height: 220px;
  background-image: radial-gradient(circle, rgba(0, 212, 255, .55) 1px, transparent 1.5px);
  background-size: 14px 14px;
  transform: rotate(-12deg);
  opacity: .25;
}
.brief .eyebrow, .brief .brief-text { position: relative; z-index: 1; }
.brief-text { font-size: clamp(22px, 2vw, 30px); line-height: 1.28; max-width: 900px; }
.eyebrow { color: var(--blue); text-transform: uppercase; font-size: 12px; letter-spacing: .16em; font-weight: 900; margin-bottom: 14px; }
.brief .eyebrow { color: var(--cyan); }
.score {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 102, 255, .5), rgba(122, 60, 255, .5)) border-box;
  border: 1px solid transparent;
}
.score-number {
  font-size: 76px;
  font-weight: 900;
  line-height: .95;
  color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
}
.score-label { color: var(--muted); font-weight: 800; margin-top: 6px; }
.score-meta { margin-top: 10px; font-size: 13px; font-weight: 850; }
.score-meta.positive { color: var(--blue); }
.score-meta.negative { color: #b4384a; }
.confidence-component { border-top: 1px solid var(--line); padding: 13px 0; }
.confidence-component:first-of-type { border-top: 0; padding-top: 0; }
.confidence-component > div:first-child { display: flex; justify-content: space-between; gap: 14px; align-items: center; font-size: 14px; }
.confidence-component > div:first-child span { color: var(--muted); font-weight: 850; }
.confidence-component p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.confidence-bar { height: 8px; border-radius: 999px; background: rgba(100, 116, 139, .14); overflow: hidden; margin-top: 9px; }
.confidence-bar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--violet)); }
.confidence-trend-card { margin-top: 16px; }
.operating-principle {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 102, 255, .44), rgba(0, 212, 255, .36), rgba(122, 60, 255, .44)) border-box;
  border: 1px solid transparent;
}
.operating-principle h2 { margin-bottom: 6px; }
.section-heading { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.section-heading h2 { margin-bottom: 4px; }
.trend-chart { min-height: 190px; display: grid; align-items: center; }
.trend-chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.trend-chart line { stroke: rgba(100, 116, 139, .22); stroke-width: 1.5; }
.trend-chart polyline { fill: none; stroke: var(--blue); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.trend-chart circle { fill: var(--blue); stroke: #fff; stroke-width: 2; }
.snapshot-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-top: 14px; }
.snapshot-strip div { border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; background: rgba(255, 255, 255, .62); }
.snapshot-strip strong { display: block; font-size: 22px; letter-spacing: -.03em; }
.snapshot-strip span { color: var(--muted); font-size: 12px; font-weight: 800; }
.item { border-top: 1px solid var(--line); padding: 14px 0; }
.item:first-of-type { border-top: 0; padding-top: 0; }
.item h3 { margin: 0 0 6px; font-size: 15px; }
.item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.pill, .status-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: capitalize;
  white-space: nowrap;
}
.pill { margin-bottom: 8px; }
.high { color: #ffccd7; background: #75172c; }
.medium { color: #ffe4bd; background: #7a3b07; }
.low { color: #bef7ff; background: #06475b; }
.empty { color: var(--muted); line-height: 1.58; margin: 0; }

.data-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.data-table th, .data-table td { border-bottom: 1px solid var(--line); padding: 14px 12px; text-align: left; vertical-align: top; }
.data-table th { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; background: rgba(238, 242, 247, .55); }
.data-table td { overflow-wrap: anywhere; }
.data-table .status-cell { width: 112px; min-width: 112px; overflow-wrap: normal; }
.data-table tbody tr { transition: background .16s ease; }
.data-table tbody tr:hover { background: rgba(0, 102, 255, .045); }
.clickable-row { cursor: pointer; }
.clickable-row:hover .table-link { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
.data-table thead th:first-child { border-top-left-radius: var(--radius); }
.data-table thead th:last-child { border-top-right-radius: var(--radius); }
.table-link { color: var(--blue); font-weight: 900; text-decoration: none; }
.table-link:hover { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
.detail-row { display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); padding: 12px 0; }
.detail-row:first-of-type { border-top: 0; padding-top: 0; }
.detail-row span { color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.detail-row strong { text-align: right; overflow-wrap: anywhere; }
.ask-card { margin-bottom: 16px; }
.ask-form textarea { min-height: 140px; font-size: 18px; line-height: 1.45; }
.ask-answer { margin-top: 16px; }
.ask-section { margin-top: 16px; }
.ask-section .item:first-of-type { border-top: 0; }

.logout-form { margin-top: 24px; }
.logout-form button {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: rgba(248, 250, 252, .72);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.logout-form button:hover { color: white; background: rgba(255, 255, 255, .08); }

.marketing-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 46px;
}
.marketing-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.marketing-nav div { display: flex; gap: 14px; align-items: center; }
.marketing-nav a, .ghost-link, .auth-switch a { color: var(--blue); font-weight: 850; text-decoration: none; }
.marketing-brand { display: inline-flex; width: 190px; align-items: center; text-decoration: none; }
.marketing-brand img { display: block; width: 100%; height: auto; }
.marketing-nav a.button, .hero-actions a.button { color: white; }
.marketing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: center;
  min-height: 560px;
  padding: 46px;
  color: white;
  background:
    radial-gradient(circle at 82% 22%, rgba(122, 60, 255, .52), transparent 32%),
    radial-gradient(circle at 12% 82%, rgba(0, 212, 255, .42), transparent 30%),
    linear-gradient(135deg, #081328 0%, #0a0f1a 100%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(8, 19, 40, .28);
  overflow: hidden;
}
.marketing-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 580px;
  height: 320px;
  background-image: radial-gradient(circle, rgba(0, 212, 255, .55) 1px, transparent 1.5px);
  background-size: 15px 15px;
  transform: rotate(-10deg);
  opacity: .25;
}
.marketing-hero > * { position: relative; z-index: 1; }
.marketing-hero h1 { color: white; font-size: clamp(46px, 7vw, 76px); max-width: 880px; }
.marketing-hero .sub { color: rgba(248, 250, 252, .78); font-size: 18px; max-width: 670px; }
.hero-actions { display: flex; gap: 16px; align-items: center; margin-top: 28px; }
.hero-brand-panel {
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}
.hero-brand-panel img { width: 210px; max-width: 100%; height: auto; filter: drop-shadow(0 26px 45px rgba(0, 0, 0, .28)); }
.hero-brand-panel strong { display: block; margin-top: 18px; font-size: 18px; letter-spacing: .12em; text-transform: uppercase; }
.hero-brand-panel span { display: block; margin-top: 6px; color: rgba(248, 250, 252, .68); }
.score-card { min-height: 300px; display: grid; place-items: center; text-align: center; }

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 102, 255, .22), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(122, 60, 255, .2), transparent 28%),
    linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}
.auth-card { width: min(740px, 100%); padding: 30px; }
.google-auth-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 20px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(8, 19, 40, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.google-auth-button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 102, 255, .28);
  box-shadow: 0 18px 44px rgba(0, 102, 255, .14);
}
.google-auth-button span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0066ff, #00d4ff, #7a3cff);
  font-weight: 950;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.form-stack { display: grid; gap: 16px; margin-top: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.outcome-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(0, 102, 255, .14);
  border-radius: 14px;
  background: rgba(0, 102, 255, .04);
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
}
.checkbox-row input { width: auto; }
label { color: var(--ink); font-weight: 850; display: grid; gap: 7px; font-size: 14px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  font-weight: 400;
  background: rgba(255, 255, 255, .84);
  color: var(--ink);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input:focus, textarea:focus, select:focus { border-color: rgba(0, 102, 255, .55); box-shadow: 0 0 0 4px rgba(0, 102, 255, .12); background: white; }
select { appearance: auto; }
.password-field {
  position: relative;
  display: flex;
  align-items: center;
}
.password-field input { padding-right: 74px; }
.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(0, 102, 255, .09);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.password-toggle:hover { background: rgba(0, 102, 255, .14); }
.tag-editor {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(255, 255, 255, .84);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 6px 9px; background: rgba(0, 102, 255, .1); color: var(--blue); font-size: 13px; font-weight: 850; }
.tag-pill button { border: 0; background: transparent; color: var(--blue); cursor: pointer; font: inherit; font-weight: 900; padding: 0 2px; }
.tag-editor input { border: 0; background: transparent; padding: 6px; min-width: 220px; flex: 1; box-shadow: none; }
.tag-editor input:focus { outline: none; box-shadow: none; }
pre { white-space: pre-wrap; overflow-wrap: anywhere; background: rgba(8, 19, 40, .04); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; line-height: 1.5; }
.check-row { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.check-row input { width: auto; accent-color: var(--blue); }
.check-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.button-spinner, .processing-spinner {
  display: inline-block;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: spin .78s linear infinite;
}
.button-spinner { width: 14px; height: 14px; }
.processing-spinner {
  width: 30px;
  height: 30px;
  color: var(--cyan);
  box-shadow: 0 0 22px rgba(0, 212, 255, .36);
  flex: 0 0 auto;
}
.processing-panel {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 2px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 102, 255, .24);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 212, 255, .16), transparent 34%),
    linear-gradient(135deg, rgba(8, 19, 40, .96), rgba(10, 15, 26, .96));
  color: white;
  box-shadow: 0 16px 44px rgba(8, 19, 40, .2);
}
.processing-panel strong { display: block; font-size: 14px; margin-bottom: 3px; }
.processing-panel small { display: block; color: rgba(248, 250, 252, .72); line-height: 1.45; }
.is-processing input, .is-processing textarea, .is-processing select { cursor: wait; }
@keyframes spin { to { transform: rotate(360deg); } }
.inline-form { margin: 0; }
.inline-form .button { padding: 8px 10px; font-size: 13px; }
.action-card { margin-top: 16px; }
.action-list { display: grid; gap: 10px; }
.action-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  overflow: hidden;
}
.action-item[open] {
  border-color: rgba(0, 102, 255, .24);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(8, 19, 40, .08);
}
.action-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(260px, .72fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  cursor: pointer;
  list-style: none;
}
.action-summary::-webkit-details-marker { display: none; }
.action-summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 102, 255, .08);
  font-size: 20px;
  font-weight: 850;
  grid-column: 4;
  grid-row: 1;
}
.action-item[open] .action-summary::after { content: "-"; }
.action-summary .pill { margin-bottom: 0; }
.action-priority, .action-confidence { gap: 5px; }
.action-priority span, .action-confidence span {
  opacity: .74;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.action-summary-main { display: grid; gap: 5px; min-width: 0; }
.action-summary-main strong { overflow-wrap: anywhere; }
.action-summary-main span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.action-summary-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}
.action-summary-meta > span:first-child {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.action-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  gap: 18px;
  padding: 0 14px 14px;
}
.action-detail-main {
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.action-controls {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.integration-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.integration-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 212, 255, .10), transparent 34%),
    rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-soft);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.integration-tile.is-active {
  border-color: rgba(0, 102, 255, .45);
  box-shadow: 0 18px 48px rgba(0, 102, 255, .13);
}
.integration-tile:hover { transform: translateY(-1px); border-color: rgba(0, 102, 255, .32); }
.integration-tile-top, .integration-tile-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.integration-tile .eyebrow { margin: 14px 0 6px; }
.integration-tile h2 { margin: 0 0 8px; font-size: 20px; }
.integration-tile p:not(.eyebrow) { margin: 0; min-height: 44px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.integration-tile-bottom { margin-top: 14px; }
.integration-tile-bottom span { color: var(--muted); font-size: 12px; font-weight: 800; }
.integration-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--violet));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(0, 102, 255, .24);
}
.integration-config-area { max-width: 980px; }
.integration-config-panel { display: none; }
.integration-config-panel.is-active { display: block; }
.integration-crm-help { display: none; }
.integration-crm-help.is-active { display: block; }
.integration-group { max-width: 980px; margin: 22px 0 10px; }
.integration-group .section-heading { margin-bottom: 0; }
.integration-card { max-width: 980px; }
.integration-help { max-width: 980px; margin-top: 16px; }
.integration-heading { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.helper-text { color: var(--muted); font-size: 13px; line-height: 1.45; margin: 8px 0 0; }
.operator-plan {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 102, 255, .18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 212, 255, .10), transparent 34%),
    rgba(248, 250, 252, .92);
}
.operator-plan strong { color: var(--ink); }
.operator-plan ol { margin: 10px 0 0 18px; padding: 0; color: var(--ink); }
.operator-plan li { margin: 5px 0; font-size: 13px; line-height: 1.45; }
.operator-topbar { align-items: flex-start; }
.operator-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  margin-bottom: 18px;
}
.operator-brief, .operator-score {
  border-radius: 18px;
  color: white;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 212, 255, .34), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(122, 60, 255, .36), transparent 34%),
    linear-gradient(135deg, #081328, #0a0f1a);
  box-shadow: 0 28px 70px rgba(8, 19, 40, .24);
}
.operator-brief { padding: 28px; min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; }
.operator-brief h2 { color: white; font-size: 34px; line-height: 1.08; max-width: 920px; margin: 10px 0 24px; }
.operator-brief .eyebrow { color: #78ddff; }
.operator-context { display: flex; flex-wrap: wrap; gap: 10px; }
.operator-context span {
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}
.operator-context strong { color: white; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.operator-score { padding: 26px; display: grid; place-items: center; text-align: center; }
.operator-command-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.operator-command {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-soft);
}
.operator-command strong { display: block; font-size: 28px; line-height: 1; color: var(--ink); }
.operator-command span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.operator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.operator-panel { margin-bottom: 18px; }
.operator-action-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.operator-action {
  border: 1px solid rgba(0, 102, 255, .16);
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .94));
}
.operator-action-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; }
.operator-action h3 { margin: 0 0 8px; font-size: 18px; }
.operator-action p { color: var(--muted); line-height: 1.45; }
.operator-impact { margin-top: 12px; color: var(--blue); font-weight: 950; }
.daily-brief-card h2 { font-size: 22px; line-height: 1.2; }
.daily-brief-card h3 { margin: 0 0 6px; font-size: 14px; }
.brief-history { display: grid; gap: 16px; }
.daily-brief-card { padding: 0; overflow: hidden; }
.daily-brief-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 22px;
  cursor: pointer;
  list-style: none;
}
.daily-brief-summary::-webkit-details-marker { display: none; }
.daily-brief-summary .eyebrow { margin-bottom: 8px; }
.daily-brief-summary h2 { margin-bottom: 0; }
.daily-brief-summary-meta { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.daily-brief-summary-meta .operator-impact { margin-top: 0; white-space: nowrap; }
.daily-brief-summary-meta .lucide { color: var(--muted); transition: transform .18s ease; }
.daily-brief-card[open] .daily-brief-summary-meta .lucide { transform: rotate(180deg); }
.daily-brief-card[open] .daily-brief-summary { border-bottom: 1px solid var(--line); }
.daily-brief-content { padding: 4px 22px 22px; }
.daily-brief-content .columns { margin-top: 18px; }
.settings-subsection { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 18px; }
.settings-subsection h2 { margin-bottom: 4px; }
.status-not_configured { background: #fff4de; color: #8a4c00; }
.status-configured, .status-connected { background: #defcf3; color: #00664a; }
.status-error { background: #ffe3ea; color: #9e1238; }
.execution-status { justify-content: center; min-width: 84px; padding: 7px 10px; }
.status-completed { background: #defcf3; color: #00664a; }
.status-approved { background: #e7efff; color: #004fd6; }
.status-ready { background: #eef2ff; color: #4f46e5; }
.status-failed, .status-rejected { background: #ffe3ea; color: #9e1238; }
.integration-meta { border-top: 1px solid var(--line); margin-top: 18px; padding-top: 14px; display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 13px; }
.help-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.help-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; background: rgba(255, 255, 255, .6); }
.help-item strong { display: block; margin-bottom: 5px; }
.help-item span { color: var(--muted); font-size: 14px; line-height: 1.45; }
.form-error { background: #ffe3ea; border: 1px solid #ffb7c6; color: #9e1238; border-radius: var(--radius); padding: 13px; font-weight: 850; }
.notice { background: #e8f7ff; border: 1px solid #b9e8ff; color: #0055d6; border-radius: var(--radius); padding: 13px; font-weight: 850; margin-bottom: 16px; }

/* Consistent rhythm between top-level application panels. */
.shell > main > section + section,
.shell > main > section + .app-footer,
.shell > main > .notice + section,
.shell > main > .form-error + section {
  margin-top: 16px;
}

.app-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 20px 2px 2px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.app-footer nav { display: flex; gap: 18px; }
.app-footer a {
  color: var(--muted);
  padding: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.app-footer a:hover { color: var(--blue); background: transparent; transform: none; }

@media (max-width: 720px) {
  .daily-brief-summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .daily-brief-summary-meta {
    width: 100%;
    justify-content: space-between;
  }
  .daily-brief-summary-meta .operator-impact { white-space: normal; }
  .app-footer { align-items: flex-start; flex-direction: column; }
}
.auth-switch { color: var(--muted); margin-top: 20px; }

@media (max-width: 1080px) {
  .shell { grid-template-columns: 1fr; }
  aside { position: relative; height: auto; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  main { padding: 22px; }
  .hero, .columns, .confidence-layout, .metric-row, .marketing-hero, .integration-catalog, .operator-hero, .operator-grid, .operator-action-grid, .operator-command-grid { grid-template-columns: 1fr; }
  .topbar { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  main { padding: 18px; }
  nav, .form-grid, .check-grid, .help-grid, .snapshot-strip { grid-template-columns: 1fr; }
  .section-heading, .operating-principle { flex-direction: column; align-items: stretch; }
  .marketing-page { width: min(100% - 24px, 1180px); }
  .marketing-hero { padding: 28px; min-height: auto; }
  .hero-brand-panel { min-height: 240px; }
  .marketing-nav { align-items: flex-start; flex-direction: column; gap: 18px; }
  .marketing-nav div, .hero-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .button { width: 100%; }
  .data-table { font-size: 13px; }
  .data-table th, .data-table td { padding: 11px 9px; }
  .action-summary, .action-detail-grid { grid-template-columns: 1fr; }
  .action-summary::after { grid-column: 1; justify-self: end; }
  .action-summary-meta { justify-content: flex-start; flex-wrap: wrap; text-align: left; }
  .action-summary-meta > span:first-child { max-width: 100%; white-space: normal; }
  .action-controls { justify-content: stretch; }
  .action-controls .button-row, .action-controls .inline-form { width: 100%; }
}


/* === Vexida market-facing homepage rebuild: clean, full-width, operator-led === */
.vm-body {
  margin: 0;
  color: #071225;
  background: #f7f9fc;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.vm-body * { box-sizing: border-box; }
.vm-container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.vm-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(7, 18, 37, .90);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vm-logo { display: inline-flex; width: 170px; text-decoration: none; }
.vm-logo img { display: block; width: 100%; height: auto; }
.vm-nav { display: flex; align-items: center; gap: 28px; }
.vm-nav a, .vm-login {
  color: rgba(248,250,252,.74);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}
.vm-nav a:hover, .vm-login:hover { color: #fff; }
.vm-header-actions { display: flex; align-items: center; gap: 16px; }
.vm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.vm-btn:hover { transform: translateY(-1px); }
.vm-btn-primary { color: #fff; background: linear-gradient(135deg, #0066ff, #00d4ff 52%, #7a3cff); box-shadow: 0 18px 46px rgba(0,102,255,.28); }
.vm-btn-secondary { color: #f8fafc; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.vm-main { background: #f7f9fc; }
.vm-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 78px 0 88px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 18%, rgba(122,60,255,.28), transparent 32%),
    radial-gradient(circle at 10% 78%, rgba(0,212,255,.18), transparent 30%),
    linear-gradient(135deg, #050914 0%, #071225 46%, #0a1230 100%);
}
.vm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}
.vm-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: 10%;
  z-index: -1;
  width: 52vw;
  height: 52vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,102,255,.26), transparent 62%);
  filter: blur(10px);
}
.vm-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 70px; align-items: center; }
.vm-hero-copy { max-width: 790px; }
.vm-eyebrow {
  margin: 0 0 18px;
  color: #78ddff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.vm-eyebrow.dark { color: #0066ff; }
.vm-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 7vw, 94px);
  line-height: .94;
  letter-spacing: -.065em;
  max-width: 860px;
}
.vm-lede { margin: 26px 0 0; max-width: 670px; color: rgba(248,250,252,.76); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
.vm-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 32px; }
.vm-actions.centered { justify-content: center; }
.vm-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.vm-pills span { display: inline-flex; padding: 8px 12px; color: rgba(248,250,252,.82); background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: 13px; font-weight: 850; }
.vm-brief-card, .vm-compact-brief, .vm-answer-box, .vm-memory-card, .vm-card-grid article, .vm-faq details, .vm-forecast {
  border: 1px solid rgba(8,19,40,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 70px rgba(8,19,40,.12);
  backdrop-filter: blur(18px);
}
.vm-brief-card {
  color: #071225;
  padding: 22px;
  max-width: 360px;
  justify-self: end;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,245,255,.90));
  transform: translateY(8px);
}
.vm-card-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 18px; }
.vm-card-top span, .vm-confidence span, .vm-brief-list span, .vm-row span, .vm-memory-card span, .vm-forecast-main span, .vm-forecast-side span {
  color: #647488;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.vm-card-top strong { font-size: 12px; color: #0066ff; }
.vm-confidence {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 20px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0066ff, #7a3cff);
  margin-bottom: 14px;
}
.vm-confidence span { color: rgba(255,255,255,.72); grid-column: 1 / -1; }
.vm-confidence strong { font-size: 64px; letter-spacing: -.08em; line-height: .9; }
.vm-confidence em { align-self: center; font-style: normal; padding: 7px 9px; border-radius: 999px; color: #fff; background: rgba(255,255,255,.16); font-size: 12px; font-weight: 950; }
.vm-brief-list { display: grid; gap: 10px; }
.vm-brief-list div, .vm-row, .vm-memory-card div, .vm-forecast-side div { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 12px; border-radius: 16px; background: rgba(0,102,255,.055); }
.vm-brief-list strong, .vm-row strong, .vm-memory-card strong, .vm-forecast-side strong { text-align: right; font-size: 14px; }
.vm-mini-btn { display: flex; justify-content: center; margin-top: 14px; padding: 12px 14px; color: #fff; text-decoration: none; font-weight: 950; border-radius: 999px; background: #071225; }
.vm-section { padding: 96px 0; }
.vm-white { background: #f7f9fc; }
.vm-soft { background: linear-gradient(180deg, #eef4fb, #f8fafc); }
.vm-dark {
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(0,212,255,.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(122,60,255,.18), transparent 30%),
    linear-gradient(135deg, #050914, #081328);
}
.vm-two-col { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, .78fr); gap: 62px; }
.vm-two-col.vm-align-center { align-items: center; }
.vm-section h2, .vm-final h2 {
  margin: 0;
  color: #071225;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.055em;
}
.vm-dark h2, .vm-dark h3, .vm-final h2 { color: #fff; }
.vm-section p, .vm-copy { color: #647488; font-size: 17px; line-height: 1.6; }
.vm-dark p { color: rgba(248,250,252,.72); }
.vm-answer-box { padding: 28px; }
.vm-answer-box h3 { margin: 0 0 14px; font-size: 24px; letter-spacing: -.025em; }
.vm-answer-box ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.vm-answer-box li { font-weight: 900; }
.vm-answer-box li::before { content: "→"; color: #0066ff; margin-right: 10px; }
.vm-section-head { max-width: 780px; margin-bottom: 34px; }
.vm-section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.vm-section-head p { margin-left: auto; margin-right: auto; max-width: 760px; }
.vm-steps, .vm-card-grid { display: grid; gap: 16px; }
.vm-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vm-card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vm-card-grid article, .vm-steps article { padding: 24px; }
.vm-steps article { border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: rgba(255,255,255,.07); box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.vm-steps span { display: inline-flex; margin-bottom: 38px; color: #00d4ff; font-weight: 950; }
.vm-steps h3, .vm-card-grid h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.025em; }
.vm-steps p, .vm-card-grid p { margin: 0; font-size: 15px; line-height: 1.55; }
.vm-compact-brief { padding: 22px; max-width: 470px; justify-self: end; }
.vm-compact-brief h3 { margin: 0 0 16px; font-size: 34px; line-height: 1.04; letter-spacing: -.045em; }
.vm-impact { margin-top: 14px; padding: 14px; border-radius: 16px; color: #0066ff; background: rgba(0,102,255,.08); font-weight: 950; text-align: center; }
.vm-memory-card { display: grid; gap: 12px; padding: 18px; max-width: 490px; }
.vm-forecast { display: grid; grid-template-columns: .9fr 1fr; gap: 18px; padding: 22px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.vm-forecast-main { display: grid; place-content: center; min-height: 260px; text-align: center; color: #fff; border-radius: 24px; background: linear-gradient(135deg, #0066ff, #7a3cff); }
.vm-forecast-main span, .vm-forecast-main em { color: rgba(255,255,255,.72); font-style: normal; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; font-size: 12px; }
.vm-forecast-main strong { margin-top: 10px; font-size: clamp(44px, 6vw, 76px); letter-spacing: -.06em; line-height: .9; }
.vm-forecast-side { display: grid; gap: 12px; }
.vm-forecast-side div { background: rgba(255,255,255,.08); }
.vm-forecast-side strong { color: #fff; font-size: 22px; }
.vm-logo-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.vm-logo-cloud span { display: inline-flex; align-items: center; min-height: 48px; padding: 12px 18px; border: 1px solid rgba(8,19,40,.08); border-radius: 999px; background: #fff; color: #071225; font-weight: 950; box-shadow: 0 12px 34px rgba(8,19,40,.06); }
.vm-faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.vm-faq details { padding: 22px; }
.vm-faq summary { cursor: pointer; font-weight: 950; font-size: 18px; }
.vm-faq p { margin: 12px 0 0; font-size: 15px; }
.vm-final { padding: 92px 0; text-align: center; color: #fff; background: linear-gradient(135deg, #081328, #0a0f1a); }
.vm-final h2 { max-width: 900px; margin: 0 auto; }
.vm-footer { padding: 52px 0; color: rgba(248,250,252,.70); background: #050914; }
.vm-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 34px; }
.vm-footer img { width: 168px; display: block; }
.vm-footer h4 { color: #fff; margin: 0 0 12px; }
.vm-footer a { display: block; color: rgba(248,250,252,.68); text-decoration: none; margin: 9px 0; font-weight: 760; }
.vm-footer a:hover { color: #fff; }
.vm-footer-bottom { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; }
@media (max-width: 1080px) {
  .vm-nav { display: none; }
  .vm-hero-grid, .vm-two-col, .vm-forecast { grid-template-columns: 1fr; }
  .vm-brief-card, .vm-compact-brief { justify-self: start; max-width: 520px; }
  .vm-steps, .vm-card-grid.four, .vm-faq, .vm-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .vm-header { height: auto; min-height: 70px; padding: 14px 18px; }
  .vm-logo { width: 146px; }
  .vm-login { display: none; }
  .vm-container { width: min(100% - 28px, 1180px); }
  .vm-hero { min-height: auto; padding: 54px 0 62px; }
  .vm-hero h1 { font-size: clamp(46px, 16vw, 66px); }
  .vm-actions, .vm-header-actions { gap: 10px; }
  .vm-actions .vm-btn { width: 100%; }
  .vm-section { padding: 68px 0; }
  .vm-steps, .vm-card-grid.four, .vm-faq, .vm-footer-grid { grid-template-columns: 1fr; }
  .vm-forecast-main { min-height: 210px; }
}

/* === Vexida homepage cleanup: full-width sections, image hero, no daily brief card === */
html, body.vm-body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #f7f9fc;
}

.vm-main,
.vm-section,
.vm-hero,
.vm-final,
.vm-footer {
  width: 100%;
  margin: 0;
}

.vm-header {
  left: 0;
  right: 0;
  width: 100%;
}

.vm-container {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.vm-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 86px 0 96px;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .94) 0%, rgba(8, 19, 40, .86) 46%, rgba(5, 9, 20, .52) 100%),
    linear-gradient(180deg, rgba(5, 9, 20, .20), rgba(5, 9, 20, .78)),
    url('/assets/images/revenue.webp') center right / cover no-repeat;
}

.vm-hero::before {
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 72% 22%, rgba(0,102,255,.28), transparent 34%);
  background-size: 52px 52px, 52px 52px, auto;
  opacity: .9;
}

.vm-hero::after {
  display: none;
}

.vm-hero-grid {
  display: block;
}

.vm-hero-copy {
  max-width: 920px;
}

.vm-hero h1 {
  max-width: 970px;
  font-size: clamp(58px, 8vw, 106px);
}

.vm-lede {
  max-width: 760px;
}

.vm-white,
.vm-soft {
  width: 100%;
}

.vm-white {
  background: #f7f9fc;
}

.vm-soft {
  background: linear-gradient(180deg, #eef4fb 0%, #f8fafc 100%);
}

.vm-dark {
  width: 100%;
}

.vm-section {
  padding: 100px 0;
}

.vm-final {
  padding: 100px 0;
}

.vm-footer {
  padding: 56px 0;
}

.vm-two-col {
  grid-template-columns: minmax(0, .96fr) minmax(320px, .82fr);
}

.vm-card-grid article,
.vm-answer-box,
.vm-memory-card,
.vm-faq details,
.vm-forecast {
  border-radius: 22px;
}

@media (max-width: 1080px) {
  .vm-hero {
    min-height: auto;
    padding: 72px 0 82px;
    background-position: center center;
  }
}

/* === LUCIDE ICON SYSTEM === */
[data-lucide],
.lucide {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  stroke: currentColor;
}

.button,
.vm-btn,
.logout-form button,
.password-toggle,
.vm-pills span,
.status-badge,
.notice,
.form-error {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice [data-lucide],
.notice .lucide,
.form-error [data-lucide],
.form-error .lucide {
  width: 18px;
  height: 18px;
}

.status-badge [data-lucide],
.status-badge .lucide {
  width: 13px;
  height: 13px;
}

nav a {
  display: flex;
  align-items: center;
  gap: 11px;
}

nav a [data-lucide],
nav a .lucide {
  width: 17px;
  height: 17px;
  opacity: .78;
}

nav a.active [data-lucide],
nav a.active .lucide,
nav a:hover [data-lucide],
nav a:hover .lucide {
  opacity: 1;
}

.logout-form button {
  display: flex;
  justify-content: flex-start;
}

.topbar h1 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar h1 [data-lucide],
.topbar h1 .lucide {
  width: .8em;
  height: .8em;
  color: var(--blue);
}

.integration-mark {
  display: inline-grid;
  place-items: center;
}

.integration-mark [data-lucide],
.integration-mark .lucide {
  width: 24px;
  height: 24px;
}

.password-toggle {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  padding: 0 11px;
}

.password-toggle [data-lucide],
.password-toggle .lucide {
  width: 18px;
  height: 18px;
}

.vm-pills span {
  display: inline-flex;
}

.vm-pills [data-lucide],
.vm-pills .lucide {
  width: 15px;
  height: 15px;
  color: #78ddff;
}

@media (max-width: 720px) {
  .vm-container {
    width: min(100% - 28px, 1180px);
  }
  .vm-hero {
    padding: 56px 0 68px;
  }
  .vm-section,
  .vm-final {
    padding: 72px 0;
  }
}

/* === TYPOGRAPHY REFINEMENT: confident without compressed heavy type === */
body {
  font-weight: 400;
  font-synthesis-weight: none;
}

h1,
h2,
h3,
h4,
.brief-text,
.score-number,
.metric strong,
.operator-command strong,
.operator-action h3 {
  font-weight: 700;
  letter-spacing: 0;
}

h1 { line-height: 1.08; }
h2 { line-height: 1.18; }

.button,
label,
.nav-section,
.eyebrow,
.metric span,
.score-label,
.score-meta,
.confidence-component > div:first-child span,
.snapshot-strip span,
.table-link,
.detail-row span,
.tag-pill,
.integration-tile-bottom span,
.operator-command span,
.operator-impact,
.form-error,
.notice {
  font-weight: 650;
}

nav a,
.helper-text strong,
.item strong,
.detail-row strong,
.operator-plan strong {
  font-weight: 600;
}

body.vm-body .vm-nav a,
body.vm-body .vm-login,
body.vm-body .vm-btn,
body.vm-body .vm-eyebrow,
body.vm-body .vm-pills span,
body.vm-body .vm-card-top span,
body.vm-body .vm-confidence span,
body.vm-body .vm-brief-list span,
body.vm-body .vm-row span,
body.vm-body .vm-memory-card span,
body.vm-body .vm-forecast-main span,
body.vm-body .vm-forecast-main em,
body.vm-body .vm-forecast-side span,
body.vm-body .vm-mini-btn,
body.vm-body .vm-answer-box li,
body.vm-body .vm-steps span,
body.vm-body .vm-impact,
body.vm-body .vm-logo-cloud span,
body.vm-body .vm-faq summary,
body.vm-body .vm-footer a {
  font-weight: 650;
}

body.vm-body .vm-hero h1 {
  max-width: 900px !important;
  font-size: clamp(52px, 6.5vw, 86px) !important;
  font-weight: 700 !important;
  line-height: 1.01 !important;
  letter-spacing: -.025em !important;
  text-wrap: balance;
}

body.vm-body .vm-section h2,
body.vm-body .vm-final h2 {
  font-size: clamp(34px, 4.3vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
}

body.vm-body .vm-steps h3,
body.vm-body .vm-card-grid h3,
body.vm-body .vm-answer-box h3,
body.vm-body .vm-compact-brief h3 {
  font-weight: 650;
  letter-spacing: -.01em;
}

body.vm-body .vm-confidence strong,
body.vm-body .vm-forecast-main strong,
body.vm-body .vm-brief-list strong,
body.vm-body .vm-row strong,
body.vm-body .vm-memory-card strong,
body.vm-body .vm-forecast-side strong {
  font-weight: 700;
  letter-spacing: -.02em;
}

@media (max-width: 720px) {
  body.vm-body .vm-hero h1 {
    font-size: clamp(42px, 12vw, 58px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.018em !important;
  }

  body.vm-body .vm-section h2,
  body.vm-body .vm-final h2 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.1;
  }
}

/* === PUBLIC LEGAL PAGES === */
.legal-body {
  margin: 0;
  color: #0c1323;
  background: #f7f9fc;
}
.legal-body main { min-width: 0; padding: 0; }
.legal-container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  background: rgba(7, 18, 37, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.legal-logo { display: inline-flex; width: 165px; }
.legal-logo img { display: block; width: 100%; height: auto; }
.legal-header nav { display: flex; align-items: center; gap: 22px; }
.legal-header a { color: rgba(248,250,252,.76); padding: 0; border-radius: 0; text-decoration: none; font-size: 14px; font-weight: 600; }
.legal-header a:hover { color: #fff; }
.legal-header .legal-login { padding: 10px 15px; color: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; }
.legal-hero {
  padding: 84px 0 78px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(122,60,255,.32), transparent 32%),
    radial-gradient(circle at 14% 100%, rgba(0,212,255,.18), transparent 30%),
    linear-gradient(135deg, #050914, #081328);
}
.legal-eyebrow {
  margin: 0 0 14px;
  color: #78ddff;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.legal-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
}
.legal-hero p { max-width: 720px; margin: 20px 0 16px; color: rgba(248,250,252,.74); font-size: 18px; line-height: 1.6; }
.legal-hero span { color: rgba(248,250,252,.56); font-size: 13px; }
.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding: 64px 0 88px;
}
.legal-toc {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 3px;
  max-height: calc(100vh - 132px);
  overflow: auto;
  padding: 20px 16px;
  background: #f8fafc;
  border: 1px solid rgba(100,116,136,.16);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(8,19,40,.07);
}
.legal-toc strong { margin: 0 10px 10px; font-size: 13px; color: #0c1323; }
.legal-toc a {
  padding: 8px 10px;
  color: #475569;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.35;
}
.legal-toc a:hover,
.legal-toc a:focus-visible { color: #004fd6; background: #eaf1ff; }
.legal-content {
  min-width: 0;
  padding: 38px 44px;
  background: #fff;
  border: 1px solid rgba(100,116,136,.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(8,19,40,.08);
}
.legal-content section { scroll-margin-top: 108px; padding: 30px 0; border-top: 1px solid rgba(100,116,136,.16); }
.legal-content .legal-intro { padding-top: 0; border-top: 0; }
.legal-content h2 { margin: 0 0 16px; color: #0c1323; font-size: 25px; font-weight: 700; line-height: 1.2; }
.legal-content h3 { margin: 24px 0 10px; color: #1f2937; font-size: 17px; font-weight: 650; }
.legal-content p, .legal-content li { color: #475569; font-size: 16px; line-height: 1.72; }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { display: grid; gap: 8px; margin: 12px 0 18px; padding-left: 22px; }
.legal-content li::marker { color: #0066ff; }
.legal-content .legal-emphasis { padding: 14px 16px; color: #172033; background: #eef4ff; border-left: 3px solid #0066ff; font-weight: 650; }
.legal-contact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 24px !important;
  border: 1px solid rgba(0,102,255,.14) !important;
  border-radius: 8px;
  background: rgba(0,102,255,.05);
}
.legal-contact .lucide { width: 23px; height: 23px; color: #0066ff; }
.legal-contact h2 { margin-bottom: 5px; font-size: 20px; }
.legal-contact p { margin: 0; }
.legal-contact a { color: #0066ff; font-weight: 600; }
.legal-footer { padding: 28px 0; color: rgba(248,250,252,.62); background: #050914; }
.legal-footer .legal-container { display: flex; justify-content: space-between; gap: 22px; align-items: center; font-size: 13px; }
.legal-footer nav { display: flex; gap: 20px; }
.legal-footer a { color: rgba(248,250,252,.68); padding: 0; border-radius: 0; text-decoration: none; }
.legal-footer a:hover { color: #fff; }

@media (max-width: 820px) {
  .legal-header nav a:not(.legal-login) { display: none; }
  .legal-layout { grid-template-columns: 1fr; gap: 24px; padding-top: 36px; }
  .legal-toc { position: static; max-height: none; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
  .legal-toc strong { grid-column: 1 / -1; }
  .legal-content { padding: 28px 24px; }
}

@media (max-width: 560px) {
  .legal-container { width: min(100% - 28px, 1120px); }
  .legal-header { min-height: 68px; padding: 0 14px; }
  .legal-logo { width: 145px; }
  .legal-hero { padding: 60px 0 54px; }
  .legal-hero h1 { font-size: 44px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-content { padding: 22px 18px; }
  .legal-footer .legal-container { align-items: flex-start; flex-direction: column; }
}

/* === FINAL MARKET HOMEPAGE OVERRIDES: true edge-to-edge sections, no top gap, revenue image hero === */
html,
body.vm-body {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  background: #f7f9fc !important;
}

body.vm-body .vm-main {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #f7f9fc !important;
  overflow: hidden !important;
}

body.vm-body .vm-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  width: 100% !important;
  height: 82px !important;
  margin: 0 !important;
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) !important;
  background: rgba(7, 18, 37, .96) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: none !important;
}

body.vm-body .vm-hero,
body.vm-body .vm-section,
body.vm-body .vm-final,
body.vm-body .vm-footer {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  border-radius: 0 !important;
}

body.vm-body .vm-hero {
  margin-top: 0 !important;
  padding: 92px 0 104px !important;
  min-height: calc(100vh - 82px) !important;
  display: flex !important;
  align-items: center !important;
  color: #fff !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .95) 0%, rgba(8, 19, 40, .86) 45%, rgba(5, 9, 20, .54) 100%),
    linear-gradient(180deg, rgba(5, 9, 20, .18), rgba(5, 9, 20, .78)),
    url('/assets/images/revenue.webp') center right / cover no-repeat !important;
}

body.vm-body .vm-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  opacity: .9 !important;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 72% 22%, rgba(0,102,255,.26), transparent 34%) !important;
  background-size: 52px 52px, 52px 52px, auto !important;
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%) !important;
}

body.vm-body .vm-hero::after { display: none !important; }

body.vm-body .vm-container {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.vm-body .vm-hero-grid {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  width: min(1180px, calc(100% - 48px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.vm-body .vm-hero-copy {
  max-width: 920px !important;
}

body.vm-body .vm-hero h1 {
  max-width: 970px !important;
  color: #fff !important;
  font-size: clamp(58px, 8vw, 106px) !important;
  line-height: .92 !important;
  letter-spacing: -.07em !important;
}

body.vm-body .vm-lede {
  max-width: 760px !important;
}

body.vm-body .vm-brief-card,
body.vm-body .vm-compact-brief,
body.vm-body .daily-brief-card {
  display: none !important;
}

body.vm-body .vm-section {
  padding: 100px 0 !important;
}

body.vm-body .vm-white {
  background: #f7f9fc !important;
}

body.vm-body .vm-soft {
  background: linear-gradient(180deg, #eef4fb 0%, #f8fafc 100%) !important;
}

body.vm-body .vm-dark {
  color: #fff !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(0,212,255,.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(122,60,255,.18), transparent 30%),
    linear-gradient(135deg, #050914, #081328) !important;
}

body.vm-body .vm-final {
  padding: 100px 0 !important;
  color: #fff !important;
  text-align: center !important;
  background: linear-gradient(135deg, #081328, #0a0f1a) !important;
}

body.vm-body .vm-footer {
  padding: 56px 0 !important;
  background: #050914 !important;
}

body.vm-body .vm-two-col {
  grid-template-columns: minmax(0, .96fr) minmax(320px, .82fr) !important;
}

body.vm-body .vm-card-grid article,
body.vm-body .vm-answer-box,
body.vm-body .vm-memory-card,
body.vm-body .vm-faq details,
body.vm-body .vm-forecast {
  border-radius: 22px !important;
}

@media (max-width: 1080px) {
  body.vm-body .vm-header {
    padding: 0 24px !important;
  }
  body.vm-body .vm-hero {
    min-height: auto !important;
    padding: 76px 0 86px !important;
    background-position: center center !important;
  }
  body.vm-body .vm-two-col,
  body.vm-body .vm-two-col.vm-align-center,
  body.vm-body .vm-forecast {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  body.vm-body .vm-header {
    min-height: 70px !important;
    height: auto !important;
    padding: 14px 18px !important;
  }
  body.vm-body .vm-container,
  body.vm-body .vm-hero-grid {
    width: min(100% - 28px, 1180px) !important;
  }
  body.vm-body .vm-hero {
    padding: 58px 0 72px !important;
  }
  body.vm-body .vm-hero h1 {
    font-size: clamp(46px, 16vw, 66px) !important;
  }
  body.vm-body .vm-section,
  body.vm-body .vm-final {
    padding: 72px 0 !important;
  }
}

/* Keep these typography rules after all layout overrides. */
body.vm-body .vm-hero h1 {
  max-width: 900px !important;
  font-size: clamp(52px, 6.5vw, 86px) !important;
  font-weight: 700 !important;
  line-height: 1.01 !important;
  letter-spacing: -.025em !important;
  text-wrap: balance;
}

body.vm-body .vm-section h2,
body.vm-body .vm-final h2 {
  font-size: clamp(34px, 4.3vw, 60px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -.02em !important;
  text-wrap: balance;
}

@media (max-width: 720px) {
  body.vm-body .vm-hero h1 {
    font-size: clamp(42px, 12vw, 58px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.018em !important;
  }

  body.vm-body .vm-section h2,
  body.vm-body .vm-final h2 {
    font-size: clamp(32px, 10vw, 46px) !important;
    line-height: 1.1 !important;
  }
}

/* === Vexida homepage demo video section === */
body.vm-body .vm-demo-section {
  position: relative;
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 212, 255, .12), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(122, 60, 255, .14), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%) !important;
}

.vm-demo-frame {
  position: relative;
  max-width: 980px;
  margin: 34px auto 0;
  padding: 10px;
  border-radius: 28px;
  background:
    linear-gradient(#071225, #071225) padding-box,
    linear-gradient(135deg, rgba(0, 102, 255, .85), rgba(0, 212, 255, .7), rgba(122, 60, 255, .85)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 34px 90px rgba(8, 19, 40, .22), 0 0 70px rgba(0, 102, 255, .18);
  overflow: hidden;
}

.vm-demo-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
  z-index: 2;
}

.vm-demo-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 20px;
  background: #050914;
  object-fit: cover;
}

.vm-demo-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
}

.vm-demo-caption span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 13px;
  color: #071225;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(8,19,40,.08);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(8,19,40,.06);
  font-size: 13px;
  font-weight: 650;
}

.vm-demo-caption .lucide {
  width: 16px;
  height: 16px;
  color: #0066ff;
}

@media (max-width: 720px) {
  .vm-demo-frame {
    margin-top: 24px;
    padding: 6px;
    border-radius: 18px;
  }
  .vm-demo-frame video,
  .vm-demo-frame::before {
    border-radius: 13px;
  }
  .vm-demo-frame::before {
    inset: 6px;
  }
  .vm-demo-caption {
    justify-content: flex-start;
  }
}
