:root {
  color-scheme: dark;
  --bg: #05070b;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: #aab4c4;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #47a3ff;
  --accent-strong: #8cc8ff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 20%, rgba(71, 163, 255, 0.18), transparent 34rem),
    linear-gradient(135deg, #05070b 0%, #0b1018 48%, #05070b 100%);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 4.5rem);
}

.hero {
  width: min(1180px, 100%);
  min-height: min(680px, calc(100vh - 2.5rem));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.copy {
  position: relative;
  z-index: 1;
}

.status {
  width: fit-content;
  margin: 0 0 1.25rem;
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(71, 163, 255, 0.34);
  border-radius: 999px;
  background: rgba(71, 163, 255, 0.08);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  line-height: 0.9;
  font-weight: 800;
}

.lead {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.button {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.05rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.primary {
  border-color: rgba(71, 163, 255, 0.65);
  background: var(--accent);
  color: #04101f;
}

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

.visual {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 840px) {
  .page {
    place-items: start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 2rem;
  }

  .visual {
    order: -1;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.25rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .visual {
    animation: lift 900ms ease-out both;
  }

  .copy {
    animation: fade-in 700ms ease-out 120ms both;
  }
}

@keyframes lift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
