:root {
  --bg: #071116;
  --surface: rgba(10, 20, 27, 0.76);
  --surface-strong: rgba(12, 26, 36, 0.92);
  --surface-dark: rgba(4, 10, 15, 0.96);
  --text: #ecf6fb;
  --muted: #8ea7b7;
  --line: rgba(93, 228, 255, 0.16);
  --accent: #42e8ff;
  --accent-2: #95ff6d;
  --accent-3: #d7f6ff;
  --gold: #95ff6d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 50% -10%, rgba(66, 232, 255, 0.18), transparent 24%),
    radial-gradient(circle at 8% 10%, rgba(149, 255, 109, 0.08), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(66, 232, 255, 0.14), transparent 18%),
    radial-gradient(circle at 78% 76%, rgba(149, 255, 109, 0.09), transparent 18%),
    linear-gradient(180deg, #060d12 0%, #08141b 46%, #071116 100%);
  background-attachment: fixed;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-grid {
  opacity: 0.22;
  background:
    linear-gradient(rgba(66, 232, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 232, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 1), transparent 78%);
  animation: gridDrift 16s linear infinite;
}

.ambient-orb {
  inset: auto;
  width: 34vw;
  height: 34vw;
  min-width: 260px;
  min-height: 260px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
}

.ambient-orb-a {
  top: 8%;
  left: -10%;
  background: radial-gradient(circle, rgba(66, 232, 255, 0.52), rgba(66, 232, 255, 0));
  animation: orbFloatA 18s ease-in-out infinite;
}

.ambient-orb-b {
  right: -12%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(149, 255, 109, 0.34), rgba(149, 255, 109, 0));
  animation: orbFloatB 21s ease-in-out infinite;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(66, 232, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 232, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mix-blend-mode: screen;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(14px);
}

body::before {
  width: 320px;
  height: 320px;
  top: 80px;
  right: -80px;
  background: radial-gradient(circle, rgba(66, 232, 255, 0.2), rgba(66, 232, 255, 0));
}

body::after {
  width: 340px;
  height: 340px;
  left: -120px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(149, 255, 109, 0.12), rgba(149, 255, 109, 0));
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar,
.hero,
.trusted,
.services,
.process,
.why-us,
.cta,
.problem-solution,
.format-section,
.testimonial-section,
.proof-band,
.network-spotlight {
  background: var(--surface);
  border: 1px solid rgba(66, 232, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 999px;
  position: sticky;
  top: 14px;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -20%;
  width: 120px;
  background: linear-gradient(90deg, rgba(66, 232, 255, 0), rgba(66, 232, 255, 0.08), rgba(66, 232, 255, 0));
  transform: skewX(-22deg);
  animation: topbarSweep 7s linear infinite;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(8, 19, 26, 0.9);
  box-shadow: 0 0 24px rgba(66, 232, 255, 0.26);
  animation: brandPulse 4.2s ease-in-out infinite;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

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

.button.primary {
  color: #041218;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 16px 34px rgba(66, 232, 255, 0.22);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -32%;
  width: 36%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  animation: buttonSweep 4.8s linear infinite;
}

.button.secondary,
.button.ghost {
  color: var(--text);
  background: rgba(10, 24, 32, 0.7);
  border-color: rgba(66, 232, 255, 0.14);
}

.hero,
.trusted,
.services,
.process,
.why-us,
.cta,
.problem-solution,
.format-section,
.testimonial-section,
.proof-band,
.network-spotlight {
  margin-top: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 30px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 56%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 232, 255, 0.14), rgba(66, 232, 255, 0));
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1,
.section-head h2,
.problem-card h2,
.solution-card h2,
.cta h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.lead,
.cta-copy p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 64ch;
  color: #b5c8d4;
  line-height: 1.8;
}

.hero-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(66, 232, 255, 0.14);
  background: rgba(8, 18, 26, 0.8);
  color: #bff8ff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: tickerBlink 3.6s ease-in-out infinite;
}

.hero-ticker span:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-ticker span:nth-child(3) {
  animation-delay: 0.6s;
}

.hero-ticker span:nth-child(4) {
  animation-delay: 0.9s;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span,
.availability-list span,
.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(66, 232, 255, 0.12);
  background: rgba(9, 22, 30, 0.82);
  color: #d9f7ff;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li::before {
  content: ">";
  color: var(--accent-2);
  margin-right: 10px;
  font-family: "JetBrains Mono", monospace;
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-content: start;
  transform: translate3d(calc(var(--pointer-x, 0.5) * 10px - 5px), calc(var(--pointer-y, 0.5) * 10px - 5px), 0);
  transition: transform 220ms ease-out;
}

.visual-panel,
.stats-ribbon,
.project-card,
.service-card,
.format-card,
.process-step,
.why-grid article,
.cta-card,
.testimonial-card,
.problem-card,
.solution-card {
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.visual-panel {
  padding: 22px;
}

.visual-panel-primary {
  background:
    radial-gradient(circle at 90% 10%, rgba(66, 232, 255, 0.14), transparent 28%),
    var(--surface-strong);
}

.visual-panel-accent {
  background:
    radial-gradient(circle at 10% 10%, rgba(149, 255, 109, 0.12), transparent 28%),
    var(--surface-strong);
}

.dashboard-preview {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.dashboard-screen {
  padding: 18px;
  border-radius: 22px;
  color: #eef8ff;
  background:
    linear-gradient(180deg, rgba(4, 13, 19, 0.98), rgba(9, 29, 38, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 48px rgba(0, 0, 0, 0.28);
}

.screen-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.screen-topline span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 248, 255, 0.58);
}

.screen-topline strong {
  margin: 0;
  font-size: 1rem;
}

.screen-graph {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  height: 120px;
  margin-top: 18px;
}

.screen-graph span {
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--accent) 0%, #138ea0 100%);
  box-shadow: 0 0 24px rgba(66, 232, 255, 0.18);
}

.screen-pulse {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.screen-pulse i {
  display: block;
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(149, 255, 109, 0.18), rgba(149, 255, 109, 0.9));
  animation: pulseShift 4s ease-in-out infinite;
}

.screen-pulse i:nth-child(2) {
  animation-delay: 0.35s;
}

.screen-pulse i:nth-child(3) {
  animation-delay: 0.7s;
}

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

.incident-feed div,
.proof-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 19, 26, 0.82);
  border: 1px solid rgba(66, 232, 255, 0.1);
}

