:root {
  --knoq-ink: #0c0f11;
  --knoq-panel: #121719;
  --knoq-panel-soft: #17201c;
  --knoq-paper: #f7f5ef;
  --knoq-mist: #e7f2ea;
  --knoq-yellow: #ffc62e;
  --knoq-green: #0f8f52;
  --knoq-green-bright: #20b872;
  --knoq-muted: #a8b0ac;
  --knoq-rule: rgba(247, 245, 239, 0.13);
  --knoq-radius: 28px;
  --knoq-shadow: 0 36px 100px rgba(0, 0, 0, 0.38);
}

html {
  scroll-padding-top: 100px;
}

body.premium-site {
  background:
    radial-gradient(
      circle at 78% 6%,
      rgba(16, 143, 82, 0.16),
      transparent 30rem
    ),
    radial-gradient(
      circle at 18% 28%,
      rgba(255, 198, 46, 0.06),
      transparent 28rem
    ),
    var(--knoq-ink);
  color: var(--knoq-paper);
}

.premium-site .grain {
  z-index: 100;
  opacity: 0.1;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--knoq-yellow);
  color: var(--knoq-ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  z-index: 30;
  inset: 0 0 auto;
}

.premium-site main {
  max-width: none;
  padding: 0;
}

.premium-nav {
  width: min(1320px, calc(100% - 64px));
  height: 96px;
  margin: 0 auto;
  border-bottom: 1px solid var(--knoq-rule);
}

.premium-nav .logo-lockup {
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 34px;
}

.nav-links a,
.nav-cta {
  color: var(--knoq-paper);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 198, 46, 0.55);
  border-radius: 999px;
  color: var(--knoq-yellow);
}

.premium-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  min-height: 940px;
  overflow: hidden;
  padding: 160px max(5.2vw, calc((100vw - 1320px) / 2)) 92px;
  background:
    linear-gradient(
      90deg,
      rgba(12, 15, 17, 0.96) 0%,
      rgba(12, 15, 17, 0.82) 48%,
      rgba(12, 15, 17, 0.38) 100%
    ),
    radial-gradient(
      circle at 77% 36%,
      rgba(19, 152, 88, 0.32),
      transparent 26rem
    ),
    #0c0f11;
}

.premium-hero::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to left, #000, transparent 80%);
}

.hero-ambient {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.ambient-ring {
  position: absolute;
  left: 76%;
  top: 52%;
  border: 1px solid rgba(77, 230, 154, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 390px;
  height: 390px;
}
.ring-two {
  width: 610px;
  height: 610px;
}
.ring-three {
  width: 850px;
  height: 850px;
  opacity: 0.45;
}

.ambient-route {
  position: absolute;
  right: 4%;
  bottom: 16%;
  width: 38%;
  height: 2px;
  transform: rotate(-18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 198, 46, 0.8),
    transparent
  );
  box-shadow: 0 0 22px rgba(255, 198, 46, 0.22);
}

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

.premium-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--knoq-yellow);
  font:
    700 11px/1.2 "DM Mono",
    monospace;
  letter-spacing: 1.45px;
}

.premium-eyebrow > span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.premium-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(58px, 6.25vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.premium-hero h1 span,
.premium-hero h1 em {
  display: block;
}

.premium-hero h1 span {
  max-width: 700px;
  font-size: 0.76em;
  letter-spacing: -0.055em;
}

.premium-hero h1 em {
  margin-top: 10px;
  color: var(--knoq-yellow);
  font-style: normal;
}

.hero-lede {
  max-width: 640px;
  margin: 34px 0 0;
  color: #d1d7d3;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.62;
}

.premium-actions,
.finale-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font:
    800 14px/1 Manrope,
    sans-serif;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--knoq-yellow);
  color: var(--knoq-ink);
  box-shadow: 0 14px 42px rgba(255, 198, 46, 0.16);
}

.button-secondary {
  border-color: rgba(247, 245, 239, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--knoq-paper);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 660px;
  margin-top: 48px;
  border: 1px solid var(--knoq-rule);
  border-radius: 18px;
  overflow: hidden;
  background: var(--knoq-rule);
}

.hero-proof span {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 92px;
  padding: 18px;
  background: rgba(12, 15, 17, 0.9);
}

.hero-proof b {
  color: var(--knoq-yellow);
  font:
    700 10px/1.2 "DM Mono",
    monospace;
  letter-spacing: 1px;
}

.hero-proof small {
  color: #c8cfcb;
  font-size: 12px;
  line-height: 1.4;
}

.hero-boundary,
.capture-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  color: #87908c;
  font:
    600 10px/1.4 "DM Mono",
    monospace;
  letter-spacing: 0.4px;
}

.hero-boundary i,
.capture-note i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--knoq-green-bright);
  box-shadow: 0 0 0 6px rgba(32, 184, 114, 0.1);
}

.hero-product {
  position: relative;
  z-index: 1;
  height: 690px;
}

.hero-phone-wrap {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 50%;
  width: 326px;
  transform: translateX(-42%) rotate(4deg);
}

.premium-phone {
  position: relative;
  overflow: hidden;
  border: 9px solid #050708;
  border-radius: 44px;
  background: #080a0c;
  box-shadow:
    var(--knoq-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.11);
}

.premium-phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 30%;
  height: 18px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #050708;
}

.premium-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.premium-phone-hero {
  transform: translateZ(0);
}

.signal-pulse {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 45%;
  border: 1px solid rgba(44, 221, 132, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: hero-pulse 4s ease-out infinite;
}

.pulse-one {
  width: 430px;
  height: 430px;
}
.pulse-two {
  width: 570px;
  height: 570px;
  animation-delay: 1.2s;
}

@keyframes hero-pulse {
  0%,
  100% {
    opacity: 0.14;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.hero-float {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(247, 245, 239, 0.15);
  border-radius: 16px;
  background: rgba(9, 14, 12, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-float-availability {
  top: 136px;
  right: -6px;
}

.hero-float-availability i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--knoq-green-bright);
  box-shadow: 0 0 0 8px rgba(32, 184, 114, 0.11);
}

.hero-float span,
.hero-float b {
  display: block;
}

.hero-float small {
  color: var(--knoq-green-bright);
  font:
    700 8px/1.2 "DM Mono",
    monospace;
  letter-spacing: 1px;
}

.hero-float b {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.35;
}

.hero-float-privacy {
  right: 8%;
  bottom: 92px;
  color: #dce3df;
}

.hero-float-privacy > span {
  color: var(--knoq-yellow);
  font-size: 24px;
}

.hero-norb {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 28px;
  display: flex;
  align-items: center;
  margin: 0;
}

.hero-norb img {
  width: 112px;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.35));
}

.hero-norb figcaption {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: -6px;
  padding: 13px 17px 13px 24px;
  border: 1px solid rgba(255, 198, 46, 0.45);
  border-radius: 0 16px 16px 0;
  background: rgba(14, 45, 30, 0.88);
}

.hero-norb small,
.store-norb small {
  color: var(--knoq-yellow);
  font:
    700 8px/1.1 "DM Mono",
    monospace;
  letter-spacing: 1px;
}

.hero-norb b {
  font-size: 12px;
}

.brand-statement {
  padding: 132px max(5.2vw, calc((100vw - 1180px) / 2));
  background: var(--knoq-yellow);
  color: var(--knoq-ink);
  text-align: center;
}

.brand-statement p,
.brand-statement h2,
.brand-statement-signoff {
  display: block;
  margin: 0;
}

.brand-statement-copy span {
  display: block;
}

.brand-statement p {
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.brand-statement h2 {
  margin-top: 3px;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.brand-statement-signoff {
  margin-top: 34px;
  font:
    800 11px/1 "DM Mono",
    monospace;
  letter-spacing: 2px;
}

.how-it-works,
.video-showcase,
.trust-section,
.premium-early-access {
  padding: 142px max(5.2vw, calc((100vw - 1240px) / 2));
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.app-showcase-copy h2,
.store-copy h2,
.audience-split h2,
.early-access-intro h2,
.finale h2 {
  margin: 0;
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-heading h2 em,
.app-showcase-copy h2 em,
.store-copy h2 em,
.audience-split h2 em,
.early-access-intro h2 em,
.finale h2 em {
  color: var(--knoq-yellow);
  font-style: normal;
}

.section-heading > p:last-child,
.app-showcase-copy > p,
.store-copy > p,
.audience-split article > p,
.early-access-intro > p {
  color: #b8c0bc;
  font-size: 18px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--knoq-rule);
  border-radius: var(--knoq-radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012)
  );
}

.process-grid li > span {
  color: #6f7874;
  font:
    700 10px/1 "DM Mono",
    monospace;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-top: 56px;
  border: 1px solid rgba(255, 198, 46, 0.28);
  border-radius: 50%;
  color: var(--knoq-yellow);
  font-size: 32px;
}

.process-grid h3 {
  margin: 28px 0 10px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.process-grid p {
  margin: 0;
  color: #aeb6b2;
  font-size: 14px;
  line-height: 1.65;
}

.process-signoff {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: clamp(32px, 4vw, 48px) 0 0;
  color: var(--knoq-paper);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.process-signoff::before {
  width: 34px;
  height: 1px;
  background: var(--knoq-yellow);
  content: "";
}

.process-signoff em {
  color: var(--knoq-yellow);
  font-style: normal;
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(650px, 1.22fr);
  gap: 74px;
  align-items: start;
  padding: 150px max(5.2vw, calc((100vw - 1320px) / 2));
  overflow: hidden;
  background:
    radial-gradient(
      circle at 69% 37%,
      rgba(18, 155, 91, 0.2),
      transparent 28rem
    ),
    #0f1315;
}

.app-showcase-copy {
  position: sticky;
  top: 130px;
  padding-top: 70px;
}

.app-points {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--knoq-rule);
}

.app-points span {
  display: flex;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--knoq-rule);
  color: #dce1de;
  font-size: 13px;
}

.app-points b {
  color: var(--knoq-yellow);
  font-family: "DM Mono", monospace;
}

.app-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 24px;
}

.app-capture {
  margin: 0;
}

.app-capture:nth-child(even) {
  transform: translateY(110px);
}

.app-capture figcaption {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 12px;
  padding: 18px 4px 0;
}

.app-capture figcaption span {
  grid-row: 1 / 3;
  color: var(--knoq-yellow);
  font:
    700 10px/1.4 "DM Mono",
    monospace;
}

.app-capture figcaption b {
  font-size: 15px;
}
.app-capture figcaption small {
  color: #919a96;
  font-size: 11px;
  line-height: 1.45;
}

.store-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 700px;
  overflow: hidden;
  padding: 100px max(5.2vw, calc((100vw - 1180px) / 2));
  background: var(--knoq-mist);
  color: var(--knoq-ink);
}

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

.store-copy .premium-eyebrow {
  color: var(--knoq-green);
}
.store-copy h2 em {
  color: var(--knoq-green);
}
.store-copy > p {
  max-width: 590px;
  color: #46534d;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 206px;
  min-height: 66px;
  padding: 11px 17px;
  border-radius: 14px;
  background: var(--knoq-ink);
  color: white;
  box-shadow: 0 15px 32px rgba(12, 15, 17, 0.14);
}

.store-badge > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.store-badge small {
  color: #bdc4c0;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.store-badge b {
  font-size: 21px;
  line-height: 1;
}

.apple-mark {
  position: relative;
  color: white;
  font-size: 28px;
  line-height: 1;
}

.apple-mark::before {
  content: "";
  position: absolute;
  left: 11px;
  top: -5px;
  width: 7px;
  height: 4px;
  border-radius: 100% 0;
  background: white;
  transform: rotate(-32deg);
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid var(--knoq-yellow);
  filter: drop-shadow(-7px 0 0 #27b36b);
}

.text-link {
  display: inline-flex;
  gap: 22px;
  margin-top: 30px;
  color: var(--knoq-ink);
  font-weight: 800;
  text-decoration: none;
}

.store-norb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.store-norb img {
  width: min(360px, 70%);
  filter: drop-shadow(0 34px 34px rgba(13, 32, 23, 0.24));
}

.store-norb figcaption {
  position: absolute;
  right: 0;
  bottom: 14%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 250px;
  padding: 18px;
  border-radius: 16px;
  background: var(--knoq-ink);
  color: white;
  box-shadow: 0 20px 54px rgba(12, 15, 17, 0.22);
}

.store-norb b {
  font-size: 14px;
  line-height: 1.4;
}

.store-orbit i {
  position: absolute;
  right: 10%;
  top: 50%;
  border: 1px solid rgba(15, 143, 82, 0.17);
  border-radius: 50%;
  transform: translate(20%, -50%);
}

.store-orbit i:nth-child(1) {
  width: 340px;
  height: 340px;
}
.store-orbit i:nth-child(2) {
  width: 520px;
  height: 520px;
}
.store-orbit i:nth-child(3) {
  width: 710px;
  height: 710px;
}

.video-showcase {
  background: #0a0d0f;
}

.video-heading {
  display: block;
  max-width: min(100%, 1060px);
}

.video-heading .premium-eyebrow {
  margin-bottom: 26px;
}

.video-heading h2 {
  max-width: 1060px;
  font-size: clamp(56px, 5vw, 76px);
  line-height: 0.96;
}
.video-heading > p:last-child {
  max-width: 650px;
  margin: 26px 0 0;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  margin-top: 68px;
}

.video-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--knoq-rule);
  border-radius: 24px;
  background: var(--knoq-panel);
}

.video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
  object-fit: cover;
}

.video-grid figcaption {
  display: grid;
  gap: 7px;
  padding: 22px 24px 26px;
}

.video-grid figcaption span,
.norb-video-tile small {
  color: var(--knoq-yellow);
  font:
    700 9px/1.2 "DM Mono",
    monospace;
  letter-spacing: 1px;
}

.video-grid figcaption b {
  font-size: 18px;
}
.video-grid figcaption small {
  color: #8e9793;
  font-size: 12px;
}

