@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/InstrumentSans-Variable-v35.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/IBMPlexMono-Medium-v35.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy: #0b1638;
  --paper: #f7f9fd;
  --white: #ffffff;
  --cobalt: #315cff;
  --cobalt-dark: #1f43ce;
  --sky: #8bcbff;
  --ice: #e8eefa;
  --muted: #5d6b86;
  --line: #cfd7e8;
  --ink-soft: #283555;
  --signal: #d94b38;
  --signal-soft: #fff0ed;
  --positive: #14775f;
  --positive-soft: #e7f5ef;
  --font-sans: "Instrument Sans", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-space: clamp(72px, 9vw, 128px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 280px;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body,
button,
a,
summary {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  text-decoration-thickness: 2px;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 590;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.5vw, 70px);
  font-weight: 560;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 620;
}

p {
  margin-bottom: 1.15em;
}

strong {
  font-weight: 650;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--white {
  background: var(--white);
}

.section--ice {
  background: var(--ice);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--cobalt);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--sky);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 88px);
}

.section-intro h2 {
  margin-bottom: 0;
}

.section-intro p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 19px;
}

.section-intro--light p {
  color: #c8d4ed;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.site-header--solid {
  position: sticky;
  top: 0;
  background: rgba(247, 249, 253, 0.97);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: min(100% - (2 * var(--gutter)), var(--container));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  text-decoration: none;
}

