@charset "UTF-8";
/* ===== BASE STYLES — GlacierPhonk™ ===== */
/* Shared across all pages: reset, tokens, background, nav, footer */
:root {
  --black: #0A0E17;
  --black-light: #0f1420;
  --cyan: #00D4FF;
  --purple: #7B2FBE;
  --frost: #E0F7FA;
  --frost-muted: #E0F7FAaa;
  --frost-subtle: #E0F7FA88;
  --frost-dim: #E0F7FA44;
  --gradient: linear-gradient(135deg, var(--cyan), var(--purple));
  --border-subtle: rgba(224,247,250,0.06);
  --border-faint: rgba(224,247,250,0.04);
  --nav-height: 56px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 44px);
}

body {
  background: var(--black);
  color: var(--frost);
  font-family: "Chakra Petch", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--cyan);
  color: var(--black);
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--frost);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 8px 16px;
  background: var(--cyan);
  color: var(--black);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
}
.skip-link:focus {
  top: 0;
}

/* ===== FOCUS STYLES ===== */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.nav-mark:focus-visible {
  outline-offset: 4px;
}

/* ===== NOISE OVERLAY ===== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 150;
}

/* ===== GRID BACKGROUND ===== */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(var(--frost-dim) 1px, transparent 1px), linear-gradient(90deg, var(--frost-dim) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* ===== GLOW ===== */
.glow-cyan {
  position: fixed;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.glow-purple {
  position: fixed;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-faint);
}

.nav-mark {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--frost-muted);
  text-decoration: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease-out;
}
.nav-links a:hover {
  color: var(--cyan);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links a.active {
  color: var(--cyan);
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
  }
}
@media (max-width: 640px) {
  nav {
    padding: 12px 16px;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-links a {
    font-size: 0.6rem;
    padding: 8px 6px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
@media (max-width: 360px) {
  .nav-links {
    gap: 4px;
  }
  .nav-links a {
    font-size: 0.55rem;
    padding: 8px 4px;
  }
  .nav-mark {
    font-size: 0.75rem;
  }
}
/* ===== SECTION COMMON ===== */
.section-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
}
.btn:active {
  transform: translateY(1px);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--frost);
  border: 1px solid var(--frost-dim);
}
.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: 0 0 20px rgba(123, 47, 190, 0.2);
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  padding-bottom: max(40px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border-faint);
}
footer pre {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  color: var(--frost-subtle);
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.4;
}
footer p {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: var(--frost-subtle);
  letter-spacing: 1px;
}
footer .tm {
  color: var(--frost-muted);
}
footer a {
  color: var(--frost-subtle);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--cyan);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 1px;
}
.footer-links a {
  padding: 4px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

section {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) {
  section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  max-width: none;
  overflow: clip;
}

.hero-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}

.hero-title {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
}

.hero-line {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  position: relative;
}

/* GLACIER — neon cyan */
.glacier {
  font-size: clamp(3.5rem, 13vw, 10rem);
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.9), 0 0 30px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.3), 0 0 100px rgba(0, 212, 255, 0.15);
  transition: transform 0.05s step-end;
}

/* PHONK — raw frost */
.phonk {
  font-size: clamp(4rem, 16vw, 12rem);
  letter-spacing: 0.12em;
  color: var(--frost);
  text-shadow: 0 0 30px rgba(224, 247, 250, 0.08);
  transition: transform 0.05s step-end;
}

.hero-heading {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--frost);
  max-width: 640px;
  line-height: 1.35;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--frost-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.75s;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  color: var(--frost-subtle);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.9s;
}
.hero-proof span:first-child {
  color: var(--cyan);
}
.hero-proof span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--frost-dim);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards 1.05s;
}

.btn-primary {
  background: var(--cyan);
  color: var(--black);
}
.btn-primary .arrow {
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}
.btn-primary:hover {
  background: var(--frost);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(0, 212, 255, 0.15);
}