.incident-feed span,
.signal-label,
.proof-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.incident-feed strong,
.signal-card strong,
.proof-card strong {
  display: block;
  font-size: 1.02rem;
}

.panel-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(66, 232, 255, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.visual-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.visual-panel p,
.project-card p,
.service-card p,
.format-card p,
.process-step p,
.why-grid article p,
.cta-card p,
.testimonial-card p,
.problem-card li,
.solution-card li {
  color: var(--muted);
  line-height: 1.7;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.mini-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(8, 19, 26, 0.86);
  border: 1px solid rgba(66, 232, 255, 0.08);
}

.mini-grid span,
.stats-ribbon span {
  color: var(--muted);
}

.mini-grid strong,
.stats-ribbon strong {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
}

.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
}

.stats-ribbon > div {
  animation: statPulse 4.2s ease-in-out infinite;
}

.stats-ribbon > div:nth-child(2) {
  animation-delay: 0.4s;
}

.stats-ribbon > div:nth-child(3) {
  animation-delay: 0.8s;
}

.signal-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  color: #ecfbff;
  background:
    linear-gradient(135deg, rgba(8, 20, 28, 0.98), rgba(16, 69, 79, 0.9));
  border: 1px solid rgba(66, 232, 255, 0.14);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.22);
}

.signal-card p {
  margin-bottom: 0;
  color: rgba(236, 251, 255, 0.76);
}

.signal-label {
  color: rgba(149, 255, 109, 0.82);
}

.logo-strip {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
}

.logo-strip-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 12px;
  animation: logoMarquee 30s linear infinite;
}

.logo-strip-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.logo-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  width: max-content;
  padding: 10px 18px;
  border-radius: 18px;
  background: rgba(8, 19, 26, 0.78);
  border: 1px solid rgba(66, 232, 255, 0.12);
  font-weight: 700;
  color: #dff8ff;
  text-align: center;
  white-space: nowrap;
  flex: 0 0 auto;
}

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

.network-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  overflow: hidden;
}

.network-copy p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.8;
}

