:root {
  --ink: #101b18;
  --ink-soft: #43504c;
  --ink-muted: #74807c;
  --night: #07100e;
  --night-soft: #0c1714;
  --night-card: #111e1a;
  --paper: #f8f8f3;
  --paper-deep: #f0f1e9;
  --white: #ffffff;
  --line: #dfe3da;
  --line-dark: rgba(231, 244, 237, 0.13);
  --mint: #77e5bb;
  --mint-bright: #98f0ce;
  --mint-dark: #126947;
  --blue: #7eb5ff;
  --amber: #ffc96b;
  --rose: #ff8e8e;
  --lilac: #bba8ff;
  --shadow-soft: 0 24px 70px rgba(15, 30, 24, 0.1);
  --shadow-deep: 0 35px 100px rgba(0, 0, 0, 0.38);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --mono: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
  --container: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

::selection {
  color: var(--night);
  background: var(--mint);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
strong,
b {
  font-weight: 650;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid rgba(119, 229, 187, 0.48);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(92px, 8.4vw, 126px) 0;
}

.section[data-chapter]::before {
  content: attr(data-chapter);
  position: absolute;
  top: 27px;
  left: max(24px, calc((100vw - var(--container)) / 2));
  color: #8d9893;
  font: 700 7px/1 var(--mono);
  letter-spacing: 0.14em;
}

.report-section[data-chapter]::before,
.loop-section[data-chapter]::before {
  color: #465650;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--night);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 16, 14, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 27px;
  height: 27px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3px;
  padding: 5px;
  border-radius: 8px;
  background: var(--mint);
}

.brand-logo {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  border-radius: 9px;
}

.brand-logo-small { width: 24px; height: 24px; border-radius: 7px; }

.dashboard-rail-brand.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.brand-mark span {
  display: block;
  height: 2px;
  background: var(--night);
  border-radius: 10px;
}

.brand-mark span:nth-child(1) { width: 17px; }
.brand-mark span:nth-child(2) { width: 12px; }
.brand-mark span:nth-child(3) { width: 7px; }
.brand-mark-small { width: 24px; height: 24px; padding: 5px 4px; }
.brand-mark-small span:nth-child(1) { width: 15px; }
.brand-mark-small span:nth-child(2) { width: 10px; }
.brand-mark-small span:nth-child(3) { width: 6px; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 550;
}

.primary-nav > a:not(.button) {
  position: relative;
  transition: color 0.2s ease;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav > a:not(.button):hover {
  color: var(--white);
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease;
}

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 39px;
  padding-inline: 17px;
  font-size: 12px;
}

.button-light {
  background: var(--white);
  color: var(--night);
}

.button-light:hover {
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.button-primary {
  background: var(--mint);
  color: #06110e;
  box-shadow: 0 10px 30px rgba(94, 222, 173, 0.15);
}

.button-primary:hover {
  background: var(--mint-bright);
  box-shadow: 0 13px 35px rgba(94, 222, 173, 0.22);
}

.button:disabled {
  cursor: default;
  transform: none;
  opacity: 0.88;
}

.button-outline {
  border-color: #cbd2c8;
  background: transparent;
}

.button-outline:hover {
  border-color: var(--mint-dark);
  background: #eef9f3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  color: #39745c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 21px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.eyebrow-dark {
  color: var(--mint);
}

.hero-copy .eyebrow::before {
  display: none;
}

.pulse-dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(119, 229, 187, 0.35);
  border-radius: inherit;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.7); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero {
  position: relative;
  min-height: 950px;
  padding: 160px 0 0;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--night);
  background-size: 58px 58px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(4, 10, 8, 0.7));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 700px;
  height: 700px;
  top: -290px;
  right: -80px;
  background: radial-gradient(circle, rgba(46, 153, 112, 0.16), transparent 68%);
}

