/* Custom scrollbar styles */
body::-webkit-scrollbar {
  width: 7px;
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #7ce7ff 40%, #bdb2ff 100%);
  border-radius: 6px;
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #bdb2ff 40%, #7ce7ff 100%);
}

body {
  scrollbar-width: thin;
  scrollbar-color: #7ce7ff #05070f;
}
:root {
  --bg: #05070f;
  --panel: #0d1324;
  --accent: #7ce7ff;
  --text: #e7eefc;
  --muted: #9ba6bf;
  --border: rgba(124, 231, 255, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(124, 231, 255, 0.07), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(189, 178, 255, 0.08), transparent 35%),
    var(--bg);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background: url("/static/img/satellite.png") center center no-repeat;
  background-size: cover;
  opacity: 0.22;
  filter: blur(12px);
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 1;
}

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

header.hero {
  position: relative;
  padding: 4rem min(8vw, 5rem) 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0.5rem 0 1rem;
}

.hero__visual {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.hero__visual .visual-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.button {
  padding: 0.9rem 1.3rem;
  background: linear-gradient(135deg, #7ce7ff, #bdb2ff);
  color: #041427;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(124, 231, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(124, 231, 255, 0.35);
}

.link {
  color: var(--accent);
  font-weight: 500;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.lede {
  font-size: 1.1rem;
  color: #d8e4ff;
  margin: 0 0 1rem;
}

.panel {
  margin: 0 auto;
  padding: 2.5rem min(8vw, 5rem);
  border-top: 1px solid var(--border);
  max-width: 1100px;
}

.panel__header h2 {
  margin: 0.3rem 0 1rem;
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
}

.panel__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.copy p {
  margin: 0 0 0.8rem;
}

.copy ul {
  padding-left: 1.2rem;
  margin: 0.4rem 0 0;
  color: #dce5ff;
  display: grid;
  gap: 0.4rem;
}

.copy li {
  line-height: 1.5;
}

.panel__cta {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.muted {
  color: var(--muted);
}

.visual-card {
  background: linear-gradient(135deg, rgba(124, 231, 255, 0.08), rgba(189, 178, 255, 0.05));
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 50px rgba(4, 20, 39, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.visual-card.scroll {
  max-height: 40vh;
  overflow-y: scroll;
}

.visual-card img {
  width: 100%;
  display: block;
}

.visual-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem 1rem;
  gap: 1rem;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(124, 231, 255, 0.08);
  border: 1px solid var(--border);
}

.logo-chip img {
  width: 32px;
  height: 32px;
}

.visual-label {
  color: var(--muted);
  margin: 0;
}

.visual__placeholder {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  min-height: 150px;
  background: linear-gradient(135deg, rgba(124, 231, 255, 0.08), rgba(189, 178, 255, 0.05));
  color: #dce5ff;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer {
  margin: 3rem auto;
  padding: 2.5rem min(8vw, 5rem);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124, 231, 255, 0.08), rgba(189, 178, 255, 0.04));
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer h3 {
  margin: 0.4rem 0 0.6rem;
}

.glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(124, 231, 255, 0.18), transparent 60%);
  filter: blur(30px);
  top: -80px;
  right: -80px;
  z-index: 0;
  pointer-events: none;
}

.hero__content, .hero__visual {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  header.hero {
    padding-top: 3rem;
  }
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .visual-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
