﻿:root {
  --background-dark: #050711;
  --background-deep: #070d1d;
  --background-panel: rgba(10, 18, 38, 0.78);
  --background-panel-strong: rgba(13, 22, 48, 0.92);
  --neon-cyan: #21f6ff;
  --neon-purple: #9b5cff;
  --neon-blue: #2d8cff;
  --cyber-green: #5cffb0;
  --signal-amber: #ffd36b;
  --warning-violet: #d16cff;
  --text-white: #f4fbff;
  --text-muted: #a8b7cf;
  --border-glow: rgba(33, 246, 255, 0.34);
  --panel-border: rgba(124, 178, 255, 0.28);
  --shadow-cyan: 0 0 26px rgba(33, 246, 255, 0.18);
  --shadow-purple: 0 0 30px rgba(155, 92, 255, 0.18);
  --radius-small: 8px;
  --max-width: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 10%, rgba(33, 246, 255, 0.13), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(155, 92, 255, 0.18), transparent 32%),
    linear-gradient(135deg, var(--background-dark), var(--background-deep) 52%, #09061a);
  color: var(--text-white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025) 0,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: screen;
  opacity: 0.36;
}

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

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

.site-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(122deg, transparent 0 19%, rgba(255, 211, 107, 0.045) 19.2% 19.6%, transparent 19.8% 100%),
    linear-gradient(58deg, transparent 0 63%, rgba(33, 246, 255, 0.055) 63.2% 63.6%, transparent 63.8% 100%);
}

.background-grid,
.particle-layer,
.glow {
  position: fixed;
  pointer-events: none;
  z-index: -3;
}

.background-grid {
  inset: 0;
  background:
    linear-gradient(rgba(33, 246, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 140, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 88%);
  animation: gridDrift 22s linear infinite;
}

.particle-layer {
  inset: 0;
  background:
    radial-gradient(circle, rgba(33, 246, 255, 0.75) 0 1px, transparent 2px) 10% 18% / 120px 120px,
    radial-gradient(circle, rgba(92, 255, 176, 0.55) 0 1px, transparent 2px) 84% 28% / 150px 150px,
    radial-gradient(circle, rgba(155, 92, 255, 0.55) 0 1px, transparent 2px) 50% 70% / 170px 170px;
  opacity: 0.4;
  animation: particleFloat 18s ease-in-out infinite alternate;
}

.glow {
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  filter: blur(68px);
  opacity: 0.22;
}

.glow-cyan {
  top: 18%;
  left: -8%;
  background: var(--neon-cyan);
  animation: glowMove 11s ease-in-out infinite alternate;
}

.glow-violet {
  right: -10%;
  bottom: 14%;
  background: var(--neon-purple);
  animation: glowMove 13s ease-in-out infinite alternate-reverse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 7, 17, 0.72);
  border-bottom: 1px solid rgba(33, 246, 255, 0.28);
  box-shadow: 0 1px 26px rgba(33, 246, 255, 0.15);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(100% - 32px, var(--max-width));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(33, 246, 255, 0.45);
}

.logo-mark {
  width: 50px;
  height: 42px;
  position: relative;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 0 12px rgba(33, 246, 255, 0.34));
}

.logo-mark span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 24px;
  border-top: 1px solid rgba(33, 246, 255, 0.55);
  border-bottom: 1px solid rgba(255, 211, 107, 0.38);
  color: var(--text-white);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 12px rgba(33, 246, 255, 0.8);
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  pointer-events: none;
  clip-path: polygon(50% 0, 93% 17%, 84% 74%, 50% 100%, 16% 74%, 7% 17%);
}

.logo-mark::before {
  inset: 0;
  background: linear-gradient(145deg, var(--neon-cyan), var(--cyber-green) 48%, var(--signal-amber));
  opacity: 0.98;
}

