:root {
  --pico-background-color: #090b0f;
  --pico-color: #f1f5fb;
  --pico-muted-color: #a1aaba;
  --pico-primary: #ff5a36;
  --pico-primary-background: #d92d20;
  --pico-primary-hover: #ff7a5d;
  --pico-primary-hover-background: #ff5a36;
  --pico-primary-focus: rgba(255, 90, 54, 0.24);
  --pico-card-background-color: #171b23;
  --pico-card-border-color: rgba(57, 66, 85, 0.65);
  --pico-form-element-background-color: #171b23;
  --pico-form-element-border-color: rgba(57, 66, 85, 0.75);
  --pico-border-radius: 1.25rem;
  --pico-box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --bg: #090b0f;
  --bg-raised: #0f1217;
  --surface: #171b23;
  --surface-soft: #1d2330;
  --surface-glass: rgba(18, 23, 31, 0.74);
  --border: #2a3140;
  --border-strong: #394255;
  --text: #f1f5fb;
  --text-soft: #e7ecf3;
  --text-muted: #a1aaba;
  --text-mid: #c0cada;
  --text-low: #788294;
  --text-accent: #ffb7a5;
  --accent: #ff5a36;
  --accent-deep: #d92d20;
  --accent-warm: #f59e0b;
  --accent-cool: #5b8cff;
}

html {
  background: var(--bg);
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  background:
    linear-gradient(180deg, #090b0f 0%, #0c1016 52%, #10141c 100%),
    radial-gradient(circle at top left, rgba(255, 90, 54, 0.09), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(91, 140, 255, 0.08), transparent 22%);
}

.page-bg-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}



body > header,
body > main,
body > footer {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 2rem));
  margin-inline: auto;
}

.shell {
  width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 0.8rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.75rem 1.05rem;
  border: 1px solid rgba(57, 66, 85, 0.55);
  border-radius: 1.2rem;
  background: rgba(9, 11, 15, 0.72);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 9, 0.86);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

@supports (backdrop-filter: blur(10px)) {
  .site-header {
  backdrop-filter: none;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.brand__icon {
  width: 2.35rem;
  height: 1.35rem;
  object-fit: cover;
  border-radius: 0.3rem;
  border: 1px solid rgba(255, 90, 54, 0.28);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 90, 54, 0.24);
  background: linear-gradient(180deg, rgba(255, 90, 54, 0.16), rgba(91, 140, 255, 0.08));
  color: var(--text-soft);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.brand__text {
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

@keyframes bannerPulse {
  0%,
  100% {
    opacity: 0.14;
    filter: saturate(1.08) drop-shadow(0 0 26px rgba(255, 90, 54, 0.18)) drop-shadow(0 0 46px rgba(91, 140, 255, 0.14));
  }
  50% {
    opacity: 0.25;
    filter: saturate(1.3) drop-shadow(0 0 40px rgba(255, 90, 54, 0.36)) drop-shadow(0 0 70px rgba(91, 140, 255, 0.3));
  }
}

@keyframes bannerFlicker {
  0%,
  18%,
  22%,
  55%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  20% {
    transform: translate3d(0.8px, -0.4px, 0);
  }
  56% {
    transform: translate3d(-0.7px, 0.5px, 0);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-soft);
}

.btn,
[role="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.2rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  border: 1px solid rgba(255, 122, 93, 0.34);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(217, 45, 32, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 44px rgba(255, 90, 54, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(57, 66, 85, 0.9);
  background: rgba(23, 27, 35, 0.88);
  color: var(--text-soft);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(91, 140, 255, 0.55);
  background: rgba(29, 35, 48, 0.96);
}

.btn-header {
  min-height: 2.8rem;
  padding-inline: 1rem;
}

.surface-panel {
  position: relative;
  border: 1px solid rgba(57, 66, 85, 0.72);
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(23, 27, 35, 0.5), rgba(15, 18, 23, 0.5));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.surface-panel::after {
  content: "";
  position: absolute;
  top: -68%;
  left: -18%;
  width: 92%;
  height: 220%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(255, 154, 74, 0.24) 0%, rgba(255, 92, 38, 0.18) 18%, rgba(160, 22, 18, 0.12) 34%, rgba(11, 12, 16, 0.06) 52%, rgba(0, 0, 0, 0) 74%),
    conic-gradient(from 214deg, rgba(0, 0, 0, 0) 0deg, rgba(255, 141, 70, 0.16) 22deg, rgba(215, 48, 32, 0.13) 42deg, rgba(36, 8, 8, 0.12) 66deg, rgba(0, 0, 0, 0) 108deg, rgba(0, 0, 0, 0) 360deg);
  filter: blur(20px);
  opacity: 0.52;
  transform-origin: 50% 18%;
  transform: translate3d(-6%, -3%, 0) rotate(7deg) scale(0.94);
  pointer-events: none;
}

.surface-panel--ray-a::after {
  animation: glassSunRayA 10.7s cubic-bezier(0.37, 0, 0.22, 1) infinite;
}

.surface-panel--ray-b::after {
  animation: glassSunRayB 13.4s cubic-bezier(0.37, 0, 0.22, 1) infinite;
}

.surface-panel--hero {
  overflow: hidden;
}

.surface-panel--compact {
  padding-block: 0;
}

.surface-panel--soft {
  background: linear-gradient(180deg, rgba(29, 35, 48, 0.86), rgba(19, 24, 33, 0.95));
}

.surface-panel--footer {
  background: linear-gradient(180deg, rgba(21, 26, 34, 0.5), rgba(13, 17, 24, 0.5));
}

.hero {
  padding-top: 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 2rem;
  padding: 1.35rem;
  opacity: 1;
}

.hero-copy-col {
  padding: 0.4rem 0;
}

.hero-symbol {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(91, 140, 255, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: #ff8f73;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 54, 0.18);
  background: rgba(255, 90, 54, 0.08);
}

.eyebrow-pill::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255, 90, 54, 0.6);
}

.hero h1,
.section h2,
.site-footer h2 {
  font-family: Inter, system-ui, sans-serif;
}

.hero h1 {
  margin-bottom: 0.7rem;
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  font-family: Consolas, "Courier New", monospace;
}

.hero-title-glitch {
  position: relative;
  display: inline-block;
  max-width: none;
  color: #000;
  text-transform: lowercase;
  text-shadow: 0 0 16px rgba(255, 84, 48, 0.12), 0 0 40px rgba(111, 12, 12, 0.18);
}

.hero-title-glitch::before,
.hero-title-glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: transparent;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 197, 122, 1) 0%, rgba(255, 142, 72, 0.96) 22%, rgba(221, 58, 34, 0.92) 46%, rgba(104, 10, 10, 0.88) 72%, rgba(32, 2, 2, 0.96) 100%);
  background-size: 160% 160%;
  background-position: 50% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1.35px transparent;
  mask-composite: intersect;
  -webkit-mask: linear-gradient(#fff 0 0) text;
}

