/* Blue Team - static site styles */

:root {
  --bg: #070a10;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --faint: rgba(255, 255, 255, 0.55);
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.55);

  --blue: #5dd6ff;
  --blue-2: #2b7fff;
  --red: #ff4d6d;
  --green: #46f2a6;
  --neon: rgba(93, 214, 255, 0.52);
  --neon-2: rgba(255, 77, 109, 0.38);
  --neon-3: rgba(70, 242, 166, 0.30);

  --radius: 18px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Animated neon frame on page edges */
html::before {
  content: "";
  position: fixed;
  inset: 10px;
  pointer-events: none;
  z-index: 90;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 42px rgba(93, 214, 255, 0.18),
    0 0 64px rgba(255, 77, 109, 0.12);
  background:
    linear-gradient(90deg, transparent, rgba(93, 214, 255, 0.12), transparent),
    linear-gradient(180deg, transparent, rgba(255, 77, 109, 0.10), transparent);
  opacity: 0.75;
  filter: blur(0.2px);
  animation: neonFrame 6.5s linear infinite;
}

@keyframes neonFrame {
  0% {
    opacity: 0.62;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 42px rgba(93, 214, 255, 0.16),
      0 0 64px rgba(255, 77, 109, 0.10);
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.9;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06) inset,
      0 0 60px rgba(93, 214, 255, 0.22),
      0 0 88px rgba(255, 77, 109, 0.16),
      0 0 52px rgba(70, 242, 166, 0.10);
    transform: translate3d(0, -1px, 0);
  }
  100% {
    opacity: 0.62;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 42px rgba(93, 214, 255, 0.16),
      0 0 64px rgba(255, 77, 109, 0.10);
    transform: translate3d(0, 0, 0);
  }
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(43, 127, 255, 0.35), transparent 60%),
    radial-gradient(800px 560px at 90% 10%, rgba(255, 77, 109, 0.22), transparent 55%),
    radial-gradient(700px 520px at 50% 110%, rgba(70, 242, 166, 0.14), transparent 60%),
    linear-gradient(180deg, #05070d 0%, #070a10 100%);
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
}

