:root {
  --bg: #050b16;
  --bg-soft: #0a1628;
  --panel: rgba(12, 28, 48, 0.78);
  --line: rgba(126, 214, 255, 0.22);
  --cyan: #7ed6ff;
  --cyan-dim: #3aa8d8;
  --gold: #f0b429;
  --gold-hover: #ffc94a;
  --text: #e8f2ff;
  --muted: #9bb0c7;
  --white: #ffffff;
  --container: 1140px;
  --header-h: 78px;
  --font-display: "Orbitron", sans-serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label.on-dark {
  color: var(--cyan);
}

.section-title {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--white);
}

.section-title.left {
  text-align: left;
}

.section-title.on-dark,
.section-lead.on-dark {
  text-align: center;
}

.section-lead {
  margin: 0 auto 2.5rem;
  max-width: 42rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-accent {
  background: var(--gold);
  color: #1a1200;
  box-shadow: 0 0 24px rgba(240, 180, 41, 0.28);
}

.btn-accent:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(126, 214, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.text-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--cyan);
  font-weight: 700;
}

/* Top bar + header */
.topbar {
  background: #030915;
  border-bottom: 1px solid rgba(126, 214, 255, 0.12);
  font-size: 0.85rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.topbar-left {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar-left a:hover {
  color: var(--cyan);
}

.topbar-right {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 11, 22, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(126, 214, 255, 0.1);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-img {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold);
}

.site-nav .nav-cta {
  color: #1a1200;
  margin-left: 0.35rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(58, 168, 216, 0.18), transparent 42%),
    linear-gradient(180deg, #071527 0%, #050b16 70%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 214, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 214, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
  animation: grid-drift 18s linear infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-orb-a {
  width: 280px;
  height: 280px;
  left: 12%;
  top: 20%;
  background: rgba(126, 214, 255, 0.18);
  animation: float-orb 9s ease-in-out infinite;
}

.hero-orb-b {
  width: 220px;
  height: 220px;
  right: 14%;
  bottom: 18%;
  background: rgba(240, 180, 41, 0.14);
  animation: float-orb 11s ease-in-out infinite reverse;
}

.hero-shield {
  position: absolute;
  width: min(42vw, 340px);
  opacity: 0.55;
  animation: shield-pulse 4.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-shield svg {
  width: 100%;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4.5rem 0 5rem;
  max-width: 820px;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  animation: rise-in 0.8s ease both;
}

.hero-title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  animation: rise-in 0.9s ease 0.08s both;
}

.accent-text {
  color: var(--gold);
}

.hero-text {
  margin: 0 auto 1.8rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
  animation: rise-in 1s ease 0.14s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  animation: rise-in 1.05s ease 0.2s both;
}

.hero-phone {
  margin: 1.4rem 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--cyan);
  animation: rise-in 1.1s ease 0.24s both;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  border: 2px solid rgba(126, 214, 255, 0.45);
  border-radius: 12px;
}

.scroll-hint span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 6px auto 0;
  border-radius: 4px;
  background: var(--gold);
  animation: scroll-dot 1.4s ease-in-out infinite;
}

/* Mission */
.mission {
  background: linear-gradient(180deg, #07101d 0%, #0a1628 100%);
}

.mission-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.mission-copy p,
.about-copy > p,
.contact-text {
  color: var(--muted);
}

.mission-panel {
  display: grid;
  gap: 1rem;
}

.stat {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  box-shadow: inset 0 0 30px rgba(126, 214, 255, 0.05);
}

.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.stat span {
  font-family: var(--font-display);
  color: var(--cyan);
  font-size: 1.2rem;
}

.stat p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

/* Activity */
.activity {
  background: #06101d;
  overflow: hidden;
}

.activity-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(126, 214, 255, 0.12), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(240, 180, 41, 0.1), transparent 30%);
  animation: activity-glow 8s ease-in-out infinite alternate;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.activity-card,
.service-card,
.ceo-card,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.45rem 1.3rem;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.activity-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 180, 41, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.activity-num {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.9rem;
}

.activity-card h3,
.service-card h3,
.about-points h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
}

.activity-card p,
.service-card p,
.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* About */
.about {
  background: linear-gradient(180deg, #0a1628 0%, #07101d 100%);
}

.about-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-points li {
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.ceo-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}

.ceo-card .quote {
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--white);
}

.ceo-card footer {
  display: grid;
  gap: 0.2rem;
}

.ceo-card strong {
  color: var(--gold);
}

.ceo-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Services */
.services {
  background:
    linear-gradient(160deg, rgba(7, 21, 39, 0.95), rgba(5, 11, 22, 0.98)),
    #050b16;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 10% 20%, rgba(240, 180, 41, 0.08), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(126, 214, 255, 0.1), transparent 30%),
    #07101d;
}

.contact-meta {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.contact-meta strong {
  display: inline-block;
  min-width: 5.5rem;
  color: var(--cyan);
}

.contact-meta a {
  color: var(--gold);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(126, 214, 255, 0.22);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--white);
  background: rgba(5, 11, 22, 0.7);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(240, 180, 41, 0.55);
  border-color: var(--gold);
}

.form-note {
  margin: 0;
  color: var(--cyan);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: #030915;
  border-top: 1px solid rgba(126, 214, 255, 0.12);
  padding: 1.4rem 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gold);
  font-weight: 600;
}

/* Motion helpers */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 56px, 56px 0; }
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

@keyframes shield-pulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes activity-glow {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 980px) {
  .mission-grid,
  .about-grid,
  .contact-grid,
  .activity-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .activity-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-shield {
    width: min(60vw, 280px);
    opacity: 0.35;
  }

  .section-title.left {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: calc(38px + var(--header-h)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.4rem;
    background: rgba(5, 11, 22, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(126, 214, 255, 0.1);
  }

  .site-nav .nav-cta {
    margin: 1rem 0 0;
    border-bottom: 0;
  }

  body.nav-open {
    overflow: hidden;
  }

  .mission-grid,
  .about-grid,
  .contact-grid,
  .activity-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .topbar-right {
    display: none;
  }

  .hero-shield {
    display: none;
  }

  .logo-img {
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
