:root {
  --bg: #06101b;
  --bg-soft: #0b1827;
  --surface: rgba(12, 24, 38, 0.86);
  --surface-2: rgba(16, 33, 51, 0.92);
  --line: rgba(110, 150, 190, 0.18);
  --text: #eef5ff;
  --muted: #9fb0c3;
  --primary: #28d17c;
  --primary-strong: #17b868;
  --accent: #0f2d4a;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(40, 209, 124, 0.08), transparent 26%),
    linear-gradient(180deg, #040a13 0%, #07111d 50%, #06101b 100%);
  min-height: 100vh;
}

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

img {
  display: block;
  max-width: 100%;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0));
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 80px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(4, 10, 19, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-inner {
  min-height: 82px;
}

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

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand span {
  font-size: 0.84rem;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #04110a;
  box-shadow: 0 12px 28px rgba(40, 209, 124, 0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.09);
}

.btn-outline {
  background: transparent;
  border-color: rgba(40, 209, 124, 0.4);
  color: var(--text);
}

.btn-ghost {
  background: rgba(15, 45, 74, 0.45);
  border-color: rgba(102, 140, 180, 0.16);
}

.full {
  width: 100%;
}

.hero {
  padding-top: 72px;
}

.hero-grid,
.split-grid,
.contact-wrap {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
}

.hero-copy h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.lead,
.feature-card p,
.info-card p,
.list-card li,
.contact-copy p,
.status-card p {
  color: var(--muted);
  line-height: 1.75;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}

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

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(40, 209, 124, 0.12);
}

.hero-panel,
.feature-card,
.list-card,
.contact-wrap,
.info-card,
.status-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 24px;
  border-radius: 28px;
}

.glow-card {
  background: linear-gradient(180deg, rgba(9, 24, 40, 0.96) 0%, rgba(12, 28, 46, 0.86) 100%);
}

.status-card {
  padding: 22px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.status-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(40, 209, 124, 0.13);
  margin-bottom: 16px;
}

.mini-grid,
.cards {
  display: grid;
  gap: 18px;
}

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

.info-card,
.feature-card,
.list-card {
  padding: 24px;
  border-radius: var(--radius);
}

.info-card.wide {
  grid-column: 1 / -1;
}

.info-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(40, 209, 124, 0.12);
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.split-grid h2,
.contact-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
}

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

.feature-card h3,
.info-card h3,
.list-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.accent-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(20, 41, 62, 0.2) 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.split-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.list-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.contact-wrap {
  grid-template-columns: 1fr 0.9fr;
  padding: 28px;
  border-radius: 28px;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.site-footer {
  padding: 26px 0 40px;
  color: var(--muted);
}

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

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .contact-wrap,
  .three-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 46px;
  }

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

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-wrap,
  .hero-panel,
  .info-card,
  .feature-card,
  .list-card {
    padding: 20px;
  }

  .hero-copy h1 {
    max-width: none;
  }
}
