:root {
  color-scheme: dark;
  --deep: #030b12;
  --ink: #06131c;
  --panel: rgba(10, 30, 44, 0.68);
  --panel-strong: rgba(7, 21, 32, 0.86);
  --text: #f5fbff;
  --muted: #a8bfcc;
  --soft: #edf5f7;
  --soft-text: #172b36;
  --line: rgba(151, 220, 255, 0.18);
  --cyan: #1fc8ff;
  --blue: #367cff;
  --amber: #ffb22e;
  --orange: #ff7a2f;
  --green: #42d49b;
  --violet: #8a7cff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--deep);
  color: var(--text);
}

body::selection {
  background: rgba(255, 178, 46, 0.35);
}

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

img,
svg,
canvas {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: #030b12;
  transition: opacity 500ms var(--ease), visibility 500ms var(--ease);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader span {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(31, 200, 255, 0.26);
  border-top-color: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 44px rgba(31, 200, 255, 0.28);
  animation: loader-spin 900ms linear infinite;
}

.ambient-bg {
  position: fixed;
  z-index: -20;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(31, 200, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #020911 0%, #041725 42%, #061018 100%);
}

.aurora,
.grid-glow {
  position: absolute;
  pointer-events: none;
}

.aurora {
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  filter: blur(76px);
  opacity: 0.45;
  transform: translate3d(0, 0, 0);
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.aurora-one {
  top: -18%;
  left: -14%;
  background: rgba(31, 200, 255, 0.36);
}

.aurora-two {
  right: -16%;
  top: 12%;
  background: rgba(255, 122, 47, 0.24);
  animation-duration: 22s;
}

.aurora-three {
  left: 18%;
  bottom: -28%;
  background: rgba(66, 212, 155, 0.18);
  animation-duration: 26s;
}

.grid-glow {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 10%, black 0%, transparent 68%);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(3, 11, 18, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(3, 11, 18, 0.86);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand-logo {
  width: auto;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 178, 46, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-nav a {
  min-height: 38px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #dcecf3;
  font-size: 14px;
  font-weight: 760;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.header-action {
  justify-self: end;
  padding: 12px 16px;
  border: 1px solid rgba(255, 178, 46, 0.36);
  border-radius: 999px;
  background: rgba(255, 178, 46, 0.08);
  color: #ffe5ad;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 0 34px rgba(255, 178, 46, 0.08);
}

.hero {
  position: relative;
  min-height: 940px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 72px) 44px;
  isolation: isolate;
}

.hero-image,
.network-canvas,
.hero-overlay,
.hero-depth {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -6;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.08) brightness(0.94);
  transform: scale(1.04);
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.network-canvas {
  z-index: -2;
  opacity: 0.82;
}

.hero-depth {
  z-index: -3;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(31, 200, 255, 0.18) 43%, transparent 44% 100%),
    linear-gradient(73deg, transparent 0 58%, rgba(255, 178, 46, 0.12) 59%, transparent 60% 100%);
  mix-blend-mode: screen;
  opacity: 0.4;
  animation: beam-slide 14s ease-in-out infinite alternate;
}

.hero-depth-two {
  opacity: 0.24;
  animation-duration: 20s;
  animation-direction: alternate-reverse;
}

.hero-overlay {
  z-index: -4;
  background:
    radial-gradient(circle at 78% 34%, rgba(31, 200, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(3, 11, 18, 0.98) 0%, rgba(3, 11, 18, 0.78) 42%, rgba(3, 11, 18, 0.32) 72%, rgba(3, 11, 18, 0.72) 100%),
    linear-gradient(0deg, rgba(3, 11, 18, 1) 0%, rgba(3, 11, 18, 0.28) 26%, rgba(3, 11, 18, 0.2) 100%);
}

.hero-content {
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7.4vw, 102px);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  text-wrap: balance;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 34px;
  color: #c7dce8;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.66;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 850;
  transform: translate3d(0, 0, 0);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease);
}

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

.button:hover::before {
  transform: translateX(120%);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.button-primary {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #101820;
  box-shadow: 0 16px 46px rgba(255, 122, 47, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(6, 20, 30, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-console {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  justify-self: end;
  padding: 18px;
}

.console-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #dff4fb;
  font-size: 13px;
  font-weight: 820;
}

.console-top strong {
  margin-left: auto;
  color: var(--green);
}

.status-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px rgba(66, 212, 155, 0.9);
  animation: pulse-light 1.8s ease-in-out infinite;
}

.console-graph {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  height: 116px;
  align-items: end;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.16);
}

.console-graph span {
  min-height: 18px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--cyan), rgba(54, 124, 255, 0.22));
  box-shadow: 0 0 24px rgba(31, 200, 255, 0.32);
  animation: graph-rise 2.4s ease-in-out infinite alternate;
}

.console-graph span:nth-child(2) { animation-delay: -0.45s; }
.console-graph span:nth-child(3) { animation-delay: -1.1s; }
.console-graph span:nth-child(4) { animation-delay: -0.75s; }
.console-graph span:nth-child(5) { animation-delay: -1.5s; }
.console-graph span:nth-child(6) { animation-delay: -0.25s; }

.hero-console dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hero-console dl div {
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.hero-console dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-console dd {
  margin: 0;
  color: #fff;
  font-weight: 780;
}

.signal-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 26px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 22, 32, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.signal-strip div {
  min-height: 106px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip dt {
  color: var(--cyan);
  font-size: 26px;
  font-weight: 900;
}

.signal-strip dd {
  margin: 8px 0 0;
  color: #dbeef6;
  font-weight: 760;
}

.intro-band {
  position: relative;
  background: rgba(5, 23, 34, 0.92);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.intro-grid p {
  margin: 0;
  color: #d5e8ef;
  font-size: 18px;
  line-height: 1.55;
}

.intro-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.intro-metrics span {
  padding: 10px 12px;
  border: 1px solid rgba(31, 200, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(31, 200, 255, 0.08);
  color: #dff8ff;
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), border-color 220ms ease;
}

.intro-metrics span:hover {
  border-color: rgba(255, 178, 46, 0.48);
  transform: translateY(-2px);
}

.section {
  padding: 104px 0;
}

.section-light {
  position: relative;
  overflow: hidden;
  background: var(--soft);
  color: var(--soft-text);
}

.section-light::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 8%, rgba(31, 200, 255, 0.12), transparent 25%),
    radial-gradient(circle at 82% 24%, rgba(255, 178, 46, 0.16), transparent 25%);
  pointer-events: none;
}

.section-heading {
  position: relative;
  max-width: 780px;
  margin-bottom: 44px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.split-panel h2,
.contact-copy h2 {
  margin-bottom: 16px;
  color: inherit;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-panel p,
.contact-copy p {
  color: #516872;
  font-size: 18px;
  line-height: 1.65;
}

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

.service-card,
.benefits article,
.stack-lane {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card {
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(13, 35, 49, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  color: #22323d;
  box-shadow: 0 18px 46px rgba(13, 35, 49, 0.1);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms ease;
}

.service-card::before,
.benefits article::before,
.stack-lane::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(31, 200, 255, 0.22), transparent 32%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.service-card:hover,
.benefits article:hover,
.stack-lane:hover {
  box-shadow: 0 26px 70px rgba(13, 35, 49, 0.18);
}

.service-card:hover::before,
.benefits article:hover::before,
.stack-lane:hover::before {
  opacity: 1;
}

.service-card.featured {
  background: linear-gradient(145deg, #0c2738, #123f56);
  color: var(--text);
}

.service-card.dark {
  background: #092031;
  color: var(--text);
}

.service-card.warm {
  background: linear-gradient(145deg, #ff8a31, #ffbd42);
  color: #151d21;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(54, 124, 255, 0.1);
  color: var(--blue);
  transition: transform 280ms var(--ease);
}

.service-card:hover .service-icon {
  transform: translateZ(24px) rotate(-4deg) scale(1.05);
}

.featured .service-icon,
.dark .service-icon {
  background: rgba(31, 200, 255, 0.12);
  color: var(--cyan);
}

.warm .service-icon {
  background: rgba(18, 26, 32, 0.1);
  color: #102533;
}

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

.service-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: currentColor;
  line-height: 1.6;
  opacity: 0.82;
}

.platform-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 200, 255, 0.16), transparent 30%),
    radial-gradient(circle at 86% 56%, rgba(255, 178, 46, 0.12), transparent 32%),
    #04121c;
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  gap: 58px;
  align-items: center;
}

.platform-section .section-heading p:not(.eyebrow) {
  color: #abc3cf;
}

.platform-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.platform-map::before {
  position: absolute;
  inset: 36px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(31, 200, 255, 0.18), transparent 34%),
    conic-gradient(from 90deg, rgba(31, 200, 255, 0), rgba(31, 200, 255, 0.34), rgba(255, 178, 46, 0.24), rgba(31, 200, 255, 0));
  filter: blur(10px);
  opacity: 0.42;
  animation: rotate-slow 18s linear infinite;
}

.platform-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 8px;
  width: 210px;
  min-height: 150px;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(4, 18, 28, 0.82);
  box-shadow: 0 0 80px rgba(31, 200, 255, 0.2);
  transform: translate(-50%, -50%);
  text-align: center;
}

.platform-core strong {
  font-size: 20px;
}

.platform-core small {
  color: var(--muted);
  font-weight: 760;
}

.orbit {
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(151, 220, 255, 0.16);
  border-radius: 50%;
  animation: rotate-slow 24s linear infinite;
}

.orbit-two {
  inset: 128px;
  animation-duration: 18s;
  animation-direction: reverse;
}

.platform-node {
  position: absolute;
  z-index: 4;
  min-width: 118px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eaf8ff;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  animation: float-soft 5s ease-in-out infinite;
}

.node-github { top: 12%; left: 14%; }
.node-cloudflare { top: 14%; right: 10%; animation-delay: -0.9s; }
.node-m365 { top: 44%; left: 4%; animation-delay: -1.6s; }
.node-ai { top: 46%; right: 3%; animation-delay: -2.3s; }
.node-copilot { bottom: 13%; left: 13%; animation-delay: -1.1s; }
.node-entra { bottom: 16%; right: 12%; animation-delay: -2.7s; }
.node-workers { top: 30%; left: 38%; animation-delay: -3.2s; }
.node-automate { bottom: 28%; right: 34%; animation-delay: -1.9s; }

.stack-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stack-lane {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.stack-lane span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--cyan);
  font-weight: 900;
}

.stack-lane h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.stack-lane p {
  margin: 0;
  color: #a9bfcc;
  line-height: 1.6;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(31, 200, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(255, 178, 46, 0.16), transparent 30%),
    #051722;
}

.dark-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
  opacity: 0.34;
}

.approach-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 60px;
  align-items: center;
}

