:root {
  --bg: #eef6fb;
  --bg-soft: #f7fbff;
  --bg-strong: #e4f0fb;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-dark: #0d1f39;
  --text: #163252;
  --text-strong: #0a1d34;
  --muted: #536987;
  --muted-soft: #778ba7;
  --line: rgba(16, 47, 103, 0.12);
  --line-strong: rgba(16, 47, 103, 0.2);
  --line-soft: rgba(16, 47, 103, 0.08);
  --blue: #0d7ee8;
  --blue-deep: #103c86;
  --green: #53d46e;
  --green-deep: #15996d;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(13, 40, 88, 0.1);
  --shadow-lg: 0 42px 120px rgba(13, 40, 88, 0.16);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 82% 12%, rgba(83, 212, 110, 0.18), transparent 24%),
    radial-gradient(circle at 14% 18%, rgba(13, 126, 232, 0.14), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eff6fb 40%, #e9f3fb 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    linear-gradient(rgba(16, 47, 103, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 47, 103, 0.022) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 90%);
}

body::after {
  background:
    radial-gradient(circle at 50% 100%, rgba(13, 126, 232, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(238, 246, 251, 0), rgba(238, 246, 251, 0.72));
}

main {
  position: relative;
  z-index: 1;
}

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

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

.site-shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: 16px;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 126px;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(247, 251, 255, 0));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: none;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid rgba(16, 47, 103, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  isolation: isolate;
}

.hero-brand,
.footer-brand {
  isolation: isolate;
}

.brand-logo,
.hero-logo-image,
.footer-logo-image {
  display: block;
  height: auto;
  opacity: 1;
  mix-blend-mode: normal;
  border-radius: 0;
  filter: drop-shadow(0 18px 32px rgba(3, 9, 24, 0.14));
}

.brand-logo {
  width: min(148px, 30vw);
}

.hero-logo-image {
  width: min(236px, 54vw);
}

.footer-logo-image {
  width: min(164px, 40vw);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text-strong);
  background: rgba(13, 126, 232, 0.08);
}

.site-nav a.is-active {
  color: var(--text-strong);
  background: rgba(13, 126, 232, 0.1);
}

.hero {
  padding: 160px 0 108px;
}

.hero-home {
  position: relative;
  overflow: clip;
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero-home::before {
  inset: 24px auto auto 50%;
  width: min(54vw, 820px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 34%, rgba(13, 126, 232, 0.18), transparent 54%),
    radial-gradient(circle at 74% 42%, rgba(83, 212, 110, 0.22), transparent 48%);
  filter: blur(18px);
}

.hero-home::after {
  inset: auto auto 22px -2%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 126, 232, 0.08), transparent 70%);
}

.hero-grid,
.proof-grid,
.metrics-grid,
.system-grid,
.cta-banner,
.phase-strip,
.usecase-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.hero-copy,
.cta-copy,
.growth-panel-head,
.signal-copy,
.section-head,
.system-intro {
  display: grid;
  gap: 20px;
}

.hero-brand {
  width: fit-content;
}

.eyebrow,
.panel-kicker,
.comparison-label,
.metric-label,
.system-step,
.usecase-index,
.signal-label,
.proof-pill strong,
.phase-pill small,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--blue-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.panel-kicker::before,
.comparison-label::before,
.signal-label::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 47, 103, 0.08), var(--green), var(--blue));
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text-strong);
  font-family: "Sora", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 {
  max-width: 8.7ch;
  font-size: clamp(3.9rem, 9vw, 6.8rem);
  font-weight: 600;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-weight: 600;
}

