:root {
  --ink: #02050b;
  --ink-2: #050b15;
  --panel: #07111f;
  --panel-2: #09182a;
  --blue: #0868ff;
  --blue-bright: #1594ff;
  --cyan: #38c7ff;
  --white: #f7fbff;
  --muted: #9eb0c3;
  --line: rgba(42, 132, 255, 0.27);
  --line-strong: rgba(40, 145, 255, 0.62);
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 84px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(8, 104, 255, 0.08), transparent 24rem),
    var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: #fff;
  background: var(--blue);
}

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

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

.ui-icon {
  display: block;
  width: 1em;
  height: 1em;
  overflow: visible;
  fill: none;
  stroke: currentColor;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.electric {
  color: var(--blue);
  text-shadow: 0 0 32px rgba(8, 104, 255, 0.3);
}

.offer-bar {
  position: relative;
  z-index: 80;
  min-height: 38px;
  border-bottom: 1px solid rgba(38, 134, 255, 0.22);
  background: #030914;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  gap: 11px;
}

.offer-bar p {
  margin: 0;
  color: #c5d3df;
}

.offer-bar p strong,
.offer-bar p b {
  color: #fff;
}

.offer-bar p b {
  margin-left: 3px;
  color: var(--blue-bright);
  letter-spacing: 0.12em;
}

.offer-bar a {
  margin-left: 16px;
  color: var(--blue-bright);
  font-weight: 800;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 0 rgba(21, 148, 255, 0.55);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(21, 148, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 148, 255, 0);
  }
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(34, 118, 235, 0.16);
  background: rgba(2, 7, 18, 0.76);
  backdrop-filter: blur(18px);
  transition:
    background 250ms ease,
    box-shadow 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 7, 18, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand-crop {
  position: relative;
  display: block;
  width: 255px;
  height: 56px;
  overflow: hidden;
}

.brand-crop img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 278px;
  max-width: none;
  transform: translate(-50%, -50%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 31px 0;
  color: #bdc8d3;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible {
  color: #fff;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid var(--blue);
  color: #fff;
  background: linear-gradient(135deg, rgba(8, 104, 255, 0.22), rgba(8, 104, 255, 0.05));
  box-shadow:
    inset 0 0 20px rgba(8, 104, 255, 0.08),
    0 0 0 rgba(8, 104, 255, 0);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue);
  box-shadow: 0 0 28px rgba(8, 104, 255, 0.4);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(8, 104, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 122px);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(23, 108, 226, 0.28);
  background: #020711;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #02060e 0%, rgba(2, 6, 14, 0.99) 18%, rgba(2, 6, 14, 0.8) 40%, rgba(2, 6, 14, 0.1) 73%, rgba(2, 6, 14, 0.18) 100%),
    linear-gradient(0deg, #020711 0%, transparent 33%);
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.95;
  filter: saturate(1.05) contrast(1.04);
}

.hero-grid,
.process-grid-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(27, 115, 238, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 115, 238, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
}

.hero-glow--one {
  top: 22%;
  left: -10%;
  width: 540px;
  height: 540px;
  background: rgba(8, 104, 255, 0.08);
}

.hero-glow--two {
  right: 28%;
  bottom: -25%;
  width: 420px;
  height: 420px;
  background: rgba(0, 124, 255, 0.12);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 730px;
  padding-block: clamp(72px, 10vw, 130px);
  gap: 48px;
}

.hero-copy {
  width: min(650px, 70%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #eaf4ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow-line {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Arial Black", "Segoe UI Black", Impact, sans-serif;
  font-size: clamp(4rem, 7.4vw, 7.3rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-transform: uppercase;
  text-shadow: 0 12px 48px rgba(0, 0, 0, 0.48);
}

.hero h1 span:nth-child(2) {
  margin-left: 0.18em;
}

.hero h1 span:nth-child(3) {
  margin-left: 0.36em;
}

.hero-lead {
  max-width: 590px;
  margin: 32px 0 0;
  color: #c4d0dc;
  font-size: clamp(1rem, 1.6vw, 1.19rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 34px;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button span:last-child {
  margin-left: 12px;
  font-size: 1.1em;
}

.button--primary {
  border-color: #1b87ff;
  color: #fff;
  background: linear-gradient(135deg, #0a75ff, #004ed0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 34px rgba(0, 91, 229, 0.3);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #178dff, #0868ff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 42px rgba(0, 105, 255, 0.42);
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(136, 174, 215, 0.28);
  color: #dbe7f2;
  background: rgba(4, 13, 24, 0.56);
  backdrop-filter: blur(10px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(21, 148, 255, 0.7);
  background: rgba(8, 104, 255, 0.12);
  transform: translateY(-2px);
}

.button-icon {
  width: 18px;
  height: 18px;
  margin: 0 9px 0 0;
  color: var(--blue-bright);
  fill: none;
  stroke: currentColor;
  filter: drop-shadow(0 0 6px rgba(8, 104, 255, 0.34));
}

.button--wide {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 600px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(26, 112, 231, 0.18);
}

.hero-proof div {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0 17px;
  border-right: 1px solid rgba(26, 112, 231, 0.2);
  gap: 10px;
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof b {
  color: var(--blue-bright);
  font-family: "Arial Black", sans-serif;
  font-size: 0.71rem;
  letter-spacing: 0.08em;
}

.hero-proof span {
  color: #c5d3df;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-orbit {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 184px;
  height: 184px;
  margin: 13% 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 50% 50%, rgba(4, 13, 25, 0.95) 0 62%, rgba(2, 8, 18, 0.88) 63%);
  box-shadow:
    0 0 0 1px rgba(8, 104, 255, 0.75),
    0 0 34px rgba(8, 104, 255, 0.24),
    inset 0 0 28px rgba(8, 104, 255, 0.12);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.offer-orbit:hover,
.offer-orbit:focus-visible {
  box-shadow:
    0 0 0 2px rgba(20, 144, 255, 0.9),
    0 0 50px rgba(8, 104, 255, 0.38),
    inset 0 0 28px rgba(8, 104, 255, 0.16);
  transform: translateY(-4px) rotate(-2deg);
}

.offer-orbit__ring {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(8, 104, 255, 0.32);
  border-top-color: var(--blue-bright);
  border-radius: inherit;
  animation: rotate 10s linear infinite;
}

.offer-orbit__ring::before,
.offer-orbit__ring::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: #70c7ff;
  box-shadow: 0 0 10px var(--blue);
}

.offer-orbit__ring::before {
  top: 12%;
  left: 13%;
}

.offer-orbit__ring::after {
  right: 12%;
  bottom: 13%;
}

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

.offer-orbit__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.offer-orbit small,
.offer-orbit span {
  color: #d6e0e9;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-orbit strong {
  margin: 4px 0 -2px;
  font-family: "Arial Black", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.offer-orbit b {
  margin-top: 7px;
  color: var(--blue-bright);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.scroll-cue {
  position: absolute;
  bottom: 19px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #7890a8;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 28px;
  margin-top: 7px;
  overflow: hidden;
  background: rgba(21, 148, 255, 0.3);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  right: 0;
  left: 0;
  height: 100%;
  content: "";
  background: var(--blue-bright);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  100% {
    top: 100%;
  }
}

.signal-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(25, 104, 214, 0.14);
  border-bottom: 1px solid rgba(25, 104, 214, 0.26);
  background: #030a14;
}

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

.signal {
  display: flex;
  align-items: center;
  min-height: 142px;
  padding: 24px clamp(20px, 3vw, 42px);
  border-right: 1px solid rgba(28, 111, 225, 0.25);
  gap: 20px;
}

.signal:first-child {
  padding-left: 0;
}

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

.signal-icon {
  display: grid;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--blue);
}

.signal-icon svg {
  width: 62px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  filter: drop-shadow(0 0 7px rgba(8, 104, 255, 0.24));
}

.signal h2 {
  margin: 0 0 4px;
  color: var(--blue-bright);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signal p {
  max-width: 220px;
  margin: 0;
  color: #c6d0d9;
  font-size: 0.88rem;
}

.section {
  position: relative;
  padding-block: clamp(88px, 11vw, 148px);
}

.section--intro {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(8, 104, 255, 0.09), transparent 25rem),
    linear-gradient(180deg, #040a13, #02070e);
}

.section--intro::after {
  position: absolute;
  right: -100px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(8, 104, 255, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 60px rgba(8, 104, 255, 0.025),
    0 0 0 120px rgba(8, 104, 255, 0.016);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.section-heading h2,
.process-copy h2,
.campaign-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Arial Black", "Segoe UI Black", Impact, sans-serif;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

.intro-copy {
  padding-bottom: 4px;
}

.intro-copy p,
.services-intro,
.process-copy > p,
.campaign-copy > p,
.contact-copy > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: #e5f2ff;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 12px;
  color: var(--blue-bright);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(6px);
}

.capability-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(62px, 8vw, 102px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability {
  position: relative;
  min-height: 340px;
  padding: 50px 36px 42px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 29, 50, 0.38), rgba(3, 10, 19, 0.25));
  transition: background 220ms ease, transform 220ms var(--ease);
}

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

.capability:hover {
  z-index: 2;
  background: linear-gradient(180deg, rgba(9, 63, 141, 0.25), rgba(3, 10, 19, 0.4));
  transform: translateY(-5px);
}

.capability::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 1px;
  content: "";
  background: var(--blue-bright);
  box-shadow: 0 0 15px var(--blue);
}

.capability-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(76, 138, 211, 0.34);
  font-family: "Arial Black", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.capability-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 36px;
  color: var(--blue-bright);
}

.capability-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  filter: drop-shadow(0 0 9px rgba(8, 104, 255, 0.24));
}

.capability h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.capability p {
  margin: 0;
  color: #9eafbf;
  font-size: 0.91rem;
  line-height: 1.66;
}

.section--services {
  overflow: hidden;
  border-top: 1px solid rgba(36, 119, 231, 0.13);
  border-bottom: 1px solid rgba(36, 119, 231, 0.2);
  background:
    linear-gradient(90deg, rgba(20, 107, 229, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(20, 107, 229, 0.055) 1px, transparent 1px),
    #030811;
  background-size: 90px 90px;
}

.services-head {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.services-intro {
  margin: 0 0 3px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(58px, 8vw, 94px);
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 38px 32px 34px;
  overflow: hidden;
  border: 1px solid rgba(44, 125, 232, 0.25);
  background:
    radial-gradient(circle at 76% 16%, rgba(8, 104, 255, 0.16), transparent 8rem),
    linear-gradient(145deg, rgba(9, 25, 43, 0.96), rgba(3, 9, 17, 0.96));
  box-shadow: inset 0 0 44px rgba(8, 104, 255, 0.025);
  transition:
    border-color 220ms ease,
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.service-card::before {
  position: absolute;
  right: -35%;
  bottom: -54%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(27, 124, 255, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 34px rgba(8, 104, 255, 0.02),
    0 0 0 68px rgba(8, 104, 255, 0.012);
}

.service-card:hover {
  border-color: rgba(26, 143, 255, 0.68);
  box-shadow:
    inset 0 0 52px rgba(8, 104, 255, 0.07),
    0 18px 45px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.service-index {
  position: absolute;
  top: 21px;
  right: 23px;
  color: #54708f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 43px;
  place-items: center;
  border: 1px solid rgba(30, 130, 255, 0.52);
  border-radius: 50%;
  color: var(--blue-bright);
  background: rgba(8, 104, 255, 0.08);
  box-shadow:
    inset 0 0 20px rgba(8, 104, 255, 0.12),
    0 0 20px rgba(8, 104, 255, 0.07);
}

.service-mark svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 7px rgba(8, 104, 255, 0.38));
}

.service-card h3 {
  margin: 0 0 11px;
  font-family: "Arial Black", sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 275px;
  margin: 0;
  color: #91a5b7;
  font-size: 0.88rem;
  line-height: 1.65;
}

.service-check {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue-bright);
  background: #030b16;
}

.service-check svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.8;
}

.process {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 50%, rgba(8, 104, 255, 0.12), transparent 27rem),
    #020710;
}

.process-grid-bg {
  z-index: 0;
  opacity: 0.16;
  mask-image: linear-gradient(to right, black, transparent 56%);
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.process-copy h2 {
  margin-bottom: 26px;
}

.process-copy > p {
  max-width: 480px;
  margin-bottom: 32px;
}

.process-steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps::before {
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 34px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--blue), rgba(8, 104, 255, 0.08));
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  min-height: 126px;
  padding: 24px 26px 24px 0;
  border-bottom: 1px solid rgba(38, 119, 226, 0.22);
  gap: 28px;
}

.process-steps li:first-child {
  border-top: 1px solid rgba(38, 119, 226, 0.22);
}

.process-steps > li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(19, 126, 255, 0.56);
  border-radius: 50%;
  color: var(--blue-bright);
  background: #030b16;
  box-shadow: 0 0 24px rgba(8, 104, 255, 0.08);
  font-family: "Arial Black", sans-serif;
  font-size: 0.75rem;
}

.process-steps h3 {
  margin: 0 0 7px;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-steps p {
  margin: 0;
  color: #91a3b4;
  font-size: 0.9rem;
}

.campaign {
  overflow: hidden;
  border-top: 1px solid rgba(31, 113, 221, 0.18);
  border-bottom: 1px solid rgba(31, 113, 221, 0.22);
  background:
    radial-gradient(circle at 70% 40%, rgba(8, 104, 255, 0.15), transparent 34rem),
    linear-gradient(130deg, #02060d, #06101d 56%, #02060d);
}

.campaign::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  content: "";
  background: repeating-linear-gradient(
    135deg,
    rgba(13, 98, 215, 0.05) 0,
    rgba(13, 98, 215, 0.05) 1px,
    transparent 1px,
    transparent 22px
  );
}

.campaign-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  align-items: center;
  gap: clamp(55px, 10vw, 140px);
}

.poster-frame {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
  padding: 8px;
  border: 1px solid rgba(25, 133, 255, 0.46);
  background: rgba(2, 8, 17, 0.75);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.48),
    0 0 54px rgba(8, 104, 255, 0.12);
}

.poster-frame::after {
  position: absolute;
  z-index: -1;
  inset: 14% -8% -7% 13%;
  content: "";
  background: rgba(8, 104, 255, 0.12);
  filter: blur(44px);
}

.poster-frame img {
  width: 100%;
}

.poster-frame__corner {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.poster-frame__corner--one {
  top: -8px;
  left: -8px;
  border-top: 2px solid var(--blue-bright);
  border-left: 2px solid var(--blue-bright);
}

.poster-frame__corner--two {
  right: -8px;
  bottom: -8px;
  border-right: 2px solid var(--blue-bright);
  border-bottom: 2px solid var(--blue-bright);
}

.campaign-copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
}

.campaign-copy h2 {
  margin-bottom: 30px;
}

.campaign-copy > p {
  max-width: 560px;
}

.campaign-copy > small {
  display: block;
  margin-top: 13px;
  color: #6f8599;
  font-size: 0.72rem;
}

.code-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 560px;
  min-height: 90px;
  margin-top: 32px;
  padding: 14px 16px 14px 24px;
  border: 1px solid rgba(25, 135, 255, 0.54);
  background:
    linear-gradient(90deg, rgba(8, 104, 255, 0.13), transparent 62%),
    rgba(3, 10, 20, 0.78);
  box-shadow: inset 0 0 35px rgba(8, 104, 255, 0.04);
  gap: 22px;
}

.code-card > span {
  color: #91a7bb;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.code-card strong {
  color: var(--blue-bright);
  font-family: "Arial Black", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: 0.06em;
}

.copy-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(113, 177, 255, 0.25);
  color: #e9f5ff;
  background: rgba(8, 104, 255, 0.12);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  gap: 8px;
}