@media (max-width: 640px) {
  .hero {
    padding-top: 100px;
  }
  .hero-heading {
    font-size: 1.35rem;
  }
  .hero-desc {
    font-size: 0.9rem;
  }
  .hero-proof {
    font-size: 0.72rem;
    gap: 5px 6px;
  }
  .hero-proof span + span::before {
    margin-right: 6px;
  }
}
/* CRT scanlines */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(0, 0, 0, 0.07) 3px, rgba(0, 0, 0, 0.07) 4px);
  pointer-events: none;
  z-index: 5;
}

/* Vaporwave perspective grid */
.hero-grid-floor {
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 212, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
  background-size: 100px 70px;
  transform: perspective(600px) rotateX(45deg);
  transform-origin: 50% 100%;
  mask-image: linear-gradient(to top, black 15%, transparent 75%);
  -webkit-mask-image: linear-gradient(to top, black 15%, transparent 75%);
  z-index: 1;
  animation: grid-scroll 0.08s linear infinite;
  will-change: background-position;
}

@keyframes grid-scroll {
  from {
    background-position-y: 0;
  }
  to {
    background-position-y: 70px;
  }
}
/* Fog glow behind title */
.hero-fog {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 190, 0.06) 30%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Chromatic aberration on GLACIER */
.glacier::before, .glacier::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  text-shadow: none;
}
.glacier::before {
  color: rgba(255, 30, 30, 0.12);
  animation: chromatic-r 6s ease-in-out infinite;
}
.glacier::after {
  color: rgba(30, 30, 255, 0.12);
  animation: chromatic-b 6s ease-in-out infinite;
}

@keyframes chromatic-r {
  0%, 100% {
    transform: translate(-2px, 1px);
  }
  33% {
    transform: translate(-3px, 0px);
  }
  66% {
    transform: translate(-1px, 2px);
  }
}
@keyframes chromatic-b {
  0%, 100% {
    transform: translate(2px, -1px);
  }
  33% {
    transform: translate(3px, 0px);
  }
  66% {
    transform: translate(1px, -2px);
  }
}
@media (max-width: 640px) {
  .hero-grid-floor {
    height: 80%;
  }
  .hero-fog {
    height: 300px;
  }
}
.services {
  padding: 120px 24px 80px;
}
.services .section-title {
  margin-bottom: 0;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.service-item {
  background: var(--black-light);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 28px;
  position: relative;
}
.service-item h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--frost);
}
.service-item p {
  color: var(--frost-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 600px;
}

.service-featured {
  border-color: rgba(0, 212, 255, 0.15);
  background: rgba(0, 212, 255, 0.02);
  overflow: hidden;
}
.service-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient);
  border-radius: 10px 0 0 10px;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.service-type {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  flex-shrink: 0;
}

.service-capabilities,
.build-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  color: var(--frost-subtle);
}
.service-capabilities span + span::before,
.build-capabilities span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--frost-dim);
}

