:root {
  --ink: #050505;
  --graphite: #2d2d2d;
  --graphite-2: #252525;
  --silver: #a3a5a4;
  --slate: #8b9daa;
  --slate-deep: #607482;
  --pearl: #eeeff0;
  --paper: #f6f6f3;
  --fog: #d1d5db;
  --line: rgba(45, 45, 45, 0.12);
  --amber: #b37d00;
  --forest: #42614e;
  --bank: "Bank Gothic BT", "Arial Narrow", sans-serif;
  --body: "Atkinson Hyperlegible", Arial, sans-serif;
}

@font-face {
  font-family: "Bank Gothic BT";
  src: url("assets/fonts/bank-gothic-medium-bt.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bank Gothic BT";
  src: url("assets/fonts/bank-gothic-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("assets/fonts/atkinson-hyperlegible-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("assets/fonts/atkinson-hyperlegible-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.bank,
h1,
h2,
h3,
.eyebrow,
.label,
nav a,
.wordmark,
.button {
  font-family: var(--bank);
  letter-spacing: 0.12em;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(238, 239, 240, 0.2);
  background: rgba(5, 5, 5, 0.52);
  color: var(--pearl);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 48px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pearl);
}

.wordmark img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  object-fit: cover;
}

.wordmark-only {
  gap: 0;
}

.wordmark-text {
  line-height: 1;
}

.wordmark span {
  color: var(--silver);
}

.wordmark .wordmark-text {
  color: var(--pearl);
}

.wordmark .wordmark-text span {
  color: var(--silver);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-parent::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.78;
}

.nav-dropdown.is-active > .nav-parent {
  color: #fff;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  min-width: 230px;
  padding: 10px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(238, 239, 240, 0.22);
  border-radius: 10px;
  background: rgba(5, 5, 5, 0.74);
  box-shadow: 0 22px 50px rgba(5, 5, 5, 0.24);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-menu a {
  display: block;
  padding: 10px 11px;
  border-radius: 7px;
  color: rgba(238, 239, 240, 0.78);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  background: rgba(238, 239, 240, 0.1);
  color: #fff;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(238, 239, 240, 0.42);
  border-radius: 8px;
  background: rgba(238, 239, 240, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(66, 97, 78, 0), rgba(66, 97, 78, 0.78), rgba(96, 116, 130, 0.28)),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 200ms ease, transform 320ms ease;
  z-index: -1;
}

.button:hover {
  border-color: rgba(66, 97, 78, 0.62);
  background: rgba(66, 97, 78, 0.18);
  box-shadow: 0 16px 36px rgba(66, 97, 78, 0.2);
  transform: translateY(-1px);
}

.button:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button.dark {
  border-color: var(--graphite);
  background: var(--graphite);
  color: #fff;
}

.button.dark:hover {
  border-color: var(--forest);
  background: linear-gradient(135deg, var(--graphite), var(--forest));
  box-shadow: 0 18px 42px rgba(66, 97, 78, 0.28);
}

.cover {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(255, 255, 255, 0.04)),
    radial-gradient(1200px 620px at 80% 10%, rgba(238, 239, 240, 0.92), rgba(163, 165, 164, 0.28) 44%, transparent 72%),
    radial-gradient(900px 520px at 10% 82%, rgba(96, 116, 130, 0.34), transparent 66%),
    linear-gradient(135deg, #f6f6f3 0%, #dfe4e7 38%, #a3a5a4 68%, #f2f3f1 100%);
  overflow: hidden;
}

.cover::before,
.cover::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 48%;
  transform: rotate(-9deg);
}

.cover::before {
  width: min(1220px, 118vw);
  height: min(480px, 46vw);
  left: clamp(-180px, -9vw, -64px);
  top: 9vh;
  box-shadow: inset 0 20px 70px rgba(255, 255, 255, 0.24);
}

.cover::after {
  width: min(1120px, 112vw);
  height: min(360px, 34vw);
  left: clamp(-150px, -7vw, -48px);
  bottom: -12vw;
  border-color: rgba(45, 45, 45, 0.18);
  box-shadow: inset 0 -22px 80px rgba(45, 45, 45, 0.12);
}

.cover-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 56px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 120px 0 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.cover .eyebrow {
  position: absolute;
  top: 16vh;
  color: var(--graphite);
  text-shadow: none;
}

.cover-title {
  margin: 0 0 34px;
  color: var(--graphite);
  max-width: 100%;
  font-size: clamp(34px, 5vw, 78px);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  overflow-wrap: anywhere;
}

.cover-logo {
  width: min(920px, 90vw);
  margin: 0 0 34px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.cover-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.cover-lede {
  max-width: 980px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-shadow: none;
}

.cover-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.button.light {
  border-color: rgba(45, 45, 45, 0.26);
  background: rgba(255, 255, 255, 0.34);
  color: var(--graphite);
}

.home-hero {
  min-height: 100vh;
  padding: 118px 7vw 72px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.04)),
    radial-gradient(1000px 620px at 85% 15%, rgba(238, 239, 240, 0.92), rgba(163, 165, 164, 0.24) 46%, transparent 72%),
    linear-gradient(135deg, #f6f6f3 0%, #dfe4e7 45%, #a3a5a4 72%, #f2f3f1 100%);
  position: relative;
  overflow: hidden;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 48%;
  transform: rotate(-8deg);
}

.home-hero::before {
  width: min(1260px, 116vw);
  height: min(430px, 42vw);
  left: clamp(-170px, -8vw, -56px);
  top: 12vh;
}

.home-hero::after {
  width: min(1180px, 108vw);
  height: min(330px, 31vw);
  right: clamp(-220px, -13vw, -80px);
  bottom: -8vw;
  border-color: rgba(45, 45, 45, 0.18);
}

@keyframes drift-line {
  0%, 100% { transform: rotate(-8deg) translate3d(0, 0, 0); opacity: 0.62; }
  50% { transform: rotate(-8deg) translate3d(18px, -10px, 0); opacity: 0.9; }
}

@keyframes scan-soft {
  0% { transform: translateX(-12%); opacity: 0.28; }
  50% { opacity: 0.5; }
  100% { transform: translateX(12%); opacity: 0.28; }
}

.home-hero::before,
.home-hero::after {
  animation: drift-line 14s ease-in-out infinite;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  min-height: calc(100vh - 190px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.04;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--graphite);
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.28;
}

.hero-note {
  max-width: 610px;
  margin: 18px 0 0;
  color: #4a4a4a;
  font-size: 17px;
}

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

.hero-dashboard-composite {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  background:
    radial-gradient(680px 420px at 80% 0%, rgba(238, 239, 240, 0.34), transparent 72%),
    linear-gradient(135deg, rgba(45, 45, 45, 0.76), rgba(96, 116, 130, 0.42)),
    var(--silver);
  box-shadow: 0 30px 90px rgba(5, 5, 5, 0.22);
  min-height: 560px;
  overflow: visible;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 420ms cubic-bezier(.2, .7, .2, 1), box-shadow 420ms ease;
  display: grid;
  grid-template-columns: 158px 1fr;
}

.hero-dashboard-composite:hover {
  transform: perspective(1200px) rotateY(-1.5deg) rotateX(0.75deg) translateY(-4px);
  box-shadow: 0 38px 110px rgba(5, 5, 5, 0.24);
}

.hero-dashboard-composite::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 24px;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.12) 46%, transparent 72%);
  animation: scan-soft 10s ease-in-out infinite;
}

.hero-dash-sidebar {
  position: relative;
  z-index: 1;
  padding: 28px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px 0 0 24px;
  background: rgba(5, 5, 5, 0.38);
  color: #fff;
}

.hero-dash-wordmark {
  margin-bottom: 36px;
  font-family: var(--bank);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-dash-nav {
  margin: 11px 0;
  padding: 12px 12px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--bank);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-dash-nav.active {
  background: rgba(5, 5, 5, 0.56);
  color: #fff;
}

.hero-dash-main {
  position: relative;
  z-index: 1;
  padding: 32px;
  min-width: 0;
}

.hero-dash-title {
  margin-bottom: 24px;
  color: var(--graphite);
  font-family: var(--bank);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-metrics div,
.hero-case-table {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 46px rgba(5, 5, 5, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics div {
  min-height: 112px;
  padding: 18px;
}

.hero-metrics span,
.table-heading,
.case-row.head {
  color: #6b6b6b;
  font-family: var(--bank);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--graphite);
  font-size: 30px;
}

.hero-case-table {
  margin-top: 16px;
  padding: 20px;
}

.table-heading {
  margin-bottom: 16px;
  color: var(--graphite);
}

.case-row {
  display: grid;
  grid-template-columns: 1fr 92px 56px;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(45, 45, 45, 0.1);
  color: #4a4a4a;
  font-size: 13px;
}

.case-row strong {
  color: var(--graphite);
}

.case-row span:not(:first-child) {
  width: fit-content;
  padding: 4px 7px;
  border: 1px solid rgba(96, 116, 130, 0.36);
  border-radius: 5px;
  color: var(--slate-deep);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-row em {
  color: var(--graphite);
  font-style: normal;
  font-weight: 700;
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  width: 240px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(5, 5, 5, 0.16);
  backdrop-filter: blur(14px);
}

.hero-float-card strong {
  display: block;
  margin-top: 8px;
  color: var(--graphite);
  font-size: 16px;
}

.hero-float-card p {
  margin: 8px 0 0;
  color: #4a4a4a;
  font-size: 13px;
}

.source-card {
  top: 24px;
  right: -34px;
}

.risk-card {
  left: -54px;
  bottom: 96px;
}

.scope-card {
  right: 42px;
  bottom: -28px;
}

.screen-shell,
.product-screen {
  border: 1px solid rgba(238, 239, 240, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(640px 300px at 15% 0%, rgba(238, 239, 240, 0.18), transparent 62%),
    linear-gradient(135deg, rgba(45, 45, 45, 0.92), rgba(96, 116, 130, 0.72) 52%, rgba(163, 165, 164, 0.34)),
    var(--graphite);
  box-shadow: 0 28px 90px rgba(5, 5, 5, 0.22);
  color: #fff;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.screen-shell::after,
.product-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 72%);
  animation: scan-soft 9s ease-in-out infinite;
  pointer-events: none;
}

.screen-shell > *,
.product-screen > * {
  position: relative;
  z-index: 1;
}

.screen-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(238, 239, 240, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--bank);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.screen-body {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  padding-top: 18px;
}

.screen-column {
  display: grid;
  gap: 12px;
}

.screen-card {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(238, 239, 240, 0.14);
  border-radius: 12px;
  background: rgba(238, 239, 240, 0.055);
}

.screen-card.active {
  border-color: rgba(66, 97, 78, 0.7);
}

.screen-card strong,
.screen-card em {
  display: block;
}

.screen-card strong {
  color: #fff;
  font-size: 15px;
}

.screen-card em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
}

.screen-report,
.insight-panel {
  min-height: 260px;
  padding: 18px;
  border: 1px solid rgba(238, 239, 240, 0.14);
  border-radius: 12px;
  background: rgba(238, 239, 240, 0.055);
}

.report-line {
  width: 76%;
  height: 9px;
  margin: 14px 0;
  border-radius: 999px;
  background: rgba(238, 239, 240, 0.28);
}

.report-line.wide {
  width: 100%;
}

.report-line.short {
  width: 48%;
}

.risk-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid rgba(238, 239, 240, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.section-split {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: clamp(28px, 5vw, 84px);
  align-items: start;
}

.section-copy {
  max-width: 820px;
}

.section-copy h2 {
  max-width: 820px;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.08;
}

.section-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #4a4a4a;
  font-size: 18px;
}

.pain-section {
  padding-block: 104px;
}

.pain-layout,
.solution-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.pain-copy,
.solution-copy {
  max-width: 660px;
}

.pain-copy h2,
.solution-copy h2 {
  max-width: 650px;
  font-size: clamp(30px, 3.4vw, 50px);
}

.pain-copy p,
.solution-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: #4a4a4a;
  font-size: 17px;
}

.investigation-board {
  position: relative;
  min-height: 610px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(rgba(45, 45, 45, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 45, 45, 0.04) 1px, transparent 1px),
    radial-gradient(520px 320px at 58% 42%, rgba(139, 157, 170, 0.18), transparent 68%),
    rgba(255, 255, 255, 0.36);
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.46), 0 28px 80px rgba(5, 5, 5, 0.07);
  overflow: hidden;
}

.workflow-map {
  position: absolute;
  inset: 28px 26px;
  opacity: 0.41;
}

.workflow-title {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--graphite);
  font-family: var(--bank);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-node {
  position: absolute;
  min-width: 132px;
  padding: 10px 12px;
  border: 1px solid rgba(45, 45, 45, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--graphite);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(5, 5, 5, 0.06);
  animation: workflow-pulse 9s ease-in-out infinite;
}

.workflow-node::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--slate);
}

.workflow-node.warning::before {
  background: var(--amber);
}

.workflow-node.duplicate::before {
  background: #6f7477;
}

.n1 { left: 5%; top: 9%; }
.n2 { left: 48%; top: 10%; animation-delay: 1.2s; }
.n3 { left: 45%; top: 27%; animation-delay: 2.4s; }
.n4 { left: 12%; top: 48%; animation-delay: 3.6s; }
.n5 { left: 48%; top: 64%; animation-delay: 4.8s; }
.n6 { left: 66%; top: 78%; animation-delay: 6s; }

.connector,
.duplicate-line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: rgba(45, 45, 45, 0.24);
}

.connector {
  animation: connector-scan 7s ease-in-out infinite;
}

.connector.broken {
  animation: broken-scan 7s ease-in-out infinite;
}

.duplicate-line {
  animation: duplicate-drift 8s ease-in-out infinite;
}

.connector::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(45, 45, 45, 0.36);
  border-right: 1px solid rgba(45, 45, 45, 0.36);
  transform: rotate(45deg);
}

.connector.broken {
  background: repeating-linear-gradient(90deg, rgba(179, 125, 0, 0.65) 0 10px, transparent 10px 18px);
}

.c1 { width: 250px; left: 27%; top: 18%; transform: rotate(0deg); }
.c2 { width: 105px; left: 58%; top: 22%; transform: rotate(91deg); }
.c3 { width: 260px; left: 33%; top: 40%; transform: rotate(155deg); }
.c4 { width: 270px; left: 32%; top: 55%; transform: rotate(22deg); }
.c5 { width: 180px; left: 60%; top: 73%; transform: rotate(22deg); }

.duplicate-line {
  width: 250px;
  left: 18%;
  top: 49%;
  transform: rotate(-9deg);
  background: repeating-linear-gradient(90deg, rgba(96, 116, 130, 0.52) 0 7px, transparent 7px 12px);
}

.annotation {
  position: absolute;
  padding: 5px 8px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 999px;
  background: rgba(238, 239, 240, 0.66);
  color: #6b6b6b;
  font-family: var(--bank);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: annotation-blink 10s ease-in-out infinite;
}

.a1 { left: 54%; top: 8%; }
.a2 { left: 4%; top: 51%; animation-delay: 2.5s; }
.a3 { right: 4%; top: 62%; animation-delay: 5s; }

.investigation-board .dossier-stack {
  position: absolute;
  inset: 84px 24px 24px 24px;
}