.norb-video-tile {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 240px;
  overflow: hidden;
  padding: 0 28px 0 0;
  border: 1px solid rgba(255, 198, 46, 0.3);
  border-radius: 24px;
  background: linear-gradient(120deg, #102c20, #0d1511);
  color: white;
  text-align: left;
  cursor: pointer;
}

.norb-video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.norb-video-tile > span {
  display: grid;
  gap: 10px;
}
.norb-video-tile b {
  font-size: 18px;
  line-height: 1.35;
}
.norb-video-tile em {
  color: var(--knoq-yellow);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

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

.audience-split article {
  min-height: 720px;
  padding: 120px max(5.2vw, calc((50vw - 590px) / 2 + 4vw));
}

.audience-customer {
  background: var(--knoq-yellow);
  color: var(--knoq-ink);
}

.audience-pro {
  background: var(--knoq-green);
}

.audience-customer .premium-eyebrow,
.audience-pro .premium-eyebrow {
  color: currentColor;
  opacity: 0.75;
}

.audience-split h2 em {
  color: currentColor;
  opacity: 0.68;
}

/* Give the split-audience headlines room to breathe around descenders. */
.audience-split h2 {
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.audience-split h2 em {
  display: inline-block;
  margin-top: 0.14em;
  line-height: 0.94;
  vertical-align: top;
}
.audience-split article > p {
  color: currentColor;
  opacity: 0.78;
}

.audience-split ul {
  display: grid;
  gap: 0;
  margin: 34px 0 40px;
  padding: 0;
  list-style: none;
  border-top: 1px solid currentColor;
}

.audience-split li {
  position: relative;
  padding: 18px 0 18px 30px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
}

.audience-split li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 900;
}

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

.trust-section {
  background:
    radial-gradient(
      circle at 12% 80%,
      rgba(255, 198, 46, 0.08),
      transparent 25rem
    ),
    #0c0f11;
}

.trust-heading {
  max-width: 870px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.trust-grid article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--knoq-rule);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.trust-grid article > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(32, 184, 114, 0.1);
  color: var(--knoq-green-bright);
  font-size: 24px;
}

.trust-grid h3 {
  margin: 48px 0 12px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.trust-grid p {
  margin: 0;
  color: #a0a9a5;
  font-size: 13px;
  line-height: 1.65;
}

.fairness-rule {
  display: grid;
  grid-template-columns: 0.45fr 1.1fr 0.8fr;
  gap: 40px;
  align-items: start;
  margin-top: 22px;
  padding: 36px;
  border-radius: 22px;
  background: var(--knoq-panel-soft);
}

.fairness-rule > span {
  color: var(--knoq-yellow);
  font:
    700 9px/1.5 "DM Mono",
    monospace;
  letter-spacing: 1px;
}

.fairness-rule h3,
.fairness-rule p {
  margin: 0;
}
.fairness-rule h3 {
  font-size: 23px;
  line-height: 1.35;
  text-wrap: balance;
}

.fairness-rule h3 span {
  display: block;
}

.fairness-rule h3 span + span {
  margin-top: 0.08em;
}
.fairness-rule p {
  color: #9fa8a4;
  font-size: 13px;
  line-height: 1.65;
}

.premium-early-access {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 84px;
  background: var(--knoq-paper);
  color: var(--knoq-ink);
}

.premium-early-access .premium-eyebrow {
  color: var(--knoq-green);
}
.premium-early-access .early-access-intro {
  display: block;
}
.premium-early-access .early-access-intro > p {
  color: #4e5954;
}

.early-proof {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid rgba(12, 15, 17, 0.15);
}

.early-proof span {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(12, 15, 17, 0.15);
  font-size: 13px;
  font-weight: 700;
}

.early-proof b {
  color: var(--knoq-green);
  font-family: "DM Mono", monospace;
}

.premium-early-access .early-access-forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.premium-early-access .launch-form {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(12, 15, 17, 0.13);
  border-radius: 24px;
  background: white;
  color: var(--knoq-ink);
  box-shadow: 0 20px 55px rgba(12, 15, 17, 0.08);
}

.premium-early-access .launch-form.launch-form-provider {
  background: #12251b;
  color: white;
}

.premium-early-access .launch-form h3 {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.premium-early-access
  .launch-form
  > p:not(.form-kicker):not(.form-note):not(.form-status):not(.form-honeypot) {
  min-height: 72px;
}

.premium-early-access .launch-form label span {
  color: currentColor;
  opacity: 0.7;
}

.premium-early-access .launch-form input {
  min-height: 48px;
}

.premium-early-access .launch-form button {
  min-height: 52px;
  border-radius: 999px;
}

.finale {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: center;
  min-height: 650px;
  overflow: hidden;
  padding: 90px max(5.2vw, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(
      circle at 24% 70%,
      rgba(32, 184, 114, 0.28),
      transparent 22rem
    ),
    #08100c;
}

.finale > img {
  align-self: center;
  justify-self: center;
  width: min(390px, 100%);
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.4));
}

.finale > div {
  align-self: center;
  padding: 0 0 0 50px;
}

.finale h2 {
  max-width: 800px;
}

.investor-link {
  color: var(--knoq-paper);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.finale-note {
  margin-top: 22px;
  color: #708078;
  font:
    600 9px/1.5 "DM Mono",
    monospace;
}

.premium-footer {
  max-width: none;
  padding: 48px max(5.2vw, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--knoq-rule);
  background: #080a0b;
}

.premium-footer .footer-mark {
  width: 118px;
  height: auto;
  overflow: visible;
}

.premium-footer .footer-mark img {
  width: 100%;
  height: auto;
  max-width: 100%;
  transform: none;
  mix-blend-mode: normal;
}

.premium-site dialog {
  z-index: 200;
}

@media (max-width: 1100px) {
  .premium-hero {
    grid-template-columns: 1fr 0.72fr;
    min-height: 900px;
  }
  .hero-product {
    transform: scale(0.9);
    transform-origin: center right;
  }
  .app-showcase {
    grid-template-columns: 1fr;
  }
  .app-showcase-copy {
    position: static;
    max-width: 780px;
    padding-top: 0;
  }
  .app-stage {
    max-width: 820px;
    margin: 30px auto 80px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .premium-early-access {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .premium-nav {
    width: calc(100% - 36px);
    height: 82px;
  }
  .nav-links {
    display: none;
  }
  .premium-nav .logo-lockup {
    width: 128px;
  }
  .nav-cta {
    padding: 11px 14px;
    font-size: 11px;
  }
  .premium-hero {
    display: block;
    min-height: 0;
    padding: 122px 22px 70px;
    background:
      radial-gradient(
        circle at 68% 50%,
        rgba(16, 143, 82, 0.22),
        transparent 26rem
      ),
      var(--knoq-ink);
  }
  .premium-hero h1 {
    font-size: clamp(47px, 14vw, 74px);
  }
  .premium-hero h1 span {
    font-size: 0.72em;
  }
  .hero-lede {
    font-size: 17px;
  }
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .hero-proof span {
    min-height: 70px;
  }
  .hero-product {
    height: 680px;
    margin-top: 32px;
    transform: none;
  }
  .hero-phone-wrap {
    left: 50%;
    width: min(300px, 74vw);
    transform: translateX(-50%) rotate(3deg);
  }
  .hero-float-availability {
    top: 90px;
    right: 0;
  }
  .hero-float-privacy {
    right: 0;
    bottom: 92px;
  }
  .hero-norb {
    left: -18px;
    bottom: 8px;
  }
  .brand-statement {
    padding: 94px 22px;
  }
  .how-it-works,
  .video-showcase,
  .trust-section,
  .premium-early-access {
    padding: 98px 22px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid li {
    min-height: 280px;
  }
  .process-icon {
    margin-top: 34px;
  }
  .app-showcase {
    display: block;
    padding: 98px 22px;
  }
  .app-stage {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    overflow-x: auto;
    margin: 55px -22px 0;
    padding: 0 22px 80px;
    scroll-snap-type: x mandatory;
  }
  .app-capture {
    scroll-snap-align: center;
  }
  .app-capture:nth-child(even) {
    transform: translateY(44px);
  }
  .store-section {
    display: block;
    min-height: 840px;
    padding: 90px 22px 0;
  }
  .store-norb {
    height: 390px;
    margin-top: 30px;
  }
  .store-norb img {
    width: 280px;
  }
  .store-orbit i {
    right: 30%;
    top: 76%;
  }
  .video-heading {
    display: block;
  }
  .video-heading > p:last-child {
    margin-top: 22px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .norb-video-tile {
    grid-template-columns: 140px 1fr;
  }
  .audience-split {
    grid-template-columns: 1fr;
  }
  .audience-split article {
    min-height: 0;
    padding: 96px 22px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .fairness-rule {
    grid-template-columns: 1fr;
  }
  .premium-early-access .early-access-forms {
    grid-template-columns: 1fr;
  }
  .finale {
    grid-template-columns: 1fr;
    padding: 82px 22px 0;
  }
  .finale > div {
    grid-row: 1;
    padding: 0;
  }
  .finale > img {
    grid-row: 2;
    width: min(330px, 80%);
    margin: 50px auto 0;
  }
  .premium-footer {
    padding: 42px 22px;
  }
}

@media (max-width: 520px) {
  .premium-nav .logo-lockup {
    width: 116px;
  }
  .premium-nav .logo-lockup img {
    width: 196px;
    transform: translate(-25px, -7px);
  }
  .nav-cta {
    padding: 10px 12px;
  }
  .premium-eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .premium-actions {
    align-items: stretch;
  }
  .premium-actions .button {
    width: 100%;
  }
  .hero-product {
    height: 610px;
  }
  .hero-float {
    padding: 12px;
  }
  .hero-float-availability {
    right: -10px;
  }
  .hero-float-privacy {
    right: -8px;
    bottom: 74px;
  }
  .hero-norb img {
    width: 94px;
  }
  .brand-statement p {
    font-size: 25px;
  }
  .brand-statement h2 {
    font-size: 52px;
  }
  .section-heading h2,
  .app-showcase-copy h2,
  .store-copy h2,
  .audience-split h2,
  .early-access-intro h2,
  .finale h2 {
    font-size: 48px;
  }
  .app-stage {
    grid-template-columns: repeat(4, 72vw);
    gap: 18px;
  }
  .app-capture:nth-child(even) {
    transform: none;
  }
  .store-badges {
    display: grid;
  }
  .store-badge {
    width: 100%;
  }
  .norb-video-tile {
    grid-template-columns: 112px 1fr;
    min-height: 190px;
    padding-right: 18px;
  }
  .norb-video-tile b {
    font-size: 15px;
  }
  .premium-early-access .launch-form {
    padding: 24px 18px;
  }
  .premium-footer {
    display: grid;
    gap: 26px;
  }
}

/* 2026-08-25: owner-approved WHAT-first hero and first-scroll handoff. */
.premium-hero h1.hero-what-title {
  max-width: 760px;
  font-size: clamp(62px, 6.2vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.premium-hero .hero-lede--sequence {
  gap: 12px;
  max-width: 690px;
}

.premium-hero .hero-lede--sequence .hero-lede__line:first-child {
  max-width: 680px;
  color: var(--knoq-paper);
  font-size: clamp(21px, 1.75vw, 27px);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.premium-hero .hero-lede__line--availability {
  max-width: 650px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.45;
}

.premium-hero .premium-actions {
  margin-top: 30px;
}

.premium-hero .hero-boundary {
  margin-top: 22px;
}

.hero-handoff {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 7vw, 108px) max(5vw, calc((100vw - 1320px) / 2));
  border-top: 1px solid rgba(247, 245, 239, 0.1);
  border-bottom: 1px solid rgba(247, 245, 239, 0.1);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(255, 198, 46, 0.09),
      transparent 32%
    ),
    radial-gradient(
      circle at 86% 72%,
      rgba(15, 143, 82, 0.18),
      transparent 38%
    ),
    #0d1512;
  color: var(--knoq-paper);
}

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

.hero-handoff h2 {
  margin: 0;
  font-size: clamp(42px, 3.4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-handoff .trades-professionals-ampersand {
  display: inline-block;
  margin-inline: 0.14em;
  color: rgba(247, 245, 239, 0.72);
  font-size: 0.68em;
  font-weight: 600;
  line-height: 1;
  vertical-align: 0.08em;
}

.hero-handoff h2 > span,
.hero-handoff h2 > em {
  display: block;
}

.hero-handoff h2 > span {
  color: var(--knoq-paper);
}

.hero-handoff h2 > em {
  margin-top: 0.12em;
  color: var(--knoq-yellow);
  font-style: normal;
}

.hero-handoff__decision {
  display: flex;
  gap: 0.38em;
  margin: 28px 0 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.hero-handoff__decision strong:first-child {
  color: var(--knoq-paper);
}

.hero-handoff__decision strong:last-child {
  color: #77e2ae;
}

.hero-handoff__routes {
  display: grid;
  gap: 16px;
  align-content: center;
}

.hero-handoff .hero-audience-routes {
  max-width: none;
  margin-top: 0;
}

.hero-handoff .hero-audience-routes a {
  min-height: 78px;
  padding: 17px 18px;
  background: rgba(247, 245, 239, 0.035);
}

.hero-handoff__demo {
  justify-self: start;
}

@media (max-width: 980px) {
  .premium-hero h1.hero-what-title {
    font-size: clamp(54px, 7.5vw, 76px);
  }

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

  .hero-handoff__statement {
    max-width: 760px;
  }

  .hero-handoff__routes {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .premium-hero h1.hero-what-title {
    font-size: clamp(46px, 14.5vw, 62px);
  }

  .premium-hero .hero-lede--sequence .hero-lede__line:first-child {
    font-size: clamp(19px, 5.4vw, 23px);
  }

  .hero-handoff {
    gap: 34px;
    padding: 64px 20px;
  }

  .hero-handoff h2 {
    font-size: clamp(38px, 11.5vw, 52px);
  }

  .hero-handoff__decision {
    margin-top: 22px;
    font-size: clamp(23px, 7.2vw, 30px);
  }

  .hero-handoff .hero-audience-routes {
    grid-template-columns: 1fr;
  }

  .hero-handoff .hero-audience-routes a {
    min-height: 68px;
  }

  .hero-handoff__demo {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-pulse {
    animation: none;
  }
  * {
    scroll-behavior: auto !important;
  }
}

/* NOW WHAT: keep capital interest visible without presenting investors as a
   third side of the customer-professional marketplace. */
.investor-next-step {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 52px auto 0;
  padding: 28px 32px;
  border: 1px solid rgba(247, 245, 240, 0.16);
  border-left: 4px solid var(--yellow);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 50%, rgba(20, 136, 75, 0.18), transparent 34%),
    rgba(247, 245, 240, 0.035);
}

.investor-next-step p {
  margin: 0 0 8px;
  color: var(--yellow);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.investor-next-step h3 {
  margin: 0 0 7px;
  color: var(--paper);
  font-size: clamp(24px, 2.2vw, 36px);
  letter-spacing: -0.04em;
}

.investor-next-step div > span {
  color: rgba(247, 245, 240, 0.72);
  line-height: 1.55;
}

.investor-next-step a {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .investor-next-step {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100% - 32px);
    margin-top: 34px;
    padding: 24px;
  }

  .investor-next-step a {
    width: 100%;
    white-space: normal;
  }
}

/* 2026-08-25: undated service rollout pathway and category interest handoff. */
.rollout-pathway {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 10vw, 156px) max(5vw, calc((100vw - 1320px) / 2 + 40px));
  color: var(--porcelain, #f7f5f0);
  background:
    radial-gradient(
      circle at 14% 7%,
      rgba(255, 201, 40, 0.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 88%,
      rgba(20, 136, 75, 0.18),
      transparent 31%
    ),
    #101216;
}

.rollout-pathway::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(247, 245, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 245, 240, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.rollout-intro,
.rollout-track,
.rollout-interest-note {
  position: relative;
  z-index: 1;
}

.rollout-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.52fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.rollout-intro .premium-eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -8px;
  color: #ffc928;
}

.rollout-intro h2 {
  margin: 0;
  color: #f7f5f0;
  font-size: clamp(48px, 5.8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.rollout-intro h2 em {
  color: #ffc928;
  font-style: normal;
}

.rollout-intro h2 em > span {
  display: block;
}

.rollout-intro > p:last-child {
  max-width: 520px;
  margin: 0 0 8px;
  color: rgba(247, 245, 240, 0.72);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.72;
}

.rollout-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.45vw, 22px);
  margin-top: clamp(58px, 7vw, 96px);
  perspective: 1600px;
}

.rollout-glass-canvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.rollout-track::before {
  position: absolute;
  top: 30px;
  right: 7%;
  left: 7%;
  z-index: -1;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    #ffc928,
    #14884b 38%,
    rgba(233, 244, 237, 0.44)
  );
  box-shadow: 0 0 26px rgba(255, 201, 40, 0.2);
}

.rollout-phase {
  --phase-accent: #e9f4ed;
  --phase-glow: rgba(233, 244, 237, 0.1);
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 800px;
  flex-direction: column;
  overflow: hidden;
  padding: 40px 22px 38px;
  border: 1px solid rgba(247, 245, 240, 0.26);
  border-radius: 44px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.16), transparent 8% 92%, rgba(255, 255, 255, 0.11)),
    linear-gradient(145deg, #3b4146 0%, #15181b 10%, #07090b 52%, #24292d 92%, #42494e 100%);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.42),
    0 2px 0 rgba(255, 255, 255, 0.14) inset,
    0 -2px 0 rgba(0, 0, 0, 0.8) inset;
}

.rollout-phase::before {
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 3;
  width: 64px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 81% 50%, #173846 0 2px, #050708 3px 5px, transparent 6px),
    linear-gradient(180deg, #020304, #0b0d0f);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.7),
    0 5px 12px rgba(0, 0, 0, 0.42);
}

.rollout-phase::after {
  position: absolute;
  inset: 7px;
  z-index: -1;
  border: 1px solid rgba(247, 245, 240, 0.1);
  border-radius: 37px;
  content: "";
  background:
    radial-gradient(circle at 18% 0, var(--phase-glow), transparent 34%),
    radial-gradient(circle at 84% 92%, rgba(20, 136, 75, 0.1), transparent 34%),
    linear-gradient(180deg, #171a1e, #0d1013 64%, #101519);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.76),
    0 0 34px rgba(0, 0, 0, 0.5) inset;
}

.rollout-phase > * {
  position: relative;
  z-index: 1;
}

.rollout-phase--one {
  --phase-accent: #ffc928;
  --phase-glow: rgba(255, 201, 40, 0.19);
  border-color: rgba(255, 201, 40, 0.58);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 201, 40, 0.08),
    0 2px 0 rgba(255, 240, 174, 0.2) inset,
    0 -2px 0 rgba(0, 0, 0, 0.8) inset;
  min-height: 650px;
}

.rollout-phase--two {
  --phase-accent: #38b66e;
  --phase-glow: rgba(56, 182, 110, 0.13);
}

.rollout-phase--three {
  --phase-accent: #a8d5ba;
  --phase-glow: rgba(168, 213, 186, 0.12);
}

.rollout-phase header {
  position: relative;
  min-height: 148px;
  padding: 42px 4px 17px;
  border-bottom: 1px solid rgba(247, 245, 240, 0.11);
}

.rollout-phase-number {
  position: absolute;
  top: -12px;
  right: 0;
  color: rgba(247, 245, 240, 0.075);
  font-family: "Manrope", sans-serif;
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.rollout-phase header > p,
.rollout-phase header > small,
.rollout-phase-prompt,
.rollout-interest-note > div > p {
  font-family: "DM Mono", monospace;
}

.rollout-phase header > p {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--phase-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.rollout-phase header > p i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--phase-accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--phase-accent) 12%, transparent);
}

.rollout-phase h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #f7f5f0;
  font-size: clamp(31px, 2.6vw, 42px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.rollout-phase header > small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 11px;
  color: rgba(247, 245, 240, 0.55);
  font-size: 10px;
  line-height: 1.5;
}

.rollout-phase ul {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.rollout-phase li {
  border-bottom: 1px solid rgba(247, 245, 240, 0.075);
}

.rollout-phase li:last-child {
  border-bottom: 0;
}

.rollout-phase li > span,
.rollout-phase li > a {
  display: flex;
  min-height: 38px;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 7px 5px;
  color: rgba(247, 245, 240, 0.84);
  font-size: 11.5px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.rollout-phase li > a {
  border-radius: 10px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    padding 180ms ease;
}

.rollout-phase li > a b {
  flex: 0 0 auto;
  color: var(--phase-accent);
  font-size: 14px;
}

.rollout-phase li > a:hover,
.rollout-phase li > a:focus-visible {
  padding-right: 9px;
  padding-left: 9px;
  color: #fff;
  outline: none;
  background: rgba(247, 245, 240, 0.08);
}

.rollout-phase li > a:focus-visible {
  box-shadow: 0 0 0 2px var(--phase-accent);
}

.rollout-phase-prompt {
  margin: auto 4px 4px;
  padding-top: 20px;
  color: var(--phase-accent);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rollout-interest-note {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(280px, 1fr) auto;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  margin-top: 20px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-radius: 24px;
  background: linear-gradient(
    100deg,
    rgba(255, 201, 40, 0.09),
    rgba(20, 136, 75, 0.13)
  );
}

.rollout-interest-note > div > p {
  margin: 0 0 7px;
  color: #ffc928;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.rollout-interest-note h3 {
  margin: 0;
  color: #f7f5f0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.rollout-interest-note h3 span {
  color: #d7eadf;
  white-space: nowrap;
}

.rollout-interest-copy {
  display: grid;
  gap: 6px;
  margin: 0;
}

.rollout-interest-copy strong,
.rollout-interest-copy span,
.rollout-interest-copy small {
  display: block;
}

.rollout-interest-copy strong {
  color: #f7f5f0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.rollout-interest-copy span {
  color: rgba(247, 245, 240, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.rollout-interest-copy small {
  margin-top: 3px;
  color: #b7d9c4;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.rollout-interest-note > a {
  display: inline-flex;
  min-height: 48px;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid #ffc928;
  border-radius: 999px;
  color: #101216;
  background: #ffc928;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.rollout-interest-note > a:hover,
.rollout-interest-note > a:focus-visible {
  outline: 2px solid #f7f5f0;
  outline-offset: 3px;
}

.rollout-interest-form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(20, 136, 75, 0.25);
  border-radius: 12px;
  color: #0a613f;
  background: rgba(233, 244, 237, 0.82);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .rollout-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rollout-track::before {
    display: none;
  }

  .rollout-phase {
    min-height: 800px;
  }

  .rollout-phase--one {
    min-height: 650px;
  }

  .rollout-interest-note {
    grid-template-columns: minmax(300px, 0.75fr) 1fr;
  }

  .rollout-interest-note > a {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .rollout-pathway {
    padding: 82px 24px;
  }

  .rollout-intro {
    grid-template-columns: 1fr;
  }

  .rollout-intro .premium-eyebrow {
    margin-bottom: -4px;
  }

  .rollout-intro h2 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .rollout-track {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 50px;
    padding: 0;
  }

  .rollout-phase {
    width: min(100%, 420px);
    min-height: 880px;
    margin-inline: auto;
    border-radius: 44px;
  }

  .rollout-phase header {
    min-height: 154px;
  }

  .rollout-phase-number {
    font-size: 78px;
  }

  .rollout-phase li > span,
  .rollout-phase li > a {
    min-height: 50px;
    font-size: 14px;
  }

  .rollout-phase--one {
    min-height: 650px;
  }

  .rollout-interest-note {
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 25px 22px;
  }

  .rollout-interest-note > a {
    grid-column: auto;
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .rollout-pathway {
    padding-right: 18px;
    padding-left: 18px;
  }

  .rollout-track {
    padding: 0;
  }

  .rollout-phase {
    min-height: 870px;
    padding: 38px 19px 36px;
    border-radius: 40px;
  }

  .rollout-phase::after {
    border-radius: 33px;
  }

  .rollout-phase--one {
    min-height: 630px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rollout-phase li > a {
    transition: none;
  }
}

/* 2026-08-25: roadmap-to-professional-register visual handoff. */
.rollout-pathway + .premium-early-access,
.premium-early-access.is-roadmap-handoff {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 201, 40, 0.2);
  background:
    radial-gradient(circle at 8% 0, rgba(255, 201, 40, 0.1), transparent 30%),
    radial-gradient(circle at 92% 54%, rgba(32, 184, 114, 0.13), transparent 34%),
    #080d0b;
}

.rollout-pathway + .premium-early-access::before,
.premium-early-access.is-roadmap-handoff::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 1px;
  height: clamp(42px, 6vw, 84px);
  content: "";
  background: linear-gradient(#ffc928, rgba(32, 184, 114, 0));
  box-shadow: 0 0 24px rgba(255, 201, 40, 0.35);
}

.premium-early-access .launch-form.launch-form-provider {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1.18fr);
  gap: 0;
  margin-top: clamp(42px, 5vw, 72px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(119, 226, 174, 0.32);
  border-radius: 34px;
  background: #0c1511;
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(247, 245, 239, 0.035) inset,
    0 0 90px rgba(32, 184, 114, 0.08);
}

.premium-early-access .launch-form.launch-form-provider::before {
  position: absolute;
  z-index: -1;
  top: -190px;
  left: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 201, 40, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 54px rgba(255, 201, 40, 0.025),
    0 0 0 108px rgba(255, 201, 40, 0.018);
  pointer-events: none;
}

.professional-register-story {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(42px, 5vw, 70px);
  color: #f7f5ef;
  background:
    linear-gradient(155deg, rgba(255, 201, 40, 0.075), transparent 38%),
    linear-gradient(180deg, rgba(247, 245, 239, 0.025), transparent),
    #0c1511;
}

.premium-early-access .professional-register-story .form-kicker {
  margin: 0;
  color: #ffc928;
  font: 800 11px/1.35 "DM Mono", monospace;
  letter-spacing: 0.11em;
}

.professional-register-signal {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 22px 0 0;
  color: #77e2ae;
  font: 700 10px/1.4 "DM Mono", monospace;
  letter-spacing: 0.08em;
}

.professional-register-signal span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #77e2ae;
  box-shadow:
    0 0 0 7px rgba(119, 226, 174, 0.09),
    0 0 22px rgba(119, 226, 174, 0.42);
}

.premium-early-access
  .launch-form-provider
  .professional-register-story
  h3 {
  max-width: 620px;
  margin: clamp(34px, 4.5vw, 64px) 0 0;
  color: #f7f5ef;
  font-size: clamp(52px, 5.4vw, 82px);
  line-height: 0.91;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.premium-early-access .professional-register-story .professional-register-lead {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(247, 245, 239, 0.76);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.62;
}

.professional-register-steps {
  display: grid;
  gap: 0;
  margin: clamp(38px, 5vw, 66px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(247, 245, 239, 0.14);
}

.professional-register-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(247, 245, 239, 0.14);
}

.professional-register-steps li > b {
  padding-top: 3px;
  color: #ffc928;
  font: 800 10px/1 "DM Mono", monospace;
}

.professional-register-steps li > span {
  color: rgba(247, 245, 239, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.professional-register-steps strong {
  display: block;
  margin-bottom: 3px;
  color: #f7f5ef;
  font-size: 14px;
}

.premium-early-access .professional-register-story .professional-register-boundary {
  margin: 28px 0 0;
  padding-left: 16px;
  border-left: 2px solid #77e2ae;
  color: rgba(247, 245, 239, 0.58);
  font-size: 11px;
  line-height: 1.65;
}

.professional-register-fields {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(42px, 5vw, 70px);
  color: #0b1711;
  background:
    radial-gradient(circle at 92% 6%, rgba(255, 201, 40, 0.24), transparent 24%),
    linear-gradient(145deg, #f5f3eb, #e6f1e9 72%);
}

.professional-register-fields-head > p {
  margin: 0;
  color: #0a613f;
  font: 800 11px/1.4 "DM Mono", monospace;
  letter-spacing: 0.1em;
}

.professional-register-fields-head h4 {
  margin: 12px 0 0;
  color: #0b1711;
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.professional-register-fields-head > span {
  display: block;
  margin-top: 13px;
  color: rgba(11, 23, 17, 0.64);
  font-size: 13px;
}

.professional-register-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
  margin-top: clamp(34px, 4vw, 50px);
}

.premium-early-access .professional-register-fields .form-field {
  display: grid;
  gap: 9px;
  margin: 0;
  color: #0b1711;
}

.premium-early-access .professional-register-fields .form-field > span {
  color: #214333;
  font: 800 11px/1.3 "DM Mono", monospace;
  letter-spacing: 0.035em;
}

.premium-early-access
  .launch-form-provider
  .professional-register-fields
  input {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(11, 23, 17, 0.22);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.74);
  color: #0b1711;
  font-size: 16px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.premium-early-access
  .launch-form-provider
  .professional-register-fields
  input:focus {
  border-color: #0a613f;
  outline: 3px solid rgba(10, 97, 63, 0.18);
  outline-offset: 2px;
}

.premium-early-access .professional-register-fields .rollout-interest-form-status {
  margin: 26px 0 0;
  padding: 15px 17px;
  border: 1px solid rgba(10, 97, 63, 0.26);
  border-radius: 13px;
  color: #052f1f;
  background: #cce5d5;
  font-size: 11px;
  line-height: 1.55;
  box-shadow: 0 10px 30px rgba(10, 97, 63, 0.08);
}

.premium-early-access .professional-register-fields > button[type="submit"] {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 0;
  padding: 0 22px;
  border: 1px solid #0a613f;
  border-radius: 999px;
  color: #fff;
  background: #0a613f;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 16px 32px rgba(10, 97, 63, 0.2);
}

.premium-early-access .professional-register-fields > button[type="submit"]:hover,
.premium-early-access .professional-register-fields > button[type="submit"]:focus-visible {
  color: #101216;
  background: #ffc928;
  border-color: #ffc928;
  outline: 3px solid rgba(10, 97, 63, 0.2);
  outline-offset: 3px;
}

.premium-early-access .professional-register-fields .form-note,
.premium-early-access .professional-register-fields .form-status,
.premium-early-access .professional-register-fields .form-error-summary {
  margin: 15px 0 0;
  color: rgba(11, 23, 17, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.premium-early-access .professional-register-fields .form-note a {
  color: #06472f;
  text-underline-offset: 3px;
}

.premium-early-access .professional-register-fields .form-status {
  color: #06472f;
  font-weight: 750;
}

.premium-early-access .professional-register-fields .form-error-summary {
  padding: 12px 14px;
  border-left: 3px solid #a83c2b;
  color: #6e2116;
  background: rgba(255, 255, 255, 0.62);
}

.premium-early-access .professional-register-fields .form-follow-up {
  margin-top: 24px;
  border-color: rgba(10, 97, 63, 0.2);
  background: rgba(255, 255, 255, 0.48);
  color: #0b1711;
}

.premium-early-access .professional-register-fields .form-follow-up > b,
.premium-early-access .professional-register-fields .form-follow-up small {
  color: #0a613f;
}

.premium-early-access .professional-register-fields .form-follow-up button {
  color: #0b1711;
  border-color: rgba(10, 97, 63, 0.35);
}

@media (max-width: 980px) {
  .premium-early-access .launch-form.launch-form-provider {
    grid-template-columns: 1fr;
  }

  .professional-register-story,
  .professional-register-fields {
    padding: 48px;
  }

  .premium-early-access
    .launch-form-provider
    .professional-register-story
    h3 {
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .premium-early-access .launch-form.launch-form-provider {
    border-radius: 24px;
  }

  .professional-register-story,
  .professional-register-fields {
    padding: 32px 24px;
  }

  .premium-early-access .professional-register-story h3 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .professional-register-field-grid {
    grid-template-columns: 1fr;
  }

  .professional-register-signal {
    align-items: flex-start;
  }

  .professional-register-signal span {
    margin-top: 2px;
  }
}

/* 2026-08-22: composition and responsive-density refinement. */
.premium-hero {
  min-height: 860px;
  padding-top: 146px;
  padding-bottom: 72px;
}

.hero-proof {
  gap: 0;
  margin-top: 38px;
  padding-top: 20px;
  border: 0;
  border-top: 1px solid var(--knoq-rule);
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.hero-proof span {
  gap: 6px;
  min-height: 0;
  padding: 0 22px;
  border-left: 1px solid var(--knoq-rule);
  background: transparent;
}

.hero-proof span:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-product {
  height: 620px;
}

.hero-phone-wrap {
  width: 302px;
}

.hero-float-privacy,
.hero-norb {
  display: none;
}

.brand-statement {
  padding-top: 88px;
  padding-bottom: 88px;
}

.brand-statement p {
  font-size: clamp(26px, 3.25vw, 48px);
}

.brand-statement h2 {
  font-size: clamp(48px, 6.5vw, 94px);
}

.brand-statement-signoff {
  margin-top: 24px;
}

.how-it-works,
.video-showcase,
.trust-section,
.premium-early-access {
  padding-top: 118px;
  padding-bottom: 118px;
}

.process-grid {
  gap: 24px;
  margin-top: 62px;
}

.process-grid li {
  min-height: 300px;
  padding: 30px;
}

.process-icon {
  width: 62px;
  height: 62px;
  margin-top: 36px;
  font-size: 27px;
}

.app-showcase {
  display: block;
  padding-top: 124px;
  padding-bottom: 124px;
}

.app-showcase-copy {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  column-gap: 84px;
  align-items: end;
  max-width: none;
  padding: 0;
}

.app-showcase-copy .premium-eyebrow,
.app-showcase-copy h2 {
  grid-column: 1;
}

.app-showcase-copy > p:not(.capture-note),
.app-showcase-copy .app-points,
.app-showcase-copy .capture-note {
  grid-column: 2;
}

.app-showcase-copy > p:not(.capture-note) {
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
}

.app-points {
  margin-top: 28px;
}

.app-points span {
  padding: 13px 0;
}

.app-stage {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  max-width: 1180px;
  margin: 72px auto 0;
}

.app-capture:nth-child(even) {
  transform: none;
}

.app-swipe-hint {
  display: none;
}

.store-section {
  min-height: 620px;
  padding-top: 84px;
  padding-bottom: 84px;
}

.store-norb img {
  width: min(320px, 68%);
}

.video-grid {
  gap: 28px;
  margin-top: 60px;
}

.audience-split article {
  min-height: 620px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.trust-grid {
  gap: 22px;
  margin-top: 60px;
}

.trust-grid article {
  min-height: 275px;
  padding: 28px;
}

.trust-grid h3 {
  margin-top: 36px;
}

.premium-early-access {
  gap: 72px;
}

.premium-early-access .early-access-forms {
  gap: 24px;
}

.premium-early-access .launch-form {
  padding: 32px;
}

@media (max-width: 1100px) {
  .app-showcase-copy {
    max-width: none;
  }

  .app-stage {
    max-width: 920px;
    margin-top: 64px;
    margin-bottom: 0;
  }
}

@media (max-width: 820px) {
  .premium-hero {
    padding-top: 118px;
    padding-bottom: 58px;
  }

  .hero-proof {
    display: none;
  }

  .hero-boundary {
    margin-top: 18px;
  }

  .hero-product {
    height: 560px;
    margin-top: 24px;
  }

  .hero-phone-wrap {
    width: min(278px, 72vw);
  }

  .brand-statement,
  .how-it-works,
  .video-showcase,
  .trust-section,
  .premium-early-access,
  .app-showcase {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .process-grid {
    gap: 16px;
    margin-top: 48px;
  }

  .process-grid li {
    min-height: 0;
    padding: 26px;
  }

  .process-icon {
    margin-top: 28px;
  }

  .app-showcase-copy {
    display: block;
  }

  .app-swipe-hint {
    display: flex;
    justify-content: space-between;
    margin: 44px 0 0;
    color: var(--knoq-yellow);
    font:
      700 10px/1.2 "DM Mono",
      monospace;
    letter-spacing: 1px;
  }

  .app-stage {
    grid-template-columns: repeat(4, minmax(250px, 72vw));
    gap: 22px;
    max-width: none;
    margin-top: 18px;
    margin-bottom: 0;
    padding-bottom: 26px;
  }

  .app-capture:nth-child(even) {
    transform: none;
  }

  .store-section {
    min-height: 760px;
    padding-top: 80px;
  }

  .audience-split article {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .trust-grid article {
    min-height: 230px;
  }

  .premium-early-access .early-access-forms {
    gap: 22px;
  }
}

@media (max-width: 520px) {
  .premium-hero h1 {
    font-size: clamp(45px, 13.4vw, 62px);
  }

  .hero-lede {
    margin-top: 26px;
    line-height: 1.55;
  }

  .premium-actions {
    margin-top: 28px;
  }

  .hero-product {
    height: 520px;
  }

  .app-stage {
    grid-template-columns: repeat(4, 76vw);
  }

  .premium-early-access .launch-form {
    padding: 26px 20px;
  }
}

/* 2026-08-22: anchor Norb as a deliberate store-launch character moment. */
.store-section {
  grid-template-columns: minmax(460px, 0.88fr) minmax(0, 1.12fr);
  grid-template-areas: "norb copy";
  gap: clamp(54px, 5.5vw, 92px);
  min-height: 720px;
  padding-top: clamp(84px, 7vw, 112px);
  padding-bottom: clamp(84px, 7vw, 112px);
}

.store-copy {
  grid-area: copy;
}

.store-norb {
  grid-area: norb;
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(180px, 230px);
  align-items: end;
  align-self: center;
  justify-content: center;
  min-height: 500px;
  padding: 36px 0 28px;
}

.store-norb::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 8%;
  bottom: 42px;
  width: min(320px, 62%);
  height: 54px;
  border-radius: 50%;
  background: rgba(15, 143, 82, 0.12);
  filter: blur(12px);
}

.store-norb img {
  position: relative;
  z-index: 1;
  grid-column: 1;
  width: 100%;
  max-width: 310px;
  align-self: center;
}

.store-norb figcaption {
  position: relative;
  z-index: 2;
  right: auto;
  bottom: auto;
  grid-column: 2;
  width: 100%;
  max-width: 230px;
  margin: 0 0 64px -12px;
}

.store-orbit i {
  right: 6%;
}

@media (max-width: 1180px) {
  .store-section {
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    gap: 44px;
  }

  .store-norb {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 520px;
    padding-bottom: 20px;
  }

  .store-norb img {
    grid-column: 1;
    width: min(280px, 78%);
  }

  .store-norb figcaption {
    grid-column: 1;
    width: min(280px, 88%);
    max-width: 280px;
    margin: 18px 0 0;
  }

  .store-norb::before {
    left: 50%;
    bottom: 106px;
    width: 260px;
    transform: translateX(-50%);
  }
}

@media (max-width: 820px) {
  .store-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "norb";
    gap: 48px;
    min-height: 0;
    padding: 80px 22px 66px;
  }

  .store-norb {
    min-height: 0;
    height: auto;
    margin: 0;
    padding: 10px 0 0;
  }

  .store-norb img {
    width: min(260px, 72vw);
  }

  .store-norb figcaption {
    width: min(320px, 92%);
    max-width: 320px;
    margin-top: 22px;
  }

  .store-norb::before {
    bottom: 80px;
    width: min(250px, 72vw);
  }

  .store-orbit i {
    right: auto;
    top: auto;
    left: 50%;
    bottom: 130px;
    transform: translate(-50%, 50%);
  }
}

@media (max-width: 520px) {
  .store-copy h2 {
    font-size: clamp(43px, 12.4vw, 54px);
  }

  .store-badge {
    min-width: 0;
  }
}

/* 2026-08-22: KNOQ Trust Line — one connected lifecycle, not four feature cards. */
.trust-section {
  position: relative;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(15, 143, 82, 0.12),
      transparent 30rem
    ),
    radial-gradient(
      circle at 8% 88%,
      rgba(255, 198, 46, 0.07),
      transparent 27rem
    ),
    #0c0f11;
}

.trust-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(590px, 1.24fr);
  gap: clamp(64px, 8vw, 126px);
  align-items: start;
}

.trust-heading {
  position: sticky;
  top: 122px;
  max-width: 520px;
}

.trust-heading h2 {
  font-size: clamp(54px, 4.8vw, 76px);
}

.trust-heading > p:last-child {
  max-width: 510px;
  font-size: 16px;
  line-height: 1.65;
}

.trust-line {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 0 0 52px;
  list-style: none;
}

.trust-line::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 56px;
  left: 17px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--knoq-yellow),
    rgba(247, 245, 239, 0.2) 42%,
    var(--knoq-green-bright)
  );
}

.trust-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(250px, 1.18fr);
  gap: 22px 34px;
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 22px 0 48px;
  border: 0;
  border-top: 1px solid var(--knoq-rule);
  border-radius: 0;
  background: transparent;
}

.trust-step:last-child {
  padding-bottom: 8px;
}

.trust-step::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -45px;
  width: 20px;
  height: 20px;
  border: 5px solid #0c0f11;
  border-radius: 50%;
  background: var(--knoq-yellow);
  box-shadow:
    0 0 0 1px rgba(255, 198, 46, 0.7),
    0 0 24px rgba(255, 198, 46, 0.18);
}

.trust-step:nth-child(n + 3)::before {
  background: var(--knoq-green-bright);
  box-shadow:
    0 0 0 1px rgba(32, 184, 114, 0.75),
    0 0 24px rgba(32, 184, 114, 0.18);
}

.trust-phase {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #9ca6a1;
  font:
    700 10px/1.2 "DM Mono",
    monospace;
  letter-spacing: 1.35px;
}

.trust-phase b {
  color: var(--knoq-yellow);
  font-size: 11px;
}

.trust-step:nth-child(n + 3) .trust-phase b {
  color: var(--knoq-green-bright);
}

.trust-diagram {
  position: relative;
  display: grid;
  place-items: center;
  height: 158px;
  border-radius: 24px;
  background: radial-gradient(
    circle at 50% 48%,
    rgba(247, 245, 239, 0.055),
    transparent 68%
  );
}

.trust-diagram svg {
  width: 100%;
  height: 132px;
  overflow: visible;
}

.trust-diagram svg * {
  vector-effect: non-scaling-stroke;
}

.trust-diagram > span {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  color: rgba(247, 245, 239, 0.58);
  font:
    700 8px/1.2 "DM Mono",
    monospace;
  letter-spacing: 0.8px;
  text-align: center;
}

.diagram-muted,
.diagram-signal,
.diagram-confirm,
.diagram-start,
.diagram-mask-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diagram-muted {
  stroke: rgba(247, 245, 239, 0.34);
  stroke-width: 1.4;
}

.diagram-dash {
  stroke-dasharray: 4 6;
}

.diagram-signal {
  stroke: var(--knoq-yellow);
  stroke-width: 2;
}

circle.diagram-signal {
  fill: var(--knoq-yellow);
  stroke: #0c0f11;
  stroke-width: 4;
}

.diagram-confirm {
  stroke: var(--knoq-green-bright);
  stroke-width: 2;
}

circle.diagram-confirm {
  fill: rgba(32, 184, 114, 0.15);
}

.diagram-start {
  fill: #0c0f11;
  stroke: var(--knoq-paper);
  stroke-width: 2;
}

.diagram-mask {
  fill: #0c0f11;
  stroke: rgba(255, 198, 46, 0.72);
  stroke-width: 1;
}

.diagram-mask-line {
  stroke: rgba(247, 245, 239, 0.5);
  stroke-width: 2;
  stroke-dasharray: 7 5;
}

.diagram-star {
  fill: rgba(255, 198, 46, 0.12);
}

.trust-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.trust-copy p {
  max-width: 390px;
  margin: 0;
  color: #abb3af;
  font-size: 15px;
  line-height: 1.62;
}

.fairness-rule {
  position: relative;
  margin-top: 78px;
  overflow: hidden;
  border: 1px solid rgba(247, 245, 239, 0.1);
  background:
    linear-gradient(112deg, rgba(255, 198, 46, 0.07), transparent 32%),
    linear-gradient(135deg, rgba(15, 143, 82, 0.16), rgba(23, 32, 28, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.fairness-rule::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--knoq-yellow);
}

@media (max-width: 1180px) {
  .trust-story {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .trust-heading {
    position: static;
    max-width: 870px;
  }

  .trust-heading h2 {
    font-size: clamp(48px, 5.8vw, 76px);
  }

  .trust-line {
    max-width: 820px;
  }
}

@media (max-width: 700px) {
  .trust-story {
    gap: 46px;
  }

  .trust-line {
    padding-left: 38px;
  }

  .trust-line::before {
    left: 10px;
    bottom: 42px;
  }

  .trust-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0 42px;
  }

  .trust-step::before {
    top: 18px;
    left: -36px;
    width: 18px;
    height: 18px;
    border-width: 4px;
  }

  .trust-phase {
    letter-spacing: 1px;
  }

  .trust-diagram {
    height: 142px;
  }

  .trust-diagram svg {
    height: 120px;
  }

  .trust-copy h3 {
    font-size: 25px;
  }

  .trust-copy p {
    max-width: none;
    font-size: 15px;
  }

  .fairness-rule {
    margin-top: 58px;
  }
}

@media (max-width: 390px) {
  .trust-line {
    padding-left: 34px;
  }

  .trust-step::before {
    left: -32px;
  }

  .trust-diagram {
    height: 132px;
  }

  .trust-diagram > span {
    font-size: 7px;
  }
}

@media (forced-colors: active) {
  .trust-line::before,
  .trust-step::before,
  .fairness-rule::before {
    forced-color-adjust: auto;
    background: CanvasText;
  }
}

/* 2026-08-23: Build 9 editorial hierarchy and uncropped approved nav mark. */
.premium-nav .logo-lockup {
  width: 156px;
  height: auto;
  overflow: visible;
}

.premium-nav .logo-lockup img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  transform: none;
  mix-blend-mode: normal;
}

.app-showcase-copy {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.72fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
}

.app-showcase-heading {
  min-width: 0;
}

.app-showcase-heading .premium-eyebrow {
  margin-bottom: 24px;
}

.app-showcase-heading h2 {
  margin: 0;
  font-size: clamp(58px, 5.8vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.app-showcase-heading h2 em {
  color: var(--knoq-yellow);
  font-style: normal;
}

.app-showcase-proof {
  position: relative;
  min-width: 0;
  padding: 8px 0 0 40px;
  border-left: 1px solid rgba(247, 245, 239, 0.16);
}

.app-proof-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--knoq-yellow);
  font:
    700 10px/1.2 "DM Mono",
    monospace;
  letter-spacing: 1.1px;
}

.app-proof-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.app-showcase-copy .app-proof-intro {
  margin: 0;
  color: #c1c8c4;
  font-size: 17px;
  line-height: 1.65;
}

.app-showcase-proof .app-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--knoq-rule);
  border-radius: 18px;
  background: var(--knoq-rule);
}

.app-showcase-proof .app-points span {
  display: block;
  min-height: 92px;
  padding: 18px;
  border: 0;
  background: rgba(12, 15, 17, 0.94);
  color: #dce1de;
  font-size: 13px;
  line-height: 1.45;
}

.app-showcase-proof .app-points b {
  display: block;
  margin-bottom: 9px;
  color: var(--knoq-yellow);
  font-size: 11px;
}

.app-showcase-proof .capture-note {
  margin-top: 22px;
  color: #a1aaa5;
}

@media (max-width: 980px) {
  .app-showcase-copy {
    grid-template-columns: 1fr;
    gap: 46px;
    max-width: none;
  }

  .app-showcase-proof {
    padding: 28px 0 0;
    border-top: 1px solid rgba(247, 245, 239, 0.16);
    border-left: 0;
  }

  .app-showcase-heading h2 {
    font-size: clamp(52px, 8vw, 76px);
  }
}

@media (max-width: 820px) {
  .premium-nav .logo-lockup {
    width: 144px;
    height: auto;
  }

  .premium-nav .logo-lockup img {
    width: 100%;
    transform: none;
  }

  .app-showcase-heading .premium-eyebrow {
    margin-bottom: 20px;
  }
}

@media (max-width: 520px) {
  .premium-nav .logo-lockup {
    width: 138px;
  }

  .app-showcase-heading h2 {
    font-size: clamp(48px, 13vw, 60px);
  }

  .app-showcase-proof {
    padding-top: 24px;
  }

  .app-showcase-proof .app-points {
    grid-template-columns: 1fr;
  }

  .app-showcase-proof .app-points span {
    min-height: 0;
  }
}

/* 2026-08-22: persistent, stable KNOQ navigation. */
:root {
  --nav-height: 80px;
  --anchor-offset: 96px;
}

html {
  scroll-padding-top: var(--anchor-offset);
}

.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(247, 245, 239, 0.12);
  background: rgba(12, 15, 17, 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
  backdrop-filter: blur(12px) saturate(110%);
}

.premium-nav {
  position: relative;
  height: var(--nav-height);
  border-bottom: 0;
}

.premium-nav .logo-lockup,
.premium-nav .nav-links a,
.premium-nav .nav-cta {
  min-height: 44px;
}

.premium-nav .logo-lockup {
  display: flex;
  align-items: center;
}

.premium-nav .nav-links a,
.premium-nav .nav-cta {
  display: inline-flex;
  align-items: center;
}

.premium-nav .nav-links a:focus-visible,
.premium-nav .nav-cta:focus-visible,
.premium-nav .logo-lockup:focus-visible {
  outline: 2px solid var(--knoq-yellow);
  outline-offset: 4px;
  border-radius: 8px;
}

.premium-nav .nav-links a:active,
.premium-nav .nav-cta:active {
  transform: translateY(1px);
}

#main-content:focus {
  outline: none;
}

@media (max-width: 900px) {
  :root {
    --nav-height: 68px;
    --anchor-offset: 84px;
  }

  .premium-nav {
    width: calc(100% - 36px);
    gap: 14px;
  }

  .premium-nav .nav-links {
    display: none;
  }

  .premium-nav .logo-lockup {
    width: 142px;
  }

  .premium-nav .nav-cta {
    margin-left: auto;
    padding: 10px 14px;
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .premium-nav .logo-lockup {
    width: 124px;
  }

  .premium-nav .nav-cta {
    padding-inline: 12px;
  }
}

@media (max-width: 360px) {
  .premium-nav {
    width: calc(100% - 24px);
  }

  .premium-nav .logo-lockup {
    width: 112px;
  }

  .premium-nav .nav-cta {
    padding-inline: 10px;
    font-size: 10px;
  }
}

/* Keep the two primary journey actions on one invariant desktop baseline.
   Both action groups reserve the same two rows, so a longer professional CTA
   can never wrap one side into a taller flex container and lift its button. */
@media (min-width: 1001px) {
  .audience-split--focused .audience-actions {
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: 48px 48px;
    gap: 14px;
    align-items: stretch;
    justify-items: start;
    min-height: 152px;
  }

  .audience-split--focused .audience-actions .button,
  .audience-split--focused .audience-text-action {
    grid-column: 1;
    width: max-content;
  }
}

@media (max-width: 900px) and (max-height: 480px) {
  :root {
    --nav-height: 56px;
    --anchor-offset: 72px;
  }

  .premium-nav .logo-lockup {
    width: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-nav .nav-links a:active,
  .premium-nav .nav-cta:active {
    transform: none;
  }
}

/* 2026-08-22: compact mobile journey, not stacked desktop cards. */
@media (max-width: 820px) {
  .process-grid {
    display: block;
    margin-top: 38px;
  }

  .process-grid li {
    position: relative;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-areas:
      "step title"
      "step copy";
    gap: 8px 16px;
    min-height: 0;
    padding: 20px 0 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .process-grid li:not(:last-child)::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 56px;
    height: 1px;
    background: rgba(247, 245, 239, 0.12);
    content: "";
  }

  .process-grid li:not(:last-child)::after {
    position: absolute;
    top: 60px;
    bottom: -20px;
    left: 19px;
    width: 1px;
    background: linear-gradient(
      to bottom,
      rgba(255, 198, 46, 0.5),
      rgba(247, 245, 239, 0.16)
    );
    content: "";
  }

  .process-grid li > span {
    z-index: 1;
    display: grid;
    grid-area: step;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 198, 46, 0.42);
    border-radius: 50%;
    background: #0a0d0f;
    color: var(--knoq-yellow);
  }

  .process-icon {
    display: none;
  }

  .process-grid h3 {
    grid-area: title;
    align-self: center;
    margin: 0;
    font-size: 24px;
    line-height: 1.16;
  }

  .process-grid p {
    grid-area: copy;
    margin: 0;
    color: #b8c0bc;
    font-size: 16px;
    line-height: 1.55;
  }
}

@media (max-width: 360px) {
  .process-grid li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .process-grid li > span {
    width: 38px;
    height: 38px;
  }

  .process-grid li:not(:last-child)::before {
    left: 52px;
  }

  .process-grid li:not(:last-child)::after {
    top: 58px;
    left: 18px;
  }
}

/* 2026-08-22: keep the public investor route in the compact top navigation. */
.nav-investor-mobile {
  display: none;
}

@media (max-width: 900px) {
  .premium-nav .nav-investor-mobile {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-left: auto;
    color: var(--knoq-paper);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    opacity: 0.78;
  }

  .premium-nav .nav-investor-mobile:hover,
  .premium-nav .nav-investor-mobile:focus-visible {
    opacity: 1;
  }

  .premium-nav .nav-investor-mobile:focus-visible {
    outline: 2px solid var(--knoq-yellow);
    outline-offset: 4px;
    border-radius: 8px;
  }

  .premium-nav .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 360px) {
  .premium-nav .nav-investor-mobile {
    font-size: 10px;
  }
}

/* 2026-08-22: one connected KNOQ signal path replaces generic process cards. */
.how-it-works {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.how-it-works::before {
  position: absolute;
  z-index: -1;
  top: 22%;
  right: -12%;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(32, 184, 114, 0.09);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(15, 143, 82, 0.12),
    rgba(15, 143, 82, 0.035) 42%,
    transparent 68%
  );
  box-shadow:
    0 0 0 100px rgba(32, 184, 114, 0.025),
    0 0 0 220px rgba(32, 184, 114, 0.018);
  content: "";
}

.how-it-works .section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 0 28px;
  max-width: none;
}

.how-it-works .premium-eyebrow {
  grid-column: 1 / -1;
}

.how-it-works .section-heading h2 {
  grid-column: 1 / span 7;
}

.how-it-works .section-heading > p:last-child {
  grid-column: 9 / -1;
  max-width: 430px;
  margin: 0 0 6px;
  font-size: clamp(17px, 1.45vw, 20px);
}

.process-grid {
  --process-gap: clamp(34px, 4.6vw, 76px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--process-gap);
  margin: clamp(64px, 7vw, 92px) 0 0;
  padding: 0;
  list-style: none;
}

.process-grid::before,
.process-grid::after {
  position: absolute;
  z-index: 0;
  top: 27px;
  right: calc((100% - var(--process-gap) - var(--process-gap)) / 3 - 28px);
  left: 28px;
  height: 1px;
  content: "";
}

.process-grid::before {
  background: linear-gradient(
    90deg,
    rgba(255, 198, 46, 0.72),
    rgba(255, 198, 46, 0.32) 50%,
    rgba(32, 184, 114, 0.68)
  );
}

.process-grid::after {
  height: 3px;
  transform: translateY(-1px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 198, 46, 0.08) 44%,
    rgba(255, 198, 46, 0.95) 50%,
    rgba(32, 184, 114, 0.72) 55%,
    transparent 62%,
    transparent 100%
  );
  background-size: 280% 100%;
  opacity: 0;
  filter: blur(0.2px);
  animation: process-signal-sweep 8s ease-in-out infinite;
}

.process-grid li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.process-node {
  --node-rgb: 255, 198, 46;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(var(--node-rgb), 0.72);
  border-radius: 50%;
  background: #0a0d0f;
  color: rgb(var(--node-rgb));
  box-shadow:
    0 0 0 7px rgba(12, 15, 17, 0.96),
    0 0 0 8px rgba(var(--node-rgb), 0.09);
  animation: process-node-wake 8s ease-in-out infinite;
}

.process-step:nth-child(2) .process-node {
  animation-delay: 0.9s;
}

.process-step-progress .process-node {
  --node-rgb: 32, 184, 114;
  animation-delay: 1.8s;
}

.process-node span {
  position: absolute;
  top: -23px;
  left: 0;
  color: #7c8580;
  font:
    700 10px/1 "DM Mono",
    monospace;
  letter-spacing: 0.7px;
}

.process-node i {
  font-size: 25px;
  font-style: normal;
  line-height: 1;
}

.process-copy {
  max-width: 350px;
  margin-top: 34px;
}

.process-grid .process-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.process-grid .process-copy p {
  margin: 0;
  color: #b8c0bc;
  font-size: 16px;
  line-height: 1.58;
}

.process-visual {
  width: min(100%, 330px);
  min-height: 78px;
  margin-top: 28px;
}

.request-field {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 198, 46, 0.36);
  border-bottom: 1px solid rgba(247, 245, 239, 0.1);
  background: linear-gradient(90deg, rgba(255, 198, 46, 0.05), transparent);
}

.request-field small,
.process-choice small,
.process-progress small {
  font:
    700 9px/1.2 "DM Mono",
    monospace;
  letter-spacing: 0.75px;
}

.request-field > small {
  grid-column: 1 / -1;
  color: var(--knoq-yellow);
}

.request-field > span {
  width: 76%;
  height: 4px;
  border-radius: 99px;
  background: rgba(247, 245, 239, 0.2);
  box-shadow: 0 10px 0 rgba(247, 245, 239, 0.08);
}

.request-field b {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #aeb7b2;
  font:
    700 8px/1 "DM Mono",
    monospace;
  letter-spacing: 0.55px;
}

.request-field b i,
.choice-options i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--knoq-yellow);
  box-shadow: 0 0 0 5px rgba(255, 198, 46, 0.08);
}

.choice-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.choice-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid rgba(247, 245, 239, 0.13);
  border-radius: 999px;
  color: #8f9994;
  font:
    700 9px/1 "DM Mono",
    monospace;
  letter-spacing: 0.5px;
}

.choice-options span:not(.is-selected) i {
  background: #68716d;
  box-shadow: none;
}

.choice-options .is-selected {
  border-color: rgba(255, 198, 46, 0.68);
  background: rgba(255, 198, 46, 0.07);
  color: var(--knoq-paper);
}

.process-choice > small {
  display: block;
  margin-top: 14px;
  color: #7f8984;
}

.process-choice > small b {
  margin: 0 7px;
  color: var(--knoq-yellow);
}

.process-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-progress::before {
  position: absolute;
  z-index: 0;
  top: 7px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 198, 46, 0.58),
    rgba(32, 184, 114, 0.68)
  );
  content: "";
}

.process-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 11px;
  color: #7f8984;
}

.process-progress span i {
  display: block;
  width: 15px;
  height: 15px;
  border: 3px solid #0c0f11;
  border-radius: 50%;
  background: var(--knoq-yellow);
  box-shadow: 0 0 0 1px rgba(255, 198, 46, 0.72);
}

.process-progress .is-current {
  color: #b9c4be;
}

.process-progress .is-current i {
  background: var(--knoq-green-bright);
  box-shadow:
    0 0 0 1px rgba(32, 184, 114, 0.92),
    0 0 18px rgba(32, 184, 114, 0.42);
}

.process-signoff {
  justify-content: flex-end;
  margin-top: clamp(38px, 4vw, 52px);
  font-family: "DM Mono", monospace;
  font-size: 16px;
  letter-spacing: 0.35px;
}

@keyframes process-signal-sweep {
  0%,
  14% {
    background-position: 130% 0;
    opacity: 0;
  }
  22% {
    opacity: 0.85;
  }
  68% {
    background-position: -65% 0;
    opacity: 0.85;
  }
  78%,
  100% {
    background-position: -65% 0;
    opacity: 0;
  }
}

@keyframes process-node-wake {
  0%,
  12%,
  100% {
    box-shadow:
      0 0 0 7px rgba(12, 15, 17, 0.96),
      0 0 0 8px rgba(var(--node-rgb), 0.09);
  }
  22%,
  30% {
    box-shadow:
      0 0 0 7px rgba(12, 15, 17, 0.96),
      0 0 0 10px rgba(var(--node-rgb), 0.12),
      0 0 34px rgba(var(--node-rgb), 0.22);
  }
}

@media (max-width: 959px) {
  .how-it-works .section-heading {
    display: block;
  }

  .how-it-works .section-heading > p:last-child {
    max-width: 620px;
    margin: 24px 0 0;
  }

  .process-grid {
    display: block;
    margin-top: 58px;
  }

  .process-grid::before,
  .process-grid::after {
    display: none;
  }

  .process-grid li {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-areas:
      "node copy"
      ". visual";
    gap: 0 20px;
    min-height: 0;
    padding: 0 0 46px;
  }

  .process-grid li:last-child {
    padding-bottom: 0;
  }

  .process-grid li:not(:last-child)::before {
    content: none;
  }

  .process-grid li:not(:last-child)::after {
    position: absolute;
    z-index: 0;
    top: 28px;
    bottom: -28px;
    left: 27px;
    width: 1px;
    background: linear-gradient(
      to bottom,
      rgba(255, 198, 46, 0.58),
      rgba(32, 184, 114, 0.5)
    );
    content: "";
  }

  .process-node {
    grid-area: node;
  }

  .process-copy {
    grid-area: copy;
    max-width: 600px;
    margin-top: 0;
  }

  .process-grid .process-copy h3 {
    padding-top: 2px;
    font-size: clamp(23px, 4.2vw, 28px);
  }

  .process-visual {
    grid-area: visual;
    width: min(100%, 430px);
    margin-top: 22px;
  }

  .process-signoff {
    justify-content: flex-start;
    margin-top: 34px;
  }
}

@media (max-width: 520px) {
  .how-it-works::before {
    top: 45%;
    right: -70%;
    width: 150vw;
  }

  .how-it-works .section-heading h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .process-grid {
    margin-top: 48px;
  }

  .process-grid li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0 16px;
    padding-bottom: 40px;
  }

  .process-grid li:not(:last-child)::after {
    left: 23px;
  }

  .process-node {
    width: 48px;
    height: 48px;
  }

  .process-node span {
    top: -19px;
  }

  .process-node i {
    font-size: 22px;
  }

  .process-grid .process-copy h3 {
    font-size: 23px;
  }

  .process-grid .process-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .process-visual {
    min-height: 70px;
  }

  .choice-options span {
    gap: 5px;
    min-height: 34px;
    font-size: 8px;
  }

  .process-progress small {
    font-size: 7px;
    letter-spacing: 0.2px;
  }
}

@keyframes process-signal-sweep-vertical {
  0%,
  14% {
    background-position: 0 130%;
    opacity: 0;
  }
  22% {
    opacity: 0.8;
  }
  68% {
    background-position: 0 -65%;
    opacity: 0.8;
  }
  78%,
  100% {
    background-position: 0 -65%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-grid::after,
  .process-node {
    animation: none;
  }

  .process-grid::after {
    display: none;
  }
}

/* 2026-08-22: one network, two unmistakable early-access pathways. */
.premium-early-access {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 28px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 24%,
      rgba(15, 143, 82, 0.19),
      transparent 34rem
    ),
    linear-gradient(180deg, #090d0e, #07100c);
  color: var(--knoq-paper);
}

.premium-early-access .early-access-intro {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 28px;
}

.premium-early-access .early-access-intro .premium-eyebrow {
  grid-column: 1 / -1;
  color: var(--knoq-green-bright);
}

.premium-early-access .early-access-intro h2 {
  grid-column: 1 / span 7;
  color: var(--knoq-paper);
}

.premium-early-access .early-access-intro > p,
.premium-early-access .early-proof {
  grid-column: 9 / -1;
}

.premium-early-access .early-access-intro > p {
  align-self: end;
  max-width: 430px;
  margin: 0 0 5px;
  color: #b8c0bc;
}

.premium-early-access .early-proof {
  margin-top: 30px;
  border-color: rgba(247, 245, 239, 0.14);
}

.premium-early-access .early-proof span {
  border-color: rgba(247, 245, 239, 0.14);
  color: #aeb8b2;
}

.premium-early-access .early-proof b {
  color: var(--knoq-green-bright);
}

.early-access-market {
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: clamp(64px, 7vw, 92px);
}

.audience-fork {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.audience-fork legend {
  width: 100%;
  padding: 0 0 22px;
  color: #9ba7a0;
  font:
    700 11px/1.25 "DM Mono",
    monospace;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.audience-lanes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-lanes::before {
  position: absolute;
  z-index: 3;
  top: -10px;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translateX(-50%);
  border: 4px solid #0a0e0d;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    var(--knoq-yellow) 50%,
    var(--knoq-green-bright) 50%
  );
  box-shadow: 0 0 24px rgba(32, 184, 114, 0.2);
  content: "";
  pointer-events: none;
}

.audience-lanes::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(247, 245, 239, 0.13);
  content: "";
}

.audience-lane {
  --lane-accent: var(--knoq-yellow);
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-areas: "number copy" ". action";
  gap: 30px 22px;
  min-height: 300px;
  padding: clamp(42px, 4vw, 58px) clamp(28px, 4.4vw, 64px) 38px;
  border-top: 1px solid rgba(255, 198, 46, 0.62);
  background: linear-gradient(
    145deg,
    rgba(255, 198, 46, 0.055),
    transparent 68%
  );
  color: var(--knoq-paper);
  cursor: pointer;
  transition:
    background-color 240ms ease,
    opacity 240ms ease;
}

.audience-lane-professional {
  --lane-accent: var(--knoq-green-bright);
  border-top-color: rgba(32, 184, 114, 0.62);
  background: linear-gradient(
    215deg,
    rgba(32, 184, 114, 0.085),
    transparent 68%
  );
}

.audience-lane input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.audience-lane:focus-within {
  outline: 2px solid var(--knoq-paper);
  outline-offset: -5px;
}

.audience-lane:hover,
.audience-lane.is-selected {
  background-color: rgba(247, 245, 239, 0.04);
  box-shadow: inset 0 -3px var(--lane-accent);
}

.early-access-market.has-selection .audience-lane:not(.is-selected) {
  opacity: 0.58;
}

.audience-lane-number {
  grid-area: number;
  color: var(--lane-accent);
  font:
    700 11px/1 "DM Mono",
    monospace;
}

.audience-lane-copy {
  display: grid;
  grid-area: copy;
  gap: 12px;
}

.audience-lane-copy small {
  color: var(--lane-accent);
  font:
    700 10px/1.2 "DM Mono",
    monospace;
  letter-spacing: 1px;
}

.audience-lane-copy strong {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.audience-lane-copy > span {
  max-width: 430px;
  color: #aeb8b2;
  font-size: 16px;
  line-height: 1.55;
}

.audience-lane-action {
  display: inline-flex;
  grid-area: action;
  align-items: center;
  align-self: end;
  justify-content: space-between;
  gap: 16px;
  width: fit-content;
  min-height: 44px;
  border-bottom: 1px solid var(--lane-accent);
  color: var(--knoq-paper);
  font-size: 13px;
  font-weight: 800;
}

.audience-lane-action b {
  color: var(--lane-accent);
  font-size: 18px;
}

.audience-boundary {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(247, 245, 239, 0.11);
  color: #8f9b94;
  font-size: 12px;
  line-height: 1.6;
}

.audience-boundary i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--knoq-green-bright);
  box-shadow: 0 0 0 6px rgba(32, 184, 114, 0.08);
}

.audience-boundary b {
  color: var(--knoq-yellow);
  font:
    700 10px/1.4 "DM Mono",
    monospace;
}

.audience-choice-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.premium-early-access .early-access-forms {
  display: block;
}

.premium-early-access .early-access-forms [hidden] {
  display: none !important;
}

.premium-early-access .launch-form {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin: 0;
  padding: clamp(40px, 5vw, 62px) 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--knoq-paper);
  box-shadow: none;
}

.premium-early-access .launch-form .form-kicker,
.premium-early-access .launch-form h3,
.premium-early-access
  .launch-form
  > p:not(.form-note):not(.form-status):not(.form-honeypot) {
  grid-column: 1;
}

.premium-early-access .launch-form h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
}

.premium-early-access
  .launch-form
  > p:not(.form-kicker):not(.form-note):not(.form-status):not(.form-honeypot) {
  max-width: 300px;
  min-height: 0;
  color: #aeb8b2;
  font-size: 15px;
}

.premium-early-access .launch-form > label:nth-of-type(odd) {
  grid-column: 2;
}

.premium-early-access .launch-form > label:nth-of-type(even) {
  grid-column: 3;
}

.premium-early-access .launch-form > .form-field-wide,
.premium-early-access .launch-form button,
.premium-early-access .launch-form .form-note,
.premium-early-access .launch-form .form-status {
  grid-column: 2 / -1;
}

.premium-early-access .launch-form input {
  min-height: 50px;
  border-color: rgba(247, 245, 239, 0.18);
  background: rgba(247, 245, 239, 0.045);
  color: var(--knoq-paper);
}

.premium-early-access .launch-form button {
  min-height: 52px;
  margin: 0;
  border-radius: 999px;
}

@media (max-width: 959px) {
  .premium-early-access,
  .premium-early-access .early-access-intro {
    display: block;
  }

  .premium-early-access .early-access-intro > p {
    max-width: 620px;
    margin: 24px 0 0;
  }
}

@media (max-width: 820px) {
  .early-access-market {
    margin-top: 54px;
  }

  .audience-lanes {
    display: block;
  }

  .audience-lanes::before,
  .audience-lanes::after {
    display: none;
  }

  .audience-lane {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 18px 14px;
    min-height: 0;
    padding: 30px 0 28px;
    border-bottom: 1px solid rgba(247, 245, 239, 0.12);
  }

  .early-access-market.has-selection .audience-lane:not(.is-selected) {
    opacity: 0.72;
  }

  .premium-early-access .launch-form {
    display: block;
    padding-top: 40px;
  }

  .premium-early-access .launch-form h3,
  .premium-early-access
    .launch-form
    > p:not(.form-kicker):not(.form-note):not(.form-status):not(.form-honeypot),
  .premium-early-access .launch-form > .form-field,
  .premium-early-access .launch-form button,
  .premium-early-access .launch-form .form-note {
    margin-top: 14px;
  }

  .premium-early-access .launch-form button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .premium-early-access .early-access-intro h2 {
    font-size: clamp(46px, 13.6vw, 60px);
  }

  .audience-lane-copy strong {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .audience-lane-action {
    width: 100%;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-lane {
    transition: none;
  }
}

@media (forced-colors: active) {
  .audience-lane {
    border-color: CanvasText;
  }
}

/* Progressive enhancement and decisive audience hierarchy. */
.early-access-market:not(.is-choice-ready) .audience-fork {
  display: none;
}

.audience-noscript {
  margin: 20px 0 0;
  color: #aeb8b2;
  font-size: 14px;
  line-height: 1.6;
}

.audience-lane-copy strong {
  font-size: clamp(40px, 4.2vw, 64px);
}

@media (max-width: 520px) {
  .audience-lane-copy strong {
    font-size: clamp(36px, 10vw, 48px);
  }
}

/* 2026-08-22 production trust, mobile navigation and accessibility pass. */
.mobile-menu {
  display: none;
  position: relative;
}
.mobile-menu summary {
  display: inline-flex;
  min-width: 52px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 245, 240, 0.24);
  border-radius: 999px;
  color: #f7f5f0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker {
  display: none;
}
.mobile-menu[open] summary {
  border-color: rgba(255, 201, 40, 0.62);
  color: #ffc928;
}
.mobile-menu-panel {
  position: fixed;
  z-index: 130;
  top: var(--nav-height, 80px);
  right: 0;
  left: 0;
  display: grid;
  padding: 14px 20px 20px;
  border-bottom: 1px solid rgba(247, 245, 240, 0.14);
  background: rgba(9, 11, 13, 0.98);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
}
.mobile-menu-panel a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(247, 245, 240, 0.1);
  color: #f7f5f0;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}
.hero-audience-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin-top: 20px;
}
.hero-audience-routes a {
  display: grid;
  gap: 3px;
  min-height: 62px;
  padding: 12px 16px;
  border: 1px solid rgba(247, 245, 240, 0.2);
  border-radius: 13px;
  background: rgba(247, 245, 240, 0.035);
  color: #f7f5f0;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}
.hero-audience-routes a:hover,
.hero-audience-routes a:focus-visible {
  border-color: rgba(255, 201, 40, 0.62);
  background: rgba(255, 201, 40, 0.07);
}
.hero-audience-routes small {
  color: #ffc928;
  font:
    700 10px/1.3 "DM Mono",
    Consolas,
    monospace;
  letter-spacing: 0.08em;
}
.hero-audience-routes b {
  font-size: 15px;
}
.hero-boundary {
  align-items: flex-start;
}
.hero-boundary span {
  display: block;
  max-width: 620px;
}
.hero-boundary b {
  color: #8ee5bc;
}
.capture-boundary {
  margin: 16px 0 0;
  color: #d2d9d5;
  font-size: 13px;
  line-height: 1.55;
}
.form-error-summary {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 201, 40, 0.52);
  border-radius: 10px;
  background: rgba(255, 201, 40, 0.08);
  color: #f7f5f0;
  font-size: 14px;
  font-weight: 700;
}
.form-error-summary[hidden] {
  display: none;
}
.premium-early-access .form-note a {
  color: #f7f5f0;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.audience-lane-professional .audience-lane-copy small,
.audience-lane-professional .audience-lane-copy > span,
.launch-form-provider .form-kicker,
.launch-form-provider .form-note {
  color: #f7f5f0;
}
.brand-statement .brand-statement-signoff {
  color: #0a613f;
}
@media (max-width: 1100px) {
  .premium-nav {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
  .premium-nav .nav-links,
  .nav-investor-mobile {
    display: none;
  }
  .mobile-menu {
    display: block;
    justify-self: end;
  }
  .premium-nav .nav-cta {
    font-size: 11px;
    padding-inline: 12px;
  }
}
@media (max-width: 680px) {
  .hero-audience-routes {
    gap: 8px;
    margin-top: 16px;
  }
  .hero-audience-routes a {
    min-height: 58px;
    padding: 11px 12px;
  }
  .hero-audience-routes small {
    font-size: 9px;
  }
  .hero-audience-routes b {
    font-size: 13px;
  }
  .hero-boundary,
  .capture-boundary,
  .premium-early-access .form-note,
  .premium-early-access .audience-boundary {
    font-size: 13px;
  }
  .premium-early-access .audience-lane-copy > span,
  .premium-early-access .audience-lane-action {
    font-size: 13px;
  }
}
@media (max-width: 390px) {
  .premium-nav {
    padding-inline: 12px;
  }
  .premium-nav .logo-lockup img {
    width: 112px;
  }
  .premium-nav .nav-cta {
    padding-inline: 10px;
  }
  .mobile-menu summary {
    min-width: 48px;
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-audience-routes a {
    transition: none;
  }
}

/* Final audited contrast corrections. */
.store-copy .premium-eyebrow,
.store-copy h2 em {
  color: #0a613f;
}
.audience-pro .premium-eyebrow,
.audience-pro h2 em,
.audience-pro > p {
  color: #ffffff;
  opacity: 1;
}
.audience-pro li {
  color: #ffffff;
}

/* Preserve the approved Norb proportions wherever the master is displayed. */
.store-norb img,
.finale > img {
  display: block;
  height: auto;
  object-fit: contain;
}

/* Norb should feel present, not pinned to the page. */
@keyframes norb-levitate {
  0%,
  100% {
    transform: translate3d(0, 6px, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.store-norb img {
  animation: norb-levitate 5.8s ease-in-out -1.2s infinite;
  will-change: transform;
}

.finale > img {
  animation: norb-levitate 6.4s ease-in-out -2.8s infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .store-norb img,
  .finale > img {
    animation: none;
    transform: none;
  }
}

/* 2026-08-23: intentional two-line desktop hero lockup. */
@media (min-width: 1101px) {
  .premium-hero {
    grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  }

  .premium-hero-copy,
  .premium-hero h1 {
    max-width: 820px;
  }

  .premium-hero h1 {
    font-size: clamp(47px, 4.25vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  .premium-hero h1 span,
  .premium-hero h1 em {
    max-width: none;
    white-space: nowrap;
  }

  .premium-hero h1 span {
    font-size: 1em;
  }

  .premium-hero h1 em {
    margin-top: 0.14em;
  }
}

@media (max-width: 1100px) {
  .premium-hero h1 span,
  .premium-hero h1 em {
    white-space: normal;
  }
}

/* 2026-08-23: semantic billboard lines for major homepage statements. */
.section-lockup > .section-lockup__line {
  display: block;
  max-inline-size: 100%;
}

@media (min-width: 1101px) {
  .section-lockup > .section-lockup__line {
    white-space: nowrap;
  }

  .premium-hero h1 {
    font-size: clamp(44px, 4.15vw, 62px);
  }

  .app-showcase-heading h2 {
    font-size: clamp(50px, 5vw, 74px);
  }

  .store-copy h2 {
    font-size: clamp(46px, 4.3vw, 62px);
  }

  .audience-split h2 {
    font-size: clamp(46px, 4.2vw, 64px);
  }

  .trust-heading h2 {
    font-size: clamp(48px, 4vw, 64px);
  }

  .premium-early-access .early-access-intro h2 {
    font-size: clamp(48px, 4.6vw, 68px);
  }

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

@media (max-width: 1100px) {
  .section-lockup > .section-lockup__line {
    white-space: normal;
  }
}

/* 2026-08-23: headline fit safeguards for compact desktop and narrow mobile. */
.headline-keep {
  white-space: nowrap;
}

@media (min-width: 821px) and (max-width: 1100px) {
  .premium-hero {
    grid-template-columns: minmax(0, 1.3fr) minmax(286px, 0.7fr);
  }

  .premium-hero h1 {
    font-size: clamp(42px, 5vw, 55px);
  }

  .premium-hero h1 span {
    font-size: 1em;
  }

  .premium-hero h1 > .section-lockup__line,
  .store-copy h2 > .section-lockup__line {
    white-space: nowrap;
  }

  .store-copy h2 {
    font-size: clamp(38px, 4.1vw, 48px);
  }

  .finale h2 {
    font-size: clamp(42px, 4.6vw, 50px);
  }
}

@media (max-width: 520px) {
  .brand-statement h2 {
    font-size: clamp(28px, 8.5vw, 36px);
  }

  .app-showcase-heading h2 {
    font-size: clamp(34px, 10.5vw, 42px);
  }

  .store-copy h2 {
    font-size: clamp(30px, 8.5vw, 36px);
  }

  .premium-early-access .early-access-intro h2 {
    font-size: clamp(32px, 9.2vw, 40px);
  }

  .finale h2 {
    font-size: clamp(35px, 10vw, 44px);
  }
}

@media (max-width: 340px) {
  .audience-split h2 {
    font-size: 40px;
  }

  .trust-heading h2 {
    font-size: 36px;
  }
}

/* 2026-08-23: final narrow-screen phrase integrity. */
@media (max-width: 340px) {
  .store-copy h2 {
    font-size: 28px;
  }
}

/* 2026-08-24: clear, semantic finale lockup. */
.finale-lockup__visual {
  display: block;
  max-inline-size: 100%;
}

.finale-lockup__visual > .finale-line {
  display: block;
  max-inline-size: 100%;
}

.finale-line--brand {
  margin-top: 0.14em;
}

/* 2026-08-24: owner-approved dual-audience marketplace architecture. */
#how-it-works,
#marketplace-model,
#for-customers,
#for-professionals,
#services,
#journey,
#watch,
#early-access,
#customer-early-access,
#professional-interest,
#pricing {
  scroll-margin-top: 112px;
}

.premium-nav .nav-links {
  gap: clamp(14px, 1.6vw, 28px);
}

.marketplace-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: center;
  padding: clamp(96px, 10vw, 156px) max(5vw, calc((100vw - 1320px) / 2 + 40px));
  background:
    radial-gradient(
      circle at 82% 24%,
      rgba(32, 184, 114, 0.16),
      transparent 32rem
    ),
    linear-gradient(145deg, #0c0f11 0%, #101915 100%);
  border-bottom: 1px solid var(--knoq-rule);
}

.marketplace-bridge-copy {
  max-width: 700px;
}

.marketplace-bridge h2 {
  margin: 24px 0 30px;
  color: var(--knoq-paper);
  font-size: clamp(46px, 5.1vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.marketplace-bridge__accent {
  margin-top: 0.16em;
  color: var(--knoq-yellow);
  font-style: normal;
  font-size: clamp(16px, 5vw, 44px);
  letter-spacing: -0.045em;
  white-space: nowrap !important;
  text-wrap: nowrap !important;
}

.marketplace-bridge-copy > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(247, 245, 239, 0.78);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.marketplace-model-visual {
  width: 100%;
  max-width: 720px;
  margin: 0;
  justify-self: end;
}

.marketplace-model-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
  /* Preserve the untouched campaign artwork while allowing its near-black
     canvas to inherit the section's graphite-to-emerald atmosphere. */
  mix-blend-mode: screen;
}

.marketplace-signals {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: 720px;
  margin: 0;
  padding: 0;
}

.marketplace-signal-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.marketplace-signal-card {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 218px;
  padding: clamp(22px, 2.2vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(247, 245, 239, 0.18);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(247, 245, 239, 0.055),
    rgba(247, 245, 239, 0.018)
  );
}

.marketplace-signal-card::after {
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(247, 245, 239, 0.08);
  border-radius: 50%;
  content: "";
}

.marketplace-signal-card--customer {
  border-color: rgba(255, 199, 0, 0.36);
  background: linear-gradient(
    145deg,
    rgba(255, 199, 0, 0.09),
    rgba(247, 245, 239, 0.02)
  );
}

.marketplace-signal-card--professional {
  border-color: rgba(32, 184, 114, 0.38);
  background: linear-gradient(
    145deg,
    rgba(32, 184, 114, 0.1),
    rgba(247, 245, 239, 0.02)
  );
}

.marketplace-signal-card--commitment {
  grid-template-columns: minmax(126px, 0.42fr) minmax(140px, 0.9fr) minmax(
      0,
      1.1fr
    );
  gap: clamp(14px, 1.25vw, 20px);
  align-items: start;
  min-height: 0;
  border-color: rgba(119, 226, 174, 0.48);
  background:
    radial-gradient(
      circle at 92% 18%,
      rgba(32, 184, 114, 0.18),
      transparent 15rem
    ),
    linear-gradient(145deg, rgba(15, 143, 82, 0.14), rgba(247, 245, 239, 0.035));
}

.marketplace-convergence {
  position: relative;
  display: grid;
  place-items: center;
  height: 78px;
}

.marketplace-convergence::before {
  position: absolute;
  top: 0;
  right: 25%;
  bottom: 50%;
  left: 25%;
  border-right: 1px solid rgba(247, 245, 239, 0.28);
  border-bottom: 1px solid rgba(247, 245, 239, 0.28);
  border-left: 1px solid rgba(247, 245, 239, 0.28);
  border-radius: 0 0 18px 18px;
  content: "";
}

.marketplace-convergence::after {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(var(--knoq-yellow), var(--knoq-green-bright));
  content: "";
}

.marketplace-convergence b {
  position: relative;
  z-index: 1;
  padding: 9px 15px;
  border: 1px solid rgba(255, 199, 0, 0.75);
  border-radius: 999px;
  background: var(--knoq-yellow);
  color: var(--knoq-ink);
  font:
    900 11px/1 "DM Mono",
    monospace;
  letter-spacing: 0.12em;
  box-shadow: 0 0 30px rgba(255, 199, 0, 0.14);
}

.marketplace-signals span,
.marketplace-signals strong {
  font-family: "DM Mono", monospace;
}

.marketplace-signals span {
  display: block;
  margin-bottom: 18px;
  color: var(--knoq-yellow);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.marketplace-signals strong {
  display: block;
  color: var(--knoq-paper);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.35;
}

.marketplace-signals p {
  margin: 14px 0 0;
  color: rgba(247, 245, 239, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.marketplace-signal-card--professional > span,
.marketplace-signal-card--commitment > span {
  color: #77e2ae;
}

.marketplace-signal-card--commitment > span {
  margin-bottom: 0;
}

.marketplace-signal-card--commitment > p {
  margin-top: 0;
}

.audience-split--focused article {
  min-height: 0;
  padding-top: clamp(96px, 9vw, 140px);
  padding-bottom: clamp(96px, 9vw, 140px);
}

.audience-split--focused article > p {
  max-width: 650px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.62;
}

@media (min-width: 821px) {
  .audience-split--focused article > p:not(.premium-eyebrow) {
    min-block-size: 6.5em;
  }
}

.audience-journey {
  counter-reset: audience-step;
  display: grid;
  gap: 0;
  margin: 38px 0 42px;
  padding: 0;
  list-style: none;
  border-top: 1px solid currentColor;
}

.audience-journey li {
  counter-increment: audience-step;
  display: grid;
  grid-template-columns: 38px minmax(130px, 0.48fr) minmax(190px, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 78px;
  padding: 20px 0;
  border-bottom: 1px solid currentColor;
}

.audience-journey li::before {
  position: static;
  color: currentColor;
  content: counter(audience-step, decimal-leading-zero);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.audience-journey b {
  font-size: 15px;
  line-height: 1.45;
}

.audience-journey span {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.82;
}

.audience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}

.audience-actions .button,
.audience-text-action {
  min-height: 48px;
}

.audience-text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.audience-text-action:hover,
.audience-text-action:focus-visible {
  border-bottom-width: 3px;
}

.service-scope {
  padding: clamp(96px, 10vw, 156px) max(5vw, calc((100vw - 1320px) / 2 + 40px));
  background: var(--knoq-paper);
  color: var(--knoq-ink);
}

.service-scope-heading {
  display: grid;
  grid-template-columns: minmax(620px, 1.22fr) minmax(350px, 0.58fr);
  gap: 30px clamp(48px, 5vw, 82px);
  align-items: end;
  padding-bottom: clamp(38px, 4vw, 56px);
  border-bottom: 1px solid rgba(12, 15, 17, 0.18);
}

.service-scope-heading .premium-eyebrow {
  grid-column: 1 / -1;
  margin: 0;
  color: #0a613f;
}

.service-scope h2 {
  margin: 0;
  color: var(--knoq-ink);
  font-size: clamp(62px, 6.25vw, 94px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.service-scope h2 strong {
  position: relative;
  color: var(--knoq-yellow);
  font-weight: 800;
}

.service-scope h2 .service-scope-question {
  color: var(--knoq-ink);
}

.service-scope h2 strong::after {
  position: absolute;
  right: 0.02em;
  bottom: -0.12em;
  width: 0.72em;
  height: 0.07em;
  border-radius: 999px;
  background: var(--knoq-green);
  content: "";
}

.service-scope-intro {
  position: relative;
  padding: 26px 30px 28px 34px;
  border-left: 4px solid var(--knoq-green);
  border-radius: 0 18px 18px 0;
  background: #e9f4ed;
  box-shadow: 0 16px 36px rgba(12, 15, 17, 0.06);
}

.service-scope-intro::before {
  position: absolute;
  top: 0;
  left: -4px;
  width: 4px;
  height: 34%;
  background: var(--knoq-yellow);
  content: "";
}

.service-scope-intro__label {
  margin: 0 0 12px;
  color: #0a613f;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
}

.service-scope-intro > p:last-child {
  margin: 0;
  color: rgba(12, 15, 17, 0.78);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
}

.service-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(58px, 6vw, 90px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(12, 15, 17, 0.22);
  border-left: 1px solid rgba(12, 15, 17, 0.22);
}

.service-scope-grid li {
  min-height: 112px;
  padding: 28px;
  border-right: 1px solid rgba(12, 15, 17, 0.22);
  border-bottom: 1px solid rgba(12, 15, 17, 0.22);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-scope-grid li::before {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--knoq-green);
  box-shadow: 0 0 0 7px rgba(15, 143, 82, 0.1);
  content: "";
}

.premium-early-access .form-next-step {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(247, 245, 239, 0.14);
  border-bottom: 1px solid rgba(247, 245, 239, 0.14);
}

.premium-early-access .form-next-step b,
.premium-early-access .form-next-step span {
  font-family: "DM Mono", monospace;
}

.premium-early-access .form-next-step b {
  color: var(--knoq-yellow);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.premium-early-access .form-next-step span {
  color: rgba(247, 245, 239, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.premium-early-access .launch-form-provider .form-next-step b {
  color: #77e2ae;
}

.app-evidence-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 26px 0;
  border-top: 1px solid rgba(247, 245, 239, 0.18);
  border-left: 1px solid rgba(247, 245, 239, 0.18);
}

.app-evidence-ledger div {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid rgba(247, 245, 239, 0.18);
  border-bottom: 1px solid rgba(247, 245, 239, 0.18);
}

.app-evidence-ledger dt {
  color: var(--knoq-yellow);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.app-evidence-ledger dd {
  margin: 9px 0 0;
  color: rgba(247, 245, 239, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.verification-boundary {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(44px, 6vw, 96px);
  padding: clamp(64px, 7vw, 100px) max(5vw, calc((100vw - 1320px) / 2 + 40px));
  background: #0d1512;
  color: var(--knoq-paper);
  border-top: 1px solid rgba(247, 245, 239, 0.14);
}

.verification-boundary > div > span,
.verification-boundary li b {
  font-family: "DM Mono", monospace;
}

.verification-boundary > div > span {
  color: var(--knoq-yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.verification-boundary h3 {
  margin: 20px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.verification-boundary ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(247, 245, 239, 0.18);
}

.verification-boundary li {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(247, 245, 239, 0.18);
}

.verification-boundary li b {
  color: #77e2ae;
  font-size: 12px;
}

.verification-boundary li span {
  color: rgba(247, 245, 239, 0.74);
  font-size: 14px;
  line-height: 1.58;
}

.form-follow-up {
  grid-column: 1 / -1;
  padding: 20px;
  border: 1px solid rgba(247, 245, 239, 0.18);
  background: rgba(247, 245, 239, 0.05);
}

.form-follow-up > b,
.form-follow-up > span,
.form-follow-up small {
  display: block;
}

.form-follow-up > b {
  color: var(--knoq-yellow);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.form-follow-up > span {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 700;
}

.form-follow-up > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.form-follow-up button {
  width: auto;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(247, 245, 239, 0.26);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 12px;
}

.form-follow-up button[aria-pressed="true"] {
  border-color: #77e2ae;
  background: rgba(119, 226, 174, 0.15);
}

.form-follow-up small {
  min-height: 1.5em;
  margin-top: 12px;
  color: #77e2ae;
  font-size: 12px;
}

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

  .marketplace-model-visual {
    justify-self: start;
  }

  .marketplace-signals {
    max-width: 920px;
  }

  .service-scope-heading {
    grid-template-columns: 1fr;
  }

  .service-scope h2 {
    white-space: normal;
  }

  .service-scope-intro {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  #how-it-works,
  #marketplace-model,
  #for-customers,
  #for-professionals,
  #services,
  #journey,
  #watch,
  #early-access,
  #customer-early-access,
  #professional-interest {
    scroll-margin-top: 88px;
  }

  .marketplace-bridge,
  .service-scope {
    padding: 82px 24px;
  }

  .marketplace-bridge h2 {
    font-size: clamp(42px, 10.5vw, 64px);
  }

  .marketplace-signal-card--commitment {
    grid-template-columns: minmax(118px, 0.42fr) minmax(140px, 0.9fr) minmax(
        0,
        1.1fr
      );
  }

  .audience-split--focused article {
    padding: 82px 24px;
  }

  .audience-journey li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .audience-journey span {
    grid-column: 2;
  }

  .service-scope h2 {
    font-size: clamp(48px, 13vw, 76px);
  }

  .service-scope-heading {
    gap: 24px;
    padding-bottom: 34px;
  }

  .service-scope-intro {
    padding: 22px 22px 24px 26px;
    border-radius: 0 14px 14px 0;
  }

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

  .premium-early-access .form-next-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .verification-boundary {
    grid-template-columns: 1fr;
    padding: 82px 24px;
  }
}

@media (max-width: 680px) {
  .premium-eyebrow,
  .marketplace-signals span,
  .marketplace-signals strong,
  .premium-early-access .form-next-step b,
  .premium-early-access .form-next-step span,
  .app-evidence-ledger dt,
  .app-evidence-ledger dd,
  .verification-boundary > div > span,
  .verification-boundary li b,
  .verification-boundary li span,
  .premium-early-access .form-note,
  .premium-early-access .audience-boundary,
  .hero-boundary {
    font-size: 12px;
    line-height: 1.6;
  }

  .verification-boundary li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-audience-routes a,
  .audience-actions .button,
  .audience-text-action,
  .premium-early-access .launch-form button,
  .mobile-menu-panel a {
    min-height: 48px;
  }

  .form-follow-up button {
    min-height: 48px;
  }

  .hero-audience-routes b,
  .audience-journey b {
    font-size: 15px;
  }

  .hero-audience-routes small,
  .audience-journey span,
  .marketplace-signals p {
    font-size: 13px;
    line-height: 1.55;
  }

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

  .marketplace-signal-card {
    min-height: 0;
  }

  .marketplace-signal-card--commitment {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .marketplace-signal-card--commitment > span {
    margin-bottom: 8px;
  }

  .marketplace-signal-card--commitment > p {
    margin-top: 4px;
  }

  .marketplace-convergence {
    height: 64px;
  }

  .marketplace-convergence::before {
    top: 0;
    right: auto;
    bottom: 50%;
    left: 50%;
    width: 1px;
    border: 0;
    border-radius: 0;
    background: rgba(247, 245, 239, 0.28);
  }

}

@media (max-width: 420px) {
  .marketplace-bridge,
  .service-scope,
  .audience-split--focused article,
  .verification-boundary {
    padding-right: 20px;
    padding-left: 20px;
  }

  .app-evidence-ledger {
    grid-template-columns: 1fr;
  }

  .service-scope-grid {
    grid-template-columns: 1fr;
  }

  .service-scope-grid li {
    min-height: 88px;
  }

  .audience-actions {
    align-items: stretch;
  }

  .audience-actions .button,
  .audience-text-action {
    width: 100%;
  }
}

/* 2026-08-24: post-deployment CX polish and KNOQ Signals service cards. */
.hero-professionals {
  font-weight: inherit;
  white-space: nowrap;
}

.hero-ampersand {
  color: var(--knoq-green-bright);
  font-style: normal;
}

.trades-professionals-ampersand {
  color: var(--knoq-green-bright);
  font-style: normal;
}

#for-professionals .premium-eyebrow {
  color: var(--knoq-ink);
  opacity: 1;
}

#for-professionals .trades-professionals-ampersand {
  color: var(--knoq-yellow);
}

.marketplace-bridge {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: clamp(44px, 4vw, 72px);
}

.marketplace-bridge h2 {
  font-size: clamp(48px, 4.4vw, 68px);
}

/* Keep the brand payoff wholly inside the copy column at the wide two-column
   breakpoint. This is an editorial boundary: the table must retain a real
   gutter rather than lending its first pixels to the headline. */
@media (min-width: 1400px) {
  .marketplace-bridge__accent {
    white-space: nowrap;
  }
}

.audience-split--focused article {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.audience-split--focused .audience-actions {
  margin-top: auto;
  padding-top: 42px;
}

.audience-split--focused .audience-journey {
  margin-bottom: 0;
}

/* 2026-08-25: the commercial film is the public "So what?" bridge between
   the two marketplace journeys and the detailed product mechanics. */
.commercial-explainer {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  padding: clamp(96px, 10vw, 156px) max(5vw, calc((100vw - 1320px) / 2 + 40px));
  overflow: hidden;
  border-bottom: 1px solid rgba(12, 15, 17, 0.14);
  background:
    radial-gradient(
      circle at 90% 4%,
      rgba(255, 199, 0, 0.2),
      transparent 26rem
    ),
    linear-gradient(145deg, #f7f5ef 0%, #ece9df 100%);
  color: var(--knoq-ink);
}

.commercial-explainer::before {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -230px;
  width: min(52vw, 740px);
  aspect-ratio: 1;
  border: 1px solid rgba(15, 143, 82, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(15, 143, 82, 0.035),
    0 0 0 190px rgba(15, 143, 82, 0.02);
  content: "";
}

.commercial-explainer-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 680px;
}

.commercial-explainer-copy .premium-eyebrow {
  color: var(--knoq-green);
}

.commercial-explainer-copy h2 {
  margin: 24px 0 28px;
  color: var(--knoq-ink);
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.commercial-explainer-copy h2 em {
  display: block;
  margin-top: 0.12em;
  color: var(--knoq-green);
  font-style: normal;
}

.commercial-assurance-list {
  position: relative;
  display: grid;
  max-width: 640px;
  margin: 34px 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(12, 15, 17, 0.2);
}

.commercial-assurance-list::before {
  position: absolute;
  top: 41px;
  bottom: 41px;
  left: 21px;
  width: 1px;
  background: linear-gradient(
    var(--knoq-ink),
    var(--knoq-green),
    var(--knoq-yellow)
  );
  content: "";
}

.commercial-assurance-list li {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(12, 15, 17, 0.18);
}

.commercial-assurance-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--knoq-ink);
  color: var(--knoq-paper);
  font:
    850 10px/1 "DM Mono",
    monospace;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 6px #f3f0e8;
}

.commercial-assurance-list li:nth-child(2) .commercial-assurance-number {
  background: var(--knoq-green);
}

.commercial-assurance-list li:nth-child(3) .commercial-assurance-number {
  background: var(--knoq-yellow);
  color: var(--knoq-ink);
}

.commercial-assurance-list li > div {
  min-width: 0;
  padding-top: 1px;
}

.commercial-assurance-list small,
.commercial-assurance-list strong,
.commercial-assurance-list li > div > span {
  display: block;
}

.commercial-assurance-list small {
  margin-bottom: 6px;
  color: var(--knoq-green);
  font:
    850 9px/1.35 "DM Mono",
    monospace;
  letter-spacing: 0.09em;
}

.commercial-assurance-list strong {
  max-width: 540px;
  color: var(--knoq-ink);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.34;
  letter-spacing: -0.018em;
}

.commercial-assurance-list li > div > span {
  margin-top: 5px;
  color: rgba(12, 15, 17, 0.6);
  font-size: 13px;
  line-height: 1.45;
}

.commercial-principles {
  margin: 0 0 28px;
  border-top: 0;
}

.commercial-principles > div {
  display: grid;
  grid-template-columns: minmax(108px, 0.36fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(12, 15, 17, 0.18);
}

.commercial-principles dt {
  color: rgba(12, 15, 17, 0.6);
  font:
    800 10px/1.45 "DM Mono",
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commercial-principles dd {
  min-width: 0;
  margin: 0;
}

.commercial-principles strong,
.commercial-principles span {
  display: block;
}

.commercial-principles strong {
  color: var(--knoq-ink);
  font-size: 16px;
  line-height: 1.35;
}

.commercial-principles span {
  margin-top: 5px;
  color: rgba(12, 15, 17, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

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

.commercial-plan {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 132px;
  padding: 17px;
  border: 1px solid rgba(12, 15, 17, 0.12);
  border-radius: 16px;
  background: var(--knoq-ink);
  color: var(--knoq-paper);
}

.commercial-plan span,
.commercial-plan small {
  font-family: "DM Mono", monospace;
}

.commercial-plan span {
  min-height: 2.6em;
  color: #77e2ae;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.commercial-plan strong {
  margin-top: 8px;
  font-size: clamp(28px, 2.35vw, 38px);
  line-height: 1;
}

.commercial-plan small {
  margin-top: 10px;
  color: rgba(247, 245, 239, 0.7);
  font-size: 9px;
  line-height: 1.4;
}

.commercial-plan--local {
  border-color: rgba(15, 143, 82, 0.32);
  background: var(--knoq-green);
}

.commercial-plan--local span,
.commercial-plan--local small {
  color: rgba(247, 245, 239, 0.82);
}

.commercial-plan--pro {
  border-color: rgba(12, 15, 17, 0.28);
  background: var(--knoq-yellow);
  color: var(--knoq-ink);
}

.commercial-plan--pro span,
.commercial-plan--pro small {
  color: rgba(12, 15, 17, 0.7);
}

.commercial-explainer-status {
  margin: 26px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--knoq-yellow);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(12, 15, 17, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.commercial-explainer-status strong {
  color: var(--knoq-ink);
}

.commercial-explainer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.commercial-explainer-text-action {
  color: var(--knoq-ink);
  font-size: 13px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(15, 143, 82, 0.55);
  text-underline-offset: 5px;
}

.commercial-explainer-film {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 199, 0, 0.46);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(15, 143, 82, 0.22),
      transparent 24rem
    ),
    #0c0f11;
  box-shadow: 0 36px 90px rgba(12, 15, 17, 0.28);
}

.commercial-explainer-film-label {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 26px;
  padding: 7px 10px;
  border: 1px solid rgba(247, 245, 239, 0.22);
  border-radius: 999px;
  background: rgba(12, 15, 17, 0.84);
  color: var(--knoq-paper);
  font:
    800 8px/1 "DM Mono",
    monospace;
  letter-spacing: 0.1em;
  pointer-events: none;
}

.commercial-explainer-film video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 17px;
  background: #080a0b;
  object-fit: cover;
}

.commercial-explainer-film figcaption {
  display: grid;
  gap: 5px;
  padding: 18px 10px 12px;
}

.commercial-explainer-film figcaption span {
  color: var(--knoq-yellow);
  font:
    800 9px/1.4 "DM Mono",
    monospace;
  letter-spacing: 0.08em;
}

.commercial-explainer-film figcaption b {
  color: var(--knoq-paper);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.3;
}

.commercial-explainer-film figcaption small {
  color: rgba(247, 245, 239, 0.64);
  font-size: 12px;
  line-height: 1.45;
}

.commercial-explainer-transcript {
  margin: 0 10px 8px;
  padding: 14px 0 2px;
  border-top: 1px solid rgba(247, 245, 239, 0.16);
  color: rgba(247, 245, 239, 0.7);
}

.commercial-explainer-transcript summary {
  width: fit-content;
  color: var(--knoq-paper);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.commercial-explainer-transcript p {
  max-width: 760px;
  margin: 14px 0 4px;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .commercial-explainer {
    grid-template-columns: 1fr;
  }

  .commercial-explainer-copy,
  .commercial-explainer-film {
    width: 100%;
    max-width: 900px;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .commercial-explainer {
    gap: 42px;
    padding: 76px 20px 84px;
  }

  .commercial-explainer-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .commercial-assurance-list {
    margin-top: 30px;
  }

  .commercial-assurance-list::before {
    top: 38px;
    bottom: 38px;
    left: 18px;
  }

  .commercial-assurance-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .commercial-assurance-number {
    width: 36px;
    height: 36px;
    font-size: 9px;
    box-shadow: 0 0 0 5px #f3f0e8;
  }

  .commercial-assurance-list strong {
    font-size: 16px;
  }

  .commercial-principles > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .commercial-plan-grid {
    grid-template-columns: 1fr;
  }

  .commercial-plan {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 18px;
    min-height: 0;
  }

  .commercial-plan span {
    min-height: 0;
  }

  .commercial-plan strong {
    grid-row: 1 / span 2;
    grid-column: 2;
    margin: 0;
  }

  .commercial-plan small {
    margin-top: 0;
  }

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

  .commercial-explainer-actions .button {
    justify-content: center;
    text-align: center;
  }

  .commercial-explainer-film {
    padding: 7px;
    border-radius: 18px;
  }

  .commercial-explainer-film video {
    border-radius: 12px;
  }

  .commercial-explainer-film-label {
    top: 16px;
    right: 16px;
    font-size: 7px;
  }
}

.audience-lane-copy strong {
  font-size: clamp(34px, 3.1vw, 44px);
  white-space: nowrap;
}

.service-scope-grid {
  gap: 18px;
  border: 0;
}

.service-scope-grid li {
  --service-field-colour: rgba(20, 136, 75, 0.9);
  --service-halo: rgba(20, 136, 75, 0.14);
  --service-field-rotate: -7deg;
  --service-field-x: -8px;
  --service-field-y: 10px;
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 184px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(12, 15, 17, 0.13);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 12%, var(--service-halo), transparent 48%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72),
      rgba(233, 244, 237, 0.34)
    ),
    #f7f5f0;
  box-shadow: 0 18px 45px rgba(12, 15, 17, 0.06);
  font-size: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-scope-grid li:nth-child(3n + 2) {
  background:
    radial-gradient(circle at 88% 12%, var(--service-halo), transparent 48%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.68),
      rgba(255, 201, 40, 0.08)
    ),
    #f7f5f0;
}

.service-scope-grid li::before {
  position: absolute;
  right: -64px;
  bottom: -88px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(20, 136, 75, 0.14);
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 0 24px rgba(20, 136, 75, 0.045),
    0 0 0 52px rgba(255, 201, 40, 0.035);
  content: "";
  transform: rotate(var(--service-field-rotate));
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-scope-grid li::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--knoq-yellow), var(--knoq-green));
  content: "";
}

.service-scope-grid li:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 136, 75, 0.34);
  box-shadow: 0 24px 54px rgba(12, 15, 17, 0.1);
}

.service-scope-grid li:hover::before,
.service-scope-grid li:focus-within::before {
  border-color: rgba(20, 136, 75, 0.24);
  box-shadow:
    0 0 0 28px rgba(20, 136, 75, 0.065),
    0 0 0 60px rgba(255, 201, 40, 0.05);
  transform: rotate(var(--service-field-rotate)) scale(1.04);
}

.service-card-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.service-card-field::before {
  position: absolute;
  right: var(--service-field-x);
  bottom: var(--service-field-y);
  width: 154px;
  height: 154px;
  background: var(--service-field-colour);
  content: "";
  opacity: 0.075;
  transform: rotate(var(--service-field-rotate));
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  -webkit-mask: var(--service-signal-image) center / contain no-repeat;
  mask: var(--service-signal-image) center / contain no-repeat;
}

.service-card-field::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 7px;
  height: 7px;
  border: 4px solid rgba(247, 245, 240, 0.9);
  border-radius: 50%;
  background: var(--knoq-yellow);
  box-shadow: 0 0 0 1px rgba(12, 15, 17, 0.12);
  content: "";
}

.service-scope-grid li:hover .service-card-field::before,
.service-scope-grid li:focus-within .service-card-field::before {
  opacity: 0.13;
  transform: translate(-7px, -4px) rotate(var(--service-field-rotate))
    scale(1.03);
}

.service-card--plumbing {
  --service-signal-image: url("assets/services/plumbing.svg");
  --service-field-rotate: -8deg;
  --service-field-x: -14px;
}

.service-card--electrical {
  --service-signal-image: url("assets/services/electrical.svg");
  --service-field-colour: rgba(187, 137, 0, 0.92);
  --service-halo: rgba(255, 201, 40, 0.18);
  --service-field-rotate: 5deg;
  --service-field-y: 2px;
}

.service-card--lawn-garden {
  --service-signal-image: url("assets/services/lawn-garden.svg");
  --service-field-rotate: -4deg;
  --service-field-x: -2px;
  --service-field-y: 4px;
}

.service-card--house-cleaning {
  --service-signal-image: url("assets/services/house-cleaning.svg");
  --service-field-colour: rgba(15, 102, 66, 0.9);
  --service-field-rotate: 3deg;
  --service-field-x: -12px;
}

.service-card--window-cleaning {
  --service-signal-image: url("assets/services/window-cleaning.svg");
  --service-field-colour: rgba(187, 137, 0, 0.9);
  --service-halo: rgba(255, 201, 40, 0.16);
  --service-field-rotate: 7deg;
  --service-field-y: 5px;
}

.service-card--pool-care {
  --service-signal-image: url("assets/services/pool-care.svg");
  --service-field-rotate: -3deg;
  --service-field-x: -10px;
  --service-field-y: 4px;
}

.service-card--painting {
  --service-signal-image: url("assets/services/painting.svg");
  --service-field-colour: rgba(187, 137, 0, 0.92);
  --service-halo: rgba(255, 201, 40, 0.17);
  --service-field-rotate: -6deg;
}

.service-card--carpentry {
  --service-signal-image: url("assets/services/carpentry.svg");
  --service-field-rotate: 6deg;
  --service-field-x: -4px;
  --service-field-y: 4px;
}

.service-card--handyman {
  --service-signal-image: url("assets/services/handyman.svg");
  --service-field-colour: rgba(15, 102, 66, 0.92);
  --service-field-rotate: -5deg;
  --service-field-x: -12px;
}

.service-card-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 201, 40, 0.3);
  border-radius: 21px;
  background:
    radial-gradient(
      circle at 68% 28%,
      rgba(20, 136, 75, 0.23),
      transparent 42%
    ),
    var(--knoq-ink);
  box-shadow:
    0 16px 34px rgba(12, 15, 17, 0.2),
    inset 0 1px 0 rgba(247, 245, 240, 0.08);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-card-icon::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(247, 245, 240, 0.055);
  border-radius: 15px;
  content: "";
}

.service-scope-grid li:hover .service-card-icon,
.service-scope-grid li:focus-within .service-card-icon {
  box-shadow:
    0 20px 42px rgba(12, 15, 17, 0.25),
    0 0 0 1px rgba(255, 201, 40, 0.18),
    inset 0 1px 0 rgba(247, 245, 240, 0.1);
  transform: translateY(-2px) scale(1.025);
}

.service-card-icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.service-card-number {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 24px;
  color: var(--knoq-green);
  font:
    800 12px/1 "DM Mono",
    monospace;
  letter-spacing: 0.13em;
}

.service-scope-grid li b {
  position: relative;
  z-index: 2;
  color: var(--knoq-ink);
  font-size: clamp(22px, 1.9vw, 29px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

@media (max-width: 1399px) {
  .marketplace-bridge {
    grid-template-columns: 1fr;
  }

  .marketplace-bridge-copy {
    max-width: 900px;
  }
}

@media (min-width: 1101px) and (max-height: 800px) {
  .premium-hero {
    min-height: 760px;
    padding-top: 118px;
    padding-bottom: 42px;
  }

  .premium-hero .hero-lede {
    margin-top: 26px;
    font-size: 17px;
  }

  .premium-hero .premium-actions {
    margin-top: 28px;
  }

  .premium-hero .hero-proof {
    margin-top: 28px;
    padding-top: 16px;
  }

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

  .premium-hero .hero-phone-wrap {
    width: 278px;
  }
}

@media (max-width: 900px) {
  .service-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-scope-grid li {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    min-height: 158px;
    padding: 20px;
  }

  .service-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .service-card-icon img {
    width: 52px;
    height: 52px;
  }

  .service-card-number {
    top: 17px;
    right: 19px;
  }

  .service-card-field::before {
    right: -16px;
    bottom: 5px;
    width: 122px;
    height: 122px;
    opacity: 0.06;
  }
}

@media (max-width: 680px) {
  .audience-lane-copy strong {
    font-size: clamp(27px, 7.2vw, 32px);
  }

  .service-scope-grid li {
    min-height: 148px;
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .service-scope-grid {
    grid-template-columns: 1fr;
  }

  .service-scope-grid li::before {
    opacity: 0.56;
  }

  .service-card-field::before {
    opacity: 0.05;
  }
}

@media (max-width: 420px) {
  .service-scope-grid {
    grid-template-columns: 1fr;
  }

  .service-scope-grid li {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    min-height: 132px;
    padding: 18px;
  }

  .service-card-icon {
    width: 64px;
    height: 64px;
  }

  .service-card-icon img {
    width: 46px;
    height: 46px;
  }

  .service-card-number {
    top: 15px;
    right: 16px;
    font-size: 11px;
  }

  .service-scope-grid li b {
    font-size: 21px;
  }

  .service-card-field::before {
    right: -10px;
    bottom: 3px;
    width: 96px;
    height: 96px;
  }

  .service-card-field::after {
    right: 16px;
    bottom: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketplace-convergence b,
  .service-scope-grid li::before {
    box-shadow: none;
  }

  .service-scope-grid li {
    transition: none;
  }

  .service-scope-grid li::before,
  .service-card-field::before,
  .service-card-icon {
    transition: none;
  }
}

/* Council QA: remove the compact-desktop fault line instead of letting the
   typography jump at a single pixel either side of 1100px. */
@media (min-width: 821px) and (max-width: 1200px) {
  .premium-hero h1 {
    font-size: clamp(44px, 4.45vw, 52px);
  }

  .section-heading h2,
  .app-showcase-heading h2 {
    font-size: clamp(50px, 4.7vw, 56px);
  }

  .store-copy h2 {
    font-size: clamp(44px, 4.1vw, 49px);
  }

  .audience-split h2 {
    font-size: clamp(46px, 4.1vw, 49px);
  }

  .trust-heading h2 {
    font-size: clamp(48px, 4.25vw, 51px);
  }

  .premium-early-access .early-access-intro h2 {
    font-size: clamp(48px, 4.45vw, 53px);
  }

  .finale h2 {
    font-size: clamp(44px, 4.1vw, 49px);
  }
}

/* The two journeys need a full column each before either becomes cramped. */
@media (max-width: 1000px) {
  .audience-split {
    grid-template-columns: 1fr;
  }

  .audience-split--focused article {
    min-height: 0;
  }

  .audience-split--focused article > p:not(.premium-eyebrow) {
    min-block-size: 0;
  }
}

@media (min-width: 681px) {
  .premium-early-access .early-access-intro .premium-eyebrow {
    white-space: nowrap;
  }
}

/* Small supporting copy is still copy: keep it genuinely readable. */
.finale-note {
  color: #9aa8a1;
  font-size: 12px;
  line-height: 1.65;
}

.premium-footer,
.premium-footer .footer-legal a,
.premium-footer .footer-legal p,
.premium-footer > a {
  font-size: 12px;
  line-height: 1.55;
}

.mobile-menu-panel {
  background: #090b0d;
}

@media (max-width: 420px) {
  .marketplace-bridge h2 {
    font-size: clamp(31px, 9.5vw, 38px);
    letter-spacing: -0.052em;
  }

  .hero-audience-routes b {
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: -0.02em;
  }

  .premium-early-access .early-access-intro .premium-eyebrow {
    max-width: 100%;
    font-size: 10px;
    text-wrap: balance;
  }
}

@media (max-width: 360px) {
  .premium-nav {
    width: calc(100% - 16px);
    gap: 6px;
    padding-inline: 8px;
  }

  .premium-nav .logo-lockup {
    width: 104px;
  }

  .premium-nav .nav-cta {
    padding: 9px 8px;
    white-space: nowrap;
    font-size: 9px;
  }

  .mobile-menu summary {
    min-width: 44px;
    padding-inline: 8px;
    font-size: 10px;
  }

  .hero-audience-routes a {
    padding-inline: 9px;
  }

  .hero-audience-routes b {
    white-space: nowrap;
    font-size: 11px;
    letter-spacing: -0.025em;
  }
}

/* 2026-08-24: Trust polish — clean verification slabs and a value-led fairness rule. */
.fairness-rule {
  isolation: isolate;
  grid-template-columns:
    minmax(170px, 0.52fr)
    minmax(350px, 1.18fr)
    minmax(270px, 0.8fr);
  gap: 0;
  align-items: stretch;
  min-height: 154px;
  padding: 0;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 5% 18%,
      rgba(255, 198, 46, 0.13),
      transparent 27%
    ),
    radial-gradient(
      circle at 87% 54%,
      rgba(32, 184, 114, 0.2),
      transparent 36%
    ),
    linear-gradient(135deg, rgba(12, 22, 18, 0.98), rgba(24, 35, 30, 0.98));
}

.fairness-rule::before {
  z-index: 2;
  width: 4px;
}

.fairness-rule::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -78px;
  bottom: -128px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 24px,
    rgba(119, 226, 174, 0.14) 25px 26px,
    transparent 27px 43px
  );
  pointer-events: none;
}

.fairness-rule > span,
.fairness-rule h3,
.fairness-rule p {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 0;
  padding: 32px clamp(24px, 2.4vw, 38px);
}

.fairness-rule > span {
  align-items: flex-start;
  border-right: 1px solid rgba(247, 245, 239, 0.14);
  background: rgba(255, 198, 46, 0.025);
}

.fairness-rule h3 {
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(247, 245, 239, 0.14);
  font-size: clamp(25px, 2.15vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.fairness-rule h3 span + span {
  margin-top: 0.22em;
  color: #77e2ae;
}

.fairness-rule p {
  align-items: center;
  color: rgba(247, 245, 239, 0.7);
  font-size: 13px;
  line-height: 1.62;
}

.verification-boundary {
  grid-template-columns: minmax(260px, 0.66fr) minmax(560px, 1.34fr);
  gap: clamp(44px, 5vw, 76px);
  padding: clamp(64px, 6vw, 92px) 0;
}

.verification-boundary li {
  grid-template-columns: minmax(150px, 0.38fr) minmax(330px, 1fr);
}

@media (max-width: 1100px) {
  .verification-boundary {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 72px 0;
  }

  .verification-boundary > div {
    max-width: 620px;
  }

  .verification-boundary h3 {
    max-width: 520px;
    font-size: clamp(42px, 7vw, 62px);
  }

  .verification-boundary li {
    grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .fairness-rule {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .fairness-rule > span,
  .fairness-rule h3,
  .fairness-rule p {
    padding: 24px 26px;
  }

  .fairness-rule > span,
  .fairness-rule h3 {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 245, 239, 0.14);
  }

  .fairness-rule h3 {
    font-size: clamp(26px, 6vw, 34px);
  }

  .fairness-rule::after {
    right: -112px;
    bottom: -150px;
  }
}

@media (max-width: 680px) {
  .verification-boundary {
    gap: 34px;
    padding: 64px 0;
  }

  .verification-boundary li {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .verification-boundary {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (forced-colors: active) {
  .fairness-rule::after {
    display: none;
  }
}

/* 2026-08-24: owner-approved hero proposition sequence. */
.premium-hero .hero-lede--sequence {
  display: grid;
  gap: 7px;
  width: min(720px, 100%);
  max-width: 100%;
  margin-top: 34px;
  color: var(--knoq-paper);
  font-size: clamp(16px, 4.3vw, 22px);
  line-height: 1.25;
}

.hero-lede__line {
  display: block;
  white-space: normal;
  text-wrap: pretty;
}

.hero-lede__line--availability {
  color: rgba(247, 245, 239, 0.74);
}

.hero-lede__decision {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.38em;
  margin-top: 9px;
  font-size: clamp(20px, 5.5vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hero-lede__decision strong {
  font-weight: 800;
}

.hero-lede__decision strong:first-child {
  color: var(--knoq-yellow);
}

.hero-lede__decision strong:last-child {
  color: #77e2ae;
}

@media (max-width: 520px) {
  .premium-hero .hero-lede--sequence {
    margin-top: 26px;
  }
}

/* 2026-08-24: KNOQ Start Signal, one place, one request, three equal ways to begin. */
.request-signal {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(500px, 0.82fr) minmax(600px, 1.18fr);
  gap: clamp(32px, 3vw, 54px);
  align-items: center;
  overflow: hidden;
  padding: clamp(76px, 8vw, 126px) max(7vw, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(247, 245, 239, 0.08);
  border-bottom: 1px solid rgba(247, 245, 239, 0.08);
  background:
    radial-gradient(circle at 62% 50%, rgba(15, 143, 82, 0.2), transparent 28%),
    radial-gradient(
      circle at 98% 32%,
      rgba(15, 143, 82, 0.13),
      transparent 34%
    ),
    linear-gradient(115deg, #080b0c 0%, #0b100e 58%, #07140f 100%);
}

.request-signal::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 57%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 46px,
    rgba(35, 198, 124, 0.055) 47px 48px,
    transparent 49px 73px
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.request-signal__copy {
  position: relative;
  z-index: 2;
}

.request-signal__copy h2 {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--knoq-paper);
  font-size: clamp(50px, 4.4vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.request-signal__accent {
  margin-top: 0.12em;
  color: var(--knoq-yellow);
}

.request-signal__decision {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38em;
  margin: 34px 0 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.request-signal__decision strong:first-child {
  color: var(--knoq-paper);
}

.request-signal__decision strong:last-child {
  color: #77e2ae;
}

.request-signal__diagram {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(380px, 1fr);
  gap: clamp(46px, 4vw, 74px);
  align-items: center;
  min-width: 0;
}

.request-signal__origin {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  text-align: center;
}

.request-signal__origin::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: calc(50% + 62px);
  width: calc(50% + clamp(46px, 4vw, 74px));
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(119, 226, 174, 0.92),
    rgba(247, 245, 239, 0.74)
  );
  box-shadow: 0 0 16px rgba(119, 226, 174, 0.35);
  transform: translateY(-50%);
}

.request-signal__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118px;
  aspect-ratio: 1;
  border: 1px solid rgba(119, 226, 174, 0.58);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  animation: request-signal-pulse 4.2s ease-out infinite;
}

.request-signal__ring--two {
  animation-delay: 1.4s;
}

.request-signal__ring--three {
  animation-delay: 2.8s;
}

.request-signal__place {
  position: relative;
  display: grid;
  place-items: center;
  width: 94px;
  aspect-ratio: 1;
  margin-bottom: 84px;
  border: 2px solid rgba(247, 245, 239, 0.9);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(119, 226, 174, 0.3),
      transparent 54%
    ),
    #0b5c3a;
  box-shadow:
    0 0 0 12px rgba(15, 143, 82, 0.12),
    0 0 34px rgba(35, 198, 124, 0.54),
    inset 0 0 22px rgba(119, 226, 174, 0.28);
}

.request-signal__place::before {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 23px;
  aspect-ratio: 1;
  border: 3px solid #07140f;
  border-radius: 50%;
  background: var(--knoq-yellow);
  box-shadow: 0 0 18px rgba(255, 198, 46, 0.55);
}

.request-signal__home {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  margin-top: 2px;
}

.request-signal__home::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 8px;
  width: 26px;
  height: 26px;
  border-radius: 2px;
  background: var(--knoq-paper);
  transform: rotate(45deg);
}

.request-signal__home::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 3px;
  bottom: 0;
  left: 3px;
  height: 28px;
  border-radius: 3px;
  background: var(--knoq-paper);
}

.request-signal__window {
  position: absolute;
  z-index: 3;
  bottom: 8px;
  left: 9px;
  width: 13px;
  height: 13px;
  border-radius: 1px;
  background:
    linear-gradient(var(--knoq-paper), var(--knoq-paper)) 50% 0 / 2px 100%
      no-repeat,
    linear-gradient(var(--knoq-paper), var(--knoq-paper)) 0 50% / 100% 2px
      no-repeat,
    #0b5c3a;
}

.request-signal__door {
  position: absolute;
  z-index: 3;
  right: 8px;
  bottom: 0;
  width: 9px;
  height: 18px;
  border-radius: 2px 2px 0 0;
  background: #0b5c3a;
}

.request-signal__origin strong,
.request-signal__origin small {
  position: absolute;
  left: 50%;
  width: max-content;
  max-width: 150px;
  transform: translateX(-50%);
}

.request-signal__origin strong {
  top: calc(50% + 57px);
  color: var(--knoq-paper);
  font:
    800 13px/1.1 "DM Mono",
    monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.request-signal__origin small {
  top: calc(50% + 81px);
  color: rgba(247, 245, 239, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

.request-signal__paths {
  position: relative;
  display: grid;
  gap: 14px;
}

.request-signal__paths::before {
  content: "";
  position: absolute;
  top: 16.66%;
  bottom: 16.66%;
  left: calc(clamp(46px, 4vw, 74px) * -0.5);
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 198, 46, 0.82),
    rgba(247, 245, 239, 0.72) 50%,
    rgba(119, 226, 174, 0.82)
  );
  box-shadow: 0 0 15px rgba(247, 245, 239, 0.18);
}

.request-path {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 20px 26px;
  overflow: hidden;
  border: 1px solid rgba(247, 245, 239, 0.22);
  border-radius: 21px;
  background: linear-gradient(
    135deg,
    rgba(247, 245, 239, 0.055),
    rgba(247, 245, 239, 0.018)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.request-path::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: calc(clamp(46px, 4vw, 74px) / 2);
  height: 2px;
  background: rgba(247, 245, 239, 0.72);
  box-shadow: 0 0 14px rgba(247, 245, 239, 0.28);
}

.request-path::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(clamp(46px, 4vw, 74px) / -2 - 6px);
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--knoq-paper);
  box-shadow: 0 0 18px rgba(247, 245, 239, 0.62);
  transform: translateY(-50%);
  animation: request-node-breathe 3.6s ease-in-out infinite;
}

.request-path--now {
  border-color: rgba(255, 198, 46, 0.62);
  background: linear-gradient(
    135deg,
    rgba(255, 198, 46, 0.115),
    rgba(255, 198, 46, 0.018)
  );
}

.request-path--quote {
  border-color: rgba(119, 226, 174, 0.55);
  background: linear-gradient(
    135deg,
    rgba(119, 226, 174, 0.1),
    rgba(119, 226, 174, 0.018)
  );
}

.request-path--now::after {
  background: var(--knoq-yellow);
  box-shadow: 0 0 18px rgba(255, 198, 46, 0.7);
}

.request-path--later::after {
  animation-delay: 0.6s;
}

.request-path--quote::after {
  background: #77e2ae;
  box-shadow: 0 0 18px rgba(119, 226, 174, 0.68);
  animation-delay: 1.2s;
}

.request-path small {
  display: block;
  margin-bottom: 5px;
  color: rgba(247, 245, 239, 0.6);
  font:
    800 9px/1.2 "DM Mono",
    monospace;
  letter-spacing: 0.12em;
}

.request-path h3 {
  margin: 0;
  color: var(--knoq-paper);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.request-path p {
  margin: 9px 0 0;
  color: rgba(247, 245, 239, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.request-path--now h3,
.request-path--now small {
  color: var(--knoq-yellow);
}

.request-path--quote h3,
.request-path--quote small {
  color: #9fe7be;
}

.request-path__icon {
  position: relative;
  display: block;
  width: 66px;
  aspect-ratio: 1;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .request-path:hover {
    transform: translateY(-3px) scale(1.008);
    filter: brightness(1.08);
  }

  .request-path--now:hover {
    border-color: rgba(255, 198, 46, 0.96);
    background: linear-gradient(
      135deg,
      rgba(255, 198, 46, 0.2),
      rgba(255, 198, 46, 0.045)
    );
    box-shadow:
      0 0 32px rgba(255, 198, 46, 0.2),
      inset 0 1px 0 rgba(255, 234, 160, 0.16);
  }

  .request-path--later:hover {
    border-color: rgba(247, 245, 239, 0.7);
    background: linear-gradient(
      135deg,
      rgba(247, 245, 239, 0.11),
      rgba(247, 245, 239, 0.035)
    );
    box-shadow:
      0 0 30px rgba(247, 245, 239, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.13);
  }

  .request-path--quote:hover {
    border-color: rgba(119, 226, 174, 0.9);
    background: linear-gradient(
      135deg,
      rgba(119, 226, 174, 0.17),
      rgba(119, 226, 174, 0.04)
    );
    box-shadow:
      0 0 32px rgba(119, 226, 174, 0.18),
      inset 0 1px 0 rgba(190, 255, 219, 0.14);
  }

  .request-path:hover .request-path__icon {
    transform: scale(1.055);
    filter: brightness(1.1);
  }
}

.request-path__icon--now {
  border: 2px solid var(--knoq-yellow);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(255, 198, 46, 0.12),
    0 0 24px rgba(255, 198, 46, 0.3);
}

.request-path__icon--now::before,
.request-path__icon--now::after {
  content: "";
  position: absolute;
  border: 2px solid var(--knoq-yellow);
  border-radius: 50%;
  inset: 12px;
}

.request-path__icon--now::after {
  inset: 26px;
  background: var(--knoq-yellow);
}

.request-path__icon--later {
  width: 64px;
  height: 57px;
  margin-top: 7px;
  border: 2px solid rgba(247, 245, 239, 0.86);
  border-radius: 10px;
  background:
    radial-gradient(circle, rgba(247, 245, 239, 0.76) 0 2px, transparent 3px)
      9px 22px / 15px 15px,
    rgba(247, 245, 239, 0.07);
  box-shadow: 0 0 20px rgba(247, 245, 239, 0.12);
}

.request-path__icon--later::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(247, 245, 239, 0.72);
}

.request-path__icon--later::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 12px;
  width: 5px;
  height: 16px;
  border-radius: 4px;
  background: var(--knoq-paper);
  box-shadow: 30px 0 0 var(--knoq-paper);
}

.request-path__icon--quote {
  width: 52px;
  height: 65px;
  margin-left: 6px;
  border: 2px solid #9fe7be;
  border-radius: 5px 13px 5px 5px;
  background:
    linear-gradient(#9fe7be, #9fe7be) 10px 26px / 30px 2px no-repeat,
    linear-gradient(#9fe7be, #9fe7be) 10px 36px / 25px 2px no-repeat,
    linear-gradient(#9fe7be, #9fe7be) 10px 46px / 20px 2px no-repeat,
    rgba(119, 226, 174, 0.08);
  box-shadow: 0 0 22px rgba(119, 226, 174, 0.18);
}

.request-path__icon--quote::after {
  content: "";
  position: absolute;
  right: -11px;
  bottom: -8px;
  width: 26px;
  aspect-ratio: 1;
  border: 2px solid #07140f;
  border-radius: 50%;
  background: #77e2ae;
  box-shadow: 0 0 15px rgba(119, 226, 174, 0.3);
}

@keyframes request-signal-pulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }
  18% {
    opacity: 0.55;
  }
  74%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.45);
  }
}

@keyframes request-node-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(-50%) scale(0.86);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
  }
}

@media (max-width: 1320px) {
  .request-signal {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .request-signal__copy {
    max-width: 720px;
  }

  .request-signal__copy h2 {
    max-width: 720px;
    font-size: clamp(50px, 7.3vw, 76px);
  }

  .request-signal__diagram {
    grid-template-columns: minmax(150px, 0.34fr) minmax(420px, 1fr);
    max-width: 820px;
  }
}

@media (max-width: 720px) {
  .request-signal {
    gap: 46px;
    padding: 70px 24px;
  }

  .request-signal::before {
    top: 49%;
    left: 50%;
    width: 740px;
  }

  .request-signal__copy h2 {
    font-size: clamp(48px, 14vw, 76px);
  }

  .request-signal__diagram {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: none;
  }

  .request-signal__origin {
    min-height: 220px;
  }

  .request-signal__origin::after {
    top: calc(50% + 70px);
    left: 50%;
    width: 2px;
    height: 66px;
    background: linear-gradient(
      180deg,
      rgba(119, 226, 174, 0.92),
      rgba(247, 245, 239, 0.74)
    );
    transform: translateX(-50%);
  }

  .request-signal__paths::before,
  .request-path::before,
  .request-path::after {
    display: none;
  }

  .request-path {
    grid-template-columns: 68px minmax(0, 1fr);
  }
}

@media (max-width: 420px) {
  .request-signal {
    padding-right: 18px;
    padding-left: 18px;
  }

  .request-signal__copy h2 {
    font-size: clamp(44px, 14.7vw, 60px);
  }

  .request-signal__decision {
    font-size: 21px;
  }

  .request-path {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    min-height: 124px;
    padding: 18px 17px;
    border-radius: 18px;
  }

  .request-path__icon {
    transform: scale(0.8);
    transform-origin: left center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .request-signal__ring,
  .request-path::after {
    animation: none;
  }

  .request-path,
  .request-path__icon {
    transition: none;
  }

  .request-signal__ring--one {
    opacity: 0.28;
    transform: translate(-50%, -50%) scale(1.7);
  }
}

/* 2026-08-25: app-matched photographic service tiles. */
.service-scope-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.15vw, 18px);
}

.service-scope-grid li {
  --service-label-x: 18px;
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  aspect-ratio: 1;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(12, 15, 17, 0.16);
  border-radius: 20px;
  background: var(--knoq-ink);
  box-shadow: 0 18px 42px rgba(12, 15, 17, 0.12);
}

.service-scope-grid li::before {
  z-index: 1;
  inset: auto 0 0;
  width: auto;
  height: 58%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 12, 0.7));
  box-shadow: none;
  opacity: 1;
  transform: none;
}

.service-scope-grid li::after {
  z-index: 3;
  height: 4px;
}

.service-card-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-scope-grid li:hover .service-card-image {
  transform: scale(1.035);
}

.service-scope-grid li:hover,
.service-scope-grid li:focus-within {
  border-color: rgba(255, 201, 40, 0.62);
  box-shadow: 0 24px 52px rgba(12, 15, 17, 0.19);
}

.service-scope-grid li:hover::before,
.service-scope-grid li:focus-within::before {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.service-scope-grid li b {
  position: absolute;
  z-index: 2;
  right: var(--service-label-x);
  bottom: 18px;
  left: var(--service-label-x);
  display: block;
  width: fit-content;
  max-width: calc(100% - (var(--service-label-x) * 2));
  padding: 8px 11px 9px;
  border: 1px solid rgba(247, 245, 240, 0.2);
  border-radius: 10px;
  background: rgba(12, 15, 17, 0.79);
  box-shadow: 0 8px 24px rgba(12, 15, 17, 0.18);
  color: #f7f5f0;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.service-card--plumbing .service-card-image,
.service-card--window-cleaning .service-card-image {
  object-position: 52% center;
}

.service-card--electrical .service-card-image,
.service-card--painting .service-card-image {
  object-position: 48% center;
}

.service-card--lawn-garden .service-card-image {
  object-position: 58% center;
}

.service-card--pool-care .service-card-image {
  object-position: 44% center;
}

@media (max-width: 1180px) {
  .service-scope-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .service-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-scope-grid li {
    min-height: 0;
    padding: 0;
    border-radius: 17px;
  }

  .service-scope-grid li b {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 7px 9px 8px;
    border-radius: 8px;
    font-size: clamp(13px, 3.6vw, 16px);
    white-space: nowrap;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .service-card-image {
    transition: none;
  }

  .service-scope-grid li:hover .service-card-image {
    transform: none;
  }
}

/* 2026-08-25: owner-directed hero hierarchy and integrated trust charter. */
.premium-hero h1 .hero-ampersand {
  display: inline-block;
  margin-inline: 0.16em;
  color: rgba(247, 245, 239, 0.72);
  font-size: 0.68em;
  font-weight: 600;
  line-height: 1;
  vertical-align: 0.08em;
}

@media (min-width: 1101px) {
  .premium-hero h1 {
    font-size: clamp(42px, 3.75vw, 56px);
  }
}

.trades-professionals-ampersand,
#for-professionals .trades-professionals-ampersand {
  color: currentColor;
  font-size: inherit;
  opacity: 1;
}

/* 2026-08-25 local communications bundle: two-way language and device truth. */
.premium-nav .nav-links a {
  position: relative;
  z-index: 0;
  isolation: isolate;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    text-shadow 180ms ease;
}

.premium-nav .nav-links a::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 5px -11px;
  pointer-events: none;
  border: 1px solid rgba(32, 184, 114, 0.28);
  border-radius: 10px;
  background: rgba(32, 184, 114, 0.12);
  box-shadow:
    0 0 9px 2px rgba(32, 184, 114, 0.5),
    0 0 24px 7px rgba(32, 184, 114, 0.3),
    inset 0 0 12px rgba(32, 184, 114, 0.2);
  opacity: 0;
  transform: scale(0.84);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.premium-nav .nav-links a:hover,
.premium-nav .nav-links a:focus-visible {
  color: var(--knoq-green-bright);
  text-shadow:
    0 0 6px rgba(32, 184, 114, 0.98),
    0 0 15px rgba(32, 184, 114, 0.82),
    0 0 30px rgba(32, 184, 114, 0.62);
}

.premium-nav .nav-links a:hover::before,
.premium-nav .nav-links a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.hero-handoff .trades-professionals-ampersand {
  color: currentColor;
}

.audience-customer h2 em {
  color: var(--knoq-ink);
}

.audience-customer h2 .audience-customer-knoq {
  color: #ffffff;
}

.audience-customer h2 .audience-customer-payoff {
  color: var(--knoq-ink);
}

.marketplace-model-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
}

.marketplace-model-visual::after {
  position: absolute;
  z-index: 2;
  top: 5.2%;
  right: 4.2%;
  left: 4.2%;
  height: 12.5%;
  border-radius: 10px;
  background: linear-gradient(90deg, #101814 0%, #0d1a15 55%, #0a2018 100%);
  box-shadow: 0 8px 20px rgba(5, 11, 9, 0.45);
  content: "";
}

.marketplace-model-labels {
  position: absolute;
  z-index: 3;
  top: 7.2%;
  right: 8%;
  left: 8%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10%;
  color: var(--knoq-paper);
  pointer-events: none;
}

.marketplace-model-labels span {
  display: grid;
  gap: 7px;
}

.marketplace-model-labels span:first-child b {
  color: var(--knoq-yellow);
}

.marketplace-model-labels span:last-child b {
  color: #77e2ae;
}

.marketplace-model-labels b,
.marketplace-model-labels small {
  font-family: "DM Mono", monospace;
  line-height: 1.2;
  letter-spacing: 0.035em;
}

.marketplace-model-labels b {
  font-size: clamp(7px, 0.72vw, 12px);
}

.marketplace-model-labels small {
  color: var(--knoq-paper);
  font-size: clamp(5px, 0.52vw, 9px);
  font-weight: 800;
}

.process-phone {
  position: relative;
  isolation: isolate;
  width: min(100%, 228px);
  aspect-ratio: 9 / 20;
  margin: 8px auto 0;
  padding: 6px;
  overflow: hidden;
  border: 3px solid #3b4541;
  border-radius: 32px;
  background: linear-gradient(145deg, #30383a, #070a0b 72%);
  box-shadow:
    0 30px 58px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 48px rgba(15, 143, 82, 0.12);
}

.process-phone--need {
  transform: rotate(-2deg) translateY(7px);
}

.process-phone--choice {
  transform: rotate(1.5deg) translateY(-3px);
}

.process-phone--progress {
  transform: rotate(-1deg) translateY(9px);
}

.process-phone::before {
  position: absolute;
  z-index: 3;
  top: 11px;
  left: 50%;
  width: 30%;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: #050708;
  content: "";
  transform: translateX(-50%);
}

.process-phone::after {
  position: absolute;
  z-index: 2;
  inset: 4px;
  border-radius: 26px;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.045) 16%,
    transparent 37%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
}

.process-phone__screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
  background: #080b0c;
}

.process-phone__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.premium-early-access .launch-form.launch-form-customer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(48px, 5vw, 68px) clamp(32px, 4vw, 62px)
    clamp(34px, 4vw, 54px);
  border: 12px solid #30383a;
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 18%, rgba(15, 143, 82, 0.14), transparent 32%),
    linear-gradient(145deg, #07100d, #0b1712);
  box-shadow:
    0 36px 84px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 60px rgba(15, 143, 82, 0.12);
}

.premium-early-access .launch-form.launch-form-customer::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(
    122deg,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.035) 15%,
    transparent 34%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
}

.premium-early-access .launch-form.launch-form-customer::after {
  position: absolute;
  z-index: 4;
  top: -8px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #161c1e;
  border-radius: 50%;
  background: #050708;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  content: "";
  transform: translateX(-50%);
}

.premium-early-access .launch-form-customer > * {
  position: relative;
  z-index: 2;
}

.form-brand-word {
  color: var(--knoq-yellow);
}

.form-brand-stop {
  color: var(--knoq-paper);
}

@media (max-width: 959px) {
  .premium-early-access .launch-form.launch-form-customer {
    padding: 48px 30px 36px;
    border-width: 10px;
    border-radius: 32px;
  }
}

@media (max-width: 680px) {
  .marketplace-model-labels {
    top: 7%;
    right: 7%;
    left: 7%;
    gap: 7%;
  }

  .process-phone,
  .process-phone--need,
  .process-phone--choice,
  .process-phone--progress {
    width: min(72vw, 220px);
    transform: none;
  }

  .premium-early-access .launch-form.launch-form-customer {
    padding: 42px 20px 30px;
    border-width: 8px;
    border-radius: 28px;
  }
}

.verification-boundary {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  margin-top: clamp(54px, 6vw, 84px);
  padding: clamp(38px, 4.8vw, 68px);
  border: 1px solid rgba(247, 245, 239, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(15, 143, 82, 0.2), transparent 36%),
    linear-gradient(132deg, #101713 0%, #0c1210 52%, #0a100e 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.verification-boundary::before {
  position: absolute;
  top: 0;
  right: clamp(28px, 5vw, 72px);
  left: clamp(28px, 5vw, 72px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 198, 46, 0.9),
    rgba(15, 143, 82, 0.65),
    transparent
  );
  content: "";
}

.verification-boundary__intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: end;
  max-width: none;
  padding-bottom: clamp(28px, 3vw, 42px);
  border-bottom: 1px solid rgba(247, 245, 239, 0.14);
}

.verification-boundary__intro > span {
  align-self: start;
  padding-top: 0.45em;
}

.verification-boundary h3 {
  max-width: none;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.verification-boundary h3 span {
  display: block;
}

.verification-boundary h3 span:last-child {
  color: #77e2ae;
}

.verification-boundary ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  counter-reset: trust-promise;
}

.verification-boundary li {
  display: block;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(247, 245, 239, 0.12);
  border-radius: 16px;
  background: rgba(247, 245, 239, 0.035);
  counter-increment: trust-promise;
}

.verification-boundary li::before {
  display: block;
  margin-bottom: 34px;
  color: var(--knoq-yellow);
  font:
    800 11px/1 "DM Mono",
    monospace;
  letter-spacing: 0.08em;
  content: "0" counter(trust-promise);
}

.verification-boundary li b {
  display: block;
  margin-bottom: 13px;
  font-size: 12px;
  line-height: 1.35;
}

.verification-boundary li span {
  display: block;
  color: rgba(247, 245, 239, 0.76);
  font-size: 14px;
  line-height: 1.58;
}

@media (max-width: 900px) {
  .verification-boundary__intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .verification-boundary ol {
    grid-template-columns: 1fr;
  }

  .verification-boundary li {
    min-height: 0;
  }

  .verification-boundary li::before {
    margin-bottom: 20px;
  }
}

@media (max-width: 520px) {
  .verification-boundary {
    margin-top: 42px;
    padding: 30px 20px 20px;
    border-radius: 18px;
  }

  .verification-boundary h3 {
    font-size: clamp(27px, 8.5vw, 36px);
  }

  .verification-boundary li {
    padding: 20px;
  }
}

/* Final cascade authority for the owner-approved WHAT-first hero. */
.premium-hero .hero-lede--sequence {
  gap: 12px;
  max-width: 690px;
}

/* 2026-08-27: owner-approved three-phase, landscape-tablet rollout. */
.rollout-track {
  grid-template-columns: repeat(2, minmax(300px, 430px));
  column-gap: clamp(28px, 4vw, 58px);
  row-gap: clamp(38px, 5vw, 64px);
  align-items: start;
  justify-content: center;
}

.rollout-phase {
  width: 100%;
  min-height: 820px;
}

.rollout-phase--tablet {
  grid-column: 1 / -1;
  max-width: 1220px;
  min-height: 610px;
  justify-self: center;
  padding: 38px clamp(32px, 4vw, 56px) 36px;
  border-radius: 48px;
}

.rollout-phase--tablet::before {
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 38%, #24566b 0 2px, #071014 3px 6px, #020304 7px);
}

.rollout-phase--tablet::after {
  border-radius: 41px;
}

.rollout-phase--tablet header {
  min-height: 134px;
  padding-top: 34px;
}

.rollout-phase--tablet h3 {
  font-size: clamp(38px, 4vw, 54px);
}

.rollout-phase--tablet ul {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(18px, 2.4vw, 34px);
  margin-top: 16px;
}

.rollout-phase--tablet li:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.rollout-phase--tablet li > a {
  min-height: 48px;
  padding-inline: 8px;
  font-size: clamp(12px, 1.08vw, 14px);
}

.rollout-phase--two,
.rollout-phase--three {
  height: 900px;
  min-height: 900px;
  max-width: 430px;
  justify-self: center;
  padding-inline: clamp(24px, 2.4vw, 32px);
}

.rollout-device-home {
  position: absolute;
  bottom: 17px;
  left: 50%;
  z-index: 3;
  width: 66px;
  height: 4px;
  border-radius: 999px;
  opacity: 0.68;
  transform: translateX(-50%);
  background: rgba(247, 245, 240, 0.76);
  box-shadow: 0 0 10px rgba(247, 245, 240, 0.08);
}

.rollout-phase--tablet .rollout-device-home {
  width: 94px;
}

@media (max-width: 1180px) {
  .rollout-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rollout-phase--tablet {
    grid-column: 1 / -1;
    min-height: 610px;
  }

  .rollout-phase--tablet ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 16px;
  }
}

@media (max-width: 780px) {
  .rollout-track {
    grid-template-columns: 1fr;
  }

  .rollout-phase--tablet {
    width: min(100%, 680px);
    min-height: 820px;
    padding: 38px 24px 36px;
  }

  .rollout-phase--tablet ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
  }

  .rollout-phase--tablet li:nth-last-child(-n + 4) {
    border-bottom: 1px solid rgba(247, 245, 240, 0.075);
  }

  .rollout-phase--tablet li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .rollout-phase--two,
  .rollout-phase--three {
    height: 1040px;
    max-width: 420px;
    min-height: 1040px;
  }
}

@media (max-width: 420px) {
  .rollout-phase--tablet {
    min-height: 850px;
    padding-inline: 18px;
  }

  .rollout-phase--tablet li > a {
    min-height: 46px;
    gap: 5px;
    padding-inline: 4px;
    font-size: 11.5px;
  }
}

@media (max-width: 680px) {
  .service-scope-grid li b {
    font-size: clamp(11px, 3.15vw, 15px);
  }
}