.services-cta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(224, 247, 250, 0.08);
}
.services-cta p {
  color: var(--frost-subtle);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.services-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.5px;
  min-height: 44px;
  transition: color 0.2s;
}
.services-cta-link span {
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.services-cta-link:hover {
  color: var(--frost);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.services-cta-link:hover span {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .services {
    padding: 80px 16px 60px;
  }
  .service-item {
    padding: 24px 20px;
  }
  .service-featured {
    padding: 24px 20px;
  }
  .service-capabilities,
  .build-capabilities {
    font-size: 0.6rem;
  }
}
.about {
  padding: 120px 24px;
}
.about p {
  color: var(--frost-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 16px;
}
.about .highlight {
  color: var(--frost);
  font-weight: 600;
}

.builds {
  padding: 80px 24px 120px;
}

.builds-intro {
  color: var(--frost-muted);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.7;
}

.builds-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.build-item {
  display: block;
  background: var(--black-light);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 28px;
  text-decoration: none;
  color: var(--frost);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.build-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.build-item h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.build-item h3::after {
  content: " →";
  color: var(--frost-subtle);
  transition: color 0.2s;
}
.build-item p {
  color: var(--frost-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 600px;
}
.build-item:hover {
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateX(4px);
}
.build-item:hover::before {
  opacity: 1;
}
.build-item:hover h3::after {
  color: var(--cyan);
}

.build-featured {
  border-color: rgba(0, 212, 255, 0.15);
  background: rgba(0, 212, 255, 0.02);
}
.build-featured::before {
  opacity: 1;
}

.build-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.build-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.build-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.build-type {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
}

.build-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
}

.build-status-dev {
  color: var(--purple);
  background: rgba(123, 47, 190, 0.12);
}

.builds-cta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(224, 247, 250, 0.08);
}

.builds-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.5px;
  min-height: 44px;
  transition: color 0.2s;
}
.builds-cta-link span {
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.builds-cta-link:hover {
  color: var(--frost);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.builds-cta-link:hover span {
  transform: translateX(4px);
}

.builds-log-link {
  display: block;
  margin-top: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--frost-subtle);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.builds-log-link span {
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.builds-log-link:hover {
  color: var(--frost-muted);
}
.builds-log-link:hover span {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .build-item {
    padding: 24px 20px;
  }
  .build-featured {
    padding: 24px 20px;
  }
}
.process {
  padding: 80px 24px;
}

.process-intro {
  color: var(--frost);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.7;
}

.process-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), var(--purple));
  opacity: 0.35;
}

.process-step {
  display: block;
  background: transparent;
  border: none;
  padding: 32px 28px 32px 36px;
  position: relative;
}
.process-step::before {
  content: "";
  position: absolute;
  top: 39.5px;
  left: 1.5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: box-shadow 0.3s ease-out;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 39.5px;
  left: 1.5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.15);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: border-color 0.3s ease-out;
}
.process-step:hover::before {
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.7), 0 0 28px rgba(0, 212, 255, 0.25);
}
.process-step:hover::after {
  border-color: rgba(0, 212, 255, 0.3);
}
.process-step + .process-step {
  border-top: 1px solid var(--border-subtle);
}
.process-step dt {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.process-step dt::before {
  content: "> ";
  opacity: 0.5;
}
.process-step dd {
  color: var(--frost-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

.process-number {
  position: absolute;
  top: 6px;
  right: 8px;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 5.5rem;
  color: var(--frost);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  color: var(--frost-subtle);
}
.process-detail span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--frost-dim);
}

@media (max-width: 640px) {
  .process-step {
    padding: 28px 20px 28px 32px;
  }
  .process-number {
    font-size: 4rem;
  }
  .process-detail {
    font-size: 0.6rem;
  }
}
.faq {
  padding: 80px 24px;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.faq-item {
  display: block;
}
.faq-item dt {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--frost);
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-item dd {
  color: var(--frost-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

.contributions {
  padding: 80px 24px 120px;
}

.contributions-intro {
  color: var(--frost-muted);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.7;
}

.contributions-stats {
  display: flex;
  gap: 6px 8px;
  margin-top: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  color: var(--frost-subtle);
}

.contributions-stat + .contributions-stat::before {
  content: "·";
  margin-right: 8px;
  color: var(--frost-dim);
}

.contributions-stat-accent {
  color: #4ade80;
}

.contributions-cta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(224, 247, 250, 0.08);
}

.contributions-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.5px;
  min-height: 44px;
  transition: color 0.2s;
}
.contributions-cta-link span {
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.contributions-cta-link:hover {
  color: var(--frost);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.contributions-cta-link:hover span {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .contributions {
    padding: 80px 16px 80px;
  }
}
.contributions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  position: relative;
  padding-left: 20px;
}
.contributions-list::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, #4ade80, var(--cyan));
  opacity: 0.3;
}

.contrib-item {
  display: block;
  background: var(--black-light);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 28px;
  text-decoration: none;
  color: var(--frost);
  position: relative;
  transition: border-color 0.3s ease-out, transform 0.3s ease-out;
}
.contrib-item::before {
  content: "";
  position: absolute;
  top: 31.5px;
  left: -17.5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5), 0 0 16px rgba(74, 222, 128, 0.15);
  transform: translate(-50%, -50%);
  transition: box-shadow 0.3s ease-out;
}
.contrib-item::after {
  content: "";
  position: absolute;
  top: 31.5px;
  left: -17.5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.15);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: border-color 0.3s ease-out;
}
.contrib-item:hover {
  border-color: rgba(74, 222, 128, 0.2);
  transform: translateX(4px);
}
.contrib-item:hover::before {
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.7), 0 0 24px rgba(74, 222, 128, 0.25);
}
.contrib-item:hover::after {
  border-color: rgba(74, 222, 128, 0.3);
}
.contrib-item:hover .contrib-project::after {
  color: #4ade80;
}