.investigation-board .dossier-stack::before {
  content: "";
  position: absolute;
  inset: -14px -8px -8px 10%;
  width: 70%;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(rgba(45, 45, 45, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 45, 45, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.75;
}

.dossier-card {
  position: absolute;
  width: min(280px, 31%);
  min-height: 176px;
  padding: 20px;
  border: 1px solid rgba(45, 45, 45, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(238, 239, 240, 0.5)),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 54px rgba(5, 5, 5, 0.07);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
  animation: dossier-breathe 8s ease-in-out infinite;
}

.dossier-card::before {
  content: "";
  position: absolute;
  background: rgba(45, 45, 45, 0.34);
  height: 1px;
  transform-origin: left center;
}

.dossier-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 56px;
  border-left: 1px solid rgba(45, 45, 45, 0.1);
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
  border-bottom-left-radius: 14px;
  background: rgba(139, 157, 170, 0.1);
}

.dossier-icon {
  position: absolute;
  top: 13px;
  right: 18px;
  z-index: 2;
  width: 34px;
  height: 30px;
  color: rgba(45, 45, 45, 0.56);
  display: grid;
  place-items: center;
}

.dossier-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.dossier-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 45, 45, 0.22);
}

.dossier-card.offset {
  margin-top: 0;
  margin-left: 0;
}

.marker-one {
  left: 2%;
  top: 22%;
}

.marker-one::before {
  width: 92px;
  left: 70px;
  top: -18px;
  transform: rotate(-72deg);
}

.marker-two {
  right: 7%;
  top: 28%;
  animation-delay: 1.5s;
}

.marker-two::before {
  width: 106px;
  left: 32px;
  top: -22px;
  transform: rotate(-116deg);
}

.marker-two::after {
  border-color: rgba(179, 125, 0, 0.24);
}

.marker-three {
  left: 31%;
  bottom: 6%;
  animation-delay: 3s;
}

@keyframes workflow-pulse {
  0%, 100% {
    opacity: 0.72;
    box-shadow: 0 10px 28px rgba(5, 5, 5, 0.06);
  }
  10%, 18% {
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(139, 157, 170, 0.11), 0 12px 30px rgba(5, 5, 5, 0.08);
  }
}

@keyframes connector-scan {
  0%, 100% { opacity: 0.34; }
  45%, 55% { opacity: 0.78; }
}

@keyframes broken-scan {
  0%, 100% { opacity: 0.28; }
  45%, 55% { opacity: 0.84; }
}

@keyframes duplicate-drift {
  0%, 100% { opacity: 0.3; transform: rotate(-9deg) translateX(0); }
  50% { opacity: 0.65; transform: rotate(-9deg) translateX(12px); }
}

@keyframes annotation-blink {
  0%, 100% { opacity: 0.45; }
  12%, 20% { opacity: 0.9; }
}

@keyframes dossier-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.marker-three::before {
  display: none;
}

.dossier-number {
  display: block;
  margin-bottom: 16px;
  color: var(--slate-deep);
  font-family: var(--bank);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.dossier-card h3 {
  max-width: 360px;
  margin: 0;
  color: var(--graphite);
  font-family: var(--body);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.14;
  text-transform: none;
}

.dossier-card p {
  margin: 14px 0 0;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.45;
}

.solution-section {
  padding-block: 108px;
}

.solution-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
}

.solution-system {
  display: grid;
  gap: 18px;
}

.metric-badge {
  padding: 28px;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(420px 160px at 12% 0%, rgba(238, 239, 240, 0.96), transparent 64%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(163, 165, 164, 0.22));
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.08);
}

.metric-badge strong {
  display: block;
  color: var(--graphite);
  font-family: var(--body);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
}

.metric-badge span {
  display: block;
  max-width: 360px;
  margin-top: 12px;
  color: #4a4a4a;
  font-size: 16px;
}

.comparison-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(45, 45, 45, 0.13);
  border-radius: 18px;
  background: rgba(45, 45, 45, 0.13);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.07);
}

.process-column {
  min-height: 310px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.58);
}

.process-column.muted {
  background:
    linear-gradient(135deg, rgba(238, 239, 240, 0.52), rgba(255, 255, 255, 0.46));
}

.process-column.ordered {
  background:
    radial-gradient(340px 180px at 80% 0%, rgba(66, 97, 78, 0.16), transparent 64%),
    rgba(255, 255, 255, 0.72);
}

.process-column ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.process-column li {
  position: relative;
  margin: 0;
  padding: 13px 0 13px 22px;
  border-top: 1px solid rgba(45, 45, 45, 0.1);
  color: #4a4a4a;
}

.process-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--slate);
}

.process-column.ordered li::before {
  background: var(--forest);
}

.trust-note {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(66, 97, 78, 0.28);
  border-radius: 14px;
  background: rgba(66, 97, 78, 0.075);
  color: var(--graphite);
  font-weight: 700;
}

.choose-grid .card {
  min-height: 150px;
}

.choose-grid h3 {
  font-size: 18px;
}

.flip-card {
  min-height: 178px;
  perspective: 1100px;
  outline: none;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  min-height: 178px;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(.2, .7, .2, 1);
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-visible .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card:focus-visible {
  outline: 2px solid rgba(238, 239, 240, 0.78);
  outline-offset: 5px;
  border-radius: 18px;
}

.flip-face {
  position: absolute;
  inset: 0;
  min-height: 178px;
  padding: 34px 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  backface-visibility: hidden;
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.14);
  overflow: hidden;
}

.flip-face::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 80px;
  right: -42px;
  bottom: -34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 48%;
  transform: rotate(-9deg);
}

.flip-front {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(238, 239, 240, 0.14) 44%, rgba(96, 116, 130, 0.22)),
    rgba(255, 255, 255, 0.08);
}

.flip-front .label {
  color: rgba(255, 255, 255, 0.78);
}

.flip-front h3 {
  margin: 28px 0 0;
  color: #fff;
  font-size: 18px;
}

.flip-front h3.long-title {
  font-family: var(--body);
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.flip-back {
  display: flex;
  align-items: center;
  background:
    radial-gradient(420px 190px at 100% 0%, rgba(238, 239, 240, 0.24), transparent 70%),
    linear-gradient(145deg, rgba(45, 45, 45, 0.92), rgba(96, 116, 130, 0.78));
  transform: rotateY(180deg);
}

.flip-back p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.45;
}

.metal {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(840px 440px at 18% 12%, rgba(238, 239, 240, 0.22), transparent 66%),
    radial-gradient(760px 420px at 84% 76%, rgba(139, 157, 170, 0.26), transparent 68%),
    linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 42%, #a3a5a4 100%);
  color: var(--pearl);
}

.metal::before {
  content: "";
  position: absolute;
  width: min(900px, 92vw);
  height: 280px;
  right: -140px;
  top: 80px;
  border: 1px solid rgba(238, 239, 240, 0.24);
  border-radius: 48%;
  transform: rotate(-10deg);
  animation: drift-line 16s ease-in-out infinite reverse;
}

.metal .intro,
.metal .grid {
  position: relative;
  z-index: 1;
}

.metal h2 {
  color: #fff;
}

.metal .intro p {
  color: rgba(255, 255, 255, 0.86);
}

.gradient-card {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(238, 239, 240, 0.14) 44%, rgba(96, 116, 130, 0.22)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.14);
}

.gradient-card .label {
  color: rgba(255, 255, 255, 0.78);
}

.gradient-card h3 {
  color: #fff;
}

.section-graphic,
.soft-lines {
  position: relative;
  overflow: hidden;
}

.section-graphic::after,
.soft-lines::after {
  content: "";
  position: absolute;
  width: min(760px, 84vw);
  height: 210px;
  right: -120px;
  top: 54px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 48%;
  transform: rotate(-8deg);
  pointer-events: none;
}

.soft-lines::after {
  left: -160px;
  right: auto;
  bottom: 60px;
  top: auto;
  border-color: rgba(139, 157, 170, 0.2);
}

.section-graphic > *,
.soft-lines > * {
  position: relative;
  z-index: 1;
}

.product-screens {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
}

.primary-screen {
  min-height: 480px;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding-top: 20px;
}

.upload-stack {
  display: grid;
  gap: 14px;
}

.doc-tile {
  min-height: 92px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(238, 239, 240, 0.14);
  border-radius: 14px;
  background: rgba(238, 239, 240, 0.055);
}

.doc-tile span {
  width: 34px;
  height: 42px;
  border: 1px solid rgba(238, 239, 240, 0.38);
  border-radius: 5px;
}

.doc-tile strong {
  font-size: 15px;
}

.source-link {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 12px;
  border: 1px solid rgba(66, 97, 78, 0.62);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.screen-blocks {
  display: grid;
  gap: 18px;
}

.mini-screen {
  min-height: 231px;
  padding: 24px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.08);
}

.mini-screen h3 {
  margin: 24px 0 0;
  color: var(--graphite);
  font-size: 20px;
  line-height: 1.14;
}

.final-cta {
  background:
    radial-gradient(900px 500px at 80% 15%, rgba(139, 157, 170, 0.22), transparent 70%),
    var(--paper);
}

.demo-shell {
  max-width: 1180px;
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(760px 360px at 82% 0%, rgba(238, 239, 240, 0.3), transparent 70%),
    linear-gradient(135deg, rgba(45, 45, 45, 0.72), rgba(96, 116, 130, 0.38)),
    var(--silver);
  box-shadow: 0 30px 90px rgba(5, 5, 5, 0.16);
}

.demo-sidebar {
  padding: 28px 22px;
  background: rgba(5, 5, 5, 0.62);
  color: #fff;
}

.demo-brand {
  margin-bottom: 36px;
  font-family: var(--bank);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.demo-nav-item {
  margin: 10px 0;
  padding: 15px 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.demo-nav-item.active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.demo-workspace {
  padding: 34px;
}

.demo-heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.demo-heading h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
}

.demo-heading .demo-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.34);
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(5, 5, 5, 0.75);
  opacity: 1;
}

.demo-state-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.demo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  background: rgba(238, 239, 240, 0.28);
  backdrop-filter: blur(16px);
}

.demo-form {
  display: grid;
  gap: 16px;
  align-content: start;
}

.sample-case-card {
  padding: 22px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.sample-case-card strong {
  display: block;
  color: var(--graphite);
  font-size: 22px;
}

.sample-case-card span {
  display: block;
  margin-top: 8px;
  color: #4a4a4a;
}

.demo-start {
  width: fit-content;
  position: relative;
  box-shadow: 0 0 0 0 rgba(238, 239, 240, 0.58);
  animation: research-pulse 1.75s ease-in-out infinite;
}

.demo-start:disabled {
  cursor: wait;
  opacity: 0.72;
  animation: none;
  box-shadow: none;
}

@keyframes research-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(238, 239, 240, 0.62), 0 14px 34px rgba(5, 5, 5, 0.22);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(238, 239, 240, 0.18), 0 20px 48px rgba(5, 5, 5, 0.3);
  }
}

.demo-progress {
  display: grid;
  gap: 12px;
}

.demo-step {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.44);
  color: #4a4a4a;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.demo-step span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--slate);
  opacity: 0.5;
}

.demo-step.active {
  transform: translateX(4px);
  border-color: rgba(179, 125, 0, 0.44);
  background: rgba(255, 255, 255, 0.72);
}

.demo-step.active span {
  background: var(--amber);
  opacity: 1;
  box-shadow: 0 0 0 5px rgba(179, 125, 0, 0.1);
}

.demo-step.done {
  border-color: rgba(66, 97, 78, 0.3);
}

.demo-step.done span {
  background: var(--forest);
  opacity: 1;
}

.demo-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.demo-result-card {
  min-height: 130px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.demo-result-card strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 30px;
}

.demo-result-card span {
  color: rgba(255, 255, 255, 0.78);
}

.demo-report {
  display: none;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(66, 97, 78, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.demo-report.visible {
  display: block;
  animation: report-in 320ms ease both;
}

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

.demo-report .screen-topline {
  color: var(--graphite);
  border-color: rgba(45, 45, 45, 0.14);
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 18px;
}

.report-grid p {
  margin: 0;
  color: #4a4a4a;
}

.final-cta-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  margin: 0 auto;
}

.final-cta h2 span {
  display: block;
}

.final-cta-primary {
  font-size: clamp(26px, calc(3.8vw - 4px), 50px);
  font-weight: 400;
}

.final-cta .button {
  margin-top: 26px;
}

.final-cta p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px auto 30px;
  color: #4a4a4a;
  font-size: 18px;
}

section {
  padding: 88px 7vw;
}

.intro {
  max-width: 1080px;
  margin: 0 auto 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--slate-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  max-width: 920px;
  margin: 0;
  color: var(--graphite-2);
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.long-title {
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.intro p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #4a4a4a;
  font-size: 18px;
}

.grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

.card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.08);
  backdrop-filter: blur(18px);
}

.card.dark {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(238, 239, 240, 0.1) 42%, rgba(96, 116, 130, 0.24)),
    rgba(45, 45, 45, 0.74);
  color: var(--pearl);
}

.label {
  margin-bottom: 18px;
  color: #626262;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.card h3 {
  margin: 0 0 12px;
  color: var(--graphite-2);
  font-size: 17px;
  text-transform: uppercase;
}

.card h3.long-title {
  font-family: var(--body);
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
}

.card.dark h3 {
  color: #fff;
}

.card p,
.card li {
  color: #4a4a4a;
}

.card.dark p,
.card.dark li {
  color: rgba(255, 255, 255, 0.86);
}

ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

li {
  margin: 8px 0;
}

.pearl {
  background:
    radial-gradient(800px 520px at 85% 10%, rgba(139, 157, 170, 0.24), transparent 68%),
    var(--pearl);
}

.graphite {
  background: var(--graphite);
  color: var(--pearl);
}

.graphite h2 {
  color: #fff;
}

.graphite .intro p {
  color: rgba(255, 255, 255, 0.84);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: #6b6b6b;
  font-size: 14px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--slate);
}

.dot.pending { background: var(--amber); }
.dot.done { background: var(--forest); }

.dashboard {
  min-height: 450px;
  padding: 22px;
  border: 1px solid rgba(238, 239, 240, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(5, 5, 5, 0.72);
  box-shadow: 0 28px 90px rgba(5, 5, 5, 0.28);
}

.dash-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.dash-panel {
  border: 1px solid rgba(238, 239, 240, 0.14);
  border-radius: 12px;
  background: rgba(238, 239, 240, 0.055);
  padding: 18px;
}

.dash-row {
  display: grid;
  grid-template-columns: 16px 1fr 42px;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(238, 239, 240, 0.1);
}

.dash-row:last-child {
  border-bottom: 0;
}

.file-icon {
  width: 14px;
  height: 18px;
  border: 1px solid rgba(238, 239, 240, 0.42);
  border-radius: 3px;
}

.line {
  height: 7px;
  border-radius: 999px;
  background: rgba(238, 239, 240, 0.36);
}

.line.short {
  width: 62%;
  margin-top: 8px;
  background: rgba(238, 239, 240, 0.18);
}

.signal {
  height: 7px;
  border-radius: 999px;
  background: var(--forest);
}

.signal.pending {
  background: var(--amber);
}

.metric {
  padding: 18px;
  border: 1px solid rgba(238, 239, 240, 0.12);
  border-radius: 10px;
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 34px;
}

.metric span {
  color: rgba(255, 255, 255, 0.82);
}

.founder {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  align-items: start;
}

.founder-name {
  color: var(--graphite);
  font-family: var(--bank);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero {
  position: relative;
  min-height: 72vh;
  padding-top: 142px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(860px 420px at 86% 8%, rgba(238, 239, 240, 0.86), rgba(163, 165, 164, 0.24) 48%, transparent 74%),
    radial-gradient(760px 420px at 6% 88%, rgba(96, 116, 130, 0.22), transparent 70%),
    linear-gradient(135deg, #f6f6f3 0%, #dde2e4 45%, #a3a5a4 100%);
  overflow: hidden;
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 48%;
  transform: rotate(-8deg);
}

.about-hero::before {
  width: min(1120px, 112vw);
  height: min(340px, 34vw);
  left: -12vw;
  top: 18vh;
}

.about-hero::after {
  width: min(980px, 96vw);
  height: min(280px, 28vw);
  right: -14vw;
  bottom: -7vw;
  border-color: rgba(45, 45, 45, 0.16);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}

.about-hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 1.02;
  text-transform: uppercase;
}

.about-hero-copy {
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 28px 80px rgba(5, 5, 5, 0.08);
  backdrop-filter: blur(16px);
}

.about-hero-copy p {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.45;
}

.about-hero-copy p + p {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(45, 45, 45, 0.1);
}

.briefing-file {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.briefing-file::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-radius: 12px;
  pointer-events: none;
}

.briefing-file::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 80px;
  right: -50px;
  top: 26px;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 48%;
  transform: rotate(-9deg);
  pointer-events: none;
}

.briefing-file-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
  background: rgba(238, 239, 240, 0.34);
  color: var(--slate-deep);
  font-family: var(--bank);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.briefing-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}

