@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700; /* variable range, tweak if needed */
  font-style: normal;
  font-display: swap;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #050509;
  --bg-elevated: #0b0b12;
  --accent: #f5f5f5;
  --accent-soft: rgba(255, 255, 255, 0.08);
  --text-main: #f7f7f7;
  --text-muted: #a0a0b8;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 1.75rem;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.7);
}

html, body {
  margin: 0;
  padding: 0;
}

/* Put the gradient on the root element so it spans the full page */
html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, #202040 0, transparent 55%),
    radial-gradient(circle at bottom right, #151530 0, transparent 55%),
    #050509; /* fallback solid color */
}

/* Make the body transparent so the html background shows through */
body {
  min-height: 100vh;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: transparent;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero */

.hero {
  padding: 3.5rem 1.5rem 1rem;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: 20%;
  height: auto;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.9));
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
}

.hero-lead {
  margin: 0 auto;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Split section with central vertical line */

.split-section {
  max-width: 1100px;
  margin: 4.5rem auto 3.5rem;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  border: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto minmax(0, 1.3fr);
  gap: 3rem;
  box-shadow: var(--shadow-soft);
}

.split-column h2 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.split-column p {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.split-divider {
  display: flex;
  justify-content: center;
}

.divider-line {
  display: block;
  width: 2px;
  height: 100%;
  min-height: 180px;
  background: linear-gradient(to bottom, transparent, #ffffff, transparent);
  border-radius: var(--radius-pill);
  opacity: 0.9;
}

/* Metrics strip */

.metrics-strip {
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
  width: 100%;
}

.metrics-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 60%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.metrics-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.metrics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.metrics-list span {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Bottom CTA (header-style footer) */

.bottom-cta {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 1.5rem 3.5rem;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 65%);
}

.bottom-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.bottom-inner h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.bottom-inner p {
  margin: 0 auto 1.75rem;
  max-width: 540px;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.primary-btn {
  background: #ffffff;
  color: #050509;
  border: 1px solid transparent;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 1);
}

.ghost-btn {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* Responsive */

@media (max-width: 900px) {
  .split-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .split-divider {
    order: -1;
  }

  .divider-line {
    width: 100%;
    height: 2px;
    min-height: 2px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
  }

  .metrics-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2.75rem;
  }

  .hero-logo {
    width: 80px;
  }

  .split-section {
    padding: 2rem 1.5rem;
  }

  .bottom-cta {
    padding-inline: 1.25rem;
  }
}
