:root {
  --bg: #08111d;
  --bg2: #0d1a2c;
  --panel: rgba(12, 24, 42, 0.82);
  --panel-border: rgba(110, 180, 255, 0.18);
  --text: #edf5ff;
  --muted: #b8c7da;
  --accent: #4de2c5;
  --accent-2: #5aa7ff;
  --accent-3: #8f7cff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(90, 167, 255, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(143, 124, 255, 0.12), transparent 26%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

body {
  position: relative;
  overflow-x: hidden;
}

.page-bg::before,
.page-bg::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.page-bg::before {
  top: 8%;
  left: -8%;
  background: var(--accent-2);
}

.page-bg::after {
  right: -8%;
  bottom: 4%;
  background: var(--accent-3);
}

.container {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 2rem;
}

.hero-card,
.footer-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-card {
  display: grid;
  grid-template-columns: 0.75fr 1.4fr;
  gap: 2rem;
  align-items: center;
  border-radius: 24px;
  padding: 2.25rem;
}

.hero-copy {
  padding-right: 1rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(77, 226, 197, 0.14);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0 0 1rem 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.dot {
  color: var(--accent);
}

.tagline {
  margin: 0 0 1rem 0;
  color: var(--text);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}

.subtext {
  margin: 0 0 1.75rem 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 62ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #30c8b0);
  color: #07131f;
}

.button.secondary {
  background: rgba(90, 167, 255, 0.1);
  color: var(--text);
  border-color: rgba(90, 167, 255, 0.35);
}

.microcopy {
  color: #98abc2;
  font-size: 0.92rem;
  line-height: 1.5;
}

code {
  background: rgba(255,255,255,0.07);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 35px rgba(0, 0, 0, 0.35));
}

.footer-card {
  margin-top: 1rem;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.footer-sep {
  opacity: 0.6;
  margin: 0 0.45rem;
}

.footer-right a {
  color: var(--accent);
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-art {
    order: -1;
  }

  .footer-card {
    flex-direction: column;
    align-items: flex-start;
  }
}