:root {
  --bg: #050918;
  --bg-soft: #0f192b;
  --bg-strong: #0b1324;
  --panel: rgba(12, 20, 37, 0.94);
  --panel-strong: rgba(20, 31, 52, 0.96);
  --line: rgba(119, 145, 186, 0.16);
  --line-strong: rgba(119, 145, 186, 0.24);
  --text: #f2f5fb;
  --text-soft: #b8c3d6;
  --text-muted: #8f9db5;
  --accent: #6ecbf3;
  --accent-text: #22d3ee;
  --accent-soft: rgba(110, 203, 243, 0.16);
  --accent-ui: #22344f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 999px;
  --container: 1140px;
  --grid-x: 50%;
  --grid-y: 50%;
  --grid-rotate-x: 0deg;
  --grid-rotate-y: 0deg;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(rgba(120, 151, 194, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 151, 194, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 81% 8%, rgba(44, 67, 99, 0.32), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(13, 25, 47, 0.28), transparent 26%),
    linear-gradient(180deg, #050817, #040716 40%, #050918 100%);
  background-size: 78px 78px, 78px 78px, auto, auto, auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

video {
  display: block;
  width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.interactive-grid {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 1400px;
  z-index: 0;
}

.interactive-grid-base,
.interactive-grid-bulge,
.interactive-grid-glow {
  position: absolute;
  inset: -6%;
  transform-style: preserve-3d;
  will-change: transform, background;
}

.interactive-grid-base {
  background:
    linear-gradient(rgba(120, 151, 194, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 151, 194, 0.04) 1px, transparent 1px);
  background-size: 78px 78px, 78px 78px;
  transform:
    rotateX(var(--grid-rotate-x))
    rotateY(var(--grid-rotate-y))
    scale(1.03);
  opacity: 0.55;
}

.interactive-grid-bulge {
  background:
    radial-gradient(
      320px 220px at var(--grid-x) var(--grid-y),
      rgba(255, 255, 255, 0.06) 0%,
      rgba(120, 151, 194, 0.07) 18%,
      rgba(34, 211, 238, 0.05) 32%,
      rgba(0, 0, 0, 0) 72%
    );
  transform:
    translateZ(70px)
    rotateX(calc(var(--grid-rotate-x) * 0.5))
    rotateY(calc(var(--grid-rotate-y) * 0.5));
  filter: blur(4px);
  opacity: 0.85;
}

.interactive-grid-glow {
  background:
    radial-gradient(
      420px 320px at var(--grid-x) var(--grid-y),
      rgba(34, 211, 238, 0.12) 0%,
      rgba(37, 99, 235, 0.1) 20%,
      rgba(37, 99, 235, 0.04) 42%,
      rgba(0, 0, 0, 0) 70%
    );
  transform:
    translateZ(110px)
    rotateX(calc(var(--grid-rotate-x) * 0.35))
    rotateY(calc(var(--grid-rotate-y) * 0.35));
  filter: blur(16px);
  opacity: 0.9;
}

.container {
  width: min(var(--container), calc(100% - 128px));
  margin: 0 auto;
}

.section {
  padding: 118px 0;
}

.section-grid {
  position: relative;
}

.section-grid::before,
.section-contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid rgba(119, 145, 186, 0.08);
}

.section-contrast {
  position: relative;
  background: rgba(17, 26, 44, 0.88);
}

.home-page .section-contrast {
  background: transparent;
}

.home-page .container {
  width: min(1080px, calc(100% - 168px));
}

.about-page .container {
  width: min(1080px, calc(100% - 168px));
}

.faq-page .container {
  width: min(1080px, calc(100% - 168px));
}

.contact-page .container {
  width: min(1080px, calc(100% - 168px));
}

.home-page .section-kicker,
.home-page .matrix-index,
.home-page .pipeline-status,
.home-page .pipeline-card-brand span,
.home-page .info-card-number,
.home-page .info-card-tag,
.home-page .panel-kicker,
.home-page .hero-text strong,
.home-page .pipeline-metrics strong,
.home-page .metric strong,
.home-page .price-card h3 span,
.home-page .faq-index {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.home-page .section::before,
.home-page .section-grid::before,
.home-page .section-contrast::before {
  display: none;
}

.about-page .section::before,
.about-page .section-grid::before,
.about-page .section-contrast::before {
  display: none;
}

.about-page .section-contrast {
  background: transparent;
}

.faq-page .section::before,
.faq-page .section-grid::before,
.faq-page .section-contrast::before {
  display: none;
}

.faq-page .section-contrast {
  background: transparent;
}

.contact-page .section::before,
.contact-page .section-grid::before,
.contact-page .section-contrast::before {
  display: none;
}

.contact-page .section-contrast {
  background: transparent;
}

.home-book-call {
  position: relative;
  overflow: hidden;
}

.home-custom-builds {
  position: relative;
  overflow: hidden;
}

.home-outcomes {
  position: relative;
  overflow: hidden;
}

.home-outcomes::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 92px;
  width: 760px;
  height: 220px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(34, 211, 238, 0.12), transparent 62%),
    radial-gradient(ellipse at 50% 50%, rgba(34, 211, 238, 0.05), transparent 40%);
  filter: blur(10px);
  border-radius: 999px;
}

.home-outcomes > .container {
  position: relative;
  z-index: 1;
}

.home-who-help {
  position: relative;
  overflow: hidden;
}

.home-who-help::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  width: 980px;
  height: 420px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(34, 211, 238, 0.14), transparent 62%),
    radial-gradient(ellipse at 50% 48%, rgba(34, 211, 238, 0.06), transparent 40%);
  filter: blur(10px);
  border-radius: 999px;
}