.hero-title-glitch::before {
  text-shadow: -3px 0 rgba(255, 68, 48, 0.65);
  filter: blur(0.2px);
  animation: heroTitleStrokeRay 6.2s ease-in-out infinite, heroGlitchShiftA 1.45s steps(2, end) infinite;
}

.hero-title-glitch::after {
  text-shadow: 3px 0 rgba(122, 10, 10, 0.55);
  opacity: 0.68;
  animation: heroTitleStrokeRay 7.1s ease-in-out infinite reverse, heroGlitchShiftB 1.8s steps(2, end) infinite;
}

.hero-copy {
  max-width: 38rem;
  margin-bottom: 0.75rem;
  color: #d7deeb;
  font-size: 1rem;
  line-height: 1.8;
}

.hero-copy--compact {
  max-width: 32rem;
}

.hero-signal-list {
  display: grid;
  gap: 0.62rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.hero-signal-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  color: #cfd7e6;
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-signal-list__icon {
  color: #ff7b4f;
  font-size: 0.85rem;
  line-height: 1.5;
  text-shadow: 0 0 18px rgba(255, 110, 70, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-assurance {
  margin: 0.6rem 0 0.8rem;
  color: var(--text-low);
  font-size: 0.78rem;
}

.hero-assurance--compact {
  margin-bottom: 0.9rem;
}

.hero-inline-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-inline-proof--single {
  grid-template-columns: 1fr;
  max-width: 28rem;
}

.inline-proof-card {
  padding: 0.75rem 0.8rem 0.8rem;
  border: 1px solid rgba(57, 66, 85, 0.6);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(23, 13, 12, 0.52), rgba(12, 16, 22, 0.5));
  overflow: hidden;
}

.inline-proof-card__label,
.summary-item__label,
.process-demo__status {
  color: var(--text-low);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-proof-card strong {
  display: block;
  margin: 0.35rem 0 0.35rem;
  color: #ffd4c6;
  font-size: 1rem;
}

.inline-proof-card p,
.section-intro,
.feature-card p,
.pipeline-step p,
.proof-copy p,
.trust-list,
.footer-primary p,
.footer-secondary p {
  color: var(--text-muted);
}

.process-demo {
  display: grid;
  gap: 1rem;
}

.process-demo--compact {
  gap: 0;
}

.hero-glass-demo {
  position: relative;
  isolation: isolate;
  padding: 1rem 0;
}

.hero-glass-demo__card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(16, 20, 28, 0.62), rgba(10, 13, 18, 0.58));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px) saturate(1.08);
  overflow: hidden;
}