.briefing-row:last-child {
  border-bottom: 0;
}

.briefing-row::before {
  content: "";
  position: absolute;
  left: 49px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(45, 45, 45, 0.08);
}

.briefing-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(96, 116, 130, 0.28);
  border-radius: 8px;
  color: var(--slate-deep);
  font-family: var(--bank);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.briefing-row strong {
  display: block;
  color: var(--graphite);
  font-size: 18px;
}

.briefing-row p {
  margin: 7px 0 0;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.38;
}

.name-story {
  background: var(--paper);
}

.name-story-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: stretch;
}

.story-panel,
.story-briefing {
  border: 1px solid rgba(45, 45, 45, 0.11);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.06);
}

.story-panel {
  padding: clamp(26px, 3.5vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(238, 239, 240, 0.42)),
    var(--pearl);
}

.story-panel h2 {
  margin-bottom: 22px;
}

.story-kicker {
  max-width: 520px;
  margin: 0 0 24px !important;
  color: var(--graphite) !important;
  font-size: 21px !important;
  font-weight: 700;
  line-height: 1.35;
}

.story-panel p,
.story-briefing p {
  margin: 0;
  color: #4a4a4a;
  font-size: 17px;
}

.story-panel p + p,
.story-briefing p + p {
  margin-top: 16px;
}

.story-panel p:nth-of-type(3),
.story-panel p:nth-of-type(4) {
  color: #4a4a4a;
  font-weight: 400;
}

.story-briefing {
  position: relative;
  min-height: 520px;
  padding: clamp(26px, 3.4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(45, 45, 45, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 45, 45, 0.035) 1px, transparent 1px),
    radial-gradient(580px 300px at 58% 12%, rgba(139, 157, 170, 0.18), transparent 70%),
    rgba(255, 255, 255, 0.5);
  background-size: 30px 30px, 30px 30px, auto, auto;
  overflow: hidden;
}

.archive-map {
  position: absolute;
  inset: 32px 34px auto 34px;
  min-height: 240px;
  opacity: 0.68;
}

.archive-map::before {
  content: "";
  position: absolute;
  inset: 28px 12% 18px 12%;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 18px;
}

.archive-map::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(45, 45, 45, 0.3) 0 10px, transparent 10px 18px);
}

.archive-map span {
  position: absolute;
  min-width: 126px;
  padding: 10px 12px;
  border: 1px solid rgba(45, 45, 45, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--graphite);
  font-family: var(--bank);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(5, 5, 5, 0.06);
}

.archive-map span:nth-child(1) { left: 0; top: 18px; }
.archive-map span:nth-child(2) { right: 6%; top: 18px; }
.archive-map span:nth-child(3) { left: 16%; bottom: 18px; }
.archive-map span:nth-child(4) { right: 0; bottom: 18px; }

.transformation-map {
  position: absolute;
  inset: 32px 34px auto;
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(rgba(45, 45, 45, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 45, 45, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.34);
  background-size: 26px 26px, 26px 26px, auto;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5);
}

.flow-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  align-items: center;
}

.flow-row + .flow-row {
  margin-top: 0;
}

.flow-label,
.flow-divider span {
  color: #6b6b6b;
  font-family: var(--bank);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.flow-steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: rgba(45, 45, 45, 0.22);
}

.flow-steps span {
  position: relative;
  z-index: 1;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(45, 45, 45, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--graphite);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 30px rgba(5, 5, 5, 0.055);
}

.flow-steps span::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: rgba(45, 45, 45, 0.24);
}

.flow-steps span:last-child::after {
  display: none;
}

.flow-divider {
  position: relative;
  margin: 30px 0;
  text-align: center;
}

.flow-divider::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(96, 116, 130, 0.46) 0 9px, transparent 9px 16px);
}

.flow-divider span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 999px;
  background: rgba(238, 239, 240, 0.86);
}

.flow-row.modern .flow-steps span {
  border-color: rgba(96, 116, 130, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(238, 239, 240, 0.52)),
    rgba(255, 255, 255, 0.62);
}

.about-editorial {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(48px, 7vw, 110px);
}

.about-editorial-copy {
  max-width: 780px;
}

.about-editorial-copy h1 {
  max-width: 780px;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.03;
}

.editorial-body {
  max-width: 670px;
  margin-top: 34px;
  padding-left: 26px;
  border-left: 1px solid rgba(45, 45, 45, 0.18);
}

.editorial-body p {
  margin: 0;
  color: #3f3f3f;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.62;
}

.editorial-body p + p {
  margin-top: 18px;
}

.understanding-visual,
.fragments-visual {
  position: relative;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(45, 45, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 45, 45, 0.028) 1px, transparent 1px),
    radial-gradient(440px 340px at 58% 45%, rgba(238, 239, 240, 0.92), rgba(163, 165, 164, 0.28) 54%, transparent 76%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(139, 157, 170, 0.14));
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5);
}

.understanding-visual::before,
.understanding-visual::after,
.fragments-visual::before,
.fragments-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(45, 45, 45, 0.13);
  border-radius: 48%;
}

.understanding-visual::before {
  width: 540px;
  height: 190px;
  left: -70px;
  top: 90px;
  transform: rotate(-12deg);
}

.understanding-visual::after {
  width: 460px;
  height: 150px;
  right: -90px;
  bottom: 96px;
  transform: rotate(-12deg);
  border-color: rgba(96, 116, 130, 0.2);
}

.document-fragment,
.fragment-cloud span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.58);
  color: #5a5a5a;
  font-family: var(--bank);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.055);
  backdrop-filter: blur(12px);
}

.document-fragment::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 1px;
  left: 100%;
  top: 50%;
  background: linear-gradient(90deg, rgba(45, 45, 45, 0.18), transparent);
}

.f1 { left: 8%; top: 16%; }
.f2 { left: 16%; top: 36%; }
.f3 { left: 9%; bottom: 22%; }
.f4 { right: 10%; top: 20%; }
.f5 { right: 14%; top: 48%; }
.f6 { right: 8%; bottom: 18%; }

.f4::after,
.f5::after,
.f6::after {
  left: auto;
  right: 100%;
  background: linear-gradient(270deg, rgba(45, 45, 45, 0.18), transparent);
}

.understanding-core,
.meaning-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(300px, 72%);
  min-height: 180px;
  transform: translate(-50%, -50%);
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 20px;
  background:
    radial-gradient(220px 130px at 50% 0%, rgba(238, 239, 240, 0.35), transparent 70%),
    rgba(45, 45, 45, 0.78);
  color: #fff;
  box-shadow: 0 28px 80px rgba(5, 5, 5, 0.18);
  backdrop-filter: blur(18px);
}

.understanding-core span,
.meaning-panel span {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--bank);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.understanding-core strong,
.meaning-panel strong {
  color: #fff;
  font-family: var(--bank);
  font-size: clamp(20px, 2.2vw, 31px);
  letter-spacing: 0.12em;
  line-height: 1.12;
  text-transform: uppercase;
}

.name-story {
  padding-top: 118px;
  padding-bottom: 118px;
}

.name-editorial {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
}

.name-copy {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.name-copy h2 {
  font-size: clamp(38px, 5vw, 72px);
}

.name-copy .story-kicker {
  max-width: 620px;
  margin-top: 28px !important;
  margin-bottom: 8px !important;
  color: #4a4a4a !important;
  font-size: clamp(18px, 1.4vw, 22px) !important;
  font-weight: 400;
}

.name-statement {
  max-width: 620px;
  margin: 0 0 34px;
  color: var(--graphite) !important;
  font-size: clamp(28px, 3.3vw, 48px) !important;
  font-weight: 700 !important;
  line-height: 1.08;
}

.fragments-visual {
  min-height: 620px;
  background:
    linear-gradient(rgba(45, 45, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 45, 45, 0.03) 1px, transparent 1px),
    radial-gradient(460px 360px at 50% 50%, rgba(238, 239, 240, 0.96), rgba(163, 165, 164, 0.2) 58%, transparent 78%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(96, 116, 130, 0.16));
  background-size: 26px 26px, 26px 26px, auto, auto;
}

.fragments-visual::before {
  width: 620px;
  height: 220px;
  left: -110px;
  top: 120px;
  transform: rotate(-10deg);
}

.fragments-visual::after {
  width: 520px;
  height: 170px;
  right: -120px;
  bottom: 130px;
  transform: rotate(-10deg);
  border-color: rgba(96, 116, 130, 0.18);
}

.fragment-cloud {
  position: absolute;
  inset: 0;
}

.fragment-cloud span:nth-child(1) { left: 8%; top: 10%; }
.fragment-cloud span:nth-child(2) { left: 42%; top: 8%; }
.fragment-cloud span:nth-child(3) { right: 8%; top: 16%; }
.fragment-cloud span:nth-child(4) { left: 12%; top: 32%; }
.fragment-cloud span:nth-child(5) { right: 14%; top: 36%; }
.fragment-cloud span:nth-child(6) { left: 26%; top: 48%; }
.fragment-cloud span:nth-child(7) { right: 24%; top: 52%; }
.fragment-cloud span:nth-child(8) { left: 8%; bottom: 25%; }
.fragment-cloud span:nth-child(9) { right: 8%; bottom: 28%; }
.fragment-cloud span:nth-child(10) { left: 34%; bottom: 12%; }
.fragment-cloud span:nth-child(11) { right: 28%; bottom: 10%; }
.fragment-cloud span:nth-child(12) { left: 16%; bottom: 8%; }

.fragment-cloud span {
  opacity: 0.76;
}

.fragment-cloud span:nth-child(4n + 1),
.fragment-cloud span:nth-child(4n + 2) {
  opacity: 0.44;
}

.meaning-panel {
  width: min(330px, 74%);
  min-height: 205px;
}

.team-section {
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  width: min(980px, 92vw);
  height: 300px;
  right: -160px;
  top: 96px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 48%;
  transform: rotate(-9deg);
  pointer-events: none;
}

.team-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card,
.advisor-card {
  padding: clamp(24px, 2.6vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(238, 239, 240, 0.45) 58%, rgba(139, 157, 170, 0.12)),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.07);
  backdrop-filter: blur(16px);
}

.team-meta {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}

.team-meta h3 {
  margin: 0;
  color: var(--graphite);
  font-size: 20px;
  line-height: 1.18;
  text-transform: uppercase;
}

.team-meta span {
  display: block;
  margin-top: 8px;
  color: var(--slate-deep);
  font-weight: 700;
}

.team-card p,
.advisor-card p {
  margin: 0;
  color: #4a4a4a;
}

.team-card p + p {
  margin-top: 14px;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.brand-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--graphite);
  font-size: 13px;
  font-weight: 700;
}

.technology-leadership {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 28px auto 0;
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(500px 240px at 88% 16%, rgba(238, 239, 240, 0.36), transparent 68%),
    linear-gradient(135deg, rgba(45, 45, 45, 0.78), rgba(96, 116, 130, 0.46)),
    var(--graphite);
  color: #fff;
  box-shadow: 0 30px 90px rgba(5, 5, 5, 0.13);
}

.technology-leadership h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
}

.technology-leadership > div > p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.technology-leadership .advisor-card {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.24);
}

.technology-leadership .team-meta {
  border-color: rgba(255, 255, 255, 0.18);
}

.technology-leadership .team-meta h3,
.technology-leadership .team-meta span,
.technology-leadership .advisor-card p {
  color: #fff;
}

.team-grid {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.person-card {
  position: relative;
  min-height: 560px;
  flex: 1 1 0;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  background:
    radial-gradient(420px 520px at 48% 18%, rgba(238, 239, 240, 0.66), transparent 54%),
    linear-gradient(135deg, rgba(45, 45, 45, 0.76), rgba(96, 116, 130, 0.42)),
    var(--silver);
  box-shadow: 0 28px 86px rgba(5, 5, 5, 0.12);
  cursor: default;
  transition: flex 420ms cubic-bezier(.2, .7, .2, 1), transform 420ms ease, box-shadow 420ms ease, filter 420ms ease;
}

.person-card::before,
.person-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.person-card::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(180px 220px at 50% 27%, rgba(255, 255, 255, 0.54), transparent 68%),
    radial-gradient(180px 280px at 50% 72%, rgba(45, 45, 45, 0.34), transparent 70%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  opacity: 0.86;
}

.person-card::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), transparent 34%, rgba(5, 5, 5, 0.52)),
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.16) 46%, transparent 72%);
}

.person-card:hover,
.person-card:focus-visible {
  flex-grow: 1.62;
  transform: translateY(-6px);
  box-shadow: 0 36px 100px rgba(5, 5, 5, 0.18);
  outline: none;
}

.team-grid:has(.person-card:hover) .person-card:not(:hover),
.team-grid:has(.person-card:focus-visible) .person-card:not(:focus-visible) {
  filter: saturate(0.74) brightness(0.92);
}