.network-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(8, 20, 28, 0.98), rgba(10, 45, 52, 0.9));
  border: 1px solid rgba(66, 232, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.network-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.network-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(149, 255, 109, 0.16);
  background: rgba(149, 255, 109, 0.08);
  color: #e6fff1;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.network-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 19, 26, 0.7);
  border: 1px solid rgba(66, 232, 255, 0.1);
}

.network-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.network-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.proof-card p {
  margin-bottom: 0;
}

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

.problem-card,
.solution-card,
.testimonial-card {
  padding: 24px;
}

.problem-card ul,
.solution-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-head h2,
.problem-card h2,
.solution-card h2,
.cta h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-play {
  display: grid;
  gap: 20px;
}

.cta-play-head p:not(.eyebrow) {
  max-width: 56ch;
}

.project-grid,
.service-grid,
.why-grid,
.format-grid {
  display: grid;
  gap: 18px;
}

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

.project-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 176px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.project-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(66, 232, 255, 0.08), rgba(12, 26, 36, 0.96)),
    var(--surface-strong);
}

.project-card-bro,
.project-card-oiunp,
.project-card-rx,
.project-card-respawn {
  background:
    linear-gradient(180deg, rgba(6, 16, 22, 0.78), rgba(6, 16, 22, 0.92)),
    var(--surface-strong);
}

.project-card-bro::after,
.project-card-oiunp::after,
.project-card-rx::after,
.project-card-respawn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.project-card-bro::after {
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    url("./assets/projects/bro.png");
  background-size: 100%, 82%;
  background-position: center, center 46%;
  opacity: 0.34;
  mix-blend-mode: screen;
}

.project-card-oiunp::after {
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    url("./assets/projects/oiunp.jpg");
  background-size: 100%, 38%;
  background-position: center, center;
  opacity: 0.48;
  mix-blend-mode: screen;
}

.project-card-rx::after {
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    url("./assets/projects/rx.jpg");
  background-size: 100%, 48%;
  background-position: center, center 52%;
  opacity: 0.42;
  mix-blend-mode: screen;
}

.project-card-respawn::after {
  background-image:
    radial-gradient(circle at center, rgba(255, 80, 80, 0.2), rgba(255, 255, 255, 0)),
    url("./assets/projects/respawn.png");
  background-size: 100%, 92%;
  background-position: center, center 38%;
  opacity: 0.4;
}

.project-card-bro h3,
.project-card-oiunp h3,
.project-card-rx h3,
.project-card-respawn h3,
.project-card-bro p,
.project-card-oiunp p,
.project-card-rx p,
.project-card-respawn p {
  position: relative;
  z-index: 1;
}

.project-card-bro p,
.project-card-oiunp p,
.project-card-rx p,
.project-card-respawn p {
  color: rgba(236, 246, 251, 0.84);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.project-card:hover,
.service-card:hover,
.format-card:hover,
.why-grid article:hover,
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
}

.project-card::before,
.service-card::before,
.format-card::before,
.proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(66, 232, 255, 0.18), rgba(149, 255, 109, 0.06)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.project-card:hover::before,
.service-card:hover::before,
.format-card:hover::before,
.proof-card:hover::before {
  opacity: 1;
}

.project-type {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(149, 255, 109, 0.08);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
}

.project-card h3,
.service-card h3,
.format-card h3,
.process-step h3,
.why-grid article h3,
.cta-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.project-tags,
.availability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

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

.service-card,
.format-card,
.process-step,
.why-grid article,
.cta-card {
  padding: 24px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  overflow: hidden;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(66, 232, 255, 0.08);
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

.service-visual {
  position: relative;
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 62px;
  margin-top: auto;
  padding-top: 18px;
}


.service-visual::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  height: 1px;
  background: linear-gradient(90deg, rgba(66, 232, 255, 0), rgba(66, 232, 255, 0.2), rgba(66, 232, 255, 0));
}

.service-visual span {
  position: relative;
  display: block;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(66, 232, 255, 0.92), rgba(12, 97, 112, 0.9));
  box-shadow: 0 0 20px rgba(66, 232, 255, 0.16);
}

.service-visual-server span {
  width: 100%;
  height: 12px;
}

.service-visual-server span:nth-child(1) {
  animation: rackBlink 3.1s ease-in-out infinite;
}

.service-visual-server span:nth-child(2) {
  animation: rackBlink 3.1s ease-in-out 0.35s infinite;
}

