/* KNWN website visual system — copy-deck release */
:root {
  --knwn-ink: #07111f;
  --knwn-ink-2: #101c2e;
  --knwn-paper: #fbfcff;
  --knwn-mist: #f1f5f9;
  --knwn-line: #dce3ee;
  --knwn-muted: #5d6878;
  --knwn-blue: #356df3;
  --knwn-blue-dark: #1e4fd0;
  --knwn-cyan: #55d9d0;
  --knwn-lilac: #a8a2ff;
  --knwn-mint: #a7f3d0;
  --knwn-accent: var(--knwn-blue);
  --knwn-accent-soft: #e9efff;
  --knwn-radius-sm: 14px;
  --knwn-radius: 22px;
  --knwn-radius-lg: 32px;
  color: var(--knwn-ink);
  background: var(--knwn-paper);
  font-synthesis: none;
}

html {
  scroll-behavior: smooth;
  background: var(--knwn-paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--knwn-ink);
  background: var(--knwn-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: #fff;
  background: var(--knwn-blue);
}

:focus-visible {
  outline: 3px solid var(--knwn-blue);
  outline-offset: 3px;
}

.route-shell {
  min-height: 100vh;
  overflow: clip;
  color: var(--knwn-ink);
  background: var(--knwn-paper);
}

.route-shell[data-product-line="knwn_visibility"] {
  --knwn-accent: #6657e8;
  --knwn-accent-soft: #efedff;
}

.route-shell[data-product-line="knwn_corporate"] {
  --knwn-accent: #0f766e;
  --knwn-accent-soft: #e4f7f4;
}

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

.route-shell a {
  color: inherit;
}

.route-skip {
  position: fixed;
  z-index: 200;
  top: -6rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  color: #fff !important;
  background: var(--knwn-ink);
  font-weight: 800;
  text-decoration: none;
  transition: top 160ms ease;
}

.route-skip:focus {
  top: 1rem;
}

.route-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgba(7, 17, 31, 0.1);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.route-header-row {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.route-logo {
  display: inline-flex;
  flex: 0 0 auto;
  margin-right: auto;
}

.route-logo img {
  width: 132px;
  height: auto;
}

.route-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.route-nav > a,
.route-nav summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  color: #344054;
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.route-nav > a:hover,
.route-nav summary:hover,
.route-nav details[open] summary {
  color: var(--knwn-ink);
  background: #f2f5fa;
}

.route-nav details {
  position: relative;
}

.route-nav summary {
  cursor: pointer;
  list-style: none;
}

.route-nav summary::-webkit-details-marker {
  display: none;
}

.route-nav summary::after {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.route-nav details[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.route-menu {
  position: absolute;
  z-index: 65;
  top: calc(100% + 10px);
  left: 0;
  min-width: 286px;
  padding: 0.55rem;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.16);
}

.route-menu::before {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
}

.route-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0.85rem;
  border-radius: 12px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.route-menu a::after {
  color: #9aa4b2;
  content: "↗";
}

.route-menu a:hover {
  color: var(--knwn-blue-dark);
  background: #eef3ff;
}

.route-button,
.route-button-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.2rem;
  border-radius: 14px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.route-button {
  border: 1px solid var(--knwn-ink);
  color: #fff !important;
  background: var(--knwn-ink);
  box-shadow: 0 10px 25px rgba(7, 17, 31, 0.13);
}

.route-button::after {
  content: "↗";
}

.route-button:hover {
  color: #fff !important;
  background: var(--knwn-blue-dark);
  box-shadow: 0 14px 30px rgba(30, 79, 208, 0.24);
  transform: translateY(-2px);
}

.route-button-secondary {
  border: 1px solid #aeb8c8;
  color: var(--knwn-ink);
  background: rgba(255, 255, 255, 0.7);
}

.route-button-secondary::after {
  content: "→";
}

.route-button-secondary:hover {
  border-color: var(--knwn-ink);
  background: #fff;
  transform: translateY(-2px);
}

.route-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.route-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.route-mobile-nav {
  display: none;
}

.route-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6.8rem 0 6.4rem;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(85, 217, 208, 0.18), transparent 27%),
    radial-gradient(circle at 26% 85%, rgba(53, 109, 243, 0.24), transparent 28%),
    linear-gradient(135deg, #07111f 0%, #0b2032 50%, #18234b 100%);
}

.route-shell[data-product-line="knwn_visibility"] .route-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(168, 162, 255, 0.23), transparent 27%),
    radial-gradient(circle at 20% 88%, rgba(85, 217, 208, 0.15), transparent 30%),
    linear-gradient(135deg, #090f22 0%, #17204a 52%, #2b2469 100%);
}

.route-shell[data-product-line="knwn_corporate"] .route-hero {
  background:
    radial-gradient(circle at 82% 15%, rgba(167, 243, 208, 0.19), transparent 29%),
    linear-gradient(135deg, #07111f 0%, #102334 58%, #123d3a 100%);
}

.route-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.23;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 68%);
  mask-image: linear-gradient(to right, #000, transparent 68%);
}

.route-hero::after {
  position: absolute;
  z-index: -1;
  right: -18%;
  bottom: -70%;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018);
  content: "";
}

.route-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(380px, 0.93fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6.5rem);
}

.route-hero-copy,
.route-hero-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.route-eyebrow,
.route-mini-label,
.route-section-number,
.route-card-kicker,
.route-ui-kicker,
.route-footer-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #dbe8ff;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.route-eyebrow::before {
  flex: 0 0 auto;
  margin-top: 0.42em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--knwn-cyan);
  box-shadow: 0 0 0 4px rgba(85, 217, 208, 0.12);
  content: "";
}