.person-evelyn {
  background:
    radial-gradient(180px 260px at 52% 22%, rgba(238, 239, 240, 0.78), transparent 68%),
    radial-gradient(360px 540px at 46% 72%, rgba(96, 116, 130, 0.42), transparent 66%),
    linear-gradient(135deg, #4a4a4a, #8b9daa 58%, #d1d5db);
}

.person-gilberto {
  background:
    radial-gradient(190px 260px at 50% 22%, rgba(238, 239, 240, 0.72), transparent 68%),
    radial-gradient(340px 560px at 54% 70%, rgba(45, 45, 45, 0.48), transparent 68%),
    linear-gradient(135deg, #a3a5a4, #607482 58%, #2d2d2d);
}

.person-ana {
  background:
    radial-gradient(180px 260px at 48% 22%, rgba(246, 246, 243, 0.76), transparent 68%),
    radial-gradient(340px 560px at 44% 72%, rgba(139, 157, 170, 0.48), transparent 68%),
    linear-gradient(135deg, #d1d5db, #8b9daa 52%, #2d2d2d);
}

.person-haytham {
  min-height: 420px;
  background:
    radial-gradient(190px 260px at 52% 24%, rgba(238, 239, 240, 0.72), transparent 68%),
    radial-gradient(380px 440px at 60% 72%, rgba(96, 116, 130, 0.5), transparent 72%),
    linear-gradient(135deg, #252525, #607482 56%, #a3a5a4);
}

.person-card .team-meta,
.technology-leadership .person-card .team-meta {
  padding: 0;
  margin: 0;
  border: 0;
}

.person-tags {
  position: absolute;
  inset: 22px 22px auto;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.person-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.person-glass {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  min-height: 36%;
  max-height: 42%;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.36);
  color: #fff;
  box-shadow: 0 18px 58px rgba(5, 5, 5, 0.24);
  backdrop-filter: blur(18px);
  transition: max-height 360ms ease, min-height 360ms ease, background 360ms ease, transform 360ms ease;
  overflow: hidden;
}

.person-card:hover .person-glass,
.person-card:focus-visible .person-glass {
  min-height: 40%;
  max-height: 48%;
  background: rgba(5, 5, 5, 0.48);
  transform: translateY(-2px);
}

.person-glass .team-meta h3,
.technology-leadership .person-glass .team-meta h3 {
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
}

.person-glass .team-meta span,
.technology-leadership .person-glass .team-meta span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.person-details {
  margin-top: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms ease 90ms, transform 260ms ease 90ms;
}

.person-card:hover .person-details,
.person-card:focus-visible .person-details {
  opacity: 1;
  transform: translateY(0);
}

.person-details p,
.technology-leadership .person-details p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.35;
}

.person-details p + p {
  margin-top: 8px;
}

.technology-leadership .person-card {
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.18);
}

.team-grid {
  max-width: 1280px;
}

.person-card {
  min-height: 610px;
  background:
    radial-gradient(420px 520px at 50% 18%, rgba(238, 239, 240, 0.62), transparent 54%),
    radial-gradient(520px 420px at 78% 76%, rgba(139, 157, 170, 0.24), transparent 68%),
    linear-gradient(135deg, #252525 0%, #607482 48%, #d1d5db 100%);
}

.person-card::before {
  z-index: 1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    radial-gradient(360px 420px at 50% 34%, transparent 46%, rgba(5, 5, 5, 0.14) 76%);
  background-size: 30px 30px, 30px 30px, auto;
  opacity: 0.72;
}

.person-card::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.22), transparent 34%, rgba(5, 5, 5, 0.72)),
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.1) 44%, transparent 68%);
}

.person-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.18) contrast(0.96) saturate(0.82);
  mix-blend-mode: luminosity;
  opacity: 0.9;
  transition: transform 520ms cubic-bezier(.2, .7, .2, 1), filter 420ms ease, opacity 420ms ease;
}

.person-evelyn .person-photo {
  object-position: center 20%;
}

.person-gilberto .person-photo,
.person-ana .person-photo {
  object-position: center 12%;
}

.person-haytham .person-photo {
  object-position: center 12%;
}

.person-card:hover .person-photo,
.person-card:focus-visible .person-photo {
  transform: scale(1.035);
  filter: grayscale(0.05) contrast(1) saturate(0.9);
  opacity: 0.96;
}

.person-tags {
  z-index: 3;
}

.person-glass {
  z-index: 3;
  min-height: auto;
  max-height: none;
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 2px 18px rgba(5, 5, 5, 0.72);
}

.person-card:hover .person-glass,
.person-card:focus-visible .person-glass {
  min-height: 40%;
  max-height: 48%;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(5, 5, 5, 0.48);
  box-shadow: 0 18px 58px rgba(5, 5, 5, 0.24);
  backdrop-filter: blur(18px);
  text-shadow: none;
}

.person-details {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
}

.person-card:hover .person-details,
.person-card:focus-visible .person-details {
  max-height: 260px;
  margin-top: 14px;
}

.person-card:hover .person-glass,
.person-card:focus-visible .person-glass {
  min-height: 62%;
  max-height: calc(100% - 36px);
  justify-content: flex-start;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(238, 239, 240, 0.36) transparent;
}

.person-card:hover .person-details,
.person-card:focus-visible .person-details {
  max-height: none;
}

.person-card:hover .person-glass::-webkit-scrollbar,
.person-card:focus-visible .person-glass::-webkit-scrollbar {
  width: 4px;
}

.person-card:hover .person-glass::-webkit-scrollbar-thumb,
.person-card:focus-visible .person-glass::-webkit-scrollbar-thumb {
  background: rgba(238, 239, 240, 0.34);
  border-radius: 999px;
}

.pricing .card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.price {
  margin: 12px 0 18px;
  color: var(--graphite);
  font-size: 28px;
  font-weight: 700;
}

.pricing .button {
  margin-top: auto;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--graphite);
  font-family: var(--bank);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 13px 14px;
  color: var(--graphite);
  font: 16px var(--body);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.footer {
  background: #050505;
  color: #eee;
  padding: 70px 7vw;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  align-items: start;
  gap: 28px;
}

.footer p {
  margin: 12px 0 0;
  color: #aaa;
}

.footer-brand small {
  display: block;
  margin-top: 18px;
  color: rgba(238, 239, 240, 0.52);
  font-size: 13px;
}

.footer-details {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-details a {
  color: rgba(238, 239, 240, 0.78);
  font-size: 14px;
  text-decoration: none;
}

.footer-details a:hover {
  color: var(--pearl);
}

@media (max-width: 900px) {
  .topbar {
    position: absolute;
  }

  .nav {
    width: calc(100% - 32px);
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-dropdown {
    display: grid;
    gap: 8px;
  }

  .nav-menu {
    position: static;
    min-width: 100%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-menu a {
    padding: 7px 9px;
    border: 1px solid rgba(238, 239, 240, 0.18);
    background: rgba(238, 239, 240, 0.08);
  }

  .nav .button {
    width: 100%;
  }

  .cover-inner {
    width: calc(100% - 48px);
    padding-top: 190px;
  }

  .cover .eyebrow {
    top: 146px;
  }

  .cover-title {
    font-size: clamp(38px, 13vw, 56px);
    white-space: normal;
  }

  .cover-logo {
    width: 100%;
  }

  .cover-logo img {
    height: auto;
  }

  .cover-lede {
    font-size: 28px;
  }

  section {
    padding: 62px 24px;
  }

  .span-3,
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8 {
    grid-column: span 12;
  }

  .dash-grid,
  .founder,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .home-hero {
    padding: 190px 24px 64px;
  }

  .home-hero-inner,
  .about-hero-inner,
  .name-story-layout,
  .technology-leadership,
  .section-split,
  .pain-layout,
  .solution-layout,
  .demo-shell,
  .demo-panel,
  .product-screens,
  .product-layout,
  .screen-body {
    grid-template-columns: 1fr;
  }

  .home-hero-inner {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 9vw, 52px);
  }

  .hero-dashboard-composite {
    transform: none;
    grid-template-columns: 1fr;
    min-height: auto;
    overflow: hidden;
  }

  .hero-dashboard-composite:hover {
    transform: translateY(-3px);
  }

  .hero-dash-sidebar {
    display: none;
  }

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

  .hero-float-card {
    position: relative;
    inset: auto;
    width: auto;
    margin: 12px 18px;
  }

  .hero-dash-main {
    padding: 24px;
  }

  .screen-shell,
  .product-screen {
    padding: 16px;
  }

  .primary-screen {
    min-height: auto;
  }

  .screen-blocks {
    grid-template-columns: 1fr 1fr;
  }

  .mini-screen {
    min-height: 190px;
  }

  .dossier-card.offset {
    margin-left: 0;
    margin-top: 0;
  }

  .investigation-board {
    min-height: auto;
    padding: 22px;
  }

  .workflow-map {
    position: relative;
    inset: auto;
    min-height: 500px;
  }

  .investigation-board .dossier-stack {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .dossier-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .dossier-card::before {
    display: none;
  }

  .investigation-board .dossier-stack::before {
    inset: -12px -8px -8px 22%;
    width: 58%;
    height: auto;
  }

  .comparison-module {
    grid-template-columns: 1fr;
  }

  .process-column {
    min-height: auto;
  }

  .demo-shell {
    min-height: auto;
  }

  .demo-sidebar {
    display: none;
  }

  .demo-results,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .demo-heading {
    flex-direction: column;
  }

  .about-hero {
    min-height: auto;
    padding-top: 190px;
  }

  .about-hero-copy {
    max-width: none;
  }

  .story-briefing {
    min-height: auto;
    padding-top: 360px;
  }

  .team-card,
  .advisor-card {
    min-height: auto;
  }

  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .person-card,
  .person-card:hover,
  .person-card:focus-visible {
    min-height: 540px;
    flex: none;
    transform: none;
  }

  .team-grid:has(.person-card:hover) .person-card:not(:hover),
  .team-grid:has(.person-card:focus-visible) .person-card:not(:focus-visible) {
    filter: none;
  }

  .person-glass,
  .person-card:hover .person-glass,
  .person-card:focus-visible .person-glass {
    min-height: 42%;
    max-height: 56%;
    background: rgba(5, 5, 5, 0.46);
  }

  .person-details {
    opacity: 1;
    transform: none;
  }

  .person-haytham {
    min-height: 460px;
  }
}

@media (max-width: 700px) {
  .workflow-map {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding-top: 38px;
  }

  .workflow-node,
  .workflow-title,
  .annotation {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .workflow-title {
    position: absolute;
    top: 0;
  }

  .workflow-node {
    min-width: 0;
    width: 100%;
  }

  .archive-map {
    inset: 24px;
    display: grid;
    gap: 10px;
    min-height: 220px;
  }

  .archive-map::before,
  .archive-map::after {
    display: none;
  }

  .archive-map span {
    position: relative;
    inset: auto !important;
    min-width: 0;
  }

  .transformation-map {
    inset: 24px;
    min-height: 300px;
    padding: 18px;
  }

  .flow-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-steps {
    gap: 8px;
  }

  .connector,
  .duplicate-line {
    display: none;
  }

  .annotation {
    display: inline-flex;
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .cover-actions {
    width: 100%;
    flex-direction: column;
  }

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

  .cover-lede {
    font-size: 24px;
  }

  .wordmark-text {
    font-size: 12px;
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .home-hero {
    padding-inline: 18px;
  }

  .screen-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .screen-blocks {
    grid-template-columns: 1fr;
  }

  .section-copy p,
  .intro p,
  .final-cta p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .hero-note {
    font-size: 16px;
  }

  .demo-workspace {
    padding: 20px;
  }

  .demo-panel {
    padding: 16px;
  }

  .demo-start {
    width: 100%;
  }

  .about-hero {
    padding-inline: 18px;
  }

  .about-hero h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .story-briefing {
    padding-top: 430px;
  }

  .briefing-file-top {
    flex-direction: column;
    gap: 6px;
    padding: 18px;
  }

  .briefing-row {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 20px 18px;
  }

  .briefing-row::before {
    left: 36px;
  }

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

  .flow-steps::before,
  .flow-steps span::after {
    display: none;
  }

  .flow-steps span {
    min-height: 44px;
  }

  .flow-divider {
    margin: 18px 0;
  }

  .team-meta h3 {
    font-size: 18px;
  }

  .person-card,
  .person-card:hover,
  .person-card:focus-visible {
    min-height: 520px;
  }

  .person-tags {
    inset: 16px 16px auto;
  }

  .person-glass,
  .person-card:hover .person-glass,
  .person-card:focus-visible .person-glass {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
    max-height: 62%;
  }

  .person-details p,
  .technology-leadership .person-details p {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .about-editorial,
  .name-editorial {
    grid-template-columns: 1fr;
  }

  .about-editorial-copy h1 {
    font-size: clamp(36px, 10vw, 58px);
  }

  .understanding-visual,
  .fragments-visual {
    min-height: 480px;
  }

  .name-story {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .name-copy .editorial-body,
  .about-editorial-copy .editorial-body {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .editorial-body {
    margin-top: 26px;
    padding-left: 18px;
  }

  .editorial-body p {
    font-size: 16px;
  }

  .understanding-visual,
  .fragments-visual {
    min-height: 430px;
    border-radius: 18px;
  }

  .document-fragment,
  .fragment-cloud span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 8px;
  }

  .document-fragment::after {
    width: 58px;
  }

  .understanding-core,
  .meaning-panel {
    width: min(260px, 78%);
    min-height: 150px;
  }

  .name-copy h2 {
    font-size: clamp(34px, 12vw, 50px);
  }

  .name-statement {
    font-size: clamp(26px, 9vw, 38px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-node,
  .connector,
  .connector.broken,
  .duplicate-line,
  .annotation,
  .dossier-card {
    animation: none;
  }

  .flip-card-inner {
    transition: none;
  }

  .flip-card:hover .flip-card-inner,
  .flip-card:focus-visible .flip-card-inner {
    transform: none;
  }

  .flip-card:hover .flip-front,
  .flip-card:focus-visible .flip-front {
    opacity: 0;
  }

  .flip-back {
    transform: none;
  }
}

/* About signal network */
.signal-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(139, 157, 170, 0.18), transparent 70%),
    linear-gradient(rgba(45, 45, 45, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 45, 45, 0.02) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.signal-page::before {
  content: "";
  position: absolute;
  top: 160px;
  bottom: 120px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(45, 45, 45, 0.14) 12%, rgba(45, 45, 45, 0.22) 58%, transparent);
  pointer-events: none;
}

.signal-stage {
  position: relative;
  background: transparent;
}

.signal-stage::after {
  content: "";
  position: absolute;
  left: 7vw;
  right: 7vw;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 45, 45, 0.13), transparent);
}

.signal-page .about-hero {
  min-height: auto;
  padding-top: 148px;
  padding-bottom: 104px;
}

.signal-page .about-hero::before,
.signal-page .about-hero::after,
.signal-page .section-graphic::after,
.signal-page .team-section::before {
  display: none;
}

.signal-page .about-editorial,
.signal-page .name-editorial {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.9fr);
  gap: clamp(44px, 7vw, 104px);
}

.signal-page .editorial-body {
  border-left-color: rgba(45, 45, 45, 0.14);
}

.signal-field {
  position: relative;
  min-height: 560px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.signal-field::before,
.signal-field::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 48%;
  transform: rotate(-9deg);
}

.noise-field::before {
  width: 560px;
  height: 220px;
  left: -80px;
  top: 72px;
}

.noise-field::after {
  width: 480px;
  height: 170px;
  right: -96px;
  bottom: 90px;
  border-style: dashed;
}

.signal-node,
.signal-cloud span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 999px;
  background: rgba(246, 246, 243, 0.58);
  color: #5a5a5a;
  font-family: var(--bank);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.signal-node::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 45, 45, 0.17), transparent);
}

.n-a { left: 5%; top: 13%; }
.n-b { left: 17%; top: 34%; }
.n-c { left: 7%; bottom: 22%; }
.n-d { right: 12%; top: 18%; }
.n-e { right: 5%; top: 44%; }
.n-f { right: 17%; bottom: 18%; }
.n-g { left: 36%; top: 8%; opacity: 0.62; }
.n-h { left: 43%; bottom: 10%; opacity: 0.62; }

.n-d::after,
.n-e::after,
.n-f::after {
  right: 100%;
  background: linear-gradient(270deg, rgba(45, 45, 45, 0.17), transparent);
}

.n-a::after,
.n-b::after,
.n-c::after,
.n-g::after,
.n-h::after {
  left: 100%;
}

.signal-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(310px, 74%);
  min-height: 185px;
  transform: translate(-50%, -50%);
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 20px;
  background:
    radial-gradient(260px 140px at 50% 0%, rgba(238, 239, 240, 0.32), transparent 70%),
    rgba(45, 45, 45, 0.78);
  color: #fff;
  box-shadow: 0 26px 78px rgba(5, 5, 5, 0.18);
  backdrop-filter: blur(18px);
}

.signal-core span {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--bank);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-core strong {
  color: #fff;
  font-family: var(--bank);
  font-size: clamp(20px, 2.2vw, 31px);
  letter-spacing: 0.12em;
  line-height: 1.12;
  text-transform: uppercase;
}

.signal-page .name-story {
  padding-top: 112px;
  padding-bottom: 112px;
}

.pattern-field {
  min-height: 610px;
}

.pattern-field::before {
  width: 620px;
  height: 220px;
  left: -120px;
  top: 110px;
}

.pattern-field::after {
  width: 520px;
  height: 170px;
  right: -110px;
  bottom: 120px;
}

.signal-cloud {
  position: absolute;
  inset: 0;
}

.signal-cloud span:nth-child(1) { left: 7%; top: 10%; opacity: 0.38; }
.signal-cloud span:nth-child(2) { left: 38%; top: 8%; opacity: 0.54; }
.signal-cloud span:nth-child(3) { right: 9%; top: 15%; opacity: 0.42; }
.signal-cloud span:nth-child(4) { left: 13%; top: 32%; opacity: 0.62; }
.signal-cloud span:nth-child(5) { right: 14%; top: 36%; opacity: 0.74; }
.signal-cloud span:nth-child(6) { left: 25%; top: 48%; opacity: 0.52; }
.signal-cloud span:nth-child(7) { right: 24%; top: 52%; opacity: 0.78; }
.signal-cloud span:nth-child(8) { left: 7%; bottom: 25%; opacity: 0.36; }
.signal-cloud span:nth-child(9) { right: 8%; bottom: 28%; opacity: 0.66; }
.signal-cloud span:nth-child(10) { left: 34%; bottom: 12%; opacity: 0.84; }
.signal-cloud span:nth-child(11) { right: 28%; bottom: 10%; opacity: 0.82; }
.signal-cloud span:nth-child(12) { left: 15%; bottom: 8%; opacity: 0.48; }

.pattern-field .signal-core {
  background:
    radial-gradient(260px 140px at 50% 0%, rgba(238, 239, 240, 0.28), transparent 70%),
    rgba(45, 45, 45, 0.82);
}

.signal-page .team-section {
  padding-top: 112px;
  padding-bottom: 112px;
  background: transparent;
  color: var(--graphite);
}

.team-network {
  position: relative;
  max-width: 1180px;
  min-height: 760px;
  margin: 66px auto 0;
}

.team-network::before,
.team-network::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: rgba(45, 45, 45, 0.18);
  transform: rotate(-7deg);
}

.team-network::after {
  transform: rotate(7deg);
  opacity: 0.72;
}

.network-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(45, 45, 45, 0.18);
  border-radius: 50%;
  background: rgba(246, 246, 243, 0.72);
  color: var(--graphite);
  font-family: var(--bank);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-node {
  position: absolute;
  z-index: 3;
  width: min(420px, 42%);
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: start;
}

.team-node::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(45, 45, 45, 0.32);
  border-radius: 50%;
  background: var(--paper);
}

