:root {
  --speed-ink: #0f172a;
  --speed-ink-2: #111827;
  --speed-blue: #1b63ff;
  --speed-cyan: #10c7e8;
  --speed-slate: #6c7789;
  --speed-silver: #a9b4c3;
  --speed-mist: #f3f6fa;
  --speed-white: #ffffff;
  --speed-human: #ff5d62;
  --speed-line: #dce4ed;
  --speed-muted: #4d5869;
  --speed-panel: #f8fbff;
  --speed-panel-2: #eef4fb;
  --speed-glow-blue: rgba(27, 99, 255, 0.13);
  --speed-glow-cyan: rgba(16, 199, 232, 0.14);
  --speed-glow-human: rgba(255, 93, 98, 0.09);
  --font-main: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--speed-ink);
  background:
    radial-gradient(circle at 9% 18%, var(--speed-glow-blue), transparent 26%),
    radial-gradient(circle at 88% 36%, var(--speed-glow-cyan), transparent 29%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 42%, #f6f8fb 100%);
  font-family: var(--font-main);
  letter-spacing: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(27, 99, 255, 0.18);
  border-radius: 8px;
  color: var(--speed-blue);
  background: #eef4ff;
}

.icon-chip svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--speed-white);
  background:
    linear-gradient(90deg, rgba(11, 18, 34, 0.94), rgba(15, 27, 48, 0.9)),
    rgba(10, 16, 30, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--speed-white);
}

.header-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font-weight: 780;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta {
  min-height: 38px;
  padding: 0 16px;
  color: var(--speed-white);
  background: linear-gradient(135deg, var(--speed-blue), #0a7cff);
  box-shadow: 0 12px 28px rgba(27, 99, 255, 0.28);
  font-size: 13px;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  font-size: 15px;
}

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

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

.button-secondary {
  color: var(--speed-white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--speed-white);
  background:
    radial-gradient(circle at 72% 28%, rgba(16, 199, 232, 0.18), transparent 30%),
    var(--speed-ink);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.58;
}

.hero-scrim {
  background:
    radial-gradient(circle at 26% 72%, rgba(27, 99, 255, 0.18), transparent 34%),
    radial-gradient(circle at 80% 24%, rgba(16, 199, 232, 0.14), transparent 32%),
    linear-gradient(90deg, rgba(10, 16, 30, 0.99) 0%, rgba(10, 16, 30, 0.93) 34%, rgba(10, 16, 30, 0.54) 68%, rgba(10, 16, 30, 0.8) 100%),
    linear-gradient(180deg, rgba(10, 16, 30, 0.62) 0%, rgba(10, 16, 30, 0.16) 42%, rgba(10, 16, 30, 0.96) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(300px, 420px);
  align-items: end;
  justify-content: space-between;
  gap: 58px;
  padding: 168px 0 82px;
}

.hero-layout > *,
.split-grid > *,
.section-grid > *,
.service-overview-layout > *,
.why-layout > *,
.resources-layout > *,
.contact-layout > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--speed-cyan);
  font-size: 13px;
  font-weight: 840;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 24px;
  padding: 0 14px;
  border: 1px solid rgba(16, 199, 232, 0.34);
  border-left: 3px solid var(--speed-cyan);
  border-radius: 8px;
  color: var(--speed-cyan);
  background:
    linear-gradient(90deg, rgba(16, 199, 232, 0.14), rgba(27, 99, 255, 0.05)),
    rgba(16, 199, 232, 0.08);
  box-shadow: 0 18px 36px rgba(16, 199, 232, 0.08);
  font-size: 18px;
  font-weight: 860;
  text-transform: none;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--speed-white);
  font-size: clamp(52px, 5vw, 68px);
  font-weight: 860;
  line-height: 1.02;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

h1 span {
  display: block;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 21px;
  line-height: 1.58;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(590px, 100%);
  margin-bottom: 34px;
}

.hero-signals span {
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 15px;
  font-weight: 760;
}

.hero-signals strong {
  color: var(--speed-cyan);
  font-size: 12px;
  line-height: 1;
}

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

.hero-panel {
  display: grid;
  gap: 14px;
  align-self: end;
}