.page-title {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

p,
.section-copy,
.metric-copy,
.footer-copy,
.content-shell-body p,
.content-shell-body li {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.74;
}

.hero-intro {
  max-width: 38ch;
  font-size: 1.16rem;
  color: #405c7d;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary,
.button-nav {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white) !important;
  box-shadow: 0 18px 38px rgba(13, 126, 232, 0.22);
}

.button-secondary {
  border-color: rgba(16, 47, 103, 0.14);
  background: rgba(255, 255, 255, 0.56);
  color: var(--text-strong);
}

.button-primary:hover,
.button-nav:hover,
.button-secondary:hover {
  box-shadow: 0 22px 46px rgba(13, 126, 232, 0.28);
}

.proof-grid,
.metrics-grid,
.usecase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-pill,
.metric,
.system-card,
.usecase-card,
.directory-spotlight,
.route-card,
.contact-card,
.cta-banner,
.footer-panel,
.content-shell-inner,
.comparison-column,
.comparison-note,
.signal-banner,
.system-intro,
.growth-panel,
.phase-pill {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 47, 103, 0.1);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.proof-pill::before,
.metric::before,
.system-card::before,
.usecase-card::before,
.directory-spotlight::before,
.route-card::before,
.contact-card::before,
.cta-banner::before,
.footer-panel::before,
.content-shell-inner::before,
.comparison-column::before,
.comparison-note::before,
.signal-banner::before,
.system-intro::before,
.growth-panel::before,
.phase-pill::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(83, 212, 110, 0), rgba(83, 212, 110, 0.92), rgba(13, 126, 232, 0.92), rgba(13, 126, 232, 0));
  opacity: 0.72;
}

.proof-pill,
.metric,
.system-card,
.usecase-card,
.directory-spotlight,
.route-card,
.contact-card,
.comparison-column,
.comparison-note,
.system-intro {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.growth-panel,
.signal-banner,
.cta-banner,
.footer-panel,
.content-shell-inner {
  border-radius: var(--radius-xl);
}

.proof-pill,
.metric,
.system-card,
.usecase-card,
.directory-spotlight,
.route-card,
.contact-card,
.comparison-column,
.comparison-note,
.system-intro,
.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand {
  padding: 0;
}

.proof-pill strong {
  color: var(--blue-deep);
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero-stage {
  display: grid;
}

.growth-panel {
  display: grid;
  gap: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 249, 255, 0.96)),
    radial-gradient(circle at top right, rgba(83, 212, 110, 0.16), transparent 22%);
  box-shadow: var(--shadow-lg);
}

.growth-visual {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  background:
    radial-gradient(circle at 18% 22%, rgba(13, 126, 232, 0.18), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(83, 212, 110, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(8, 20, 44, 0.02), rgba(8, 20, 44, 0.16));
}

.growth-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 88%);
  pointer-events: none;
}

.growth-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(12, 23, 44, 0), rgba(12, 23, 44, 0.3));
}