.hero-glass-demo__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  pointer-events: none;
}



.hero-glass-demo__topline,
.hero-glass-demo__footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-glass-demo__topline {
  justify-content: space-between;
}

.hero-glass-demo__chip,
.hero-glass-demo__eyebrow {
  font-family: Consolas, "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-glass-demo__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 112, 72, 0.22);
  background: rgba(255, 112, 72, 0.08);
  color: #ffb08b;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-glass-demo__filename {
  flex: 1;
  min-width: 0;
  color: #8c96a9;
  font-size: 0.9rem;
}

.hero-glass-demo__eyebrow {
  color: rgba(255, 187, 157, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
}

.hero-glass-demo__screen {
  position: relative;
  min-height: 230px;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 162, 184, 0.14);
  background: linear-gradient(180deg, rgba(7, 10, 16, 0.72), rgba(8, 12, 18, 0.6));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.hero-glass-demo__screen--info {
  padding: 1.1rem 1.15rem;
}

.hero-glass-demo__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 40%, rgba(91, 140, 255, 0.05) 100%);
  pointer-events: none;
}

.hero-glass-demo__code {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1.15rem 1.25rem;
  color: rgba(236, 241, 255, 0.92);
}

.hero-glass-demo__code code {
  display: block;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.hero-info-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}

.hero-info-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.78rem 0.82rem;
  border: 1px solid rgba(255, 137, 97, 0.1);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(34, 19, 17, 0.38), rgba(13, 15, 21, 0.3));
}

.hero-info-row__icon {
  color: #ff8d63;
  font-size: 0.8rem;
  line-height: 1.6;
}

.hero-info-row strong {
  display: block;
  margin-bottom: 0.18rem;
  color: #fff0e7;
  font-size: 0.93rem;
}

.hero-info-row p {
  margin: 0;
  color: #c2cad8;
  font-size: 0.86rem;
  line-height: 1.55;
}

.hero-glass-demo__footer {
  justify-content: flex-start;
}

.hero-glass-demo__hint {
  color: rgba(255, 194, 164, 0.72);
  font-size: 0.82rem;
}

@keyframes heroHaloFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.46;
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.06);
    opacity: 0.68;
  }
}

@keyframes glassSunRayA {
  0% {
    transform: translate3d(-14%, -8%, 0) rotate(2deg) scale(0.88);
    opacity: 0.16;
  }
  19% {
    transform: translate3d(-2%, -3%, 0) rotate(11deg) scale(1.01);
    opacity: 0.46;
  }
  47% {
    transform: translate3d(9%, 1%, 0) rotate(19deg) scale(1.1);
    opacity: 0.64;
  }
  72% {
    transform: translate3d(1%, 5%, 0) rotate(8deg) scale(0.97);
    opacity: 0.29;
  }
  100% {
    transform: translate3d(-10%, -5%, 0) rotate(5deg) scale(0.91);
    opacity: 0.14;
  }
}

@keyframes glassSunRayB {
  0% {
    transform: translate3d(12%, -10%, 0) rotate(22deg) scale(0.9);
    opacity: 0.14;
  }
  23% {
    transform: translate3d(4%, -2%, 0) rotate(14deg) scale(0.98);
    opacity: 0.4;
  }
  58% {
    transform: translate3d(-8%, 4%, 0) rotate(28deg) scale(1.12);
    opacity: 0.61;
  }
  83% {
    transform: translate3d(-1%, 7%, 0) rotate(17deg) scale(1);
    opacity: 0.26;
  }
  100% {
    transform: translate3d(10%, -8%, 0) rotate(24deg) scale(0.92);
    opacity: 0.12;
  }
}

@keyframes heroGlitchShiftA {
  0%,
  88%,
  100% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
    opacity: 0.7;
  }
  90% {
    transform: translate3d(-2px, 0, 0);
    clip-path: inset(14% 0 62% 0);
    opacity: 0.95;
  }
  94% {
    transform: translate3d(2px, 0, 0);
    clip-path: inset(58% 0 16% 0);
    opacity: 0.55;
  }
}

@keyframes heroGlitchShiftB {
  0%,
  86%,
  100% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
    opacity: 0.22;
  }
  89% {
    transform: translate3d(3px, -1px, 0);
    clip-path: inset(8% 0 74% 0);
    opacity: 0.4;
  }
  96% {
    transform: translate3d(-3px, 1px, 0);
    clip-path: inset(66% 0 10% 0);
    opacity: 0.28;
  }
}

