:root {
  --bg: #03050a;
  --bg-2: #070a12;
  --text: #f5f2f0;
  --muted: #9fa5ad;
  --muted-2: #6f7680;
  --line: rgba(205, 232, 255, 0.14);
  --line-bright: rgba(196, 239, 255, 0.32);
  --panel: rgba(7, 11, 18, 0.78);
  --pink: #ff4fb8;
  --pink-hot: #ff2d93;
  --cyan: #7df6ff;
  --blue: #35a9ff;
  --green: #a7ff65;
  --amber: #ffd36a;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
  --radius: 6px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(77, 220, 255, 0.13), transparent 32%),
    radial-gradient(circle at 30% 34%, rgba(255, 79, 184, 0.13), transparent 30%),
    linear-gradient(180deg, #04060c 0%, #03050a 52%, #05060a 100%);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 6px;
  z-index: -1;
  border: 1px solid rgba(210, 232, 255, 0.13);
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

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

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

.ambient-media,
.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-media {
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(2, 4, 9, 0.24), rgba(2, 4, 9, 0.98) 78%),
    url("/assets/background/neon-floor-poster.jpg") center / cover no-repeat,
    #03050a;
  overflow: hidden;
}

.ambient-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 22%, rgba(77, 220, 255, 0.1), transparent 32%),
    radial-gradient(circle at 30% 34%, rgba(255, 79, 184, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(3, 5, 10, 0.16), rgba(3, 5, 10, 0.74));
}

.ambient-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(1.12) contrast(1.08) brightness(0.88);
  transform: scaleY(-1);
}

.noise-layer {
  z-index: -3;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 205, 255, 0.055) 1px, transparent 1px);
  background-size: 100% 4px, 72px 72px;
  mix-blend-mode: screen;
}

.container {
  width: min(100% - 72px, 1760px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(210, 232, 255, 0.12);
  background: rgba(1, 4, 9, 0.78);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: grid;
  min-height: 78px;
  grid-template-columns: 1.1fr auto 1.1fr;
  align-items: center;
  gap: 32px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  width: fit-content;
  font-family: var(--display);
}

.brand-mark {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
}

.brand-text {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 58px);
}

.site-nav a {
  position: relative;
  color: #f8f5f1;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -14px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(255, 79, 184, 0.9);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.availability-pill {
  justify-self: end;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(167, 255, 101, 0.3);
  border-radius: 4px;
  padding: 0 14px;
  background: rgba(167, 255, 101, 0.06);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.availability-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: calc(100svh - 78px);
  padding: 40px 0 0 0;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18%;
  left: 0;
  z-index: -2;
  height: 220px;
  background:
    radial-gradient(ellipse at 62% 65%, rgba(46, 225, 255, 0.34), transparent 44%),
    radial-gradient(ellipse at 42% 52%, rgba(255, 45, 147, 0.42), transparent 46%);
  filter: blur(18px);
  opacity: 0.7;
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(700px, 1.1fr) minmax(460px, 0.9fr);
  gap: clamp(22px, 2.4vw, 46px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
  isolation: isolate;
  padding-top: 34px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 6px -22px 18px -18px;
  z-index: 0;
  border-left: 1px solid rgba(255, 79, 184, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 79, 184, 0.14), transparent 22%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 7px);
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: copyTracking 8s linear infinite;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-tape-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  border: 1px solid rgba(125, 246, 255, 0.2);
  border-radius: 4px;
  padding: 8px 11px;
  background: rgba(2, 7, 13, 0.42);
  box-shadow:
    0 0 24px rgba(125, 246, 255, 0.1),
    inset 0 0 18px rgba(255, 79, 184, 0.08);
  color: #dffaff;
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.hero-tape-status span:not(.tape-led) {
  position: relative;
  letter-spacing: 0.18em;
}

.hero-tape-status span:not(.tape-led, :last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 79, 184, 0.8);
  box-shadow: 0 0 8px rgba(255, 79, 184, 0.9);
}

.tape-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: tapeLed 1.4s steps(2, end) infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 34px;
  color: #c8cbd2;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(255, 79, 184, 0.9);
}