.dark-section .section-heading p:not(.eyebrow) {
  color: #a9bfcc;
}

.workflow {
  display: grid;
  gap: 16px;
}

.workflow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: transform 260ms var(--ease), border-color 260ms ease;
}

.workflow article:hover {
  border-color: rgba(31, 200, 255, 0.34);
  transform: translateX(8px);
}

.workflow span {
  grid-row: span 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(31, 200, 255, 0.12);
  color: var(--cyan);
  font-weight: 900;
}

.workflow h3 {
  margin: 0;
  font-size: 24px;
}

.workflow p {
  margin: 0;
  color: #abc3cf;
  line-height: 1.55;
}

.split-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

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

.benefits article {
  min-height: 176px;
  padding: 24px;
  border: 1px solid rgba(13, 35, 49, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(13, 35, 49, 0.08);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.benefits h3 {
  margin-bottom: 10px;
  color: #132936;
  font-size: 20px;
}

.benefits p {
  margin: 0;
  color: #5d717b;
  line-height: 1.6;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    linear-gradient(120deg, rgba(3, 16, 24, 0.98), rgba(8, 42, 58, 0.9)),
    url("assets/glow-network-hero.png") center / cover;
}

.contact-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 520px);
  gap: 56px;
  align-items: start;
}

.contact-copy {
  padding-top: 18px;
}