.growth-visual-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.growth-float {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(9, 23, 47, 0.74);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.growth-float strong {
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.growth-float span {
  color: rgba(255, 255, 255, 0.74);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-float-top {
  top: 24px;
  left: 24px;
}

.growth-float-side {
  top: 160px;
  right: 24px;
}

.growth-float-bottom {
  right: 24px;
  bottom: 24px;
}

.growth-panel-copy {
  display: grid;
  gap: 24px;
  padding: 32px 34px 34px;
}

.growth-panel-head h2 {
  max-width: 10ch;
}

.growth-panel-head p {
  max-width: 34ch;
}

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

.phase-pill {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(241, 248, 255, 0.92));
}

.phase-pill strong {
  color: var(--text-strong);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section {
  position: relative;
  padding: 106px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid var(--line-soft);
  pointer-events: none;
}

.section-compare {
  background:
    radial-gradient(circle at 86% 18%, rgba(13, 126, 232, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.section-results {
  background:
    radial-gradient(circle at 16% 22%, rgba(83, 212, 110, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.section-system {
  background:
    radial-gradient(circle at 84% 12%, rgba(13, 126, 232, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.section-usecases {
  background:
    radial-gradient(circle at 20% 16%, rgba(83, 212, 110, 0.1), transparent 22%),
    radial-gradient(circle at 84% 22%, rgba(13, 126, 232, 0.08), transparent 18%);
}

.section-directory,
.section-contact-page {
  background:
    radial-gradient(circle at 82% 14%, rgba(13, 126, 232, 0.08), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(83, 212, 110, 0.08), transparent 22%);
}

.section-head {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-head-centered {
  margin: 0 auto 44px;
  text-align: center;
}

.section-head-centered h2,
.section-head-centered .section-copy {
  margin-left: auto;
  margin-right: auto;
}

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

.comparison-column {
  min-height: 100%;
}

.comparison-column-problem {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 248, 255, 0.94)),
    radial-gradient(circle at top right, rgba(13, 126, 232, 0.12), transparent 20%);
}

.comparison-column-solution {
  background:
    linear-gradient(180deg, rgba(226, 248, 233, 0.82), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top right, rgba(83, 212, 110, 0.16), transparent 22%);
}

.comparison-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.comparison-note {
  grid-column: 1 / -1;
  gap: 10px;
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgba(223, 248, 229, 0.9), rgba(229, 241, 255, 0.94)),
    rgba(255, 255, 255, 0.8);
}

.comparison-note strong,
.signal-copy h3,
.system-intro h3 {
  color: var(--text-strong);
}

.comparison-note strong {
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.comparison-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}

.showcase-stack,
.system-aside,
.system-visual-stack {
  display: grid;
  gap: 24px;
}

.showcase-stack {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(16, 91, 184, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(6, 12, 24, 0.96), rgba(8, 17, 31, 0.9));
  box-shadow: var(--shadow-lg);
}

.showcase-card::before,
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.showcase-card::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 12, 24, 0.08), rgba(6, 12, 24, 0.72)),
    linear-gradient(135deg, rgba(13, 126, 232, 0.16), rgba(83, 212, 110, 0.08));
}

.showcase-card::after {
  z-index: 1;
  background:
    radial-gradient(circle at 82% 18%, rgba(83, 212, 110, 0.24), transparent 22%),
    radial-gradient(circle at 14% 14%, rgba(13, 126, 232, 0.24), transparent 24%);
}

.showcase-card-wide {
  min-height: clamp(380px, 44vw, 500px);
}

.showcase-card-brand,
.showcase-card-scale {
  min-height: clamp(220px, 20vw, 280px);
}

.showcase-graphic {
  position: absolute;
  inset: 0;
}

.showcase-graphic::before,
.showcase-graphic::after {
  content: "";
  position: absolute;
  inset: 0;
}

.showcase-graphic::before {
  inset: 22px;
  border-radius: calc(var(--radius-xl) - 10px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 92%);
  opacity: 0.58;
}

.showcase-graphic::after {
  inset: auto 26px 24px;
  height: 34%;
  border-radius: 999px 999px 28px 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  opacity: 0.62;
  filter: blur(1px);
}

.showcase-card-wide .showcase-copy {
  padding-bottom: 108px;
}

.showcase-card-brand .showcase-copy,
.showcase-card-scale .showcase-copy {
  align-content: center;
  max-width: 30ch;
}

.showcase-card-brand .showcase-copy p,
.showcase-card-scale .showcase-copy p {
  font-size: clamp(1.04rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: rgba(239, 247, 255, 0.84);
  max-width: 26ch;
}

.showcase-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 100%;
  padding: 28px;
}

.showcase-copy .card-label {
  color: rgba(182, 221, 255, 0.92);
}

.showcase-copy h3,
.showcase-copy p {
  margin: 0;
}

.showcase-copy h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  max-width: 13ch;
}

.showcase-copy p {
  color: rgba(235, 243, 255, 0.78);
  max-width: 34ch;
}

.page-stack {
  position: relative;
  z-index: 1;
}

.page-stack > .section:first-child {
  padding-top: 148px;
}

.page-stack > .section:first-child::before {
  opacity: 0;
}

.directory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  align-items: start;
}

.directory-spotlight,
.directory-copy,
.route-card,
.contact-card {
  display: grid;
  gap: 18px;
}

.directory-spotlight {
  align-content: start;
}

.directory-copy p {
  max-width: 34ch;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-content: start;
}

.route-card {
  min-height: 100%;
  color: inherit;
  align-content: start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.route-card:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 91, 184, 0.18);
  box-shadow: var(--shadow-lg);
}

.route-card-wide {
  grid-column: 1 / -1;
}

.route-index,
.route-link,
.contact-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--blue-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-link {
  margin-top: auto;
  color: var(--text-strong);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.95fr));
  gap: 24px;
}

.contact-card {
  min-height: 100%;
  align-content: start;
}

.contact-card-primary {
  background:
    linear-gradient(180deg, rgba(226, 248, 233, 0.84), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top right, rgba(83, 212, 110, 0.14), transparent 22%);
}

.contact-card-highlight {
  background:
    linear-gradient(180deg, rgba(234, 245, 255, 0.92), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top right, rgba(13, 126, 232, 0.12), transparent 20%);
}

.contact-card-highlight h3 {
  line-height: 1.08;
  word-break: break-word;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.showcase-tags {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(178, 219, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 16, 30, 0.54);
  color: rgba(243, 249, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-graphic-launch {
  background:
    radial-gradient(circle at 78% 18%, rgba(83, 212, 110, 0.24), transparent 18%),
    radial-gradient(circle at 18% 84%, rgba(13, 126, 232, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.16), rgba(5, 10, 20, 0.02));
}

.showcase-graphic-launch .launch-grid {
  position: absolute;
  inset: auto 28px 34px;
  height: 52%;
  border-radius: 28px 28px 32px 32px;
  background:
    linear-gradient(rgba(78, 140, 213, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 140, 213, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 49, 95, 0.36), rgba(7, 15, 28, 0));
  background-size: 88px 88px, 88px 88px, 100% 100%;
  opacity: 0.74;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

.showcase-graphic-launch .launch-track {
  position: absolute;
  left: 7%;
  bottom: 27%;
  width: 82%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 252, 200, 0.88), rgba(83, 212, 110, 0.92), rgba(13, 126, 232, 0.9));
  transform: rotate(-18deg);
  box-shadow:
    0 0 0 1px rgba(250, 255, 224, 0.12),
    0 0 22px rgba(255, 252, 200, 0.26),
    0 0 40px rgba(83, 212, 110, 0.16);
}

.showcase-graphic-launch .launch-node {
  position: absolute;
  width: 18px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(241, 248, 255, 0.66);
  background:
    radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.95), rgba(150, 222, 255, 0.92) 42%, rgba(13, 126, 232, 0.98) 100%);
  box-shadow:
    0 0 0 8px rgba(13, 126, 232, 0.08),
    0 0 18px rgba(13, 126, 232, 0.18);
}

.showcase-graphic-launch .launch-node-start {
  left: 18%;
  bottom: 29%;
}

.showcase-graphic-launch .launch-node-mid {
  left: 44%;
  bottom: 41%;
}

.showcase-graphic-launch .launch-node-end {
  right: 14%;
  top: 24%;
}

.showcase-graphic-launch .launch-core {
  position: absolute;
  left: 50%;
  bottom: 22%;
  width: 112px;
  height: 170px;
  transform: translateX(-50%);
  border-radius: 999px 999px 34px 34px;
  background:
    linear-gradient(180deg, rgba(137, 219, 255, 0.96), rgba(23, 154, 239, 0.98) 42%, rgba(16, 60, 134, 0.98) 100%);
  clip-path: polygon(50% 0%, 72% 14%, 86% 42%, 70% 100%, 30% 100%, 14% 42%, 28% 14%);
  box-shadow:
    0 12px 40px rgba(13, 126, 232, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.showcase-graphic-launch .launch-pulse {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 190px;
  height: 126px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 251, 201, 0.9), rgba(255, 210, 116, 0.38) 28%, rgba(13, 126, 232, 0) 68%),
    radial-gradient(circle at 50% 70%, rgba(13, 126, 232, 0.26), transparent 72%);
  filter: blur(1px);
}

.showcase-graphic-logic {
  background:
    radial-gradient(circle at 18% 20%, rgba(13, 126, 232, 0.22), transparent 20%),
    radial-gradient(circle at 82% 74%, rgba(83, 212, 110, 0.2), transparent 24%);
}

.showcase-graphic-logic .logic-orbit,
.showcase-graphic-logic .logic-center,
.showcase-graphic-logic .logic-bar {
  position: absolute;
}

.showcase-graphic-logic .logic-orbit {
  top: 50%;
  left: 66%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.showcase-graphic-logic .logic-orbit-outer {
  width: 164px;
  height: 164px;
  border: 1px solid rgba(159, 210, 255, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(159, 210, 255, 0.06),
    0 0 26px rgba(13, 126, 232, 0.12);
}

.showcase-graphic-logic .logic-orbit-inner {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(83, 212, 110, 0.26);
  box-shadow:
    inset 0 0 0 1px rgba(83, 212, 110, 0.08),
    0 0 18px rgba(83, 212, 110, 0.1);
}

.showcase-graphic-logic .logic-center {
  top: 50%;
  left: 66%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.95), rgba(83, 212, 110, 0.94) 44%, rgba(21, 153, 109, 0.98) 100%);
  box-shadow:
    0 0 0 10px rgba(83, 212, 110, 0.09),
    0 0 22px rgba(83, 212, 110, 0.18);
}

.showcase-graphic-logic .logic-bar {
  left: 22%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 126, 232, 0.2), rgba(182, 225, 255, 0.84));
  box-shadow: 0 0 16px rgba(13, 126, 232, 0.12);
}