.engine-board {
  border: 1px solid rgba(16, 199, 232, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(27, 99, 255, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(17, 31, 52, 0.78)),
    rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(18px);
}

.engine-board {
  display: grid;
  gap: 18px;
  padding: 22px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.engine-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
}

.engine-head img {
  width: 64px;
  height: 64px;
}

.engine-head p,
.engine-card h3 {
  margin-bottom: 7px;
  color: var(--speed-white);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.25;
}

.engine-head p {
  font-size: 22px;
}

.engine-head span,
.engine-card p,
.engine-path span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

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

.engine-card {
  min-height: 164px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
}

.engine-card .icon-chip {
  margin-bottom: 26px;
  border-color: rgba(16, 199, 232, 0.2);
  color: var(--speed-cyan);
  background: rgba(16, 199, 232, 0.08);
}

.engine-card-accent .icon-chip {
  border-color: rgba(255, 93, 98, 0.22);
  color: var(--speed-human);
  background: rgba(255, 93, 98, 0.09);
}

.engine-path {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.engine-path i {
  height: 2px;
  background: linear-gradient(90deg, var(--speed-blue), var(--speed-cyan), var(--speed-human));
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 46px;
}

h2 {
  margin-bottom: 22px;
  color: var(--speed-ink);
  font-size: clamp(36px, 3.4vw, 46px);
  font-weight: 850;
  line-height: 1.12;
}

.section-intro h2 span,
#resources-title span {
  color: var(--speed-blue);
  background: linear-gradient(90deg, var(--speed-blue), var(--speed-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  margin-bottom: 12px;
  color: var(--speed-ink);
  font-size: 22px;
  font-weight: 820;
  line-height: 1.24;
}

p {
  color: var(--speed-muted);
}

.split-grid,
.section-grid,
.service-overview-layout,
.why-layout,
.resources-layout,
.contact-layout {
  display: grid;
  gap: 46px;
}

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

.feature-card,
.service-card,
.process-timeline article,
.why-list article,
.contact-form {
  border: 1px solid var(--speed-line);
  border-radius: 8px;
  background: var(--speed-white);
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -84px;
  top: -84px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(27, 99, 255, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 199, 232, 0.12), transparent 58%);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.diagnostic-label {
  margin-bottom: 12px;
  color: var(--speed-cyan);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.feature-card p,
.service-card p,
.process-timeline p,
.why-list p,
.lead-text,
.section-lead,
.section-intro p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--speed-muted);
  font-size: 16px;
  line-height: 1.68;
}

.section-lead {
  max-width: 610px;
  margin-top: -6px;
}

.feature-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-card li {
  position: relative;
  min-height: 42px;
  padding: 10px 12px 10px 28px;
  border: 1px solid var(--speed-line);
  border-radius: 8px;
  color: #334155;
  background: #f8fafc;
  font-size: 15px;
  font-weight: 740;
  line-height: 1.45;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--speed-human);
  transform: translateY(-50%);
}

.services-overview {
  position: relative;
  overflow: hidden;
  color: var(--speed-white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 77% 50%, rgba(16, 199, 232, 0.16), transparent 34%),
    radial-gradient(circle at 50% 30%, rgba(27, 99, 255, 0.12), transparent 32%),
    var(--speed-ink);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.services-overview h2,
.services-overview .lead-text,
.service-architecture p {
  color: var(--speed-white);
}

.services-overview h2 span {
  display: block;
}

.service-architecture {
  display: grid;
  gap: 20px;
  align-self: end;
  width: min(100%, 620px);
}

.service-architecture p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 720;
  line-height: 1.55;
}

.architecture-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(96px, 0.74fr) minmax(34px, 0.22fr) minmax(210px, 1.28fr) minmax(34px, 0.22fr) minmax(104px, 0.76fr);
  align-items: center;
  gap: 12px;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(16, 199, 232, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 90px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.architecture-flow::before {
  content: "";
  position: absolute;
  inset: 22px 28px;
  border: 1px solid rgba(16, 199, 232, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.architecture-flow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 99, 255, 0.18), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.architecture-flow .flow-node,
.flow-stack span {
  position: relative;
  z-index: 1;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 16px;
  font-weight: 820;
  text-align: center;
}

.flow-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.flow-stack::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.flow-stack span {
  justify-content: flex-start;
  gap: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.flow-stack small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: var(--speed-white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 860;
}

.flow-stack span:first-child {
  color: var(--speed-white);
  background: rgba(16, 199, 232, 0.14);
  border: 1px solid rgba(16, 199, 232, 0.22);
}

.flow-stack span:last-child {
  color: var(--speed-white);
  background: rgba(255, 93, 98, 0.13);
  border: 1px solid rgba(255, 93, 98, 0.2);
}

.architecture-flow .flow-end {
  color: var(--speed-white);
  background: linear-gradient(135deg, rgba(27, 99, 255, 0.78), rgba(16, 199, 232, 0.58));
}

.architecture-flow .flow-start {
  background: rgba(255, 255, 255, 0.13);
}

.architecture-flow .flow-rail {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(16, 199, 232, 0.2), var(--speed-cyan));
}

.architecture-flow .flow-rail::before,
.architecture-flow .flow-rail::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--speed-cyan);
  transform: translateY(-50%);
}

.architecture-flow .flow-rail::before {
  left: 0;
}

.architecture-flow .flow-rail::after {
  right: 0;
}

.service-overview-layout,
.section-grid,
.why-layout,
.resources-layout,
.contact-layout {
  grid-template-columns: minmax(280px, 390px) 1fr;
  align-items: start;
}

.enterprise-section,
.marketing-section,
.pain-section,
.resources-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 18%, rgba(27, 99, 255, 0.09), transparent 28%),
    radial-gradient(circle at 84% 32%, rgba(16, 199, 232, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(27, 99, 255, 0.043) 1px, transparent 1px),
    linear-gradient(180deg, rgba(27, 99, 255, 0.036) 1px, transparent 1px),
    linear-gradient(180deg, var(--speed-panel) 0%, var(--speed-panel-2) 100%);
  background-size: auto, auto, 46px 46px, 46px 46px, auto;
}