.copy-code svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.copy-code:hover,
.copy-code:focus-visible {
  border-color: var(--blue-bright);
  background: rgba(8, 104, 255, 0.25);
}

.contact {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(8, 104, 255, 0.12), transparent 28rem),
    #020710;
}

.contact-radar {
  position: absolute;
  border: 1px solid rgba(8, 104, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    0 0 0 60px rgba(8, 104, 255, 0.018),
    0 0 0 120px rgba(8, 104, 255, 0.012);
}

.contact-radar--one {
  top: -180px;
  right: -130px;
  width: 450px;
  height: 450px;
}

.contact-radar--two {
  bottom: -240px;
  left: -260px;
  width: 480px;
  height: 480px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.contact-copy h2 {
  margin-bottom: 26px;
}

.contact-copy > p {
  max-width: 530px;
}

.contact-list {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.contact-list a {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 78px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
  gap: 14px;
  transition: background 180ms ease, padding 180ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  padding-inline: 12px;
  background: rgba(8, 104, 255, 0.06);
}

.contact-list a > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(24, 135, 255, 0.5);
  border-radius: 50%;
  color: var(--blue-bright);
  background: rgba(8, 104, 255, 0.08);
}

.contact-list a > span svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
  filter: drop-shadow(0 0 5px rgba(8, 104, 255, 0.34));
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  margin-bottom: 3px;
  color: #72879a;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-list strong {
  color: #dce8f3;
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  font-weight: 650;
}

.quote-form {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(28, 128, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(8, 104, 255, 0.08), transparent 30%),
    rgba(5, 14, 27, 0.92);
  box-shadow:
    inset 0 0 60px rgba(8, 104, 255, 0.025),
    0 34px 80px rgba(0, 0, 0, 0.35);
}

.quote-form::before,
.quote-form::after {
  position: absolute;
  width: 38px;
  height: 38px;
  content: "";
  pointer-events: none;
}

.quote-form::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--blue-bright);
  border-left: 2px solid var(--blue-bright);
}