.showcase-graphic-logic .logic-bar-1 {
  top: 34%;
  width: 128px;
}

.showcase-graphic-logic .logic-bar-2 {
  top: 50%;
  width: 92px;
}

.showcase-graphic-logic .logic-bar-3 {
  top: 66%;
  width: 144px;
  background: linear-gradient(90deg, rgba(83, 212, 110, 0.2), rgba(224, 255, 232, 0.82));
  box-shadow: 0 0 16px rgba(83, 212, 110, 0.12);
}

.showcase-graphic-scale {
  background:
    radial-gradient(circle at 24% 84%, rgba(13, 126, 232, 0.28), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(83, 212, 110, 0.18), transparent 18%);
}

.showcase-graphic-scale .scale-bar,
.showcase-graphic-scale .scale-line,
.showcase-graphic-scale .scale-point {
  position: absolute;
}

.showcase-graphic-scale .scale-bar {
  bottom: 18%;
  width: 13%;
  border-radius: 22px 22px 10px 10px;
  background:
    linear-gradient(180deg, rgba(50, 189, 246, 0.86), rgba(13, 126, 232, 0.62)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 10px 24px rgba(13, 126, 232, 0.12);
}

.showcase-graphic-scale .scale-bar-1 {
  left: 18%;
  height: 24%;
}

.showcase-graphic-scale .scale-bar-2 {
  left: 35%;
  height: 38%;
}

.showcase-graphic-scale .scale-bar-3 {
  left: 52%;
  height: 52%;
}

.showcase-graphic-scale .scale-bar-4 {
  left: 69%;
  height: 68%;
}

.showcase-graphic-scale .scale-line {
  left: 16%;
  bottom: 38%;
  width: 66%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 255, 164, 0.92), rgba(83, 212, 110, 0.9), rgba(13, 126, 232, 0.9));
  transform: rotate(-17deg);
  box-shadow:
    0 0 0 1px rgba(250, 255, 224, 0.12),
    0 0 22px rgba(226, 255, 164, 0.18);
}

