:root {
  --bg: #05070a;
  --bg-2: #090e12;
  --panel: rgba(14, 21, 27, 0.86);
  --panel-solid: #0d151b;
  --panel-soft: #111d24;
  --line: rgba(227, 255, 0, 0.18);
  --line-strong: rgba(33, 232, 255, 0.32);
  --text: #edf7f5;
  --muted: #9fb0b2;
  --dim: #617175;
  --lime: #e6ff00;
  --cyan: #21e8ff;
  --violet: #8d6bff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(115deg, rgba(230, 255, 0, 0.06), transparent 32%),
    linear-gradient(245deg, rgba(33, 232, 255, 0.07), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.12;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--lime);
  color: #020304;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 100px;
  padding: 6px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 10, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 124px;
  height: 88px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  border-radius: var(--radius);
}

.site-nav a {
  padding: 8px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #061014;
  background: var(--lime);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-action {
  background: rgba(33, 232, 255, 0.1);
  border-color: rgba(33, 232, 255, 0.28);
}

.nav-action svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #061014;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(230, 255, 0, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

.button:hover,
.nav-action:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(620px, 78vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.home-hero {
  margin-top: 0;
  padding-top: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96) 0%, rgba(5, 7, 10, 0.78) 39%, rgba(5, 7, 10, 0.28) 72%, rgba(5, 7, 10, 0.62) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5, 7, 10, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  padding-top: 84px;
}

.hero-content h1 {
  max-width: 780px;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(230, 255, 0, 0.25);
  background: rgba(230, 255, 0, 0.055);
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 900px;
  color: #f4fff8;
  font-size: clamp(42px, 6.1vw, 86px);
  font-weight: 800;
  text-shadow: 0 0 28px rgba(0, 0, 0, 0.58);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 700;
}

h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
}

.hero-lede,
.page-hero p,
.section-heading p,
.split-copy p,
.contact-info p {
  max-width: min(680px, 100%);
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  overflow-wrap: break-word;
}