.logo-mark::after {
  inset: 3px 4px 5px;
  background:
    radial-gradient(circle at 50% 18%, rgba(92, 255, 176, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(33, 246, 255, 0.14), rgba(5, 9, 22, 0.96) 56%),
    rgba(5, 9, 22, 0.98);
  box-shadow: inset 0 0 14px rgba(33, 246, 255, 0.26);
}

.logo-text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.logo-primary {
  color: var(--text-white);
  font-size: 1rem;
}

.logo-secondary {
  color: var(--signal-amber);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.58rem;
  text-shadow: 0 0 12px rgba(255, 211, 107, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text-white);
  text-shadow: 0 0 16px rgba(33, 246, 255, 0.65);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-small);
  background: rgba(11, 19, 40, 0.82);
  color: var(--text-white);
  cursor: pointer;
  box-shadow: var(--shadow-cyan);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(33, 246, 255, 0.7);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.section-panel {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(350px, 0.82fr);
  align-items: center;
  gap: 42px;
  padding-top: 82px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(33, 246, 255, 0.18);
  opacity: 0.7;
}

.hero::before {
  width: 190px;
  height: 190px;
  right: 31%;
  top: 12%;
  border-radius: 50%;
  box-shadow: inset 0 0 22px rgba(33, 246, 255, 0.18);
}

.hero::after {
  width: 120px;
  height: 120px;
  right: 27%;
  top: 17%;
  transform: rotate(45deg);
}

.eyebrow,
.panel-kicker,
.card-tag,
.mission-number {
  margin: 0 0 12px;
  color: var(--cyber-green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.65rem);
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow:
    0 0 24px rgba(33, 246, 255, 0.25),
    0 0 42px rgba(155, 92, 255, 0.22);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.business-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(33, 246, 255, 0.34);
  border-radius: var(--radius-small);
  background: rgba(33, 246, 255, 0.08);
  color: var(--text-white);
  font-weight: 800;
  box-shadow: var(--shadow-cyan);
}

.brand-emphasis {
  color: var(--neon-cyan);
  text-shadow: 0 0 14px rgba(33, 246, 255, 0.55);
}

.tagline {
  max-width: 680px;
  margin-bottom: 14px;
  color: var(--neon-cyan);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  font-weight: 800;
}

.hero-description,
.section-heading p,
.contact-copy p,
.score-copy,
.service-card p,
.project-card p,
.site-footer p {
  color: var(--text-muted);
}

.hero-description {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: 1.04rem;
}

.hero-actions,
.contact-badges,
.hero-command-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-command-strip {
  position: relative;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid rgba(255, 211, 107, 0.22);
  border-radius: var(--radius-small);
  background:
    linear-gradient(90deg, rgba(255, 211, 107, 0.1), transparent 42%),
    rgba(4, 8, 20, 0.58);
  box-shadow: 0 0 22px rgba(255, 211, 107, 0.08);
}

.hero-command-strip::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  left: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 211, 107, 0.7), rgba(33, 246, 255, 0.18), transparent);
  transform: translateY(-50%);
}

.hero-command-strip span {
  position: relative;
  z-index: 1;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(33, 246, 255, 0.18);
  border-radius: var(--radius-small);
  background: rgba(5, 9, 22, 0.92);
  color: var(--signal-amber);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-small);
  overflow: hidden;
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(33, 246, 255, 0.34), 0 0 34px rgba(155, 92, 255, 0.18);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(110%);
}

.button-primary {
  background: linear-gradient(135deg, rgba(33, 246, 255, 0.28), rgba(45, 140, 255, 0.32), rgba(155, 92, 255, 0.26));
}

.button-secondary,
.button-small {
  background: rgba(10, 18, 38, 0.72);
}

.button-small {
  width: fit-content;
  min-height: 42px;
  padding: 0 15px;
  font-size: 0.8rem;
}

.cyber-panel {
  position: relative;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-small);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    var(--background-panel);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), var(--shadow-cyan), var(--shadow-purple);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.cyber-panel::before,
.cyber-panel::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  pointer-events: none;
}

.cyber-panel::before {
  top: 0;
  left: 0;
  border-top: 2px solid var(--neon-cyan);
  border-left: 2px solid var(--neon-cyan);
}

.cyber-panel::after {
  right: 0;
  bottom: 0;
  border-right: 2px solid var(--neon-purple);
  border-bottom: 2px solid var(--neon-purple);
}

.panel-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(33, 246, 255, 0.11), transparent);
  height: 38%;
  transform: translateY(-110%);
  animation: scanPanel 4.8s ease-in-out infinite;
  pointer-events: none;
}

.dashboard-card {
  padding: 28px;
}

.dashboard-header,
.score-module {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.dashboard-header {
  margin-bottom: 28px;
}

.dashboard-header h2 {
  margin: 0;
  font-size: 1.32rem;
}

.status-pill,
.contact-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(92, 255, 176, 0.36);
  border-radius: var(--radius-small);
  background: rgba(92, 255, 176, 0.08);
  color: var(--cyber-green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyber-green);
  box-shadow: 0 0 12px rgba(92, 255, 176, 0.85);
}

