:root {
  color-scheme: dark;
  --bg: #080b10;
  --bg-2: #0c1118;
  --surface: #111821;
  --surface-2: #0e141c;
  --text: #ffffff;
  --soft-text: #dbe2e8;
  --muted: #a1aab6;
  --dim: #707a87;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --cyan: #00d7e8;
  --cyan-hover: #22e4f2;
  --cyan-soft: rgba(0, 215, 232, 0.1);
  --cyan-line: rgba(0, 215, 232, 0.42);
  --success: #4ade80;
  --error: #ff8a8a;
  --max: 1320px;
  --pad: clamp(1rem, 4vw, 4rem);
  --font-body: "Inter", sans-serif;
  --font-display: "Manrope", sans-serif;
  --tracking-tight: -0.03em;
  --tracking-subtle: -0.015em;
  --tracking-label: 0.13em;
  --hero-size: clamp(4rem, 5.4vw, 4.5rem);
  --section-title-size: clamp(2.5rem, 3.8vw, 3rem);
  --card-title-size: clamp(1.25rem, 1.65vw, 1.5rem);
  --body-size: clamp(1rem, 1.2vw, 1.125rem);
  --caption-size: clamp(0.75rem, 0.9vw, 0.875rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 78% 10%, rgba(0, 215, 232, 0.075), transparent 32rem),
    linear-gradient(180deg, var(--bg) 0%, #06080c 100%);
  background-size: 80px 80px, 80px 80px, auto, auto;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

main {
  display: grid;
  gap: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 40;
  border-radius: 8px;
  background: var(--cyan);
  color: var(--bg);
  padding: 0.75rem 1rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 72px;
  padding: 0.78rem var(--pad);
  background: rgba(8, 11, 16, 0);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled,
.menu-open .site-header {
  background: rgba(8, 11, 16, 0.9);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 44px;
  text-decoration: none;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(118px, 12vw, 154px);
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  padding: 0.28rem 0.55rem;
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 34px;
  object-fit: contain;
}

.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.7vw, 1.35rem);
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 9px;
  padding: 0.9rem 1.22rem;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-cta {
  min-height: 42px;
  padding: 0.68rem 0.9rem;
  font-size: 0.9rem !important;
}

.button.primary,
.nav-cta {
  background: var(--cyan);
  color: var(--bg) !important;
  box-shadow: 0 14px 34px rgba(0, 215, 232, 0.12);
}

.button.primary:hover,
.nav-cta:hover {
  background: var(--cyan-hover);
}

.button.secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

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

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero,
.section,
.solutions,
.final-cta,
.form-section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(var(--pad), 1fr) minmax(0, 680px) minmax(var(--pad), 1fr);
  align-items: end;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: clamp(7rem, 13vw, 10rem) 0 clamp(4rem, 9vw, 7rem);
  isolation: isolate;
}

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

.hero::before {
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.08) 0%, rgba(8, 11, 16, 0.42) 42%, rgba(8, 11, 16, 0.88) 72%, rgba(8, 11, 16, 0.96) 100%),
    linear-gradient(180deg, rgba(8, 11, 16, 0.36) 0%, transparent 34%, rgba(8, 11, 16, 0.82) 100%);
}

.hero::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent, black 45%, black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.compact-hero {
  min-height: calc(100vh - 72px);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.88vw, 0.82rem);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-display);
}

h1 {
  max-width: 720px;
  margin-bottom: 1.25rem;
  font-size: var(--hero-size);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1.06;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: var(--section-title-size);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.14;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.42rem;
  font-size: var(--card-title-size);
  font-weight: 600;
  letter-spacing: var(--tracking-subtle);
  line-height: 1.25;
  text-wrap: balance;
}

.hero-lede,
.section-lede,
.solution-copy p,
.final-cta p,
.form-intro p {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: 1.66;
}

.hero-lede {
  max-width: 660px;
  font-size: clamp(1.18rem, 1.45vw, 1.3rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  justify-self: end;
  max-width: 680px;
  padding: 0 var(--pad) 0 0;
}

.hero-copy h1 {
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.62);
}