.enterprise-section::before,
.marketing-section::before,
.resources-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.58) 49%, transparent 56%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.72), transparent 34%);
  opacity: 0.4;
}

.enterprise-section > .container,
.marketing-section > .container,
.resources-section > .container {
  position: relative;
  z-index: 1;
}

.section-intro {
  position: sticky;
  top: 112px;
}

.enterprise-section {
  padding-bottom: 58px;
}

.marketing-section {
  padding-top: 58px;
}

.pillar-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.pillar-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(27, 99, 255, 0.22);
  border-radius: 8px;
  color: var(--speed-blue);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(235, 244, 255, 0.9)),
    #eef4ff;
  box-shadow: 0 10px 24px rgba(27, 99, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
}

.pillar-strip-market span {
  border-color: rgba(16, 199, 232, 0.22);
  color: #0896b8;
  background: #ebfbff;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 26px 28px;
  border-color: rgba(16, 199, 232, 0.23);
  color: var(--speed-white);
  background:
    radial-gradient(circle at 90% 88%, rgba(16, 199, 232, 0.21), transparent 36%),
    radial-gradient(circle at 0% 0%, rgba(27, 99, 255, 0.12), transparent 32%),
    linear-gradient(135deg, #0f172a 0%, #16263d 58%, #123449 100%),
    var(--speed-ink);
  box-shadow:
    0 22px 56px rgba(15, 23, 42, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--speed-blue), var(--speed-cyan), rgba(255, 93, 98, 0.95));
  box-shadow: 0 0 22px rgba(16, 199, 232, 0.46);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 199, 232, 0.22), transparent 62%);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  color: var(--speed-white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card .icon-chip {
  border-color: rgba(16, 199, 232, 0.34);
  color: var(--speed-cyan);
  background:
    linear-gradient(145deg, rgba(16, 199, 232, 0.18), rgba(27, 99, 255, 0.08)),
    rgba(16, 199, 232, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(16, 199, 232, 0.08);
}

.marketing-section .service-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  align-content: center;
  column-gap: 18px;
  min-height: 116px;
  padding: 24px 28px;
}

.marketing-section .service-card::after {
  width: 160px;
  height: 160px;
  right: -82px;
  bottom: -98px;
}

.marketing-section .service-card .card-top {
  margin-bottom: 0;
}

.marketing-section .service-card .icon-chip {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}

.marketing-section .service-card h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.enterprise-section .service-card {
  display: grid;
  align-content: start;
}

.enterprise-section .service-card .card-top {
  margin-bottom: 26px;
}

.enterprise-section .service-card h3 {
  margin-bottom: 10px;
}

.process-section,
.why-section,
.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--speed-white);
  background:
    radial-gradient(circle at 18% 18%, rgba(27, 99, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(16, 199, 232, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    var(--speed-ink);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
}

.process-section::before,
.why-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 38%);
}