.service-visual-server span:nth-child(3) {
  animation: rackBlink 3.1s ease-in-out 0.7s infinite;
}

.service-visual-pc span:nth-child(1) {
  width: 42px;
  height: 34px;
  border-radius: 10px;
  animation: monitorGlow 2.8s ease-in-out infinite;
}

.service-visual-pc span:nth-child(2) {
  width: 10px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(149, 255, 109, 0.92), rgba(53, 133, 43, 0.8));
  animation: fpsPulse 1.8s ease-in-out infinite;
}

.service-visual-pc span:nth-child(3) {
  width: 56px;
  height: 10px;
  border-radius: 999px;
  animation: monitorGlow 2.8s ease-in-out 0.25s infinite;
}

.service-visual-shell span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: nodePulse 2.6s ease-in-out infinite;
}

.service-visual-shell span:nth-child(2) {
  margin-left: 18px;
  margin-right: 18px;
  animation-delay: 0.3s;
}

.service-visual-shell span:nth-child(3) {
  animation-delay: 0.6s;
}

.service-visual-shell::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(66, 232, 255, 0.24), rgba(149, 255, 109, 0.24));
}

.service-visual-ccboot span:nth-child(1),
.service-visual-ccboot span:nth-child(3) {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: orbitBeat 2.4s ease-in-out infinite;
}

.service-visual-ccboot span:nth-child(2) {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(149, 255, 109, 0.94), rgba(66, 232, 255, 0.82));
  animation: coreSpin 4.5s linear infinite;
}

.service-visual-api span {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(149, 255, 109, 0.92), rgba(50, 126, 47, 0.8));
}

.service-visual-api span:nth-child(1) {
  height: 28px;
  animation: apiBars 1.9s ease-in-out infinite;
}

.service-visual-api span:nth-child(2) {
  height: 44px;
  animation: apiBars 1.9s ease-in-out 0.25s infinite;
}

.service-visual-api span:nth-child(3) {
  height: 18px;
  animation: apiBars 1.9s ease-in-out 0.5s infinite;
}

.service-visual-support span:nth-child(1) {
  width: 54px;
  height: 10px;
  border-radius: 999px;
  animation: routeShift 2.5s ease-in-out infinite;
}

.service-visual-support span:nth-child(2) {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(149, 255, 109, 0.92), rgba(53, 133, 43, 0.8));
  animation: routeDot 2.5s ease-in-out infinite;
}

.service-visual-support span:nth-child(3) {
  width: 34px;
  height: 10px;
  border-radius: 999px;
  animation: routeShift 2.5s ease-in-out 0.25s infinite;
}

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

.process-step span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-2);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.testimonial-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(6, 17, 24, 0.98), rgba(10, 45, 52, 0.92));
  color: #ecfbff;
  overflow: hidden;
  border: 1px solid rgba(66, 232, 255, 0.14);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 232, 255, 0.14), rgba(66, 232, 255, 0));
  animation: orbFloatA 12s ease-in-out infinite;
}

.testimonial-card p {
  margin: 0 0 18px;
  color: #ecfbff;
  font-size: 1.18rem;
  line-height: 1.7;
}

.testimonial-card span {
  color: rgba(215, 246, 255, 0.78);
}

.quote-mark {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(66, 232, 255, 0.1) !important;
  pointer-events: none;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  margin-bottom: 24px;
}

.mini-pacman {
  padding: 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(8, 18, 26, 0.96), rgba(7, 23, 32, 0.96));
  border: 1px solid rgba(66, 232, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mini-pacman-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.mini-pacman-topline span {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-pacman-topline strong {
  font-size: 1rem;
}

.mini-pacman-arena {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(66, 232, 255, 0.12);
  background:
    radial-gradient(circle at 15% 15%, rgba(66, 232, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(8, 16, 24, 0.98), rgba(6, 14, 20, 0.98));
  outline: none;
}

.mini-pacman-arena::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(66, 232, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 232, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: gridDrift 8s linear infinite;
  pointer-events: none;
}

.pacman-score {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.pacman-score span {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pacman-score strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.1rem;
  color: var(--accent-2);
}

.pacman-track {
  position: absolute;
  left: 92px;
  right: 0;
  bottom: 32px;
  overflow: hidden;
}

.pacman-fixed {
  position: absolute;
  left: 28px;
  bottom: 32px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 229, 79, 0.14), rgba(255, 229, 79, 0));
}

.pacman-marquee {
  display: flex;
  align-items: center;
  width: max-content;
  height: 64px;
  animation: pacmanMarquee 18s linear infinite;
}

.pacman-unit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px 0 0;
  flex: 0 0 auto;
}

.pacman-gif {
  width: 52px;
  height: 52px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 18px rgba(255, 229, 79, 0.24));
}

