:root {
  --primary: #6a35e7;
  --primary-dark: #5526c3;
  --surface: #fbfbfb;
  --surface-strong: #ffffff;
  --text: #15121f;
  --muted: #5e5a6d;
  --border: rgba(106, 53, 231, 0.14);
  --shadow: 0 24px 80px rgba(24, 12, 62, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(106, 53, 231, 0.12), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(106, 53, 231, 0.1), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, var(--surface) 55%, #f4f1ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(106, 53, 231, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 53, 231, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 72%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 32px 0;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 53, 231, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding-right: clamp(0px, 2vw, 24px);
}

.eyebrow-logo {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}


.lead {
  margin: 0;
  max-width: 56ch;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
  color: var(--muted);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.status-pill--active {
  background: var(--surface);
  color: #000;
  border-color: var(--border);
}

.cta-link {
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(106, 53, 231, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cta-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 34px rgba(106, 53, 231, 0.3);
}

.visual-panel {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  border: 1px solid rgba(106, 53, 231, 0.14);
  background:
    radial-gradient(circle at 30% 20%, rgba(106, 53, 231, 0.2), transparent 28%),
    radial-gradient(circle at 72% 30%, rgba(106, 53, 231, 0.14), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f3efff 100%);
  overflow: hidden;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(106, 53, 231, 0.08);
}

.panel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 210px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(106, 53, 231, 0.14);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(45, 23, 98, 0.12);
}

.panel-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.panel-card strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .visual-panel {
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1000px);
    padding: 12px 0 20px;
  }

  .hero-card {
    padding: 22px;
    border-radius: 24px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .cta-link {
    width: 100%;
  }

  .visual-panel {
    min-height: 360px;
  }

  .panel-card {
    min-width: min(100%, 170px);
  }

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