.process-section > .container,
.why-section > .container,
.contact-section > .container {
  position: relative;
  z-index: 1;
}

.process-section h2,
.process-section h3,
.why-section h2,
.why-section h3,
.contact-section h2 {
  color: var(--speed-white);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(135px, 1fr));
  gap: 14px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 55px;
  height: 2px;
  background: linear-gradient(90deg, var(--speed-blue), var(--speed-cyan), var(--speed-human));
  opacity: 0.68;
}

.process-timeline article,
.why-list article {
  position: relative;
  padding: 24px;
  border-color: rgba(16, 199, 232, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border: 1px solid rgba(16, 199, 232, 0.4);
  border-radius: 50%;
  color: var(--speed-white);
  background: var(--speed-ink);
  font-size: 12px;
  font-weight: 850;
}

.process-timeline h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.process-timeline p {
  font-size: 14px;
  line-height: 1.52;
}

.process-timeline p,
.why-list p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.why-list {
  display: grid;
  gap: 12px;
}

.why-list article {
  display: grid;
  grid-template-columns: 4px 1fr;
  column-gap: 16px;
}

.why-list article::before {
  content: "";
  grid-row: 1 / span 2;
  width: 4px;
  min-height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--speed-cyan), var(--speed-blue));
}

.why-list article h3,
.why-list article p {
  grid-column: 2;
}

.network-visual {
  position: relative;
  width: min(100%, 360px);
  height: 250px;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 46px 46px;
  overflow: hidden;
}

.network-visual::before,
.network-visual::after {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(16, 199, 232, 0.28);
  border-radius: 50%;
}

.network-visual::after {
  inset: 78px;
  border-color: rgba(27, 99, 255, 0.3);
}

.node {
  position: absolute;
  z-index: 1;
  min-width: 76px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(15, 23, 42, 0.88);
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.node-cn {
  left: 32px;
  top: 44px;
}

.node-br {
  right: 36px;
  top: 46px;
}

.node-tax {
  left: 36px;
  bottom: 42px;
}

.node-creator {
  right: 24px;
  bottom: 48px;
}

.node-commerce {
  left: 50%;
  top: 50%;
  color: var(--speed-white);
  background: var(--speed-blue);
  transform: translate(-50%, -50%);
}

.resources-panel {
  display: grid;
  gap: 18px;
}

.resource-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(27, 99, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(16, 199, 232, 0.2), transparent 28%),
    radial-gradient(circle at 18% 12%, rgba(27, 99, 255, 0.11), transparent 32%),
    linear-gradient(90deg, rgba(27, 99, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(27, 99, 255, 0.065) 1px, transparent 1px),
    rgba(255, 255, 255, 0.9);
  background-size: auto, auto, 38px 38px, 38px 38px, auto;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.resource-map::before,
.resource-map::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 199, 232, 0.58), transparent);
}

.resource-map::after {
  left: 50%;
  right: auto;
  top: 12%;
  bottom: 12%;
  width: 2px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(27, 99, 255, 0.46), transparent);
}

.map-center {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  color: var(--speed-white);
  background:
    radial-gradient(circle at 72% 22%, rgba(16, 199, 232, 0.22), transparent 36%),
    var(--speed-ink);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.24), 0 0 0 10px rgba(27, 99, 255, 0.045);
  font-size: 14px;
  font-weight: 820;
  transform: translate(-50%, -50%);
}

.resource-node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(27, 99, 255, 0.16);
  border-radius: 8px;
  color: var(--speed-ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.86)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(10px);
}

