:root {
  --ink: #071522;
  --navy: #081827;
  --navy-2: #0d2536;
  --navy-3: #113246;
  --paper: #f5f7f4;
  --white: #ffffff;
  --muted: #5f7180;
  --soft: #dfe7e8;
  --line: rgba(10, 31, 45, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --signal: #28c9bd;
  --amber: #ff7a1a;
  --green: #77d8a4;
  --blue: #7bbcff;
  --shadow: 0 24px 70px rgba(4, 16, 24, 0.18);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(245, 247, 244, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  animation: header-in 560ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: 205px;
  max-width: 42vw;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(7, 21, 34, 0.06));
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.nav-button,
.button {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-button:hover {
  transform: translateY(-1px);
  background: var(--navy-3);
  box-shadow: 0 12px 28px rgba(8, 24, 39, 0.14);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  min-height: min(880px, calc(100vh - 78px));
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 24, 39, 0.04), rgba(40, 201, 189, 0.05)),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 84px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(245, 247, 244, 0), var(--paper));
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(24px, 7vw, 84px);
}

.status,
.eyeline {
  margin: 0 0 18px;
  color: #0f8f86;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  color: #105e58;
  background: rgba(40, 201, 189, 0.12);
  border: 1px solid rgba(40, 201, 189, 0.22);
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--signal);
}

.status-text {
  min-width: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: clamp(48px, 7.1vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.052em;
  font-weight: 850;
}

.hero-subtitle {
  max-width: 650px;
  margin: 0;
  color: #334958;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(8, 24, 39, 0.16);
}

.button.primary:hover {
  background: var(--navy-3);
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 650;
  white-space: normal;
}

.hero-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px clamp(24px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(40, 201, 189, 0.24), transparent 34%),
    linear-gradient(145deg, #071522, #113246 72%);
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 52%, black 0%, transparent 72%);
}

.signal-orbit {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
  animation: drift 8s ease-in-out infinite;
}

.orbit-one {
  top: 12%;
  right: 14%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(40, 201, 189, 0.28);
  box-shadow: 0 0 52px rgba(40, 201, 189, 0.16);
}

.orbit-two {
  bottom: 14%;
  left: 12%;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(123, 188, 255, 0.2);
  box-shadow: 0 0 42px rgba(123, 188, 255, 0.14);
  animation-delay: -3.5s;
}

.brief-shell {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  overflow: hidden;
  animation: float-brief 7s 1.3s ease-in-out infinite;
}

.brief-shell::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -24%;
  width: 18%;
  height: 160%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );
  transform: translateX(0) rotate(12deg);
  animation: scan-sheen 6.8s 1.4s ease-in-out infinite;
}

.brief-top,
.brief-main,
.signal-list article {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.07);
}

.brief-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.brief-top strong {
  color: var(--white);
}

.brief-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 14px 0;
  border-radius: 18px;
}

.brief-main div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.brief-label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 760;
}

.brief-main h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.05em;
}

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

.signal-list article {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 15px;
  border-radius: 16px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.signal-list article:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.105);
  border-color: rgba(255, 255, 255, 0.26);
}

.signal-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
}

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

.signal-dot.blue {
  background: var(--blue);
}

.signal-dot.green {
  background: var(--green);
}

.signal-list strong {
  display: block;
  font-size: 14px;
}

.signal-list p,
.signal-list small {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.signal-list small {
  white-space: nowrap;
}

.brief-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 98px clamp(20px, 4vw, 40px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.proof-panel h2,
.pilot h2,
.founder blockquote,
.final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.section-heading p:not(.eyeline),
.proof-panel p,
.pilot-copy p,
.final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.problem-grid,
.use-case-grid,
.faq-grid,
.method-grid {
  display: grid;
  gap: 16px;
}

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

.problem-grid article,
.use-case-grid article,
.faq-grid article,
.method-grid article,
.step-card,
.pilot-form {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.problem-grid article,
.use-case-grid article,
.faq-grid article,
.method-grid article {
  padding: 26px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.problem-grid article:hover,
.use-case-grid article:hover,
.faq-grid article:hover,
.method-grid article:hover,
.step-card:hover,
.pilot-form:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 201, 189, 0.26);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(7, 21, 34, 0.08);
}

.problem-grid strong,
.use-case-grid h3,
.faq-grid h3,
.method-grid h3,
.step-card h3 {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.problem-grid p,
.use-case-grid p,
.faq-grid p,
.method-grid p,
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.examples {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.2)),
    #edf4f3;
}

.examples > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.signal-example-board article {
  position: relative;
  min-height: 220px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    var(--white);
  border: 1px solid rgba(17, 50, 70, 0.13);
  border-radius: 22px;
  box-shadow: 0 14px 44px rgba(7, 21, 34, 0.07);
  overflow: hidden;
}

.signal-example-board article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 124px;
  height: 124px;
  border-radius: 999px;
  background: rgba(40, 201, 189, 0.12);
}

.signal-example-board span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #0c766f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-example-board h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.signal-example-board p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.signal-example-board strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 22px;
  color: var(--navy);
  font-size: 15px;
}

.how {
  max-width: none;
  background: var(--white);
}

.how > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.step-card {
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.step-card span {
  display: block;
  margin-bottom: 48px;
  color: var(--signal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.stack {
  max-width: none;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 12%, rgba(40, 201, 189, 0.18), transparent 28%),
    linear-gradient(135deg, #071522, #0d2536 72%);
}

.stack > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.stack .eyeline {
  color: var(--signal);
}

.stack .section-heading p:not(.eyeline) {
  color: rgba(255, 255, 255, 0.7);
}

.stack-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 22px;
  align-items: stretch;
}

.stack-map,
.stack-copy {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.stack-map {
  position: relative;
  display: grid;
  gap: 34px;
  padding: clamp(22px, 4vw, 36px);
  overflow: hidden;
}

.stack-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.stack-layer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
}

.stack-layer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stack-layer strong {
  font-size: 15px;
  line-height: 1.25;
}

.signal-layer {
  width: min(520px, 100%);
  margin: 0 auto;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(40, 201, 189, 0.26), rgba(123, 188, 255, 0.12)),
    rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(40, 201, 189, 0.38);
  box-shadow: 0 18px 58px rgba(40, 201, 189, 0.12);
}

.signal-layer strong {
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: -0.045em;
}

.connector-lines {
  position: relative;
  z-index: 1;
  width: min(580px, 78%);
  height: 44px;
  margin: -10px auto -12px;
  border-right: 1px solid rgba(40, 201, 189, 0.35);
  border-left: 1px solid rgba(40, 201, 189, 0.35);
}

.connector-lines::before,
.connector-lines::after {
  content: "";
  position: absolute;
  background: rgba(40, 201, 189, 0.35);
}

.connector-lines::before {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.connector-lines::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
}

.source-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.source-layer {
  min-height: 130px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.stack-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 38px);
}

.stack-copy h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.stack-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

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

.stack-copy li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.stack-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--signal);
}