.hero-visual {
  position: relative;
  min-height: clamp(430px, 43vw, 590px);
  overflow: hidden;
  border-radius: 16px;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  border: 1px solid var(--line);
  border-radius: inherit;
  background:
    radial-gradient(circle at 70% 45%, rgba(0, 215, 232, 0.1), transparent 20rem),
    linear-gradient(90deg, rgba(8, 11, 16, 0.5), transparent 22%),
    linear-gradient(180deg, transparent 74%, rgba(8, 11, 16, 0.55));
}

.hero-visual::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045), inset 0 0 80px rgba(0, 0, 0, 0.42);
  border-radius: inherit;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.025);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 58% 50%, black, transparent 70%);
  pointer-events: none;
}

.system-status {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(8, 11, 16, 0.72);
  color: var(--soft-text);
  font-family: var(--font-body);
  font-size: var(--caption-size);
  font-weight: 500;
  padding: 0.62rem 0.78rem;
  backdrop-filter: blur(12px);
}

.system-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.55);
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-strip span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 74px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1vw, 0.86rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0 1rem;
  text-transform: uppercase;
}

.capability-strip svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--cyan);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.capability-strip span:last-child {
  border-right: 0;
}

.section,
.final-cta,
.form-section {
  border-bottom: 1px solid var(--line);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.who-section,
.service-menu {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, rgba(17, 24, 33, 0.58), rgba(8, 11, 16, 0.2));
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
}

.offer-section {
  background: rgba(255, 255, 255, 0.015);
}

.offer-section,
.who-section,
.timeline-section,
.why-section,
.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.section-kicker {
  position: sticky;
  top: 110px;
}

.offer-section .section-kicker {
  align-self: center;
}

.section-kicker .eyebrow,
.service-menu-heading .eyebrow {
  margin-bottom: 1.2rem;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  letter-spacing: var(--tracking-label);
}

.section-kicker h2,
.service-menu-heading h2 {
  font-size: clamp(4.5rem, 8vw, 7rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.who-section .section-kicker h2 {
  max-width: 560px;
}

.section-lede {
  max-width: 560px;
}

.who-content {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.4rem);
}

.business-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.business-gallery figure {
  position: relative;
  min-height: clamp(250px, 22vw, 330px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 0;
  background: var(--surface);
  transition: border-color 160ms ease, transform 160ms ease;
}

.business-gallery figure:hover {
  z-index: 2;
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.business-gallery figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(8, 11, 16, 0.82));
  content: "";
}

.business-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 220ms ease, filter 220ms ease;
}

.business-gallery figure:hover img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.025);
}

.business-gallery figcaption {
  position: absolute;
  left: clamp(1rem, 2vw, 1.35rem);
  right: clamp(1rem, 2vw, 1.35rem);
  bottom: clamp(1rem, 2vw, 1.35rem);
  z-index: 1;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--card-title-size);
  font-weight: 600;
  letter-spacing: var(--tracking-subtle);
  line-height: 1.25;
}

.offer-list {
  display: grid;
}

.photo-panel-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 0.8rem;
}

.what-do-grid {
  align-items: stretch;
}

.photo-panel-grid article {
  position: relative;
  min-height: clamp(220px, 22vw, 320px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
}

.what-do-grid article:nth-child(1) {
  grid-row: span 2;
  min-height: clamp(380px, 35vw, 520px);
}

.what-do-grid article:nth-child(2) {
  min-height: auto;
}

.what-do-grid article:nth-child(3) {
  min-height: auto;
}

.photo-panel-grid article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.76));
  content: "";
}

.photo-panel-grid img,
.category-grid article > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.photo-panel-grid article:hover img,
.category-grid article:hover > img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.025);
}

.photo-panel-grid h3 {
  position: absolute;
  left: clamp(1rem, 2vw, 1.35rem);
  right: clamp(1rem, 2vw, 1.35rem);
  bottom: clamp(1rem, 2vw, 1.35rem);
  z-index: 1;
  max-width: 300px;
  margin: 0;
  font-size: var(--card-title-size);
  line-height: 1.25;
}

.what-do-grid h3 {
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
}

.offer-list article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: clamp(1rem, 2vw, 1.75rem);
  border-top: 1px solid var(--line);
  padding: 1.55rem 0;
  transition: border-color 180ms ease, transform 180ms ease;
}