/* Cyber overlays (subtle, keeps readability) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(93, 214, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(93, 214, 255, 0.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(700px 520px at 50% 10%, rgba(0, 0, 0, 0.9), transparent 65%);
  opacity: 0.55;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      rgba(0, 0, 0, 0) 3px,
      rgba(0, 0, 0, 0) 8px
    );
  opacity: 0.08;
  mix-blend-mode: overlay;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--stroke);
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 50;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid rgba(93, 214, 255, 0.55);
  outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgba(7, 10, 16, 0.55);
  backdrop-filter: blur(14px);
}
.site-header[data-elevate="true"] {
  border-bottom-color: var(--stroke);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.site-header[data-elevate="true"] {
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 0 38px rgba(93, 214, 255, 0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 28px rgba(93, 214, 255, 0.12);
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(93, 214, 255, 0.95), transparent 60%),
    radial-gradient(12px 12px at 70% 70%, rgba(255, 77, 109, 0.92), transparent 60%),
    linear-gradient(135deg, rgba(43, 127, 255, 0.7), rgba(255, 77, 109, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.brand-text {
  font-size: 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 10px;
  transition: background 150ms ease, color 150ms ease;
}
.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.nav .nav-cta {
  color: #04101a;
  background: linear-gradient(135deg, rgba(93, 214, 255, 1), rgba(43, 127, 255, 1));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 55px rgba(43, 127, 255, 0.18);
}
.nav .nav-cta:hover {
  background: linear-gradient(135deg, rgba(93, 214, 255, 0.92), rgba(43, 127, 255, 0.92));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--text);
}
.nav-toggle-lines {
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines {
  content: "";
  display: block;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
}
.nav-toggle-lines::before {
  top: 0;
}
.nav-toggle-lines::after {
  bottom: 0;
}
.nav-toggle-lines {
  background: rgba(255, 255, 255, 0.86);
  height: 2px;
  border-radius: 999px;
  top: 5px;
}

/* Hero */
.hero {
  padding: 76px 0 18px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 26px;
  align-items: start;
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.eyebrow::before {
  content: ">";
  display: inline-block;
  font-weight: 900;
  color: rgba(93, 214, 255, 0.95);
  text-shadow: 0 0 18px rgba(93, 214, 255, 0.35);
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(93, 214, 255, 0.92), rgba(255, 77, 109, 0.82));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(93, 214, 255, 0.08);
}
.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 64ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px;
}
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
  font-size: 13px;
}
.hero-badges li {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(520px 200px at 20% 0%, rgba(93, 214, 255, 0.15), transparent 60%),
    radial-gradient(520px 200px at 90% 20%, rgba(255, 77, 109, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card {
  position: relative;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(93, 214, 255, 0.10), transparent),
    radial-gradient(320px 200px at 0% 0%, rgba(93, 214, 255, 0.10), transparent 60%);
  opacity: 0.55;
  mix-blend-mode: screen;
}
.hero-card-top {
  padding: 18px 18px 4px;
}
.hero-card-title {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.hero-card-sub {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.hero-metrics {
  padding: 10px 18px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.metric {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.metric-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.metric-value {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-card-bottom {
  padding: 0 18px 18px;
}

/* Common sections */
.section {
  padding: 64px 0;
}
.section.alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section-head h2 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 82ch;
}

.grid {
  display: grid;
  gap: 14px;
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}
.card {
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(520px 240px at 20% 0%, var(--neon), transparent 60%),
    radial-gradient(520px 240px at 90% 20%, var(--neon-2), transparent 62%);
  opacity: 0.45;
  filter: blur(12px);
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(93, 214, 255, 0.22);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
}
.card:hover::before {
  opacity: 0.7;
}
.card h3 {
  margin: 8px 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.service-img {
  width: 100%;
  height: 170px;
  margin: 12px 0 6px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  background: rgba(0, 0, 0, 0.22);
}
.service-img {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 18px 55px rgba(0, 0, 0, 0.35);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.card-tag.red {
  background: rgba(255, 77, 109, 0.12);
  color: rgba(255, 255, 255, 0.92);
}
.card-tag.blue {
  background: rgba(93, 214, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}
.card-tag.tech {
  background: rgba(70, 242, 166, 0.10);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(70, 242, 166, 0.28);
}

.span-2 {
  grid-column: 1 / -1;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.checklist li {
  padding-left: 26px;
  position: relative;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.checklist li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 3px;
  background:
    radial-gradient(10px 10px at 30% 30%, rgba(70, 242, 166, 0.95), transparent 60%),
    linear-gradient(135deg, rgba(93, 214, 255, 0.6), rgba(43, 127, 255, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.checklist strong {
  color: rgba(255, 255, 255, 0.96);
}

.card-actions {
  margin-top: 14px;
}

.note {
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}
.note.subtle {
  background: rgba(255, 255, 255, 0.03);
}

/* Steps */
.steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.steps li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 14px;
}
.steps h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

/* Pricing */
.price {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.price.featured {
  border-color: rgba(93, 214, 255, 0.35);
  background:
    radial-gradient(520px 240px at 20% 0%, rgba(93, 214, 255, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.05);
}
.pill {
  position: absolute;
  right: 14px;
  top: 14px;
  font-weight: 800;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(93, 214, 255, 0.15);
  border: 1px solid rgba(93, 214, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
}
.price h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.price-desc {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}
.price ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}
.price li {
  margin: 8px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 11px 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  user-select: none;
  transition: transform 120ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
}
.btn:active {
  transform: translateY(0);
}
.btn.primary {
  color: #04101a;
  background: linear-gradient(135deg, rgba(93, 214, 255, 1), rgba(43, 127, 255, 1));
  border-color: rgba(255, 255, 255, 0.18);
}
.btn.primary:hover {
  background: linear-gradient(135deg, rgba(93, 214, 255, 0.93), rgba(43, 127, 255, 0.93));
}
.btn.primary {
  box-shadow:
    0 18px 55px rgba(43, 127, 255, 0.20),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.btn.primary:hover {
  box-shadow:
    0 22px 70px rgba(43, 127, 255, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.btn.primary:hover {
  box-shadow:
    0 22px 70px rgba(43, 127, 255, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 36px rgba(93, 214, 255, 0.16);
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.03);
}
.btn.small {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}
.btn.full {
  width: 100%;
}

/* Form */
.contact {
  align-items: start;
}
.form {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  display: grid;
  gap: 12px;
}
.form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
}
.form input,
.form textarea {
  width: 100%;
  border-radius: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  outline: none;
  font: inherit;
}
.form textarea {
  resize: vertical;
  min-height: 120px;
}
.form input:focus,
.form textarea:focus {
  border-color: rgba(93, 214, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(93, 214, 255, 0.12);
}
.form-actions {
  display: grid;
  gap: 10px;
}

/* Footer */
.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}
.footer-inner {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 10px;
  border-radius: 12px;
}
.footer-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
}

.tiny {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    width: min(360px, calc(100vw - 28px));
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 10, 16, 0.92);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .nav[data-open="true"] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav a {
    padding: 12px 12px;
  }
  .grid.two {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .nav a,
  .nav {
    transition: none;
  }
  body::after,
  body::before {
    opacity: 0.05;
  }
  html::before {
    animation: none;
    opacity: 0.35;
  }
}

