:root {
  --bg: #05070c;
  --text: #e8f0ff;
  --muted: #9fb1cf;
  --accent: #2de2c5;
  --line: rgba(40, 61, 93, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(1200px 600px at 15% -10%, #133a5a 0%, transparent 55%),
    radial-gradient(900px 500px at 90% 10%, #1a2254 0%, transparent 50%), var(--bg);
  color: var(--text);
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(102, 168, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 168, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 25%, black 20%, transparent 75%);
}

.bg-orb {
  position: fixed;
  width: 32vw;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(42px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-a {
  left: -8vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(45, 226, 197, 0.62), rgba(45, 226, 197, 0.06) 70%);
}

.orb-b {
  right: -10vw;
  top: 35vh;
  background: radial-gradient(circle, rgba(102, 168, 255, 0.6), rgba(102, 168, 255, 0.06) 70%);
  animation-duration: 18s;
}

.site-header,
.site-footer,
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
}

.site-header,
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.panel {
  margin: 2.4rem 0;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 13, 22, 0.64);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 42px -34px rgba(12, 28, 58, 0.72);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(45, 226, 197, 0.08), rgba(102, 168, 255, 0.04) 40%, transparent 65%);
}

main {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.7rem, 3.8vw, 3rem);
}

h2 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.lede {
  color: var(--muted);
  max-width: 66ch;
}

.micro-line {
  margin-top: 0.55rem;
  color: #9ab0d4;
  font-size: 0.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.hero-copy {
  align-self: center;
}

.hero-lede {
  max-width: 54ch;
}

.hero-visual {
  position: relative;
  min-height: 290px;
  border: 1px solid rgba(102, 168, 255, 0.35);
  border-radius: 14px;
  overflow: hidden;
  background: #0b1320;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.console {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(45, 226, 197, 0.28);
  border-radius: 12px;
  background: rgba(6, 14, 24, 0.72);
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 0 1px rgba(45, 226, 197, 0.08), 0 16px 36px -28px rgba(45, 226, 197, 0.55);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.console-top {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.chip {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(102, 168, 255, 0.28);
  color: #dff2ff;
  background: rgba(17, 33, 52, 0.62);
}

.chip-live {
  border-color: rgba(45, 226, 197, 0.6);
  color: #b7fff3;
}

.chip-alert {
  border-color: rgba(255, 180, 90, 0.6);
  color: #ffd6a1;
}

.console-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  color: #00131a;
  background: linear-gradient(120deg, var(--accent), #8ff4df);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: #0f1521;
}

.card-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

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

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: rgba(14, 23, 37, 0.58);
  border: 1px solid rgba(35, 55, 85, 0.52);
  border-radius: 12px;
  padding: 1rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 226, 197, 0.36);
  box-shadow: 0 10px 24px -20px rgba(45, 226, 197, 0.58);
}

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

.mini-chip {
  display: inline-block;
  margin: 0 0.45rem 0.25rem 0;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(102, 168, 255, 0.35);
  border-radius: 999px;
  color: #b7caf0;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  background: rgba(14, 27, 43, 0.58);
}

.solution-copy {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.solution-chips {
  margin-top: 0.2rem;
}

@keyframes drift {
  from {
    transform: translateY(-12px) translateX(0px);
  }
  to {
    transform: translateY(10px) translateX(18px);
  }
}

.recovery-gap {
  border-color: rgba(91, 130, 185, 0.35);
  background: rgba(8, 15, 27, 0.54);
}

.compact-points {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.point-chip {
  display: inline-block;
  border: 1px solid rgba(102, 168, 255, 0.32);
  border-radius: 999px;
  padding: 0.33rem 0.62rem;
  color: #c0d3ef;
  font-size: 0.76rem;
  background: rgba(13, 22, 36, 0.54);
}

.steps-inline {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.step-item {
  border: 1px solid rgba(45, 226, 197, 0.24);
  border-radius: 12px;
  padding: 0.8rem;
  color: #d7e8ff;
  background: rgba(11, 21, 34, 0.52);
  font-weight: 550;
}

.final-cta {
  border-color: rgba(45, 226, 197, 0.36);
  background: linear-gradient(140deg, rgba(8, 28, 33, 0.72), rgba(11, 17, 34, 0.82));
}

@media (max-width: 840px) {
  .card-grid.three,
  .steps-inline {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 360px;
  }
  .panel {
    margin: 1.4rem 0;
    padding: 1.15rem;
  }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