.offer-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.offer-list article:hover {
  border-top-color: var(--line-strong);
  transform: translateX(4px);
}

.offer-list span,
.solution-number,
.timeline > li > span {
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}

.offer-list p,
.timeline p,
.benefit-grid p {
  margin: 0;
  color: var(--muted);
}

.system-showcase {
  text-align: center;
}

.showcase-heading {
  max-width: 820px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
}

.showcase-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--body-size);
  line-height: 1.65;
}

.showcase-frame {
  position: relative;
  min-height: clamp(420px, 44vw, 600px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(0, 215, 232, 0.105), transparent 24rem),
    var(--surface-2);
  background-size: 68px 68px, 68px 68px, auto, auto;
}

.showcase-frame::before,
.showcase-frame::after {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-line), transparent);
  content: "";
}

.showcase-frame::after {
  left: 50%;
  right: auto;
  top: 12%;
  bottom: 12%;
  width: 1px;
  height: auto;
}

.system-node,
.system-core {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(17, 24, 33, 0.76);
  backdrop-filter: blur(12px);
}

.system-node {
  display: grid;
  gap: 0.35rem;
  width: min(190px, 30vw);
  padding: 1.05rem;
  text-align: left;
}

.system-node span {
  color: var(--dim);
  font-family: var(--font-body);
  font-size: var(--caption-size);
  font-weight: 500;
}

.system-node strong,
.system-core strong {
  color: var(--soft-text);
  font-family: var(--font-display);
}

.system-node.active {
  border-color: var(--cyan-line);
  box-shadow: inset 0 0 0 1px rgba(0, 215, 232, 0.1);
}

.node-a {
  left: 7%;
  top: 16%;
}

.node-b {
  right: 12%;
  top: 14%;
}

.node-c {
  left: 12%;
  bottom: 15%;
}

.node-d {
  right: 7%;
  bottom: 16%;
}

.system-core {
  left: 50%;
  top: 50%;
  display: grid;
  width: min(360px, calc(100% - 2rem));
  gap: 0.75rem;
  padding: 1.4rem;
  text-align: center;
  transform: translate(-50%, -50%);
}

.system-core span {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border: 1px solid var(--cyan-line);
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(0, 215, 232, 0.5) 49%, rgba(0, 215, 232, 0.5) 51%, transparent 52%),
    linear-gradient(transparent 48%, rgba(0, 215, 232, 0.5) 49%, rgba(0, 215, 232, 0.5) 51%, transparent 52%),
    var(--cyan-soft);
}

.system-core p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.stage-sequence {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.stage-sequence li {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--dim);
  font-family: var(--font-body);
  font-size: var(--caption-size);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-sequence li + li::before {
  width: clamp(1.6rem, 5vw, 4.5rem);
  height: 1px;
  margin: 0 0.8rem;
  background: var(--line-strong);
  content: "";
}

.stage-sequence .active {
  color: var(--cyan);
}

.compare-section,
.objection-section,
.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.comparison-grid,
.objection-list {
  display: grid;
  gap: 1rem;
}

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

.comparison-grid article,
.objection-list article,
.proof-placeholder {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(17, 24, 33, 0.48);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.comparison-grid .with-system {
  border-color: var(--cyan-line);
  background: linear-gradient(180deg, rgba(0, 215, 232, 0.08), rgba(17, 24, 33, 0.48));
}

.comparison-label {
  margin-bottom: 1rem;
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-grid ol {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-grid li {
  position: relative;
  color: var(--soft-text);
  font-weight: 700;
  padding-left: 1.35rem;
}

.comparison-grid li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.5rem;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.comparison-grid .with-system li::before {
  background: var(--cyan);
}

.objection-list article {
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
  padding: 1.25rem 0;
}

.objection-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.objection-list p,
.proof-placeholder p {
  margin: 0;
  color: var(--muted);
}

.proof-section {
  align-items: center;
}

.proof-placeholder {
  border-style: dashed;
}

.proof-placeholder strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--soft-text);
  font-family: var(--font-display);
  font-size: var(--card-title-size);
  font-weight: 600;
  letter-spacing: var(--tracking-subtle);
}

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

.service-menu {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(4.5rem, 9vw, 7.5rem);
}

.service-menu-heading {
  max-width: 860px;
}

.service-menu-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: var(--body-size);
  line-height: 1.65;
}

.service-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article,
.category-grid article {
  position: relative;
  display: grid;
  min-height: 255px;
  align-content: center;
  justify-items: start;
  overflow: visible;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 0;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.category-grid article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(8, 11, 16, 0.86));
  content: "";
  pointer-events: none;
}