.prompt-eyebrow {
  gap: 12px;
}

.prompt-eyebrow b {
  color: var(--green);
  font-family: var(--mono);
  font-weight: 800;
  text-shadow: 0 0 12px rgba(167, 255, 101, 0.72);
}

.prompt-eyebrow i {
  width: 8px;
  height: 1.05em;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(125, 246, 255, 0.72);
  animation: terminalCursor 1s steps(2, end) infinite;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  color: #f3f0ec;
  font-size: clamp(3.6rem, 4.35vw, 5.55rem);
  font-weight: 500;
  line-height: 0.96;
  text-wrap: pretty;
  text-shadow: 0 0 34px rgba(255, 255, 255, 0.14);
}

h1 span {
  display: block;
}

.hero-title-accent {
  color: var(--pink);
  text-shadow: 0 0 34px rgba(255, 79, 184, 0.36);
}

.neon-flicker {
  position: relative;
  display: inline-block;
  color: #ff7cc9;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.52),
    0 0 18px rgba(255, 79, 184, 0.66),
    0 0 36px rgba(255, 45, 147, 0.46);
  animation: neonFlicker 5.4s linear infinite;
}

.neon-flicker::before,
.neon-flicker::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.neon-flicker::before {
  color: var(--cyan);
  transform: translateX(2px);
  clip-path: inset(0 0 58% 0);
  animation: glitchCyan 5.4s linear infinite;
}

.neon-flicker::after {
  color: var(--pink-hot);
  transform: translateX(-2px);
  clip-path: inset(58% 0 0 0);
  animation: glitchPink 5.4s linear infinite;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 34px;
  color: #b8bbc4;
  font-family: var(--mono);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.7;
}

.loading-dots {
  display: inline;
  width: 1.4em;
  color: var(--green);
  text-shadow: 0 0 12px rgba(167, 255, 101, 0.7);
}

.loading-dots span {
  display: inline-block;
  opacity: 0.18;
  animation: loadingDot 1.35s steps(2, end) infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.18s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.36s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  min-width: 176px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0 28px;
  overflow: hidden;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.work-card:hover,
.service-card:hover {
  transform: translateY(-3px);
}

.button-primary {
  min-width: 220px;
  justify-content: space-between;
  border: 1px solid rgba(255, 79, 184, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #ff71bd 0%, #ff2d93 100%);
  color: #14030d;
  box-shadow:
    0 0 34px rgba(255, 45, 147, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -8px 18px rgba(72, 2, 41, 0.16);
}

.button-primary::before,
.button-primary::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.button-primary::before {
  top: 0;
  right: -42%;
  bottom: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: right 360ms ease;
}

.button-primary::after {
  inset: 6px;
  border: 1px solid rgba(20, 3, 13, 0.24);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.22);
}

.button-primary:hover {
  border-color: rgba(125, 246, 255, 0.74);
  box-shadow:
    0 0 28px rgba(255, 45, 147, 0.5),
    0 0 22px rgba(125, 246, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -8px 18px rgba(72, 2, 41, 0.18);
}

.button-primary:hover::before {
  right: 105%;
}

.button-secondary {
  border: 1px solid rgba(125, 246, 255, 0.35);
  background: rgba(7, 11, 18, 0.58);
  color: #f4f6f7;
}

.trusted-strip p {
  margin-bottom: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trusted-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-visual {
  position: absolute;
  inset: 0 calc((100vw - min(100% - 72px, 1760px)) / -2);
  z-index: 0;
  pointer-events: none;
}

.hero-artwork {
  position: absolute;
  z-index: 0;
  inset: -112px 0 -74px;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

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

.hero-artwork::before {
  background:
    linear-gradient(90deg, rgba(3, 5, 10, 0.86), rgba(3, 5, 10, 0.46) 36%, rgba(3, 5, 10, 0.08) 64%, rgba(3, 5, 10, 0.35)),
    linear-gradient(180deg, rgba(3, 5, 10, 0.56), transparent 34%, rgba(3, 5, 10, 0.32)),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: auto, auto, 100% 4px;
  mix-blend-mode: screen;
  opacity: 0.8;
}

.hero-artwork::after {
  inset: auto -12% -70px -12%;
  height: 260px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 147, 0.42), rgba(125, 246, 255, 0.24), transparent);
  filter: blur(28px);
}

.hero-artwork img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.82;
  filter: saturate(1.18) contrast(1.1) brightness(0.8);
}

.dashboard-window,
.phone-frame,
.service-card,
.work-card,
.process-panel {
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 17, 27, 0.74), rgba(3, 7, 13, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dashboard-window {
  position: absolute;
  top: 12px;
  right: 210px;
  left: 0;
  display: grid;
  min-height: 430px;
  grid-template-columns: 132px 1fr;
  overflow: hidden;
  border-color: rgba(255, 128, 207, 0.74);
  box-shadow:
    0 0 0 1px rgba(125, 246, 255, 0.28) inset,
    0 0 48px rgba(255, 79, 184, 0.18),
    var(--shadow);
}

.dashboard-window::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 68px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 147, 0.38), rgba(125, 246, 255, 0.24), transparent);
  filter: blur(18px);
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  border-right: 1px solid rgba(205, 232, 255, 0.12);
  padding: 24px 14px;
  background: rgba(2, 6, 13, 0.52);
}

