@font-face {
  font-family: "Audit Manrope";
  src: url("/audit/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Audit Newsreader";
  src: url("/audit/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: "Audit Newsreader";
  src: url("/audit/newsreader-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
}

:root {
  --night: #061c27;
  --night-2: #0a2a36;
  --ink: #082431;
  --ink-soft: #53676e;
  --coral: #ff6849;
  --coral-dark: #c83e28;
  --mint: #8ff0c7;
  --mint-deep: #174f42;
  --paper: #fffdf8;
  --pearl: #f6f3eb;
  --cream: #eee9de;
  --white: #ffffff;
  --line: rgba(8, 36, 49, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --display: "Audit Newsreader", "Iowan Old Style", Baskerville, serif;
  --sans: "Audit Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --shell: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 80px rgba(8, 36, 49, 0.11);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
  background: var(--night);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-kerning: normal;
  font-optical-sizing: auto;
  line-height: 1.65;
}

body,
button,
input {
  font-family: var(--sans);
}

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,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

[hidden] {
  display: none !important;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 160;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.audit-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(6, 28, 39, 0.88);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.audit-header.is-scrolled {
  background: rgba(6, 28, 39, 0.97);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.17);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  align-items: center;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.55), transparent 17%),
    linear-gradient(145deg, #ff7a5e, var(--coral));
  box-shadow:
    0 9px 28px rgba(255, 104, 73, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-mark__ring {
  position: absolute;
  width: 23px;
  height: 23px;
  border: 2px solid var(--night);
  border-radius: 50%;
  transform: rotate(-35deg) scaleY(0.63);
}

.brand-mark__line {
  position: absolute;
  display: block;
}

.brand-mark__line--one {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--night);
  box-shadow: 0 0 0 4px rgba(6, 28, 39, 0.1);
}

.brand-mark__line--two {
  width: 4px;
  height: 28px;
  border-radius: 99px;
  background: var(--coral);
  transform: rotate(-42deg);
}

.audit-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
}

.audit-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  white-space: nowrap;
}

.audit-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--mint);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.audit-nav a:hover,
.audit-nav a[aria-current="true"] {
  color: var(--white);
}

.audit-nav a[aria-current="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  min-height: 44px;
  justify-self: end;
  background: var(--white);
  font-size: 11px;
  white-space: nowrap;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
}

.button--ghost:hover {
  border-color: var(--mint);
  background: rgba(143, 240, 199, 0.08);
  color: var(--white);
}

.button--paper {
  background: var(--paper);
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 35%, rgba(47, 93, 130, 0.27), transparent 31%),
    radial-gradient(circle at 18% 88%, rgba(143, 240, 199, 0.08), transparent 29%),
    linear-gradient(135deg, var(--night) 0%, #082430 52%, #081d2b 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  top: 50%;
  left: 68%;
  width: min(76vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: inherit;
  content: "";
}

.hero-orbit::before {
  inset: 13%;
}

.hero-orbit::after {
  inset: 27%;
}

.hero-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 20px rgba(143, 240, 199, 0.9);
}

.hero-orbit i:first-child {
  top: 17%;
  left: 24%;
}

.hero-orbit i:nth-child(2) {
  right: 17%;
  bottom: 31%;
  background: var(--coral);
  box-shadow: 0 0 18px rgba(255, 104, 73, 0.8);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.82fr);
  min-height: calc(100svh - 76px);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  padding-block: clamp(76px, 8vw, 112px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 14px rgba(255, 104, 73, 0.8);
  content: "";
}

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

.eyebrow--dark::before {
  background: var(--coral);
}

.hero h1 {
  max-width: 740px;
  margin-top: 28px;
  font-family: var(--display);
  font-size: clamp(70px, 7.5vw, 110px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--coral);
  font-style: italic;
  font-weight: 400;
}

.hero-lede {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.72;
}

.hero-lede strong {
  color: var(--white);
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.055em;
  list-style: none;
  text-transform: uppercase;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.signal-stage {
  position: relative;
  min-height: 620px;
}

.score-ring {
  position: absolute;
  top: 32px;
  right: 0;
  width: min(100%, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--mint) 0 34%, rgba(255, 255, 255, 0.08) 34% 100%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.24);
  transform: rotate(-24deg);
}

.score-ring::before {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 65% 26%, rgba(143, 240, 199, 0.12), transparent 28%),
    var(--night-2);
  content: "";
}