.contrib-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.contrib-type {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  flex-shrink: 0;
}

.contrib-project {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--frost);
}
.contrib-project::after {
  content: " ↗";
  color: var(--frost-subtle);
  font-size: 0.8em;
  transition: color 0.2s;
}

.contrib-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
}

.contrib-pr {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: var(--frost-dim);
  margin-left: auto;
}

.contrib-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  color: var(--frost-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.contrib-desc {
  color: var(--frost-subtle);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

.contrib-quote {
  margin-top: 14px;
  padding: 10px 14px;
  border-left: 2px solid rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.03);
  border-radius: 0 6px 6px 0;
}

.contrib-quote-text {
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--frost);
}

.contrib-quote-author {
  display: block;
  margin-top: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: var(--frost-subtle);
  letter-spacing: 0.5px;
  font-style: normal;
}

@media (max-width: 640px) {
  .contributions-list {
    padding-left: 16px;
  }
  .contrib-item {
    padding: 20px;
  }
  .contrib-header {
    gap: 8px;
    flex-wrap: wrap;
  }
  .contrib-pr {
    margin-left: 0;
  }
  .contrib-title {
    font-size: 0.85rem;
  }
  .contrib-desc {
    font-size: 0.8rem;
  }
  .contrib-quote {
    padding: 8px 12px;
  }
}
.contact {
  padding: 80px 24px 120px;
  text-align: center;
}
.contact .section-title {
  margin-bottom: 16px;
}
.contact p {
  color: var(--frost-muted);
  font-size: 1rem;
  margin-bottom: 32px;
}

.contact-cta {
  font-size: 0.85rem;
}
.contact-cta .arrow {
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.contact-cta:hover .arrow {
  transform: translateX(4px);
}

.contact-fallback {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--frost-subtle);
  margin-top: 20px;
  margin-bottom: 0;
}
.contact-fallback a {
  color: var(--frost-subtle);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.contact-fallback a:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.divider {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.divider hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 247, 250, 0.08), transparent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-label, .hero-title, .hero-heading, .hero-desc, .hero-proof, .hero-cta {
    opacity: 1;
    animation: none;
  }
  .hero-grid-floor,
  .hero-scanlines {
    display: none;
  }
  .glacier::before,
  .glacier::after {
    animation: none;
    display: none;
  }
}
/* ===== LOG LISTING LAYOUT ===== */
.log-header {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 104px) 24px 0;
}

.log-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px 120px;
}

@media (max-width: 640px) {
  .log-header {
    padding: calc(var(--nav-height) + 84px) 16px 0;
  }
  .log-content {
    padding: 0 16px 80px;
  }
}
/* ===== LOG LISTING ===== */
.log-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.log-entry {
  background: var(--black-light);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--frost);
  display: block;
}
.log-entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.log-entry:hover {
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}
.log-entry:hover::before {
  opacity: 1;
}

.log-entry-date {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: var(--frost-subtle);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.log-entry-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.log-entry-excerpt {
  color: var(--frost-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.log-entry-tags {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Stretched link — card clickable via title link overlay */
.log-entry-link {
  color: inherit;
  text-decoration: none;
}
.log-entry-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.log-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.06);
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.log-tag:hover {
  background: rgba(0, 212, 255, 0.14);
  color: var(--cyan);
}

/* ===== TAG NAVIGATION ===== */
.log-tag-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 12px 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 10;
  background: var(--black);
}

.log-tag-pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: var(--frost-subtle);
  background: rgba(224, 247, 250, 0.04);
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.log-tag-pill:hover {
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.06);
}
.log-tag-pill.active {
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
}

/* ===== LOG EMPTY STATE ===== */
.log-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--frost-subtle);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ===== LOG POST LAYOUT ===== */
.log-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 240px;
  gap: 48px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