.score-module {
  align-items: center;
  margin-bottom: 28px;
}

.score-ring {
  flex: 0 0 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(8, 13, 30, 0.96) 0 53%, transparent 54%),
    conic-gradient(var(--neon-cyan) 0 94%, rgba(255, 255, 255, 0.09) 94% 100%);
  box-shadow: inset 0 0 24px rgba(33, 246, 255, 0.28), 0 0 26px rgba(33, 246, 255, 0.18);
}

.score-number {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.score-percent {
  margin: 0;
  color: var(--neon-cyan);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.status-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(124, 178, 255, 0.14);
  border-radius: var(--radius-small);
  background: rgba(5, 9, 22, 0.62);
}

.status-list span {
  color: var(--text-muted);
}

.status-list strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
}

.green-text {
  color: var(--cyber-green) !important;
}

.progress-stack {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.progress-stack span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-stack span::before {
  content: "";
  display: block;
  width: var(--bar-size);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyber-green), var(--neon-cyan), var(--neon-purple));
  box-shadow: 0 0 12px rgba(33, 246, 255, 0.55);
}

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

.operation-stack article {
  min-height: 78px;
  padding: 10px;
  border: 1px solid rgba(255, 211, 107, 0.2);
  border-radius: var(--radius-small);
  background:
    linear-gradient(135deg, rgba(255, 211, 107, 0.09), transparent 52%),
    rgba(5, 9, 22, 0.64);
}

.operation-stack span {
  display: block;
  margin-bottom: 8px;
  color: var(--signal-amber);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.68rem;
  font-weight: 900;
}

.operation-stack strong {
  display: block;
  color: var(--text-white);
  font-size: 0.78rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.micro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.micro-grid span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 6px;
  border: 1px solid rgba(33, 246, 255, 0.18);
  border-radius: var(--radius-small);
  color: var(--text-muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.66rem;
  text-align: center;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
  position: relative;
  padding-left: 18px;
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 8px;
  left: 0;
  width: 3px;
  background: linear-gradient(var(--signal-amber), var(--neon-cyan), var(--neon-purple));
  box-shadow: 0 0 16px rgba(33, 246, 255, 0.34);
}

.section-heading p {
  max-width: 720px;
  font-size: 1rem;
}

.services-grid,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

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

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

.service-card,
.project-card {
  min-height: 100%;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card:hover,
.service-card:focus-within,
.project-card:hover,
.project-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(33, 246, 255, 0.72);
  background:
    radial-gradient(circle at top right, rgba(33, 246, 255, 0.12), transparent 38%),
    var(--background-panel-strong);
  box-shadow: 0 0 24px rgba(33, 246, 255, 0.28), 0 0 38px rgba(155, 92, 255, 0.2);
}

.service-card p,
.project-card p {
  margin-bottom: 0;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid rgba(33, 246, 255, 0.42);
  border-radius: var(--radius-small);
  background: rgba(33, 246, 255, 0.08);
  box-shadow: inset 0 0 18px rgba(33, 246, 255, 0.15), 0 0 16px rgba(33, 246, 255, 0.18);
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
}

.lock-icon::before {
  width: 20px;
  height: 15px;
  left: 13px;
  bottom: 10px;
  border: 2px solid var(--neon-cyan);
  border-radius: 3px;
}

.lock-icon::after {
  width: 16px;
  height: 13px;
  left: 15px;
  top: 9px;
  border: 2px solid var(--cyber-green);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.code-icon::before {
  content: "<>";
  inset: 10px;
  color: var(--neon-cyan);
  font-family: Consolas, "Courier New", monospace;
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
}

.shield-icon::before {
  left: 13px;
  top: 8px;
  width: 22px;
  height: 28px;
  background: linear-gradient(135deg, rgba(33, 246, 255, 0.5), rgba(92, 255, 176, 0.2));
  clip-path: polygon(50% 0, 88% 16%, 80% 75%, 50% 100%, 20% 75%, 12% 16%);
}

.launch-icon::before {
  left: 14px;
  top: 9px;
  width: 19px;
  height: 28px;
  border: 2px solid var(--neon-cyan);
  border-radius: 50% 50% 8px 8px;
  transform: rotate(36deg);
}

.launch-icon::after {
  left: 11px;
  bottom: 9px;
  width: 25px;
  height: 2px;
  background: var(--cyber-green);
  box-shadow: 0 0 12px rgba(92, 255, 176, 0.8);
}

.pulse-icon::before {
  left: 9px;
  top: 22px;
  width: 30px;
  height: 2px;
  background: var(--neon-cyan);
}

.pulse-icon::after {
  left: 12px;
  top: 14px;
  width: 24px;
  height: 18px;
  border-left: 2px solid var(--cyber-green);
  border-bottom: 2px solid var(--cyber-green);
  transform: skewX(-22deg);
}

.node-icon::before {
  left: 12px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 17px 4px 0 var(--cyber-green), 8px 18px 0 var(--neon-purple), 0 0 16px rgba(33, 246, 255, 0.55);
}

.node-icon::after {
  left: 16px;
  top: 18px;
  width: 20px;
  height: 16px;
  border-top: 1px solid rgba(33, 246, 255, 0.85);
  border-bottom: 1px solid rgba(155, 92, 255, 0.85);
  transform: rotate(16deg);
}

.card-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 8px;
  border: 1px solid rgba(92, 255, 176, 0.3);
  border-radius: var(--radius-small);
  background: rgba(92, 255, 176, 0.08);
}

.project-card {
  display: flex;
  flex-direction: column;
}

.mission-number {
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(255, 211, 107, 0.28);
  border-radius: var(--radius-small);
  background: rgba(255, 211, 107, 0.08);
  color: var(--signal-amber);
}

.mission-visual {
  position: relative;
  min-height: 176px;
  margin: 2px 0 22px;
  border: 1px solid rgba(33, 246, 255, 0.22);
  border-radius: var(--radius-small);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(33, 246, 255, 0.3), transparent 18%),
    linear-gradient(135deg, rgba(33, 246, 255, 0.12), rgba(155, 92, 255, 0.08)),
    rgba(5, 9, 22, 0.86);
  box-shadow: inset 0 0 24px rgba(33, 246, 255, 0.08);
}