.team-node img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.16) saturate(0.82);
  box-shadow: 0 16px 40px rgba(5, 5, 5, 0.12);
}

.team-node h3 {
  margin: 0;
  color: var(--graphite);
  font-size: 20px;
  line-height: 1.15;
}

.team-node span {
  display: block;
  margin-top: 6px;
  color: var(--slate-deep);
  font-weight: 700;
}

.team-node p:not(.node-index) {
  margin: 12px 0 0;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.45;
}

.team-node small,
.node-index {
  display: block;
  margin: 0 0 8px;
  color: #6b6b6b;
  font-family: var(--bank);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-node small {
  margin-top: 12px;
}

.node-evelyn { left: 0; top: 6%; }
.node-evelyn::before { right: -62px; top: 72px; }
.node-gilberto { right: 0; top: 16%; }
.node-gilberto::before { left: -62px; top: 72px; }
.node-ana { left: 8%; bottom: 6%; }
.node-ana::before { right: -50px; top: 34px; }
.node-haytham { right: 4%; bottom: 10%; }
.node-haytham::before { left: -50px; top: 34px; }

.mission-section {
  padding: 118px 7vw;
  background:
    radial-gradient(720px 360px at 50% 50%, rgba(139, 157, 170, 0.18), transparent 70%),
    transparent;
}

.mission-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 0.95fr;
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
}

.mission-layout h2 {
  font-size: clamp(34px, 4.4vw, 62px);
}

.mission-copy {
  display: grid;
  gap: 30px;
}

.mission-line {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(45, 45, 45, 0.16);
}

.mission-line span {
  color: var(--slate-deep);
  font-family: var(--bank);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-line p {
  margin: 0;
  color: #3f3f3f;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.52;
}

.ordered-network {
  grid-column: 1 / -1;
  position: relative;
  min-height: 180px;
  margin-top: 24px;
}

.ordered-network::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: rgba(45, 45, 45, 0.22);
}

.ordered-network span {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(45, 45, 45, 0.34);
  border-radius: 50%;
  background: var(--paper);
  transform: translateY(-50%);
}

.ordered-network span:nth-child(1) { left: 10%; }
.ordered-network span:nth-child(2) { left: 24%; }
.ordered-network span:nth-child(3) { left: 38%; }
.ordered-network span:nth-child(4) { left: 52%; }
.ordered-network span:nth-child(5) { left: 66%; }
.ordered-network span:nth-child(6) { left: 80%; }

.ordered-network strong {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--graphite);
  font-family: var(--bank);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .signal-page::before {
    left: 28px;
  }

  .signal-page .about-editorial,
  .signal-page .name-editorial,
  .mission-layout {
    grid-template-columns: 1fr;
  }

  .signal-field {
    min-height: 460px;
  }

  .team-network {
    min-height: auto;
    display: grid;
    gap: 34px;
  }

  .team-network::before,
  .team-network::after,
  .network-center {
    display: none;
  }

  .team-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .team-node::before {
    left: -25px;
    top: 36px;
  }
}