.contact-copy p {
  color: #b8ccd6;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #dff2f8;
  font-size: 14px;
  font-weight: 850;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 16, 24, 0.62);
  color: var(--text);
  outline: none;
  padding: 14px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(31, 200, 255, 0.72);
  background: rgba(3, 16, 24, 0.78);
  box-shadow: 0 0 0 4px rgba(31, 200, 255, 0.12);
}

.contact-form .button {
  width: fit-content;
  margin-top: 4px;
}

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

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

.footer-grid p {
  margin: 0;
  color: #8ba4b2;
  font-size: 14px;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(3, 16, 24, 0.98), rgba(8, 42, 58, 0.86)),
    url("assets/glow-network-hero.png") center / cover;
}

.thanks-shell {
  width: min(760px, calc(100% - 40px));
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 34px;
  margin: 0 auto;
  padding: 48px 0;
}

.thanks-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(3, 16, 24, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.thanks-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 7vw, 70px);
}

.thanks-panel p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: #c5dae5;
  font-size: 18px;
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

.tilt-card {
  will-change: transform;
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

@keyframes aurora-drift {
  from { transform: translate3d(-2%, 0, 0) scale(1); }
  to { transform: translate3d(5%, 4%, 0) scale(1.08); }
}

@keyframes hero-breathe {
  from { transform: scale(1.03); }
  to { transform: scale(1.08) translate3d(-1.5%, 0.5%, 0); }
}

@keyframes beam-slide {
  from { transform: translate3d(-4%, -2%, 0); }
  to { transform: translate3d(4%, 2%, 0); }
}

@keyframes pulse-light {
  0%, 100% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes graph-rise {
  0% { height: 22%; }
  50% { height: 82%; }
  100% { height: 48%; }
}

@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .platform-grid,
  .approach-grid,
  .split-panel,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 980px;
    align-items: end;
  }

  .hero-console {
    justify-self: start;
  }

  .intro-grid,
  .signal-strip,
  .stack-lanes {
    grid-template-columns: 1fr;
  }

  .intro-metrics {
    justify-content: flex-start;
  }

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

  .platform-map {
    min-height: 520px;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

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

  .brand-logo {
    height: 44px;
    max-width: 138px;
  }

  .header-action {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 1040px;
    padding: 118px 14px 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 11, 18, 0.96), rgba(3, 11, 18, 0.64)),
      linear-gradient(0deg, rgba(3, 11, 18, 1) 0%, rgba(3, 11, 18, 0.24) 42%);
  }

  h1 {
    font-size: 48px;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .split-panel p,
  .contact-copy p {
    font-size: 16px;
  }

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

  .hero-console {
    padding: 14px;
  }

  .section,
  .platform-section,
  .contact-section {
    padding: 76px 0;
  }

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

  .service-card,
  .benefits article {
    min-height: auto;
  }

  .platform-grid {
    gap: 36px;
  }

  .platform-map {
    min-height: 560px;
  }

  .platform-node {
    min-width: auto;
    padding: 10px 11px;
    font-size: 11px;
  }

  .node-github { top: 10%; left: 5%; }
  .node-cloudflare { top: 12%; right: 4%; }
  .node-m365 { top: 42%; left: 2%; }
  .node-ai { top: 44%; right: 2%; }
  .node-copilot { bottom: 13%; left: 5%; }
  .node-entra { bottom: 14%; right: 5%; }
  .node-workers { top: 27%; left: 34%; }
  .node-automate { bottom: 28%; right: 22%; }

  .workflow article {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .network-canvas,
  .contact-canvas,
  .page-loader {
    display: none;
  }

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