@keyframes heroTitleRay {
  0%,
  100% {
    background-position: 40% 34%;
    filter: brightness(1);
  }
  50% {
    background-position: 60% 52%;
    filter: brightness(1.12);
  }
}

@keyframes heroTitleStrokeRay {
  0%,
  100% {
    background-position: 38% 34%;
  }
  50% {
    background-position: 64% 54%;
  }
}

.process-demo__shell {
  position: relative;
  padding: 1rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(57, 66, 85, 0.7);
  background:
    radial-gradient(circle at top right, rgba(255, 90, 54, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(17, 21, 28, 0.96), rgba(11, 14, 19, 0.98));
}

.process-demo__watermark {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 0.8rem;
  opacity: 0.2;
  pointer-events: none;
  filter: saturate(0.88) contrast(1.05);
}

.process-demo__head,
.process-demo__foot,
.process-demo__head-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.process-demo__head,
.process-demo__foot {
  justify-content: space-between;
}

.process-demo__head {
  margin-bottom: 0.85rem;
}

.process-step,
.card-kicker,
.pipeline-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 54, 0.16);
  background: rgba(255, 90, 54, 0.08);
  color: #ff9a83;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
}

.process-demo__meta,
.process-demo__foot,
.process-demo__note,
.summary-item__meta {
  color: var(--text-low);
  font-size: 0.82rem;
}





.hero-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.summary-item {
  padding: 1rem;
  border: 1px solid rgba(57, 66, 85, 0.68);
  border-radius: 1.15rem;
  background: rgba(12, 16, 22, 0.5);
  overflow: hidden;
}

.summary-item strong {
  display: block;
  margin: 0.35rem 0 0.2rem;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1;
  color: var(--text);
}

.summary-item__label {
  display: block;
  color: var(--text-accent);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.summary-item__meta {
  font-size: 0.72rem;
}

.section {
  padding-top: 3rem;
}

.section--compact {
  padding-top: 0.7rem;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.section-header--left {
  margin-inline: 0;
  text-align: left;
}

.section h2,
.site-footer h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
}

.site-footer h2 {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-intro {
  max-width: 42rem;
  margin: 0.8rem auto 0;
}

.section-intro--left {
  margin-inline: 0;
}

.feature-grid,
.pipeline-grid,
.proof-layout {
  display: grid;
  gap: 1rem;
}

.mini-proof-wrap {
  display: block;
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 1rem;
}

.mini-proof-line {
  margin: 0;
  padding: 0.34rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1.2;
  border-bottom: 1px solid rgba(57, 66, 85, 0.36);
}

.mini-proof-line:last-child {
  border-bottom: 0;
}

.mini-proof-line__label {
  color: #ff9d79;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-proof-line strong {
  font-size: 1.02rem;
  color: #fff2eb;
}

.mini-proof-line__meta {
  color: #9da7ba;
  font-size: 0.7rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.pipeline-step,
.proof-copy,
.trust-panel {
  padding: 1.25rem;
}

.feature-card h3,
.pipeline-step h3 {
  margin-bottom: 0.55rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.feature-list,
.trust-list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.feature-list li,
.trust-list li {
  margin-bottom: 0.55rem;
}

.pipeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pipeline-step {
  min-height: 100%;
}

.pipeline-step__index {
  min-width: 2.7rem;
  margin-bottom: 1rem;
}

.proof-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.proof-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.proof-points strong {
  color: var(--text-soft);
}

.site-footer {
  padding: 2rem 0 2rem;
}

.site-footer--compact {
  padding-top: 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.footer-secondary {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(57, 66, 85, 0.52);
}

.trust-panel {
  align-self: stretch;
}

.trust-panel .card-kicker {
  margin-bottom: 1rem;
}

.proof-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
}

.proof-strip h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.proof-strip__actions {
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .site-header,
  .hero-grid,
  .feature-grid,
  .pipeline-grid,
  .proof-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  body::after,
  .page-noise,
  .page-orb {
    animation: none;
    filter: none;
    opacity: 0.18;
  }

  .site-nav,
  .footer-actions {
    justify-content: flex-start;
  }

  .hero-inline-proof,
  .hero-summary {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-proof-wrap {
    padding: 0.6rem 0.65rem;
  }

  .footer-secondary {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body > header,
  body > main,
  body > footer {
    width: min(100%, calc(100% - 1rem));
  }

  .site-header,
  .hero-grid,
  .footer-grid {
    padding: 1rem;
  }

  .hero {
    padding-top: 0.8rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .process-demo__body {
    height: 210px;
    min-height: 210px;
  }

  .mini-proof-line {
    gap: 0.28rem;
    flex-wrap: wrap;
  }

  .site-header {
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::after,
  .page-noise,
  .page-orb {
    animation: none !important;
    filter: none !important;
  }
}