@media (max-width: 560px) {
  .signal-node,
  .signal-cloud span {
    font-size: 8px;
    min-height: 26px;
    padding: 0 8px;
  }

  .signal-node::after {
    width: 42px;
  }

  .signal-core {
    width: min(250px, 76%);
    min-height: 145px;
  }

  .team-node {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .team-node img {
    width: 64px;
    height: 64px;
  }

  .mission-line {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ordered-network strong {
    position: relative;
    right: auto;
    top: auto;
    display: block;
    margin-top: 108px;
    transform: none;
    text-align: center;
  }
}

/* Dark editorial signal treatment for About */
.signal-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(163, 165, 164, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 28%, rgba(238, 239, 240, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 58%, rgba(139, 157, 170, 0.22) 0 1px, transparent 2px),
    radial-gradient(900px 620px at 72% 12%, rgba(96, 116, 130, 0.18), transparent 72%),
    linear-gradient(180deg, var(--ink) 0%, var(--graphite-2) 48%, var(--ink) 100%);
  background-size: 86px 86px, 124px 124px, 164px 164px, auto, auto;
  color: var(--pearl);
}

.signal-page::before {
  left: 7vw;
  width: auto;
  right: 7vw;
  top: 72px;
  bottom: auto;
  height: 1px;
  background: rgba(238, 239, 240, 0.13);
}

.signal-page .signal-stage {
  border-bottom: 1px solid rgba(238, 239, 240, 0.13);
}

.signal-page .signal-stage::after {
  display: none;
}

.signal-page .about-hero,
.signal-page .name-story,
.signal-page .team-section,
.signal-page .mission-section {
  background:
    radial-gradient(circle at 68% 30%, rgba(238, 239, 240, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 62%, rgba(163, 165, 164, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 76%, rgba(139, 157, 170, 0.2) 0 1px, transparent 2px),
    transparent;
  background-size: 72px 72px, 118px 118px, 156px 156px, auto;
}

.signal-page .about-hero {
  padding-top: 132px;
  min-height: 100vh;
}

.signal-page .about-editorial,
.signal-page .name-editorial {
  width: min(1220px, 100%);
  grid-template-columns: minmax(0, 0.68fr) minmax(460px, 1.32fr);
}

.signal-page .eyebrow {
  color: rgba(238, 239, 240, 0.72);
}

.signal-page .about-editorial-copy h1,
.signal-page .name-copy h2,
.signal-page .intro h2,
.signal-page .mission-layout h2 {
  color: var(--pearl);
}

.signal-page .about-editorial-copy h1 {
  max-width: 560px;
  font-size: clamp(42px, 4.8vw, 72px);
}

.signal-page .about-editorial-copy h1::first-line {
  color: #fff;
}

.signal-page .editorial-body {
  max-width: 480px;
  padding-left: 0;
  border-left: 0;
}

.signal-page .editorial-body p,
.signal-page .intro p,
.signal-page .mission-line p,
.signal-page .name-copy .story-kicker {
  color: rgba(238, 239, 240, 0.72) !important;
}

.signal-page .editorial-body p {
  font-size: 15px;
  line-height: 1.7;
}

.signal-page .name-statement {
  color: var(--pearl) !important;
}

.signal-field {
  min-height: 640px;
}

.signal-field::before,
.signal-field::after {
  border-color: rgba(238, 239, 240, 0.14);
}

.noise-field::before,
.pattern-field::before {
  width: 720px;
  height: 330px;
  left: 4%;
  top: 14%;
  border-radius: 48%;
}

.noise-field::after,
.pattern-field::after {
  width: 560px;
  height: 230px;
  right: 2%;
  bottom: 18%;
  border-color: rgba(163, 165, 164, 0.18);
}

.signal-node,
.signal-cloud span {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(238, 239, 240, 0.58);
  box-shadow: none;
  backdrop-filter: none;
  font-size: 8px;
}

.signal-node::before,
.signal-cloud span::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(238, 239, 240, 0.92);
  box-shadow:
    0 0 12px rgba(238, 239, 240, 0.72),
    0 0 28px rgba(139, 157, 170, 0.24);
}

.signal-node::after {
  background: linear-gradient(90deg, rgba(238, 239, 240, 0.28), transparent);
}

.signal-core {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.signal-core::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 18px rgba(238, 239, 240, 0.95),
    0 0 46px rgba(139, 157, 170, 0.34);
  transform: translate(-50%, -50%);
}

.signal-core span,
.signal-core strong {
  position: relative;
  top: 70px;
  text-shadow: 0 2px 18px rgba(5, 5, 5, 0.8);
}

.pattern-field .signal-core {
  background: transparent;
}

.signal-page .name-story {
  padding-top: 96px;
  padding-bottom: 96px;
}

.signal-page .name-editorial {
  align-items: start;
}

.signal-page .fragments-visual,
.signal-page .pattern-field {
  min-height: 620px;
}

.signal-page .team-section {
  color: var(--pearl);
  padding-top: 96px;
}

.signal-page .team-network {
  min-height: 620px;
}

.signal-page .team-network::before,
.signal-page .team-network::after {
  background: rgba(238, 239, 240, 0.18);
}

.signal-page .network-center {
  border-color: rgba(238, 239, 240, 0.24);
  background: rgba(238, 239, 240, 0.08);
  color: var(--pearl);
  box-shadow: 0 0 40px rgba(238, 239, 240, 0.12);
}

.signal-page .team-node h3,
.signal-page .team-node span {
  color: var(--pearl);
}

.signal-page .team-node p:not(.node-index),
.signal-page .team-node small,
.signal-page .node-index {
  color: rgba(238, 239, 240, 0.68);
}

.signal-page .team-node::before {
  background: #fff;
  border-color: rgba(238, 239, 240, 0.52);
  box-shadow:
    0 0 16px rgba(238, 239, 240, 0.9),
    0 0 40px rgba(96, 116, 130, 0.45);
}

.signal-page .team-node img {
  border: 1px solid rgba(238, 239, 240, 0.24);
  filter: grayscale(0.25) saturate(0.76) brightness(0.88);
}

.signal-page .mission-section {
  padding-top: 112px;
}

.signal-page .mission-line {
  border-top-color: rgba(238, 239, 240, 0.16);
}

.signal-page .mission-line span {
  color: rgba(238, 239, 240, 0.72);
}

.signal-page .ordered-network::before {
  background: rgba(238, 239, 240, 0.2);
}

.signal-page .ordered-network span {
  border-color: rgba(238, 239, 240, 0.44);
  background: #fff;
  box-shadow:
    0 0 14px rgba(238, 239, 240, 0.82),
    0 0 38px rgba(139, 157, 170, 0.28);
}

.signal-page .ordered-network strong {
  color: var(--pearl);
}

@media (max-width: 900px) {
  .signal-page .about-editorial,
  .signal-page .name-editorial {
    grid-template-columns: 1fr;
  }

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

  .signal-page .team-node::before {
    left: -25px;
  }
}

@media (max-width: 560px) {
  .signal-page .about-hero {
    padding-top: 190px;
  }

  .signal-page .about-editorial-copy h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
}

/* About page brand correction */
.signal-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(238, 239, 240, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 28%, rgba(163, 165, 164, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 58%, rgba(139, 157, 170, 0.16) 0 1px, transparent 2px),
    radial-gradient(980px 620px at 78% 4%, rgba(238, 239, 240, 0.3), transparent 72%),
    radial-gradient(900px 620px at 8% 84%, rgba(45, 45, 45, 0.28), transparent 70%),
    linear-gradient(135deg, #2d2d2d 0%, #555756 42%, #777978 72%, #a3a5a4 100%);
  background-size: 90px 90px, 132px 132px, 172px 172px, auto, auto, auto;
  background-repeat: repeat, repeat, repeat, no-repeat, no-repeat, no-repeat;
}

.about-constellation {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
}

.signal-page > .signal-stage {
  position: relative;
  z-index: 1;
}

.about-page-body {
  scroll-snap-type: y proximity;
}

.about-page-body .signal-stage {
  min-height: 100vh;
  display: grid;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.signal-page .about-hero {
  min-height: auto;
  padding-top: 138px;
  padding-bottom: 92px;
}

.signal-page .about-editorial,
.signal-page .name-editorial {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
}

.signal-page .about-editorial-copy h1 {
  max-width: 620px;
  color: var(--pearl);
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.08;
  text-transform: none;
  text-shadow: 0 12px 34px rgba(5, 5, 5, 0.22);
}

.signal-page .about-editorial-copy h1::first-line {
  color: var(--pearl);
}

.signal-page .name-copy h2,
.signal-page .intro h2,
.signal-page .mission-layout h2 {
  color: var(--pearl);
}

.signal-page .editorial-body {
  max-width: 560px;
}

.signal-page .editorial-body p {
  color: rgba(238, 239, 240, 0.82) !important;
  font-size: 16px;
  line-height: 1.58;
}

.signal-page .about-hero,
.signal-page .name-story,
.signal-page .team-section,
.signal-page .mission-section {
  background:
    radial-gradient(circle at 68% 30%, rgba(238, 239, 240, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 62%, rgba(163, 165, 164, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 76%, rgba(139, 157, 170, 0.18) 0 1px, transparent 2px),
    transparent;
  background-size: 76px 76px, 124px 124px, 164px 164px, auto;
  background-repeat: repeat, repeat, repeat, no-repeat;
}

.signal-page .topbar {
  background: rgba(5, 5, 5, 0.48);
}

.signal-field {
  min-height: min(640px, 68vh);
}

.noise-field::after,
.pattern-field::after {
  border-color: rgba(163, 165, 164, 0.18);
}

.signal-node::before,
.signal-cloud span::before,
.signal-core::before,
.signal-page .team-node::before,
.signal-page .ordered-network span {
  background: var(--pearl);
  box-shadow:
    0 0 12px rgba(238, 239, 240, 0.58),
    0 0 26px rgba(139, 157, 170, 0.28);
}

.signal-core::before {
  width: 10px;
  height: 10px;
}

.signal-core strong {
  color: var(--pearl);
}

@media (max-width: 900px) {
  .about-page-body {
    scroll-snap-type: y proximity;
  }

  .about-page-body .signal-stage {
    min-height: auto;
    scroll-snap-align: none;
  }

  .signal-page .about-editorial,
  .signal-page .name-editorial {
    grid-template-columns: 1fr;
  }

  .about-constellation {
    opacity: 0.72;
  }

  .signal-page .about-editorial-copy h1 {
    font-size: clamp(32px, 7vw, 46px);
  }
}

@media (max-width: 560px) {
  .signal-page .about-editorial-copy h1 {
    font-size: clamp(30px, 9vw, 40px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page-body {
    scroll-snap-type: none;
  }

  .about-constellation {
    opacity: 0.64;
  }
}

/* Full-screen About scroll story */
@media (min-width: 901px) {
  html:has(.about-page-body) {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

  .about-page-body {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

  .about-page-body .signal-stage {
    height: 100vh;
    min-height: 100vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .about-page-body .signal-stage > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 780ms ease, transform 780ms ease;
  }

  .about-page-body .signal-stage.is-active > * {
    opacity: 1;
    transform: translateY(0);
  }

  .signal-page .about-hero,
  .signal-page .name-story,
  .signal-page .team-section,
  .signal-page .mission-section {
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .signal-page .team-section .intro {
    margin-bottom: 18px;
  }

  .signal-page .team-network {
    min-height: min(510px, 58vh);
    margin-top: 28px;
  }

  .signal-page .team-node {
    width: min(390px, 40%);
  }

  .signal-page .team-node p:not(.node-index) {
    font-size: 13px;
    line-height: 1.38;
  }

  .signal-page .mission-section .ordered-network {
    min-height: 130px;
  }
}

@media (max-width: 900px) {
  .about-page-body {
    scroll-snap-type: none;
  }

  .about-page-body .signal-stage {
    height: auto;
    min-height: auto;
    overflow: visible;
    scroll-snap-align: none;
  }

  .about-page-body .signal-stage > * {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page-body {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }

  .about-page-body .signal-stage > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* About scroll-story fit corrections */
@media (min-width: 901px) {
  .about-page-body .signal-stage {
    min-height: 100svh;
    height: 100svh;
    padding-top: clamp(86px, 10vh, 112px) !important;
    padding-bottom: clamp(32px, 5vh, 56px) !important;
  }

  .signal-page .about-editorial,
  .signal-page .name-editorial,
  .signal-page .mission-layout {
    width: min(1500px, 86vw);
    margin-inline: auto;
  }

  .signal-page .name-editorial {
    grid-template-columns: minmax(360px, 0.55fr) minmax(420px, 0.9fr);
    gap: clamp(34px, 5vw, 84px);
    align-items: center;
  }

  .signal-page .name-copy h2 {
    max-width: 620px;
    font-size: clamp(34px, 4.2vw, 68px);
    line-height: 1.06;
    letter-spacing: clamp(0.12em, 0.8vw, 0.22em);
  }

  .signal-page .name-copy .story-kicker {
    max-width: 560px;
    font-size: clamp(17px, 1.35vw, 24px);
    line-height: 1.36;
  }

  .signal-page .name-statement {
    max-width: 560px;
    margin-bottom: 22px;
    font-size: clamp(26px, 2.5vw, 40px) !important;
    line-height: 1.12;
  }

  .signal-page .name-copy .editorial-body p {
    font-size: clamp(14px, 0.95vw, 16px);
    line-height: 1.48;
  }

  .signal-page .name-story .signal-field {
    min-height: min(520px, 58vh);
    opacity: 0.72;
  }

  .signal-page .team-section {
    align-content: center;
  }

  .signal-page .team-section .intro {
    width: min(1180px, 82vw);
    margin: 0 auto 24px;
  }

  .signal-page .intro h2 {
    max-width: 760px;
    font-size: clamp(34px, 3.4vw, 56px);
    line-height: 1.06;
  }

  .signal-page .intro p {
    max-width: 920px;
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.5;
  }

  .signal-page .team-network {
    width: min(1120px, 78vw);
    min-height: 0;
    height: min(430px, 48vh);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 42px) clamp(54px, 8vw, 120px);
    align-items: center;
  }

  .signal-page .team-network::before,
  .signal-page .team-network::after {
    left: 10%;
    right: 10%;
    top: 50%;
    display: block;
    background: rgba(238, 239, 240, 0.16);
  }

  .signal-page .team-network::after {
    transform: rotate(90deg);
    transform-origin: center;
  }

  .signal-page .network-center {
    display: grid;
    width: 92px;
    height: 92px;
    font-size: 10px;
  }

  .signal-page .team-node {
    position: relative;
    inset: auto;
    width: min(430px, 100%);
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
  }

  .signal-page .team-node::before {
    left: auto;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .signal-page .node-evelyn { justify-self: end; }
  .signal-page .node-gilberto { justify-self: start; }
  .signal-page .node-ana { justify-self: end; }
  .signal-page .node-haytham { justify-self: start; }

  .signal-page .node-evelyn::before,
  .signal-page .node-ana::before {
    right: -30px;
  }

  .signal-page .node-gilberto::before,
  .signal-page .node-haytham::before {
    left: -30px;
  }

  .signal-page .team-node img {
    width: 68px;
    height: 68px;
  }

  .signal-page .team-node h3 {
    font-size: clamp(18px, 1.55vw, 24px);
    line-height: 1.08;
    letter-spacing: 0.12em;
  }

  .signal-page .team-node span {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.25;
  }

  .signal-page .team-node p:not(.node-index) {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.32;
  }

  .signal-page .team-node small,
  .signal-page .node-index {
    margin-bottom: 5px;
    font-size: 8px;
    letter-spacing: 0.18em;
    line-height: 1.3;
  }

  .signal-page .team-node small {
    margin-top: 7px;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .signal-page .name-copy h2,
  .signal-page .intro h2,
  .signal-page .mission-layout h2 {
    font-size: clamp(30px, 3.2vw, 46px);
  }

  .signal-page .name-statement {
    font-size: clamp(22px, 2vw, 30px) !important;
  }

  .signal-page .team-network {
    height: min(370px, 43vh);
  }

  .signal-page .team-node img {
    width: 58px;
    height: 58px;
  }

  .signal-page .team-node {
    grid-template-columns: 58px minmax(0, 1fr);
  }
}

/* Quieter constellation layer */
.about-constellation {
  opacity: 0.74;
}

/* Remove About slide separators */
.about-page-body .topbar {
  border-bottom: 0 !important;
}

.signal-page::before {
  display: none !important;
}

.signal-page .signal-stage {
  border-bottom: 0 !important;
}

.signal-page .signal-stage::after {
  display: none !important;
}

/* Slower opening reveal: stars first, then first-section copy */
@media (min-width: 901px) {
  .about-page-body.about-restarting .about-hero.signal-stage > * {
    opacity: 0 !important;
    transform: translateY(22px) !important;
    transition: none !important;
  }

  .about-page-body .about-hero.signal-stage > * {
    transition-duration: 900ms;
    transition-delay: 650ms;
  }
}

@media (prefers-reduced-motion: reduce) {
.about-page-body .about-hero.signal-stage > * {
    transition-delay: 0ms;
  }
}

/* Pricing page */
.pricing-page-body {
  background: var(--paper);
}

.pricing-hero {
  min-height: 92vh;
  padding: 136px 7vw 72px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(940px 540px at 86% 8%, rgba(238, 239, 240, 0.78), transparent 72%),
    radial-gradient(760px 460px at 7% 88%, rgba(96, 116, 130, 0.22), transparent 70%),
    linear-gradient(135deg, #f6f6f3 0%, #dfe4e7 42%, #a3a5a4 72%, #f2f3f1 100%);
  overflow: hidden;
}

.pricing-hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: block;
}

.pricing-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.04;
}

.pricing-hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: #424242;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.42;
}

.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.pricing-terms,
.pricing-plan,
.credit-card,
.expert-card,
.custom-volume-note {
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 18px;
  background:
    radial-gradient(520px 260px at 84% 0%, rgba(238, 239, 240, 0.46), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(163, 165, 164, 0.24));
  box-shadow: 0 28px 80px rgba(5, 5, 5, 0.09);
}

.pricing-terms {
  padding: 26px;
}

.pricing-terms-lower {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 0.22fr 1fr;
  gap: 24px;
  align-items: start;
}

.pricing-terms-lower ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.pricing-terms-lower li {
  margin: 0;
  padding: 0 0 0 16px;
  font-size: 15px;
}

.pricing-terms-lower .term-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pricing-terms-lower .term-grid div {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(45, 45, 45, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.34);
}

.pricing-terms-lower strong {
  display: block;
  color: var(--graphite);
  font-size: 16px;
}

.pricing-terms-lower p {
  margin: 9px 0 0;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.42;
}

.pricing-terms span,
.plan-topline span,
.volume-control label,
.credit-calculator label {
  display: block;
  color: var(--slate-deep);
  font-family: var(--bank);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-terms ul {
  margin-top: 18px;
}

.pricing-terms li {
  color: #3e3e3e;
}

.pricing-panel,
.pricing-addons {
  padding: 106px 7vw;
  background:
    radial-gradient(760px 460px at 84% 8%, rgba(139, 157, 170, 0.18), transparent 72%),
    var(--pearl);
}

.pricing-page-body .pricing-panel:first-child,
.pricing-page-body main > .pricing-panel:first-child {
  padding-top: 154px;
}

.plan-comparison,
.addon-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pricing-plan,
.credit-card,
.expert-card {
  min-height: 0;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
}

.evidence-plan {
  background:
    radial-gradient(620px 300px at 86% 0%, rgba(238, 239, 240, 0.24), transparent 74%),
    linear-gradient(145deg, rgba(96, 116, 130, 0.72), rgba(45, 45, 45, 0.94)),
    var(--graphite);
  color: var(--pearl);
}

.plan-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.12);
}

.evidence-plan .plan-topline {
  border-bottom-color: rgba(238, 239, 240, 0.18);
}

.plan-topline strong {
  color: #555;
  font-size: 13px;
}

.evidence-plan .plan-topline strong,
.evidence-plan .plan-topline span {
  color: rgba(238, 239, 240, 0.92);
}

.pricing-plan h3,
.credit-card h3,
.expert-card h3 {
  margin: 24px 0 10px;
  color: var(--graphite);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.06;
}

.evidence-plan h3,
.evidence-plan p,
.evidence-plan li {
  color: var(--pearl);
}

.evidence-plan > p {
  color: rgba(238, 239, 240, 0.92) !important;
}

.pricing-plan > p,
.credit-card > p,
.expert-card > p {
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
}

.volume-control,
.credit-calculator {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
}

.evidence-plan .volume-control {
  border-color: rgba(238, 239, 240, 0.28);
  background: rgba(5, 5, 5, 0.16);
}

.volume-readout {
  margin-top: 8px;
  color: var(--graphite);
  font-size: 26px;
  font-weight: 700;
}

.evidence-plan .volume-readout {
  color: var(--pearl);
}

.volume-control input[type="range"] {
  width: 100%;
  margin: 22px 0 8px;
  height: 26px;
  appearance: none;
  background: transparent;
  --range-fill: var(--graphite);
  --range-empty: rgba(45, 45, 45, 0.16);
  --range-progress: 0%;
}

.evidence-plan input[type="range"] {
  --range-fill: var(--pearl);
  --range-empty: rgba(238, 239, 240, 0.26);
}

.volume-control input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--range-fill) 0 var(--range-progress), var(--range-empty) var(--range-progress) 100%);
  border: 1px solid rgba(45, 45, 45, 0.18);
}

.evidence-plan .volume-control input[type="range"]::-webkit-slider-runnable-track {
  border-color: rgba(238, 239, 240, 0.32);
}

.volume-control input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -8px;
  border: 0;
  border-radius: 50%;
  background: var(--range-fill);
  box-shadow: 0 2px 10px rgba(5, 5, 5, 0.18);
}

.volume-control input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: var(--range-empty);
  border: 1px solid rgba(45, 45, 45, 0.18);
}

.volume-control input[type="range"]::-moz-range-progress {
  height: 8px;
  border-radius: 999px;
  background: var(--range-fill);
}

.volume-control input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--range-fill);
  box-shadow: 0 2px 10px rgba(5, 5, 5, 0.18);
}

.volume-scale {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 12px;
}

.evidence-plan .volume-scale {
  color: rgba(238, 239, 240, 0.84);
}

.price-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.price-ledger div,
.credit-row > div {
  padding: 16px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.44);
}

.evidence-plan .price-ledger div {
  border-color: rgba(238, 239, 240, 0.28);
  background: rgba(5, 5, 5, 0.16);
}

.price-ledger span,
.credit-row span {
  display: block;
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

.evidence-plan .price-ledger span {
  color: rgba(238, 239, 240, 0.82);
}

.price-ledger strong,
.credit-row strong {
  display: block;
  margin-top: 5px;
  color: var(--graphite);
  font-size: clamp(22px, 2vw, 28px);
}

.evidence-plan .price-ledger strong {
  color: var(--pearl);
}

.plan-list {
  margin: 24px 0 28px;
}

.plan-list li {
  margin-top: 11px;
  color: #454545;
}

.evidence-plan .plan-list li {
  color: rgba(238, 239, 240, 0.86);
}

.pricing-plan .button {
  width: fit-content;
  margin-top: auto;
}

.custom-volume-note {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 0.24fr 1fr auto;
  gap: 20px;
  align-items: center;
}

.custom-volume-note span {
  color: var(--graphite);
  font-weight: 700;
}

.custom-volume-note p {
  margin: 0;
  color: #4a4a4a;
}

.custom-volume-note a,
.text-link {
  color: var(--graphite);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pricing-addons {
  background:
    radial-gradient(920px 500px at 16% 0%, rgba(238, 239, 240, 0.14), transparent 70%),
    linear-gradient(135deg, rgba(45, 45, 45, 0.92), rgba(96, 116, 130, 0.72) 56%, rgba(163, 165, 164, 0.44)),
    var(--graphite);
  color: var(--pearl);
}

.pricing-addons .intro h2,
.pricing-addons .intro p {
  color: var(--pearl);
}

.pricing-addons .eyebrow {
  color: rgba(238, 239, 240, 0.72);
}

.credit-card,
.expert-card {
  border-color: rgba(238, 239, 240, 0.2);
  background:
    radial-gradient(560px 280px at 82% 0%, rgba(238, 239, 240, 0.2), transparent 72%),
    rgba(238, 239, 240, 0.08);
  box-shadow: 0 28px 90px rgba(5, 5, 5, 0.18);
}

.credit-card h3,
.expert-card h3,
.credit-card p,
.expert-card p,
.credit-card li,
.expert-card li {
  color: var(--pearl);
}

.credit-card .plan-topline,
.expert-card .plan-topline {
  border-bottom-color: rgba(238, 239, 240, 0.18);
}

.credit-card .plan-topline span,
.expert-card .plan-topline span,
.credit-card .plan-topline strong,
.expert-card .plan-topline strong {
  color: rgba(238, 239, 240, 0.74);
}

.credit-calculator {
  border-color: rgba(238, 239, 240, 0.18);
  background: rgba(238, 239, 240, 0.08);
}

.credit-calculator label {
  color: var(--graphite) !important;
  text-shadow: none;
}

.credit-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.credit-batches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.credit-batches button {
  border: 1px solid rgba(238, 239, 240, 0.24);
  border-radius: 10px;
  background: rgba(238, 239, 240, 0.12);
  color: var(--pearl);
  font: 700 20px var(--body);
  padding: 16px 10px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.credit-batches button span {
  display: block;
  margin-top: 2px;
  color: rgba(238, 239, 240, 0.7);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.credit-batches button:hover,
.credit-batches button.is-selected {
  border-color: rgba(238, 239, 240, 0.54);
  background: rgba(238, 239, 240, 0.22);
  transform: translateY(-1px);
}

.credit-row > div {
  border-color: rgba(238, 239, 240, 0.18);
  background: rgba(238, 239, 240, 0.08);
}

.credit-row span {
  color: rgba(238, 239, 240, 0.68);
}

.credit-row strong {
  color: var(--pearl);
}

.expert-price {
  margin: 16px 0 18px;
  color: var(--pearl);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
}

.expert-price span {
  color: rgba(238, 239, 240, 0.66);
  font-size: 15px;
}

.expert-card .text-link {
  width: fit-content;
  margin-top: auto;
  color: var(--pearl);
}

.pricing-cta {
  padding: 94px 7vw;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
  background:
    radial-gradient(860px 420px at 82% 0%, rgba(139, 157, 170, 0.2), transparent 70%),
    var(--paper);
}

.pricing-cta > div {
  width: min(780px, 100%);
}

.pricing-cta h2 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.pricing-cta p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: #4a4a4a;
  font-size: 18px;
}

@media (max-width: 980px) {
  .pricing-hero-inner,
  .plan-comparison,
  .addon-grid,
  .custom-volume-note {
    grid-template-columns: 1fr;
  }

  .pricing-terms-lower ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-terms-lower .term-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-volume-note {
    align-items: start;
  }

  .pricing-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .pricing-hero,
  .pricing-panel,
  .pricing-addons,
  .pricing-cta {
    padding-inline: 22px;
  }

  .price-ledger,
  .credit-row,
  .credit-batches,
  .pricing-terms-lower ul,
  .pricing-terms-lower .term-grid {
    grid-template-columns: 1fr;
  }

  .pricing-plan .button,
  .pricing-cta .button {
    width: 100%;
  }
}

/* Professional services page */
.services-page-body {
  background: var(--pearl);
}

.professional-panel {
  padding: 154px 7vw 106px;
  background:
    radial-gradient(820px 480px at 84% 8%, rgba(139, 157, 170, 0.2), transparent 72%),
    var(--pearl);
}

.professional-panel .intro h1 {
  max-width: 920px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.06;
}

.service-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 720px;
  padding: clamp(24px, 2.6vw, 32px);
  display: grid;
  grid-template-rows: 78px 62px 74px 130px 1fr;
  row-gap: 14px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background:
    radial-gradient(520px 260px at 86% 0%, rgba(238, 239, 240, 0.5), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(163, 165, 164, 0.22));
  box-shadow: 0 28px 80px rgba(5, 5, 5, 0.09);
  overflow: hidden;
}

.service-card.featured {
  background:
    radial-gradient(560px 280px at 84% 0%, rgba(238, 239, 240, 0.36), transparent 72%),
    linear-gradient(145deg, rgba(96, 116, 130, 0.5), rgba(45, 45, 45, 0.84)),
    var(--graphite);
  color: var(--pearl);
}

.service-card.advisory {
  background:
    radial-gradient(520px 260px at 86% 0%, rgba(238, 239, 240, 0.46), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(163, 165, 164, 0.28));
}

.service-index {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--pearl);
  font-size: 12px;
  font-weight: 700;
}

.service-card.featured .service-index {
  background: var(--pearl);
  color: var(--graphite);
}

.service-card-head {
  padding-left: 44px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.12);
}

.service-card.featured .service-card-head {
  border-bottom-color: rgba(238, 239, 240, 0.18);
}

.service-card-head span,
.service-label {
  display: block;
  color: var(--slate-deep);
  font-family: var(--bank);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card.featured .service-card-head span,
.service-card.featured .service-label {
  color: rgba(238, 239, 240, 0.84);
}

.service-card-head strong {
  display: block;
  margin-top: 6px;
  color: #555;
  font-size: 13px;
}

.service-card.featured .service-card-head strong {
  color: rgba(238, 239, 240, 0.78);
}

.service-card h2 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.16;
}

.service-card.featured h2,
.service-card.featured p,
.service-card.featured li {
  color: var(--pearl);
}

.service-card > p {
  margin: 0;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.5;
}

.service-prices {
  display: grid;
  gap: 10px;
  margin: 0;
  align-self: stretch;
}

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

.service-prices div {
  padding: 15px;
  min-width: 0;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.44);
}

.service-card.featured .service-prices div {
  border-color: rgba(238, 239, 240, 0.18);
  background: rgba(238, 239, 240, 0.08);
}

.service-prices span {
  display: block;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card.featured .service-prices span {
  color: rgba(238, 239, 240, 0.68);
}

.service-prices strong {
  display: block;
  margin-top: 5px;
  color: var(--graphite);
  font-size: clamp(22px, 1.65vw, 28px);
  line-height: 1.05;
  white-space: nowrap;
}

.service-card.featured .service-prices strong {
  color: var(--pearl);
}

.service-body {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.service-body ul {
  margin-top: 12px;
}

.service-body li {
  color: #454545;
  font-size: 14px;
}

.service-body aside {
  padding: 18px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.38);
}

.service-card.featured .service-body aside {
  border-color: rgba(238, 239, 240, 0.18);
  background: rgba(238, 239, 240, 0.08);
}

.service-body aside p {
  margin: 9px 0 0;
  color: #4a4a4a;
  font-size: 14px;
}

.service-card.featured .service-body aside p {
  color: rgba(238, 239, 240, 0.86);
}

.service-assurance {
  width: min(1280px, 100%);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(238, 239, 240, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(680px 280px at 50% 0%, rgba(238, 239, 240, 0.12), transparent 72%),
    var(--graphite);
  color: var(--pearl);
  overflow: hidden;
}

.service-assurance div {
  padding: 22px;
  border-right: 1px solid rgba(238, 239, 240, 0.14);
}

.service-assurance div:last-child {
  border-right: 0;
}

.service-assurance strong {
  display: block;
  color: var(--pearl);
  font-size: 15px;
}

.service-assurance span {
  display: block;
  margin-top: 5px;
  color: rgba(238, 239, 240, 0.72);
  font-size: 13px;
}

.services-cta {
  background:
    radial-gradient(860px 420px at 82% 0%, rgba(139, 157, 170, 0.2), transparent 70%),
    var(--paper);
}

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

  .service-card {
    min-height: auto;
    grid-template-rows: auto;
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .service-assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-assurance div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .professional-panel {
    padding-inline: 22px;
  }

  .service-prices.two,
  .service-assurance {
    grid-template-columns: 1fr;
  }

  .service-assurance div {
    border-right: 0;
    border-bottom: 1px solid rgba(238, 239, 240, 0.14);
  }

.service-assurance div:last-child {
    border-bottom: 0;
  }
}

.contact-panel {
  min-height: calc(100vh - 96px);
  padding-top: 150px;
}

.contact-panel .intro {
  display: none;
}

.contact-panel form .button {
  justify-self: start;
  border: 0;
}

.contact-panel form .button:hover {
  background: linear-gradient(135deg, var(--graphite), var(--forest));
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-confirmation {
  display: none;
  margin: 2px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(68, 104, 78, 0.24);
  border-radius: 8px;
  background: rgba(68, 104, 78, 0.1);
  color: #2f5138;
  font-size: 15px;
  font-weight: 700;
}

.form-confirmation.is-visible {
  display: block;
}

.form-confirmation.is-error {
  border-color: rgba(120, 48, 48, 0.26);
  background: rgba(120, 48, 48, 0.1);
  color: #783030;
}

/* Careers prototype */
.careers-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 148px 7vw 86px;
  overflow: hidden;
  background:
    radial-gradient(680px 420px at 16% 72%, rgba(139, 157, 170, 0.24), transparent 70%),
    radial-gradient(520px 340px at 58% 24%, rgba(179, 125, 0, 0.12), transparent 70%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.72) 38%, rgba(5, 5, 5, 0.34) 74%, rgba(5, 5, 5, 0.48) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.1) 42%, rgba(5, 5, 5, 0.36)),
    url("/assets/careers-hero.png") center / cover;
  color: var(--pearl);
}

.careers-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--pearl));
}

