:root {
  --bg: #040915;
  --bg-2: #090f24;
  --panel: rgba(10, 20, 43, 0.7);
  --panel-strong: rgba(12, 24, 52, 0.88);
  --txt: #ecf6ff;
  --muted: #9eb4d2;
  --accent: #25e5ff;
  --accent-2: #a4ff4b;
  --accent-3: #00b7ff;
  --line: rgba(87, 133, 189, 0.28);
  --line-strong: rgba(118, 169, 235, 0.55);
  --shadow: 0 18px 48px rgba(2, 8, 24, 0.55);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--txt);
  background:
    radial-gradient(circle at 9% 14%, rgba(0, 183, 255, 0.24), transparent 30%),
    radial-gradient(circle at 88% 11%, rgba(164, 255, 75, 0.2), transparent 29%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.scene-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -3;
}

.glow-one {
  width: 300px;
  height: 300px;
  top: -80px;
  right: 14%;
  background: rgba(37, 229, 255, 0.22);
}

.glow-two {
  width: 340px;
  height: 340px;
  left: -70px;
  bottom: 12%;
  background: rgba(164, 255, 75, 0.16);
}

.scan-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(140, 184, 230, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 184, 230, 0.09) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 40%, black 48%, transparent 95%);
  pointer-events: none;
  z-index: -2;
}

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.section-block {
  padding: 56px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 9, 21, 0.78);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand-stack {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  display: inline-flex;
}

.logo img {
  height: 40px;
}

.header-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.93rem;
  color: #d4e4f8;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 7px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #d8ebff;
  margin: 5px 0;
  border-radius: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  padding: 11px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #76fff1 70%);
  color: #04111d;
  box-shadow: 0 12px 24px rgba(37, 229, 255, 0.28);
}

.btn-secondary {
  border-color: var(--line-strong);
  color: var(--txt);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  padding-top: 72px;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 20px;
  align-items: stretch;
}

.hero-copy,
.hero-console {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(16, 32, 66, 0.82), rgba(8, 17, 36, 0.78));
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 28px;
}

.eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}

h1,
h2,
h3,
.console-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4.8vw, 3.55rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
  max-width: 18ch;
}

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.domain-chips {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #cbddf5;
  background: rgba(255, 255, 255, 0.02);
}

.hero-console {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(37, 229, 255, 0.1), transparent 38%, rgba(164, 255, 75, 0.07));
  pointer-events: none;
}

.console-title {
  position: relative;
  margin: 10px 0 14px;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-city-figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.hero-city-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.hero-city-figure figcaption {
  margin: 0;
  padding: 7px 10px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7ecff;
  background: rgba(4, 9, 21, 0.86);
}

.signal-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.signal-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
}

.signal-list span {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.signal-list strong {
  color: #f1fbff;
  font-size: 0.86rem;
  text-align: right;
}

.section-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  line-height: 1.15;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.about-grid p {
  margin: 0;
  color: var(--muted);
}

.logo-feature {
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(140deg, rgba(37, 229, 255, 0.12), rgba(10, 20, 43, 0.78));
  text-align: center;
}

.logo-feature img {
  width: min(420px, 88%);
  display: block;
  margin: 0 auto;
}

.logo-feature p {
  margin: 10px 0 0;
  color: #d5e8ff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.credentials-block {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
}

.credentials-title {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.credentials-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.credentials-list li {
  color: var(--muted);
}

.services-grid,
.work-grid,
.sectors-grid,
.process-grid,
.seo-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.work-grid {
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.sectors-grid,
.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.seo-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card,
.work-card,
.sector-card,
.process-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(12, 25, 55, 0.82), rgba(8, 15, 35, 0.78));
  box-shadow: var(--shadow);
  padding: 18px;
  animation: lift 0.55s ease both;
  animation-delay: var(--delay, 0ms);
}

.service-card h3,
.work-card h3,
.sector-card h3,
.process-card h3 {
  margin: 2px 0 8px;
  font-size: 1.03rem;
  line-height: 1.25;
}

.service-card p,
.work-card p,
.sector-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
}

.work-kind {
  margin: 0 0 10px !important;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2) !important;
}

.work-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 11px;
}

.work-logo {
  width: 100%;
  max-width: 236px;
  max-height: 72px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  padding: 6px 10px;
}

.work-domain {
  margin: 2px 0 10px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: var(--muted) !important;
}

.work-tagline {
  margin-top: 12px !important;
  color: var(--txt) !important;
  font-weight: 600;
}

.work-subline {
  margin-top: 6px !important;
  font-size: 0.93rem;
}

.work-branding-note {
  margin-top: 10px !important;
  color: var(--txt) !important;
  font-size: 0.9rem;
  font-weight: 600;
}

.work-seal-lead {
  margin-top: 12px !important;
  text-align: center;
  font-size: 0.88rem;
}

.work-seal-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.work-seal {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  padding: 7px;
}

.work-link {
  display: inline-block;
  margin-top: 14px;
  color: #b7f5ff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 245, 255, 0.45);
}

.process-card {
  position: relative;
  padding-top: 42px;
}

.process-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #04111d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.contact-card form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

label {
  font-size: 0.91rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--txt);
  font-family: inherit;
  padding: 12px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

footer {
  border-top: 1px solid var(--line);
  background: rgba(4, 9, 21, 0.84);
  padding: 28px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  align-items: center;
}

.footer-logo {
  height: 38px;
}

.footer-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #d5e6fa;
  font-weight: 600;
}

@keyframes lift {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .brand-stack {
    width: auto;
    justify-content: flex-start;
  }

  .header-tag {
    display: none;
  }

  .nav-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
  }

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

  .site-nav a {
    font-size: 0.92rem;
    padding: 9px 11px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
  }

  .site-nav a.btn {
    width: 100%;
  }

  .section-card {
    padding: 20px;
  }

  .hero-copy,
  .hero-console {
    padding: 18px;
  }
}