.home-who-help > .container {
  position: relative;
  z-index: 1;
}

.home-bottlenecks {
  position: relative;
  overflow: hidden;
}

.home-bottlenecks::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -180px;
  width: 980px;
  height: 420px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(34, 211, 238, 0.14), transparent 62%),
    radial-gradient(ellipse at 50% 52%, rgba(34, 211, 238, 0.06), transparent 40%);
  filter: blur(10px);
  border-radius: 999px;
}

.home-bottlenecks > .container {
  position: relative;
  z-index: 1;
}

.home-custom-builds::after {
  content: "";
  position: absolute;
  inset: auto 0 -160px;
  height: 340px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(37, 99, 235, 0.16), transparent 62%),
    radial-gradient(ellipse at 50% 100%, rgba(34, 211, 238, 0.07), transparent 40%);
}

.home-custom-builds > .container {
  position: relative;
  z-index: 1;
}

.home-book-call::after {
  content: "";
  position: absolute;
  inset: -180px 0 -80px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(37, 99, 235, 0.14), transparent 42%),
    radial-gradient(ellipse at 50% 32%, rgba(34, 211, 238, 0.06), transparent 28%);
}

.home-book-call > .container {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 23, 0.84);
  border-bottom: 1px solid rgba(119, 145, 186, 0.14);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1rem;
}

.brandmark-logo {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(119, 145, 186, 0.2);
  background: #04070f;
}

.brandmark-text {
  color: #f6f8fc;
}

.brandmark-text span {
  color: var(--accent-text);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a:hover,
.footer a:hover {
  color: var(--accent);
}

.main-nav .is-current {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding: 0 24px;
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.14);
  color: var(--accent-text);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(111, 212, 251, 0.32);
}

.button-primary {
  background: var(--accent);
  color: #09111d;
  border-color: transparent;
}

.button-accent-ghost {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.14);
  color: var(--accent-text);
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

.button-full {
  width: 100%;
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.hero {
  padding: 74px 0 78px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.78fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 104px);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

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

.hero-copy-glow {
  position: relative;
}

.hero-copy-glow::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -100px;
  width: 900px;
  height: 520px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 42% 42%, rgba(34, 211, 238, 0.16), transparent 64%),
    radial-gradient(ellipse at 42% 42%, rgba(34, 211, 238, 0.08), transparent 44%);
  filter: blur(10px);
  border-radius: 999px;
}