.showcase-graphic-scale .scale-point {
  top: 20%;
  right: 13%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.95), rgba(83, 212, 110, 0.96) 48%, rgba(13, 126, 232, 0.96) 100%);
  box-shadow:
    0 0 0 10px rgba(83, 212, 110, 0.08),
    0 0 24px rgba(83, 212, 110, 0.18);
}

.metric {
  display: grid;
  gap: 12px;
  min-height: 100%;
}

.metric-value {
  color: var(--blue-deep);
  font-family: "Sora", sans-serif;
  font-size: clamp(3.2rem, 4vw, 4.9rem);
  font-weight: 700;
  letter-spacing: -0.08em;
}

.signal-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 28px;
  align-items: center;
  margin-top: 30px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(225, 248, 232, 0.9), rgba(230, 242, 255, 0.95)),
    rgba(255, 255, 255, 0.82);
}

.signal-copy p {
  max-width: 36ch;
}

.signal-curve {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  min-height: 190px;
  padding: 28px 22px;
  border: 1px solid rgba(16, 47, 103, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.1)),
    radial-gradient(circle at 82% 22%, rgba(13, 126, 232, 0.12), transparent 18%);
  overflow: hidden;
}

.signal-curve::before {
  content: "";
  position: absolute;
  inset: auto 9% 34px 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 999px;
  transform: rotate(-14deg);
  transform-origin: left center;
  box-shadow: 0 0 20px rgba(13, 126, 232, 0.2);
}