.score-ring::after {
  position: absolute;
  inset: 72px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.score-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 82px;
  text-align: center;
  transform: translateY(-42px) rotate(24deg);
}

.score-content > span:first-child {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.score-number {
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(86px, 9vw, 126px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.score-number small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.32em;
  letter-spacing: -0.02em;
}

.score-label {
  max-width: 180px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.score-label strong {
  display: block;
  color: var(--white);
  font-size: 16px;
}

.signal-console {
  position: absolute;
  right: 8%;
  bottom: 5px;
  z-index: 4;
  width: min(96%, 390px);
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: rgba(5, 24, 33, 0.9);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.console-head,
.console-foot {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 17px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.console-head {
  border-bottom: 1px solid var(--line-light);
}

.console-head strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
}

.console-head strong::before,
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  content: "";
}

.console-list {
  display: grid;
  padding: 9px 17px;
  list-style: none;
}

.console-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.console-list li:last-child {
  border-bottom: 0;
}

.console-list i {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
}

.console-list b {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
}

.console-foot {
  border-top: 1px solid var(--line-light);
}

.console-foot strong {
  color: var(--mint);
  font-weight: 750;
  white-space: nowrap;
}

.stat-rail {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--night);
  color: var(--white);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat-card {
  min-width: 0;
  padding: 30px 22px 29px;
  border-left: 1px solid var(--line-light);
}

.stat-card:last-child {
  border-right: 1px solid var(--line-light);
}

.stat-value {
  display: block;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.stat-value--coral {
  color: var(--coral);
}

.stat-value--mint {
  color: var(--mint);
}

.stat-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding-block: clamp(94px, 9vw, 138px);
}

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

.section--cream {
  background: var(--cream);
}

.section--pearl {
  background: var(--pearl);
}

.section--night {
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 20%, rgba(143, 240, 199, 0.07), transparent 28%),
    var(--night);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(46px, 6vw, 76px);
}

.section-heading h2 {
  max-width: 790px;
  margin-top: 16px;
  font-family: var(--display);
  font-size: clamp(52px, 5.6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.section--night .section-heading > p {
  color: rgba(255, 255, 255, 0.58);
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  gap: 24px;
}

.finding-card {
  position: relative;
  display: grid;
  min-height: 530px;
  align-content: space-between;
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(143, 240, 199, 0.12), transparent 25%),
    var(--night);
  color: var(--white);
  box-shadow: var(--shadow);
}

.finding-card::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 370px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(255, 255, 255, 0.025),
    0 0 0 100px rgba(255, 255, 255, 0.018);
  content: "";
}

.finding-kicker {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.finding-card h3 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-top: 26px;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.finding-card h3 em {
  color: var(--coral);
  font-style: italic;
}

.finding-foot {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 720px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
}

.finding-foot p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.copy-button {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.night-cards {
  display: grid;
  gap: 18px;
}

.night-card {
  display: grid;
  min-height: 256px;
  align-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
}

.night-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.night-card__head span {
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.night-card__head b {
  color: var(--ink-soft);
  font-size: 12px;
}

.night-card strong {
  display: block;
  margin-top: 18px;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.night-card strong small {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0;
}

.mini-bar {
  height: 6px;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(8, 36, 49, 0.09);
}

.mini-bar span {
  display: block;
  width: calc(var(--value) * 1%);
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
  transform-origin: left;
}

.night-card p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 13px;
}

.chart-panel {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(8, 36, 49, 0.09);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
}

.chart-toolbar,
.market-toolbar,
.honor-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.toolbar-label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.segmented {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.segmented button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.segmented button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.trade-chart {
  display: grid;
  list-style: none;
}

.trade-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.58fr) minmax(240px, 1.3fr) 94px;
  min-height: 71px;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.trade-row:first-child {
  border-top: 0;
}

.trade-name {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  font-weight: 750;
}

.trade-name i {
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
}

.bar-track {
  position: relative;
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(8, 36, 49, 0.09);
}

.bar-fill {
  width: calc(var(--rate) * 1%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), #ff9b7d);
  transform-origin: left;
}

.trade-row:nth-child(-n + 2) .bar-fill {
  background: linear-gradient(90deg, var(--mint-deep), #5ccda6);
}

.trade-rate {
  text-align: right;
}

.trade-rate strong {
  display: block;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.trade-rate span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
}

.chart-note {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.chart-note i {
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 27px;
  font-style: italic;
}

.market-toolbar {
  color: rgba(255, 255, 255, 0.54);
}

.section--night .segmented {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.04);
}

.section--night .segmented button {
  color: rgba(255, 255, 255, 0.56);
}

.section--night .segmented button[aria-pressed="true"] {
  background: var(--paper);
  color: var(--ink);
}

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

.market-card {
  --market-rate: 0;
  display: grid;
  min-height: 190px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 200ms var(--ease), border-color 200ms ease, background 200ms ease;
}

.market-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 240, 199, 0.46);
  background: rgba(255, 255, 255, 0.055);
}

.market-card.is-answer {
  border-color: rgba(143, 240, 199, 0.32);
  background: linear-gradient(145deg, rgba(143, 240, 199, 0.13), rgba(255, 255, 255, 0.03));
}

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

.market-card__index {
  color: rgba(255, 255, 255, 0.32);
  font-family: var(--mono);
  font-size: 9px;
}

.market-signal {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.is-answer .market-signal {
  background: var(--mint);
  box-shadow: 0 0 14px rgba(143, 240, 199, 0.8);
}

.market-card h3 {
  margin-top: 24px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.market-card strong {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
}

.market-card strong b {
  color: var(--white);
  font-size: 15px;
}

.market-meter {
  height: 4px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.market-meter span {
  display: block;
  width: calc(var(--market-rate) * 1%);
  height: 100%;
  background: var(--mint);
}

.market-card.is-filtered {
  display: none;
}

.honor-toolbar {
  align-items: flex-end;
}

.search-field {
  display: grid;
  width: min(100%, 420px);
  gap: 7px;
}

.search-field span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 16px;
}

.honor-count {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.honor-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  min-height: 132px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.68);
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease;
}

.honor-card:hover {
  z-index: 2;
  transform: translateY(-3px);
  border-color: rgba(8, 36, 49, 0.22);
  box-shadow: 0 18px 42px rgba(8, 36, 49, 0.09);
}

.honor-card.is-filtered {
  display: none;
}

.honor-index {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--night);
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  box-shadow: inset 0 0 0 7px rgba(143, 240, 199, 0.07);
}

.honor-copy {
  min-width: 0;
}

.honor-copy p {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.honor-copy p::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-deep);
  content: "";
}

.honor-copy h3 {
  margin-top: 8px;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.honor-copy span {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 11px;
}

.honor-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.play-evidence {
  display: inline-flex;
  min-width: 96px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.play-evidence::before {
  content: "▶";
  font-size: 8px;
}

.transcript-link {
  min-height: 30px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(8, 36, 49, 0.25);
  text-underline-offset: 4px;
}

.honor-note {
  max-width: 760px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 13px;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(50px, 8vw, 110px);
}

.method-steps {
  counter-reset: method;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.method-step {
  counter-increment: method;
  min-height: 246px;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-step:nth-child(2n) {
  border-right: 1px solid var(--line);
}

.method-step:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.method-step::before {
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 10px;
  content: "0" counter(method);
}

.method-step h3 {
  margin-top: 44px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.method-step p {
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.method-receipt {
  display: grid;
  align-content: space-between;
  padding: 34px;
  border-radius: 25px;
  background: var(--night);
  color: var(--white);
  box-shadow: var(--shadow);
}

.method-receipt__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.method-receipt h3 {
  margin-top: 30px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.method-receipt p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.method-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.method-list li::before {
  color: var(--mint);
  content: "✓";
}

.receipt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.receipt-actions .button {
  min-height: 44px;
  padding-inline: 15px;
  font-size: 11px;
}

.close {
  padding-block: clamp(100px, 11vw, 160px);
  background:
    radial-gradient(circle at 75% 30%, rgba(143, 240, 199, 0.08), transparent 25%),
    var(--night);
  color: var(--white);
  text-align: center;
}

.close-inner {
  max-width: 860px;
}

.close .eyebrow {
  justify-content: center;
  color: var(--coral);
}

.close h2 {
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.close p {
  max-width: 650px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.58);
}

.close-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.audit-footer {
  padding: 58px 0 28px;
  border-top: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 90% 0, rgba(76, 91, 154, 0.18), transparent 28%),
    var(--night);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 64px;
}

.footer-brand p {
  max-width: 260px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 22px;
}

.footer-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

.evidence-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 180;
  display: grid;
  grid-template-columns: 42px minmax(180px, 280px) minmax(240px, 360px) 42px;
  align-items: center;
  gap: 13px;
  width: min(calc(100% - 36px), 820px);
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 19px;
  background: rgba(6, 28, 39, 0.97);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.dock-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
}

.dock-icon::before {
  content: "▶";
  font-size: 10px;
}

.dock-copy {
  min-width: 0;
}

.dock-copy span {
  display: block;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dock-copy strong {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.evidence-dock audio {
  width: 100%;
  height: 36px;
}

.dock-close,
.back-top {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  background: var(--night);
  box-shadow: 0 12px 32px rgba(8, 36, 49, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast {
  position: fixed;
  top: 92px;
  left: 50%;
  z-index: 190;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .bar-fill,
.motion-ready .mini-bar span,
.motion-ready .market-meter span {
  transform: scaleX(0);
  transition: transform 900ms var(--ease);
}

.motion-ready .is-visible .bar-fill,
.motion-ready .is-visible .mini-bar span,
.motion-ready .is-visible .market-meter span,
.motion-ready .bar-fill.is-visible,
.motion-ready .mini-bar span.is-visible,
.motion-ready .market-meter span.is-visible {
  transform: scaleX(1);
}

@keyframes signal-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(143, 240, 199, 0), 0 0 14px rgba(143, 240, 199, 0.75);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(143, 240, 199, 0.08), 0 0 24px rgba(143, 240, 199, 0.85);
  }
}

.hero-orbit i:first-child,
.console-head strong::before,
.is-answer .market-signal {
  animation: signal-pulse 2.4s ease-in-out infinite;
}

@media (max-width: 1080px) {
  .audit-nav {
    gap: 18px;
  }

  .audit-nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.82fr);
    gap: 45px;
  }

  .score-ring {
    width: 430px;
  }

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

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

  .audit-nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    max-width: 720px;
  }

  .signal-stage {
    width: min(100%, 600px);
    min-height: 590px;
    margin-inline: auto;
  }

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

  .results-layout,
  .method-layout {
    grid-template-columns: 1fr;
  }

  .night-cards {
    grid-template-columns: 1fr 1fr;
  }

  .night-card {
    min-height: 230px;
  }

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

  .stat-card:nth-child(4) {
    border-left: 0;
  }

  .stat-card:nth-child(n + 4) {
    border-top: 1px solid var(--line-light);
  }

  .stat-card:last-child {
    border-right: 0;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

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

  .audit-header {
    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    min-height: 68px;
    gap: 15px;
  }

  .wordmark {
    font-size: 15px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 10px;
  }

  .header-cta span {
    display: none;
  }

  .hero-grid {
    padding-block: 60px 70px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(53px, 16vw, 68px);
    line-height: 0.88;
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 9px;
  }

  .hero-orbit {
    left: 80%;
    width: 160vw;
  }

  .signal-stage {
    min-height: 500px;
  }

  .score-ring {
    top: 0;
    left: 50%;
    width: min(100%, 390px);
    transform: translateX(-50%) rotate(-24deg);
  }

  .score-content {
    padding: 58px;
    transform: translateY(-56px) rotate(24deg);
  }

  .signal-console {
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .console-list li {
    grid-template-columns: 24px 1fr;
  }

  .console-list b {
    display: none;
  }

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

  .stat-card,
  .stat-card:nth-child(4) {
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
  }

  .stat-card:nth-child(-n + 2) {
    border-top: 0;
  }

  .stat-card:nth-child(odd) {
    border-left: 0;
  }

  .stat-card:last-child {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(43px, 12.5vw, 56px);
  }

  .finding-card {
    min-height: 480px;
    padding: 29px 25px;
    border-radius: 22px;
  }

  .finding-card h3 {
    font-size: clamp(43px, 12vw, 56px);
  }

  .finding-foot {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 55px;
  }

  .night-cards {
    grid-template-columns: 1fr;
  }

  .chart-panel {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .chart-toolbar,
  .market-toolbar,
  .honor-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .segmented {
    width: 100%;
    border-radius: 16px;
  }

  .segmented button {
    flex: 1 1 auto;
  }

  .trade-row {
    grid-template-columns: minmax(0, 1fr) 72px;
    min-height: 91px;
    gap: 9px 16px;
    padding-block: 12px;
  }

  .trade-name {
    grid-column: 1;
  }

  .bar-track {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .trade-rate {
    grid-row: 1;
    grid-column: 2;
  }

  .market-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .market-card {
    min-height: 174px;
    padding: 18px;
  }

  .market-card h3 {
    font-size: 24px;
  }

  .honor-card {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 168px;
    padding: 17px;
  }

  .honor-index {
    width: 44px;
    height: 44px;
  }

  .honor-actions {
    grid-row: 2;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-step,
  .method-step:nth-child(2n),
  .method-step:nth-last-child(-n + 2) {
    min-height: 0;
    padding: 25px 20px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .method-step:last-child {
    border-bottom: 1px solid var(--line);
  }

  .method-step h3 {
    margin-top: 24px;
  }

  .method-receipt {
    padding: 27px 22px;
  }

  .close h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .close-actions {
    display: grid;
  }

  .close-actions .button {
    width: 100%;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .evidence-dock {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    width: calc(100% - 24px);
    gap: 9px;
    border-radius: 17px;
  }

  .dock-icon,
  .dock-close {
    width: 38px;
    height: 38px;
  }

  .evidence-dock audio {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .back-top {
    right: 16px;
    bottom: 16px;
  }
}

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

  .header-cta {
    padding-inline: 12px;
  }
}

@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;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .motion-ready .bar-fill,
  .motion-ready .mini-bar span,
  .motion-ready .market-meter span {
    transform: none;
  }
}

@media print {
  .audit-header,
  .reading-progress,
  .hero-actions,
  .chart-toolbar,
  .market-toolbar,
  .honor-toolbar,
  .honor-actions,
  .close,
  .audit-footer,
  .evidence-dock,
  .back-top,
  .toast {
    display: none !important;
  }

  body,
  .hero,
  .section--night,
  .finding-card,
  .method-receipt {
    background: white !important;
    color: black !important;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    display: block;
    min-height: 0;
    padding: 30px 0;
  }

  .signal-stage {
    display: none;
  }

  .hero h1,
  .section-heading h2,
  .finding-card h3 {
    color: black !important;
  }

  .hero h1 em {
    color: #c83e28 !important;
  }

  .hero-lede,
  .section--night .section-heading > p,
  .finding-foot p,
  .method-receipt p,
  .method-list li {
    color: #333 !important;
  }

  .section {
    padding: 42px 0;
    break-inside: avoid;
  }
}
