:root {
  --bg: #f6f2eb;
  --bg-soft: #fbf8f3;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --ink: #182137;
  --muted: #586174;
  --muted-soft: #798095;
  --line: rgba(24, 33, 55, 0.1);
  --accent: #0f2c73;
  --accent-soft: #dfe7ff;
  --mint: #35d67c;
  --shadow: 0 24px 70px rgba(25, 36, 64, 0.08);
  --shadow-soft: 0 12px 35px rgba(25, 36, 64, 0.06);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --container: min(1180px, calc(100vw - 48px));
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(83, 112, 255, 0.08), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(53, 214, 124, 0.08), transparent 24%),
    linear-gradient(180deg, #faf7f2 0%, #f4efe6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle 360px at var(--cursor-x) var(--cursor-y), rgba(133, 162, 255, 0.11), transparent 70%);
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

img {
  max-width: 100%;
  display: block;
}

.cursor-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  left: calc(var(--cursor-x) - 11rem);
  top: calc(var(--cursor-y) - 11rem);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 214, 124, 0.12), rgba(83, 112, 255, 0.07) 46%, transparent 72%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 180ms ease;
}

.page-shell {
  position: relative;
  width: var(--container);
  min-height: 100vh;
  margin: 0 auto;
  padding: 26px 0 20px;
  overflow: hidden;
  z-index: 1;
}

.soft-field {
  position: absolute;
  inset: 92px 0 34px;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 20% 24%, rgba(53, 214, 124, 0.1), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(83, 112, 255, 0.08), transparent 24%),
    radial-gradient(circle at 52% 70%, rgba(189, 204, 255, 0.18), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  z-index: 0;
}

.soft-field::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 30px;
  border: 1px solid rgba(24, 33, 55, 0.03);
  pointer-events: none;
}

.topbar,
.hero,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark-wrap {
  width: 52px;
  height: 52px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 33, 55, 0.08);
  box-shadow: var(--shadow-soft);
}

.brand-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  border: 1px solid rgba(24, 33, 55, 0.08);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(53, 214, 124, 0.12);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 152px);
  padding: 18px 20px 8px;
  text-align: center;
}

.hero-copy {
  width: min(100%, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.83rem;
  line-height: 1.2;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-weight: 800;
  color: #3b4a74;
}

h1 {
  margin: 0;
  max-width: 8.8ch;
  font-size: clamp(3.2rem, 6.2vw, 5.45rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.lede {
  margin: 22px 0 0;
  max-width: 33ch;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.sublede-block {
  margin-top: 22px;
  padding: 18px 20px;
  width: min(100%, 620px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 33, 55, 0.08);
  box-shadow: var(--shadow-soft);
}

.label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  line-height: 1.1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #3b4a74;
}

.sublede {
  margin: 0;
  color: #3d465c;
  font-size: 0.98rem;
  line-height: 1.62;
}

.audience {
  margin: 20px 0 0;
  max-width: 43ch;
  color: var(--muted-soft);
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button:focus-visible {
  outline: 2px solid rgba(15, 44, 115, 0.35);
  outline-offset: 3px;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #193d96 0%, #0f2c73 100%);
  box-shadow: 0 18px 36px rgba(15, 44, 115, 0.18);
}

.button-primary:hover {
  box-shadow: 0 22px 40px rgba(15, 44, 115, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(24, 33, 55, 0.1);
}

.button-secondary:hover {
  border-color: rgba(24, 33, 55, 0.18);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  bottom: 5px;
  margin-right: 10px;
  margin-left: 10px;
  padding: 0 18px;
  color: var(--muted-soft);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100vw - 32px, 1180px);
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .soft-field {
    inset: 84px 0 22px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 18px;
  }

  h1,
  .lede,
  .audience {
    max-width: none;
  }

  .sublede-block {
    width: min(100%, 680px);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  body::before,
  .cursor-glow {
    opacity: 0.55;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .brand-mark-wrap {
    width: 48px;
    height: 48px;
  }

  .brand-wordmark {
    font-size: 1rem;
  }

  .status-pill {
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .soft-field {
    inset: 82px 0 16px;
    border-radius: 30px;
  }

  .soft-field::before {
    inset: 18px;
    border-radius: 22px;
  }

  .hero {
    padding: 8px 14px 18px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 3.7rem);
    max-width: 9.4ch;
  }

  .lede,
  .sublede,
  .audience {
    font-size: 0.97rem;
  }

  .sublede-block {
    padding: 16px 16px 17px;
    border-radius: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .cursor-glow {
    display: none;
  }
}