.signal-curve::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(16, 47, 103, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 47, 103, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 82%);
  pointer-events: none;
}

.signal-step {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 96px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(9, 23, 47, 0.8);
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.signal-step:nth-child(1) {
  transform: translateY(34px);
}

.signal-step:nth-child(2) {
  transform: translateY(0);
}

.signal-step:nth-child(3) {
  transform: translateY(-34px);
}

.system-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
}

.system-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 66, 112, 0.24);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(7, 14, 26, 0.96), rgba(8, 17, 31, 0.92));
  box-shadow: var(--shadow-lg);
}

.system-shot::before,
.system-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.system-shot::before {
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(83, 212, 110, 0), rgba(83, 212, 110, 0.94), rgba(13, 126, 232, 0.94), rgba(13, 126, 232, 0));
}

.system-shot::after {
  background:
    linear-gradient(180deg, rgba(7, 14, 26, 0.02), rgba(7, 14, 26, 0.08)),
    radial-gradient(circle at 84% 14%, rgba(83, 212, 110, 0.12), transparent 18%),
    radial-gradient(circle at 14% 20%, rgba(13, 126, 232, 0.14), transparent 22%);
}

.system-shot-image {
  display: block;
  width: 100%;
  height: auto;
}

.system-shot-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(179, 220, 255, 0.16);
  border-radius: 20px;
  background: rgba(7, 16, 30, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.system-shot-badge span {
  color: rgba(168, 219, 255, 0.86);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-shot-badge strong {
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.system-intro {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 255, 0.92)),
    radial-gradient(circle at top right, rgba(13, 126, 232, 0.12), transparent 22%);
}

.bullet-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-columns li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.bullet-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

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

.system-card {
  min-height: 100%;
}

.system-card-wide {
  grid-column: 1 / -1;
}

.usecase-card {
  min-height: 100%;
  gap: 18px;
  grid-template-rows: auto auto auto 1fr;
}

.usecase-card-featured {
  background:
    linear-gradient(180deg, rgba(226, 248, 233, 0.84), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top right, rgba(83, 212, 110, 0.14), transparent 22%);
  transform: none;
  border-color: rgba(83, 212, 110, 0.24);
  box-shadow: 0 24px 64px rgba(13, 40, 88, 0.14);
}

.usecase-media {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  aspect-ratio: 16 / 10;
  margin: -28px -28px 6px;
  border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 22px 22px;
  background: linear-gradient(180deg, rgba(6, 12, 24, 0.96), rgba(8, 17, 31, 0.88));
}

.usecase-media::before,
.usecase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.usecase-media::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 12, 24, 0.04), rgba(6, 12, 24, 0.22)),
    linear-gradient(135deg, rgba(13, 126, 232, 0.14), rgba(83, 212, 110, 0.08));
}

.usecase-media::after {
  inset: auto 18px 18px;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, rgba(83, 212, 110, 0), rgba(83, 212, 110, 0.94), rgba(13, 126, 232, 0.94), rgba(13, 126, 232, 0));
}

.usecase-image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.03) brightness(0.96);
}

.usecase-media-automation .usecase-image {
  object-position: center center;
}

.usecase-media-accounting .usecase-image {
  object-position: center center;
}

.usecase-media-operations .usecase-image {
  object-position: center center;
}

.usecase-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 19, 37, 0.76);
  color: rgba(227, 241, 255, 0.92);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta-banner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(224, 248, 231, 0.9), rgba(230, 242, 255, 0.95)),
    rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 20px 0 40px;
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 30px;
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.footer-links a {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--blue-deep);
}

.content-shell {
  padding: 148px 0 80px;
}

.content-shell-inner {
  padding: 34px;
}