.dashboard-sidebar strong,
.dashboard-sidebar span,
.dashboard-topline h2,
.metric-grid small,
.chart-panel span,
.system-status,
.work-card p,
.service-card h3,
.service-card p,
.service-card a,
.text-link,
.footer-console {
  font-family: var(--mono);
}

.dashboard-sidebar strong {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.72rem;
}

.dashboard-sidebar span {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px 9px;
  color: var(--muted);
  font-size: 0.68rem;
}

.dashboard-sidebar .is-selected {
  border-color: rgba(125, 246, 255, 0.12);
  background: rgba(125, 246, 255, 0.08);
  color: #dceff2;
}

.dashboard-main {
  position: relative;
  z-index: 1;
  padding: 38px 32px 28px;
}

.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-topline h2 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
}

.dashboard-topline div {
  display: flex;
  gap: 14px;
}

.dashboard-topline span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(125, 246, 255, 0.48);
  border-radius: 50%;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.metric-grid div {
  min-height: 82px;
  border: 1px solid rgba(205, 232, 255, 0.1);
  border-radius: 4px;
  padding: 15px;
  background: rgba(125, 246, 255, 0.035);
}

.metric-grid small {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.64rem;
}

.metric-grid strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.metric-grid em {
  display: block;
  margin-top: 8px;
  color: #27ff99;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-style: normal;
}

.chart-panel {
  min-height: 238px;
  border: 1px solid rgba(205, 232, 255, 0.1);
  border-radius: 4px;
  padding: 18px 18px 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(1, 5, 12, 0.32);
  background-size: 100% 48px, 48px 100%, auto;
}

.chart-panel span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.72rem;
}

.chart-panel svg {
  display: block;
  width: 100%;
  height: 190px;
  overflow: visible;
}