.discipline {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(8, 24, 39, 0.04), rgba(40, 201, 189, 0.08)),
    #edf4f3;
}

.discipline > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.discipline-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(17, 50, 70, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 46px rgba(7, 21, 34, 0.07);
}

.discipline-grid span {
  display: block;
  margin-bottom: 42px;
  color: #0c766f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discipline-grid p {
  margin: 0;
  color: #2d4656;
  font-size: 18px;
  line-height: 1.46;
  font-weight: 650;
}

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

.proof {
  max-width: none;
  padding-top: 34px;
}

.proof-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 50px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(40, 201, 189, 0.12), transparent 52%),
    var(--navy);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-panel::before {
  content: "";
  position: absolute;
  inset: auto -12% -42% auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(40, 201, 189, 0.16);
  filter: blur(8px);
  pointer-events: none;
}

.proof-panel > * {
  position: relative;
  z-index: 1;
}

.proof-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.pilot {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.pilot-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pilot-list li {
  position: relative;
  padding-left: 28px;
  color: #2d4656;
  font-weight: 650;
}

.pilot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--signal);
}

.pilot-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.pilot-form h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.pilot-form > p {
  margin: -6px 0 4px;
  color: var(--muted);
}

.pilot-form label {
  display: grid;
  gap: 7px;
  color: #314a5b;
  font-size: 13px;
  font-weight: 750;
}

.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
}

.pilot-form textarea {
  resize: vertical;
}

.pilot-form input:focus,
.pilot-form select:focus,
.pilot-form textarea:focus {
  outline: 3px solid rgba(40, 201, 189, 0.18);
  border-color: rgba(40, 201, 189, 0.75);
}

.form-button {
  width: 100%;
  margin-top: 6px;
}

.pilot-form .form-fallback {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.pilot-form .form-fallback a {
  color: inherit;
  font-weight: 800;
  text-decoration-color: rgba(40, 201, 189, 0.55);
  text-underline-offset: 3px;
}

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

.founder {
  max-width: 900px;
  text-align: center;
}

.founder blockquote {
  margin: 0;
}

.founder p {
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.faq {
  padding-top: 60px;
}

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

.final-cta {
  padding: 90px 20px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 20%, rgba(40, 201, 189, 0.22), transparent 28%),
    var(--navy);
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 30px;
}

.final-cta .button.primary {
  background: var(--signal);
  color: var(--navy);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 4vw, 56px);
  color: var(--muted);
  background: #e9eeee;
}