.route-hero h1 {
  max-width: 790px;
  margin: 1.3rem 0 1.4rem;
  font-size: clamp(2.7rem, 4.7vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.route-hero[data-page-kind="dynamic_editorial"] h1,
.route-hero[data-page-kind="legacy_rich"] h1,
.route-hero[data-page-kind="legal"] h1 {
  font-size: clamp(2.8rem, 5.2vw, 5rem);
}

.route-lede {
  max-width: 720px;
  margin: 0;
  color: #c3cedd;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.route-lede + .route-lede {
  margin-top: 0.8rem;
  font-size: 0.98rem;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.route-hero .route-button {
  border-color: #fff;
  color: var(--knwn-ink) !important;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.route-hero .route-button:hover {
  border-color: var(--knwn-cyan);
  color: var(--knwn-ink) !important;
  background: var(--knwn-cyan);
}

.route-hero .route-button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.route-hero .route-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.route-hero-stage {
  perspective: 1200px;
}

.route-hero-stage::before {
  position: absolute;
  inset: 12% -8% -12% 10%;
  border-radius: 50%;
  background: rgba(53, 109, 243, 0.25);
  filter: blur(70px);
  content: "";
}

.route-visual-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 26px;
  background: rgba(7, 17, 31, 0.8);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
  transform: rotateY(-4deg) rotateX(2deg);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.route-visual-bar {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #b9c5d5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-visual-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5d6b7e;
}

.route-visual-dot:nth-child(1) {
  background: #ff7b7b;
}

.route-visual-dot:nth-child(2) {
  background: #f8ce69;
}

.route-visual-dot:nth-child(3) {
  margin-right: 0.35rem;
  background: var(--knwn-cyan);
}

.route-visual-body {
  position: relative;
  padding: 1.25rem;
}

.route-ui-kicker {
  margin: 0 0 0.55rem;
  color: #91a1b7;
}

.route-ui-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: -0.03em;
}

.route-ui-caption {
  margin: 0.55rem 0 0;
  color: #9facbd;
  font-size: 0.85rem;
  line-height: 1.55;
}

.route-flow {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.route-flow-step {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #e6edf8;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 700;
}

.route-flow-step:nth-child(2),
.route-flow-step:nth-child(5) {
  margin-left: 1.25rem;
}

.route-flow-step strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-flow-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--knwn-ink);
  background: var(--knwn-cyan);
  font-size: 0.7rem;
}

.route-flow-state {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #a9b6c7;
  font-size: 0.68rem;
  font-weight: 650;
}

.route-flow-state::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--knwn-mint);
  content: "";
}

.route-platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.route-platform-pill {
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #dce5f2;
  background: rgba(255, 255, 255, 0.065);
  font-size: 0.7rem;
  font-weight: 750;
}