.service-grid article:hover,
.category-grid article:hover,
.category-grid article:focus-within {
  z-index: 4;
  border-color: var(--line-strong);
  background: rgba(17, 24, 33, 0.58);
  transform: translateY(-2px);
}

.service-grid .featured-service,
.category-grid .featured-service {
  border-color: var(--cyan-line);
  background: linear-gradient(180deg, rgba(0, 215, 232, 0.1), rgba(17, 24, 33, 0.42));
}

.service-grid h3,
.category-grid h3 {
  font-size: var(--card-title-size);
}

.category-grid > article > h3 {
  position: absolute;
  left: clamp(1rem, 2vw, 1.35rem);
  right: clamp(1rem, 2vw, 1.35rem);
  bottom: clamp(1rem, 2vw, 1.35rem);
  z-index: 1;
  margin: 0;
}

.service-grid p,
.category-grid p {
  margin-bottom: 1.4rem;
  color: var(--muted);
}

.service-grid a,
.category-grid a {
  align-self: end;
  justify-self: start;
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
}

.service-grid a:hover,
.category-grid a:hover {
  color: var(--cyan-hover);
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  border: 0;
}

.category-grid article {
  min-height: clamp(360px, 28vw, 430px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.category-grid article:nth-child(2n) {
  transform: translateY(1.4rem);
}

.category-grid article:hover,
.category-grid article:focus-within {
  transform: translateY(-2px);
}

.category-grid article:nth-child(2n):hover,
.category-grid article:nth-child(2n):focus-within {
  transform: translateY(1.05rem);
}

.category-details {
  position: absolute;
  left: clamp(1rem, 2vw, 1.35rem);
  right: clamp(1rem, 2vw, 1.35rem);
  bottom: clamp(1rem, 2vw, 1.35rem);
  z-index: 20;
  display: grid;
  gap: 0.75rem;
  border: 1px solid rgba(0, 215, 232, 0.28);
  border-radius: 12px;
  background: #05070b;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.78), 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0;
  padding: 1rem;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.category-grid article:hover .category-details,
.category-grid article:focus-within .category-details {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.category-details > span {
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-grid li {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-text);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.42rem 0.62rem;
}

.solution-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  border-top: 1px solid var(--line);
  padding: clamp(4.8rem, 9vw, 7.8rem) 0;
}

.solution-row.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.solution-row.reverse .solution-copy {
  order: 2;
}

.solution-row.reverse .solution-visual {
  order: 1;
}

.solution-copy p {
  max-width: 610px;
}

.solution-copy ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.solution-copy li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--soft-text);
  font-weight: 700;
}

.solution-copy li::before {
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  border-radius: 99px;
  background: rgba(0, 215, 232, 0.12);
  content: "";
}

.solution-number {
  display: block;
  margin-bottom: 1.5rem;
}

.solution-visual {
  position: relative;
  min-height: clamp(330px, 34vw, 480px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    radial-gradient(circle at 70% 32%, rgba(0, 215, 232, 0.09), transparent 18rem),
    var(--surface);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.visual-window {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 10%;
  display: flex;
  gap: 0.44rem;
  border-bottom: 1px solid var(--line);
  padding: 0 0 0.85rem;
}

.visual-window span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
}

.visual-line,
.visual-button,
.visual-panel {
  position: absolute;
  left: 9%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.visual-line {
  top: 34%;
  width: 42%;
  height: 12px;
}

.visual-line.wide {
  top: 27%;
  width: 68%;
  height: 20px;
  background: rgba(255, 255, 255, 0.28);
}

.visual-button {
  top: 46%;
  width: 34%;
  height: 44px;
  border-radius: 10px;
  background: var(--cyan);
}

.visual-panel {
  right: 9%;
  left: auto;
  bottom: 10%;
  width: 40%;
  height: 42%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 11, 16, 0.68);
}

.pipeline-visual::before,
.automation-visual::before {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--cyan-line), var(--line));
  content: "";
}