.proof-visual {
  min-height: 218px;
  background: rgba(5, 9, 22, 0.92);
}

.proof-visual img {
  display: block;
  width: 100%;
  height: 218px;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.05) contrast(1.02);
}

.proof-visual figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 5px 8px;
  border: 1px solid rgba(33, 246, 255, 0.38);
  border-radius: var(--radius-small);
  background: rgba(5, 9, 22, 0.86);
  color: var(--neon-cyan);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(33, 246, 255, 0.22);
}

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

.mission-visual::before {
  inset: 16px;
  border: 1px solid rgba(255, 211, 107, 0.28);
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255, 211, 107, 0.28) 46% 47%, transparent 47% 100%),
    linear-gradient(0deg, transparent 0 46%, rgba(33, 246, 255, 0.22) 46% 47%, transparent 47% 100%);
}

.mission-visual::after {
  right: -28px;
  bottom: -34px;
  width: 152px;
  height: 152px;
  border: 1px solid rgba(33, 246, 255, 0.36);
  transform: rotate(45deg);
  box-shadow: inset 0 0 28px rgba(33, 246, 255, 0.1), 0 0 24px rgba(155, 92, 255, 0.16);
}

.mission-visual span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(33, 246, 255, 0.62);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 18px rgba(33, 246, 255, 0.16), 0 0 26px rgba(33, 246, 255, 0.2);
}

.mission-visual span::before,
.mission-visual span::after {
  content: "";
  position: absolute;
  background: var(--signal-amber);
  box-shadow: 0 0 14px rgba(255, 211, 107, 0.45);
}

.mission-visual span::before {
  top: 41px;
  left: 12px;
  width: 62px;
  height: 2px;
}

.mission-visual span::after {
  top: 12px;
  left: 41px;
  width: 2px;
  height: 62px;
}

.visual-audit {
  background:
    radial-gradient(circle at 50% 50%, rgba(92, 255, 176, 0.22), transparent 22%),
    repeating-linear-gradient(120deg, rgba(33, 246, 255, 0.09) 0 2px, transparent 2px 18px),
    rgba(5, 9, 22, 0.88);
}

.visual-portfolio {
  background:
    radial-gradient(circle at 72% 22%, rgba(155, 92, 255, 0.26), transparent 20%),
    linear-gradient(140deg, rgba(45, 140, 255, 0.16), transparent 54%),
    rgba(5, 9, 22, 0.9);
}