.log-post {
  padding: calc(var(--nav-height) + 104px) 0 80px;
}

@media (max-width: 860px) {
  .log-post-layout {
    grid-template-columns: 1fr;
    max-width: 720px;
    gap: 0;
  }
  .log-post {
    padding: calc(var(--nav-height) + 84px) 0 60px;
  }
}
@media (max-width: 640px) {
  .log-post-layout {
    padding: 0 16px;
  }
}
.log-meta {
  margin-bottom: 48px;
}

.log-meta-date {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: var(--frost-subtle);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.log-meta-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.log-meta-excerpt {
  color: var(--frost-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.log-meta-excerpt a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.log-meta-excerpt a:hover {
  border-bottom-color: var(--cyan);
}

/* ===== LOG BODY TYPOGRAPHY ===== */
.log-body {
  color: var(--frost-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.log-body h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--frost);
  margin: 48px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--cyan);
}
.log-body h3 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--frost);
  margin: 32px 0 12px;
}
.log-body p {
  margin-bottom: 20px;
}
.log-body a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.log-body a:hover {
  border-bottom-color: var(--cyan);
}
.log-body code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85em;
  background: var(--border-subtle);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--frost);
}
.log-body pre {
  background: var(--black-light);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 24px 0;
}
.log-body pre code {
  background: none;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1.6;
}
.log-body blockquote {
  border-left: 3px solid var(--purple);
  padding: 12px 20px;
  margin: 24px 0;
  color: var(--frost-muted);
  font-style: italic;
}
.log-body ul, .log-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.log-body li {
  margin-bottom: 8px;
}
.log-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}

/* ===== LOG VELOCITY ===== */
.log-velocity {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.5px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(224, 247, 250, 0.08);
}

/* ===== LOG NAV ===== */
.log-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}
.log-nav a {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--frost-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.log-nav a:hover {
  color: var(--cyan);
}

.log-back {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--frost-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  display: inline-block;
  margin-bottom: 32px;
}
.log-back:hover {
  color: var(--cyan);
}

/* ===== LOG SIDEBAR ===== */
.log-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  align-self: start;
  padding-top: calc(var(--nav-height) + 104px);
}

.log-sidebar-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.log-sidebar-block:first-child {
  padding-top: 0;
}
.log-sidebar-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.log-sidebar-block--tight {
  padding: 16px 0;
}

.log-sidebar-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--frost-subtle);
  margin-bottom: 12px;
}

.log-sidebar-about {
  font-size: 0.8rem;
  color: var(--frost-muted);
  line-height: 1.6;
  margin: 0;
}
.log-sidebar-about a {
  color: var(--frost);
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s, border-color 0.2s;
}
.log-sidebar-about a:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.log-sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: var(--cyan);
  text-decoration: none;
  padding: 12px 16px;
  border: 1px solid var(--cyan);
  border-radius: 6px;
  min-height: 44px;
  transition: background 0.2s, color 0.2s;
}
.log-sidebar-cta:hover, .log-sidebar-cta:focus-visible {
  background: var(--cyan);
  color: var(--black);
}
.log-sidebar-cta span {
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.log-sidebar-cta:hover span {
  transform: translateX(4px);
}

.log-sidebar-related {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.log-sidebar-post {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.log-sidebar-post:hover .log-sidebar-post-title, .log-sidebar-post:focus-visible .log-sidebar-post-title {
  color: var(--cyan);
}

.log-sidebar-post-date {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--frost-subtle);
}

.log-sidebar-post-title {
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--frost);
  line-height: 1.4;
  transition: color 0.2s;
}

.log-sidebar-follow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}
.log-sidebar-follow a {
  color: var(--frost-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
}
.log-sidebar-follow a:hover {
  color: var(--cyan);
}

.log-sidebar-sep {
  color: var(--frost-subtle);
  margin: 0 8px;
}

@media (max-width: 860px) {
  .log-sidebar {
    position: static;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid var(--border-subtle);
  }
}
@media (max-width: 640px) {
  .log-sidebar {
    padding-top: 24px;
    margin-top: 24px;
  }
}
/* ===== PAGE LAYOUT ===== */
.services-page {
  position: relative;
  z-index: 1;
}

/* ===== SERVICES HERO ===== */
.services-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.services-hero .section-title {
  margin-bottom: 16px;
}

.services-hero-desc {
  color: var(--frost-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
}

.services-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  color: var(--frost-subtle);
}
.services-hero-proof span:first-child {
  color: var(--cyan);
}
.services-hero-proof span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--frost-dim);
}