.hero-lede {
  margin: 24px 0 0;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-stats div {
  min-height: 112px;
  padding: 20px;
  background: rgba(8, 13, 17, 0.76);
}

.hero-stats strong,
.proof-band strong {
  display: block;
  color: var(--lime);
  font-family: "Orbitron", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.hero-stats span,
.proof-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(230, 255, 0, 0.2);
  background: #070b0e;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 16px 0;
  color: var(--lime);
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  animation: ticker 26s linear infinite;
}

.ticker-track span::before {
  content: "/";
  margin-inline: 18px;
  color: var(--cyan);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    var(--bg-2);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading p {
  margin: 0;
}

.feature-grid,
.package-grid,
.brief-grid {
  display: grid;
  gap: 16px;
}

.feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card,
.catalog-card,
.package-card,
.brief-card,
.process-step,
.contact-form,
.mission-console,
.data-panel {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 270px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.catalog-card::after,
.package-card::after,
.brief-card::after,
.process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(230, 255, 0, 0.38);
  opacity: 0;
  transition: opacity 220ms ease;
}

.feature-card:hover::after,
.catalog-card:hover::after,
.package-card:hover::after,
.brief-card:hover::after,
.process-step:hover::after {
  opacity: 1;
}

.card-index,
.catalog-card > span,
.process-step > span,
.brief-card > span {
  color: var(--lime);
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.feature-card h3,
.process-step h3,
.package-card h3,
.brief-card h3 {
  margin-top: 38px;
}

.feature-card p,
.catalog-card p,
.package-card p,
.brief-card p,
.process-step p {
  color: var(--muted);
}

.service-preview {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-row {
  display: grid;
  grid-template-columns: 82px minmax(240px, 0.7fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.service-row span {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.service-row strong {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.service-row em {
  color: var(--muted);
  font-style: normal;
}

.service-row:hover strong {
  color: var(--lime);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.split-copy h2 {
  margin-bottom: 24px;
}

.split-copy p {
  margin: 0 0 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--lime);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.data-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.data-panel div,
.mission-console .console-line {
  padding: 24px;
  background: var(--panel-solid);
}

.data-panel span,
.console-line span,
.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.data-panel strong,
.console-line strong,
.contact-card strong {
  color: var(--text);
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.cta-section {
  padding: clamp(66px, 8vw, 96px) 0;
  background:
    linear-gradient(90deg, rgba(230, 255, 0, 0.12), rgba(33, 232, 255, 0.08)),
    #071014;
  border-top: 1px solid rgba(230, 255, 0, 0.22);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 820px;
}

.page-hero {
  padding: clamp(84px, 10vw, 124px) 0 clamp(54px, 7vw, 86px);
  background:
    linear-gradient(135deg, rgba(230, 255, 0, 0.12), transparent 28%),
    linear-gradient(225deg, rgba(33, 232, 255, 0.13), transparent 30%),
    #071014;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(38px, 5.6vw, 76px);
}

.page-hero-inner p {
  margin: 24px 0 0;
}

.error-hero {
  min-height: calc(100vh - 100px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.error-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.error-code {
  margin: 0 0 18px;
  color: rgba(230, 255, 0, 0.16);
  font-family: "Orbitron", sans-serif;
  font-size: clamp(86px, 18vw, 220px);
  font-weight: 800;
  line-height: 0.82;
  text-shadow: 0 0 28px rgba(230, 255, 0, 0.2);
  -webkit-text-stroke: 1px rgba(230, 255, 0, 0.58);
}

.error-actions {
  margin-top: 32px;
}

.error-routes {
  margin-top: 26px;
}

.mission-console {
  display: grid;
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.11);
}

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

.process-step,
.brief-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.proof-band div {
  padding: 28px;
  background: var(--panel-solid);
}

.service-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  position: relative;
  min-height: 460px;
  padding: 26px;
  overflow: hidden;
}

.catalog-card h2 {
  margin: 28px 0 16px;
  font-size: clamp(24px, 3vw, 34px);
}

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

.catalog-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.catalog-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  background: var(--lime);
}

.package-grid,
.brief-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card,
.brief-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.package-card span {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 10px;
  color: #061014;
  background: var(--lime);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.92fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-card {
  display: block;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: var(--panel);
  text-decoration: none;
}

a.contact-card:hover strong {
  color: var(--lime);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.form-heading span {
  display: block;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-heading h2 {
  margin-top: 6px;
  font-size: clamp(28px, 4vw, 42px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

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

select {
  color-scheme: dark;
}

.contact-form select {
  background: var(--panel-solid);
  color: var(--text);
}

.contact-form select option {
  background: var(--panel-solid);
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(230, 255, 0, 0.14);
}

.form-submit {
  width: fit-content;
  min-width: 190px;
  border: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 26px;
  align-items: start;
  padding: 44px clamp(18px, 4vw, 56px);
  background: #030506;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: "Orbitron", sans-serif;
}

.footer-brand span,
.copyright {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a,
address a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
address a:hover {
  color: var(--lime);
}

address {
  display: grid;
  gap: 4px;
  justify-items: end;
  color: var(--muted);
  font-style: normal;
}

.copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  font-size: 14px;
}

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

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

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: fixed;
    top: 100px;
    left: 18px;
    right: 18px;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(5, 7, 10, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-action {
    justify-self: end;
  }

  .section-heading,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid.three,
  .feature-grid.four,
  .service-catalog,
  .process-grid,
  .package-grid,
  .brief-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-row {
    grid-template-columns: 56px 1fr;
  }

  .service-row em {
    grid-column: 2;
  }

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

  address {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

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

  .site-header {
    min-height: 79px;
    padding: 7px 14px;
    gap: 10px;
  }

  .brand-mark {
    width: 92px;
    height: 65px;
  }

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

  .nav-action {
    display: none;
  }

  .site-nav {
    top: 79px;
  }

  .home-hero {
    margin-top: 0;
    padding-top: 0;
  }

  .hero {
    min-height: auto;
    padding-block: 126px 70px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.72)),
      linear-gradient(0deg, var(--bg), rgba(5, 7, 10, 0) 48%);
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .hero-content h1,
  .hero-lede {
    max-width: min(100%, 340px);
  }

  .hero-lede {
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-stats,
  .proof-band,
  .data-panel,
  .form-row,
  .feature-grid.three,
  .feature-grid.four,
  .service-catalog,
  .process-grid,
  .package-grid,
  .brief-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 92px;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  .feature-card,
  .catalog-card,
  .process-step,
  .brief-card {
    min-height: auto;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .service-row em {
    grid-column: auto;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .form-submit {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