.hero-copy-glow > * {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-top: 28px;
  font-size: clamp(3.9rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

.hero-title span,
.hero-text strong,
.metric strong,
.pipeline-metrics strong,
.info-card-number {
  color: var(--accent-text);
}

.hero-title span {
  display: block;
}

.hero-text {
  margin-top: 28px;
  max-width: 650px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 30px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-meta span:first-child {
  color: var(--accent);
}

.hero-meta-highlight {
  color: var(--text-soft);
}

.hero-meta span:not(:last-child)::after {
  content: "/";
  margin-left: 18px;
  color: rgba(111, 212, 251, 0.7);
}

.pipeline-card {
  padding: 26px 24px 22px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16, 25, 43, 0.98), rgba(13, 21, 37, 0.96)),
    rgba(12, 20, 33, 0.96);
  box-shadow: var(--shadow);
}

.pipeline-card-header,
.pipeline-card-brand,
.pipeline-row,
.pipeline-metrics {
  display: flex;
  align-items: center;
}

.pipeline-card-header,
.pipeline-row,
.pipeline-metrics {
  justify-content: space-between;
}

.pipeline-card-brand {
  gap: 16px;
}

.pipeline-card-brand img {
  width: 42px;
  height: 42px;
  border-radius: 4px;
}

.pipeline-card-brand span,
.pipeline-status,
.info-card-tag,
.panel-kicker,
.section-kicker,
.matrix-index {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
}

.pipeline-card-brand span,
.info-card-tag,
.panel-kicker {
  color: var(--text-muted);
}

.pipeline-status,
.section-kicker,
.matrix-index {
  color: var(--accent-text);
}

.pipeline-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(119, 145, 186, 0.12);
}