.site-footer img {
  width: 164px;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-main {
  max-width: 880px;
  margin: 0 auto;
  padding: 70px 20px 96px;
}

.blog-main {
  max-width: 1080px;
}

.legal-card.blog-intro {
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 78% 18%, rgba(40, 201, 189, 0.16), transparent 30rem),
    linear-gradient(135deg, #07100d, #101714 58%, #17221d);
  border-color: rgba(255, 255, 255, 0.12);
}

.blog-widget {
  padding: 0;
  background: transparent;
}

.legal-card.blog-intro h1 {
  color: #f7fbf8;
}

.legal-card.blog-intro p:not(.eyeline) {
  color: rgba(245, 247, 244, 0.72);
}

.featured-article {
  padding: clamp(22px, 4vw, 34px);
  margin-bottom: 22px;
  border: 1px solid rgba(10, 31, 45, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(4, 16, 24, 0.08);
}

.articles-list {
  display: grid;
  gap: 18px;
}

.featured-article.latest {
  background:
    linear-gradient(135deg, rgba(40, 201, 189, 0.065), transparent 52%),
    #ffffff;
}

.featured-article h2 {
  max-width: 720px;
  margin: 0;
  color: #071522;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.featured-article p:not(.eyeline) {
  max-width: 760px;
  color: #425666;
  font-size: 17px;
  line-height: 1.6;
}

.featured-article a {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--signal);
  font-weight: 850;
  text-decoration: none;
}

.article-main {
  max-width: 920px;
}

.article-card {
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-card.article-card h1 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.article-card .article-dek {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.35;
}

.article-card.article-card h2 {
  margin: 46px 0 14px;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.article-card.article-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.legal-card {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
}

.legal-card h2 {
  margin: 34px 0 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
}

.legal-card ul {
  padding-left: 22px;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 72% 14%, rgba(40, 201, 189, 0.14), transparent 30rem),
    linear-gradient(135deg, #071522, #081827 52%, #0d2536);
}

.success-card {
  width: min(560px, 100%);
  padding: clamp(30px, 5vw, 48px);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(5, 13, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.success-card img {
  width: 210px;
  max-width: 78%;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.2));
}

.success-eyeline {
  margin: 34px 0 14px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.success-card h1 {
  max-width: 500px;
  margin: 0 auto;
  color: #f7fbf8;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.success-card p {
  max-width: 460px;
  margin: 20px auto 0;
  color: rgba(245, 247, 244, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

.success-card .button {
  margin-top: 28px;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-scale {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float-brief {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(12px, -16px, 0) scale(1.04);
  }
}

@keyframes scan-sheen {
  0%,
  42% {
    opacity: 0;
    transform: translateX(0) rotate(12deg);
  }

  52% {
    opacity: 1;
  }

  68%,
  100% {
    opacity: 0;
    transform: translateX(520%) rotate(12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .brief-shell,
  .signal-orbit,
  .brief-shell::after {
    animation: none !important;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .pilot,
  .proof-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
  }

  .hero-copy {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .hero-product {
    padding-top: 28px;
  }

  .problem-grid,
  .steps,
  .use-case-grid,
  .faq-grid,
  .signal-example-board,
  .method-grid,
  .source-row,
  .discipline-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    overflow-x: clip;
  }

  .site-header {
    grid-template-columns: 1fr;
    padding: 14px 18px;
  }

  .brand img {
    width: 158px;
  }

  .nav-button {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(42px, 12vw, 54px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .status {
    width: 100%;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-align: center;
  }

  .status-text,
  .trust-strip span,
  .button {
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    max-width: 100vw;
  }

  .hero-copy,
  .hero-product {
    width: 100%;
    min-width: 0;
    padding-right: 20px;
    padding-left: 20px;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .trust-strip span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brief-shell {
    width: 100%;
    max-width: 100%;
    padding: 18px;
    border-radius: 22px;
  }

  .brief-top {
    flex-wrap: wrap;
    gap: 8px;
  }

  .brief-top,
  .brief-main,
  .signal-list article {
    min-width: 0;
  }

  .brief-main div {
    padding: 16px;
  }

  .brief-main h2 {
    font-size: 30px;
    letter-spacing: -0.035em;
  }

  .brief-main,
  .problem-grid,
  .steps,
  .use-case-grid,
  .faq-grid,
  .signal-example-board,
  .method-grid,
  .source-row,
  .discipline-grid {
    grid-template-columns: 1fr;
  }

  .connector-lines {
    width: 64%;
  }

  .signal-list article {
    grid-template-columns: 10px 1fr;
  }

  .signal-list small {
    grid-column: 2;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

/* Premium dark redesign layer */
:root {
  --ink: #eef5ef;
  --navy: #07100d;
  --navy-2: #101714;
  --navy-3: #17221d;
  --paper: #070908;
  --white: #f7fbf7;
  --muted: #9dad9f;
  --soft: #202a24;
  --line: rgba(216, 236, 222, 0.13);
  --line-dark: rgba(216, 236, 222, 0.16);
  --signal: #31d6c6;
  --amber: #ff9a3d;
  --green: #86e0ac;
  --blue: #8fd0ff;
  --surface: rgba(19, 26, 22, 0.78);
  --surface-strong: rgba(27, 37, 31, 0.9);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

html {
  background: #070908;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 4%, rgba(49, 214, 198, 0.12), transparent 28rem),
    radial-gradient(circle at 82% 20%, rgba(255, 154, 61, 0.09), transparent 26rem),
    linear-gradient(180deg, #070908 0%, #0d120f 42%, #070908 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.34), transparent);
}

.site-header {
  background: rgba(7, 9, 8, 0.82);
  border-bottom-color: rgba(216, 236, 222, 0.1);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.brand img {
  filter: brightness(0) invert(1) drop-shadow(0 10px 22px rgba(49, 214, 198, 0.08));
}

.nav-links {
  color: rgba(238, 245, 239, 0.66);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-button,
.button.primary {
  color: #06100d;
  background: linear-gradient(135deg, var(--signal), #a6f4cf);
  box-shadow: 0 18px 42px rgba(49, 214, 198, 0.22);
}

.nav-button:hover,
.button.primary:hover {
  color: #06100d;
  background: linear-gradient(135deg, #70eadf, #d7ffd8);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(216, 236, 222, 0.16);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.section-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.section-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--signal), var(--amber));
  box-shadow: 0 0 24px rgba(49, 214, 198, 0.55);
}

.hero {
  min-height: min(900px, calc(100vh - 78px));
  background:
    radial-gradient(circle at 19% 18%, rgba(49, 214, 198, 0.13), transparent 24rem),
    radial-gradient(circle at 74% 30%, rgba(255, 154, 61, 0.08), transparent 24rem),
    linear-gradient(135deg, #080b0a, #111812 70%);
}

.hero::after {
  background: linear-gradient(to bottom, rgba(7, 9, 8, 0), #070908);
}

.hero-copy {
  padding-top: clamp(56px, 8vw, 92px);
  padding-bottom: clamp(56px, 8vw, 92px);
}

h1 {
  max-width: 820px;
  color: #f8fff9;
  text-shadow: 0 24px 90px rgba(49, 214, 198, 0.1);
}

.hero-subtitle {
  color: #b7c7bb;
}

.status {
  color: #bafcf3;
  background: rgba(49, 214, 198, 0.11);
  border-color: rgba(49, 214, 198, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.status-dot {
  background: var(--signal);
  box-shadow: 0 0 18px rgba(49, 214, 198, 0.78);
}

.trust-strip span {
  color: #adc2b4;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(216, 236, 222, 0.13);
}

.hero-product {
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 18%, rgba(49, 214, 198, 0.23), transparent 18rem),
    radial-gradient(circle at 24% 78%, rgba(255, 154, 61, 0.16), transparent 18rem),
    linear-gradient(145deg, #0d120f, #18211c 76%);
}

.hero-product::before {
  opacity: 0.44;
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
}

.signal-field {
  position: absolute;
  inset: 8%;
  z-index: 0;
  pointer-events: none;
}

.field-node {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow:
    0 0 0 8px rgba(49, 214, 198, 0.08),
    0 0 34px rgba(49, 214, 198, 0.62);
}

.node-a {
  top: 16%;
  left: 16%;
}

.node-b {
  top: 24%;
  right: 18%;
  background: var(--amber);
  box-shadow:
    0 0 0 8px rgba(255, 154, 61, 0.08),
    0 0 34px rgba(255, 154, 61, 0.5);
}

.node-c {
  right: 30%;
  bottom: 18%;
}

.field-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 214, 198, 0.65), transparent);
  transform-origin: left center;
  opacity: 0.58;
  animation: signal-pulse 5.5s ease-in-out infinite;
}

.line-a {
  top: 18%;
  left: 18%;
  width: 58%;
  transform: rotate(11deg);
}

.line-b {
  top: 34%;
  left: 26%;
  width: 44%;
  transform: rotate(48deg);
  animation-delay: -2s;
}

.line-c {
  right: 22%;
  bottom: 24%;
  width: 46%;
  transform: rotate(-28deg);
  animation-delay: -3.4s;
}

.brief-shell {
  width: min(590px, 100%);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(9, 13, 11, 0.62);
  border-color: rgba(216, 236, 222, 0.2);
  box-shadow:
    0 32px 120px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.brief-top,
.brief-main,
.signal-list article {
  border-color: rgba(216, 236, 222, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.signal-list article:hover {
  background: rgba(255, 255, 255, 0.095);
}

.section {
  color: var(--ink);
}

.section-heading h2,
.proof-panel h2,
.pilot h2,
.founder blockquote,
.final-cta h2 {
  color: #f4fbf5;
}

.section-heading p:not(.eyeline),
.proof-panel p,
.pilot-copy p,
.final-cta p {
  color: #9dad9f;
}

.eyeline {
  color: var(--signal);
}

.problem,
.how,
.use-cases,
.faq,
.founder {
  position: relative;
  max-width: var(--max);
}

.examples,
.how,
.discipline {
  background: transparent;
}

.problem-grid article,
.use-case-grid article,
.faq-grid article,
.method-grid article,
.step-card,
.pilot-form,
.signal-example-board article,
.discipline-grid article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    var(--surface);
  border-color: rgba(216, 236, 222, 0.13);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.problem-grid article:hover,
.use-case-grid article:hover,
.faq-grid article:hover,
.method-grid article:hover,
.step-card:hover,
.pilot-form:hover,
.signal-example-board article:hover,
.discipline-grid article:hover {
  border-color: rgba(49, 214, 198, 0.34);
  background:
    linear-gradient(145deg, rgba(49, 214, 198, 0.09), rgba(255, 255, 255, 0.045)),
    var(--surface-strong);
  box-shadow:
    0 24px 84px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(49, 214, 198, 0.04) inset;
}

.problem-grid strong,
.use-case-grid h3,
.faq-grid h3,
.method-grid h3,
.step-card h3,
.signal-example-board h3 {
  color: #f4fbf5;
}

.problem-grid p,
.use-case-grid p,
.faq-grid p,
.method-grid p,
.step-card p,
.signal-example-board p {
  color: #9dad9f;
}

.signal-example-board article::after {
  background: radial-gradient(circle, rgba(49, 214, 198, 0.2), transparent 68%);
}

.signal-example-board span,
.discipline-grid span,
.step-card span {
  color: #77efe4;
}

.signal-example-board strong {
  color: #d8ffe9;
}

.stack {
  background:
    radial-gradient(circle at 15% 12%, rgba(49, 214, 198, 0.17), transparent 28rem),
    radial-gradient(circle at 86% 80%, rgba(255, 154, 61, 0.12), transparent 24rem),
    linear-gradient(135deg, #080b0a, #121a16 72%);
}

.stack-map,
.stack-copy,
.proof-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(13, 18, 15, 0.82);
  border-color: rgba(216, 236, 222, 0.13);
}

.source-layer {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(216, 236, 222, 0.13);
}

.signal-layer {
  background:
    linear-gradient(135deg, rgba(49, 214, 198, 0.25), rgba(255, 154, 61, 0.08)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(49, 214, 198, 0.38);
}

.discipline {
  position: relative;
  overflow: hidden;
}

.discipline::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto 52%;
  height: 320px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 154, 61, 0.15), transparent 68%);
}

.discipline-grid p {
  color: #d6e5d9;
}

.proof-panel {
  color: var(--white);
}

.pilot {
  position: relative;
}

.pilot::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 20px;
  width: 42%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(49, 214, 198, 0.55), transparent);
}

.pilot-list li {
  color: #c8d8cc;
}

.pilot-form h3 {
  color: #f4fbf5;
}

.pilot-form > p,
.pilot-form label {
  color: #aebfb2;
}

.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  color: #f4fbf5;
  background: rgba(5, 8, 7, 0.74);
  border-color: rgba(216, 236, 222, 0.14);
}

.pilot-form input::placeholder,
.pilot-form textarea::placeholder {
  color: rgba(174, 191, 178, 0.7);
}

.founder {
  max-width: 980px;
}

.founder blockquote {
  color: #f4fbf5;
}

.founder p {
  color: #9dad9f;
}

.final-cta {
  background:
    radial-gradient(circle at 30% 20%, rgba(49, 214, 198, 0.24), transparent 24rem),
    radial-gradient(circle at 76% 76%, rgba(255, 154, 61, 0.14), transparent 22rem),
    #080b0a;
}

.site-footer {
  color: #9dad9f;
  background: #070908;
  border-top: 1px solid rgba(216, 236, 222, 0.11);
}

.site-footer a {
  color: #eef5ef;
}

.motion-ready .page-panel {
  opacity: 0.88;
  transform: translateY(16px) scale(0.995);
  filter: saturate(0.82);
  transition:
    opacity 780ms ease,
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 780ms ease;
}

.motion-ready .page-panel.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: saturate(1);
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.22;
    filter: blur(0);
  }

  48% {
    opacity: 0.84;
    filter: blur(0.4px);
  }
}

@media (min-width: 961px) {
  .page-panel {
    scroll-margin-top: 86px;
  }

  .section {
    padding-top: 118px;
    padding-bottom: 118px;
  }
}

@media (max-width: 960px) {
  .site-header {
    background: rgba(7, 9, 8, 0.92);
  }

  .hero-product {
    min-height: 560px;
  }

  .problem,
  .use-cases,
  .faq,
  .founder {
    max-width: var(--max);
  }
}

@media (max-width: 680px) {
  body {
    background:
      radial-gradient(circle at 20% 0%, rgba(49, 214, 198, 0.15), transparent 20rem),
      linear-gradient(180deg, #070908 0%, #0d120f 100%);
  }

  .brand img {
    width: 164px;
    max-width: 62vw;
  }

  .hero {
    min-height: unset;
  }

  h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .hero-product {
    min-height: 0;
    padding-top: 14px;
    padding-bottom: 34px;
  }

  .brief-shell {
    background: rgba(9, 13, 11, 0.72);
  }

  .field-line {
    opacity: 0.36;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .problem-grid article,
  .use-case-grid article,
  .faq-grid article,
  .method-grid article,
  .step-card,
  .pilot-form,
  .signal-example-board article,
  .discipline-grid article {
    border-radius: 18px;
  }
}

/* Product-led operating console redesign */
:root {
  --canvas: #050807;
  --canvas-2: #0a0f0d;
  --glass: rgba(12, 18, 16, 0.82);
  --glass-2: rgba(19, 30, 27, 0.74);
  --glass-3: rgba(31, 44, 39, 0.64);
  --hairline: rgba(213, 240, 225, 0.14);
  --hairline-strong: rgba(77, 234, 220, 0.34);
  --text-strong: #f4faf5;
  --text-soft: #b6c7bb;
  --text-dim: #718579;
  --danger: #ff5d4f;
  --warning: #ffc247;
  --teal: #35d8ca;
}

body {
  background:
    radial-gradient(circle at 7% 13%, rgba(53, 216, 202, 0.13), transparent 22rem),
    radial-gradient(circle at 72% 68%, rgba(255, 194, 71, 0.08), transparent 28rem),
    linear-gradient(180deg, #040706 0%, #08100d 46%, #050807 100%);
}

body::before {
  background-size: 64px 64px;
  opacity: 0.72;
}

.site-header {
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(5, 8, 7, 0.78);
  border-bottom-color: rgba(213, 240, 225, 0.09);
}

.nav-links {
  gap: clamp(16px, 2vw, 30px);
  font-size: 13px;
  font-weight: 650;
}

.nav-button {
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(53, 216, 202, 0.62);
  color: #9efff3;
  background: rgba(53, 216, 202, 0.08);
  box-shadow: 0 0 0 transparent;
}

.nav-button:hover {
  color: #04100e;
  background: #74f3e5;
  box-shadow: 0 16px 34px rgba(53, 216, 202, 0.2);
}

.brand img {
  width: 210px;
}

.hero {
  grid-template-columns: minmax(430px, 0.74fr) minmax(640px, 1.26fr);
  min-height: min(910px, calc(100vh - 67px));
  padding-left: clamp(24px, 4vw, 56px);
  background:
    radial-gradient(circle at 22% 24%, rgba(53, 216, 202, 0.15), transparent 22rem),
    linear-gradient(140deg, #040706 0%, #07100d 54%, #08120f 100%);
}

.hero-copy {
  max-width: 570px;
  padding: clamp(58px, 7vw, 94px) clamp(20px, 4vw, 52px) clamp(58px, 7vw, 94px) 0;
}

h1 {
  max-width: 540px;
  margin-bottom: 28px;
  font-size: clamp(56px, 5.9vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.047em;
}

.hero h1 {
  color: var(--text-strong);
}

.hero h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(110deg, #38d9ca 0%, #58dccf 38%, #ffc247 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  max-width: 520px;
  color: var(--text-soft);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
}

.hero-points {
  display: grid;
  gap: 18px;
  margin: 38px 0 32px;
}

.hero-points article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.hero-points strong {
  display: block;
  color: #89fff4;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.hero-points p {
  margin: 2px 0 0;
  color: var(--text-dim);
  font-size: 13px;
}

.point-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(53, 216, 202, 0.36);
  border-radius: 50%;
  background: rgba(53, 216, 202, 0.045);
}

.point-icon::before,
.point-icon::after {
  content: "";
  position: absolute;
}

.point-icon.pulse::before {
  width: 15px;
  height: 15px;
  border: 2px solid var(--teal);
  border-right-color: transparent;
  border-radius: 50%;
}

.point-icon.people::before,
.point-icon.people::after {
  width: 9px;
  height: 9px;
  border: 1.6px solid var(--teal);
  border-radius: 50%;
}

.point-icon.people::before {
  transform: translate(-5px, -4px);
}

.point-icon.people::after {
  transform: translate(6px, 4px);
}

.point-icon.bars::before {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(to top, var(--teal) 62%, transparent 62%) 0 100% / 4px 100% no-repeat,
    linear-gradient(to top, var(--teal) 82%, transparent 82%) 7px 100% / 4px 100% no-repeat,
    linear-gradient(to top, var(--teal) 46%, transparent 46%) 14px 100% / 4px 100% no-repeat;
}

.hero-actions {
  margin-top: 0;
}

.button {
  min-height: 48px;
  border-radius: 8px;
}

.button.primary {
  background: linear-gradient(135deg, #49ded4, #7ef2e4 55%, #c6ffd9);
}

.button.secondary {
  border-color: rgba(213, 240, 225, 0.18);
  background: rgba(213, 240, 225, 0.045);
}

.hero-lock {
  position: relative;
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 12px;
}

.hero-lock::before {
  content: "";
  position: absolute;
  top: 0.44em;
  left: 2px;
  width: 9px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.hero-lock::after {
  content: "";
  position: absolute;
  top: 0.12em;
  left: 4px;
  width: 5px;
  height: 6px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.hero-product {
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: clamp(34px, 4vw, 58px) clamp(22px, 4vw, 64px);
  background:
    radial-gradient(circle at 76% 18%, rgba(53, 216, 202, 0.16), transparent 21rem),
    radial-gradient(circle at 30% 84%, rgba(255, 194, 71, 0.13), transparent 20rem);
}

.hero-product::before {
  opacity: 0.34;
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, transparent, black 14%, black 84%, transparent);
}

.console-shell {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  padding: clamp(18px, 2vw, 26px);
  color: var(--text-strong);
  background:
    linear-gradient(145deg, rgba(213, 240, 225, 0.07), rgba(213, 240, 225, 0.025)),
    rgba(7, 13, 11, 0.84);
  border: 1px solid rgba(213, 240, 225, 0.17);
  border-radius: 14px;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.console-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: 0 0 80px rgba(53, 216, 202, 0.1);
}

.console-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 16px;
}

.console-topbar span {
  display: block;
  color: var(--text-strong);
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.console-topbar strong {
  display: inline-flex;
  margin-top: 2px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 720;
}

.console-topbar strong::before {
  content: "Demo · ";
  color: #70f5e9;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--text-soft);
  background: rgba(213, 240, 225, 0.045);
  border: 1px solid rgba(213, 240, 225, 0.14);
  border-radius: 6px;
  font: inherit;
  font-size: 12px;
  font-weight: 720;
}

.filter-button span {
  position: relative;
  width: 15px;
  height: 12px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.filter-button span::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  border-top: 1px solid currentColor;
}

.signal-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 13px;
}

.signal-metrics article {
  position: relative;
  min-height: 112px;
  padding: 16px 16px 14px;
  background:
    linear-gradient(150deg, rgba(213, 240, 225, 0.08), rgba(213, 240, 225, 0.025)),
    rgba(14, 22, 20, 0.84);
  border: 1px solid rgba(213, 240, 225, 0.13);
  border-radius: 7px;
  overflow: hidden;
}

.signal-metrics article::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -48%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(53, 216, 202, 0.12), transparent 70%);
}

.metric-status {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
}

.metric-status.late {
  background: var(--danger);
  box-shadow: 0 0 16px rgba(255, 93, 79, 0.55);
}

.metric-status.missing,
.metric-status.risk {
  background: var(--warning);
  box-shadow: 0 0 16px rgba(255, 194, 71, 0.48);
}

.metric-status.ready {
  background: var(--teal);
  box-shadow: 0 0 16px rgba(53, 216, 202, 0.5);
}

.signal-metrics small {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.signal-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--text-strong);
  font-size: clamp(32px, 3vw, 42px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.signal-metrics em {
  display: block;
  margin-top: 8px;
  color: #69f6e9;
  font-size: 12px;
  font-style: normal;
}

.workflow-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  margin-bottom: -1px;
}

.workflow-tabs button {
  min-height: 43px;
  color: var(--text-soft);
  background: rgba(213, 240, 225, 0.04);
  border: 1px solid rgba(213, 240, 225, 0.12);
  border-radius: 7px 7px 0 0;
  font: inherit;
  font-size: 12px;
  font-weight: 740;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.workflow-tabs button:hover,
.workflow-tabs button.is-active {
  color: #06100d;
  background: linear-gradient(135deg, #3ed8cf, #85f1e6);
  border-color: rgba(53, 216, 202, 0.7);
}

.signal-table {
  overflow: hidden;
  border: 1px solid rgba(213, 240, 225, 0.12);
  border-radius: 0 7px 7px 7px;
  background:
    linear-gradient(180deg, rgba(18, 30, 27, 0.96), rgba(8, 14, 12, 0.92)),
    rgba(5, 8, 7, 0.88);
}

.signal-table-head,
.signal-row {
  display: grid;
  grid-template-columns: 56px minmax(170px, 1.3fr) minmax(140px, 1fr) 86px 88px 76px;
  gap: 12px;
  align-items: center;
}

.signal-table-head {
  min-height: 32px;
  padding: 0 12px;
  color: var(--text-dim);
  background: rgba(213, 240, 225, 0.04);
  border-bottom: 1px solid rgba(213, 240, 225, 0.1);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-row {
  min-height: 58px;
  padding: 8px 12px;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(213, 240, 225, 0.08);
  font-size: 12px;
}

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

.signal-row:hover {
  background: rgba(53, 216, 202, 0.06);
}

.row-dot {
  width: 11px;
  height: 11px;
  margin-left: 14px;
  border-radius: 50%;
}

.signal-row.late .row-dot {
  background: var(--danger);
  box-shadow: 0 0 16px rgba(255, 93, 79, 0.55);
}

.signal-row.missing .row-dot {
  border: 2px solid var(--warning);
}

.signal-row.risk .row-dot {
  background: transparent;
  border: 2px solid var(--warning);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  border-radius: 0;
}

.signal-row.ready .row-dot {
  border: 2px solid var(--teal);
}

.signal-row strong {
  display: block;
  color: var(--text-strong);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
}

.signal-row small {
  display: block;
  margin-top: 2px;
  color: var(--text-dim);
  font-size: 11px;
}

.signal-row .urgency {
  color: var(--warning);
  font-weight: 760;
}

.signal-row.late .urgency {
  color: #ff756a;
}

.signal-row.ready .urgency {
  color: var(--teal);
}

.signal-row button {
  min-height: 30px;
  color: var(--text-strong);
  background: linear-gradient(180deg, rgba(213, 240, 225, 0.13), rgba(213, 240, 225, 0.06));
  border: 1px solid rgba(213, 240, 225, 0.15);
  border-radius: 5px;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
}

.console-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 12px;
}

.console-footer a {
  color: #7ff5e9;
  font-weight: 760;
  text-decoration: none;
}

.hero-source-strip {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: clamp(24px, 4vw, 52px);
  left: clamp(22px, 4vw, 64px);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(74px, 1fr)) minmax(120px, 0.82fr);
  gap: 8px;
  align-items: center;
  max-width: 940px;
  pointer-events: none;
}

.hero-source-strip span,
.hero-source-strip strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 10px;
  color: var(--text-soft);
  background: rgba(213, 240, 225, 0.05);
  border: 1px solid rgba(213, 240, 225, 0.12);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.hero-source-strip strong {
  color: #06100d;
  background: linear-gradient(135deg, #3ed8cf, #a5f5cc);
  border-color: rgba(53, 216, 202, 0.68);
  box-shadow: 0 0 34px rgba(53, 216, 202, 0.2);
}

.systems {
  max-width: none;
  padding-right: clamp(24px, 6vw, 96px);
  padding-left: clamp(24px, 6vw, 96px);
}

.systems > .section-heading {
  max-width: 820px;
}

.data-first-line {
  max-width: 720px;
  padding: 16px 18px;
  color: #dff4e6;
  background: rgba(53, 216, 202, 0.07);
  border: 1px solid rgba(53, 216, 202, 0.2);
  border-radius: 8px;
  font-weight: 720;
}

.system-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) 96px minmax(280px, 1fr) minmax(220px, 0.56fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(213, 240, 225, 0.035);
  border: 1px solid rgba(213, 240, 225, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.system-flow::before {
  content: "";
  position: absolute;
  inset: 12% 7%;
  background:
    linear-gradient(90deg, rgba(53, 216, 202, 0.52), transparent 52%),
    linear-gradient(90deg, transparent, rgba(255, 194, 71, 0.3));
  height: 1px;
  top: 50%;
  opacity: 0.54;
}

.source-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.source-stack article {
  min-height: 102px;
  padding: 16px;
  background: rgba(213, 240, 225, 0.055);
  border: 1px solid rgba(213, 240, 225, 0.12);
  border-radius: 8px;
}

.source-stack span,
.discipline-lane span {
  display: block;
  color: #89fff4;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-stack strong {
  display: block;
  margin-top: 18px;
  color: var(--text-strong);
  font-size: 14px;
  line-height: 1.3;
}

.rhino-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  background: radial-gradient(circle, rgba(53, 216, 202, 0.2), rgba(53, 216, 202, 0.055));
  border: 1px solid rgba(53, 216, 202, 0.54);
  border-radius: 50%;
  box-shadow: 0 0 52px rgba(53, 216, 202, 0.22);
}

.rhino-node img {
  width: 54px;
  filter: brightness(0) invert(1);
}

.signal-mesh {
  position: relative;
  z-index: 1;
  min-height: 170px;
  background:
    linear-gradient(rgba(53, 216, 202, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 216, 202, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: perspective(380px) rotateX(56deg);
  transform-origin: center;
  opacity: 0.78;
}

.signal-mesh span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(53, 216, 202, 0.72);
}

.signal-mesh span:nth-child(1) { top: 18%; left: 12%; }
.signal-mesh span:nth-child(2) { top: 34%; left: 42%; background: var(--warning); box-shadow: 0 0 18px rgba(255, 194, 71, 0.62); }
.signal-mesh span:nth-child(3) { top: 52%; left: 68%; }
.signal-mesh span:nth-child(4) { top: 72%; left: 24%; background: #ff756a; box-shadow: 0 0 18px rgba(255, 93, 79, 0.58); }
.signal-mesh span:nth-child(5) { top: 24%; right: 12%; background: var(--warning); box-shadow: 0 0 18px rgba(255, 194, 71, 0.62); }
.signal-mesh span:nth-child(6) { right: 26%; bottom: 8%; }

.system-copy {
  position: relative;
  z-index: 1;
}

.system-copy strong {
  display: block;
  color: var(--text-strong);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.system-copy p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 15px;
}

.discipline {
  padding-right: clamp(24px, 6vw, 96px);
  padding-left: clamp(24px, 6vw, 96px);
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 194, 71, 0.11), transparent 24rem),
    transparent;
}

.discipline-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid rgba(213, 240, 225, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(213, 240, 225, 0.035);
}

.discipline-lane {
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
  border-right: 1px solid rgba(213, 240, 225, 0.1);
  background:
    linear-gradient(180deg, rgba(213, 240, 225, 0.055), transparent),
    rgba(5, 8, 7, 0.36);
}

.discipline-lane:last-child {
  border-right: 0;
}

.discipline-lane strong {
  display: block;
  margin-top: 54px;
  color: #dff4e6;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.discipline-lane.attention {
  background:
    radial-gradient(circle at 70% 10%, rgba(53, 216, 202, 0.24), transparent 15rem),
    linear-gradient(150deg, rgba(53, 216, 202, 0.12), rgba(255, 194, 71, 0.055));
}

.proof {
  padding-top: 28px;
}

.proof-panel {
  max-width: 1120px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(53, 216, 202, 0.1), rgba(255, 194, 71, 0.045)),
    rgba(8, 14, 12, 0.84);
}

.pilot {
  max-width: 1200px;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.68fr);
  gap: clamp(30px, 6vw, 70px);
}

.pilot-form {
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(213, 240, 225, 0.08), rgba(213, 240, 225, 0.03)),
    rgba(8, 14, 12, 0.86);
}

.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  border-radius: 7px;
}

.faq {
  max-width: 1120px;
  padding-top: 42px;
}

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

.faq-grid article {
  border-radius: 12px;
  box-shadow: none;
}

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

@media (min-width: 1180px) {
  .console-shell {
    transform: translateX(-8px);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(370px, 0.86fr) minmax(560px, 1.14fr);
    padding-left: clamp(22px, 4vw, 64px);
  }

  .signal-table-head,
  .signal-row {
    grid-template-columns: 42px minmax(160px, 1.2fr) minmax(120px, 0.95fr) 74px 76px 68px;
    gap: 9px;
  }

  .system-flow {
    grid-template-columns: minmax(300px, 1fr) 86px minmax(220px, 0.8fr);
  }

  .system-copy {
    grid-column: 1 / -1;
  }
}

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

  .hero {
    grid-template-columns: 1fr;
    padding-left: clamp(20px, 5vw, 42px);
  }

  .hero-copy {
    max-width: 760px;
    padding-left: 0;
    padding-right: clamp(20px, 5vw, 42px);
  }

  .hero-product {
    justify-content: center;
    min-height: 0;
    padding: 0 clamp(20px, 5vw, 42px) 124px 0;
  }

  .hero-source-strip {
    right: clamp(20px, 5vw, 42px);
    bottom: 52px;
    left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .console-shell {
    width: 100%;
  }

  .system-flow,
  .discipline-board,
  .pilot,
  .proof-panel {
    grid-template-columns: 1fr;
  }

  .rhino-node {
    margin: 0 auto;
  }

  .system-flow::before {
    display: none;
  }

  .discipline-lane {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 240, 225, 0.1);
  }

  .discipline-lane:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 13px 18px;
  }

  .brand img {
    width: 176px;
  }

  .hero {
    padding-left: 20px;
  }

  .hero-copy {
    padding-right: 20px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero-points {
    gap: 15px;
  }

  .hero-points article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .point-icon {
    width: 36px;
    height: 36px;
  }

  .hero-product {
    padding-right: 20px;
    padding-bottom: 120px;
  }

  .console-shell {
    padding: 14px;
    border-radius: 11px;
  }

  .console-topbar {
    align-items: center;
  }

  .filter-button {
    width: 34px;
    justify-content: center;
    padding: 0;
    color: transparent;
  }

  .filter-button span {
    color: var(--text-soft);
  }

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

  .signal-metrics article {
    min-height: 104px;
    padding: 14px;
  }

  .workflow-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 10px;
  }

  .workflow-tabs button {
    border-radius: 7px;
  }

  .signal-table {
    border-radius: 7px;
  }

  .signal-table-head {
    display: none;
  }

  .signal-row {
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 0;
    padding: 13px 10px;
  }

  .signal-row > span:nth-of-type(2),
  .signal-row > span:nth-of-type(3) {
    display: none;
  }

  .signal-row .urgency {
    grid-column: 2;
    font-size: 11px;
  }

  .signal-row button {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    min-width: 62px;
  }

  .row-dot {
    margin-left: 4px;
  }

  .console-footer {
    flex-direction: column;
    gap: 6px;
  }

  .source-stack,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .signal-mesh {
    min-height: 130px;
  }

  .hero-source-strip {
    right: 20px;
    left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-source-strip strong {
    grid-column: 1 / -1;
  }

  .section-heading h2,
  .proof-panel h2,
  .pilot h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
}

/* Large advisory platform demo */
.demo-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(53, 216, 202, 0.12), transparent 24rem),
    radial-gradient(circle at 78% 22%, rgba(255, 194, 71, 0.08), transparent 26rem),
    #050807;
}

.demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.48fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 64px) clamp(50px, 7vw, 90px);
}

.demo-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #f4faf5;
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.demo-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.meeting-card,
.demo-panel,
.rollup-grid article,
.talk-track,
.report-panel,
.report-mix-grid article {
  background:
    linear-gradient(145deg, rgba(213, 240, 225, 0.085), rgba(213, 240, 225, 0.028)),
    rgba(9, 15, 13, 0.78);
  border: 1px solid rgba(213, 240, 225, 0.13);
  border-radius: 12px;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.meeting-card {
  padding: clamp(24px, 3vw, 32px);
}

.meeting-card span {
  display: block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meeting-card strong {
  display: block;
  margin-top: 18px;
  color: #f4faf5;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.meeting-card p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 15px;
}

.demo-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(620px, 1.65fr) minmax(240px, 0.58fr);
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) clamp(70px, 8vw, 110px);
}

.demo-panel {
  min-width: 0;
  padding: clamp(18px, 2vw, 26px);
}

.demo-panel h2,
.rollup-section h2,
.talk-track h2,
.reports-section h2 {
  margin: 0;
  color: #f4faf5;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.source-panel h2,
.action-panel h2 {
  font-size: clamp(24px, 2.8vw, 36px);
}

.source-pipeline {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.source-pipeline article {
  padding: 16px;
  background: rgba(213, 240, 225, 0.045);
  border: 1px solid rgba(213, 240, 225, 0.1);
  border-radius: 8px;
}

.source-pipeline span,
.rollup-grid span {
  display: block;
  color: #8efff5;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.source-pipeline strong {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.35;
}

.command-panel {
  border-color: rgba(53, 216, 202, 0.24);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.42),
    0 0 84px rgba(53, 216, 202, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.demo-toolbar > span {
  flex: 0 0 auto;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 780;
}

.demo-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.demo-kpis article {
  min-height: 104px;
  padding: 15px;
  background: rgba(213, 240, 225, 0.05);
  border: 1px solid rgba(213, 240, 225, 0.11);
  border-radius: 8px;
}

.demo-kpis span {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 780;
}

.demo-kpis strong {
  display: block;
  margin-top: 10px;
  color: #f4faf5;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.demo-kpis small {
  display: block;
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 11px;
}

.demo-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 10px;
}

.demo-tabs button {
  min-height: 42px;
  padding: 0 10px;
  color: var(--text-soft);
  background: rgba(213, 240, 225, 0.045);
  border: 1px solid rgba(213, 240, 225, 0.12);
  border-radius: 7px;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.demo-tabs button.is-active,
.demo-tabs button:hover {
  color: #06100d;
  background: linear-gradient(135deg, #3ed8cf, #9cf4d3);
  border-color: rgba(53, 216, 202, 0.72);
}

.demo-table {
  overflow: hidden;
  border: 1px solid rgba(213, 240, 225, 0.11);
  border-radius: 8px;
}

.demo-table-head,
.demo-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.12fr) minmax(118px, 0.8fr) minmax(86px, 0.58fr) 62px minmax(132px, 0.98fr);
  gap: 8px;
  align-items: center;
}

.demo-table-head {
  min-height: 34px;
  padding: 0 13px;
  color: var(--text-dim);
  background: rgba(213, 240, 225, 0.04);
  border-bottom: 1px solid rgba(213, 240, 225, 0.1);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.demo-row {
  min-height: 62px;
  padding: 9px 13px;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(213, 240, 225, 0.075);
  font-size: 11px;
}

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

.demo-row:hover {
  background: rgba(53, 216, 202, 0.055);
}

.demo-row strong {
  display: block;
  color: #f4faf5;
  font-size: 11.5px;
  line-height: 1.25;
}

.demo-row small {
  display: block;
  margin-top: 3px;
  color: var(--text-dim);
}

.priority-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.priority-list article {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  background: rgba(213, 240, 225, 0.045);
  border: 1px solid rgba(213, 240, 225, 0.1);
  border-radius: 8px;
}

.priority-list span {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(53, 216, 202, 0.48);
}

.priority-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.4;
}

.rollup-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 72px) clamp(20px, 4vw, 56px);
}

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

.rollup-grid article {
  min-height: 190px;
  padding: 24px;
}

.rollup-grid strong {
  display: block;
  margin-top: 36px;
  color: #f4faf5;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.rollup-grid p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.reports-section {
  max-width: 1280px;
  margin: 0 auto clamp(70px, 9vw, 120px);
  padding: clamp(32px, 5vw, 72px) clamp(20px, 4vw, 56px);
}

.reports-section .section-heading p {
  max-width: 820px;
}

.report-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 4px;
  margin-top: 34px;
  padding: 4px;
  background: rgba(213, 240, 225, 0.06);
  border: 1px solid rgba(213, 240, 225, 0.12);
  border-radius: 9px;
}

.report-tabs button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--text-soft);
  background: transparent;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  cursor: pointer;
}

.report-tabs button.is-active,
.report-tabs button:hover {
  color: #06100d;
  background: linear-gradient(135deg, #3ed8cf, #9cf4d3);
}

.report-board {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
  gap: 14px;
  margin-top: 16px;
}

.report-panel {
  min-width: 0;
  padding: clamp(20px, 2.5vw, 30px);
}

.report-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.report-toolbar span,
.report-pack > span,
.report-mix-grid span {
  display: block;
  color: #8efff5;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-toolbar h3,
.report-pack h3 {
  margin: 8px 0 0;
  color: #f4faf5;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.report-toolbar > strong {
  flex: 0 0 auto;
  color: #f4faf5;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.report-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.report-kpi-grid div {
  min-height: 92px;
  padding: 14px;
  background: rgba(213, 240, 225, 0.045);
  border: 1px solid rgba(213, 240, 225, 0.1);
  border-radius: 8px;
}

.report-kpi-grid span {
  display: block;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 780;
}

.report-kpi-grid strong {
  display: block;
  margin-top: 14px;
  color: #f4faf5;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.report-chart {
  display: grid;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(53, 216, 202, 0.055), rgba(213, 240, 225, 0.025)),
    rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(213, 240, 225, 0.1);
  border-radius: 9px;
}

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

.report-bar-row > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 760;
}

.report-bar-row strong {
  color: #f4faf5;
}

.report-bar-track {
  height: 12px;
  overflow: hidden;
  background: rgba(213, 240, 225, 0.07);
  border: 1px solid rgba(213, 240, 225, 0.09);
  border-radius: 999px;
}

.report-bar-track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #2bc7bf, #9cf4d3 62%, #ffc247);
  border-radius: inherit;
  box-shadow: 0 0 22px rgba(53, 216, 202, 0.26);
}

.report-output-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.report-output-list article {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  background: rgba(213, 240, 225, 0.045);
  border: 1px solid rgba(213, 240, 225, 0.1);
  border-radius: 8px;
}

.report-output-list span {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: #ffc247;
  box-shadow: 0 0 18px rgba(255, 194, 71, 0.32);
}

.report-output-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.42;
}

.report-mix-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.report-mix-grid article {
  min-height: 160px;
  padding: 22px;
}

.report-mix-grid strong {
  display: block;
  margin-top: 26px;
  color: #f4faf5;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.report-mix-grid p,
.report-disclaimer {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.report-mix-grid p {
  margin: 12px 0 0;
}

.report-disclaimer {
  max-width: 900px;
  margin: 20px 0 0;
  color: var(--text-dim);
}

.talk-track {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  max-width: 1120px;
  margin: clamp(30px, 6vw, 76px) auto clamp(70px, 9vw, 120px);
  padding: clamp(28px, 5vw, 48px);
}

.talk-track ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.talk-track li {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
}

.talk-track strong {
  color: #f4faf5;
}

@media (max-width: 1180px) {
  .demo-shell {
    grid-template-columns: 1fr;
  }

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

  .report-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .demo-hero,
  .talk-track {
    grid-template-columns: 1fr;
  }

  .demo-kpis,
  .rollup-grid,
  .report-kpi-grid,
  .report-mix-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .demo-table-head {
    display: none;
  }

  .demo-row {
    grid-template-columns: 1fr auto;
  }

  .demo-row span:nth-of-type(1),
  .demo-row span:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 560px) {
  .demo-hero {
    padding-top: 58px;
  }

  .demo-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .demo-kpis,
  .rollup-grid,
  .source-pipeline,
  .report-kpi-grid,
  .report-mix-grid {
    grid-template-columns: 1fr;
  }

  .demo-tabs {
    grid-template-columns: 1fr;
  }

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

  .demo-toolbar {
    display: grid;
  }

  .report-toolbar {
    display: grid;
  }

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

.article-page .article-card h1,
.article-page .article-card h2 {
  color: #07100d;
}

.article-page .article-card p,
.article-page .article-card .article-dek {
  color: #33463c;
}

body.legal-page {
  color: #071522;
  background: #f5f7f4;
}

body.legal-page::before {
  display: none;
}

body.legal-page .site-header {
  background: rgba(245, 247, 244, 0.92);
  border-bottom-color: rgba(10, 31, 45, 0.14);
}

body.legal-page .brand img,
body.legal-page .site-footer img {
  filter: drop-shadow(0 8px 18px rgba(7, 21, 34, 0.06));
}

body.legal-page .nav-links {
  color: #5f7180;
}

body.legal-page .nav-links a:hover {
  color: #071522;
}

body.legal-page .nav-button {
  color: #ffffff;
  background: #081827;
  border-color: #081827;
}

body.legal-page .nav-button:hover {
  color: #ffffff;
  background: #113246;
}

body.legal-page .legal-card {
  color: #071522;
  background: #ffffff;
  border-color: rgba(10, 31, 45, 0.14);
  box-shadow: 0 24px 70px rgba(4, 16, 24, 0.18);
}

body.legal-page .legal-card h1,
body.legal-page .legal-card h2 {
  color: #071522;
}

body.legal-page .legal-card p,
body.legal-page .legal-card li {
  color: #334958;
}

body.legal-page .legal-card .eyeline {
  color: #0f766e;
}

body.legal-page .legal-card a {
  color: #0b6f68;
  text-decoration-color: rgba(11, 111, 104, 0.45);
}

body.legal-page .legal-card.blog-intro {
  max-width: 980px;
  margin-bottom: 20px;
  padding: clamp(30px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.045), transparent 58%),
    #ffffff;
  border-color: rgba(10, 31, 45, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(4, 16, 24, 0.1);
}

body.legal-page .legal-card.blog-intro h1 {
  max-width: 860px;
  margin-bottom: 18px;
  color: #071522;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.048em;
}

body.legal-page .legal-card.blog-intro p:not(.eyeline) {
  max-width: 780px;
  color: #425666;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.48;
}

body.legal-page .site-footer {
  color: #5f7180;
  background: #e9eeee;
}

body.legal-page .site-footer a {
  color: #071522;
}

@media (max-width: 560px) {
  .article-card {
    padding: 34px 28px;
    border-radius: 24px;
  }

  .article-card.article-card h1 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .article-card .article-dek {
    font-size: 19px;
    line-height: 1.45;
  }

  .article-card.article-card p {
    font-size: 17px;
    line-height: 1.68;
  }
}