.pipe-node {
  position: absolute;
  top: 50%;
  width: 76px;
  height: 76px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(8, 11, 16, 0.72);
  transform: translateY(-50%);
}

.pipe-node:nth-child(1) {
  left: 12%;
}

.pipe-node:nth-child(2) {
  left: 34%;
}

.pipe-node:nth-child(3) {
  right: 34%;
}

.pipe-node:nth-child(4) {
  right: 12%;
}

.pipe-node.active {
  border-color: var(--cyan-line);
  background: var(--cyan-soft);
}

.pipe-node.success::after {
  position: absolute;
  inset: 24px;
  border-radius: 999px;
  background: var(--success);
  content: "";
}

.message-card {
  position: absolute;
  left: 13%;
  width: 62%;
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 11, 16, 0.72);
}

.message-card:nth-child(1) {
  top: 20%;
}

.message-card:nth-child(2) {
  top: 42%;
  left: 25%;
}

.message-card:nth-child(3) {
  top: 64%;
}

.message-card::before,
.message-card::after {
  position: absolute;
  left: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.message-card::before {
  top: 1.1rem;
  width: 44%;
  height: 9px;
}

.message-card::after {
  bottom: 1.1rem;
  width: 68%;
  height: 7px;
}

.message-card.active {
  border-color: var(--cyan-line);
}

.message-card.success {
  border-color: rgba(74, 222, 128, 0.5);
}

.timeline {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  left: 2.15rem;
  top: 0.45rem;
  bottom: 0.45rem;
  width: 1px;
  background: linear-gradient(var(--cyan), var(--line-strong));
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1.5rem;
}

.timeline > li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--bg);
  font-size: 1.2rem;
}

.timeline li:first-child > span {
  border-color: var(--cyan-line);
  color: var(--cyan);
}

.why-section {
  align-items: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(17, 24, 33, 0.46);
}

.benefit-grid article {
  min-height: 150px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem;
}

.benefit-grid article:nth-child(2n) {
  border-right: 0;
}

.benefit-grid article:nth-last-child(-n + 1) {
  grid-column: 1 / -1;
  border-bottom: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 215, 232, 0.08), transparent 22rem),
    var(--bg-2);
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 4rem);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .button {
  margin-top: 1rem;
}

.audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(17, 24, 33, 0.58);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.form-toggle {
  margin-top: 1.25rem;
}

.form-panel {
  align-self: start;
}

.form-panel[hidden] {
  display: none;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field.full,
.form-status,
.submit-button {
  grid-column: 1 / -1;
}

label {
  color: var(--soft-text);
  font-size: 0.88rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 11, 16, 0.78);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  min-height: 52px;
  padding: 0.88rem 0.95rem;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--cyan-line);
  background: rgba(8, 11, 16, 0.92);
  box-shadow: 0 0 0 4px rgba(0, 215, 232, 0.08);
  outline: 0;
}

input::placeholder {
  color: #64717b;
}

.field-error {
  min-height: 1.15em;
  margin: 0;
  color: var(--error);
  font-size: 0.8rem;
  font-weight: 500;
}

.field.invalid input,
.field.invalid textarea {
  border-color: var(--error);
}

.form-status {
  min-height: 1.45rem;
  color: var(--muted);
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

.submit-button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem 2rem;
  align-items: center;
  padding: 2rem var(--pad);
}

.site-footer .brand {
  margin-bottom: 0.5rem;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: var(--dim);
}