.resource-node .icon-chip {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.resource-node h3 {
  margin: 0;
  color: var(--speed-ink);
  font-size: 18px;
  line-height: 1.25;
}

.resource-node-tax {
  align-self: start;
}

.resource-node-creator {
  align-self: start;
}

.resource-node-channel {
  align-self: end;
}

.resource-node-payment {
  align-self: end;
}

.contact-layout {
  align-items: center;
}

.diagnosis-card {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.diagnosis-card h3 {
  margin-bottom: 0;
  color: var(--speed-white);
  font-size: 18px;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-color: rgba(16, 199, 232, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 199, 232, 0.08), transparent 32%),
    var(--speed-white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

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

.contact-form span {
  color: #344154;
  font-size: 13px;
  font-weight: 760;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--speed-line);
  border-radius: 8px;
  color: var(--speed-ink);
  background: #f8fafc;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--speed-blue);
  background: var(--speed-white);
}

.contact-method-row {
  display: grid;
  grid-template-columns: minmax(96px, 128px) minmax(0, 1fr);
  gap: 10px;
}

.contact-method-row select,
.contact-method-row input {
  min-width: 0;
}

.contact-form button {
  min-height: 50px;
  margin-top: 6px;
  color: var(--speed-white);
  background: linear-gradient(135deg, var(--speed-blue), #0a7cff);
  box-shadow: 0 14px 32px rgba(27, 99, 255, 0.24);
  font-size: 15px;
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.72;
  box-shadow: none;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.4;
}

.form-status.is-pending {
  color: #2563eb;
}

.form-status.is-success {
  color: #07866f;
}

.form-status.is-error {
  color: #d43f4a;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.62);
  background: #09101f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-layout img {
  width: 136px;
}

.footer-layout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
    padding: 0 24px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero-layout,
  .split-grid,
  .service-overview-layout,
  .section-grid,
  .why-layout,
  .resources-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

  .hero-panel {
    max-width: 480px;
  }

  h1 {
    font-size: 54px;
  }

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

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 32px);
    max-width: 1180px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-link,
  .header-cta {
    flex: 0 0 auto;
  }

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

  .desktop-nav {
    display: none;
  }

  .header-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(10, 16, 30, 0.98) 0%, rgba(10, 16, 30, 0.9) 58%, rgba(10, 16, 30, 0.82) 100%),
      linear-gradient(180deg, rgba(10, 16, 30, 0.62) 0%, rgba(10, 16, 30, 0.16) 42%, rgba(10, 16, 30, 0.96) 100%);
  }

  .hero-layout {
    padding: 108px 0 48px;
    gap: 34px;
  }

  .hero-copy .eyebrow {
    min-height: 38px;
    margin-bottom: 20px;
    font-size: 15px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  h2 {
    font-size: 32px;
    line-height: 1.14;
  }

  h3 {
    font-size: 20px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-signals {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-signals span {
    grid-template-columns: 34px 1fr;
    align-items: center;
    min-height: 50px;
    padding: 10px 12px;
  }

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

  .button {
    width: 100%;
  }

  .engine-head {
    grid-template-columns: 58px 1fr;
  }

  .engine-head img {
    width: 58px;
    height: 58px;
  }

  .engine-columns,
  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .architecture-flow {
    min-height: auto;
    padding: 22px;
    gap: 14px;
  }

  .architecture-flow::before,
  .architecture-flow::after,
  .flow-stack::before {
    display: none;
  }

  .flow-stack,
  .architecture-flow .flow-node,
  .flow-stack span {
    width: 100%;
  }

  .architecture-flow .flow-rail {
    width: 2px;
    height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(16, 199, 232, 0.2), var(--speed-cyan));
  }

  .architecture-flow .flow-rail::before,
  .architecture-flow .flow-rail::after {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }

  .architecture-flow .flow-rail::before {
    top: 0;
  }

  .architecture-flow .flow-rail::after {
    top: auto;
    bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .enterprise-section {
    padding-bottom: 42px;
  }

  .marketing-section {
    padding-top: 42px;
  }

  .feature-card,
  .service-card,
  .process-timeline article,
  .why-list article,
  .contact-form {
    padding: 22px;
  }

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

  .service-grid {
    gap: 14px;
  }

  .feature-card ul {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .marketing-section .service-card {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 96px;
    padding: 20px;
    column-gap: 14px;
  }

  .marketing-section .service-card h3 {
    font-size: 19px;
  }

  .network-visual {
    height: 220px;
  }

  .resource-map {
    gap: 12px;
    min-height: 330px;
    padding: 16px;
  }

  .resource-node {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    min-height: 82px;
    padding: 14px;
  }

  .resource-node .icon-chip {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .resource-node h3 {
    font-size: 17px;
    white-space: nowrap;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}
