:root {
  color-scheme: light;
  --ink: #10233f;
  --muted: #607086;
  --line: #d5e1ee;
  --page: #f4f8fc;
  --panel: #ffffff;
  --navy: #0c294d;
  --blue: #1769d2;
  --blue-dark: #0b4a9d;
  --cyan: #21b6ce;
  --green: #167a5a;
  --yellow: #f0bd4f;
  --shadow: 0 24px 70px rgba(19, 62, 111, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.landing-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(213, 225, 238, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  text-decoration: none;
}

.landing-brand > span:last-child {
  display: grid;
}

.landing-brand strong {
  font-size: 16px;
}

.landing-brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.landing-prism {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #eaf4ff;
  overflow: hidden;
}

.landing-prism i {
  position: absolute;
  inset: 7px;
  clip-path: polygon(50% 0, 100% 86%, 0 86%);
}

.landing-prism i:nth-child(1) {
  background: var(--blue);
  transform: translateX(-6px) rotate(-8deg);
}

.landing-prism i:nth-child(2) {
  background: var(--cyan);
  transform: translateX(6px) rotate(8deg);
  mix-blend-mode: multiply;
}

.landing-prism i:nth-child(3) {
  inset: 14px 15px 12px;
  background: #ffffff;
  opacity: 0.85;
}

.landing-nav,
.landing-actions,
.hero-actions,
.trust-line,
.landing-footer > div:last-child {
  display: flex;
  align-items: center;
}

.landing-nav {
  gap: 28px;
}

.landing-nav a,
.text-action,
.landing-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.landing-nav a:hover,
.text-action:hover,
.landing-footer a:hover {
  color: var(--blue);
}

.landing-actions {
  justify-content: flex-end;
  gap: 18px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.primary-action {
  border-color: var(--blue);
  color: #ffffff;
  background: var(--blue);
}

.primary-action:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.secondary-action {
  color: var(--ink);
  background: #ffffff;
}

.large {
  min-height: 50px;
  padding: 0 22px;
}

.hero {
  position: relative;
  min-height: 700px;
  padding: clamp(72px, 9vw, 126px) clamp(20px, 7vw, 104px) 96px;
  color: #ffffff;
  background: var(--navy);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero::after {
  position: absolute;
  right: 5%;
  bottom: 9%;
  width: 420px;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--yellow));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #72dceb;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #d7e7f7;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  gap: 12px;
  margin-top: 32px;
}

.hero .secondary-action {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.trust-line {
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 26px;
  color: #b9cde1;
  font-size: 13px;
  font-weight: 700;
}

.trust-line span::before {
  margin-right: 8px;
  color: #62d2b0;
  content: "✓";
}

.product-scene {
  position: absolute;
  z-index: 1;
  right: -120px;
  bottom: 70px;
  display: grid;
  grid-template-columns: 74px 1fr;
  width: min(760px, 58vw);
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: #eef6ff;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.scene-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 22px;
  padding: 18px 10px;
  background: #0a2342;
}

.scene-sidebar i {
  width: 32px;
  height: 6px;
  border-radius: 6px;
  background: #3d5877;
}

.scene-sidebar i.active {
  background: var(--cyan);
}

.scene-logo {
  width: 35px;
  height: 35px;
  margin-bottom: 14px;
  border: 9px solid #e8f6ff;
  border-top-color: var(--cyan);
  transform: rotate(45deg);
}

.scene-main {
  padding: 28px;
}

.scene-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.scene-heading div {
  display: grid;
  gap: 6px;
}

.scene-heading small,
.scene-transcript small,
.scene-questions small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.scene-heading strong {
  font-size: 23px;
}

.scene-heading > span {
  padding: 7px 10px;
  border-radius: 8px;
  color: #075b42;
  background: #d8f5e9;
  font-size: 11px;
  font-weight: 900;
}

.scene-columns {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 15px;
  margin-top: 24px;
}

.scene-transcript,
.scene-questions {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.scene-transcript p,
.scene-questions p {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.scene-transcript b {
  margin-right: 7px;
  color: var(--blue);
}

.scene-questions p {
  padding-left: 10px;
  border-left: 3px solid var(--cyan);
}

.scene-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.scene-status span {
  display: grid;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #ffffff;
  font-size: 11px;
}

.scene-status b {
  color: var(--ink);
  font-size: 20px;
}

.outcome-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.outcome-band div {
  display: grid;
  gap: 7px;
  padding: 30px clamp(20px, 4vw, 58px);
  background: #ffffff;
}

.outcome-band span,
.section-intro > p:last-child,
.capability-grid p,
.method-copy > p,
.workspace-copy > p,
.plan-strip span {
  color: var(--muted);
  line-height: 1.6;
}

.section-block {
  padding: 96px clamp(20px, 7vw, 104px);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-intro h2,
.method-copy h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
}

.section-intro > p:last-child {
  max-width: 650px;
  font-size: 18px;
}

.workspace-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(48px, 8vw, 118px);
  align-items: center;
  background: #ffffff;
}

.workspace-copy h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
}

.workspace-copy > p {
  font-size: 18px;
}

.privacy-commitment {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.privacy-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 900;
}

.privacy-mark::after {
  font-size: 9px;
  content: "JOURS";
}

.privacy-commitment div {
  display: grid;
  gap: 7px;
}

.privacy-commitment p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.workspace-flow {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1fr;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
  box-shadow: var(--shadow);
}

.flow-source,
.flow-output,
.flow-prism {
  display: grid;
  gap: 10px;
}

.flow-source,
.flow-output {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.flow-source small,
.flow-output small,
.flow-prism small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.flow-source span,
.flow-output span {
  font-size: 12px;
  font-weight: 800;
}

.flow-prism {
  position: relative;
  justify-items: center;
  padding: 18px 8px;
  text-align: center;
}

.flow-prism::before,
.flow-prism::after {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1px;
  content: "";
  background: var(--cyan);
}

.flow-prism::before {
  left: 0;
}

.flow-prism::after {
  right: 0;
}

.flow-prism .landing-prism {
  width: 54px;
  height: 54px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid article {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #ffffff;
}

.capability-grid article:last-child {
  border-right: 0;
}

.capability-grid h3 {
  margin: 40px 0 10px;
  font-size: 21px;
}

.step-number {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
  color: #ffffff;
  background: #112f52;
}

.method-copy .eyebrow {
  color: #72dceb;
}

.method-copy > p {
  color: #c7d9ea;
  font-size: 18px;
}

.method-copy .secondary-action {
  margin-top: 16px;
}

.evidence-board {
  border: 1px solid #45627e;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.evidence-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: start;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.evidence-row span {
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.evidence-row p {
  margin: 2px 0;
}

.confirmed span {
  color: #075b42;
  background: #d8f5e9;
}

.inferred span {
  color: #0b4a9d;
  background: #deecff;
}

.assumption span {
  color: #775000;
  background: #fff0c7;
}

.evidence-question {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: var(--ink);
  background: #eaf5ff;
}

.evidence-question small {
  color: var(--blue);
  font-weight: 900;
}

.integration-section {
  background: #ffffff;
}

.intelligence-section {
  background: #eaf2fa;
}

.intelligence-grid {
  display: grid;
  gap: 24px;
}

.intelligence-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  min-height: 470px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.prototype-preview {
  color: #ffffff;
  background: #102f53;
}

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

.feature-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 7px;
  color: var(--blue-dark);
  background: #deecff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.prototype-preview .feature-label {
  color: #064f5d;
  background: #bdeef3;
}

.feature-copy h3 {
  max-width: 720px;
  margin: 18px 0 14px;
  font-size: 38px;
  line-height: 1.12;
}

.feature-copy p,
.feature-copy li {
  color: var(--muted);
  line-height: 1.6;
}

.prototype-preview .feature-copy p,
.prototype-preview .feature-copy li {
  color: #c8d9ea;
}

.feature-copy ul {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding-left: 19px;
}

.feature-copy small {
  display: block;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
}

.prototype-preview .feature-copy small {
  border-color: #486581;
  color: #a9bfd3;
}

.radar-visual,
.prototype-visual {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
  box-shadow: 0 18px 46px rgba(19, 62, 111, 0.12);
}

.radar-visual > div {
  display: grid;
  grid-template-columns: 86px 1fr 34px;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
}

.radar-visual i {
  position: relative;
  height: 8px;
  border-radius: 8px;
  background: #dce6f0;
  overflow: hidden;
}

.radar-visual i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.radar-visual b {
  color: var(--blue-dark);
  text-align: right;
}

.radar-visual > p {
  margin: 8px 0 0;
  padding: 16px;
  border-left: 3px solid var(--yellow);
  color: var(--muted);
  background: #ffffff;
  font-size: 13px;
  line-height: 1.55;
}

.radar-visual > p strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.prototype-visual {
  color: var(--ink);
  background: #f7fbff;
}

.prototype-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: -8px -8px 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.prototype-toolbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b6c7d8;
}

.prototype-toolbar i:nth-child(1) {
  background: #ef7d6d;
}

.prototype-toolbar i:nth-child(2) {
  background: var(--yellow);
}

.prototype-toolbar i:nth-child(3) {
  background: #64c6a6;
}

.prototype-toolbar span {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.prompt-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.prompt-line b {
  color: var(--blue);
  font-size: 11px;
}

.prompt-line span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.prototype-visual > p {
  margin: 7px 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.export-chip {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-top: 24px;
  padding: 0 10px;
  border-radius: 7px;
  color: #075b42;
  background: #d8f5e9;
  font-size: 11px;
  font-weight: 900;
}

.integration-rows {
  border-top: 1px solid var(--line);
}

.integration-rows div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.integration-rows span {
  width: 170px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.integration-rows strong {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
  font-size: 14px;
}

.roadmap-section {
  color: #ffffff;
  background: #102f53;
}

.roadmap-section .eyebrow {
  color: #72dceb;
}

.roadmap-section .section-intro > p:last-child {
  color: #c7d9ea;
}

.roadmap-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #486581;
  border-bottom: 1px solid #486581;
}

.roadmap-track article {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid #486581;
}

.roadmap-track article:last-child {
  border-right: 0;
}

.roadmap-track article span {
  color: #8fa9c1;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap-track .roadmap-now span {
  color: #72dceb;
}

.roadmap-track h3 {
  margin: 46px 0 14px;
  font-size: 21px;
}

.roadmap-track p,
.roadmap-disclaimer {
  color: #b9ccde;
  line-height: 1.6;
}

.roadmap-disclaimer {
  max-width: 850px;
  margin: 24px 0 0;
  font-size: 12px;
}

.plans-section {
  text-align: center;
}

.plans-section .section-intro {
  margin-right: auto;
  margin-left: auto;
}

.plan-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  text-align: left;
}

.plan-strip article {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.plan-strip article:last-child {
  border-right: 0;
}

.plan-strip .recommended {
  background: #eaf5ff;
}

.plan-strip small {
  color: var(--green);
  font-weight: 900;
}

.plan-strip h3 {
  margin: 16px 0 20px;
}

.plan-strip p {
  margin: 0 0 18px;
}

.plan-strip p strong {
  font-size: 26px;
}

.landing-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: #d4e2ef;
  background: #081e38;
}

.landing-footer p {
  color: #9fb4c9;
  font-size: 13px;
  text-align: center;
}

.landing-footer > div:last-child {
  justify-content: flex-end;
  gap: 18px;
}

.landing-footer a {
  color: #d4e2ef;
}

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

  .landing-nav {
    display: none;
  }

  .product-scene {
    right: -280px;
    opacity: 0.6;
  }

  .hero h1 {
    font-size: 60px;
  }

  .section-intro h2,
  .method-copy h2 {
    font-size: 44px;
  }

  .capability-grid,
  .plan-strip,
  .roadmap-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .intelligence-panel,
  .workspace-section {
    grid-template-columns: 1fr;
  }

  .capability-grid article:nth-child(2),
  .plan-strip article:nth-child(2) {
    border-right: 0;
  }

  .capability-grid article:nth-child(-n+2),
  .plan-strip article:nth-child(-n+2),
  .roadmap-track article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .roadmap-track article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .landing-header {
    min-height: 66px;
  }

  .landing-brand small,
  .text-action {
    display: none;
  }

  .landing-actions {
    gap: 8px;
  }

  .landing-actions .primary-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section-intro h2,
  .method-copy h2,
  .feature-copy h3 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-scene {
    position: relative;
    right: auto;
    bottom: auto;
    width: 520px;
    min-height: 250px;
    margin-top: 38px;
    opacity: 0.78;
    transform: translateX(12px) rotate(-1deg);
  }

  .scene-main {
    padding: 18px;
  }

  .scene-heading strong {
    font-size: 18px;
  }

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

  .scene-questions,
  .scene-status {
    display: none;
  }

  .outcome-band,
  .capability-grid,
  .method-section,
  .intelligence-panel,
  .workspace-section,
  .roadmap-track,
  .plan-strip,
  .landing-footer {
    grid-template-columns: 1fr;
  }

  .outcome-band div {
    min-height: 130px;
  }

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

  .capability-grid article,
  .plan-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-grid article:last-child,
  .plan-strip article:last-child {
    border-bottom: 0;
  }

  .method-section {
    gap: 46px;
  }

  .workspace-copy h2 {
    font-size: 38px;
  }

  .workspace-flow {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

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

  .roadmap-track article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #486581;
  }

  .roadmap-track article:nth-child(-n+2) {
    border-bottom-color: #486581;
  }

  .roadmap-track article:last-child {
    border-bottom: 0;
  }

  .intelligence-panel {
    min-height: auto;
    padding: 28px 20px;
  }

  .radar-visual,
  .prototype-visual {
    padding: 20px;
  }

  .radar-visual > div {
    grid-template-columns: 76px 1fr 28px;
    gap: 8px;
  }

  .integration-rows span {
    width: 100%;
  }

  .landing-footer {
    text-align: left;
  }

  .landing-footer p {
    text-align: left;
  }

  .landing-footer > div:last-child {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