.brand-link img {
  width: clamp(184px, 19vw, 244px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 14px;
  font-weight: 620;
}

.desktop-nav a {
  text-decoration: none;
}

.desktop-nav a:not(.header-cta):hover {
  color: var(--sky);
}

.site-header--solid .desktop-nav a:not(.header-cta):hover {
  color: var(--cobalt);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid currentColor;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-cta:hover {
  background: var(--white);
  color: var(--navy);
}

.site-header--solid .header-cta {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: var(--white);
}

.site-header--solid .header-cta:hover {
  background: var(--cobalt-dark);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  place-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 24px;
}

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

.mobile-nav-panel {
  position: absolute;
  top: 52px;
  right: 0;
  display: grid;
  width: min(270px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(11, 22, 56, 0.2);
}

.mobile-nav-panel a {
  padding: 11px 10px;
  border-bottom: 1px solid var(--ice);
  text-decoration: none;
  font-size: 15px;
  font-weight: 620;
}

.mobile-nav-panel a:last-child {
  border-bottom: 0;
  color: var(--cobalt);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.hero-content {
  position: relative;
  display: grid;
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
  padding-block: clamp(36px, 5vh, 72px) 28px;
  align-content: center;
}

.brand-hero-content {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: clamp(42px, 8vw, 124px);
  align-items: center;
}

.hero-wordmark {
  width: clamp(280px, 30vw, 390px);
  height: auto;
  margin-bottom: 30px;
}

.brand-hero h1 {
  max-width: 12ch;
  font-size: clamp(48px, 5.5vw, 84px);
}

.brand-symbol {
  display: grid;
  min-width: 0;
  place-items: center;
}

.brand-symbol img {
  width: min(100%, 330px);
  height: auto;
  opacity: 0.16;
  filter: drop-shadow(0 0 60px rgba(139, 203, 255, 0.16));
}

.brand-symbol--product {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  width: min(34vw, 390px);
  transform: translateY(-55%);
  pointer-events: none;
}

.brand-symbol--product img {
  width: 100%;
  opacity: 0.08;
}

.product-hero .hero-copy,
.product-hero .hero-metrics {
  position: relative;
  z-index: 1;
}

.consultation-hero h1 {
  max-width: 14ch;
  font-size: clamp(50px, 6vw, 88px);
}

.hero-copy {
  max-width: 890px;
}

.hero h1 {
  max-width: 10ch;
}

.hero-lead {
  max-width: 780px;
  margin-bottom: 34px;
  color: #e4eaf8;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--cobalt);
  color: var(--white);
}

.button--primary:hover {
  background: var(--cobalt-dark);
}

.button--light {
  background: var(--white);
  color: var(--navy);
}

.button--light:hover {
  background: var(--sky);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.button-arrow {
  font-family: var(--font-mono);
  font-size: 18px;
}

.hero-note {
  margin: 16px 0 0;
  color: #c8d4ed;
  font-family: var(--font-mono);
  font-size: 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: clamp(42px, 7vh, 76px);
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-metric {
  min-height: 74px;
  padding: 14px 16px;
  background: rgba(6, 14, 38, 0.66);
}

.hero-metric strong,
.hero-metric span {
  display: block;
}

.hero-metric strong {
  font-size: 18px;
}

.hero-metric span {
  color: #c8d4ed;
  font-size: 13px;
}

.field-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(38px, 8vw, 120px);
  align-items: start;
}

.field-opening h2 {
  margin-bottom: 0;
}

.field-opening-copy {
  padding-top: 12px;
  color: var(--ink-soft);
  font-size: 20px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-item {
  min-height: 250px;
  padding: 30px clamp(20px, 3vw, 38px) 32px;
  border-right: 1px solid var(--line);
}

.signal-item:first-child {
  padding-left: 0;
}

.signal-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.signal-index {
  display: block;
  margin-bottom: 54px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 13px;
}

.signal-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
}

.offer-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  min-height: 650px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--cobalt);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 20px 52px rgba(11, 22, 56, 0.09);
  flex-direction: column;
}

.offer-card--consultation {
  border-color: #26365e;
  border-top-color: var(--sky);
  background: var(--navy);
  color: var(--white);
}

.offer-card-copy {
  display: flex;
  flex: 1;
  min-width: 0;
  padding: clamp(32px, 4vw, 52px);
  align-items: flex-start;
  flex-direction: column;
}

.product-status {
  display: block;
  margin-bottom: 28px;
  color: var(--positive);
  font-family: var(--font-mono);
  font-size: 12px;
}

.offer-card h3 {
  margin-bottom: 20px;
  font-size: clamp(34px, 3.5vw, 52px);
}

.product-promise {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.product-facts {
  display: grid;
  width: 100%;
  margin: 14px 0 34px;
  border-top: 1px solid var(--line);
}

.product-facts span {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.product-facts strong {
  color: var(--navy);
}

.offer-card .button {
  margin-top: auto;
}

.offer-card--consultation .product-status {
  color: var(--sky);
}

.offer-card--consultation .product-promise {
  color: #e4eaf8;
}

.offer-card--consultation .product-facts {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.offer-card--consultation .product-facts span {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: #b8c5df;
}

.offer-card--consultation .product-facts strong {
  color: var(--white);
}

.offer-card-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--ice);
}

.offer-card-map span {
  min-width: 0;
  padding: 18px clamp(18px, 3vw, 30px);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.offer-card-map span:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.offer-card-map span:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.offer-card--consultation .offer-card-map {
  border-top-color: rgba(255, 255, 255, 0.2);
  background: #07102a;
}

.offer-card--consultation .offer-card-map span {
  color: #aebbd4;
}

.offer-card--consultation .offer-card-map span:nth-child(odd),
.offer-card--consultation .offer-card-map span:nth-child(-n + 2) {
  border-color: rgba(255, 255, 255, 0.16);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-item {
  min-width: 0;
  padding: 30px clamp(18px, 2.4vw, 32px) 34px;
  border-right: 1px solid var(--line);
}

.approach-item:first-child {
  padding-left: 0;
}

.approach-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.approach-item > span {
  display: block;
  min-height: 54px;
  margin-bottom: 34px;
  color: var(--cobalt);
  font-family: var(--font-mono);
  font-size: 12px;
}

.approach-item h3 {
  font-size: 22px;
}

.approach-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.65fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.product-figure {
  margin: 0;
}

.product-frame {
  overflow: hidden;
  border: 1px solid #b7c3db;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(11, 22, 56, 0.14);
}

.product-frame img {
  width: 100%;
  height: auto;
}

.product-frame--report {
  aspect-ratio: 0.707 / 1;
}

.product-frame--report img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.product-caption {
  display: flex;
  margin-top: 14px;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.product-caption strong {
  color: var(--navy);
  font-weight: 500;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--line);
}

.deliverable {
  padding: 26px 24px 0;
  border-right: 1px solid var(--line);
}

.deliverable:first-child {
  padding-left: 0;
}

.deliverable:last-child {
  padding-right: 0;
  border-right: 0;
}

.deliverable-code {
  display: block;
  margin-bottom: 30px;
  color: var(--cobalt);
  font-family: var(--font-mono);
  font-size: 12px;
}

.deliverable h3 {
  font-size: 22px;
}

.deliverable p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.process-step {
  min-height: 310px;
  padding: 28px 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-number {
  display: block;
  margin-bottom: 74px;
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 13px;
}

.process-step h3 {
  color: var(--white);
  font-size: 23px;
}

.process-step p {
  margin-bottom: 0;
  color: #c8d4ed;
  font-size: 15px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 7vw, 96px);
}

.scope-panel {
  padding-top: 24px;
  border-top: 3px solid var(--cobalt);
}

.scope-panel--out {
  border-top-color: var(--signal);
}

.scope-panel h3 {
  margin-bottom: 26px;
}

.scope-panel .button {
  margin-top: 12px;
}

.scope-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.scope-list li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid var(--line);
}

.scope-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--positive);
  content: "+";
  font-family: var(--font-mono);
  font-weight: 500;
}

.scope-panel--out .scope-list li::before {
  color: var(--signal);
  content: "–";
}

.price-band {
  background: var(--cobalt);
  color: var(--white);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(42px, 9vw, 128px);
  align-items: center;
}

.price-label {
  display: block;
  margin-bottom: 18px;
  color: #dce6ff;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
}

.price-value {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 610;
  line-height: 1.02;
}

.price-meta {
  max-width: 650px;
  margin-bottom: 0;
  color: #e3e9ff;
  font-size: 18px;
}

.price-hold {
  max-width: 700px;
  padding-left: 15px;
  margin: 22px 0 0;
  border-left: 3px solid var(--sky);
  color: #dce6ff;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
}

.price-aside {
  padding-left: clamp(24px, 4vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.price-aside p {
  color: #e3e9ff;
}

.price-aside .button {
  width: 100%;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 9vw, 132px);
  align-items: center;
}

.founder-band {
  background: #050a17;
  color: var(--white);
}

.founder-layout--dark {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
}

.founder-photo {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: var(--ice);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.founder-photo--dark {
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050a17;
}

.founder-photo--dark img {
  object-position: center center;
}

.founder-copy h2 {
  max-width: 12ch;
}

.founder-role {
  margin-bottom: 26px;
  color: var(--cobalt);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
}

.founder-copy p {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 19px;
}

.founder-copy--dark h2 {
  max-width: 14ch;
  color: var(--white);
}

.founder-copy--dark .founder-role {
  color: var(--sky);
}

.founder-copy--dark p {
  color: #c8d4ed;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
}

.experience-item {
  min-height: 100px;
  padding: 16px;
  background: var(--paper);
}

.experience-item strong,
.experience-item span {
  display: block;
}

.experience-item strong {
  margin-bottom: 4px;
  font-size: 21px;
}

.experience-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.experience-grid--dark {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.16);
}

.experience-grid--dark .experience-item {
  background: #0a1430;
}

.experience-grid--dark .experience-item strong {
  color: var(--white);
}

.experience-grid--dark .experience-item span {
  color: #aebbd4;
}

.founder-copy--dark .evidence-note {
  color: #9cacca !important;
}

.evidence-note {
  margin-top: 20px;
  padding-left: 15px;
  border-left: 3px solid var(--signal);
  color: var(--muted) !important;
  font-size: 14px !important;
}

.product-founder {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.product-founder h2 {
  margin-bottom: 18px;
}

.product-founder-copy > p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 19px;
}

.faq-list {
  max-width: 920px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 630;
}

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

.faq-item summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--cobalt);
  content: "+";
  font-family: var(--font-mono);
  font-size: 26px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  max-width: 760px;
  padding: 0 48px 25px 0;
  color: var(--muted);
}

.contact-band {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(44px, 9vw, 130px);
  align-items: end;
}

.contact-copy h2 {
  max-width: 13ch;
}

.contact-copy p {
  max-width: 720px;
  color: #c8d4ed;
  font-size: 19px;
}

.contact-action {
  padding-left: clamp(24px, 4vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.contact-action .button {
  width: 100%;
}

.data-warning {
  margin: 16px 0 0;
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 12px;
}

.site-footer {
  padding-block: 34px;
  background: #07102a;
  color: #c8d4ed;
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: end;
}

.footer-brand img {
  width: 178px;
  margin-bottom: 14px;
}

.footer-brand p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-end;
}

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

.footer-status {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #8fa0c1;
  font-family: var(--font-mono);
  font-size: 11px;
}

.legal-hero {
  padding-block: clamp(64px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-hero h1 {
  max-width: 14ch;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 72px);
}

.legal-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.draft-notice {
  padding: 14px 0;
  border-bottom: 1px solid #f0b9af;
  background: var(--signal-soft);
  color: #842f23;
  font-size: 13px;
}

.draft-notice .container {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.draft-notice strong {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 12px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: clamp(42px, 8vw, 112px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 112px;
  padding-top: 12px;
}

.legal-toc strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  min-width: 0;
}

.legal-section {
  padding-bottom: 46px;
  margin-bottom: 46px;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 2.5vw, 38px);
}

.legal-section h3 {
  margin-top: 28px;
  font-size: 21px;
}

.legal-section p,
.legal-section li,
.legal-section dd {
  color: var(--ink-soft);
}

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
}

.legal-section li {
  margin-bottom: 10px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-block: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.legal-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.legal-table th:last-child,
.legal-table td:last-child {
  border-right: 0;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  background: var(--ice);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

.legal-callout {
  padding: 22px;
  margin-block: 24px;
  border-left: 4px solid var(--cobalt);
  background: var(--ice);
}

.legal-callout--warning {
  border-left-color: var(--signal);
  background: var(--signal-soft);
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.identity-list {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.identity-list dt,
.identity-list dd {
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.identity-list dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.identity-list dd {
  overflow-wrap: anywhere;
  font-weight: 620;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-block: 26px;
  background: var(--line);
  border: 1px solid var(--line);
}

.status-item {
  min-height: 120px;
  padding: 18px;
  background: var(--white);
}

.status-item strong,
.status-item span {
  display: block;
}

.status-item strong {
  margin-bottom: 8px;
}

.status-item span {
  color: var(--muted);
  font-size: 14px;
}

.status-mark {
  color: var(--positive);
  font-family: var(--font-mono);
  font-size: 12px;
}

.updated-at {
  margin-top: 24px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .section-intro,
  .field-opening,
  .price-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .brand-symbol:not(.brand-symbol--product) {
    position: absolute;
    right: 0;
    bottom: 4%;
    width: min(30vw, 240px);
    pointer-events: none;
  }

  .brand-symbol:not(.brand-symbol--product) img {
    opacity: 0.09;
  }

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

  .offer-card {
    min-height: 0;
  }

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

  .approach-item:nth-child(2) {
    border-right: 0;
  }

  .approach-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .approach-item:nth-child(3) {
    padding-left: 0;
  }

  .section-intro {
    align-items: start;
  }

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

  .signal-item:nth-child(2) {
    border-right: 0;
  }

  .signal-item:last-child {
    grid-column: 1 / -1;
    min-height: 210px;
    padding-left: 0;
    border-top: 1px solid var(--line);
  }

  .deliverable:nth-child(2),
  .process-step:nth-child(2) {
    border-right: 0;
  }

  .deliverable:nth-child(n + 3),
  .process-step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .process-step:nth-child(n + 3) {
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .price-aside,
  .contact-action {
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-left: 0;
  }

  .founder-layout {
    grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
    gap: 48px;
  }

  .product-founder {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    display: flex;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    gap: 0 18px;
  }

  .legal-toc strong {
    flex-basis: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
    --section-space: 72px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(48px, 4.5vw, 68px);
  }

  h2 {
    font-size: clamp(34px, 3.5vw, 52px);
  }

  .site-header {
    height: 74px;
  }

  .brand-link img {
    width: 184px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding-block: 24px 20px;
  }

  .hero h1 {
    max-width: 8ch;
  }

  .brand-hero h1 {
    max-width: 12ch;
    font-size: 48px;
  }

  .consultation-hero h1 {
    max-width: none;
    font-size: 42px;
  }

  .hero-wordmark {
    width: min(230px, 78vw);
    margin-bottom: 18px;
  }

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

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

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

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .hero-metric {
    min-height: 68px;
    padding: 10px 8px;
  }

  .hero-metric strong {
    font-size: 14px;
    line-height: 1.25;
  }

  .hero-metric span {
    display: none;
  }

  .signal-grid,
  .deliverables,
  .process-list,
  .scope-grid,
  .approach-grid,
  .experience-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .offer-card-copy {
    padding: 28px 20px;
  }

  .offer-card .button {
    width: 100%;
  }

  .approach-item,
  .approach-item:first-child,
  .approach-item:last-child,
  .approach-item:nth-child(3) {
    padding: 28px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-item:last-child {
    border-bottom: 0;
  }

  .approach-item > span {
    min-height: 0;
    margin-bottom: 22px;
  }

  .signal-item,
  .signal-item:first-child,
  .signal-item:last-child,
  .deliverable,
  .deliverable:first-child,
  .deliverable:last-child,
  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-item:last-child,
  .deliverable:last-child,
  .process-step:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .signal-index,
  .process-number {
    margin-bottom: 28px;
  }

  .process-step,
  .process-step:nth-child(n + 3) {
    border-top: 0;
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .product-stage {
    grid-template-columns: 1fr;
  }

  .product-figure--report {
    width: min(82%, 420px);
  }

  .product-caption {
    flex-direction: column;
    gap: 2px;
  }

  .founder-layout {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    width: min(100%, 480px);
    aspect-ratio: 4 / 4.7;
  }

  .founder-photo--dark {
    width: min(82%, 360px);
    aspect-ratio: 2 / 3;
  }

  .brand-symbol:not(.brand-symbol--product) {
    width: 150px;
  }

  .brand-symbol--product {
    right: -42px;
    width: 210px;
  }

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

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

  .identity-list {
    grid-template-columns: 1fr;
  }

  .identity-list dt {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .draft-notice .container {
    display: block;
  }

  .draft-notice strong {
    display: block;
    margin-bottom: 4px;
  }
}

@media (max-width: 360px) {
  :root {
    --gutter: 16px;
  }

  .hero-content {
    padding-block: 14px 10px;
  }

  .hero-metrics {
    margin-top: 10px;
  }

  .brand-link img {
    width: 156px;
  }

  .hero h1 {
    font-size: 46px;
    overflow-wrap: anywhere;
  }

  .brand-hero h1 {
    max-width: none;
    font-size: 39px;
  }

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

  .brand-symbol:not(.brand-symbol--product) {
    display: none;
  }

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

  .consultation-hero .hero-note {
    margin-top: 14px;
    line-height: 1.35;
  }

  .button {
    padding-inline: 12px;
    font-size: 15px;
  }

  .price-value {
    font-size: 39px;
    overflow-wrap: anywhere;
  }
}

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

@media print {
  .site-header,
  .mobile-nav,
  .draft-notice,
  .site-footer {
    display: none;
  }

  body {
    background: var(--white);
    color: #000000;
  }

  .section {
    padding-block: 28px;
  }

  .legal-layout {
    display: block;
  }

  .legal-toc {
    display: none;
  }
}

/* Factlever V2.1: prostsza hierarchia, wizualne sygnały i ruch wyłącznie w CSS. */

.brand-hero h1,
.product-hero h1,
.consultation-hero h1 {
  max-width: 15ch;
  font-size: clamp(44px, 5.2vw, 78px);
}

.product-status,
.signal-index,
.process-number,
.hero-note,
.offer-card-map span {
  font-family: var(--font-sans);
}

.product-status,
.signal-index {
  font-weight: 650;
}

.offer-card {
  min-height: 560px;
  box-shadow: 0 16px 42px rgba(11, 22, 56, 0.07);
}

.offer-card-map {
  display: none;
}

.button,
.offer-card,
.signal-item,
.deliverable,
.scope-panel,
.result-item,
.situation-item,
.demo-choice {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button-arrow {
  transition: transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover .button-arrow,
  .button:focus-visible .button-arrow {
    transform: translateX(4px);
  }

  .offer-card:hover,
  .offer-card:focus-within,
  .signal-item:hover,
  .deliverable:hover,
  .scope-panel:hover,
  .result-item:hover,
  .situation-item:hover,
  .demo-choice:hover {
    transform: translateY(-3px);
    border-color: var(--cobalt);
    box-shadow: 0 18px 42px rgba(11, 22, 56, 0.1);
  }
}

.hero-copy {
  animation: v2-reveal 520ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-signal-map,
.hero-audit-map,
.hero-decision-card {
  animation: v2-reveal 620ms 100ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-signal-map {
  width: min(100%, 390px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(6, 14, 38, 0.62);
  box-shadow: 0 26px 70px rgba(1, 7, 24, 0.25);
}

.hero-signal-map__track {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-signal-map__track::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 8px;
  width: 2px;
  background: rgba(139, 203, 255, 0.34);
  content: "";
  transform-origin: top;
  animation: v2-line-grow 820ms 240ms ease both;
}

.hero-signal-map__node {
  position: relative;
  display: grid;
  min-height: 54px;
  padding: 8px 12px 8px 34px;
  align-content: center;
}

.hero-signal-map__node::before {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 1px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 1px rgba(139, 203, 255, 0.8);
  content: "";
}

.hero-signal-map__node b,
.hero-signal-map__node small {
  display: block;
}

.hero-signal-map__node b {
  font-size: 17px;
}

.hero-signal-map__node small {
  color: #b9c8e5;
  font-size: 13px;
}

.hero-signal-map__node.is-alert {
  border: 1px solid rgba(217, 75, 56, 0.72);
  background: rgba(217, 75, 56, 0.12);
}

.hero-signal-map__node.is-alert::before {
  background: var(--signal);
  box-shadow: 0 0 0 1px var(--signal);
}

.hero-signal-map__note {
  display: flex;
  margin: 18px 0 0;
  color: #d9e3f5;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.hero-signal-map__note span {
  width: 18px;
  height: 2px;
  background: var(--signal);
}

.product-hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  column-gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.product-hero .hero-copy {
  grid-column: 1;
}

.product-hero .hero-metrics {
  grid-column: 1 / -1;
}

.hero-audit-map,
.hero-decision-card {
  grid-column: 2;
  grid-row: 1;
  width: min(100%, 390px);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(6, 14, 38, 0.66);
  box-shadow: 0 26px 70px rgba(1, 7, 24, 0.24);
}

.hero-audit-map {
  display: grid;
  gap: 10px;
}

.hero-audit-map__label {
  margin: 0 0 6px;
  color: #c7d3e9;
  font-size: 12px;
  font-weight: 650;
}

.hero-audit-map__stage {
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: space-between;
}

.hero-audit-map__stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--sky);
  content: "";
  transform-origin: left;
  animation: v2-line-grow 720ms 240ms ease both;
}

.hero-audit-map__stage.is-alert {
  border-color: rgba(217, 75, 56, 0.72);
  background: rgba(217, 75, 56, 0.12);
}

.hero-audit-map__stage.is-alert::after {
  background: var(--signal);
}

.hero-audit-map__stage span {
  color: #dfe7f6;
}

.hero-audit-map__signal {
  margin: 8px 0 0;
  color: #ffd8d0;
  font-size: 13px;
}

.hero-decision-card__title {
  margin-bottom: 22px;
  color: var(--sky);
  font-size: 18px;
  font-weight: 650;
}

.hero-decision-card__row {
  display: flex;
  min-height: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  gap: 8px;
}

.hero-decision-card__row span {
  width: 76px;
  color: #dfe7f6;
  font-size: 13px;
}

.hero-decision-card__row i {
  display: block;
  width: 34px;
  height: 7px;
  background: rgba(139, 203, 255, 0.62);
  transform-origin: left;
  animation: v2-line-grow 620ms 300ms ease both;
}

.hero-decision-card__move {
  display: flex;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(49, 92, 255, 0.8);
  background: rgba(49, 92, 255, 0.14);
  align-items: center;
  justify-content: space-between;
}

.hero-decision-card__move b {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cobalt);
  place-items: center;
}

.situation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 40px;
  margin-top: clamp(48px, 7vw, 82px);
}

.situation-item {
  display: grid;
  min-width: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.situation-item > span {
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 700;
}

.situation-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.result-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(48px, 7vw, 82px);
}

.result-item {
  display: grid;
  min-height: 152px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: start;
}

.result-item h3 {
  margin: 0;
  font-size: clamp(21px, 2vw, 27px);
}

.result-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid var(--cobalt);
  border-radius: 50%;
}

.result-icon::after {
  position: absolute;
  top: 7px;
  left: 6px;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid var(--cobalt);
  border-left: 2px solid var(--cobalt);
  content: "";
  transform: rotate(-45deg);
}

.decision-path {
  display: grid;
  position: relative;
  margin-top: clamp(44px, 6vw, 72px);
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.decision-path::before {
  position: absolute;
  top: 48px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: var(--line);
  content: "";
  transform-origin: left;
  animation: v2-line-grow 900ms ease both;
}

.decision-path__step {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  text-align: center;
}

.decision-path__step > span {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 16px;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 1px var(--cobalt);
}

.decision-path__step strong,
.decision-path__step small {
  display: block;
}

.decision-path__step small {
  color: var(--muted);
}

.demo-teaser-section .section-intro p {
  color: #d4def1;
}

.demo-choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.demo-choice {
  display: flex;
  min-height: 330px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  align-items: flex-start;
  flex-direction: column;
}

.demo-choice h3 {
  color: var(--white);
}

.demo-choice p {
  color: #c7d2e9;
}

.demo-choice .button {
  margin-top: auto;
}

.demo-choice__number {
  display: block;
  margin-bottom: 22px;
  color: var(--sky);
  font-size: 56px;
  font-weight: 680;
  line-height: 1;
}

.demo-choice__chart {
  display: flex;
  height: 58px;
  margin-bottom: 22px;
  align-items: flex-end;
  gap: 7px;
}

.demo-choice__chart i {
  display: block;
  width: 18px;
  background: var(--sky);
  transform-origin: bottom;
  animation: v2-bar-rise 620ms ease both;
}

.demo-choice__chart i:nth-child(1) {
  height: 56px;
}

.demo-choice__chart i:nth-child(2) {
  height: 44px;
}

.demo-choice__chart i:nth-child(3) {
  height: 29px;
}

.demo-choice__chart i:nth-child(4) {
  height: 17px;
  background: var(--signal);
}

.continuation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(40px, 8vw, 110px);
}

.continuation-copy {
  color: var(--ink-soft);
  font-size: 19px;
}

.result-demo-action {
  display: flex;
  margin: 28px 0 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.result-demo-action p {
  margin: 0;
  color: var(--muted);
}

.consultation-example-section .section-intro p {
  color: #d4def1;
}

.decision-example {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.2);
}

.decision-example article {
  display: grid;
  min-height: 92px;
  padding: 22px 26px;
  background: #101e45;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: start;
}

.decision-example article.is-first {
  background: rgba(49, 92, 255, 0.28);
}

.decision-example span {
  color: var(--sky);
  font-weight: 650;
}

.decision-example p {
  margin: 0;
  color: #e2e9f7;
}

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

@keyframes v2-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes v2-line-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes v2-bar-rise {
  from {
    opacity: 0;
    transform: scaleY(0.15);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 980px) {
  .product-hero-content {
    grid-template-columns: 1fr;
  }

  .hero-audit-map,
  .hero-decision-card,
  .hero-signal-map {
    display: none;
  }

  .product-hero .hero-copy,
  .product-hero .hero-metrics {
    grid-column: 1;
  }

  .situation-list,
  .result-list,
  .demo-choice-list,
  .scope-grid--three {
    grid-template-columns: 1fr;
  }

  .demo-choice {
    min-height: 280px;
  }

  .continuation-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand-hero h1,
  .product-hero h1,
  .consultation-hero h1 {
    max-width: none;
    font-size: clamp(37px, 11vw, 48px);
    overflow-wrap: normal;
  }

  .brand-hero .hero-lead,
  .product-hero .hero-lead {
    font-size: 18px;
  }

  .situation-item {
    grid-template-columns: 34px 1fr;
  }

  .situation-item p {
    font-size: 17px;
  }

  .result-item {
    min-height: 0;
    padding: 22px;
  }

  .decision-path {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .decision-path::before {
    top: 48px;
    bottom: 42px;
    left: 14px;
    width: 2px;
    height: auto;
    transform-origin: top;
  }

  .decision-path__step {
    display: grid;
    min-height: 74px;
    padding: 0 0 20px;
    text-align: left;
    grid-template-columns: 30px 1fr;
    column-gap: 16px;
  }

  .decision-path__step > span {
    margin: 0;
    grid-row: 1 / span 2;
  }

  .result-demo-action {
    align-items: stretch;
    flex-direction: column;
  }

  .decision-example article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 360px) {
  .brand-hero h1,
  .product-hero h1,
  .consultation-hero h1 {
    font-size: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-signal-map,
  .hero-audit-map,
  .hero-decision-card,
  .hero-signal-map *,
  .hero-audit-map *,
  .hero-decision-card *,
  .decision-path::before,
  .demo-choice__chart i {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .button,
  .button-arrow,
  .offer-card,
  .signal-item,
  .deliverable,
  .scope-panel,
  .result-item,
  .situation-item,
  .demo-choice {
    transition: none;
  }
}

/* Factlever V3: spójna, czytelna warstwa stron prawnych bez JavaScriptu. */
.legal-page {
  font-size: 18px;
}

.legal-page .header-inner,
.legal-page .container,
.legal-page .legal-layout,
.legal-page .legal-content,
.legal-page .legal-section,
.legal-page .draft-notice span {
  min-width: 0;
}

.legal-page .brand-link,
.legal-page .desktop-nav a,
.legal-page .header-cta,
.legal-page .mobile-nav-panel a,
.legal-page .legal-toc a,
.legal-page .legal-content a,
.legal-page .footer-links a,
.legal-page .skip-link {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.legal-page .brand-link {
  flex-shrink: 1;
}

.legal-page .desktop-nav {
  gap: clamp(12px, 1.7vw, 24px);
  font-size: 16px;
}

.legal-page .desktop-nav a,
.legal-page .mobile-nav-panel a {
  font-size: 16px;
}

.legal-page .eyebrow,
.legal-page .draft-notice strong,
.legal-page .legal-toc strong,
.legal-page .identity-list dt,
.legal-page .legal-table th,
.legal-page .status-mark,
.legal-page .updated-at,
.legal-page .footer-status {
  font-size: 14px;
}

.legal-page .draft-notice {
  font-size: 16px;
}

.legal-page .legal-toc a {
  font-size: 16px;
}

.legal-page .legal-content a {
  max-width: 100%;
  overflow-wrap: anywhere;
  vertical-align: middle;
}

.legal-page .legal-table-wrap {
  max-width: 100%;
}

.legal-page .legal-table {
  font-size: 15px;
}

.legal-page .status-item span {
  font-size: 16px;
}

.legal-page .site-footer {
  font-size: 14px;
}

.legal-page .footer-links a {
  font-size: 16px;
}

@media (max-width: 720px) {
  .legal-page {
    font-size: 17px;
  }

  .legal-page .legal-hero p {
    font-size: 18px;
  }

  .legal-page .draft-notice .container {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .legal-page .legal-hero h1 {
    font-size: clamp(36px, 11vw, 40px);
    overflow-wrap: anywhere;
  }
}