/* ===== HERO PLATFORM NOTE ===== */
.services-hero-platform {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--frost-subtle);
  line-height: 1.7;
  max-width: 620px;
}
.services-hero-platform a {
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  transition: color 0.2s, border-color 0.2s;
}
.services-hero-platform a:hover {
  border-bottom-color: var(--frost);
}

/* ===== HERO JUMP LINKS ===== */
.services-hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.services-hero-link {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--frost-muted);
  padding: 10px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.services-hero-link:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 640px) {
  .services-hero {
    padding: 120px 16px 60px;
  }
  .services-hero-cta {
    flex-wrap: wrap;
    gap: 8px;
  }
  .services-hero-link {
    font-size: 0.65rem;
    padding: 8px 16px;
  }
}
/* ===== SERVICE SECTION ===== */
.service-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* ===== SERVICE HEADER ===== */
.svc-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  border: 1px solid var(--border-subtle);
}

.svc-icon-bot {
  background: rgba(0, 212, 255, 0.06);
  color: var(--cyan);
}

.svc-icon-app {
  background: rgba(123, 47, 190, 0.08);
  color: var(--purple);
}

.svc-icon-channel {
  background: rgba(224, 247, 250, 0.04);
  color: var(--frost-muted);
}

.svc-type {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}

.svc-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--frost);
  line-height: 1.2;
}

/* ===== SERVICE DESCRIPTION ===== */
.svc-desc {
  color: var(--frost-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 40px;
}

/* ===== SECTION RESPONSIVE ===== */
@media (max-width: 640px) {
  .service-section {
    padding: 60px 16px;
  }
  .svc-header {
    gap: 14px;
  }
  .svc-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
/* ===== CAPABILITIES GRID ===== */
.svc-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.svc-cap {
  background: var(--black-light);
  padding: 24px;
}

.svc-cap-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.svc-cap p {
  color: var(--frost-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ===== USE CASES ===== */
.svc-usecases {
  margin-bottom: 40px;
}

.svc-usecases-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--frost-subtle);
  margin-bottom: 16px;
}

.svc-usecase-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-usecase-list li {
  color: var(--frost-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.svc-usecase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--cyan);
}

/* ===== CAPABILITIES RESPONSIVE ===== */
@media (max-width: 640px) {
  .svc-capabilities {
    grid-template-columns: 1fr;
  }
  .svc-cap {
    padding: 20px 16px;
  }
}
/* ===== TECH STACK ===== */
.svc-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.svc-stack-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  color: var(--frost-subtle);
  padding: 6px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  background: var(--black-light);
}

/* ===== PORTFOLIO REFERENCE ===== */
.svc-portfolio {
  margin-bottom: 40px;
}

.svc-portfolio-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--frost-subtle);
  margin-bottom: 16px;
}

.svc-portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-portfolio-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--black-light);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  text-decoration: none;
  color: var(--frost);
  transition: border-color 0.3s, transform 0.2s;
}
.svc-portfolio-item:hover {
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateX(4px);
}
.svc-portfolio-item:hover .svc-portfolio-name::after {
  color: var(--cyan);
}