.quote-form::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--blue-bright);
  border-bottom: 2px solid var(--blue-bright);
}

.form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}

.form-top span,
.form-top b {
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-top span {
  color: #93a9be;
}

.form-top b {
  position: relative;
  color: #65d0ff;
}

.form-top b::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  content: "";
  background: #00c8ff;
  box-shadow: 0 0 8px #00aaff;
}

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

.quote-form label {
  display: block;
  margin-bottom: 16px;
}

.quote-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #9fb0c1;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(93, 141, 190, 0.24);
  border-radius: 0;
  outline: none;
  color: #fff;
  background: rgba(1, 6, 13, 0.78);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-form input,
.quote-form select {
  height: 50px;
  padding: 0 14px;
}

.quote-form textarea {
  min-height: 125px;
  padding: 13px 14px;
  resize: vertical;
}

.quote-form select {
  color-scheme: dark;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue-bright);
  background: rgba(4, 17, 35, 0.92);
  box-shadow: 0 0 0 3px rgba(8, 104, 255, 0.11);
}

.quote-form textarea::placeholder {
  color: #53687c;
}

.promo-field input {
  color: var(--blue-bright);
  font-weight: 850;
  letter-spacing: 0.1em;
}

.quote-form > small {
  display: block;
  margin-top: 12px;
  color: #657a8f;
  font-size: 0.69rem;
  text-align: center;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: #72cbff;
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(31, 118, 231, 0.28);
  background: #01040a;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 160px;
  gap: clamp(28px, 6vw, 74px);
}