.pacman-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 229, 79, 0.82);
  box-shadow: 0 0 12px rgba(255, 229, 79, 0.18);
  animation: dotBlink 1.2s ease-in-out infinite;
}

.problem-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(66, 232, 255, 0.12);
  background: rgba(8, 19, 26, 0.88);
  color: #dff8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  flex: 0 0 auto;
  backdrop-filter: blur(4px);
}

.problem-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--accent-2);
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-chip span:not(.problem-icon) {
  display: none;
}

.mini-pacman-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.pacman-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(149, 255, 109, 0.16);
  background: rgba(149, 255, 109, 0.06);
  color: #dff8ff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.runner-hint {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-3);
  text-decoration: none;
  font-weight: 700;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(66, 232, 255, 0.08);
  color: var(--accent-3);
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}

.contact-icon-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.note {
  margin-top: 18px !important;
  font-size: 0.95rem;
  color: var(--muted);
}

@keyframes rackBlink {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

@keyframes monitorGlow {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 18px rgba(66, 232, 255, 0.12);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 28px rgba(66, 232, 255, 0.24);
  }
}

@keyframes fpsPulse {
  0%,
  100% {
    transform: scaleY(0.7);
    transform-origin: bottom;
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.58;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes orbitBeat {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.54;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes coreSpin {
  0% {
    transform: rotate(0deg);
    filter: hue-rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    filter: hue-rotate(18deg);
  }
}

@keyframes apiBars {
  0%,
  100% {
    transform: scaleY(0.55);
    transform-origin: bottom;
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes routeShift {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.92);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes routeDot {
  0%,
  100% {
    transform: translateX(-4px);
    opacity: 0.7;
  }

  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}

@keyframes gridDrift {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(120px);
  }
}

@keyframes orbFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(30px, -24px, 0);
  }
}

@keyframes orbFloatB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-36px, 22px, 0);
  }
}

@keyframes topbarSweep {
  0% {
    transform: translateX(0) skewX(-22deg);
  }

  100% {
    transform: translateX(760%) skewX(-22deg);
  }
}

@keyframes brandPulse {
  0%,
  100% {
    box-shadow: 0 0 24px rgba(66, 232, 255, 0.26);
  }

  50% {
    box-shadow: 0 0 34px rgba(149, 255, 109, 0.34);
  }
}

@keyframes buttonSweep {
  0% {
    transform: translateX(0) skewX(-20deg);
  }

  100% {
    transform: translateX(520%) skewX(-20deg);
  }
}

@keyframes tickerBlink {
  0%,
  100% {
    opacity: 0.72;
    border-color: rgba(66, 232, 255, 0.12);
  }

  50% {
    opacity: 1;
    border-color: rgba(149, 255, 109, 0.24);
  }
}

@keyframes statPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: none;
  }

  50% {
    transform: translateY(-3px);
    box-shadow: 0 0 24px rgba(66, 232, 255, 0.08);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes logoMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 6px));
  }
}

@keyframes pulseShift {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.98);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes pacmanMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

@keyframes dotBlink {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1120px) {
  .hero,
  .cta,
  .problem-solution,
  .network-spotlight {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .service-grid,
  .why-grid,
  .format-grid,
  .process-list,
  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 24px, var(--container));
    padding-top: 14px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
    padding: 18px;
  }

  .hero-visual {
    transform: none;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .trusted,
  .services,
  .process,
  .why-us,
  .cta,
  .problem-solution,
  .format-section,
  .testimonial-section,
  .proof-band,
  .network-spotlight {
    padding: 22px;
  }

  .hero h1 {
    max-width: none;
  }

  .project-grid,
  .service-grid,
  .why-grid,
  .format-grid,
  .process-list,
  .stats-ribbon,
  .mini-grid,
  .proof-band,
.incident-feed {
    grid-template-columns: 1fr;
  }

  .project-card.featured {
    grid-column: span 1;
  }
}