.careers-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.careers-hero .eyebrow {
  color: rgba(179, 125, 0, 0.86);
  text-shadow: 0 1px 18px rgba(5, 5, 5, 0.42);
}

.careers-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--body);
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.careers-hero-copy {
  display: grid;
  gap: 14px;
  max-width: 700px;
  margin: 28px 0 30px;
}

.careers-hero-copy p {
  margin: 0;
  color: rgba(238, 239, 240, 0.84);
  font-size: clamp(16px, 1.35vw, 19px);
}

.careers-shell {
  min-height: calc(100vh - 96px);
  padding: 92px 7vw 100px;
}

.careers-intro h1 {
  max-width: 880px;
  margin: 0;
  color: var(--graphite-2);
  font-family: var(--body);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.careers-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.careers-sidebar,
.job-card,
.job-detail-card,
.application-panel,
.admin-panel,
.job-editor {
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(238, 239, 240, 0.5)),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.08);
  backdrop-filter: blur(18px);
}

.careers-sidebar {
  position: relative;
  top: auto;
  padding: 24px;
}

.location-filters {
  display: grid;
  gap: 8px;
}

.location-filters button {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
  color: var(--graphite);
  font: 700 13px var(--body);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.location-filters button:hover,
.location-filters button.is-active {
  border-color: rgba(66, 97, 78, 0.38);
  background: rgba(66, 97, 78, 0.12);
  color: var(--forest);
  transform: translateX(2px);
}

.clear-filters {
  width: 100%;
  min-height: 38px;
  margin-top: 12px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 8px;
  background: rgba(45, 45, 45, 0.06);
  color: #505050;
  font-family: var(--bank);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.clear-filters:hover {
  background: rgba(45, 45, 45, 0.14);
  color: var(--graphite);
  transform: translateY(-1px);
}

.jobs-list {
  padding: 0;
  display: grid;
  gap: 14px;
}

.job-card {
  min-height: auto;
  padding: clamp(22px, 3vw, 28px);
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.job-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--slate), var(--forest), var(--amber));
  opacity: 0.72;
}

.job-card:hover {
  border-color: rgba(96, 116, 130, 0.28);
  box-shadow: 0 30px 86px rgba(5, 5, 5, 0.12);
  transform: translateY(-2px);
}

.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.job-card-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 8px;
  background: rgba(139, 157, 170, 0.11);
  color: var(--slate-deep);
  font-size: 13px;
  font-weight: 700;
}

.job-listing-main p {
  max-width: 680px;
}

.job-listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.job-listing-meta span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 8px;
  background: rgba(139, 157, 170, 0.12);
  color: var(--slate-deep);
  font-size: 14px;
  font-weight: 700;
}

.job-location::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border: 1px solid var(--forest);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.department-tag {
  background: rgba(179, 125, 0, 0.12) !important;
  color: #725000 !important;
}

.job-listing-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.job-card h2,
.job-detail-card h1 {
  margin: 0;
  color: var(--graphite-2);
  font-family: var(--body);
  letter-spacing: 0;
}

.job-card h2 {
  max-width: 760px;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.08;
  text-transform: none;
}

.job-card p {
  max-width: 720px;
  margin: 10px 0 0;
  color: #4a4a4a;
  font-size: 16px;
}

.job-link,
.back-link {
  display: inline-flex;
  color: var(--graphite);
  font-family: var(--bank);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-link::after {
  content: "->";
  margin-left: 10px;
}

.job-detail {
  width: min(980px, 100%);
  margin: 0 auto;
}

.job-detail-card {
  padding: clamp(28px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}

.job-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--slate), var(--forest), var(--amber));
  opacity: 0.78;
}

.back-link {
  margin-bottom: 34px;
  color: #5e6870;
}

.job-detail-card h1 {
  max-width: 820px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}

.job-summary {
  max-width: 780px;
  margin: 24px 0 34px;
  color: #3d3d3d;
  font-size: 20px;
}

.job-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 34px;
}

.job-body {
  display: grid;
  gap: 28px;
  margin: 0 0 36px;
}

.job-description-flow {
  display: block;
  max-width: 820px;
}

.job-description-flow h2 {
  margin: 34px 0 12px;
  color: var(--slate-deep);
}

.job-description-flow p {
  max-width: 780px;
  margin: 0 0 15px;
}

.job-description-flow ul {
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  padding-left: 20px;
}

.job-description-flow li::marker {
  color: var(--forest);
}

.job-body section {
  padding-top: 24px;
  border-top: 1px solid rgba(45, 45, 45, 0.12);
}

.job-body h2 {
  margin: 0 0 12px;
  color: var(--slate-deep);
  font-family: var(--bank);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-body p,
.job-body li {
  color: #404040;
  font-size: 17px;
}

.job-body p {
  max-width: 780px;
  margin: 0;
}

.job-body p + p {
  margin-top: 12px;
}

.job-body.job-description-flow {
  display: block;
}

.job-body.job-description-flow h2 {
  margin: 34px 0 12px;
}

.job-body.job-description-flow p {
  margin: 0 0 15px;
}

.job-body.job-description-flow p + p {
  margin-top: 0;
}

.job-note {
  width: fit-content;
  max-width: 100%;
  margin: 22px 0 !important;
  padding: 14px 16px;
  border: 1px solid rgba(179, 125, 0, 0.2);
  border-radius: 10px;
  background: rgba(179, 125, 0, 0.08);
  color: var(--graphite) !important;
  font-weight: 700;
}

.application-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(5, 5, 5, 0.52);
  backdrop-filter: blur(14px);
}

.application-modal.is-open {
  display: grid;
}

.application-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(880px, calc(100vh - 44px));
  overflow: auto;
  padding: clamp(24px, 4vw, 40px);
  padding-right: max(clamp(24px, 4vw, 40px), 54px);
  scrollbar-width: none;
  --application-scroll-progress: 0;
}

.application-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.application-scroll-progress {
  position: sticky;
  top: 12px;
  float: right;
  width: 7px;
  height: calc(min(880px, 100vh - 44px) - 24px);
  max-height: calc(100vh - 68px);
  margin: -12px -34px 0 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  pointer-events: none;
}

.application-scroll-progress span {
  position: absolute;
  inset: 0 0 auto;
  height: calc(var(--application-scroll-progress) * 100%);
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(238, 239, 240, 0.94), rgba(139, 157, 170, 0.82) 42%, rgba(66, 97, 78, 0.9));
  opacity: 0;
  box-shadow:
    0 0 12px rgba(238, 239, 240, 0.5),
    0 0 24px rgba(66, 97, 78, 0.28);
  transform-origin: top;
  transition: height 120ms ease-out;
}

.application-panel.has-scroll-progress .application-scroll-progress span {
  opacity: 1;
}