.footer-brand .brand-crop {
  width: 238px;
}

.footer-main > p {
  max-width: 390px;
  margin: 0;
  color: #7f91a2;
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.footer-links a {
  color: #9eafbf;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-top: 1px solid rgba(31, 118, 231, 0.16);
  color: #516579;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.mobile-call {
  position: fixed;
  z-index: 90;
  right: 14px;
  bottom: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #2797ff;
  color: #fff;
  background: linear-gradient(135deg, #0b76ff, #004abf);
  box-shadow: 0 12px 32px rgba(0, 64, 155, 0.4);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 9px;
}

.mobile-call svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

@media (max-width: 1060px) {
  :root {
    --shell: min(100% - 34px, 960px);
  }

  .brand-crop {
    width: 220px;
  }

  .brand-crop img {
    width: 248px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.nav-cta) {
    font-size: 0.68rem;
  }

  .hero-copy {
    width: min(640px, 76%);
  }

  .offer-orbit {
    width: 160px;
    height: 160px;
  }

  .offer-orbit strong {
    font-size: 1.3rem;
  }

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

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

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 30px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .offer-bar__inner {
    justify-content: flex-start;
  }

  .offer-bar a {
    display: none;
  }

  .offer-bar p {
    overflow: hidden;
    font-size: 0.66rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-crop {
    width: 205px;
    height: 50px;
  }

  .brand-crop img {
    width: 232px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

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

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

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 17px 24px;
    border-bottom: 1px solid rgba(37, 135, 255, 0.38);
    background: rgba(2, 8, 18, 0.98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav > a:not(.nav-cta) {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(33, 110, 211, 0.16);
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, #02060e 0%, rgba(2, 6, 14, 0.93) 50%, rgba(2, 6, 14, 0.32) 100%),
      linear-gradient(0deg, #020711 0%, transparent 45%);
  }

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

  .hero-inner {
    min-height: 760px;
    padding-block: 84px 110px;
  }

  .hero-copy {
    width: 82%;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 12vw, 6rem);
  }

  .offer-orbit {
    position: absolute;
    right: 0;
    bottom: 45px;
    width: 142px;
    height: 142px;
  }

  .offer-orbit strong {
    font-size: 1.13rem;
  }

  .hero-proof {
    max-width: 100%;
  }

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

  .signal {
    min-height: 112px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(28, 111, 225, 0.22);
  }

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

  .intro-grid,
  .services-head,
  .process-layout,
  .campaign-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .services-head {
    gap: 32px;
  }

  .intro-copy {
    max-width: 620px;
  }

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

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

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

  .process-layout,
  .campaign-grid,
  .contact-grid {
    gap: 62px;
  }

  .process-copy {
    max-width: 610px;
  }

  .campaign-copy {
    grid-row: 1;
  }

  .poster-frame {
    width: min(100%, 480px);
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    padding-block: 36px;
    gap: 16px;
  }

  .footer-main > p {
    max-width: 520px;
  }

  .footer-links {
    grid-column: auto;
    justify-content: flex-start;
    padding: 12px 0 0;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .offer-bar__inner {
    gap: 8px;
  }

  .offer-bar p {
    font-size: 0.6rem;
    letter-spacing: 0.035em;
  }

  .hero {
    min-height: 720px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 6, 14, 0.95), rgba(2, 6, 14, 0.52)),
      linear-gradient(0deg, #020711 3%, transparent 52%);
  }

  .hero-media {
    object-position: 66% center;
    opacity: 0.68;
  }

  .hero-inner {
    min-height: 720px;
    padding-block: 70px 130px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 0.64rem;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
    line-height: 0.88;
  }

  .hero h1 span:nth-child(2) {
    margin-left: 0.08em;
  }

  .hero h1 span:nth-child(3) {
    margin-left: 0.16em;
  }

  .hero-lead {
    max-width: 92%;
    margin-top: 25px;
    font-size: 0.95rem;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .hero-proof {
    display: none;
  }

  .offer-orbit {
    right: 9px;
    bottom: 32px;
    width: 124px;
    height: 124px;
  }

  .offer-orbit__ring {
    inset: -7px;
  }

  .offer-orbit small,
  .offer-orbit span {
    font-size: 0.48rem;
  }

  .offer-orbit strong {
    font-size: 1rem;
  }

  .offer-orbit b {
    font-size: 0.68rem;
  }

  .scroll-cue {
    left: 14px;
    align-items: flex-start;
    transform: none;
  }

  .scroll-cue i {
    margin-left: 2px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2,
  .process-copy h2,
  .campaign-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .capability {
    min-height: 280px;
    padding-inline: 26px;
  }

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

  .service-card {
    min-height: 270px;
  }

  .process-steps li {
    grid-template-columns: 54px 1fr;
    gap: 17px;
  }

  .process-steps::before {
    left: 27px;
  }

  .process-steps > li > span {
    width: 54px;
    height: 54px;
  }

  .code-card {
    grid-template-columns: 1fr auto;
    gap: 5px 12px;
  }

  .code-card > span {
    grid-column: 1;
  }

  .code-card strong {
    grid-column: 1;
  }

  .copy-code {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form {
    padding: 26px 19px;
  }

  .form-top span {
    font-size: 0.56rem;
  }

  .contact-list strong {
    overflow-wrap: anywhere;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
  }

  .mobile-call {
    display: inline-flex;
  }
}

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

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

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