.svc-portfolio-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.svc-portfolio-name {
  font-family: "Orbitron", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.svc-portfolio-name::after {
  content: " →";
  color: var(--frost-subtle);
  transition: color 0.2s;
}

.svc-portfolio-detail {
  font-size: 0.75rem;
  color: var(--frost-subtle);
  margin-top: 2px;
}

/* ===== PORTFOLIO RESPONSIVE ===== */
@media (max-width: 640px) {
  .svc-portfolio-item {
    padding: 14px 16px;
  }
}
/* ===== SERVICE FAQ ===== */
.svc-faq {
  margin-bottom: 40px;
}

.svc-faq-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--frost-subtle);
  margin-bottom: 20px;
}

.svc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-faq-item dt {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--frost);
  margin-bottom: 6px;
  line-height: 1.4;
}
.svc-faq-item dd {
  color: var(--frost-muted);
  font-size: 0.8rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

/* ===== SERVICE PRICING ===== */
.svc-pricing {
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--black-light);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}

.svc-pricing-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}

.svc-pricing p {
  color: var(--frost-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

.svc-pricing strong {
  color: var(--frost);
}

/* ===== SERVICE CTA ===== */
.svc-cta {
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.5px;
  min-height: 44px;
  transition: color 0.2s;
}
.svc-cta span {
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.svc-cta:hover {
  color: var(--frost);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.svc-cta:hover span {
  transform: translateX(4px);
}

/* ===== DIVIDERS ===== */
.svc-divider {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.svc-divider hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 247, 250, 0.08), transparent);
}

/* ===== BOTTOM CTA ===== */
.services-bottom-cta {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  text-align: center;
}
.services-bottom-cta .section-title {
  margin-bottom: 16px;
}
.services-bottom-cta p {
  color: var(--frost-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.services-bottom-cta .btn-primary {
  background: var(--cyan);
  color: var(--black);
}
.services-bottom-cta .btn-primary .arrow {
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.services-bottom-cta .btn-primary:hover .arrow {
  transform: translateX(4px);
}
.services-bottom-cta .btn-primary:hover {
  background: var(--frost);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(0, 212, 255, 0.15);
}

/* ===== CTA RESPONSIVE ===== */
@media (max-width: 640px) {
  .services-bottom-cta {
    padding: 60px 16px 80px;
  }
  .svc-divider {
    padding: 0 16px;
  }
}
/* ===== SCROLL REVEAL ===== */
.svc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.svc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .svc-reveal {
    opacity: 1;
    transform: none;
  }
}
.error-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  position: relative;
  text-shadow: 0 0 80px rgba(0, 212, 255, 0.3), 0 0 160px rgba(123, 47, 190, 0.15);
  animation: glitch-skew 8s step-end infinite;
}
.error-heading::before, .error-heading::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  -webkit-text-fill-color: unset;
  pointer-events: none;
  clip-path: inset(50% 0 50% 0);
}
.error-heading::before {
  color: var(--cyan);
  opacity: 0.7;
  animation: glitch-cyan 4s step-end infinite;
}
.error-heading::after {
  color: var(--purple);
  opacity: 0.7;
  animation: glitch-purple 3.5s step-end infinite;
}

@keyframes glitch-skew {
  0%, 100% {
    transform: skewX(0deg);
  }
  3% {
    transform: skewX(-2deg);
  }
  4% {
    transform: skewX(0deg);
  }
  47% {
    transform: skewX(1.5deg);
  }
  48% {
    transform: skewX(0deg);
  }
  82% {
    transform: skewX(-1deg);
  }
  83% {
    transform: skewX(0deg);
  }
}
@keyframes glitch-cyan {
  0%, 100% {
    clip-path: inset(50% 0 50% 0);
    transform: translate(0);
  }
  3% {
    clip-path: inset(15% 0 55% 0);
    transform: translate(-5px, -2px);
  }
  5% {
    clip-path: inset(50% 0 50% 0);
    transform: translate(0);
  }
  42% {
    clip-path: inset(60% 0 10% 0);
    transform: translate(-4px, 1px);
  }
  44% {
    clip-path: inset(50% 0 50% 0);
    transform: translate(0);
  }
  78% {
    clip-path: inset(5% 0 75% 0);
    transform: translate(-3px, 0);
  }
  80% {
    clip-path: inset(50% 0 50% 0);
    transform: translate(0);
  }
}
@keyframes glitch-purple {
  0%, 100% {
    clip-path: inset(50% 0 50% 0);
    transform: translate(0);
  }
  8% {
    clip-path: inset(65% 0 5% 0);
    transform: translate(5px, 2px);
  }
  10% {
    clip-path: inset(50% 0 50% 0);
    transform: translate(0);
  }
  50% {
    clip-path: inset(10% 0 60% 0);
    transform: translate(3px, -1px);
  }
  52% {
    clip-path: inset(50% 0 50% 0);
    transform: translate(0);
  }
  85% {
    clip-path: inset(40% 0 30% 0);
    transform: translate(4px, 1px);
  }
  87% {
    clip-path: inset(50% 0 50% 0);
    transform: translate(0);
  }
}
.error-terminal {
  margin-bottom: 2rem;
}

.error-line {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  color: var(--frost-subtle);
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  margin: 0.25rem 0;
}

.error-line-1 {
  animation: type-15 0.9s steps(15) 0.5s forwards;
}

.error-line-2 {
  animation: type-20 1.2s steps(20) 1.8s forwards;
}

.error-cursor {
  animation: cursor-blink 0.7s step-end 3s infinite;
}

@keyframes type-15 {
  to {
    width: 15ch;
  }
}
@keyframes type-20 {
  to {
    width: 20ch;
  }
}
@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}
.particle {
  position: fixed;
  width: 2px;
  height: 2px;
  background: var(--frost);
  border-radius: 50%;
  opacity: 0;
  animation: drift 8s linear infinite;
}

.particle:nth-child(2) {
  left: 15%;
  width: 3px;
  height: 3px;
  animation-duration: 11s;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  left: 35%;
  animation-duration: 9s;
  animation-delay: 3s;
}

.particle:nth-child(4) {
  left: 55%;
  width: 1px;
  height: 1px;
  animation-duration: 13s;
  animation-delay: 2s;
}

.particle:nth-child(5) {
  left: 70%;
  animation-duration: 10s;
  animation-delay: 4s;
}

.particle:nth-child(6) {
  left: 85%;
  width: 3px;
  height: 3px;
  animation-duration: 12s;
  animation-delay: 0.5s;
}

.particle:nth-child(7) {
  left: 45%;
  animation-duration: 14s;
  animation-delay: 5s;
}

.particle:nth-child(8) {
  left: 25%;
  width: 1px;
  height: 1px;
  animation-duration: 9s;
  animation-delay: 6s;
}

@keyframes drift {
  0% {
    opacity: 0;
    transform: translateY(100vh);
  }
  20% {
    opacity: 0.4;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height) - 8rem);
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.error-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(0, 0, 0, 0.07) 3px, rgba(0, 0, 0, 0.07) 4px);
  pointer-events: none;
  z-index: 5;
}

.error-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, rgba(123, 47, 190, 0.05) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.error-page .back-link {
  color: var(--cyan);
  text-decoration: none;
  border: 1px solid var(--cyan);
  padding: 0.75rem 2rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  transition: all 0.3s;
  opacity: 0;
  animation: fade-in 0.5s ease 3.5s forwards;
}
.error-page .back-link:hover {
  background: var(--cyan);
  color: var(--black);
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .error-heading {
    animation: none;
  }
  .error-heading::before, .error-heading::after {
    display: none;
  }
  .error-scanlines {
    display: none;
  }
  .particle {
    display: none;
  }
  .error-line {
    width: auto;
    overflow: visible;
    animation: none;
  }
  .error-cursor {
    display: none;
  }
  .error-page .back-link {
    opacity: 1;
    animation: none;
  }
}
@media (max-width: 640px) {
  .error-heading {
    font-size: clamp(3.5rem, 20vw, 5rem);
  }
  .error-line {
    font-size: 0.8rem;
  }
  .error-glow {
    width: 300px;
    height: 200px;
  }
}