.chart-panel path {
  fill: none;
  stroke: url(#chartGlow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  filter: drop-shadow(0 0 9px rgba(255, 79, 184, 0.5));
}

.chart-panel text {
  fill: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 11px;
}

.phone-frame {
  position: absolute;
  right: 165px;
  bottom: 24px;
  z-index: 4;
  width: 184px;
  height: 345px;
  padding: 10px;
  border-color: rgba(255, 175, 224, 0.55);
  border-radius: 28px;
  transform: rotate(4deg);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  padding: 16px;
  background:
    radial-gradient(circle at 70% 44%, rgba(255, 79, 184, 0.18), transparent 36%),
    linear-gradient(180deg, #0c1220, #050711);
}

.phone-status {
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 800;
}

.phone-screen p,
.phone-screen small {
  display: block;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.phone-screen strong,
.phone-screen b {
  display: block;
  color: #fff;
  font-family: var(--font);
}

.phone-screen strong {
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.phone-screen b {
  margin-bottom: 16px;
  font-size: 1rem;
}

.phone-chart {
  height: 78px;
  margin-bottom: 18px;
  background:
    linear-gradient(145deg, transparent 0 18%, rgba(255, 79, 184, 0.6) 18% 21%, transparent 21% 35%, rgba(255, 79, 184, 0.6) 35% 38%, transparent 38% 54%, rgba(125, 246, 255, 0.7) 54% 57%, transparent 57%),
    linear-gradient(180deg, transparent, rgba(125, 246, 255, 0.08));
}

.phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.phone-row span {
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.phone-row i {
  width: 38px;
  height: 8px;
  border-radius: 999px;
  background: rgba(167, 255, 101, 0.48);
}

.system-status {
  position: absolute;
  top: 74px;
  right: 0;
  z-index: 5;
  width: 265px;
  padding: 18px;
  border-color: rgba(125, 246, 255, 0.42);
  color: #dce7ea;
}

.system-status > div {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(205, 232, 255, 0.1);
  text-transform: uppercase;
}

.system-status strong,
.system-status span,
.system-status dt,
.system-status dd,
.system-status p,
.system-status li {
  font-size: 0.64rem;
}

.system-status b,
.system-status dd {
  color: var(--green);
}

.system-status dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 18px 0;
}

.system-status dt,
.system-status dd {
  margin: 0;
  text-transform: uppercase;
}

.system-status dt {
  color: rgba(255, 255, 255, 0.58);
}

.system-status p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(205, 232, 255, 0.1);
  color: #e8edf2;
  text-transform: uppercase;
}

.system-status ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.system-status li {
  color: var(--green);
}

.system-status li::before {
  content: "> ";
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 172px;
  grid-template-columns: 86px 1fr 24px;
  align-items: center;
  gap: 22px;
  padding: 28px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.service-card-pink {
  border-color: rgba(255, 79, 184, 0.36);
}

.service-card-cyan {
  border-color: rgba(125, 246, 255, 0.34);
}

.service-card-green {
  border-color: rgba(167, 255, 101, 0.34);
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
}

.cube-icon {
  border: 2px solid var(--pink);
  transform: rotate(30deg);
  box-shadow: 0 0 20px rgba(255, 79, 184, 0.5);
}

.cube-icon span {
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255, 79, 184, 0.78);
}

.window-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 20px rgba(125, 246, 255, 0.45);
}

.window-icon span:first-child {
  border-right: 1px solid var(--cyan);
}

.window-icon span:last-child {
  border-left: 1px solid rgba(125, 246, 255, 0.32);
}

.phone-icon {
  width: 34px;
  border: 2px solid var(--green);
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(167, 255, 101, 0.42);
}

.phone-icon span {
  position: absolute;
  right: 10px;
  bottom: 6px;
  left: 10px;
  height: 2px;
  background: var(--green);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0;
  color: #c6c9d0;
  font-size: 0.82rem;
  line-height: 1.8;
}

.service-card > a {
  position: relative;
  z-index: 1;
  color: currentColor;
  font-size: 1.3rem;
}

.service-card-pink > a {
  color: var(--pink);
}

.service-card-cyan > a {
  color: var(--cyan);
}

.service-card-green > a {
  color: var(--green);
}

.section {
  padding: 34px 0 0;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 20px;
}

.text-link {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
}

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

.work-card {
  position: relative;
  display: grid;
  min-height: 450px;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.work-card::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 80% 48%, rgba(125, 246, 255, 0.18), transparent 38%),
    radial-gradient(circle at 28% 86%, rgba(255, 79, 184, 0.2), transparent 44%);
}

.work-card::after {
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 90px;
  background: linear-gradient(90deg, rgba(255, 79, 184, 0.34), rgba(125, 246, 255, 0.16), transparent 72%);
  filter: blur(18px);
}

.case-copy,
.case-stage {
  position: relative;
  z-index: 2;
}

.work-card p {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

.case-copy {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.case-copy p {
  margin-top: 4px;
  order: 2;
  text-align: right;
}

.case-copy h3 {
  font-size: clamp(1.35rem, 2vw, 2.1rem);
}

.case-stage {
  display: grid;
  min-height: 330px;
  place-items: center;
  perspective: 1200px;
}

.device {
  position: relative;
  overflow: hidden;
  background: #05070c;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.56),
    0 0 44px rgba(255, 79, 184, 0.22);
}

.device::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.device::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 22% 62%, rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: 0.34;
  pointer-events: none;
}

.device img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-tablet {
  aspect-ratio: 1.46;
  width: min(94%, 680px);
  border: 10px solid #07090e;
  border-radius: 24px;
  transform: rotateX(8deg) rotateY(-10deg) rotateZ(-2deg);
}

.device-phone {
  aspect-ratio: 0.46;
  width: min(42%, 245px);
  border: 10px solid #07090e;
  border-radius: 34px;
  transform: rotateX(6deg) rotateY(14deg) rotateZ(4deg);
}

.device-phone::before {
  border-radius: 24px;
}

.device-phone img {
  object-position: top center;
}

.case-card-tablet .case-stage {
  align-items: end;
}

.case-card-phone .case-stage {
  align-items: center;
}

.case-card:hover {
  border-color: rgba(255, 128, 207, 0.56);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.62),
    0 0 52px rgba(255, 79, 184, 0.18);
}

.case-card-sanatus {
  background:
    radial-gradient(circle at 80% 30%, rgba(55, 201, 166, 0.26), transparent 38%),
    linear-gradient(90deg, rgba(125, 246, 255, 0.13), transparent 54%),
    linear-gradient(145deg, rgba(18, 22, 34, 0.88), rgba(2, 5, 11, 0.9));
}

.case-card-oforto {
  background:
    radial-gradient(circle at 78% 36%, rgba(167, 255, 101, 0.2), transparent 36%),
    radial-gradient(circle at 24% 86%, rgba(255, 79, 184, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(18, 22, 34, 0.88), rgba(2, 5, 11, 0.9));
}

.case-card-omantel {
  background:
    radial-gradient(circle at 74% 30%, rgba(255, 211, 106, 0.18), transparent 35%),
    radial-gradient(circle at 32% 80%, rgba(125, 246, 255, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(18, 22, 34, 0.88), rgba(2, 5, 11, 0.9));
}

.case-card-caller {
  background:
    radial-gradient(circle at 80% 38%, rgba(125, 246, 255, 0.2), transparent 35%),
    radial-gradient(circle at 30% 82%, rgba(255, 79, 184, 0.3), transparent 46%),
    linear-gradient(145deg, rgba(18, 22, 34, 0.88), rgba(2, 5, 11, 0.9));
}

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

.process-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  margin-top: 32px;
  padding: 34px;
}

.process-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.process-steps {
  display: grid;
  gap: 16px;
}

.process-steps article {
  border-left: 1px solid rgba(125, 246, 255, 0.28);
  padding-left: 18px;
}

.process-steps strong {
  color: var(--pink);
  font-family: var(--mono);
}

.process-steps h3 {
  margin: 6px 0 8px;
  font-size: 1.1rem;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid rgba(210, 232, 255, 0.12);
  padding: 26px 0;
}

.footer-console {
  display: grid;
  min-height: 42px;
  grid-template-columns: 1fr 1.7fr 1fr 1fr 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(210, 232, 255, 0.1);
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.footer-console p {
  margin: 0;
}

.footer-brand {
  gap: 8px;
  color: #fff;
}

.footer-brand span {
  width: 8px;
  height: 8px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

@keyframes copyTracking {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.18;
  }

  45% {
    transform: translate3d(0, 3px, 0);
    opacity: 0.26;
  }

  47% {
    transform: translate3d(4px, -1px, 0);
    opacity: 0.34;
  }

  49% {
    transform: translate3d(-2px, 1px, 0);
    opacity: 0.2;
  }
}

@keyframes tapeLed {
  0%,
  68%,
  100% {
    opacity: 1;
  }

  69%,
  82% {
    opacity: 0.28;
  }
}

@keyframes terminalCursor {
  0%,
  44% {
    opacity: 1;
  }

  45%,
  100% {
    opacity: 0;
  }
}

@keyframes neonFlicker {
  0%,
  9%,
  13%,
  20%,
  100% {
    opacity: 1;
    filter: brightness(1.06);
  }

  10%,
  12% {
    opacity: 0.58;
    filter: brightness(1.5);
  }

  48% {
    opacity: 0.92;
    filter: brightness(1.2);
  }

  49% {
    opacity: 0.7;
    filter: brightness(1.65);
  }

  50% {
    opacity: 1;
    filter: brightness(1.04);
  }
}

@keyframes glitchCyan {
  0%,
  46%,
  52%,
  100% {
    opacity: 0;
  }

  47%,
  49% {
    opacity: 0.64;
    transform: translate(3px, -1px);
  }
}

@keyframes glitchPink {
  0%,
  47%,
  53%,
  100% {
    opacity: 0;
  }

  48%,
  51% {
    opacity: 0.55;
    transform: translate(-3px, 1px);
  }
}

@keyframes loadingDot {
  0%,
  26% {
    opacity: 0.18;
  }

  27%,
  100% {
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 44px, 1280px);
  }

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

  .hero-visual {
    inset: 0 calc((100vw - min(100% - 44px, 1280px)) / -2);
  }

  .hero-artwork {
    inset: -96px 0 -60px;
  }
}

@media (max-width: 980px) {
  .header-shell {
    display: flex;
    min-height: 68px;
    justify-content: space-between;
  }

  .brand-text,
  .availability-pill {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 22px;
    left: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: rgba(3, 5, 10, 0.96);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav a::after {
    bottom: 4px;
  }

  .service-grid,
  .work-grid,
  .footer-console {
    grid-template-columns: 1fr 1fr;
  }

  .work-card {
    min-height: 410px;
  }

  .device-tablet {
    width: min(96%, 600px);
  }

  .device-phone {
    width: min(44%, 220px);
  }

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

@media (max-width: 760px) {
  body::before {
    inset: 3px;
  }

  .container {
    width: min(100% - 28px, 760px);
  }

  .hero-section {
    padding-top: 30px;
  }

  .hero-tape-status {
    gap: 9px;
    font-size: 0.58rem;
  }

  .hero-tape-status span:not(.tape-led) {
    letter-spacing: 0.12em;
  }

  .prompt-eyebrow {
    gap: 10px;
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

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

  .hero-actions {
    gap: 12px;
    margin-bottom: 44px;
  }

  .button {
    width: 100%;
  }

  .trusted-strip div {
    gap: 16px;
    font-size: 0.92rem;
  }

  .hero-visual {
    inset: 0 -14px;
  }

  .hero-artwork {
    inset: -82px 0 -44px;
  }

  .hero-artwork img {
    object-position: center right;
  }

  .dashboard-window {
    right: 0;
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 22px;
  }

  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .metric-grid div {
    min-height: 74px;
    padding: 10px;
  }

  .metric-grid strong {
    font-size: 0.78rem;
  }

  .chart-panel {
    min-height: 190px;
  }

  .phone-frame {
    top: 412px;
    right: 20px;
    bottom: auto;
    width: 156px;
    height: 292px;
  }

  .service-grid,
  .work-grid,
  .footer-console {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 370px;
    padding: 22px;
  }

  .case-copy {
    display: block;
  }

  .case-copy p {
    order: initial;
    text-align: left;
  }

  .case-stage {
    min-height: 255px;
  }

  .device-tablet {
    width: min(98%, 500px);
    border-width: 8px;
    border-radius: 18px;
    transform: rotateX(7deg) rotateY(-7deg) rotateZ(-1deg);
  }

  .device-phone {
    width: min(50%, 195px);
    border-width: 8px;
    border-radius: 28px;
  }

  .service-card {
    min-height: 190px;
    grid-template-columns: 64px 1fr 20px;
    padding: 24px;
  }
}

@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;
  }
}