.application-panel h2 {
  margin: 0 0 24px;
  font-family: var(--body);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.application-form,
.application-form label,
.application-form legend,
.application-form input,
.application-form textarea,
.application-form select,
.application-form button,
.application-form span,
.application-form p {
  font-family: var(--body) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.application-form label {
  gap: 8px;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 700;
}

.application-form input,
.application-form textarea,
.application-form select {
  font-size: 16px;
  line-height: 1.45;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--graphite);
  font-family: var(--bank);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.application-question-set {
  display: grid;
  gap: 18px;
}

.application-choice-group {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
}

.application-choice-group.is-invalid {
  border-color: rgba(128, 47, 47, 0.42);
  background: rgba(128, 47, 47, 0.06);
}

.choice-question {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--graphite);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.choice-option {
  min-height: 46px;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  padding: 11px 13px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
}

.choice-option input {
  flex: 0 0 auto;
  width: 16px !important;
  height: 16px;
  min-height: 0 !important;
  margin: 0;
  accent-color: var(--forest);
}

.choice-option span {
  color: var(--graphite);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.choice-option-other {
  flex-wrap: wrap;
}

.choice-other-input {
  flex: 1 1 220px;
  min-height: 40px !important;
  padding: 8px 10px !important;
  border: 1px solid rgba(45, 45, 45, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: var(--graphite);
  font-family: var(--body) !important;
  font-size: 14px !important;
}

.admin-shell {
  padding-bottom: 70px;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(250px, 292px) minmax(0, 1fr);
  background:
    radial-gradient(circle at 85% 8%, rgba(137, 157, 170, 0.26), transparent 34%),
    linear-gradient(135deg, #eef0f0 0%, #dfe3e5 52%, #eef0f0 100%);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background:
    linear-gradient(155deg, rgba(45, 45, 45, 0.98), rgba(54, 59, 60, 0.95)),
    var(--graphite);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 18px 0 48px rgba(45, 45, 45, 0.16);
}

.admin-sidebar .wordmark {
  color: #fff;
}

.admin-sidebar nav {
  display: grid;
  gap: 6px;
}

.admin-sidebar nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--bank);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, rgba(66, 97, 78, 0.62), rgba(96, 116, 130, 0.34));
  transform: translateX(2px);
}

.admin-sidebar-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.admin-sidebar-actions .button {
  width: 100%;
  justify-content: center;
}

.admin-main {
  min-width: 0;
  padding: clamp(24px, 2.4vw, 36px);
}

.admin-page-header {
  max-width: 920px;
  margin-bottom: 18px;
}

.admin-page-header h1 {
  margin: 0 0 12px;
  color: var(--graphite);
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.04;
}

.admin-page-header p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #4a4a4a;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.45;
}

.admin-quick-actions,
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-quick-actions .button {
  justify-content: center;
}

.admin-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 22px;
}

.job-question-editor {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(45, 45, 45, 0.12);
}

.job-question-list {
  display: grid;
  gap: 10px;
}

.job-question-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
}

.job-question-row span {
  color: var(--slate-deep);
  font-family: var(--bank);
  font-size: 11px;
  letter-spacing: 0.22em;
}

.job-question-row button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 10px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.job-question-fields {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.42fr);
  gap: 10px;
}

.job-question-fields label {
  margin: 0;
}

.job-question-fields .question-options-field {
  grid-column: 1 / -1;
}

.question-options-field textarea {
  min-height: 96px;
}

.question-options-field.is-hidden {
  display: none;
}

.admin-secure-shell,
.admin-login-screen {
  transition: opacity 180ms ease, visibility 180ms ease;
}

.is-admin-locked .admin-secure-shell {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.admin-login-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(720px 460px at 72% 18%, rgba(139, 157, 170, 0.28), transparent 72%),
    radial-gradient(520px 360px at 18% 76%, rgba(66, 97, 78, 0.18), transparent 74%),
    linear-gradient(135deg, #f7f8f7, var(--pearl));
}

.admin-page-body:not(.is-admin-locked) .admin-login-screen {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.admin-login-card {
  width: min(480px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 239, 240, 0.56)),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 30px 90px rgba(5, 5, 5, 0.14);
}

.admin-login-card h1 {
  margin: 0 0 14px;
  color: var(--graphite);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.03;
}

.admin-login-card > p:not(.eyebrow):not(.form-confirmation) {
  margin: 0 0 24px;
  color: #4a4a4a;
}

.admin-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: start;
}

.admin-dashboard {
  width: min(1280px, 100%);
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-metric {
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 14px;
  background:
    radial-gradient(420px 160px at 80% 0%, rgba(139, 157, 170, 0.18), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(238, 239, 240, 0.5));
  box-shadow: 0 20px 54px rgba(5, 5, 5, 0.07);
}

.admin-metric span {
  display: block;
  color: var(--slate-deep);
  font-family: var(--bank);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-metric strong {
  display: block;
  margin-top: 12px;
  color: var(--graphite);
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1;
}

.job-editor,
.admin-panel {
  min-height: auto;
  padding: clamp(22px, 3vw, 32px);
}

.job-editor textarea {
  min-height: 180px;
}

.rich-editor {
  display: grid;
  gap: 0;
  margin-top: -8px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
  background: rgba(238, 239, 240, 0.58);
}

.rich-toolbar button {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(96, 116, 130, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--graphite);
  font: 700 12px var(--body);
  cursor: pointer;
}

.rich-toolbar button:hover {
  border-color: rgba(66, 97, 78, 0.34);
  background: rgba(66, 97, 78, 0.1);
}

.rich-editor-surface {
  min-height: 340px;
  padding: 18px;
  color: var(--graphite);
  font: 16px/1.5 var(--body);
  outline: none;
}

.rich-editor-surface:focus {
  box-shadow: inset 0 0 0 2px rgba(96, 116, 130, 0.2);
}

.rich-editor-surface ul,
.rich-editor-surface ol {
  padding-left: 24px;
}

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

.span-wide {
  grid-column: 1 / -1;
}

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

.job-editor[hidden] {
  display: none;
}

.admin-panel-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-panel-head p {
  margin: 6px 0 0;
  color: #4a4a4a;
  font-size: 15px;
}

.admin-panel-head select {
  width: min(220px, 100%);
}

.admin-row,
.applicant-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.48);
}

.admin-row strong,
.applicant-row h3 {
  display: block;
  margin: 0 0 4px;
  color: var(--graphite);
  font-size: 18px;
}

.admin-row span,
.applicant-row p,
.applicant-row small,
.admin-empty {
  margin: 0;
  color: #4a4a4a;
}

.status-pill {
  display: inline-flex !important;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin-top: 10px !important;
  padding: 0 10px;
  border: 1px solid rgba(96, 116, 130, 0.2);
  border-radius: 999px;
  background: rgba(139, 157, 170, 0.12);
  color: var(--slate-deep) !important;
  font-family: var(--bank);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-open,
.status-approved {
  border-color: rgba(66, 97, 78, 0.24);
  background: rgba(66, 97, 78, 0.12);
  color: var(--forest) !important;
}

.status-draft,
.status-pending-review {
  border-color: rgba(179, 125, 0, 0.24);
  background: rgba(179, 125, 0, 0.12);
  color: #725000 !important;
}

.status-closed,
.status-archived,
.status-rejected {
  border-color: rgba(120, 48, 48, 0.2);
  background: rgba(120, 48, 48, 0.08);
  color: #783030 !important;
}

.status-short-listed {
  border-color: rgba(96, 116, 130, 0.26);
  background: rgba(96, 116, 130, 0.13);
  color: var(--slate-deep) !important;
}

.applicant-row {
  align-items: start;
}

.admin-applicant-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  align-items: center;
}

.admin-applicant-links span {
  color: var(--slate-deep);
  font-size: 13px;
  font-weight: 700;
}

.admin-applicant-links button,
.admin-applicant-links a,
.admin-inline-actions a {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(96, 116, 130, 0.18);
  border-radius: 999px;
  background: rgba(139, 157, 170, 0.1);
  color: var(--slate-deep);
  font: 700 12px var(--body);
  cursor: pointer;
}

.admin-applicant-group {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.4);
}

.admin-group-head {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.admin-group-head strong {
  display: block;
  color: var(--graphite);
  font-size: 19px;
}

.admin-group-head > span {
  color: var(--slate-deep);
  font-weight: 700;
  white-space: nowrap;
}

.admin-group-list {
  display: grid;
  gap: 10px;
}

.applicant-row p {
  margin-top: 8px;
}

.applicant-row a {
  color: var(--slate-deep);
  font-weight: 700;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-row-actions button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--graphite);
  font: 700 11px var(--body);
  cursor: pointer;
}

.admin-row-actions a {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--graphite);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 11px var(--body);
}

.applicant-detail-modal .application-panel {
  width: min(860px, 100%);
}

.applicant-detail-panel h2 {
  margin: 0 0 22px;
  color: var(--graphite);
  font-family: var(--body);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.applicant-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 16px;
  margin-bottom: 18px;
}

.applicant-detail-grid section,
.applicant-answer-block,
.applicant-status-editor {
  padding: 16px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.38);
}

.applicant-detail-grid .label,
.applicant-answer-block .label,
.applicant-status-editor label {
  font-family: var(--body) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.applicant-answer-block .label {
  color: var(--graphite);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.applicant-detail-grid p,
.applicant-answer-block p {
  margin: 10px 0 0;
  color: #404040;
  font-family: var(--body);
}

.admin-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.admin-muted {
  display: block;
  color: #6b6b6b;
  font-size: 14px;
}

.email-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.email-tag {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(96, 116, 130, 0.18);
  border-radius: 999px;
  font: 700 11px var(--body);
}

.email-tag-sent {
  color: var(--forest);
  background: rgba(66, 97, 78, 0.08);
}

.email-tag-failed {
  color: #7a3030;
  background: rgba(122, 48, 48, 0.08);
}

.email-tag-pending {
  color: #6b6b6b;
  background: rgba(107, 107, 107, 0.08);
}

.email-error-detail {
  max-width: 720px;
  margin-top: 8px !important;
  color: #7a3030 !important;
  font-size: 13px;
  line-height: 1.45;
}

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

.email-template-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
}

.email-template-card p {
  margin: 6px 0 0;
  color: #4a4a4a;
}

.email-template-card textarea {
  min-height: 190px;
}

.email-template-form code {
  display: inline-flex;
  margin: 3px 4px 3px 0;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(96, 116, 130, 0.12);
  color: var(--slate-deep);
}

.applicant-answer-block {
  margin-top: 12px;
}

.applicant-status-editor {
  display: flex;
  gap: 12px;
  align-items: end;
  margin-top: 14px;
}

.applicant-status-editor label {
  flex: 1;
  margin: 0;
}

@media (max-width: 980px) {
  .careers-layout,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-dashboard,
  .applicant-detail-grid {
    grid-template-columns: 1fr;
  }

  .careers-sidebar {
    position: relative;
    top: auto;
  }

  .admin-row,
  .applicant-row {
    grid-template-columns: 1fr;
  }

  .admin-row-actions {
    justify-content: flex-start;
  }

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

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .admin-main {
    padding: 28px 18px;
  }

  .admin-form-grid,
  .admin-quick-actions {
    grid-template-columns: 1fr;
  }

  .job-question-row {
    grid-template-columns: 1fr;
  }

  .job-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .careers-hero {
    min-height: 92vh;
    padding: 118px 18px 72px;
  }

  .careers-shell {
    padding: 64px 18px;
  }

  .careers-hero h1,
  .job-detail-card h1 {
    font-size: 40px;
  }

  .job-card-meta {
    gap: 6px;
  }

  .application-modal {
    padding: 10px;
  }
}

/* About page content refresh */
.signal-page .name-copy h2 {
  white-space: nowrap;
}

/* Careers admin density override */
body.admin-page-body .admin-layout {
  align-items: start;
}

body.admin-page-body .admin-main {
  padding: 22px 34px 34px !important;
  display: grid;
  align-content: start;
  gap: 16px;
}

body.admin-page-body .admin-page-header {
  max-width: 840px;
  margin: 0 !important;
  padding: 0 !important;
}

body.admin-page-body .admin-page-header .eyebrow {
  margin-bottom: 8px;
}

body.admin-page-body .admin-page-header h1 {
  margin: 0 0 8px !important;
  font-size: clamp(30px, 2.8vw, 42px) !important;
  line-height: 1.05 !important;
}

body.admin-page-body .admin-page-header p:not(.eyebrow) {
  max-width: 680px;
  font-size: 16px !important;
  line-height: 1.4 !important;
}

body.admin-page-body .admin-dashboard {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  gap: 12px;
}

body.admin-page-body .admin-metric {
  min-height: 96px !important;
  padding: 16px !important;
}

body.admin-page-body .admin-metric strong {
  margin-top: 10px !important;
  font-size: clamp(30px, 3vw, 42px) !important;
}

body.admin-page-body .admin-panel,
body.admin-page-body .job-editor {
  margin: 0 !important;
  padding: 20px !important;
}

body.admin-page-body .admin-sidebar {
  padding-top: 22px !important;
}

.signal-page .team-network {
  width: min(1180px, 86vw);
  height: auto;
  min-height: 240px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
  align-items: start;
}

.signal-page .network-center,
.signal-page .team-network::before,
.signal-page .team-network::after {
  display: none !important;
}

.signal-page .team-node {
  position: relative;
  inset: auto;
  width: auto;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  justify-self: stretch;
}

.signal-page .team-node::before {
  display: none;
}

.signal-page .team-node img {
  width: 74px;
  height: 74px;
}

.signal-page .team-node h3 {
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.08;
}

.signal-page .team-node span {
  font-size: 13px;
  line-height: 1.25;
}

.signal-page .ordered-network {
  min-height: 150px;
}

.values-heading {
  position: absolute;
  left: 8%;
  top: 22px;
  margin: 0;
  color: rgba(238, 239, 240, 0.78);
  font-family: var(--bank);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-page .ordered-network::before {
  left: 8%;
  right: 8%;
}

.ordered-network span[data-value]:nth-of-type(1) { left: 8%; }
.ordered-network span[data-value]:nth-of-type(2) { left: 29%; }
.ordered-network span[data-value]:nth-of-type(3) { left: 50%; }
.ordered-network span[data-value]:nth-of-type(4) { left: 71%; }
.ordered-network span[data-value]:nth-of-type(5) { left: 92%; }

.signal-page .ordered-network span::after {
  content: attr(data-value);
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  color: rgba(238, 239, 240, 0.72);
  font-family: var(--bank);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .signal-page .name-copy h2 {
    white-space: normal;
  }

  .signal-page .team-network {
    width: min(640px, 100%);
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
  }

  .signal-page .team-node {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .signal-page .ordered-network {
    min-height: 260px;
  }

  .values-heading {
    left: 0;
    top: 0;
  }

  .signal-page .ordered-network::before {
    left: 50%;
    right: auto;
    top: 8%;
    bottom: 8%;
    width: 1px;
    height: auto;
  }

  .signal-page .ordered-network span {
    left: 50% !important;
  }

  .signal-page .ordered-network span[data-value]:nth-of-type(1) { top: 8%; }
  .signal-page .ordered-network span[data-value]:nth-of-type(2) { top: 29%; }
  .signal-page .ordered-network span[data-value]:nth-of-type(3) { top: 50%; }
  .signal-page .ordered-network span[data-value]:nth-of-type(4) { top: 71%; }
  .signal-page .ordered-network span[data-value]:nth-of-type(5) { top: 92%; }

  .signal-page .ordered-network span::after {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
}