.route-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.route-signal-card {
  min-height: 108px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.route-signal-card:first-child {
  grid-row: span 2;
}

.route-signal-card span {
  color: #97a5b8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-signal-card strong {
  display: block;
  margin-top: 0.5rem;
  color: #fff;
  font-size: 1rem;
}

.route-signal-lines {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.route-signal-lines i {
  height: 7px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.route-signal-lines i::after {
  width: var(--signal-width, 70%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--knwn-lilac), var(--knwn-cyan));
  content: "";
}

.route-signal-lines i:nth-child(2)::after {
  --signal-width: 52%;
}

.route-signal-lines i:nth-child(3)::after {
  --signal-width: 82%;
}

.route-doc-stack {
  position: relative;
  min-height: 300px;
  margin-top: 1rem;
}

.route-doc-card {
  position: absolute;
  inset-inline: 0;
  min-height: 104px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: #111f32;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.route-doc-card:nth-child(1) {
  top: 0;
  transform: rotate(-2deg);
}

.route-doc-card:nth-child(2) {
  top: 78px;
  left: 5%;
  transform: rotate(1.5deg);
}

.route-doc-card:nth-child(3) {
  top: 156px;
  left: 1%;
  transform: rotate(-0.5deg);
}

.route-doc-card span,
.route-doc-card strong {
  display: block;
}

.route-doc-card span {
  color: #91a1b7;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-doc-card strong {
  margin-top: 0.55rem;
  color: #fff;
  font-size: 1rem;
}

.route-section {
  position: relative;
  padding: clamp(3.6rem, 5.6vw, 5.6rem) 0;
  border-top: 1px solid var(--knwn-line);
  background: #fff;
}

.route-section:nth-of-type(odd) {
  background:
    radial-gradient(circle at 5% 20%, rgba(53, 109, 243, 0.055), transparent 22%),
    var(--knwn-paper);
}

.route-section-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.route-section-intro {
  position: sticky;
  top: 120px;
  min-width: 0;
}

.route-section-number {
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid #cad3e1;
  border-radius: 999px;
  color: var(--knwn-accent);
  background: var(--knwn-accent-soft);
}

.route-section h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.85rem, 2.9vw, 2.9rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.route-section-intro > p:not(.route-section-number) {
  max-width: 620px;
  margin: 1.15rem 0 0;
  color: var(--knwn-muted);
  font-size: 1.06rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.route-section-content {
  min-width: 0;
}

.route-statement {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid #ccd6e4;
  border-radius: var(--knwn-radius-lg);
  color: #dce7f6;
  background:
    radial-gradient(circle at 80% 10%, rgba(85, 217, 208, 0.18), transparent 30%),
    linear-gradient(145deg, var(--knwn-ink), #142945);
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.15);
}

.route-statement::before {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 17px rgba(255, 255, 255, 0.035);
  content: "";
}

.route-statement strong {
  max-width: 510px;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

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

.route-grid[data-count="1"] {
  grid-template-columns: 1fr;
}

.route-grid[data-count="3"]:not(.route-deck-grid) .route-card:first-child {
  grid-column: 1 / -1;
  min-height: 250px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(85, 217, 208, 0.16), transparent 30%),
    var(--knwn-ink);
}

.route-grid[data-count="3"]:not(.route-deck-grid) .route-card:first-child p {
  color: #b9c6d7;
}

.route-grid[data-count="3"]:not(.route-deck-grid) .route-card:first-child .route-card-arrow {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.route-card {
  position: relative;
  min-width: 0;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 1.45rem;
  border: 1px solid #d6deea;
  border-radius: var(--knwn-radius);
  color: var(--knwn-ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(7, 17, 31, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route-card:hover {
  border-color: #aebbd0;
  box-shadow: 0 20px 50px rgba(7, 17, 31, 0.1);
  transform: translateY(-4px);
}

.route-card-kicker {
  margin: 0 0 2rem;
  color: var(--knwn-accent);
}

.route-card h2,
.route-card h3 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.route-card p {
  margin: 0.8rem 0 1.2rem;
  color: var(--knwn-muted);
  line-height: 1.65;
}

.route-card > a:not(.route-button) {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.route-card > a:not(.route-button)::after {
  content: "→";
  transition: transform 160ms ease;
}

.route-card > a:not(.route-button):hover::after {
  transform: translateX(4px);
}

.route-card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #d3dce9;
  border-radius: 11px;
  color: var(--knwn-ink);
}

.route-feature-list,
.route-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.route-feature-list li {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.1rem;
  border: 1px solid #d7dfea;
  border-radius: 18px;
  color: #344054;
  background: #fff;
  line-height: 1.55;
}

.route-feature-list-index {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--knwn-blue-dark);
  background: #e9efff;
  font-size: 0.7rem;
  font-weight: 900;
}

.route-media-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 2.8rem 0.8rem 0.8rem;
  border: 1px solid #ccd6e4;
  border-radius: var(--knwn-radius-lg);
  background: var(--knwn-ink);
  box-shadow: 0 26px 75px rgba(7, 17, 31, 0.15);
}

.route-media-frame::before {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  color: #f8ce69;
  background: #ff7b7b;
  box-shadow: 15px 0 currentColor, 30px 0 var(--knwn-cyan);
  content: "";
}

.route-media {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

.route-media-frame figcaption {
  padding: 0.85rem 0.35rem 0.2rem;
  color: #aab7c8;
  font-size: 0.78rem;
  line-height: 1.5;
}

.route-pricing {
  background:
    radial-gradient(circle at 50% 0, rgba(102, 87, 232, 0.09), transparent 35%),
    #f8f9fd;
}

.route-pricing .route-section-intro {
  position: static;
}

.route-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.route-price-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid #d6deea;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.07);
}

.route-price-card:nth-child(2) {
  border-color: transparent;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0, rgba(168, 162, 255, 0.26), transparent 35%),
    var(--knwn-ink);
  transform: translateY(-14px);
}

.route-price-card:nth-child(2) p,
.route-price-card:nth-child(2) li {
  color: #c4cedd;
}

.route-price-card:nth-child(2) .route-list li {
  color: #c4cedd;
}

.route-price-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.route-price {
  margin: 1.4rem 0 1.7rem;
  color: var(--knwn-muted);
}

.route-price strong {
  color: currentColor;
  font-size: clamp(2.8rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.route-price-card .route-list {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.7rem;
}

.route-price-card .route-list li {
  position: relative;
  padding-left: 1.45rem;
  color: #475467;
  line-height: 1.55;
}

.route-price-card .route-list li::before {
  position: absolute;
  left: 0;
  color: var(--knwn-blue);
  content: "✓";
  font-weight: 900;
}

.route-price-card .route-button {
  width: 100%;
  margin-top: auto;
}

.route-price-card:nth-child(2) .route-button {
  border-color: #fff;
  color: var(--knwn-ink) !important;
  background: #fff;
}

.route-bridge {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--knwn-radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(85, 217, 208, 0.25), transparent 30%),
    linear-gradient(125deg, #07111f, #173c62 58%, #303080);
  box-shadow: 0 30px 90px rgba(7, 17, 31, 0.2);
}

.route-bridge::after {
  position: absolute;
  z-index: -1;
  right: -6%;
  bottom: -70%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.035), 0 0 0 96px rgba(255, 255, 255, 0.02);
  content: "";
}

.route-bridge .route-mini-label {
  color: var(--knwn-cyan);
}

.route-bridge h2 {
  max-width: 780px;
  margin-top: 0.8rem;
}

.route-bridge p {
  max-width: 720px;
  color: #c0ccdc;
  font-size: 1.06rem;
}

.route-bridge a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.78rem 1.1rem;
  border-radius: 14px;
  color: var(--knwn-ink);
  background: #fff;
  font-weight: 850;
  text-decoration: none;
}

.route-bridge a::after {
  content: "↗";
}

/* The deck bridge renders its CTA as .route-button, whose white text carries
   !important, so the rule above could not darken it and the label vanished
   against the white fill. Same override the hero and pricing cards use. */
.route-bridge .route-button {
  border-color: #fff;
  color: var(--knwn-ink) !important;
  background: #fff;
}

.route-bridge .route-button:hover {
  border-color: var(--knwn-cyan);
  color: var(--knwn-ink) !important;
  background: var(--knwn-cyan);
}

.route-faq-list {
  display: grid;
  gap: 0.75rem;
}

.route-faq-list .route-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.route-faq-list .route-card:hover {
  transform: none;
}

.route-faq-list summary {
  position: relative;
  padding: 1.25rem 3.5rem 1.25rem 1.25rem;
  cursor: pointer;
  list-style: none;
}

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

.route-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.15rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--knwn-blue-dark);
  background: #eaf0ff;
  content: "+";
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.route-faq-list details[open] summary::after {
  content: "−";
}

.route-faq-list summary strong {
  font-size: 1.02rem;
}

.route-faq-list .route-card > p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--knwn-muted);
}

.route-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.route-library-grid .route-card {
  min-height: 265px;
}

.route-library-grid .route-card:nth-child(5n + 1) {
  background: linear-gradient(145deg, #fff, #eef3ff);
}

.route-library-grid .route-card:nth-child(5n + 2) {
  background: linear-gradient(145deg, #fff, #f0efff);
}

.route-library-grid .route-card h2 {
  padding-right: 2.5rem;
  font-size: 1.28rem;
}

.route-article-shell {
  padding-top: 3.5rem;
  background:
    radial-gradient(#c8d2df 0.8px, transparent 0.8px),
    #f7f9fc;
  background-size: 22px 22px;
}

.route-article {
  max-width: 820px;
  padding: clamp(1.4rem, 4vw, 3.6rem);
  border: 1px solid #d7dfea;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.08);
}

.route-article > :first-child {
  margin-top: 0;
}

.route-article h2,
.route-article h3 {
  margin: 2.5rem 0 0.9rem;
  color: var(--knwn-ink);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.route-article h2 {
  font-size: clamp(1.7rem, 3.3vw, 2.35rem);
}

.route-article h3 {
  font-size: 1.35rem;
}

.route-article p,
.route-article li {
  color: #3f4b5c;
  font-size: 1.04rem;
  line-height: 1.82;
}

.route-article a {
  color: var(--knwn-blue-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.route-article blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--knwn-blue);
  border-radius: 0 16px 16px 0;
  background: #f0f4ff;
}

.route-article table {
  width: 100%;
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.route-article th,
.route-article td {
  padding: 0.75rem;
  border: 1px solid #d4ddea;
  text-align: left;
}

.route-article th {
  background: #f2f5fa;
}

.route-archive-note {
  margin-bottom: 2.2rem;
  padding: 1.25rem;
  border: 1px solid #f4c36b;
  border-radius: 18px;
  background: #fff9e8;
}

.route-archive-note h2 {
  margin-top: 0;
  font-size: 1.22rem;
}

.route-archive-note p {
  margin-bottom: 0;
  color: #65553b;
  font-size: 0.92rem;
}

.route-byline {
  color: #677386 !important;
  font-size: 0.84rem !important;
  font-weight: 750;
}

.route-status {
  width: fit-content;
  display: inline-flex;
  margin: 0 0 1.2rem;
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  color: #254dc1 !important;
  background: #e8efff;
  font-size: 0.7rem !important;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Interior routes use a denser reading rhythm; the homepage keeps its larger editorial scale. */
.route-shell[data-route-path]:not([data-route-path="/"]) .route-section {
  padding: clamp(2.6rem, 4vw, 3.75rem) 0;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-section-layout {
  gap: clamp(2rem, 4vw, 4.5rem);
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-section-intro {
  position: static;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-section-number {
  margin-bottom: 0.75rem;
  padding: 0.34rem 0.55rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-section-intro > p:not(.route-section-number) {
  margin-top: 0.85rem;
  font-size: 1rem;
  line-height: 1.65;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-statement {
  min-height: 160px;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 24px;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-statement::before {
  top: 1.2rem;
  right: 1.2rem;
  width: 58px;
  height: 58px;
  box-shadow: 0 0 0 13px rgba(255, 255, 255, 0.035);
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-statement strong {
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-grid,
.route-shell[data-route-path]:not([data-route-path="/"]) .route-feature-list,
.route-shell[data-route-path]:not([data-route-path="/"]) .route-library-grid {
  gap: 0.8rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-grid > .route-card {
  min-height: 168px;
  padding: 1.2rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-grid[data-count="3"]:not(.route-deck-grid) .route-card:first-child {
  min-height: 190px;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-grid .route-card-kicker,
.route-shell[data-route-path]:not([data-route-path="/"]) .route-library-grid .route-card-kicker {
  margin-bottom: 1.25rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-grid > .route-card p:not(.route-card-kicker) {
  margin: 0.65rem 0 1rem;
  line-height: 1.55;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-feature-list li {
  min-height: 100px;
  gap: 0.75rem;
  padding: 0.9rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-library-grid > .route-card {
  min-height: 210px;
  padding: 1.2rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-section-content > .route-card {
  min-height: 0;
  padding: 1.2rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-media-frame {
  padding: 2.2rem 0.65rem 0.65rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-media-frame figcaption {
  padding: 0.65rem 0.25rem 0.1rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-pricing-grid {
  margin-top: 1.75rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-price-card {
  min-height: 440px;
  padding: clamp(1.3rem, 2vw, 1.5rem);
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-price {
  margin: 1.1rem 0 1.4rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-price strong {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-price-card .route-list {
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-bridge {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 26px;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-bridge h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-faq-list {
  gap: 0.6rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-faq-list summary {
  min-height: 48px;
  padding: 0.95rem 3.25rem 0.95rem 1rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-faq-list .route-card > p {
  padding: 0 1rem 1rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-article-shell {
  padding: 2.5rem 0 3.5rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-article {
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-article h2,
.route-shell[data-route-path]:not([data-route-path="/"]) .route-article h3 {
  margin-top: 2rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-footer {
  padding: 3.5rem 0 1.5rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-newsletter {
  gap: 2rem;
  margin-bottom: 3rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-footer-brand {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-footer-grid {
  gap: 1.5rem;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-footer-grid a {
  margin: 0.45rem 0;
}

.route-shell[data-route-path]:not([data-route-path="/"]) .route-footer-legal {
  margin-top: 2rem;
  padding-top: 1rem;
}

@media (max-width: 900px) {
  .route-shell[data-route-path]:not([data-route-path="/"]) .route-section-layout {
    gap: 1.75rem;
  }

  .route-shell[data-route-path]:not([data-route-path="/"]) .route-statement,
  .route-shell[data-route-path]:not([data-route-path="/"]) .route-price-card {
    min-height: 0;
  }

  .route-shell[data-route-path]:not([data-route-path="/"]) .route-newsletter {
    gap: 1.5rem;
  }
}

@media (max-width: 620px) {
  .route-shell[data-route-path]:not([data-route-path="/"]) .route-section {
    padding: 2.6rem 0;
  }

  .route-shell[data-route-path]:not([data-route-path="/"]) .route-section-layout {
    gap: 1.5rem;
  }

  .route-shell[data-route-path]:not([data-route-path="/"]) .route-statement,
  .route-shell[data-route-path]:not([data-route-path="/"]) .route-grid > .route-card,
  .route-shell[data-route-path]:not([data-route-path="/"]) .route-grid[data-count="3"]:not(.route-deck-grid) .route-card:first-child,
  .route-shell[data-route-path]:not([data-route-path="/"]) .route-feature-list li,
  .route-shell[data-route-path]:not([data-route-path="/"]) .route-library-grid > .route-card,
  .route-shell[data-route-path]:not([data-route-path="/"]) .route-price-card {
    min-height: 0;
  }

  .route-shell[data-route-path]:not([data-route-path="/"]) .route-bridge {
    padding: 1.5rem;
  }

  .route-shell[data-route-path]:not([data-route-path="/"]) .route-footer {
    padding: 2.75rem 0 1.25rem;
  }

  .route-shell[data-route-path]:not([data-route-path="/"]) .route-newsletter {
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
  }
}

.route-form {
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
}

.route-form-row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.route-field {
  flex: 1;
  display: grid;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.route-field input {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.9rem;
  border: 1px solid #aeb9c9;
  border-radius: 13px;
  color: var(--knwn-ink);
  background: #fff;
  font: inherit;
}

.route-field input:focus {
  border-color: var(--knwn-blue);
  outline: 3px solid rgba(53, 109, 243, 0.16);
}

.route-form-status {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.86rem;
}

.route-result-list {
  margin: 0.5rem 0 0;
}

.route-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.route-footer {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2rem;
  color: #c7d1df;
  background: var(--knwn-ink);
}

.route-footer::before {
  position: absolute;
  top: -300px;
  right: -240px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.015);
  content: "";
}

.route-newsletter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 4.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(85, 217, 208, 0.14), transparent 28%),
    #0e1b2c;
}

.route-footer-kicker {
  margin: 0 0 0.8rem;
  color: var(--knwn-cyan);
}

.route-newsletter h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.route-newsletter p {
  color: #aebacc;
  line-height: 1.6;
}

.route-newsletter .route-form {
  max-width: none;
}

.route-newsletter .route-field input {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.route-newsletter .route-button {
  border-color: #fff;
  color: var(--knwn-ink) !important;
  background: #fff;
}

.route-footer-brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.route-footer-brand img {
  width: 142px;
  height: auto;
  filter: invert(1);
}

.route-footer-brand p {
  max-width: 510px;
  margin: 0;
  color: #9cabbf;
  line-height: 1.6;
  text-align: right;
}

.route-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 0.7fr;
  gap: 2rem;
}

.route-footer-grid strong {
  display: block;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-footer-grid a {
  width: fit-content;
  display: block;
  margin: 0.62rem 0;
  color: #aebacc;
  font-size: 0.88rem;
  text-decoration: none;
}

.route-footer-grid a:hover {
  color: #fff;
}

.route-footer-grid p {
  color: #8f9db0;
  font-size: 0.82rem;
  line-height: 1.6;
}

.route-footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7f8da1;
  font-size: 0.78rem;
}

/* Copy-deck pages */
.route-menu-support,
.route-mobile-support {
  color: var(--knwn-muted);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.55;
}

.route-menu-support {
  margin: 0.45rem 0 0;
  padding: 0.75rem 0.85rem 0.35rem;
  border-top: 1px solid #e5eaf1;
}

.route-mobile-support {
  margin: 0;
  padding: 0.8rem 0 0.35rem;
}

.route-text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.25rem;
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 800;
  text-underline-offset: 0.25rem;
}

.route-text-link::after {
  content: "→";
}

.route-hero-grid--solo {
  grid-template-columns: minmax(0, 930px);
}

.route-deck-hero h1 {
  font-size: clamp(2.6rem, 4.35vw, 4.25rem);
}

.route-deck-hero code,
.route-deck-section code,
.route-faq code,
.route-final-cta code {
  overflow-wrap: anywhere;
  font-size: 0.9em;
}

.route-deck-hero .route-copy-note {
  margin-top: 1.35rem;
  padding: 0;
  border: 0;
  color: #b9c8da;
  background: transparent;
}

.route-copy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.route-copy-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.7rem;
  border: 1px solid #d2dbe7;
  border-radius: 999px;
  color: #465469;
  background: #f7f9fc;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.route-deck-hero .route-copy-pills span {
  border-color: rgba(255, 255, 255, 0.16);
  color: #d5dfed;
  background: rgba(255, 255, 255, 0.07);
}

.route-demo {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 26px;
  background: rgba(7, 17, 31, 0.82);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.route-demo-label {
  margin: 0 0 1rem;
  color: var(--knwn-cyan);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-demo-request {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
}

.route-demo-request p,
.route-demo-caption p {
  margin: 0;
  color: #e5edf8;
  line-height: 1.6;
}

.route-demo-flow {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.route-demo-flow li {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  color: #dce6f4;
  background: rgba(255, 255, 255, 0.045);
}

.route-demo-flow li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--knwn-ink);
  background: var(--knwn-cyan);
  font-size: 0.68rem;
  font-weight: 900;
}

.route-demo-flow code,
.route-demo-flow strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.route-demo-caption {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.route-demo-caption p {
  color: #aebdd0;
  font-size: 0.83rem;
}

.route-deck-section--paper {
  background:
    radial-gradient(circle at 5% 20%, rgba(53, 109, 243, 0.055), transparent 22%),
    var(--knwn-paper);
}

.route-deck-section--white {
  background: #fff;
}

.route-deck-section .route-section-intro > .route-eyebrow--light,
.route-deck-section .route-section-head-title > .route-eyebrow--light,
.route-faq .route-section-intro > .route-eyebrow--light {
  margin: 0 0 1.1rem;
  padding: 0;
  border: 0;
  /* Darkened per brand: the raw accent is 4.44:1 on the light section
     background, just under AA for text this size. */
  color: color-mix(in srgb, var(--knwn-accent) 78%, #06101f);
  background: transparent;
}

.route-deck-section .route-section-intro > .route-eyebrow--light::before,
.route-deck-section .route-section-head-title > .route-eyebrow--light::before,
.route-faq .route-section-intro > .route-eyebrow--light::before {
  background: var(--knwn-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--knwn-accent) 14%, transparent);
}

.route-deck-section .route-section-content > .route-copy,
.route-deck-section .route-copy-group .route-copy {
  margin: 0;
  color: #465469;
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.route-deck-section .route-section-content > .route-copy + .route-copy,
.route-deck-section .route-copy-group .route-copy + .route-copy {
  margin-top: 1rem;
}

.route-copy-group {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid #dce3ee;
}

.route-group-heading {
  margin: 0 0 0.75rem;
  color: var(--knwn-ink);
  font-size: 1rem;
  line-height: 1.35;
}

/* The sentence that introduces a list. Reads as prose, not as a heading. */
.route-group-lead {
  margin: 0 0 0.85rem;
  color: #465469;
  font-size: 1rem;
  line-height: 1.7;
  text-wrap: pretty;
}

/* A closing aside, not a callout. The outlined pill read as a disabled
   input field, especially on a one or two line remark. */
.route-copy-note {
  padding: 0.1rem 0 0.1rem 1.15rem;
  border: 0;
  border-left: 2px solid #d5deeb;
  border-radius: 0;
  background: none;
}

.route-deck-section .route-copy-note .route-copy {
  color: #56637a;
}

.route-pull-quote {
  margin: 1.35rem 0 0;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--knwn-accent);
  border-radius: 0 16px 16px 0;
  background: var(--knwn-accent-soft);
}

.route-pull-quote p {
  margin: 0;
  color: #27364b;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.65;
}

.route-deck-grid {
  margin-top: 1.5rem;
}

/* Full-width card sections: masthead across the top, grid across the container. */
.route-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: clamp(1rem, 2.5vw, 3rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.route-section-head--split {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.route-section-head-title {
  min-width: 0;
}

.route-section-head-copy {
  min-width: 0;
  max-width: 560px;
}

.route-section-head-copy .route-copy {
  margin: 0;
  color: #465469;
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.route-section-head-copy .route-copy + .route-copy {
  margin-top: 0.85rem;
}

/* Six tracks so a final short row can widen to fill instead of leaving a
   hole. Three per row by default; sets of 2 and 4 sit two per row; a set of
   5 runs 3 then 2, with the last pair widened. */
.route-deck-section--wide .route-deck-grid {
  margin-top: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.route-deck-section--wide .route-deck-grid > * {
  grid-column: span 2;
}

.route-deck-section--wide .route-deck-grid[data-count="2"] > *,
.route-deck-section--wide .route-deck-grid[data-count="4"] > * {
  grid-column: span 3;
}

.route-deck-section--wide .route-deck-grid[data-count="5"] > :nth-child(n + 4) {
  grid-column: span 3;
}

.route-section-tail {
  max-width: 760px;
  margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
}

.route-section-tail > .route-copy-group:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 1060px) {
  .route-deck-section--wide .route-deck-grid > *,
  .route-deck-section--wide .route-deck-grid[data-count="2"] > *,
  .route-deck-section--wide .route-deck-grid[data-count="4"] > * {
    grid-column: span 3;
  }

  /* Two per row leaves an odd card alone, so let it take the full width. */
  .route-deck-section--wide .route-deck-grid[data-count="5"] > :nth-child(n + 4) {
    grid-column: span 3;
  }

  .route-deck-section--wide .route-deck-grid[data-count="3"] > :nth-child(3),
  .route-deck-section--wide .route-deck-grid[data-count="5"] > :nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .route-section-head,
  .route-section-head--split {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .route-deck-section--wide .route-deck-grid > *,
  .route-deck-section--wide .route-deck-grid[data-count="2"] > *,
  .route-deck-section--wide .route-deck-grid[data-count="4"] > *,
  .route-deck-section--wide .route-deck-grid[data-count="5"] > :nth-child(n + 4) {
    grid-column: span 6;
  }
}

.route-deck-card {
  min-height: 0;
}

/* API-to-MCP is a supporting path within the MCP service, not a third
   primary offer beside the two service pages. */
.route-service-grid > .route-deck-card[data-emphasis="supporting"] {
  grid-column: 1 / -1;
  min-height: 0;
  border-style: dashed;
  background: rgba(247, 249, 253, 0.82);
  box-shadow: none;
}

.route-service-grid > .route-deck-card[data-emphasis="supporting"] .route-card-actions {
  margin-top: 0;
}

.route-service-grid > .route-deck-card[data-emphasis="supporting"] .route-card-actions .route-text-link {
  width: auto;
}

/* The recommended half of a comparison. The other half stays plain white so
   the two never read as equivalent options. */
.route-deck-card[data-emphasis="preferred"] {
  border-color: transparent;
  /* Same treatment as the highlighted pricing plan, so the site has one way
     of saying "this is the one". */
  color: #fff;
  background:
    radial-gradient(circle at 80% 0, rgba(168, 162, 255, 0.26), transparent 35%),
    var(--knwn-ink);
  box-shadow: 0 22px 50px -28px rgba(7, 17, 31, 0.55);
}

.route-deck-card[data-emphasis="preferred"] h3 {
  color: #fff;
}

.route-deck-bridge--compact {
  padding: 1.6rem 0 2.4rem;
  border-top: 1px solid #e3e8f0;
  background: #fff;
}

.route-bridge--compact {
  overflow: visible;
  padding: 0;
  border-radius: 0;
  color: var(--knwn-muted);
  background: none;
  box-shadow: none;
}

.route-bridge--compact::after {
  display: none;
}

.route-bridge--compact p {
  max-width: none;
  margin: 0;
  color: var(--knwn-muted);
  font-size: 0.92rem;
}

.route-bridge--compact p span {
  color: var(--knwn-ink);
  font-weight: 700;
}

.route-bridge--compact a {
  min-height: 0;
  display: inline;
  margin: 0;
  padding: 0;
  color: var(--knwn-blue-dark);
  background: none;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.route-bridge--compact a::after {
  content: " ↗";
}

.route-deck-card[data-emphasis="preferred"] .route-copy,
.route-deck-card[data-emphasis="preferred"] .route-group-lead {
  color: #c3cedd;
}

.route-deck-section .route-deck-card[data-emphasis="preferred"] .route-list li {
  color: #c4cedd;
}

.route-deck-section .route-deck-card[data-emphasis="preferred"] .route-list--dense li {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.route-deck-section .route-deck-card[data-emphasis="preferred"] .route-list:not(.route-list--ordered) li::before {
  background: var(--knwn-cyan);
}

.route-deck-card .route-copy-group {
  margin-top: 0.85rem;
  padding-top: 0;
  border-top: 0;
}

.route-deck-card .route-copy-group .route-copy {
  margin: 0;
  color: var(--knwn-muted);
  line-height: 1.65;
}

/* The muted body colour above is meant for white cards. On the highlighted
   dark card it fell to 3.35:1, so restate it with enough specificity to win.
   Must stay after the rule it overrides. */
.route-deck-card[data-emphasis="preferred"] .route-copy-group .route-copy,
.route-deck-card[data-emphasis="preferred"] .route-copy {
  color: #c4cedd;
}

.route-deck-card[data-emphasis="preferred"] .route-copy strong,
.route-deck-card[data-emphasis="preferred"] code {
  color: #fff;
}

.route-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.route-card-actions .route-button,
.route-card-actions .route-button-secondary {
  width: 100%;
}

.route-deck-section .route-list,
.route-deck-card .route-list,
.route-final-cta .route-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-deck-section .route-list li,
.route-deck-card .route-list li,
.route-final-cta .route-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #465469;
  line-height: 1.6;
}

/* Long checklists become scannable columns of tiles instead of one tall
   bulleted column. */
.route-deck-section .route-list--dense {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1rem;
}

.route-deck-section--wide .route-list--dense {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-deck-section .route-list--dense li {
  padding: 0.62rem 0.85rem 0.62rem 1.85rem;
  border: 1px solid #e4e9f2;
  border-radius: 10px;
  background: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .route-deck-section .route-list--dense,
  .route-deck-section--wide .route-list--dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .route-deck-section .route-list--dense,
  .route-deck-section--wide .route-list--dense {
    grid-template-columns: minmax(0, 1fr);
  }
}

.route-deck-section .route-list:not(.route-list--ordered) li::before,
.route-deck-card .route-list:not(.route-list--ordered) li::before,
.route-final-cta .route-list:not(.route-list--ordered) li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--knwn-accent);
  content: "";
}

/* Tiles pad their text, so the marker moves inside. Equal specificity to the
   rule above, so this must stay after it. */
.route-deck-section .route-list--dense:not(.route-list--ordered) li::before {
  top: 1.18em;
  left: 0.85rem;
}

.route-list--ordered {
  counter-reset: deck-list;
}

.route-list--ordered li {
  counter-increment: deck-list;
}

.route-list--ordered li::before {
  position: absolute;
  left: 0;
  color: var(--knwn-accent);
  content: counter(deck-list) ".";
  font-size: 0.78rem;
  font-weight: 900;
}

.route-final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, rgba(85, 217, 208, 0.2), transparent 30%),
    linear-gradient(135deg, #07111f, #142b47 58%, #263270);
}

.route-final-cta-inner {
  max-width: 900px;
}

.route-final-cta h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.route-final-cta .route-copy {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: #c3cedd;
  font-size: 1.08rem;
  line-height: 1.72;
}

.route-final-cta .route-button {
  border-color: #fff;
  color: var(--knwn-ink) !important;
  background: #fff;
}

.route-final-cta .route-button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.route-final-cta .route-text-link {
  color: #fff;
}

.route-final-microcopy {
  margin-top: 1.2rem;
}

.route-final-microcopy .route-copy {
  margin-top: 0;
  color: #9fadc0;
  font-size: 0.82rem;
}

.route-lead-form {
  max-width: none;
  gap: 1.15rem;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.route-lead-form:hover {
  transform: none;
}

.route-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.route-field textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  padding: 0.8rem 0.9rem;
  border: 1px solid #aeb9c9;
  border-radius: 13px;
  color: var(--knwn-ink);
  background: #fff;
  font: inherit;
  line-height: 1.55;
}

.route-field textarea:focus {
  border-color: var(--knwn-blue);
  outline: 3px solid rgba(53, 109, 243, 0.16);
}

.route-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.route-fieldset legend {
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.route-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.route-radio-group label {
  position: relative;
  cursor: pointer;
}

.route-radio-group input {
  position: absolute;
  opacity: 0;
}

.route-radio-group span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border: 1px solid #b9c3d1;
  border-radius: 12px;
  color: #344054;
  background: #fff;
  font-size: 0.86rem;
  font-weight: 750;
}

.route-radio-group input:checked + span {
  border-color: var(--knwn-blue);
  color: var(--knwn-blue-dark);
  background: #edf2ff;
}

.route-radio-group input:focus-visible + span {
  outline: 3px solid rgba(53, 109, 243, 0.2);
  outline-offset: 2px;
}

.route-form-consent {
  margin: 0;
  color: var(--knwn-muted);
  font-size: 0.77rem;
  line-height: 1.6;
}

.route-form-consent a {
  color: var(--knwn-blue-dark);
  font-weight: 750;
}

.route-form-success,
.route-form-error {
  padding: 1rem;
  border-radius: 14px;
}

.route-form-success {
  border: 1px solid #93d5ba;
  background: #ecfbf4;
}

.route-form-error {
  border: 1px solid #efb2b2;
  background: #fff2f2;
}

.route-form-success p,
.route-form-error p {
  margin: 0 0 0.8rem;
}

@media (max-width: 1060px) {
  .route-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 2.5rem;
  }

  .route-hero h1 {
    font-size: clamp(2.5rem, 4.6vw, 3.9rem);
  }

  .route-section-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
  }

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

@media (max-width: 900px) {
  .route-container {
    width: min(100% - 32px, 720px);
  }

  .route-header-row {
    min-height: 70px;
  }

  .route-logo img {
    width: 114px;
  }

  .route-nav,
  .route-header-row > .route-button,
  .route-header-row > .route-button-secondary {
    display: none;
  }

  .route-mobile-nav {
    position: static;
    display: block;
    margin-left: auto;
  }

  .route-mobile-nav > summary {
    min-width: 48px;
    min-height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid #cdd6e3;
    border-radius: 13px;
    cursor: pointer;
    list-style: none;
    color: var(--knwn-ink);
    background: #fff;
    font-size: 0.8rem;
    font-weight: 850;
  }

  .route-mobile-nav > summary::-webkit-details-marker {
    display: none;
  }

  .route-mobile-panel {
    position: absolute;
    z-index: 70;
    top: 100%;
    right: auto;
    bottom: auto;
    left: calc(50% - 50vw);
    width: 100vw;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1.2rem 1.25rem 2.5rem;
    border-top: 1px solid #dce3ee;
    color: var(--knwn-ink);
    background: #fff;
    box-shadow: 0 40px 0 #fff;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  .route-mobile-panel strong {
    display: block;
    margin: 1.2rem 0 0.45rem;
    color: var(--knwn-blue-dark);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .route-mobile-panel strong:first-child {
    margin-top: 0;
  }

  .route-mobile-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.74rem 0;
    border-bottom: 1px solid #e7ecf3;
    color: #344054;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }

  .route-mobile-panel a::after {
    color: #8d99aa;
    content: "→";
  }

  .route-hero {
    padding: 4.4rem 0 4.2rem;
  }

  .route-hero-grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .route-hero h1,
  .route-hero[data-page-kind="dynamic_editorial"] h1,
  .route-hero[data-page-kind="legacy_rich"] h1,
  .route-hero[data-page-kind="legal"] h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 8.5vw, 3.6rem);
  }

  .route-hero-stage {
    width: min(100%, 620px);
  }

  .route-visual-window {
    transform: none;
  }

  .route-section-layout {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .route-section-intro {
    position: static;
  }

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

  .route-price-card {
    min-height: 0;
  }

  .route-price-card:nth-child(2) {
    transform: none;
  }

  .route-newsletter {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

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

  .route-deck-hero h1 {
    font-size: clamp(2.35rem, 8vw, 3.5rem);
  }

  .route-deck-section .route-section-layout,
  .route-faq .route-section-layout,
  .route-lead-section .route-section-layout {
    gap: 2rem;
  }
}

@media (max-width: 620px) {
  .route-container {
    width: min(100% - 28px, 560px);
  }

  .route-hero {
    padding: 4.5rem 0 4rem;
  }

  .route-hero h1,
  .route-hero[data-page-kind="dynamic_editorial"] h1,
  .route-hero[data-page-kind="legacy_rich"] h1,
  .route-hero[data-page-kind="legal"] h1 {
    font-size: clamp(2.15rem, 9vw, 2.9rem);
    line-height: 1.04;
  }

  .route-actions,
  .route-actions .route-button,
  .route-actions .route-button-secondary {
    width: 100%;
  }

  .route-visual-window {
    border-radius: 20px;
  }

  .route-visual-body {
    padding: 1rem;
  }

  .route-flow-step {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .route-flow-step:nth-child(2),
  .route-flow-step:nth-child(5) {
    margin-left: 0;
  }

  .route-flow-state {
    display: none;
  }

  .route-signal-grid {
    grid-template-columns: 1fr;
  }

  .route-signal-card:first-child {
    grid-row: auto;
  }

  .route-section {
    padding: 4.3rem 0;
  }

  .route-section h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .route-grid,
  .route-feature-list,
  .route-library-grid {
    grid-template-columns: 1fr;
  }

  .route-grid[data-count="3"]:not(.route-deck-grid) .route-card:first-child {
    grid-column: auto;
  }

  .route-card,
  .route-grid[data-count="3"]:not(.route-deck-grid) .route-card:first-child {
    min-height: 0;
  }

  .route-form-row {
    align-items: stretch;
    flex-direction: column;
  }

  .route-form-row .route-button {
    width: 100%;
  }

  .route-footer {
    padding-top: 3.5rem;
  }

  .route-footer-brand {
    flex-direction: column;
  }

  .route-footer-brand p {
    text-align: left;
  }

  .route-footer-grid {
    grid-template-columns: 1fr;
  }

  .route-footer-legal {
    flex-direction: column;
  }

  .route-deck-hero h1 {
    font-size: clamp(2.05rem, 8.5vw, 2.8rem);
  }

  .route-deck-hero .route-actions,
  .route-deck-hero .route-actions .route-text-link,
  .route-final-cta .route-actions,
  .route-final-cta .route-actions .route-text-link {
    width: 100%;
  }

  .route-deck-hero .route-actions .route-text-link,
  .route-final-cta .route-actions .route-text-link {
    justify-content: center;
  }

  .route-demo {
    padding: 1rem;
    border-radius: 20px;
  }

  .route-copy-pills {
    align-items: stretch;
    flex-direction: column;
  }

  .route-copy-pills span {
    width: 100%;
  }

  .route-form-grid {
    grid-template-columns: 1fr;
  }

  .route-lead-form > .route-button {
    width: 100%;
  }
}

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

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

/* ============================================================
   KNWN Visibility hero, rebuilt from the previous landing page:
   light field, headline beside subtext, platform tabs, and the
   three report cards. No client JS, so the charts are static SVG.
   ============================================================ */
/* The product-line rule sets a dark gradient at higher specificity, so this
   has to match it to win. */
.route-hero--light,
.route-shell[data-product-line] .route-hero--light {
  padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(3rem, 5vw, 4.5rem);
  color: var(--knwn-ink);
  background: #f1f5f9;
}

.route-hero--light::before,
.route-hero--light::after {
  display: none;
}

.route-hero--light h1 {
  max-width: 15ch;
  margin: 0.9rem 0 0;
  color: var(--knwn-ink);
  font-size: clamp(2.3rem, 3.9vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.route-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.route-hero--light .route-hero-aside .route-lede {
  max-width: 40ch;
  color: #4b5768;
}

.route-hero-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.route-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.route-tabs span {
  padding: 0.5rem 0.95rem;
  border: 1px solid #d3dbe6;
  border-radius: 999px;
  color: #46526580;
  color: #465265;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.route-hero-toolbar .route-actions {
  margin: 0 0 0 auto;
}

.route-hero--light .route-button {
  border-color: var(--knwn-ink);
  color: #fff !important;
  background: var(--knwn-ink);
}

.route-hero--light .route-button-secondary {
  border-color: #cbd5e1;
  color: var(--knwn-ink);
  background: #fff;
}

.route-hero--light .route-text-link {
  color: var(--knwn-ink);
}

.route-hero--light .route-copy-pills span {
  border-color: #d3dbe6;
  color: #46526f;
  background: #fff;
}

.route-report {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.route-report-label {
  margin: 0 0 0.7rem;
  color: #6b7789;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.route-report-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.route-report-card--wide {
  grid-column: span 2;
  align-items: stretch;
  text-align: left;
}

.route-report-card h3 {
  margin: 0;
  color: var(--knwn-ink);
  font-size: 1rem;
  font-weight: 800;
}

.route-dial {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
}

.route-dial svg {
  width: 92px;
  height: 92px;
  transform: rotate(-90deg);
}

.route-dial-track {
  fill: none;
  stroke: #eef2f7;
  stroke-width: 6;
}

.route-dial-value {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}

.route-dial[data-tone="pink"] .route-dial-value { stroke: #ec4899; }
.route-dial[data-tone="violet"] .route-dial-value { stroke: #6366f1; }

.route-dial-number {
  position: absolute;
  color: var(--knwn-ink);
  font-size: 1.15rem;
  font-weight: 800;
}

.route-report-state {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.route-report-state[data-tone="pink"] { color: #db2777; }
.route-report-state[data-tone="violet"] { color: #4f46e5; }

.route-report-note {
  margin: 0;
  color: #6b7789;
  font-size: 0.82rem;
  line-height: 1.5;
}

.route-report-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.route-report-legend {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: #6b7789;
  font-size: 0.78rem;
}

.route-report-legend span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.route-report-legend span[data-tone="teal"] { background: #10b981; }
.route-report-legend span[data-tone="amber"] { background: #f59e0b; }
.route-report-legend strong { color: var(--knwn-ink); }

.route-report-chart {
  width: 100%;
  height: 104px;
  margin-top: 0.6rem;
}

.route-chart-area[data-tone="teal"] { fill: rgba(16, 185, 129, 0.16); }

.route-chart-line {
  fill: none;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.route-chart-line[data-tone="teal"] { stroke: #10b981; }
.route-chart-line[data-tone="amber"] { stroke: #f59e0b; }

.route-report-axis {
  display: flex;
  justify-content: space-between;
  margin: 0.35rem 0 0;
  color: #94a3b8;
  font-size: 0.68rem;
}

@media (max-width: 1060px) {
  .route-report-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-report-card--wide { grid-column: span 2; }
}

@media (max-width: 760px) {
  .route-hero-split { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .route-hero--light h1 { max-width: none; }
  .route-hero-toolbar .route-actions { margin-left: 0; }
  .route-report-grid { grid-template-columns: minmax(0, 1fr); }
  .route-report-card--wide { grid-column: span 1; }
}
