:root {
  --bg: #030711;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f2f5ff;
  --muted: #9ba6c6;
  --accent: #65e5c6;
  --accent-2: #7dd3ff;
  --border: rgba(255, 255, 255, 0.08);
  --glow: 0 20px 70px rgba(101, 229, 198, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(101, 229, 198, 0.08), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(125, 211, 255, 0.08), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", "Plus Jakarta Sans", "Inter", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  line-height: 1.5;
}

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

.page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.hero {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--glow);
}

.hero__bg-shape {
  position: absolute;
  width: 320px;
  height: 320px;
  filter: blur(80px);
  opacity: 0.55;
}

.hero__bg-shape--one {
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(101, 229, 198, 0.6), transparent 55%);
}

.hero__bg-shape--two {
  bottom: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(125, 211, 255, 0.45), transparent 55%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

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

.brand__logo {
  width: 64px;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand__name {
  font-weight: 600;
  font-size: 18px;
}

.brand__tagline {
  color: var(--muted);
  font-size: 14px;
}

.hero__copy h1 {
  margin: 8px 0 16px;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
}

.hero__copy p {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041019;
  box-shadow: 0 10px 40px rgba(101, 229, 198, 0.25);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 48px rgba(101, 229, 198, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

main {
  margin-top: 40px;
  display: grid;
  gap: 36px;
}

.section {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
}

.section__heading h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 34px);
}

.section__heading .lede {
  color: var(--muted);
  max-width: 680px;
  margin: 0;
}

.mission {
  display: grid;
  gap: 20px;
}

.mission__canvas-wrap {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  min-height: 260px;
}

#mission-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.mission__note {
  position: absolute;
  bottom: 12px;
  right: 16px;
  background: rgba(3, 7, 17, 0.7);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--muted);
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: grid;
  gap: 10px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(101, 229, 198, 0.35);
  box-shadow: 0 10px 50px rgba(3, 7, 17, 0.35);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(101, 229, 198, 0.18), rgba(125, 211, 255, 0.18));
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.card ul {
  margin: 4px 0 0 16px;
  color: var(--muted);
  padding: 0;
  gap: 4px;
  display: grid;
}

.footer {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

.footer__content {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer h2 {
  margin: 6px 0;
  font-size: 24px;
}

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

.consent-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 960px;
  width: calc(100% - 32px);
  background: rgba(3, 7, 17, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.consent-banner__text {
  max-width: 640px;
  color: var(--muted);
}

.consent-banner__text p {
  margin: 0;
}

.consent-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.consent-banner .btn {
  padding: 10px 14px;
}

.consent-banner.hidden {
  display: none;
}

@media (max-width: 720px) {
  .hero,
  .section,
  .footer {
    padding: 24px;
  }

  .footer__content {
    align-items: flex-start;
  }

  .hero__copy h1 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .consent-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .consent-banner__actions {
    width: 100%;
  }

  .consent-banner__actions .btn {
    flex: 1;
    text-align: center;
  }
}