.pipeline-row {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(119, 145, 186, 0.12);
  background: rgba(24, 34, 56, 0.74);
  color: var(--text-soft);
  font-size: 0.92rem;
  opacity: 0;
  transform: translate3d(36px, 0, 0);
  animation: pipelineSlideIn 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.pipeline-row:nth-child(1) { animation-delay: 120ms; }
.pipeline-row:nth-child(2) { animation-delay: 240ms; }
.pipeline-row:nth-child(3) { animation-delay: 360ms; }
.pipeline-row:nth-child(4) { animation-delay: 480ms; }

.pipeline-row span:last-child {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

.pipeline-row-active {
  background: rgba(38, 56, 84, 0.96);
  border-color: rgba(110, 203, 243, 0.2);
}

.pipeline-row-active span {
  color: var(--accent-text);
}

.pipeline-metrics {
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(119, 145, 186, 0.12);
}

.pipeline-metrics div {
  flex: 1;
}

.pipeline-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.35rem;
  line-height: 1;
}

.pipeline-metrics span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

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

.section-kicker {
  margin-bottom: 18px;
  font-weight: 700;
}

.section-heading h2,
.split-copy h2,
.video-copy h2,
.sprint-copy h2,
.custom-card h2,
.book-call h2 {
  font-size: clamp(2.45rem, 3.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

.section-heading p:last-child,
.split-copy p:last-child,
.video-copy p:last-child,
.book-call > p:last-of-type,
.custom-card p,
.price-card p,
.panel p,
.matrix-cell p,
.metric p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.section-heading p:last-child {
  margin-top: 26px;
  max-width: 760px;
}

.triple-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 72px;
}

.info-card,
.panel,
.matrix,
.price-card,
.custom-card,
.video-panel {
  border: 1px solid var(--line);
}

.info-card,
.panel,
.price-card,
.custom-card {
  border-radius: var(--radius-md);
  background: var(--panel);
}

.info-card {
  min-height: 284px;
  padding: 30px 34px 32px;
}

.info-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-card-number {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #2d6f93;
  transition: color 180ms ease;
}

.info-card:hover .info-card-number {
  color: var(--accent-text);
}

.info-card h3,
.matrix-cell h3,
.panel h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

.info-card h3 {
  margin-top: 36px;
  font-size: 1.85rem;
  font-weight: 600;
}

.info-card p {
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.58;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.94fr);
  gap: 64px;
  align-items: start;
}

.split-copy h2,
.video-copy h2,
.sprint-copy h2 {
  max-width: 700px;
}

.split-copy p:last-child {
  margin-top: 28px;
  max-width: 640px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  max-width: 620px;
  justify-self: end;
}

.panel {
  padding: 28px 30px 30px;
}

.panel-emphasis,
.price-card,
.custom-card-emphasis {
  background: var(--panel-strong);
}

.panel h3 {
  margin-bottom: 18px;
  color: var(--accent-text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.fit-grid .panel:not(.panel-emphasis) h3 {
  color: var(--text-muted);
}

.panel ul,
.custom-card ul {
  display: grid;
  gap: 16px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.4;
}

.fit-list {
  gap: 20px;
}

.fit-label {
  color: var(--text-muted);
  display: inline;
}

.fit-value {
  color: var(--text-soft);
}

.fit-grid .panel {
  aspect-ratio: 1 / 1;
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.fit-grid .panel h3 {
  margin-bottom: 20px;
}

.fit-grid .panel ul {
  gap: 18px;
  font-size: 0.94rem;
  line-height: 1.42;
}

.fit-grid .panel li {
  max-width: none;
}

.fit-grid .panel-emphasis li {
  max-width: none;
}

.matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 60px;
  border-radius: 26px;
  background: rgba(8, 13, 26, 0.74);
}

.matrix-cell {
  min-height: 240px;
  padding: 36px 34px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.matrix-cell:nth-child(3n) {
  border-right: 0;
}

.matrix-cell:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.matrix-cell h3 {
  margin-top: 28px;
  font-size: 1.1rem;
}

.matrix-cell p {
  margin-top: 14px;
  max-width: 320px;
}

.section-outcomes .section-heading {
  max-width: none;
}

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

.metric {
  padding: 0 30px 0 30px;
  border-left: 1px solid var(--line-strong);
}

.metric:first-child {
  border-left: 0;
}

.metric strong {
  display: block;
  max-width: 280px;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.metric p {
  margin-top: 18px;
  max-width: 320px;
}

.outcomes-note {
  margin-top: 56px;
  max-width: 860px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.integration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 56px;
}

.integration-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(10, 16, 31, 0.7);
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.integration-pills span:hover {
  color: var(--accent-text);
  border-color: rgba(34, 211, 238, 0.18);
  background: rgba(34, 211, 238, 0.05);
}

.video-layout,
.sprint-layout,
.custom-grid,
.footer-inner {
  display: grid;
}

.video-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.06fr);
  gap: 64px;
  align-items: center;
}

.video-copy p:last-child {
  margin-top: 28px;
  max-width: 560px;
}

.video-panel {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(19, 28, 47, 0.88);
  box-shadow: var(--shadow);
}

.sprint-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.price-card {
  margin-top: 42px;
  max-width: 680px;
  padding: 28px 28px 30px;
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.14);
}

.price-card h3 {
  font-size: 1.55rem;
  color: var(--text-muted);
}

.price-card h3 span {
  color: var(--accent-text);
  font-size: clamp(2.6rem, 4.2vw, 3.5rem);
  letter-spacing: -0.06em;
}

.price-card p {
  margin-top: 14px;
  font-size: 0.94rem;
}

.price-card .button {
  margin-top: 24px;
}

.sprint-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sprint-panels > .panel:not(.panel-wide) {
  aspect-ratio: 1 / 1;
  padding: 24px 24px 22px;
}

.sprint-panels > .panel:not(.panel-wide) h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0.12em;
}

.sprint-panels > .panel:not(.panel-wide) p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.panel-wide {
  grid-column: 1 / -1;
}

.panel-kicker {
  margin-bottom: 24px;
  color: var(--text-muted);
  font-weight: 700;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.custom-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 36px 38px;
}

.custom-lead {
  margin-top: 16px;
  font-size: 1.12rem;
}

.custom-card ul {
  margin-top: 30px;
}

.custom-card p:last-of-type {
  margin-top: 34px;
}

.custom-card .button {
  margin-top: auto;
  color: var(--accent-text);
}

.book-call {
  text-align: center;
}

.book-call .section-kicker {
  justify-content: center;
}

.book-call h2 {
  max-width: 760px;
  margin: 0 auto;
}

.book-call > p:last-of-type {
  max-width: 700px;
  margin: 24px auto 0;
}

.book-call-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.footer {
  padding: 36px 0 52px;
  border-top: 1px solid rgba(119, 145, 186, 0.12);
  background: rgba(7, 11, 23, 0.9);
}

.footer-inner {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 22px;
}

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

.footer p,
.footer li,
.footer a {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-heading {
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pipelineSlideIn {
  from {
    opacity: 0;
    transform: translate3d(36px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.about-hero {
  padding: 104px 0 86px;
}

.about-hero-glow {
  position: relative;
  overflow: hidden;
}

.about-hero-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  width: 980px;
  height: 420px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(34, 211, 238, 0.14), transparent 62%),
    radial-gradient(ellipse at 50% 38%, rgba(34, 211, 238, 0.06), transparent 40%);
  filter: blur(10px);
  border-radius: 999px;
}

.about-hero-glow > .container {
  position: relative;
  z-index: 1;
}

.about-hero-inner {
  max-width: 1020px;
}

.about-title {
  font-size: clamp(4rem, 7vw, 5.9rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

.about-title span {
  color: var(--accent-text);
}

.about-subtitle {
  max-width: 980px;
  margin-top: 30px;
  color: var(--text-soft);
  font-size: 1.18rem;
  line-height: 1.5;
}

.principles-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(8, 13, 26, 0.72);
}

.principle {
  min-height: 250px;
  padding: 36px 38px;
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle h2 {
  color: var(--accent-text);
  font-size: 1.2rem;
  line-height: 1.25;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

.principle p {
  margin-top: 26px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 280px;
}

.about-video-block .section-heading {
  max-width: none;
  margin-bottom: 48px;
}

.about-video-panel {
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(19, 28, 47, 0.88);
  box-shadow: var(--shadow);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
  gap: 100px;
  align-items: start;
}

.founder-meta h2 {
  margin-top: 18px;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.founder-role {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.founder-meta a {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent-text);
  font-size: 1rem;
  font-weight: 500;
}

.founder-copy {
  display: grid;
  gap: 28px;
}

.founder-copy p {
  max-width: 780px;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.6;
}

.about-cta {
  text-align: center;
}

.about-book-call {
  position: relative;
  overflow: hidden;
}

.about-book-call::after {
  content: "";
  position: absolute;
  inset: -180px 0 -80px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(37, 99, 235, 0.14), transparent 42%),
    radial-gradient(ellipse at 50% 32%, rgba(34, 211, 238, 0.06), transparent 28%);
}

.about-book-call > .container {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.about-cta p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.5;
}

.about-cta .button {
  margin-top: 32px;
}

.about-page .section-kicker,
.about-page .panel h3,
.about-page .founder-role,
.about-page .footer-heading {
  font-family: "Andale Mono", AndaleMono, "Lucida Console", "Courier New", monospace;
}

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

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(119, 145, 186, 0.12);
}

.footer-bottom-bar p {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.faq-hero {
  padding: 104px 0 52px;
}

.faq-hero-glow {
  position: relative;
  overflow: hidden;
}

.faq-hero-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  width: 900px;
  height: 360px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(34, 211, 238, 0.14), transparent 62%),
    radial-gradient(ellipse at 50% 38%, rgba(34, 211, 238, 0.06), transparent 40%);
  filter: blur(10px);
  border-radius: 999px;
}

.faq-hero-glow > .container {
  position: relative;
  z-index: 1;
}

.faq-hero-inner {
  max-width: 900px;
}

.faq-title {
  font-size: clamp(4rem, 7vw, 5.9rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

.faq-title span {
  color: var(--accent-text);
}

.faq-layout {
  max-width: 1040px;
}

.faq-list {
  border-top: 1px solid rgba(119, 145, 186, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(119, 145, 186, 0.12);
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px 4px 28px 0;
  cursor: pointer;
  list-style: none;
}

.faq-page .section-kicker,
.faq-page .faq-index,
.faq-page .footer-heading {
  font-family: "Andale Mono", AndaleMono, "Lucida Console", "Courier New", monospace;
}

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

.faq-index {
  color: var(--accent-text);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.faq-question {
  color: var(--text);
  font-size: clamp(1.34rem, 2vw, 1.56rem);
  line-height: 1.28;
  font-weight: 700;
}

.faq-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(119, 145, 186, 0.18);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--accent-text);
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 10px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 10px;
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
}

.faq-item[open] .faq-question {
  color: #f5f8fc;
}

.faq-answer {
  max-width: 860px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    height 420ms cubic-bezier(0.22, 0.8, 0.22, 1),
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 0.8, 0.22, 1);
}

.faq-answer-inner {
  padding: 0 70px 30px 48px;
}

.faq-answer p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.58;
}

.faq-item[open] .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-cta-panel {
  margin-top: 68px;
  padding: 46px 48px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-strong);
  text-align: center;
}

.faq-cta-panel h2 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.faq-cta-panel p {
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 1.06rem;
}

.faq-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.contact-hero {
  padding: 82px 0 70px;
}

.contact-hero-glow {
  position: relative;
  overflow: hidden;
}

.contact-hero-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  width: 980px;
  height: 420px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(34, 211, 238, 0.14), transparent 62%),
    radial-gradient(ellipse at 50% 38%, rgba(34, 211, 238, 0.06), transparent 40%);
  filter: blur(10px);
  border-radius: 999px;
}

.contact-hero-glow > .container {
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 64px;
  align-items: start;
}

.contact-copy {
  max-width: 760px;
}

.contact-title {
  font-size: clamp(3.5rem, 6.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

.contact-title span {
  color: var(--accent-text);
}

.contact-subtitle {
  max-width: 640px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.5;
}

.contact-cards {
  display: grid;
  gap: 20px;
  margin-top: 44px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(7, 12, 25, 0.74);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-1px);
  border-color: rgba(111, 212, 251, 0.28);
}

.contact-card-active {
  background: var(--panel-strong);
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-card strong {
  display: block;
  margin-top: 6px;
  color: var(--accent-text);
  font-size: 1rem;
  line-height: 1.35;
}

.contact-card:not(.contact-card-active) strong {
  color: var(--text);
}

.contact-card span {
  color: var(--accent-text);
  font-size: 1.5rem;
  line-height: 1;
}

.contact-form-panel {
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(10, 16, 31, 0.86);
}

.contact-form-panel h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

.contact-form-panel > p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label span {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(119, 145, 186, 0.14);
  border-radius: 18px;
  background: rgba(7, 11, 23, 0.88);
  color: var(--text);
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 94px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6d788d;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(111, 212, 251, 0.34);
}

.contact-submit {
  width: 100%;
  margin-top: 10px;
}

.contact-form-note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.contact-form-note a {
  color: var(--text-soft);
}

.contact-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(8, 13, 26, 0.72);
}

.contact-metric {
  min-height: 144px;
  padding: 24px 30px 26px;
  border-right: 1px solid var(--line);
}

.contact-metric:last-child {
  border-right: 0;
}

.contact-metric strong {
  display: block;
  color: var(--accent-text);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-metric p {
  max-width: 280px;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-page .section-kicker,
.contact-page .contact-form label span,
.contact-page .footer-heading,
.contact-page .contact-metric strong {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

@media (max-width: 1180px) {
  .container {
    width: min(var(--container), calc(100% - 64px));
  }

  .home-page .container {
    width: min(1080px, calc(100% - 96px));
  }

  .about-page .container {
    width: min(1080px, calc(100% - 96px));
  }

  .faq-page .container {
    width: min(1080px, calc(100% - 96px));
  }

  .contact-page .container {
    width: min(1080px, calc(100% - 96px));
  }

  .hero-layout,
  .video-layout,
  .sprint-layout,
  .split-showcase,
  .custom-grid,
  .footer-inner,
  .founder-layout,
  .footer-inner-compact {
    grid-template-columns: 1fr;
  }

  .fit-grid,
  .triple-cards,
  .sprint-panels,
  .success-grid,
  .principles-strip,
  .contact-metrics {
    grid-template-columns: 1fr;
  }

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

  .matrix-cell:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .matrix-cell:nth-child(2n) {
    border-right: 0;
  }

  .matrix-cell:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .matrix-cell:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .metrics {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .metric {
    padding-left: 24px;
  }

  .principle {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .faq-answer {
    max-width: none;
  }

  .faq-answer-inner {
    padding: 0 24px 30px 48px;
  }

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

  .contact-metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-metric:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 860px) {
  body {
    background-size: 48px 48px, 48px 48px, auto, auto, auto;
  }

  .interactive-grid-base {
    background-size: 48px 48px, 48px 48px;
  }

  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .home-page .container {
    width: min(1080px, calc(100% - 36px));
  }

  .about-page .container {
    width: min(1080px, calc(100% - 36px));
  }

  .faq-page .container {
    width: min(1080px, calc(100% - 36px));
  }

  .contact-page .container {
    width: min(1080px, calc(100% - 36px));
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(14, 21, 37, 0.88);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
  }

  .mobile-nav {
    display: grid;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-top: 1px solid transparent;
    background: rgba(7, 11, 23, 0.96);
    transition: max-height 220ms ease, padding 220ms ease, border-color 220ms ease;
  }

  .mobile-nav.is-open {
    max-height: 460px;
    padding: 0 20px 18px;
    border-top-color: rgba(119, 145, 186, 0.12);
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: var(--text-soft);
    font-weight: 600;
  }

  .mobile-nav-cta {
    width: 100%;
    margin-top: 8px;
  }

  .section,
  .hero {
    padding: 84px 0;
  }

  .about-hero {
    padding: 88px 0 72px;
  }

  .faq-hero {
    padding: 88px 0 42px;
  }

  .contact-hero {
    padding: 84px 0 68px;
  }

  .hero-layout {
    min-height: auto;
    gap: 48px;
  }

  .hero-title {
    font-size: clamp(3.4rem, 13vw, 5rem);
  }

  .hero-meta span:not(:last-child)::after {
    display: none;
  }

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

  .matrix-cell,
  .matrix-cell:nth-child(3n),
  .matrix-cell:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .matrix-cell:last-child {
    border-bottom: 0;
  }

  .about-title {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .footer-bottom-bar {
    flex-direction: column;
  }

  .faq-title {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .contact-title {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .faq-item summary {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 24px 0;
  }

  .faq-index {
    grid-column: 1 / -1;
  }

  .faq-answer-inner {
    padding: 0 0 24px 0;
  }

  .faq-cta-panel {
    padding: 36px 24px;
  }

  .contact-form-panel {
    padding: 28px 22px;
  }

  .contact-card {
    padding: 22px 20px;
  }
}

@media (max-width: 540px) {
  .hero-title {
    font-size: clamp(2.8rem, 12vw, 3.6rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy-glow::before {
    left: -180px;
    width: 680px;
    height: 420px;
  }

  .pipeline-card {
    padding: 22px 18px 18px;
  }

  .pipeline-card-header,
  .pipeline-metrics {
    gap: 12px;
  }

  .pipeline-metrics {
    flex-direction: column;
    align-items: flex-start;
  }

  .integration-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .integration-pills span {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .video-panel,
  .about-video-panel {
    border-radius: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .interactive-grid {
    display: none;
  }

  .pipeline-row {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