.visual-maintain {
  background:
    radial-gradient(circle at 28% 64%, rgba(255, 211, 107, 0.2), transparent 18%),
    linear-gradient(90deg, rgba(92, 255, 176, 0.1), rgba(33, 246, 255, 0.08)),
    rgba(5, 9, 22, 0.9);
}

.proof-visual::before {
  inset: 0;
  z-index: 1;
  border: 0;
  background:
    linear-gradient(to bottom, rgba(33, 246, 255, 0.12), transparent 24%, transparent 76%, rgba(155, 92, 255, 0.16)),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px);
}

.proof-visual::after {
  right: auto;
  bottom: auto;
  top: 12px;
  left: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(92, 255, 176, 0.36);
  border-radius: 50%;
  transform: none;
  box-shadow: inset 0 0 14px rgba(92, 255, 176, 0.16), 0 0 18px rgba(92, 255, 176, 0.18);
}

.project-card p {
  margin-bottom: 20px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 22px;
}

.tech-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(124, 178, 255, 0.25);
  border-radius: var(--radius-small);
  background: rgba(124, 178, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

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

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

.contact-badges {
  margin-top: 24px;
}

.contact-form {
  padding: 26px;
}

.form-row {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-white);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(124, 178, 255, 0.28);
  border-radius: var(--radius-small);
  background: rgba(4, 8, 20, 0.78);
  color: var(--text-white);
  outline: none;
  box-shadow: inset 0 0 14px rgba(33, 246, 255, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 140px;
  padding: 13px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(168, 183, 207, 0.62);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(33, 246, 255, 0.12), inset 0 0 14px rgba(33, 246, 255, 0.09);
}

.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  border-color: var(--warning-violet);
  box-shadow: 0 0 0 3px rgba(209, 108, 255, 0.12);
}

.error-message {
  display: block;
  min-height: 20px;
  margin-top: 6px;
  color: #ff9ef7;
  font-size: 0.82rem;
}

.form-submit {
  width: 100%;
  border: 1px solid rgba(33, 246, 255, 0.56);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-success {
  min-height: 26px;
  margin: 14px 0 0;
  color: var(--cyber-green);
  font-weight: 800;
}

.site-footer {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 30px 0 38px;
  border-top: 1px solid rgba(33, 246, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text-muted);
}

.site-footer strong {
  display: block;
  color: var(--text-white);
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--text-muted);
  font-weight: 800;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--neon-cyan);
  text-shadow: 0 0 14px rgba(33, 246, 255, 0.55);
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes particleFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(22px, -18px, 0);
  }
}

@keyframes glowMove {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(28px, 20px, 0) scale(1.08);
  }
}

@keyframes scanPanel {
  0%,
  38% {
    transform: translateY(-110%);
  }
  78%,
  100% {
    transform: translateY(260%);
  }
}

@media (max-width: 980px) {
  .hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .dashboard-card,
  .contact-form {
    max-width: 720px;
  }

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

  .contact-copy {
    position: static;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .navbar {
    width: min(100% - 24px, var(--max-width));
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(33, 246, 255, 0.28);
    border-radius: var(--radius-small);
    background: rgba(5, 9, 22, 0.96);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-links a {
    min-height: 48px;
    padding: 0 12px;
  }

  .section-panel {
    width: min(100% - 24px, var(--max-width));
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .hero-command-strip {
    width: fit-content;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    margin: 28px auto 0;
  }

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

  .dashboard-card,
  .contact-form,
  .service-card,
  .project-card {
    padding: 20px;
  }

  .score-module,
  .dashboard-header {
    flex-direction: column;
  }

  .dashboard-header {
    align-items: flex-start;
  }

  .score-module {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .score-module > div:last-child {
    width: 100%;
  }

  .score-ring {
    margin: 0 auto;
  }

  .operation-stack,
  .micro-grid,
  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .status-list li {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
  }

  .contact-badges span {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .logo {
    gap: 8px;
  }

  .logo-mark {
    width: 42px;
    height: 36px;
  }

  .logo-mark span {
    font-size: 0.82rem;
  }

  .logo-primary {
    font-size: 0.8rem;
  }

  .logo-secondary {
    font-size: 0.48rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .business-name {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .score-ring {
    flex-basis: 118px;
    width: 118px;
    height: 118px;
  }
}

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