.site-footer small {
  grid-column: 1 / -1;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 0.72rem;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero {
    grid-template-columns: minmax(1rem, 1fr) minmax(0, 640px) minmax(1rem, 1fr);
    min-height: calc(100vh - 72px);
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-bg {
    object-position: 42% center;
  }

  h1 {
    font-size: clamp(3rem, 6vw, 3.5rem);
    line-height: 1.08;
  }
}

@media (max-width: 900px) {
  .who-section,
  .offer-section,
  .compare-section,
  .objection-section,
  .proof-section,
  .timeline-section,
  .why-section,
  .form-section,
  .solution-row,
  .solution-row.reverse {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    position: static;
  }

  .solution-row.reverse .solution-copy,
  .solution-row.reverse .solution-visual {
    order: initial;
  }

  .capability-strip {
    grid-template-columns: 1fr;
  }

  .capability-strip span {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-strip span:last-child {
    border-bottom: 0;
  }

  .stage-sequence {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .stage-sequence li + li::before {
    width: 1.6rem;
  }

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

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

  .photo-panel-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 0.7rem 1rem;
  }

  .brand-logo-wrap {
    width: 118px;
    height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 68px 1rem auto;
    display: grid;
    gap: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(8, 11, 16, 0.98);
    padding: 0.8rem;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
  }

  .nav-cta {
    justify-content: center;
  }

  h1 {
    font-size: clamp(2.38rem, 10vw, 2.75rem);
    line-height: 1.08;
  }

  .hero-lede {
    font-size: clamp(1.06rem, 4.4vw, 1.13rem);
    line-height: 1.62;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.25rem);
    line-height: 1.16;
  }

  .section-kicker h2,
  .service-menu-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.25rem);
    line-height: 1.16;
  }

  .hero {
    min-height: calc(100vh - 68px);
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 11, 16, 0.32) 0%, rgba(8, 11, 16, 0.22) 34%, rgba(8, 11, 16, 0.94) 76%, rgba(8, 11, 16, 0.98) 100%),
      linear-gradient(90deg, rgba(8, 11, 16, 0.1), rgba(8, 11, 16, 0.54));
  }

  .hero-copy {
    align-self: end;
    grid-column: 2;
  }

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

  .hero-bg {
    object-position: 34% center;
  }

  .offer-list article {
    grid-template-columns: 58px 1fr;
  }

  .showcase-frame {
    min-height: 620px;
  }

  .showcase-frame::before {
    left: 50%;
    right: auto;
    top: 10%;
    bottom: 10%;
    width: 1px;
    height: auto;
  }

  .showcase-frame::after {
    display: none;
  }

  .system-node {
    left: 50%;
    right: auto;
    width: min(250px, calc(100% - 2rem));
    transform: translateX(-50%);
  }

  .node-a {
    top: 7%;
  }

  .node-b {
    top: 23%;
  }

  .node-c {
    top: 39%;
    bottom: auto;
  }

  .node-d {
    top: 55%;
    bottom: auto;
  }

  .system-core {
    top: 83%;
  }

  .solution-visual {
    min-height: 320px;
  }

  .pipe-node {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .benefit-grid,
  .audit-form {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .service-menu {
    padding-bottom: clamp(4.5rem, 9vw, 7.5rem);
  }

  .business-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .business-gallery figure,
  .business-gallery figure:hover {
    transform: none;
  }

  .what-do-grid article:nth-child(1) {
    grid-row: auto;
    min-height: clamp(250px, 65vw, 340px);
  }

  .what-do-grid article:nth-child(2) {
    transform: none;
  }

  .service-grid article,
  .category-grid article {
    min-height: auto;
  }

  .category-grid article:nth-child(2n),
  .category-grid article:nth-child(2n):hover,
  .category-grid article:nth-child(2n):focus-within {
    transform: none;
  }

  .category-grid article > img {
    height: 230px;
  }

  .category-grid > article > h3 {
    top: 165px;
    bottom: auto;
  }

  .category-details {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin: 0;
    border-width: 1px 0 0;
    border-radius: 0;
    box-shadow: none;
  }

  .benefit-grid article,
  .benefit-grid article:nth-child(2n),
  .benefit-grid article:nth-last-child(-n + 1) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

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

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 430px) {
  .brand-logo-wrap {
    width: 108px;
    height: 40px;
    padding: 0.25rem 0.48rem;
  }

  .capability-strip,
  .section,
  .solutions,
  .final-cta,
  .form-section {
    width: min(var(--max), calc(100% - 1.25rem));
  }

  .timeline li {
    grid-template-columns: 58px 1fr;
    gap: 1rem;
  }

  .timeline::before {
    left: 1.8rem;
  }

  .timeline > li > span {
    width: 58px;
    height: 58px;
  }
}