.hero-glow-two {
  width: 480px;
  height: 480px;
  left: -180px;
  top: 200px;
  background: radial-gradient(circle, rgba(87, 122, 181, 0.11), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 555px minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 70px;
}

.hero h1 {
  max-width: 570px;
  margin-bottom: 25px;
  font-size: clamp(50px, 4.7vw, 68px);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

h1 em,
h2 em {
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 em {
  display: block;
  color: var(--mint);
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 30px;
  color: #aab9b4;
  font-size: 17px;
  line-height: 1.7;
}

.hero-form,
.cta-form {
  position: relative;
  max-width: 530px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.hero-form input,
.cta-form input {
  min-width: 0;
  height: 49px;
  padding: 0 15px;
  color: var(--white);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

.hero-form input::placeholder,
.cta-form input::placeholder {
  color: #778783;
}

.hero-form:focus-within,
.cta-form:focus-within {
  border-color: rgba(119, 229, 187, 0.48);
  box-shadow: 0 0 0 3px rgba(119, 229, 187, 0.07);
}

.hero-form input[aria-invalid="true"],
.cta-form input[aria-invalid="true"] {
  color: #ffd0cd;
}

.form-error {
  position: absolute;
  left: 8px;
  top: calc(100% + 7px);
  margin: 0;
  color: #ffaaa7;
  font-size: 12px;
}

.hero-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding: 0 4px;
  color: #a9b8b3;
  font-size: 12px;
  font-weight: 700;
}

.hero-secondary span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--mint);
  border: 1px solid rgba(119, 229, 187, 0.2);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-secondary:hover {
  color: var(--white);
}

.hero-secondary:hover span {
  background: rgba(119, 229, 187, 0.08);
  transform: translateY(2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.hero-trust p {
  margin: 0;
  color: #7f908a;
  font-size: 12px;
}

.hero-trust strong {
  color: #b9c7c2;
  font-weight: 650;
}

.hero-trust p > span {
  display: block;
  margin-top: 2px;
  color: #53635d;
  font-size: 10px;
}

.privacy-seal {
  width: 64px;
  height: 36px;
  flex: 0 0 64px;
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: center;
  overflow: hidden;
  color: var(--mint);
  border: 1px solid rgba(119, 229, 187, 0.22);
  border-radius: 8px;
  background: rgba(119, 229, 187, 0.055);
}

.privacy-seal span {
  height: 100%;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(119, 229, 187, 0.16);
  font: 800 7px/1 var(--mono);
  letter-spacing: 0.03em;
}

.privacy-seal i {
  display: block;
  padding: 0 5px;
  color: #698078;
  font: normal 700 5px/1.25 var(--mono);
  letter-spacing: 0.05em;
  text-align: center;
}

.hero-product {
  position: relative;
  width: 700px;
  transform: perspective(1500px) rotateY(-3deg) rotateX(1deg);
  transform-origin: left center;
}

.product-window {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  background: #101a17;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.window-topbar {
  height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
  color: #71817c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #0d1513;
  font-size: 9px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3c4b47;
}

.window-address {
  padding: 5px 38px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.025);
}

.window-status {
  justify-self: end;
}

.window-status span {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--mint);
}

.report-shell {
  min-height: 565px;
  display: grid;
  grid-template-columns: 54px 1fr;
}

.report-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #0b1411;
}

.report-logo {
  margin-bottom: 16px;
}

.side-item {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #63736e;
  border-radius: 6px;
  font-size: 10px;
}

.side-item.active {
  color: var(--mint);
  background: rgba(119, 229, 187, 0.1);
}

.report-canvas {
  padding: 26px 28px;
  background: #101a17;
}

.report-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.report-kicker,
.card-topline {
  color: #60706b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  font-family: var(--mono);
}

.report-heading h2 {
  margin: 3px 0 0;
  color: #f3f8f5;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.report-heading p {
  margin: 2px 0 0;
  color: #85948f;
  font-size: 10px;
}

.report-chip {
  padding: 7px 10px;
  color: #bac6c1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  font-size: 9px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 9px;
}

.metric-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  background: #14211d;
}

.metric-card > span {
  display: block;
  color: #83918c;
  font-size: 9px;
}

.metric-card strong {
  display: block;
  margin: 3px 0 1px;
  color: #eaf2ee;
  font-size: 23px;
  line-height: 1.1;
  font-family: var(--mono);
  letter-spacing: -0.05em;
}

.metric-card small {
  display: block;
  color: #7a8984;
  font-size: 8px;
}

.metric-card small b { color: var(--mint); }
.metric-featured {
  border-color: rgba(119, 229, 187, 0.18);
  background: linear-gradient(145deg, rgba(119, 229, 187, 0.11), #14211d 55%);
}
.metric-featured strong { color: var(--mint); }

.report-layout {
  display: grid;
  grid-template-columns: 1.52fr 0.8fr;
  gap: 8px;
  margin-bottom: 9px;
}

.opportunity-card,
.mini-chart-card,
.task-preview {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  background: #14211d;
}

.opportunity-card {
  padding: 13px;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.priority-pill {
  padding: 3px 6px;
  color: var(--mint);
  border-radius: 4px;
  background: rgba(119, 229, 187, 0.09);
  letter-spacing: 0;
}

.opportunity-card h3 {
  margin: 9px 0;
  color: #edf4f0;
  font-size: 14px;
}

.query-metrics {
  display: flex;
  gap: 15px;
  color: #83918c;
  font-size: 9px;
  font-family: var(--mono);
}

.query-metrics b {
  color: #a9b6b2;
  font-weight: 600;
}

.action-note {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 13px;
  padding: 8px 9px;
  border-radius: 6px;
  background: rgba(119, 229, 187, 0.06);
}

.action-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--mint);
  border-radius: 6px;
  background: rgba(119, 229, 187, 0.1);
  font-size: 9px;
}

.action-note small,
.action-note strong {
  display: block;
}

.action-note small {
  color: #70a28e;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.action-note strong {
  color: #d1dcd7;
  font-size: 9px;
}

.mini-chart-card {
  padding: 13px;
}

.mini-chart-card .card-topline b {
  color: var(--mint);
  font-size: 9px;
}

.report-context-card {
  display: flex;
  flex-direction: column;
  min-height: 124px;
}

.report-context-list {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.report-context-list p {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  color: #7f8f89;
  font-size: 8px;
}

.report-context-list b {
  color: #d8e5df;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
}

.report-context-note {
  display: block;
  margin-top: auto;
  padding-top: 9px;
  color: #6e827a;
  font-size: 7px;
  line-height: 1.35;
}

.chart {
  height: 76px;
  margin-top: 10px;
}

.chart svg {
  width: 100%;
  height: 100%;
}

.chart-fill { fill: url("#chart-fill"); }
.chart-line {
  fill: none;
  stroke: var(--mint);
  stroke-width: 2;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #778680;
  font-size: 7px;
}

.task-preview {
  padding: 12px 14px 6px;
}

.task-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 70px 25px;
  gap: 8px;
  align-items: center;
  min-height: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.task-preview .card-topline {
  padding-bottom: 8px;
}

.task-number {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--mint);
  border-radius: 5px;
  background: rgba(119, 229, 187, 0.08);
  font-size: 6px;
  font-style: normal;
  font-family: var(--mono);
}

.task-number.warning {
  color: var(--amber);
  background: rgba(255, 201, 107, 0.08);
}

.task-row strong,
.task-row small {
  display: block;
}

.task-row strong {
  color: #cad5d0;
  font-size: 9px;
}

.task-row small {
  color: #788781;
  font-size: 8px;
}

.task-row > b {
  color: #91a09a;
  font-size: 8px;
}

.impact-bar {
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.impact-bar i {
  display: block;
  width: var(--impact);
  height: 100%;
  border-radius: inherit;
  background: var(--mint);
}

.floating-proof {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(18, 32, 27, 0.92);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.floating-proof-left {
  left: -35px;
  bottom: 76px;
}

.floating-proof-right {
  right: -28px;
  top: 83px;
}

.proof-icon,
.proof-check {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--mint);
  border-radius: 8px;
  background: rgba(119, 229, 187, 0.09);
  font-size: 12px;
}

.floating-proof b,
.floating-proof small {
  display: block;
}

.floating-proof b {
  color: #e5efe9;
  font-size: 11px;
}

.floating-proof small {
  color: #75857f;
  font-size: 7px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  color: #52615c;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 36px;
}

.trust-facts p {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 9px;
  margin: 0;
  letter-spacing: normal;
}

.trust-facts p + p::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-facts strong {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--mint);
  font: italic 17px Georgia, serif;
}

.trust-facts span,
.trust-facts small {
  display: block;
}

.trust-facts span {
  color: #9ba9a4;
  font-size: 8px;
  font-weight: 700;
}

.trust-facts small {
  margin-top: 1px;
  color: #53625d;
  font-size: 7px;
  font-weight: 500;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(39px, 4.5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

@media (min-width: 881px) {
  .workflow-section .section-heading.centered,
  .steps-section .section-heading.centered {
    max-width: none;
    display: grid;
    grid-template-columns: 0.62fr 1.38fr;
    column-gap: clamp(50px, 7vw, 105px);
    align-items: end;
    text-align: left;
  }

  .workflow-section .section-heading.centered .eyebrow,
  .steps-section .section-heading.centered .eyebrow {
    grid-column: 1;
    align-self: start;
    justify-self: start;
  }

  .workflow-section .section-heading.centered h2,
  .steps-section .section-heading.centered h2 {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .workflow-section .section-heading.centered > p {
    grid-column: 1;
    max-width: 330px;
    margin: 0;
    text-align: left;
  }
}

.section-heading h2 em {
  display: block;
  color: #276f54;
}

.section-heading > p,
.split-heading > p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.split-heading > p {
  max-width: 410px;
  margin: 0 0 5px;
}

.centered {
  max-width: 810px;
  margin: 0 auto 58px;
  text-align: center;
}

.centered > p {
  max-width: 610px;
  margin: 18px auto 0;
}

.problem-section {
  background:
    radial-gradient(circle at 76% 12%, rgba(106, 204, 168, 0.08), transparent 28%),
    var(--paper);
}

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

.problem-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: #c7d9d0;
  box-shadow: var(--shadow-soft);
}

.problem-index {
  align-self: flex-end;
  color: #99a39f;
  font: italic 18px Georgia, serif;
}

.problem-icon {
  width: 59px;
  height: 59px;
  display: grid;
  place-items: center;
  margin: 28px 0 34px;
  color: var(--mint-dark);
  border: 1px solid #dbe7df;
  border-radius: 16px;
  background: #eef7f2;
}

.problem-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.problem-card p {
  margin-bottom: 20px;
  color: var(--ink-muted);
  font-size: 13px;
}

.bars-icon {
  height: 27px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.bars-icon i {
  width: 5px;
  border-radius: 2px;
  background: var(--mint-dark);
}

.bars-icon i:nth-child(1) { height: 9px; opacity: 0.4; }
.bars-icon i:nth-child(2) { height: 17px; opacity: 0.6; }
.bars-icon i:nth-child(3) { height: 25px; }
.bars-icon i:nth-child(4) { height: 14px; opacity: 0.5; }

.signal-line {
  height: 24px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-top: auto;
}

.signal-line span,
.signal-line i {
  flex: 1;
  border-radius: 3px;
  background: #dbe5df;
}

.signal-line span { height: 7px; }
.signal-line i:nth-child(2) { height: 10px; }
.signal-line i:nth-child(3) { height: 17px; background: #9ad5bd; }
.signal-line i:nth-child(4) { height: 13px; }
.signal-line i:nth-child(5) { height: 21px; background: #58aa89; }

.overlap-icon {
  position: relative;
  display: block;
}

.overlap-icon i {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 2px solid var(--mint-dark);
  border-radius: 7px;
}

.overlap-icon i:first-child { left: 14px; top: 14px; }
.overlap-icon i:last-child { right: 13px; bottom: 13px; background: rgba(119, 229, 187, 0.18); }

.compete-labels {
  display: flex;
  gap: 7px;
  margin-top: auto;
}

.compete-labels span {
  padding: 5px 8px;
  color: #78847f;
  border-radius: 5px;
  background: #edf0ea;
  font: 9px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.refresh-icon {
  font-size: 27px;
}

.decay-line {
  margin-top: auto;
  padding-top: 5px;
  border-bottom: 1px dashed #d8ddd5;
}

.decay-line svg {
  width: 100%;
}

.decay-line path {
  fill: none;
  stroke: #c47d73;
  stroke-width: 2;
  stroke-dasharray: 3 3;
}

.link-icon {
  position: relative;
}

.link-icon i {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--mint-dark);
  border-radius: 50%;
}

.link-icon i:first-child { left: 12px; bottom: 12px; }
.link-icon i:nth-child(2) { right: 12px; top: 12px; }
.link-icon span { transform: rotate(-8deg); }

.link-map {
  position: relative;
  height: 28px;
  margin-top: auto;
}

.link-map::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 13px;
  height: 1px;
  background: #bdcbc3;
}

.link-map i {
  position: absolute;
  z-index: 1;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #6ead92;
}

.link-map i:nth-child(1) { left: 8%; }
.link-map i:nth-child(2) { left: 36%; }
.link-map i:nth-child(3) { left: 64%; }
.link-map i:nth-child(4) { right: 8%; }

.workflow-section {
  border-block: 1px solid var(--line);
  background: #f0f2eb;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  align-items: center;
}

.workflow-card {
  min-height: 670px;
  padding: 39px;
  border: 1px solid #d9ded5;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 80px rgba(30, 48, 40, 0.065);
}

.workflow-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  color: #60716a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.workflow-label span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--mint-dark);
  border-radius: 7px;
  background: #dff2e8;
  letter-spacing: 0;
}

.workflow-card h3 {
  margin-bottom: 9px;
  font-size: 29px;
  letter-spacing: -0.045em;
}

.workflow-card > p {
  color: var(--ink-muted);
  font-size: 14px;
}

.workflow-connector {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  justify-self: center;
  color: #5b6a64;
  border: 8px solid #f0f2eb;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 30, 24, 0.12);
}

.workflow-connector span {
  font-size: 7px;
  font-weight: 800;
}

.workflow-connector i {
  margin-top: -12px;
  color: var(--mint-dark);
  font-size: 19px;
  font-style: normal;
}

.upload-zone {
  min-height: 235px;
  display: grid;
  place-items: center;
  margin: 27px 0 22px;
  padding: 24px;
  border: 1px dashed #b9c9c0;
  border-radius: 18px;
  background:
    linear-gradient(rgba(18, 105, 71, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 105, 71, 0.025) 1px, transparent 1px),
    #f7faf7;
  background-size: 22px 22px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.upload-zone.dragover {
  border-color: var(--mint-dark);
  background-color: #eef9f3;
}

.upload-idle,
.upload-progress,
.upload-complete {
  width: 100%;
  text-align: center;
}

.upload-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  color: var(--mint-dark);
  border: 1px solid #cae2d6;
  border-radius: 14px;
  background: #e8f5ee;
  cursor: pointer;
  font-size: 22px;
}

.upload-idle strong,
.upload-idle span {
  display: block;
}

.upload-idle strong { font-size: 13px; }
.upload-idle span { color: #8b9691; font-size: 10px; }

.text-button {
  margin-top: 11px;
  padding: 0;
  color: var(--mint-dark);
  border: 0;
  border-bottom: 1px solid rgba(18, 105, 71, 0.25);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.file-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.file-tile > span {
  width: 44px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--mint-dark);
  border-radius: 10px;
  background: #def2e7;
  font-size: 9px;
  font-weight: 800;
}

.file-tile strong,
.file-tile small {
  display: block;
}

.file-tile strong { font-size: 12px; }
.file-tile small { color: #8a9690; font-size: 9px; }

.progress-track {
  height: 5px;
  margin: 25px 0 8px;
  overflow: hidden;
  border-radius: 10px;
  background: #e1e7e1;
}

.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--mint-dark);
  transition: width 0.18s ease;
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  color: #829089;
  font-size: 9px;
}

.upload-complete {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  text-align: left;
}

.upload-complete[hidden] {
  display: none;
}

.complete-check {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--mint-dark);
}

.upload-complete strong,
.upload-complete small {
  display: block;
}

.upload-complete strong { font-size: 12px; }
.upload-complete small { color: #89958f; font-size: 9px; }

.csv-preview {
  border: 1px solid #e1e5de;
  border-radius: 12px;
  background: #fafbf8;
  overflow: hidden;
  font: 9px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.csv-row {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.6fr);
  gap: 8px;
  padding: 9px 12px;
  color: #68736e;
  border-top: 1px solid #ecefe9;
}

.csv-row span:not(:first-child) {
  text-align: right;
}

.csv-head {
  color: #89938e;
  border-top: 0;
  background: #f3f5f1;
  font-size: 8px;
  text-transform: uppercase;
}

.output-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 27px 0 0;
  list-style: none;
}

.output-list li {
  min-height: 77px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #e1e5de;
  border-radius: 13px;
  background: #fafbf8;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.output-list li:hover {
  transform: translateX(4px);
  border-color: #bbd9ca;
}

.output-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 13px;
}

.output-icon.green { color: #1b7653; background: #ddf3e8; }
.output-icon.blue { color: #416f9f; background: #e0edfb; }
.output-icon.amber { color: #91651a; background: #fff1d7; }
.output-icon.lilac { color: #67559b; background: #eee9ff; }
.output-icon.gray { color: #65716b; background: #ecefeb; }

.output-list strong,
.output-list small {
  display: block;
}

.output-list strong { font-size: 13px; }
.output-list small { color: #7c8983; font-size: 10px; }
.output-list > li > b {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: #597067;
  border: 1px solid #dbe2db;
  border-radius: 50%;
  font-size: 9px;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 0;
  color: #7e8b85;
  font-size: 11px;
}

.privacy-note span { color: var(--mint-dark); }

.report-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(66, 145, 114, 0.13), transparent 27%),
    var(--night);
}

.report-intro > p { color: #83928d; }
.report-intro h2 em { color: var(--mint); }

.report-demo {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: #0d1714;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.sample-report {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 0%, rgba(119, 229, 187, 0.12), transparent 30%),
    #0d1714;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.sample-report-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.sample-report-top > div:first-child span,
.sample-report-meta span,
.sample-report-side span,
.sample-report-stats span,
.sample-report-move span,
.sample-report-item aside span {
  display: block;
  margin-bottom: 8px;
  color: #759087;
  font: 800 9px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sample-report-top h3 {
  margin: 10px 0 10px;
  color: #ecf4f0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.sample-report-top p {
  margin: 0;
  color: rgba(236, 244, 240, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

.sample-report-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sample-report-meta > div,
.sample-report-featured,
.sample-report-stats article,
.sample-report-item,
.sample-report-side {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.sample-report-meta > div {
  min-height: 88px;
  padding: 16px;
}

.sample-report-meta strong {
  display: block;
  color: #ecf4f0;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.sample-report-featured {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(250px, 0.62fr);
  gap: 16px;
  padding: 20px;
  border-color: rgba(119, 229, 187, 0.22);
  background: linear-gradient(145deg, rgba(119, 229, 187, 0.09), rgba(255, 255, 255, 0.02));
}

.sample-report-rank {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(119, 229, 187, 0.24);
  border-radius: 14px;
  color: var(--mint);
  background: rgba(119, 229, 187, 0.08);
  font: 800 12px/1 var(--mono);
}

.sample-report-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.sample-report-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(236, 244, 240, 0.8);
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sample-report-main h3 {
  margin: 0 0 12px;
  color: #ecf4f0;
  font-size: clamp(22px, 2.9vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.sample-report-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 14px;
}

.sample-report-metrics span {
  color: rgba(236, 244, 240, 0.7);
  font-size: 13px;
  line-height: 1.4;
}

.sample-report-metrics b {
  color: #ecf4f0;
}

.sample-report-move {
  padding: 14px 15px;
  border: 1px solid rgba(119, 229, 187, 0.2);
  border-radius: 16px;
  background: rgba(119, 229, 187, 0.06);
}

.sample-report-move p {
  margin: 0;
  color: #ecf4f0;
  font-size: 15px;
  line-height: 1.5;
}

.sample-report-side {
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 18px;
  background: rgba(119, 229, 187, 0.045);
}

.sample-report-side p {
  margin: 0;
  color: rgba(236, 244, 240, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.sample-report-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sample-report-stats article {
  min-height: 118px;
  padding: 16px 18px;
}

.sample-report-stats strong {
  display: block;
  margin: 10px 0 5px;
  color: #ecf4f0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.sample-report-stats p {
  margin: 0;
  color: rgba(236, 244, 240, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.sample-report-list {
  display: grid;
  gap: 12px;
}

.sample-report-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) minmax(180px, 0.48fr);
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
}

.sample-report-item h3 {
  margin: 0 0 8px;
  color: #ecf4f0;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.sample-report-item p {
  margin: 0;
  color: rgba(236, 244, 240, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.sample-report-item aside {
  display: grid;
  align-content: start;
  gap: 3px;
  min-height: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(119, 229, 187, 0.16);
  border-radius: 16px;
  background: rgba(119, 229, 187, 0.06);
}

.sample-report-item aside strong {
  color: var(--mint);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.sample-report-item aside small {
  color: rgba(236, 244, 240, 0.66);
  font-size: 12px;
  line-height: 1.4;
}

.sample-report-note {
  margin: 0;
  color: rgba(236, 244, 240, 0.64);
  font-size: 13px;
  line-height: 1.45;
}

.decision-report {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(119, 229, 187, 0.12), transparent 28%),
    #0d1714;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.decision-report-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 4px;
}

.decision-report-top > div {
  min-height: 74px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.decision-report-top span,
.decision-card dt,
.decision-card aside span {
  display: block;
  margin-bottom: 7px;
  color: #759087;
  font: 800 9px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.decision-report-top strong {
  color: #ecf4f0;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.decision-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.decision-card-featured {
  grid-template-columns: 54px minmax(0, 1fr) minmax(240px, 0.55fr);
  align-items: stretch;
  border-color: rgba(119, 229, 187, 0.22);
  background: linear-gradient(145deg, rgba(119, 229, 187, 0.1), rgba(255, 255, 255, 0.025));
}

.decision-rank {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(119, 229, 187, 0.24);
  border-radius: 14px;
  color: var(--mint);
  background: rgba(119, 229, 187, 0.08);
  font: 800 12px/1 var(--mono);
}

.decision-main h3 {
  margin: 12px 0 18px;
  color: #ecf4f0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.decision-grid .decision-main h3 {
  font-size: clamp(19px, 2.3vw, 25px);
}

.decision-card dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.decision-card dd {
  margin: 0;
  color: rgba(236, 244, 240, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.decision-card aside {
  display: grid;
  align-content: center;
  padding: 20px;
  border: 1px solid rgba(119, 229, 187, 0.18);
  border-radius: 18px;
  background: rgba(119, 229, 187, 0.07);
}

.decision-card aside strong {
  color: var(--mint);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.action-pill {
  display: inline-flex;
  width: max-content;
  padding: 8px 10px;
  border-radius: 999px;
  color: #08120f;
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-write { background: var(--mint); }
.action-refresh { background: #9fd6ff; }
.action-fix { background: var(--amber); }
.action-link { background: #d7c4ff; }

.report-tabs {
  display: flex;
  padding: 0 28px;
  border-bottom: 1px solid var(--line-dark);
  background: #0a1311;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.report-tabs::-webkit-scrollbar { display: none; }

.report-tabs button {
  position: relative;
  flex: 0 0 auto;
  min-height: 66px;
  padding: 0 20px;
  color: #73837d;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  scroll-snap-align: start;
}

.report-tabs button::after {
  content: "";
  position: absolute;
  inset: auto 18px -1px;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
}

.report-tabs button[aria-selected="true"] {
  color: #ecf4f0;
}

.report-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.report-tabs button > span {
  margin-right: 6px;
  color: var(--mint);
}

.report-tabs button > b {
  margin-left: 7px;
  padding: 2px 5px;
  color: #6f8079;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 8px;
}

.report-panel {
  min-height: 500px;
  padding: 36px;
  animation: panel-in 0.35s ease;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 27px;
}

.panel-header span,
.panel-header small {
  color: #759087;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.panel-header h3 {
  margin: 3px 0 0;
  color: #e7efeb;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.filter-button,
.panel-status {
  padding: 9px 12px;
  color: #82918c;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 10px;
}

.filter-button { cursor: default; }
.panel-status { color: var(--mint) !important; letter-spacing: 0 !important; }
.warning-status { color: var(--amber) !important; }

.report-table {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  overflow: hidden;
}

.table-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 2.25fr 0.8fr 0.62fr 0.55fr 0.55fr 0.8fr;
  gap: 14px;
  align-items: center;
  padding: 14px 17px;
  color: #afbbb6;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.012);
  font-size: 11px;
}

.table-row:hover:not(.table-head) {
  background: rgba(119, 229, 187, 0.025);
}

.table-head {
  min-height: 40px;
  color: #72817c;
  border-top: 0;
  background: rgba(255, 255, 255, 0.025);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-row > span:first-child {
  position: relative;
  padding-left: 35px;
}

.table-head > span:first-child {
  padding-left: 0;
}

.table-row strong,
.table-row small {
  display: block;
}

.table-row b {
  color: #c2cdc8;
  font-size: 11px;
}

.table-row small {
  margin-top: 3px;
  color: #7a8984;
  font-size: 8px;
}

.rank {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--mint);
  font: italic 12px Georgia, serif;
}

.score-ring {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #9bd8bf;
  border: 2px solid #487963;
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
}

.score-high {
  color: var(--mint);
  border-color: var(--mint);
}

.table-row button,
.brief-action {
  padding: 7px 9px;
  color: var(--mint);
  border: 1px solid rgba(119, 229, 187, 0.15);
  border-radius: 6px;
  background: rgba(119, 229, 187, 0.04);
  cursor: pointer;
  font-size: 9px;
}

.panel-summary {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 9px;
  padding: 18px 8px 0;
  color: #62736d;
  font-size: 8px;
}

.panel-summary strong { color: var(--mint); font-size: 13px; }
.panel-summary small { color: #62736d; }

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

.brief-grid article {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.brief-grid article > span {
  color: var(--mint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brief-grid h4 {
  margin: 18px 0 7px;
  color: #dbe6e1;
  font-size: 17px;
  line-height: 1.3;
}

.brief-grid p {
  color: #81918a;
  font-size: 10px;
}

.brief-grid ul {
  display: grid;
  gap: 9px;
  padding: 15px 0 0;
  margin: 0 0 22px;
  color: #afbbb6;
  border-top: 1px solid var(--line-dark);
  list-style: none;
  font-size: 10px;
}

.brief-grid li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--mint);
}

.brief-action {
  align-self: flex-start;
  margin-top: auto;
}

.issue-list {
  display: grid;
  gap: 12px;
}

.issue-list article {
  display: grid;
  grid-template-columns: auto 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.016);
}

.issue-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--amber);
  border-radius: 9px;
  background: rgba(255, 201, 107, 0.08);
  font-weight: 800;
}

.issue-list small,
.issue-list h4,
.issue-list p {
  display: block;
  margin: 0;
}

.issue-list small {
  color: #7e8d87;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.issue-list h4 {
  margin: 3px 0;
  color: #d3dfda;
  font-size: 14px;
}

.issue-list p {
  color: #8b9994;
  font-size: 10px;
}

.page-pair {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
}

.page-pair span {
  padding: 5px 7px;
  color: #93a29c;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  font: 8px ui-monospace, monospace;
}

.page-pair b {
  margin-left: 5px;
  color: #64756f;
}

.page-pair i {
  color: #5b6a65;
  font-size: 7px;
}

.issue-list aside {
  padding: 13px;
  border-left: 2px solid var(--amber);
  background: rgba(255, 201, 107, 0.025);
}

.issue-list aside strong {
  display: block;
  margin-top: 4px;
  color: #c0cbc7;
  font-size: 10px;
  line-height: 1.5;
}

.link-list {
  display: grid;
  gap: 9px;
}

.link-list article {
  min-height: 82px;
  display: grid;
  grid-template-columns: 27px 1fr auto 1fr 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 14px 17px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
}

.link-list article > span {
  color: var(--mint);
  font: italic 12px Georgia, serif;
}

.link-list small,
.link-list strong {
  display: block;
}

.link-list small {
  color: #7a8984;
  font-size: 7px;
  letter-spacing: 0.11em;
}

.link-list strong {
  color: #bdc8c3;
  font: 9px ui-monospace, monospace;
}

.link-list i { color: var(--mint); font-style: normal; }
.link-list > article > b { color: #90adA1; font-size: 8px; }

.refresh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.refresh-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  padding: 25px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.016);
}

.refresh-score {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--mint);
  border: 2px solid #39745c;
  border-radius: 50%;
  font-size: 11px;
}

.refresh-grid small { color: var(--mint); font-size: 8px; letter-spacing: 0.12em; }
.refresh-grid h4 { margin: 4px 0; color: #d8e2de; font-size: 14px; }
.refresh-grid p { color: #84938d; font-size: 9px; }
.refresh-grid ul { padding: 13px 0 0; margin: 0; border-top: 1px solid var(--line-dark); color: #adb9b4; list-style: none; font-size: 10px; }
.refresh-grid li { margin-top: 6px; }
.refresh-grid li::before { content: "→"; margin-right: 7px; color: var(--mint); }

.steps-section {
  background: var(--paper);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 34px;
  left: 17%;
  right: 17%;
  border-top: 1px dashed #bdc8c0;
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 430px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fafaf6;
}

.step-number {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin: -44px auto 30px;
  color: var(--mint-dark);
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: #dff3e9;
  font-size: 8px;
  font-weight: 800;
}

.step-visual {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border: 1px solid #e2e6df;
  border-radius: 15px;
  background:
    linear-gradient(rgba(20, 50, 38, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 50, 38, 0.025) 1px, transparent 1px),
    #f4f6f1;
  background-size: 19px 19px;
}

.gsc-visual {
  flex-direction: column;
}

.gsc-visual b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 9px;
  color: #356cb7;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(21, 50, 38, 0.08);
  font-size: 20px;
}

.gsc-visual span { font-size: 10px; font-weight: 650; }
.gsc-visual i { margin-top: 12px; padding: 5px 8px; color: #6a7b74; border: 1px solid #d8dfd8; border-radius: 5px; background: white; font-size: 7px; font-style: normal; }

.analyze-visual {
  position: relative;
  gap: 8px;
}

.analyze-visual .brand-mark {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(18, 105, 71, 0.2);
}

.analyze-visual .brand-mark span:nth-child(1) { width: 28px; }
.analyze-visual .brand-mark span:nth-child(2) { width: 19px; }
.analyze-visual .brand-mark span:nth-child(3) { width: 11px; }

.analyze-visual > i {
  width: 7px;
  height: 7px;
  border: 2px solid #6aac91;
  border-radius: 50%;
}

.publish-visual {
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
  padding: 28px 45px;
}

.publish-visual span {
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 750;
}

.publish-visual i {
  padding: 7px 9px;
  color: #597067;
  border: 1px solid #dce3dc;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-style: normal;
}

.step-card h3 {
  margin-bottom: 7px;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.step-card p {
  color: var(--ink-muted);
  font-size: 13px;
}

.step-card > small {
  color: #4d806b;
  font-size: 9px;
  font-weight: 700;
}

.method-note {
  margin: 33px 0 0;
  color: #75827d;
  text-align: center;
  font-size: 12px;
}

.method-note strong { color: var(--ink); }

.why-section {
  color: var(--ink);
  border-top: 1px solid rgba(24, 49, 39, 0.08);
  border-bottom: 1px solid rgba(24, 49, 39, 0.1);
  background:
    radial-gradient(circle at 84% 8%, rgba(53, 166, 123, 0.13), transparent 28%),
    #edf1eb;
}

.why-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  margin-bottom: 46px;
}

.why-intro h2 {
  max-width: 760px;
  margin: 13px 0 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.072em;
}

.why-intro h2 em {
  display: block;
  color: var(--mint-dark);
}

.why-intro > p {
  margin: 0 0 5px;
  color: #576860;
  font-size: 16px;
  line-height: 1.68;
}

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

.why-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: clamp(25px, 3vw, 36px);
  border: 1px solid rgba(24, 49, 39, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(250, 250, 246, 0.76);
  box-shadow: 0 18px 50px rgba(26, 51, 41, 0.06);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(24, 49, 39, 0.1);
}

.why-card-top span {
  color: var(--mint-dark);
  font: italic 12px/1 Georgia, serif;
}

.why-card-top b {
  color: #6a7b73;
  font: 800 8px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-card h3 {
  max-width: 470px;
  margin: 28px 0 10px;
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.why-card p {
  max-width: 580px;
  margin: 0;
  color: #5c6d65;
  font-size: 14px;
  line-height: 1.62;
}

.why-card > small {
  margin-top: auto;
  padding-top: 24px;
  color: #3f715d;
  font-size: 10px;
  font-weight: 750;
}

.why-trust {
  margin-top: 16px;
  padding: 25px clamp(24px, 4vw, 44px);
  border-radius: 18px;
  background: var(--night);
}

.why-trust p {
  max-width: 940px;
  margin: 0;
  color: #95a39d;
  font-size: 14px;
  line-height: 1.65;
}

.why-trust strong { color: var(--mint); }

.why-sources {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(24, 49, 39, 0.12);
}

.why-sources-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.why-sources-heading > span {
  color: var(--ink);
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-sources-heading p,
.why-limitation {
  margin: 0;
  color: #728078;
  font-size: 11px;
}

.why-source-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.why-source-links a {
  position: relative;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 42px 18px 18px;
  color: var(--ink);
  border: 1px solid rgba(24, 49, 39, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.44);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.why-source-links a:hover {
  border-color: rgba(36, 121, 87, 0.32);
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.why-source-links span {
  color: #708078;
  font: 750 8px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-source-links strong {
  margin-top: 7px;
  font-size: 13px;
}

.why-source-links small {
  margin-top: 8px;
  color: #718078;
  font-size: 9px;
  line-height: 1.4;
}

.why-source-links i {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--mint-dark);
  font-style: normal;
}

.why-limitation {
  max-width: 880px;
  margin-top: 17px;
  line-height: 1.55;
}

.loop-section {
  color: var(--white);
  background:
    radial-gradient(circle at 75% 48%, rgba(53, 166, 123, 0.13), transparent 35%),
    var(--night);
  overflow: hidden;
}

.loop-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: center;
}

.loop-copy h2 {
  max-width: 520px;
  margin-bottom: 21px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.loop-copy h2 em {
  display: block;
  color: var(--mint);
}

.loop-copy > p {
  color: #84938e;
  font-size: 14px;
}

.loop-copy ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.loop-copy li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.loop-copy li > span {
  color: var(--mint);
  font: italic 10px Georgia, serif;
}

.loop-copy li strong,
.loop-copy li small {
  display: block;
}

.loop-copy li strong { color: #c5d0cb; font-size: 11px; }
.loop-copy li small { color: #61726b; font-size: 9px; }

.loop-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

.loop-step {
  display: flex;
  flex-direction: column;
}

.loop-step-node {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(16, 31, 26, 0.7);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.loop-step-node:hover {
  border-color: rgba(119, 229, 187, 0.25);
  background: rgba(16, 31, 26, 0.95);
}

.loop-step-node--accent {
  border-color: rgba(119, 229, 187, 0.22);
  background: linear-gradient(135deg, rgba(119, 229, 187, 0.07), rgba(16, 31, 26, 0.9) 60%);
}

.loop-step-num {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--mint);
  border: 1px solid rgba(119, 229, 187, 0.2);
  border-radius: 10px;
  background: rgba(119, 229, 187, 0.06);
  font: italic 13px Georgia, serif;
  flex-shrink: 0;
}

.loop-step-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.loop-step-body b {
  color: #c7d2cd;
  font-size: 13px;
}

.loop-step-body small {
  color: #5a6b65;
  font-size: 10px;
}

.loop-step-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 750;
}

.loop-step-arrow {
  align-self: flex-start;
  margin-left: 37px;
  padding: 4px 0;
  color: rgba(119, 229, 187, 0.3);
  font-size: 16px;
  line-height: 1;
}

.loop-step-arrow--loop {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 0;
  padding: 10px 20px;
  color: var(--mint);
  border: 1px dashed rgba(119, 229, 187, 0.2);
  border-radius: 10px;
  background: rgba(119, 229, 187, 0.04);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-section {
  background: #eef1e9;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(4, 1fr);
  gap: 10px;
}

.evidence-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  border: 1px solid #d9dfd6;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.evidence-card:hover {
  transform: translateY(-4px);
  border-color: #bed5c9;
  box-shadow: 0 18px 45px rgba(20, 40, 31, 0.07);
}

.evidence-card-source {
  color: var(--white);
  border-color: #142a23;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--night-soft);
  background-size: 22px 22px;
  box-shadow: 0 20px 50px rgba(15, 30, 24, 0.12);
}

.evidence-index {
  color: #809087;
  font: 800 8px/1 var(--mono);
  letter-spacing: 0.12em;
}

.evidence-card-source .evidence-index {
  color: var(--mint);
}

.evidence-card > strong {
  display: block;
  margin: 37px 0 18px;
  color: #276f54;
  font: 650 44px/0.9 var(--mono);
  letter-spacing: -0.07em;
}

.evidence-card-source > strong {
  color: var(--mint);
}

.evidence-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.evidence-card p {
  margin: auto 0 0;
  color: #74817b;
  font-size: 10px;
  line-height: 1.6;
}

.evidence-card-source p {
  color: #83938c;
}

.evidence-footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 14px 16px 14px 21px;
  border: 1px solid #d5ddd5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
}

.evidence-footer p {
  margin: 0;
  color: #6f7c76;
  font-size: 11px;
}

.evidence-footer p span {
  margin-right: 9px;
  padding: 5px 7px;
  color: var(--mint-dark);
  border-radius: 5px;
  background: #dcefe5;
  font: 800 7px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-footer .button {
  min-height: 44px;
  flex: 0 0 auto;
}

.pricing-section {
  background: var(--paper);
}

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

.price-card {
  position: relative;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  border-color: #bdd5c9;
  box-shadow: 0 22px 55px rgba(15, 30, 24, 0.09);
  transform: translateY(-5px);
}

.price-card.popular {
  color: var(--white);
  border-color: #1b4a39;
  background:
    radial-gradient(circle at 80% 10%, rgba(119, 229, 187, 0.11), transparent 30%),
    var(--night-soft);
  box-shadow: 0 25px 60px rgba(11, 28, 22, 0.17);
  transform: translateY(-9px);
}

.price-card.popular:hover {
  border-color: #397b61;
  transform: translateY(-13px);
}

.popular-label {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 6px 9px;
  color: var(--night);
  border-radius: 6px;
  background: var(--mint);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.plan-name {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 750;
}

.price-card p {
  min-height: 66px;
  color: var(--ink-muted);
  font-size: 11px;
}

.popular p { color: #81918b; }

.price {
  display: flex;
  align-items: end;
  gap: 6px;
  margin: 20px 0 23px;
}

.price strong {
  font-size: 45px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-family: var(--mono);
}

.price span {
  color: #89948f;
  font-size: 10px;
}

.price-card .button { width: 100%; }
.popular .button { box-shadow: none; }

.price-card ul {
  display: grid;
  gap: 13px;
  padding: 23px 0 0;
  margin: 24px 0 0;
  color: #5f6c67;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 11px;
}

.popular ul {
  color: #a2b0aa;
  border-color: var(--line-dark);
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--mint-dark);
  font-weight: 800;
}

.popular li::before { color: var(--mint); }

.founder-offer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding: 19px 22px;
  border: 1px solid #cbe0d4;
  border-radius: 14px;
  background: #ecf8f1;
}

.offer-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--mint-dark);
  border-radius: 9px;
  background: #d7efe3;
}

.founder-offer p {
  margin: 0;
  color: #5e6f67;
  font-size: 11px;
}

.founder-offer p strong { color: var(--ink); }
.founder-offer a { color: var(--mint-dark); font-size: 10px; font-weight: 750; }

.use-cases-section {
  padding-top: clamp(88px, 7vw, 108px);
  background: var(--paper);
}

.use-case-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.use-case-row article {
  min-height: 210px;
  padding: 24px 20px;
  border-left: 1px solid var(--line);
}

.use-case-row article:first-child { border-left: 0; }
.use-case-row span { color: #64a78a; font: italic 12px Georgia, serif; }
.use-case-row b { display: block; margin: 38px 0 8px; font-size: 13px; }
.use-case-row p { color: var(--ink-muted); font-size: 11px; }

.faq-section {
  border-top: 1px solid var(--line);
  background: #f0f2eb;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.1fr;
  gap: 110px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 120px;
}

.faq-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 4.3vw, 59px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.faq-copy h2 em {
  display: block;
  color: #276f54;
}

.faq-copy p {
  color: var(--ink-muted);
  font-size: 13px;
}

.faq-copy a {
  color: var(--mint-dark);
  border-bottom: 1px solid #a8cdbd;
  font-size: 11px;
  font-weight: 750;
}

.faq-list {
  border-top: 1px solid #ccd3cb;
}

.faq-list details {
  border-bottom: 1px solid #ccd3cb;
}

.faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  color: #6e7b75;
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span { transform: rotate(45deg); }

.faq-list details p {
  max-width: 630px;
  margin: -7px 45px 25px 0;
  color: #69766f;
  font-size: 12px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  padding: 110px 0;
  color: var(--white);
  background: var(--night);
  overflow: hidden;
}

.cta-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.cta-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 167, 124, 0.16), transparent 68%);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-content h2 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(50px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.cta-content h2 em {
  display: block;
  color: var(--mint);
}

.cta-content > p {
  max-width: 580px;
  margin-bottom: 30px;
  color: #879690;
  font-size: 15px;
}

.cta-form {
  width: min(100%, 540px);
}

.cta-meta {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  color: #65756f;
  font-size: 9px;
}

.cta-meta span::first-letter { color: var(--mint); }

.example-link {
  margin-top: 34px;
  color: #899892;
  border-bottom: 1px solid #3b4c46;
  font-size: 10px;
}

.site-footer {
  color: #2e3a36;
  background: #e7eae2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 70px;
  padding: 75px 0 60px;
}

.brand-dark { color: var(--night); }

.footer-brand p {
  max-width: 230px;
  margin: 18px 0 25px;
  color: #74807a;
  font-size: 11px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6c7872;
  font-size: 8px;
}

.footer-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4bab83;
  box-shadow: 0 0 0 4px rgba(75, 171, 131, 0.1);
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-grid > div > strong {
  margin-bottom: 6px;
  font-size: 10px;
}

.footer-grid > div > a,
.footer-grid > div > .footer-coming {
  color: #718079;
  font-size: 10px;
  transition: color 0.2s ease;
}

.footer-grid > div > a:hover { color: var(--mint-dark); }

.footer-coming {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.footer-coming i {
  color: #a2aaa6;
  font: normal 700 6px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #828d88;
  border-top: 1px solid #d3d8d0;
  font-size: 8px;
}

.footer-bottom div { display: flex; gap: 17px; }

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  width: min(calc(100% - 48px), 390px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px;
  color: #dce8e3;
  border: 1px solid rgba(119, 229, 187, 0.22);
  border-radius: 14px;
  background: rgba(12, 27, 22, 0.96);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  transform: translateY(130%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--night);
  border-radius: 10px;
  background: var(--mint);
}

.toast strong,
.toast small {
  display: block;
}

.toast strong { font-size: 11px; }
.toast small { color: #71837b; font-size: 8px; }

.toast button {
  padding: 5px;
  color: #778780;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1240px) {
  .hero {
    min-height: auto;
  }

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

  .hero-copy {
    max-width: 750px;
    padding-bottom: 20px;
  }

  .hero-product {
    width: 100%;
    transform: none;
  }

  .trust-strip {
    margin-top: 80px;
  }
}

@media (max-width: 1120px) {

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

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

  .workflow-card {
    padding: 30px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .price-card.popular {
    transform: none;
  }

  .price-card.popular:hover {
    transform: translateY(-5px);
  }

  .loop-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
  }

  .footer-grid {
    gap: 35px;
  }
}

@media (max-width: 880px) {
  :root { --header-height: 68px; }

  .section {
    padding: 88px 0;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(7, 16, 14, 0.98);
    font-size: 17px;
    transform: translateY(-105%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
  }

  .primary-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav .button {
    margin-top: 10px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    max-width: 680px;
  }

  .floating-proof {
    display: none;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }

  .trust-facts {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .workflow-connector {
    margin: -11px 0;
    transform: rotate(90deg);
  }

  .workflow-card {
    min-height: auto;
  }

  .table-row {
    grid-template-columns: 1.7fr repeat(4, 0.7fr);
  }

  .table-row > span:last-child {
    display: none;
  }

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

  .brief-grid article {
    min-height: 240px;
  }

  .issue-list article {
    grid-template-columns: auto 1fr;
  }

  .issue-list aside {
    grid-column: 2;
  }

  .link-list article {
    grid-template-columns: 22px 1fr auto 1fr;
  }

  .link-list article > div:nth-of-type(3),
  .link-list article > b {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .steps-grid::before {
    display: none;
  }

  .step-card {
    min-height: auto;
  }

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

  .loop-copy {
    max-width: 620px;
  }

  .loop-visual {
    justify-self: stretch;
    max-width: 100%;
  }

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

  .evidence-card-source {
    grid-column: 1 / -1;
  }

  .use-case-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-case-row article {
    border-top: 1px solid var(--line);
  }

  .use-case-row article:nth-child(odd) { border-left: 0; }
  .use-case-row article:nth-child(-n + 2) { border-top: 0; }
  .use-case-row article:last-child { grid-column: 1 / -1; }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-copy {
    position: static;
    max-width: 560px;
  }

  .why-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-intro > p {
    max-width: 680px;
  }

  .why-source-links {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .section[data-chapter]::before {
    top: 18px;
    left: 15px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-lede {
    font-size: 15px;
  }

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

  .why-card {
    min-height: 270px;
  }

  .why-sources-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-form,
  .cta-form {
    grid-template-columns: 1fr;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .hero-form input,
  .cta-form input {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.055);
  }

  .hero-form .button,
  .cta-form .button {
    width: 100%;
  }

  .form-error {
    position: static;
    grid-row: 3;
    padding-left: 3px;
  }

  .hero-product {
    width: calc(100vw - 30px);
    height: 485px;
    display: flex;
    justify-content: center;
  }

  .product-window {
    width: 720px;
    flex: 0 0 720px;
    transform: scale(0.78);
    transform-origin: top center;
  }

  .window-status {
    display: none;
  }

  .window-topbar {
    grid-template-columns: 1fr auto;
  }

  .trust-strip {
    margin-top: 25px;
  }

  .trust-facts {
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
  }

  .trust-facts p + p::before {
    display: none;
  }

  .section-heading h2,
  .loop-copy h2,
  .faq-copy h2 {
    font-size: clamp(37px, 11vw, 50px);
  }

  .centered {
    margin-bottom: 43px;
    text-align: left;
  }

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

  .problem-card {
    min-height: 310px;
  }

  .workflow-card {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .workflow-card h3 {
    font-size: 25px;
  }

  .upload-zone {
    padding: 18px;
  }

  .csv-row {
    grid-template-columns: 1.6fr repeat(3, 0.55fr);
    padding-inline: 8px;
    font-size: 7px;
  }

  .privacy-note {
    align-items: flex-start;
    text-align: center;
  }

  .report-demo {
    border-radius: 18px;
  }

  .report-tabs {
    padding-inline: 7px;
  }

  .report-tabs button {
    min-height: 58px;
    padding-inline: 14px;
  }

  .report-panel {
    min-height: 580px;
    padding: 24px 15px;
  }

  .decision-report-top,
  .decision-card,
  .decision-card-featured,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .decision-report-top .button {
    width: 100%;
  }

  .decision-main h3,
  .decision-grid .decision-main h3 {
    font-size: 24px;
  }

  .panel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .panel-header h3 {
    font-size: 18px;
  }

  .report-table {
    border: 0;
    overflow: visible;
  }

  .table-head {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 13px;
    margin-bottom: 10px;
    padding: 16px;
    border: 1px solid var(--line-dark);
    border-radius: 11px;
  }

  .table-row > span:first-child {
    grid-column: 1 / -1;
  }

  .table-row > span:nth-child(5) {
    justify-self: end;
  }

  .panel-summary {
    align-items: flex-end;
    flex-direction: column;
  }

  .brief-grid article {
    padding: 20px;
  }

  .issue-list article {
    grid-template-columns: 1fr;
    padding: 17px;
  }

  .issue-list aside {
    grid-column: 1;
  }

  .page-pair {
    align-items: flex-start;
    flex-direction: column;
  }

  .link-list article {
    grid-template-columns: 22px 1fr;
  }

  .link-list article > i,
  .link-list article > div:nth-of-type(2) {
    display: none;
  }

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

  .refresh-grid article {
    padding: 18px;
  }

  .loop-section {
    padding-bottom: 40px;
  }

  .evidence-card {
    min-height: 220px;
    padding: 20px 18px;
  }

  .evidence-card > strong {
    margin-top: 28px;
  }

  .evidence-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .evidence-footer .button {
    width: 100%;
  }

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

  .price-card {
    min-height: 450px;
  }

  .founder-offer {
    grid-template-columns: auto 1fr;
  }

  .founder-offer a {
    grid-column: 2;
  }

  .use-cases-section {
    padding-top: 72px;
  }

  .use-case-row {
    grid-template-columns: 1fr;
  }

  .use-case-row article,
  .use-case-row article:nth-child(odd) {
    min-height: 175px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .use-case-row article:first-child { border-top: 0; }
  .use-case-row article:last-child { grid-column: auto; }
  .use-case-row b { margin-top: 25px; }

  .faq-list summary {
    min-height: 72px;
    font-size: 13px;
  }

  .final-cta {
    min-height: 620px;
  }

  .cta-content h2 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .cta-meta {
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: 100px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .toast {
    right: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
  }
}

@media (max-width: 580px) {
  .hero-product {
    height: 447px;
  }

  .product-window {
    transform: scale(0.72);
  }
}

@media (max-width: 540px) {
  .hero-product {
    height: 410px;
  }

  .product-window {
    transform: scale(0.66);
  }
}

@media (max-width: 500px) {
  .hero-product {
    height: 375px;
  }

  .product-window {
    transform: scale(0.6);
  }
}

@media (max-width: 460px) {
  .hero-product {
    height: 338px;
  }

  .product-window {
    transform: scale(0.54);
  }
}

@media (max-width: 420px) {
  .hero-product {
    height: 300px;
  }

  .product-window {
    transform: scale(0.48);
  }
}

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

  .evidence-card-source {
    grid-column: auto;
  }

  .hero-product {
    height: 265px;
  }

  .product-window {
    transform: scale(0.42);
  }
}

@media (max-width: 340px) {
  .hero-product {
    height: 240px;
  }

  .product-window {
    transform: scale(0.38);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

.report-page {
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at 16% 6%, rgba(119, 229, 187, 0.16), transparent 30%),
    radial-gradient(circle at 84% 4%, rgba(126, 181, 255, 0.13), transparent 32%),
    var(--night);
}

.report-site-header {
  position: sticky;
}

.report-nav {
  display: flex;
}

.weekly-report {
  min-height: 100vh;
}

.report-hero {
  padding: calc(var(--header-height) + clamp(48px, 7vw, 90px)) 0 clamp(48px, 6vw, 76px);
}

.report-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.report-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.report-hero p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 2vw, 22px);
}

.report-loader {
  max-width: 680px;
  margin-top: 34px;
}

.report-loader label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-loader > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.report-loader input {
  min-width: 0;
  border: 0;
  border-radius: 13px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

.report-loader p {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--mint);
  font-size: 14px;
}

.report-status-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--mint);
  font-size: 14px;
}

.report-meta-card,
.stat-card,
.exec-summary,
.priority-panel,
.report-collapsible,
.report-table-card,
.report-empty-state {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
}

.report-meta-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 24px;
  border-radius: 24px;
}

.report-meta-card > span,
.report-section-heading span,
.stat-card span {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.report-meta-card strong {
  display: block;
  margin: 10px 0 20px;
  color: var(--white);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.report-meta-card dl {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
}

.report-meta-card dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.report-meta-card dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.86);
  overflow-wrap: anywhere;
}

.report-export-actions {
  display: grid;
  gap: 10px;
}

.report-empty-state {
  margin-bottom: 80px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 28px;
}

.report-empty-state h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.report-empty-state p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.report-dashboard {
  display: grid;
  gap: 30px;
  padding-bottom: 90px;
}

/* Executive summary -------------------------------------------------------- */
.exec-summary {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 30px;
  border-color: rgba(119, 229, 187, 0.28);
  background:
    radial-gradient(circle at 8% -10%, rgba(119, 229, 187, 0.18), transparent 46%),
    linear-gradient(145deg, rgba(119, 229, 187, 0.12), rgba(255, 255, 255, 0.04));
}

.exec-summary-eyebrow {
  color: var(--mint);
  font: 800 12px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.exec-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: 18px;
  align-items: start;
}

.exec-summary-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.exec-summary-main h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.exec-why {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
}

.exec-why b {
  color: var(--white);
}

.exec-move {
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(119, 229, 187, 0.24);
  border-radius: 18px;
  background: rgba(119, 229, 187, 0.07);
}

.exec-move span {
  display: block;
  margin-bottom: 6px;
  color: var(--mint);
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.exec-move p {
  margin: 0;
  color: var(--white);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
}

.exec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.exec-summary-meta {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(7, 16, 14, 0.5);
}

/* Stats row ---------------------------------------------------------------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  min-height: 150px;
  padding: 22px;
  border-radius: 22px;
}

.stat-card strong {
  display: block;
  margin: 16px 0 6px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.4;
}

.stat-write { background: linear-gradient(145deg, rgba(119, 229, 187, 0.15), rgba(255, 255, 255, 0.035)); }
.stat-refresh { background: linear-gradient(145deg, rgba(126, 181, 255, 0.15), rgba(255, 255, 255, 0.035)); }
.stat-fix { background: linear-gradient(145deg, rgba(255, 201, 107, 0.14), rgba(255, 255, 255, 0.035)); }
.stat-link { background: linear-gradient(145deg, rgba(187, 168, 255, 0.15), rgba(255, 255, 255, 0.035)); }
.stat-score { background: linear-gradient(145deg, rgba(255, 142, 142, 0.13), rgba(255, 255, 255, 0.035)); }

/* Badges + chips ----------------------------------------------------------- */
.action-badge {
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--night);
  background: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-write { background: #77e5bb; }
.badge-refresh { background: #7eb5ff; }
.badge-fix { background: #ffc96b; }
.badge-link { background: #bba8ff; }
.badge-watch { background: rgba(255, 255, 255, 0.5); }

.chip {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.03em;
}

.exec-summary-meta dt,
.brief-source-card dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.46);
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exec-summary-meta dd,
.brief-source-card dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.priority-panel,
.report-table-card {
  border-radius: 28px;
  padding: clamp(24px, 4vw, 38px);
}

.report-table-card {
  backdrop-filter: blur(18px);
}

.report-collapsible {
  border-radius: 28px;
  padding: clamp(20px, 3vw, 30px) clamp(24px, 4vw, 38px);
}

.report-collapsible > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.report-collapsible > summary::-webkit-details-marker {
  display: none;
}

.report-collapsible > summary span:first-child {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.report-collapsible > summary h2 {
  margin: 10px 0 6px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.report-collapsible > summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.collapsible-hint {
  flex-shrink: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-collapsible[open] > summary {
  margin-bottom: 24px;
}

/* Priority list ------------------------------------------------------------ */
.priority-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: priority;
}

.priority-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(7, 16, 14, 0.5);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.priority-card:hover {
  transform: translateY(-1px);
  border-color: rgba(119, 229, 187, 0.3);
}

.priority-card.is-selected {
  border-color: rgba(119, 229, 187, 0.55);
  background:
    radial-gradient(circle at 12% 0%, rgba(119, 229, 187, 0.14), transparent 44%),
    rgba(7, 16, 14, 0.6);
}

.priority-card-write .priority-block-action {
  border-color: rgba(119, 229, 187, 0.18);
  background: rgba(119, 229, 187, 0.05);
}

.priority-rank {
  color: rgba(119, 229, 187, 0.72);
  font: 800 26px/1 var(--mono);
  letter-spacing: -0.03em;
  margin-top: 2px;
}

.priority-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 12px;
}

.priority-body h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.priority-context-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 14px;
  margin-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.priority-context {
  display: grid;
  gap: 6px;
}

.priority-context span,
.priority-block span {
  color: rgba(255, 255, 255, 0.44);
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.priority-context p,
.priority-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.priority-block-action {
  min-height: 100%;
  padding: 16px 16px 17px;
  border: 1px solid rgba(119, 229, 187, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(119, 229, 187, 0.08), rgba(119, 229, 187, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.priority-block-action p {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
}

.priority-steps {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.priority-steps li + li {
  margin-top: 6px;
}

.priority-block-why p {
  color: rgba(255, 255, 255, 0.7);
}

.priority-context-evidence p {
  color: rgba(255, 255, 255, 0.88);
}

.priority-cta {
  display: flex;
  align-items: start;
  padding-top: 2px;
}

.brief-section {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brief-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.brief-section h4 {
  margin: 0 0 8px !important;
}

.brief-section p {
  margin: 0;
  font-size: 15px;
}

.brief-section li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.report-section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.report-section-heading h2 {
  margin: 10px 0 8px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.report-section-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.report-empty-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.report-tables {
  display: grid;
  gap: 22px;
  margin-top: 8px;
}

.white-label-cover,
.agency-report-panel {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-deep);
}

.white-label-cover {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
}

.white-label-cover span,
.agency-report-panel span {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.white-label-cover h2,
.agency-report-panel h2 {
  margin: 12px 0 8px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.white-label-cover p,
.agency-report-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.white-label-cover img {
  max-width: 160px;
  max-height: 76px;
  object-fit: contain;
}

.agency-report-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr) minmax(260px, 0.8fr);
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
}

.agency-report-panel form,
.share-link-box {
  display: grid;
  gap: 10px;
}

.agency-report-panel label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agency-report-panel select,
.agency-report-panel textarea,
.share-link-box input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.agency-report-panel textarea {
  resize: vertical;
}

.agency-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.agency-inline-form {
  grid-template-columns: minmax(180px, 1fr) minmax(160px, 0.8fr) auto;
  align-items: end;
  margin-bottom: 22px;
}

.agency-form label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agency-form input {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-main .account-hero h1 {
  max-width: 860px;
}

.dashboard-main .account-hero p {
  max-width: 760px;
  font-size: 18px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  padding-bottom: 90px;
}

#create-report,
.dashboard-upload-ready,
.dashboard-progress-card {
  scroll-margin-top: 96px;
}

.dashboard-upload-card.is-upload-ready .dashboard-upload-form {
  opacity: 0.72;
}

.dashboard-upload-ready {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(119, 229, 187, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(119, 229, 187, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.dashboard-upload-ready-head {
  display: grid;
  gap: 6px;
}

.dashboard-upload-ready-kicker {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-upload-ready-head strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.dashboard-upload-ready-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.dashboard-upload-ready-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-upload-ready-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.dashboard-upload-ready-stats b {
  color: var(--white);
  font-size: 13px;
}

.dashboard-upload-ready-actions,
.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.dashboard-upload-ready-actions .button,
.dashboard-actions .button {
  width: auto;
}

.dashboard-upload-ready[hidden],
.dashboard-progress-card[hidden],
.dashboard-warnings[hidden] {
  display: none !important;
}

.dashboard-grid > article:last-child {
  grid-column: 1 / -1;
}

.dashboard-upload-form,
.dashboard-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.dashboard-upload-form .button[type="submit"] {
  width: fit-content;
}

.dashboard-upload-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.dashboard-upload-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.dashboard-upload-form label:not(.premium-dropzone) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-upload-form input[type="file"]:not(.sr-only) {
  min-height: 54px;
  border: 1px dashed rgba(119, 229, 187, 0.36);
  border-radius: 16px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(119, 229, 187, 0.06);
}

.dashboard-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--mint);
}

.dashboard-message:empty {
  min-height: 0;
  margin-top: 0;
}

.dashboard-progress-card {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at top right, rgba(119, 229, 187, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
}

.dashboard-progress-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-progress-head > div {
  min-width: 0;
}

.dashboard-progress-head > div > span,
.upload-plan-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-progress-head h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.dashboard-progress-head p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.55;
}

.dashboard-progress-badge {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(119, 229, 187, 0.22);
  border-radius: 999px;
  background: rgba(119, 229, 187, 0.08);
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-progress-list,
.upload-plan-steps {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.report-progress-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(7, 16, 14, 0.42);
}

.report-progress-step + .report-progress-step {
  margin-top: 12px;
}

.report-progress-step-index {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font: 800 11px/1 var(--mono);
}

.report-progress-step strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
}

.report-progress-step p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.report-progress-step b {
  color: rgba(255, 255, 255, 0.5);
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-progress-step.is-active {
  border-color: rgba(119, 229, 187, 0.28);
  background: rgba(119, 229, 187, 0.08);
}

.report-progress-step.is-active .report-progress-step-index {
  background: rgba(119, 229, 187, 0.16);
  color: var(--mint);
}

.report-progress-step.is-complete {
  opacity: 0.88;
}

.report-progress-step.is-pending {
  opacity: 0.62;
}

.dashboard-progress-foot {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.dashboard-summary-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.dashboard-summary-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(7, 16, 14, 0.42);
}

.dashboard-summary-grid span {
  display: block;
  color: var(--white);
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -0.05em;
}

.dashboard-summary-grid small {
  color: rgba(255, 255, 255, 0.56);
}

.dashboard-snapshot-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-snapshot-head h2 {
  margin: 4px 0 0;
  color: var(--white);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.dashboard-snapshot-kicker {
  display: inline-flex;
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dashboard-snapshot-pill {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(119, 229, 187, 0.22);
  border-radius: 999px;
  background: rgba(119, 229, 187, 0.08);
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.12em;
}

.dashboard-usage-strip {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(7, 16, 14, 0.42);
}

.dashboard-usage-strip-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.dashboard-usage-strip-head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-usage-strip-head strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-usage-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-usage-track span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--blue));
  box-shadow: 0 0 24px rgba(119, 229, 187, 0.22);
  transition: width 0.3s ease;
}

.dashboard-usage-strip + .report-empty-copy {
  margin-top: 14px;
}

.dashboard-report-name {
  display: grid;
  gap: 3px;
}

.dashboard-report-name strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
}

.dashboard-report-name small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.dashboard-warnings {
  margin: 16px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.62);
}

.upload-main {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 54px);
}

.admin-main { min-height: 100vh; padding: calc(var(--header-height) + 48px) 0 90px; }
.admin-hero { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.admin-hero h1 { margin: 10px 0; color: var(--white); font-size: clamp(40px, 6vw, 72px); letter-spacing: -0.07em; }
.admin-hero p, .admin-message { color: rgba(255, 255, 255, 0.62); }
.admin-message { min-height: 24px; margin: 0 0 20px; }
.admin-message.is-error { color: #ffaaa9; }
.admin-health-grid, .admin-stat-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; margin-bottom: 16px; }
.admin-health-item, .admin-stat { padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.045); }
.admin-health-item span, .admin-stat span { display: block; color: rgba(255,255,255,.5); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.admin-health-item strong, .admin-stat strong { display: block; margin-top: 8px; color: var(--white); font-size: 16px; }
.admin-stat strong { font-size: 26px; font-family: var(--mono); letter-spacing: -.05em; }
.admin-alerts { margin-bottom: 16px; }
.admin-alert-list { margin: 0; padding-left: 20px; color: #ffd391; line-height: 1.7; }
.admin-empty { margin: 0; color: rgba(255,255,255,.48); font-size: 14px; }
.admin-table-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-table-card { min-width: 0; }
.admin-search { width: 180px; min-height: 38px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; padding: 0 10px; color: var(--white); background: rgba(255,255,255,.06); }
.admin-scroll { overflow-x: auto; }
.admin-table-card table { width: 100%; border-collapse: collapse; color: rgba(255,255,255,.7); font-size: 12px; }
.admin-table-card th { padding: 10px 8px; color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .1em; text-align: left; text-transform: uppercase; white-space: nowrap; }
.admin-table-card td { max-width: 220px; padding: 11px 8px; border-top: 1px solid rgba(255,255,255,.07); vertical-align: top; }
.admin-table-card td span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 900px) { .admin-health-grid, .admin-stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .admin-table-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .admin-main { padding-top: 105px; } .admin-hero { align-items: start; flex-direction: column; } .admin-health-grid, .admin-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .admin-search { width: 130px; } }

.upload-hero {
  margin-bottom: 28px;
}

.upload-hero h1 {
  max-width: 820px;
  margin: 12px 0 10px;
  color: var(--white);
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.upload-hero p {
  max-width: 620px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.upload-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding-bottom: 90px;
}

.upload-flow-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-deep);
}

.upload-flow-card form {
  display: grid;
  gap: 14px;
}

.upload-stepper {
  display: flex;
  gap: 18px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.upload-stepper li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
}

.upload-stepper b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-family: var(--mono);
}

.upload-stepper .is-active { color: var(--mint); }
.upload-stepper .is-active b { border-color: var(--mint); background: rgba(119, 229, 187, 0.1); }

.upload-flow-card label,
.upload-form-label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-dropzone {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 11px;
  border: 1px dashed rgba(119, 229, 187, 0.36);
  border-radius: 24px;
  padding: 26px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(119, 229, 187, 0.14), transparent 42%),
    rgba(119, 229, 187, 0.055);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.premium-dropzone:hover,
.premium-dropzone.dragover,
.premium-dropzone.has-file {
  border-color: var(--mint);
  background:
    radial-gradient(circle at 50% 0%, rgba(119, 229, 187, 0.2), transparent 44%),
    rgba(119, 229, 187, 0.08);
  transform: translateY(-1px);
}

.dropzone-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(119, 229, 187, 0.28);
  border-radius: 18px;
  color: var(--mint);
  background: rgba(119, 229, 187, 0.08);
  font-size: 28px;
  font-weight: 800;
}

.premium-dropzone strong {
  font-size: 24px;
  letter-spacing: -0.04em;
  text-transform: none;
}

.premium-dropzone small,
.premium-dropzone b {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.premium-dropzone b {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  word-break: break-all;
}

.upload-flow-card input[type="email"] {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.upload-flow-message {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--mint);
}

.upload-flow-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.5;
}

.upload-helper,
.export-helper {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.export-helper {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.58);
}

.sample-report-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(119, 229, 187, 0.16);
  border-radius: 18px;
  background: rgba(119, 229, 187, 0.055);
}

.sample-report-callout span {
  color: rgba(255, 255, 255, 0.7);
}

.upload-plan {
  margin: 22px 0;
  padding: 16px;
  border: 1px solid rgba(119, 229, 187, 0.14);
  border-radius: 18px;
  background: rgba(7, 16, 14, 0.36);
}

.upload-plan-steps {
  display: grid;
  gap: 12px;
}

.upload-plan-steps li {
  display: grid;
  grid-template-columns: minmax(74px, auto) minmax(0, 1fr);
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.upload-plan-steps li:first-child {
  padding-top: 0;
  border-top: 0;
}

.upload-plan-steps strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.upload-plan-steps span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.upload-teaser-card h2 {
  margin: 8px 0 10px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.upload-teaser-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.upload-teaser-kicker {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.upload-teaser-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.upload-teaser-grid div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(7, 16, 14, 0.42);
}

.upload-teaser-grid strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  letter-spacing: -0.05em;
}

.upload-teaser-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.top-signal-card {
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid rgba(119, 229, 187, 0.18);
  border-radius: 18px;
  background: rgba(119, 229, 187, 0.06);
}

.top-signal-card > span {
  display: block;
  margin-bottom: 14px;
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-signal-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.top-signal-card dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.48);
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.top-signal-card dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.upload-email-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.ai-brief-panel {
  background:
    radial-gradient(circle at 12% 0%, rgba(119, 229, 187, 0.14), transparent 40%),
    linear-gradient(145deg, rgba(119, 229, 187, 0.12), rgba(255, 255, 255, 0.04));
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.brief-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.brief-panel-heading span:first-child,
.ai-label {
  color: var(--mint);
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-label {
  width: max-content;
  padding: 7px 9px;
  border: 1px solid rgba(119, 229, 187, 0.3);
  border-radius: 999px;
  background: rgba(119, 229, 187, 0.08);
}

.brief-workspace-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
  margin-top: 22px;
}

.brief-source-card,
.brief-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 20px;
  background: rgba(7, 16, 14, 0.48);
}

.brief-source-card > span {
  color: var(--mint);
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-source-card h4 {
  margin: 12px 0 16px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.brief-source-card dl {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

.brief-source-card p,
.brief-detail-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.brief-meta {
  margin-top: 0;
  color: var(--mint) !important;
  font: 800 11px/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-answer {
  margin: 0 0 20px;
  padding: 16px;
  border: 1px solid rgba(119, 229, 187, 0.18);
  border-radius: 16px;
  background: rgba(119, 229, 187, 0.06);
  color: rgba(255, 255, 255, 0.84) !important;
}

.brief-empty {
  padding: 18px;
  border: 1px dashed rgba(119, 229, 187, 0.24);
  border-radius: 16px;
  background: rgba(119, 229, 187, 0.045);
}

.ai-brief-panel h4 {
  margin: 22px 0 8px;
  color: var(--white);
}

.ai-brief-panel ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.report-table-card h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.table-scroll {
  overflow-x: auto;
}

.report-table-card table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.report-table-card th,
.report-table-card td {
  padding: 15px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.report-table-card th {
  color: rgba(255, 255, 255, 0.5);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.report-table-card td {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.report-table-card tr.is-selected td {
  border-color: rgba(119, 229, 187, 0.26);
  background: rgba(119, 229, 187, 0.065);
}

.report-table-card tbody tr {
  transition: background 0.2s ease;
}

.report-table-card tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.report-table-card td:first-child {
  color: var(--white);
  font-weight: 700;
}

.table-empty {
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 400 !important;
}

@media (max-width: 980px) {
  .report-hero-grid {
    grid-template-columns: 1fr;
  }

  .report-meta-card {
    position: static;
  }

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

  .exec-summary-grid,
  .brief-workspace-grid {
    grid-template-columns: 1fr;
  }

  .priority-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .priority-cta {
    grid-column: 1 / -1;
  }

  .agency-report-panel {
    grid-template-columns: 1fr;
  }

  .dashboard-grid,
  .dashboard-summary-grid,
  .upload-flow-grid,
  .upload-email-form > div {
    grid-template-columns: 1fr;
  }

  .dashboard-hero {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-hero-panel {
    flex-basis: auto;
  }

  .dashboard-upload-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .dashboard-progress-head,
  .report-progress-step {
    grid-template-columns: 1fr;
  }

  .dashboard-progress-head {
    flex-direction: column;
  }

  .dashboard-progress-badge,
  .report-progress-step b {
    justify-self: start;
  }

  .sample-report-callout {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .report-page,
  .weekly-report,
  .report-hero,
  .report-dashboard {
    max-width: 100%;
    overflow-x: clip;
  }

  .report-page .container {
    width: calc(100% - 30px);
    max-width: calc(100% - 30px);
  }

  .report-hero-grid,
  .report-hero-grid > *,
  .report-meta-card,
  .exec-summary,
  .exec-summary-grid,
  .exec-summary-grid > *,
  .exec-summary-main,
  .exec-summary-meta,
  .stat-grid,
  .priority-panel,
  .work-groups,
  .report-collapsible {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .report-meta-card *,
  .exec-summary * {
    min-width: 0;
  }

  .report-nav {
    display: none;
  }

  .report-loader > div,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .priority-card {
    grid-template-columns: 1fr;
  }

  .priority-context-row,
  .priority-content-grid {
    grid-template-columns: 1fr;
  }

  .priority-rank {
    font-size: 24px;
  }

  .priority-cta {
    padding-top: 10px;
  }

  .report-loader input {
    min-height: 48px;
  }

  .report-hero {
    padding-top: calc(var(--header-height) + 34px);
  }

  .white-label-cover {
    display: grid;
  }
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.auth-card {
  width: min(100%, 520px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
}

.auth-brand {
  width: max-content;
  margin-bottom: 32px;
}

.auth-kicker {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.auth-card h1 {
  margin: 12px 0;
  color: var(--white);
  font-size: clamp(34px, 7vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.auth-card p {
  color: rgba(255, 255, 255, 0.66);
}

.auth-card form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.auth-card label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-card input {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.account-main {
  padding-top: calc(var(--header-height) + 54px);
}

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

.dashboard-hero {
  align-items: stretch;
}

.dashboard-hero-copy {
  flex: 1 1 62%;
}

.dashboard-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.dashboard-hero-panel {
  flex: 0 1 360px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(119, 229, 187, 0.12), transparent 42%),
    rgba(7, 16, 14, 0.46);
  box-shadow: var(--shadow-deep);
}

.dashboard-hero-panel > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-hero-panel ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-hero-panel li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-hero-panel li:first-child {
  padding-top: 0;
  border-top: 0;
}

.dashboard-hero-panel b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(119, 229, 187, 0.08);
  color: var(--mint);
  font: 800 11px/1 var(--mono);
}

.dashboard-hero-panel strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
}

.dashboard-hero-panel p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.account-hero h1 {
  max-width: 720px;
  margin: 12px 0 10px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.account-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.account-grid {
  display: grid;
  gap: 24px;
  padding-bottom: 90px;
}

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

.usage-meter div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    rgba(7, 16, 14, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.usage-meter span {
  display: block;
  color: var(--white);
  font-size: 36px;
  font-weight: 750;
  letter-spacing: -0.06em;
}

.usage-meter small {
  color: rgba(255, 255, 255, 0.56);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 90px;
}

.plan-grid-compact {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  padding-bottom: 0;
}

.plan-option {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-deep);
}

.plan-option.active {
  border-color: rgba(119, 229, 187, 0.42);
}

.plan-option.selected {
  border-color: rgba(119, 229, 187, 0.64);
  background:
    radial-gradient(circle at 100% 0%, rgba(119, 229, 187, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  transform: translateY(-4px);
}

.plan-option-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-option-heading > span {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plan-state-badge {
  padding: 6px 8px;
  border: 1px solid rgba(119, 229, 187, 0.22);
  border-radius: 999px;
  background: rgba(119, 229, 187, 0.08);
  color: var(--mint) !important;
  font: 750 9px/1 var(--mono) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-option > span {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plan-option strong {
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.plan-option small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.plan-option ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.plan-option > p {
  min-height: 42px;
  margin: -6px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 90px;
}

.pricing-detail-grid h2 {
  margin: 12px 0 22px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.05em;
}

.pricing-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pricing-step;
}

.pricing-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 3px 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  counter-increment: pricing-step;
}

.pricing-steps li::before {
  grid-row: span 2;
  content: counter(pricing-step, decimal-leading-zero);
  color: var(--mint);
  font: 800 11px/1.5 var(--mono);
}

.pricing-steps strong { color: var(--white); }
.pricing-steps span,
.pricing-faq-list p { color: rgba(255, 255, 255, 0.62); line-height: 1.55; }

.pricing-faq-list details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.pricing-faq-list summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
}

.pricing-faq-list p { margin: 10px 0 0; }

.billing-capacity { margin-top: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

[data-billing-message][data-tone="error"],
[data-billing-message][data-tone="warning"] { color: #f7bd84; }

[data-billing-message][data-tone="success"] { color: var(--mint); }

[data-billing-message][data-tone="notice"] { color: rgba(255, 255, 255, 0.74); }

.seo-page {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(119, 229, 187, 0.18), transparent 36%),
    linear-gradient(180deg, var(--night) 0%, #0a1512 42%, #101b18 100%);
}

.seo-main {
  padding: calc(var(--header-height) + 58px) 0 100px;
}

.seo-article {
  display: grid;
  gap: 22px;
  max-width: 960px;
}

.seo-hero {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-deep);
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-breadcrumbs a,
.seo-breadcrumbs span {
  color: inherit;
}

.seo-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(7, 16, 14, 0.4);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.seo-answer {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 22px);
}

.seo-answer strong {
  color: var(--mint);
}

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

.seo-snapshot article {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(7, 16, 14, 0.34);
}

.seo-snapshot span,
.seo-highlight h2 {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-snapshot p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.seo-section,
.seo-cta {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.seo-highlight {
  display: grid;
  gap: 14px;
}

.seo-highlight ul {
  margin: 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.seo-highlight li + li {
  margin-top: 10px;
}

.seo-section h2,
.seo-cta h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.seo-section p,
.seo-section li,
.seo-cta p {
  color: rgba(255, 255, 255, 0.68);
}

.seo-section ol,
.seo-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.seo-table-wrap {
  overflow-x: auto;
}

.seo-section table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.seo-section th,
.seo-section td {
  padding: 15px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: top;
}

.seo-section th {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-section td {
  color: rgba(255, 255, 255, 0.74);
}

.seo-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: linear-gradient(145deg, rgba(119, 229, 187, 0.16), rgba(255, 255, 255, 0.055));
}

.seo-cta p {
  margin: 0;
}

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

.seo-related a,
.seo-faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(7, 16, 14, 0.36);
}

.seo-related a {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.78);
}

.seo-related a strong {
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
}

.seo-related a span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.blog-hero {
  max-width: 920px;
}

.blog-hero h1 {
  max-width: 760px;
}

.blog-hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.blog-hero-cta > div {
  display: grid;
  gap: 3px;
  margin-right: auto;
}

.blog-hero-cta > div span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.blog-card small {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-note {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

@media (max-width: 640px) {
  .blog-hero-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-hero-cta > div {
    margin-right: 0;
  }

  .blog-hero-cta .button {
    justify-content: center;
    width: 100%;
  }
}

.seo-footer {
  display: grid;
  gap: 12px;
  padding: 8px 4px 0;
  color: rgba(255, 255, 255, 0.68);
}

.seo-footer p {
  margin: 0;
}

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

.seo-footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-faq {
  display: grid;
  gap: 12px;
}

.seo-faq details {
  padding: 16px;
}

.seo-faq summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
}

.seo-faq p {
  margin: 10px 0 0;
}

@media print {
  :root {
    --header-height: 0px;
  }

  body,
  .report-page,
  .weekly-report {
    color: #111;
    background: #fff !important;
  }

  .site-header,
  .report-loader,
  .no-print,
  .report-export-actions,
  .skip-link {
    display: none !important;
  }

  .report-hero {
    padding: 0 0 24px;
    background: #fff !important;
  }

  .report-hero-grid,
  .report-dashboard {
    display: block;
  }

  .container {
    width: 100%;
  }

  .report-meta-card,
  .stat-card,
  .exec-summary,
  .priority-panel,
  .priority-card,
  .report-collapsible,
  .report-table-card,
  .white-label-cover {
    break-inside: avoid;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    color: #111;
    background: #fff !important;
    box-shadow: none;
  }

  .report-hero h1,
  .report-hero p,
  .report-meta-card strong,
  .report-meta-card dd,
  .exec-summary-main h2,
  .exec-why,
  .exec-move p,
  .exec-summary-meta dd,
  .stat-card strong,
  .stat-card p,
  .priority-body h3,
  .priority-reason,
  .priority-body dd,
  .priority-rank,
  .report-section-heading h2,
  .report-section-heading p,
  .report-collapsible > summary h2,
  .report-collapsible > summary p,
  .report-table-card h3,
  .report-table-card td,
  .white-label-cover h2,
  .white-label-cover p {
    color: #111 !important;
  }

  .collapsible-hint {
    display: none !important;
  }

  .report-table-card table {
    min-width: 0;
  }

  .dashboard-upload-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-upload-meta span {
    width: 100%;
    justify-content: flex-start;
  }

  .dashboard-snapshot-head,
  .dashboard-usage-strip-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .account-hero {
    display: grid;
  }

  .usage-meter,
  .plan-grid,
  .plan-grid-compact,
  .pricing-detail-grid,
  .seo-related,
  .seo-snapshot,
  .agency-inline-form {
    grid-template-columns: 1fr;
  }

  .seo-cta {
    display: grid;
  }

  .seo-section table {
    min-width: 0;
    width: max-content;
  }
}

/* Authenticated command-center dashboard */
.dashboard-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 22% 0%, rgba(119, 229, 187, 0.075), transparent 30%),
    #07100e;
}

.dashboard-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 13, 11, 0.94);
  backdrop-filter: blur(20px);
}

.dashboard-rail-brand {
  width: 46px;
  height: 46px;
  margin-bottom: 58px;
  border-radius: 15px;
}

.dashboard-rail nav {
  display: grid;
  gap: 12px;
}

.dashboard-rail nav a,
.dashboard-rail > button {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.46);
  background: transparent;
  font: 700 20px/1 var(--mono);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.dashboard-rail > button {
  margin-top: auto;
}

.dashboard-rail nav a:hover,
.dashboard-rail nav a:focus-visible,
.dashboard-rail > button:hover,
.dashboard-rail > button:focus-visible,
.dashboard-rail nav a.is-active {
  color: var(--mint);
  background: rgba(119, 229, 187, 0.09);
}

.dashboard-rail nav a:hover,
.dashboard-rail > button:hover {
  transform: translateY(-1px);
}

.dashboard-rail [data-label]::after {
  content: attr(data-label);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  width: max-content;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  color: var(--white);
  background: #111c19;
  box-shadow: var(--shadow-deep);
  font: 700 11px/1 var(--sans);
  opacity: 0;
  pointer-events: none;
  transform: translate(-4px, -50%);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.dashboard-rail [data-label]:hover::after,
.dashboard-rail [data-label]:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.dashboard-mobile-header {
  display: none;
}

.dashboard-command {
  min-height: 100vh;
  margin-left: 92px;
  padding: 68px 30px 100px;
}

.dashboard-command-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.dashboard-command-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.dashboard-command-kicker {
  display: inline-block;
  color: rgba(167, 191, 183, 0.62);
  font: 800 11px/1.2 var(--mono);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.dashboard-command-header h1 {
  margin: 12px 0 9px;
  color: var(--white);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.dashboard-command-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 16px;
}

.dashboard-command-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-account-chip {
  min-height: 48px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.dashboard-account-chip b {
  color: var(--mint);
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.12em;
}

.dashboard-latest {
  display: grid;
  gap: 18px;
}

.dashboard-latest[hidden],
.dashboard-empty-state[hidden] {
  display: none !important;
}

.dashboard-command-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-command-stats article,
.dashboard-best-card,
.dashboard-ready-card,
.dashboard-priority-panel,
.dashboard-empty-state,
.dashboard-workspace-grid > .report-table-card,
.dashboard-recent-panel {
  border: 1px solid rgba(153, 190, 177, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(11, 25, 21, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.dashboard-command-stats article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border-radius: 20px;
}

.dashboard-command-stats article:first-child {
  border-color: rgba(119, 229, 187, 0.3);
  background:
    radial-gradient(circle at 0 0, rgba(119, 229, 187, 0.08), transparent 54%),
    rgba(12, 29, 24, 0.9);
}

.dashboard-command-stats span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.dashboard-command-stats strong {
  color: var(--white);
  font: 740 clamp(34px, 4vw, 48px)/0.95 var(--mono);
  letter-spacing: -0.07em;
}

.dashboard-command-stats article:first-child strong {
  color: var(--mint);
}

.dashboard-command-stats small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.dashboard-decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: 16px;
}

.dashboard-best-card,
.dashboard-ready-card,
.dashboard-priority-panel,
.dashboard-empty-state {
  border-radius: 22px;
}

.dashboard-best-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.dashboard-best-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -170px;
  bottom: -210px;
  border-radius: 50%;
  background: rgba(119, 229, 187, 0.08);
  filter: blur(4px);
  pointer-events: none;
}

.dashboard-card-label,
.dashboard-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-card-label > span {
  color: rgba(167, 191, 183, 0.62);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-card-label > b {
  padding: 7px 10px;
  border-radius: 9px;
  color: var(--mint);
  background: rgba(119, 229, 187, 0.09);
  font: 800 11px/1 var(--mono);
}

.dashboard-best-card h2 {
  max-width: 680px;
  margin: 25px 0 14px;
  color: var(--white);
  font-size: clamp(25px, 3.4vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.dashboard-best-card > p {
  max-width: 700px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.dashboard-best-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.dashboard-best-metrics span {
  color: rgba(255, 255, 255, 0.58);
  font: 700 12px/1 var(--mono);
}

.dashboard-recommendation {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 20px 0;
  padding: 14px;
  border-radius: 14px;
  background: rgba(119, 229, 187, 0.07);
}

.dashboard-recommendation > span {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: var(--mint);
  background: rgba(119, 229, 187, 0.1);
}

.dashboard-recommendation small,
.dashboard-recommendation strong {
  display: block;
}

.dashboard-recommendation small {
  margin-bottom: 4px;
  color: rgba(119, 229, 187, 0.68);
  font: 800 9px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-recommendation strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.4;
}

.dashboard-ready-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.dashboard-ready-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 15px;
  color: var(--mint);
  background: rgba(119, 229, 187, 0.09);
  font-size: 22px;
}

.dashboard-ready-card h2 {
  margin: 10px 0 8px;
  color: var(--white);
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.dashboard-ready-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.55;
}

.dashboard-ready-card .button {
  width: 100%;
  margin-top: auto;
}

.dashboard-priority-panel {
  padding: 26px;
}

.dashboard-panel-heading h2 {
  margin: 7px 0 0;
  color: var(--white);
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.dashboard-panel-heading > a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.dashboard-panel-heading > a:hover {
  color: var(--mint);
}

.dashboard-priority-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.dashboard-priority-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dashboard-priority-list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  color: inherit;
  text-decoration: none;
}

.dashboard-priority-list a:hover .dashboard-priority-copy > b {
  color: var(--mint);
}

.dashboard-priority-rank {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--mint);
  background: rgba(119, 229, 187, 0.07);
  font: 800 10px/1 var(--mono);
}

.dashboard-priority-copy {
  min-width: 0;
}

.dashboard-priority-copy > b {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.dashboard-priority-copy .action-badge {
  flex: 0 0 auto;
  font-size: 8px;
  font-style: normal;
}

.dashboard-priority-copy small {
  display: block;
  overflow: hidden;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-priority-impact {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.52);
  font: 700 11px/1 var(--mono);
}

.dashboard-priority-impact i {
  width: 72px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint) 70%, rgba(255, 255, 255, 0.07) 70%);
}

.dashboard-priority-empty {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.dashboard-empty-state {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 28px;
}

.dashboard-empty-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--mint);
  background: rgba(119, 229, 187, 0.09);
  font-size: 24px;
}

.dashboard-empty-state h2 {
  margin: 9px 0 5px;
  color: var(--white);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.dashboard-empty-state p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.dashboard-latest-error {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.dashboard-latest-error h2 {
  margin: 10px 0 8px;
  color: var(--white);
}

.dashboard-latest-error p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.56);
}

.dashboard-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 18px;
  margin-top: 28px;
}

.dashboard-workspace-grid > .report-table-card,
.dashboard-recent-panel {
  border-radius: 22px;
}

.dashboard-workspace-grid .dashboard-upload-card,
.dashboard-capacity-card {
  padding: 26px;
}

.dashboard-upload-form .premium-dropzone {
  min-height: 190px;
}

.dashboard-upload-form .button[type="submit"] {
  width: 100%;
}

.dashboard-capacity-number {
  display: grid;
  gap: 4px;
  margin: 30px 0 24px;
}

.dashboard-capacity-number strong {
  color: var(--mint);
  font: 750 58px/0.9 var(--mono);
  letter-spacing: -0.08em;
}

.dashboard-capacity-number span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.dashboard-capacity-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.dashboard-capacity-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dashboard-capacity-facts dt,
.dashboard-capacity-facts dd {
  margin: 0;
  font-size: 12px;
}

.dashboard-capacity-facts dt {
  color: rgba(255, 255, 255, 0.48);
}

.dashboard-capacity-facts dd {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}

.dashboard-text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.dashboard-workspace-grid .dashboard-progress-card {
  grid-column: 1 / -1;
}

.dashboard-recent-panel {
  margin-top: 18px;
  padding: 26px;
}

.dashboard-report-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.dashboard-report-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dashboard-report-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--mint);
  background: rgba(119, 229, 187, 0.07);
}

.dashboard-report-row dl {
  display: flex;
  gap: 28px;
  margin: 0;
}

.dashboard-report-row dl > div {
  min-width: 58px;
}

.dashboard-report-row dt,
.dashboard-report-row dd {
  margin: 0;
}

.dashboard-report-row dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.4);
  font: 800 9px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-report-row dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
}

.dashboard-report-empty {
  padding: 22px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
}

.dashboard-skeleton .dashboard-command-stats article,
.dashboard-skeleton .dashboard-best-card,
.dashboard-skeleton .dashboard-ready-card,
.dashboard-skeleton .dashboard-priority-panel {
  position: relative;
  overflow: hidden;
}

.dashboard-skeleton .dashboard-command-stats article::after,
.dashboard-skeleton .dashboard-best-card::before,
.dashboard-skeleton .dashboard-ready-card::before,
.dashboard-skeleton .dashboard-priority-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.035) 48%, transparent 76%);
  transform: translateX(-100%);
  animation: dashboard-shimmer 1.4s infinite;
}

@keyframes dashboard-shimmer {
  to { transform: translateX(100%); }
}

@media (max-width: 1100px) {
  .dashboard-command-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-decision-grid,
  .dashboard-workspace-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-ready-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
  }

  .dashboard-ready-icon {
    margin: 0;
  }

  .dashboard-ready-card p {
    margin-bottom: 0;
  }

  .dashboard-ready-card .button {
    width: auto;
    margin: 0;
  }
}

@media (max-width: 980px) {
  .dashboard-rail {
    display: none;
  }

  .dashboard-mobile-header {
    display: block;
  }

  .dashboard-command {
    margin-left: 0;
    padding: calc(var(--header-height) + 38px) 22px 80px;
  }
}

@media (max-width: 720px) {
  .dashboard-command {
    padding-right: 16px;
    padding-left: 16px;
  }

  .dashboard-command-header,
  .dashboard-command-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-command-actions .button {
    width: 100%;
  }

  .dashboard-command-header h1 {
    font-size: 43px;
  }

  .dashboard-account-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dashboard-command-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .dashboard-command-stats article {
    min-height: 130px;
    padding: 17px;
  }

  .dashboard-command-stats strong {
    font-size: 34px;
  }

  .dashboard-best-card,
  .dashboard-ready-card,
  .dashboard-priority-panel,
  .dashboard-workspace-grid .dashboard-upload-card,
  .dashboard-capacity-card,
  .dashboard-recent-panel {
    padding: 20px;
  }

  .dashboard-ready-card {
    display: flex;
    align-items: flex-start;
  }

  .dashboard-ready-card .button {
    width: 100%;
  }

  .dashboard-priority-list a {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 14px 0;
  }

  .dashboard-priority-copy > b {
    align-items: flex-start;
    flex-direction: column;
    white-space: normal;
  }

  .dashboard-priority-copy small {
    white-space: normal;
  }

  .dashboard-priority-impact {
    grid-column: 2;
  }

  .dashboard-priority-impact i {
    width: 46px;
  }

  .dashboard-empty-state {
    grid-template-columns: 1fr;
  }

  .dashboard-empty-state .button {
    width: 100%;
  }

  .dashboard-report-row {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 16px 0;
  }

  .dashboard-report-row dl,
  .dashboard-report-row .button {
    grid-column: 2;
  }

  .dashboard-report-row .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .dashboard-command-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-command-stats article {
    min-height: 116px;
  }

  .dashboard-best-metrics {
    display: grid;
    gap: 9px;
  }

  .dashboard-card-label,
  .dashboard-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-skeleton .dashboard-command-stats article::after,
  .dashboard-skeleton .dashboard-best-card::before,
  .dashboard-skeleton .dashboard-ready-card::before,
  .dashboard-skeleton .dashboard-priority-panel::before {
    animation: none;
  }
}

/* Report decision-document sweep ----------------------------------------- */
.has-report .report-hero {
  padding: calc(var(--header-height) + 34px) 0 28px;
}

.has-report .report-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.has-report .report-hero h1 {
  max-width: none;
  margin: 10px 0 12px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.96;
}

.has-report .report-hero p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

.report-meta-card {
  position: static;
  padding: 20px;
}

.report-meta-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.report-meta-heading > div > span {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-meta-heading strong {
  margin: 8px 0 0;
  font-size: clamp(20px, 2vw, 25px);
  overflow-wrap: anywhere;
}

.report-crawl-note {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.report-crawl-note .report-crawl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
  padding: 3px 8px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  background: rgba(8, 15, 23, 0.55);
  color: rgba(248, 250, 252, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.report-meta-heading time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font: 700 13px/1.3 var(--mono);
}

.report-meta-card dl {
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0;
}

.report-meta-card dl > div:first-child {
  grid-column: auto;
}

.report-meta-card dt,
.priority-body dt,
.exec-summary-meta dt,
.brief-source-card dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.report-meta-card dd {
  font-size: 14px;
}

.report-export-actions {
  grid-template-columns: 1fr 1fr;
}

.report-export-actions .button:first-child {
  grid-column: 1 / -1;
}

.report-dashboard {
  gap: clamp(24px, 3vw, 38px);
}

.print-or-shared {
  display: none;
}

.shared-report .print-or-shared {
  display: grid;
}

.agency-report-panel {
  display: block;
  padding: 0;
  overflow: hidden;
}

.agency-report-panel[hidden],
.white-label-cover[hidden],
.priority-toggle[hidden],
.report-toast[hidden] {
  display: none !important;
}

.agency-report-panel > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
}

.agency-report-panel > summary::-webkit-details-marker {
  display: none;
}

.agency-report-panel > summary h2 {
  margin: 7px 0 4px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.agency-report-panel > summary p {
  margin: 0;
}

.agency-report-panel[open] > summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.agency-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 24px;
  padding: 24px 26px 26px;
}

.exec-summary {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.exec-summary-main h2 {
  max-width: 860px;
}

.exec-actions .button,
.priority-cta .button,
.work-group-item .button {
  min-height: 42px;
  white-space: nowrap;
}

.status-badge {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font: 750 11px/1 var(--mono);
  letter-spacing: 0.03em;
}

.status-ready {
  border-color: rgba(119, 229, 187, 0.26);
  color: var(--mint);
  background: rgba(119, 229, 187, 0.07);
}

.status-failed {
  border-color: rgba(255, 142, 142, 0.28);
  color: #ffaaaa;
  background: rgba(255, 142, 142, 0.07);
}

.status-watch,
.status-idle {
  color: rgba(255, 255, 255, 0.66);
}

.badge-ignore {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
}

.priority-panel,
.work-groups,
.report-collapsible {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.priority-card {
  padding: 22px;
}

.priority-body h3 {
  font-size: clamp(20px, 1.8vw, 25px);
}

.priority-reason {
  max-width: 940px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 16px;
  line-height: 1.6;
}

.priority-body dt {
  margin-bottom: 5px;
}

.priority-body dd {
  font-size: 15px;
  line-height: 1.5;
}

.priority-next-move dd {
  color: var(--white);
  font-weight: 650;
}

.priority-steps {
  margin: 10px 0 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 450;
  line-height: 1.45;
}

.priority-brief-hint {
  margin: 10px 0 0;
  color: var(--mint);
  font-size: 14px;
  line-height: 1.45;
}

.priority-steps li + li {
  margin-top: 6px;
}

.priority-why {
  color: rgba(255, 255, 255, 0.82);
}

.priority-toggle {
  display: block;
  min-height: 46px;
  margin: 20px auto 0;
}

.work-groups {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-deep);
}

.work-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.work-group {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(7, 16, 14, 0.5);
  overflow: hidden;
}

.work-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
}

.work-group > summary::-webkit-details-marker {
  display: none;
}

.work-group > summary span {
  color: var(--white);
  font-size: 18px;
  font-weight: 750;
}

.work-group > summary b {
  display: grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  color: var(--night);
  background: var(--mint);
  font: 800 13px/1 var(--mono);
}

.work-group-refresh > summary b { background: #7eb5ff; }
.work-group-fix > summary b { background: #ffc96b; }
.work-group-link > summary b { background: #bba8ff; }

.work-group[open] > summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.work-group-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.work-group-item:last-child {
  border-bottom: 0;
}

.work-group-item h3 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.25;
}

.work-group-item p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.work-group-item small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.4;
}

.work-group-empty {
  margin: 0;
  padding: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.evidence-table-card {
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: rgba(7, 16, 14, 0.38);
  box-shadow: none;
}

.evidence-table-card table {
  min-width: 1040px;
}

.evidence-table-card td {
  font-size: 14px;
}

.evidence-table-card td:nth-child(3),
.evidence-table-card td:nth-child(4),
.evidence-table-card td:nth-child(6) {
  max-width: 280px;
}

.source-type {
  color: rgba(255, 255, 255, 0.7);
  font: 750 12px/1.35 var(--mono);
}

.report-toast {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  max-width: min(420px, calc(100vw - 44px));
  padding: 14px 17px;
  border: 1px solid rgba(119, 229, 187, 0.32);
  border-radius: 14px;
  color: var(--white);
  background: rgba(10, 27, 23, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  font-size: 14px;
  line-height: 1.45;
}

.brief-drawer {
  width: min(720px, 100%);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.86);
  background: #0a1714;
  box-shadow: -28px 0 90px rgba(0, 0, 0, 0.46);
}

.brief-drawer::backdrop {
  background: rgba(1, 8, 7, 0.72);
  backdrop-filter: blur(5px);
}

.brief-drawer[open] {
  animation: brief-drawer-in 0.22s ease-out;
}

@keyframes brief-drawer-in {
  from { transform: translateX(28px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.brief-drawer-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
}

.brief-drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 35, 29, 0.94);
}

.brief-drawer-header span {
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-drawer-header h2 {
  margin: 9px 0 0;
  color: var(--white);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.brief-drawer-close {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.brief-drawer-scroll {
  overflow-y: auto;
  padding: 22px 26px 30px;
}

.brief-drawer-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.brief-drawer-status p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font: 700 11px/1.4 var(--mono);
  text-align: right;
}

.brief-progress-card {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(119, 229, 187, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(119, 229, 187, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.brief-progress-card[hidden] {
  display: none !important;
}

.brief-detail-card[hidden] {
  display: none !important;
}

.brief-progress-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.brief-progress-head > div > span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--mint);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-progress-head h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.brief-progress-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

.brief-progress-badge {
  flex: 0 0 auto;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(119, 229, 187, 0.22);
  border-radius: 999px;
  background: rgba(119, 229, 187, 0.08);
  color: var(--mint);
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.brief-progress-foot {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.brief-drawer .brief-source-card {
  margin-bottom: 18px;
  background: rgba(119, 229, 187, 0.045);
}

.brief-drawer .brief-source-card h3 {
  margin: 12px 0 16px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.brief-drawer .brief-source-card p {
  margin-bottom: 0;
}

.brief-drawer .brief-answer {
  font-size: 16px;
  line-height: 1.65;
}

.brief-drawer .brief-detail-card {
  padding: 22px;
}

.brief-drawer .brief-section h3 {
  margin: 0 0 9px;
  color: var(--white);
  font-size: 17px;
}

.brief-drawer .brief-section p,
.brief-drawer .brief-section li,
.brief-guidance p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.62;
}

.brief-drawer .brief-section ol,
.brief-drawer .brief-section ul {
  margin: 0;
  padding-left: 21px;
}

.brief-guidance {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brief-guidance summary {
  padding: 18px 0 4px;
  color: var(--mint);
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
}

.brief-drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 35, 29, 0.96);
}

.brief-drawer-actions .button {
  min-height: 44px;
}

@media (max-width: 980px) {
  .has-report .report-hero-grid,
  .agency-settings-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .report-hero-grid > *,
  .exec-summary-grid > *,
  .agency-settings-grid > * {
    min-width: 0;
  }

  .exec-summary-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .report-meta-card {
    max-width: none;
  }

  .work-group-grid {
    grid-template-columns: 1fr;
  }

  .sample-report-top,
  .sample-report-featured {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .sample-report-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .sample-report-item aside {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .has-report .report-hero {
    padding-top: calc(var(--header-height) + 24px);
  }

  .has-report .report-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 46px);
    letter-spacing: -0.065em;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .has-report .report-hero p,
  .exec-summary-main h2,
  .exec-why,
  .exec-summary-meta dd {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .report-meta-card dl,
  .report-export-actions {
    grid-template-columns: 1fr;
  }

  .report-meta-card dl > div:first-child {
    grid-column: auto;
  }

  .report-export-actions .button {
    width: 100%;
    max-width: 100%;
  }

  .report-export-actions .button:first-child {
    grid-column: auto;
  }

  .sample-report {
    gap: 14px;
    padding: 18px 16px;
  }

  .sample-report-meta {
    grid-template-columns: 1fr;
  }

  .sample-report-top h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .sample-report-featured {
    gap: 14px;
    padding: 18px 16px;
  }

  .sample-report-stats {
    grid-template-columns: 1fr;
  }

  .sample-report-item {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 16px 14px;
  }

  .sample-report-item aside {
    grid-column: 2;
    padding: 10px 11px;
  }

  .report-meta-heading {
    display: grid;
    gap: 10px;
  }

  .priority-panel,
  .work-groups,
  .report-collapsible {
    border-radius: 22px;
    padding: 20px 16px;
  }

  .priority-card {
    gap: 12px;
    padding: 18px 16px;
  }

  .priority-card-head {
    gap: 7px;
  }

  .priority-reason {
    font-size: 15px;
  }

  .priority-body dl {
    grid-template-columns: 1fr;
  }

  .priority-cta .button,
  .work-group-item .button {
    width: 100%;
    min-height: 46px;
  }

  .work-group-item {
    grid-template-columns: 1fr;
  }

  .report-collapsible > summary {
    align-items: start;
    flex-direction: column;
  }

  .brief-drawer {
    width: 100%;
  }

  .brief-drawer-header,
  .brief-drawer-scroll,
  .brief-drawer-actions {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brief-drawer-status {
    align-items: start;
    flex-direction: column;
  }

  .brief-drawer-status p {
    text-align: left;
  }

  .brief-drawer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .report-toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}

@media (max-width: 360px) {
  .report-meta-card,
  .exec-summary,
  .priority-panel,
  .work-groups,
  .report-collapsible {
    padding-right: 14px;
    padding-left: 14px;
  }

  .action-badge,
  .status-badge,
  .chip {
    font-size: 10px;
  }

  .brief-drawer-header h2 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brief-drawer[open] {
    animation: none;
  }
}

@media print {
  .print-or-shared {
    display: grid !important;
  }

  .work-groups,
  .report-toast,
  .brief-drawer {
    display: none !important;
  }

  .report-collapsible:not([open]) > *:not(summary) {
    display: none !important;
  }
}
