:root {
  --bg: #040710;
  --panel: rgba(14, 20, 32, 0.92);
  --cyan: #19c5ff;
  --deep-cyan: #0b8dcb;
  --orange: #ff8a33;
  --text: #ecf5ff;
  --muted: rgba(236, 245, 255, 0.7);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(25, 197, 255, 0.25), transparent 35%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

p {
  margin: 0;
}

.container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
  padding: 40px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pulse-aurora {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(25, 197, 255, 0.18), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 138, 51, 0.15), transparent 55%);
  filter: blur(120px);
  z-index: -1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-glow {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(25, 197, 255, 0.2), rgba(255, 138, 51, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.eyebrow {
  font-size: 0.85rem;
  color: var(--muted);
}

.header-cta {
  display: flex;
  gap: 12px;
}

.cta,
button.cta {
  background: linear-gradient(120deg, var(--cyan), var(--deep-cyan));
  color: #02121f;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  text-decoration: none;
}

.ghost,
button.ghost {
  background: transparent;
  border: 1px solid rgba(236, 245, 255, 0.3);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  font-size: 0.75rem;
}

.hero h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 10px 0;
}

.hero h2 span {
  color: var(--cyan);
}

.hero p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.console {
  background: rgba(7, 12, 24, 0.95);
  border: 1px solid rgba(25, 197, 255, 0.2);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(5, 9, 20, 0.7);
}

.console-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.console-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.radar {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid rgba(25, 197, 255, 0.3);
  overflow: hidden;
}

.radar-sweep {
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, rgba(25, 197, 255, 0.2), transparent 45%);
  animation: sweep 4s linear infinite;
}

.radar-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-orange {
  background: var(--orange);
  top: 25%;
  left: 60%;
  box-shadow: 0 0 15px var(--orange);
}

.dot-cyan {
  background: var(--cyan);
  bottom: 20%;
  right: 20%;
  box-shadow: 0 0 12px var(--cyan);
}

@keyframes sweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.console-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.console-feed article {
  background: rgba(4, 12, 22, 0.8);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.label {
  font-size: 0.8rem;
  color: var(--muted);
}

.value {
  font-weight: 600;
  margin-top: 4px;
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 26px;
  padding: 28px;
}

.metrics-grid,
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.metrics-grid article,
.workflow-grid article {
  background: rgba(6, 10, 20, 0.8);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(25, 197, 255, 0.15);
}

.metrics-grid span {
  color: var(--cyan);
  font-weight: 600;
}

.workflow-head {
  text-align: center;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  border: 1px solid rgba(25, 197, 255, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
  letter-spacing: 0.2em;
}

.workflow-grid h4 {
  margin: 4px 0;
}

.workflow-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.tags {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.tags span {
  font-size: 0.75rem;
  background: rgba(25, 197, 255, 0.15);
  border: 1px solid rgba(25, 197, 255, 0.25);
  border-radius: 999px;
  padding: 4px 12px;
}

.detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.detail ul {
  margin-top: 16px;
  padding-left: 18px;
  color: var(--muted);
}

.detail-card {
  background: rgba(4, 10, 20, 0.9);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(4, 10, 20, 0.6);
}

.badge {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--orange);
}

.detail-card button {
  margin-top: 16px;
  border: none;
  background: var(--orange);
  color: #060a14;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
}

.contact {
  text-align: center;
  margin: -40px auto 0;
  max-width: 640px;
}

.contact p {
  color: var(--muted);
  margin: 12px auto;
  max-width: 480px;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  header,
  .hero-cta,
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta,
  .cta-row {
    align-items: stretch;
  }

  .console-body {
    grid-template-columns: 1fr;
  }
}