.content-title {
  margin-top: 18px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.content-shell-body {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.content-shell-body ul,
.content-shell-body ol {
  margin: 0;
  padding-left: 22px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1160px) {
  .hero-grid,
  .directory-layout,
  .signal-banner,
  .system-layout,
  .contact-page-grid,
  .cta-banner,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .comparison-panel {
    grid-template-columns: 1fr;
  }

  .comparison-showcase {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 920px) {
  .nav-shell {
    border-radius: 30px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .proof-grid,
  .metrics-grid,
  .route-grid,
  .usecase-grid,
  .system-grid,
  .phase-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-float-side {
    top: auto;
    right: auto;
    left: 24px;
    bottom: 96px;
  }

  .signal-curve {
    min-height: 168px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    padding: 16px;
    border-radius: 28px;
    gap: 16px;
  }

  .brand {
    width: fit-content;
  }

  .brand-logo {
    width: min(132px, 44vw);
  }

  .hero-logo-image {
    width: min(198px, 58vw);
  }

  .footer-logo-image {
    width: min(154px, 54vw);
  }

  .hero {
    padding: 128px 0 76px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .proof-grid,
  .metrics-grid,
  .comparison-showcase,
  .route-grid,
  .usecase-grid,
  .system-grid,
  .phase-strip {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    padding: 22px;
  }

  .showcase-card-wide {
    min-height: 360px;
  }

  .showcase-card-brand,
  .showcase-card-scale {
    min-height: 210px;
  }

  .route-card-wide {
    grid-column: auto;
  }

  .showcase-card-wide .showcase-copy {
    padding-bottom: 92px;
  }

  .showcase-tags {
    left: 22px;
    right: 22px;
    bottom: 22px;
    gap: 8px;
  }

  .showcase-tags span {
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  .showcase-graphic-launch .launch-core {
    width: 92px;
    height: 142px;
  }

  .showcase-graphic-launch .launch-pulse {
    width: 160px;
    height: 104px;
  }

  .showcase-graphic-logic .logic-orbit {
    left: 72%;
  }

  .showcase-graphic-logic .logic-orbit-outer {
    width: 132px;
    height: 132px;
  }

  .showcase-graphic-logic .logic-orbit-inner {
    width: 88px;
    height: 88px;
  }

  .showcase-graphic-logic .logic-center {
    width: 18px;
    height: 18px;
  }

  .showcase-graphic-logic .logic-bar {
    left: 16%;
    height: 8px;
  }

  .showcase-graphic-logic .logic-bar-1 {
    width: 96px;
  }

  .showcase-graphic-logic .logic-bar-2 {
    width: 74px;
  }

  .showcase-graphic-logic .logic-bar-3 {
    width: 108px;
  }

  .growth-visual-image {
    min-height: 420px;
  }

  .growth-float {
    position: absolute;
    max-width: 170px;
  }

  .growth-float-top {
    top: 16px;
    left: 16px;
  }

  .growth-float-side {
    left: 16px;
    bottom: 88px;
  }

  .growth-float-bottom {
    right: 16px;
    bottom: 16px;
  }

  .signal-curve {
    padding: 22px 18px;
    min-height: 188px;
  }

  .signal-step {
    min-width: 82px;
    min-height: 82px;
    padding: 12px;
    font-size: 0.68rem;
  }

  .signal-step:nth-child(1),
  .signal-step:nth-child(2),
  .signal-step:nth-child(3) {
    transform: none;
  }

  .proof-pill,
  .metric,
  .system-card,
  .usecase-card,
  .comparison-column,
  .comparison-note,
  .system-intro,
  .phase-pill,
  .content-shell-inner {
    padding: 22px;
  }

  .usecase-media {
    min-height: 174px;
    aspect-ratio: 16 / 10;
    margin: -22px -22px 6px;
  }

  .usecase-image {
    min-height: 174px;
  }

  .page-stack > .section:first-child {
    padding-top: 128px;
  }

  .system-shot-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
  }

  .system-shot-badge strong {
    font-size: 0.92rem;
  }

  .growth-panel-copy,
  .signal-banner,
  .cta-banner,
  .footer-panel {
    padding: 24px;
  }

  .section {
    padding: 84px 0;
  }

  .content-shell {
    padding-top: 124px;
  }
}
