/* GEMSHOWRADAR_THEME_LOCK_V1 */
:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --surface-dark: #0b1324;
  --surface-dark-2: #101c33;
  --text: #152033;
  --text-soft: #4f5f7a;
  --text-light: rgba(255, 255, 255, 0.8);
  --line: rgba(15, 23, 42, 0.09);
  --line-strong: rgba(15, 23, 42, 0.14);
  --accent: #2b6de0;
  --accent-2: #6ea8ff;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --shadow-md: 0 18px 48px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 72px rgba(15, 23, 42, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  overflow-x: hidden;
  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(110, 168, 255, 0.24), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
ul {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
}

.skip-link,
.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;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  margin: 1rem;
  background: var(--surface-dark);
  color: #fff;
  border-radius: 999px;
  z-index: 1000;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
}

.brand,
.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.1rem;
  font-size: 0.98rem;
  color: var(--text-soft);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.65rem;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.nav-caret {
  width: 0.58rem;
  height: 0.58rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.18s ease;
}

.nav-dropdown.is-open .nav-caret,
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 50%;
  display: grid;
  gap: 0.2rem;
  min-width: 10.75rem;
  width: max-content;
  max-width: 14rem;
  padding: 0.55rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 130;
}

.nav-dropdown-menu a {
  display: flex;
  min-height: 42px;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  color: var(--text);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--text);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-weight: 500;
  line-height: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.3rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button-sm {
  padding: 0.72rem 1rem;
  font-size: 0.94rem;
}

.button-primary,
.button-secondary,
.button-outline {
  padding: 0.95rem 1.35rem;
}

.button-primary {
  background: linear-gradient(135deg, #225ed0 0%, #0f3f9c 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(34, 94, 208, 0.26);
}

.button-secondary,
.button-outline {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.12);
}

.site-header,
main,
.page-main,
.hero,
.section,
.site-footer {
  overflow-x: clip;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(43, 109, 224, 0.08);
  color: #204c98;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.page-heading h1,
.not-found h1 {
  margin: 0 0 1rem;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  max-width: 16ch;
}

.lead,
.section-heading p,
.footer-copy,
.contact-note {
  color: var(--text-soft);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.4rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text-soft);
}

.hero-points li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-visual {
  display: grid;
  gap: 1rem;
  justify-items: end;
  padding-top: 3.05rem;
}

.show-card {
  width: min(100%, 420px);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
}

.show-card-main {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,249,255,0.96));
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.show-card-accent {
  background: linear-gradient(135deg, #0e1f40 0%, #173266 100%);
  color: #fff;
}

.show-card-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.show-card-title {
  margin: 0.55rem 0 1rem;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.show-card-list {
  display: grid;
  gap: 0.8rem;
}

.show-card-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}

.show-card-list span {
  color: var(--text-soft);
}

.show-card p {
  margin: 0.5rem 0 0;
  color: var(--text-light);
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: rgba(255,255,255,0.56);
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.section-dark {
  background: linear-gradient(180deg, #0b1324 0%, #101c33 100%);
  color: #fff;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2,
.highlight-band h2,
.two-column-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.section-heading-light .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
}

.section-heading-light p,
.audience-card p {
  color: var(--text-light);
}

.feature-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card,
.audience-card,
.contact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
}

.feature-card h3,
.audience-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.feature-card p,
.contact-card,
.legal-copy p,
.page-main p,
.faq-list p,
.two-column-copy p {
  color: var(--text-soft);
}

.audience-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.highlight-band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 1.5rem 2.5rem;
  padding: 2rem 2.1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(17, 33, 66, 0.98), rgba(40, 78, 153, 0.94));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.highlight-band > :first-child,
.highlight-band > :last-child {
  min-width: 0;
}

.highlight-band > :last-child {
  max-width: 34rem;
  justify-self: end;
}

.highlight-band .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.highlight-band h2 {
  max-width: none;
  margin-bottom: 0;
}

.highlight-band p {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.88);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0.85rem 0 0;
}

.site-footer {
  padding: 3rem 0 1.2rem;
  background: #f8fbff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.7fr;
  gap: 2rem;
}

.footer-title {
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--text-soft);
}

.footer-copy {
  max-width: 34ch;
  margin: 1rem 0 0;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--text-soft);
  font-size: 0.95rem;
}

.page-main {
  padding: 4.5rem 0 5rem;
}

.page-heading h1,
.not-found h1 {
  font-size: clamp(2.3rem, 4.3vw, 4.2rem);
}

.contact-card {
  margin: 1.6rem 0 1rem;
}

.contact-label {
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-email {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #143c86;
}

.legal-copy p + p,
.page-main p + p {
  margin-top: 1rem;
}

.compact-footer {
  padding-top: 1rem;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.not-found-inner {
  text-align: center;
}

@media (max-width: 1000px) {
  .hero-grid,
  .feature-grid,
  .audience-grid,
  .two-column-copy,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-items: start;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 1rem;
    white-space: nowrap;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem 1.2rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
  }

  .site-nav a:first-child {
    border-top: 0;
  }

  .hero,
  .section,
  .page-main {
    padding: 4rem 0;
  }

  .hero-points,
  .feature-grid,
  .audience-grid,
  .two-column-copy,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .highlight-band {
    grid-template-columns: 1fr;
  }

  .highlight-band > :last-child {
    max-width: none;
    justify-self: stretch;
  }

  .highlight-band h2 {
    max-width: none;
  }
}

.page-intro {
  color: var(--text-soft);
  font-size: 1.08rem;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.form-side-copy,
.early-access-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-side-copy {
  padding: 1.75rem;
}

.form-side-copy h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.check-list {
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.check-list li + li {
  margin-top: 0.65rem;
}

.form-note-card {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--surface-soft);
  border-radius: 18px;
  border: 1px solid var(--line);
}

.form-note-card p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
}

.early-access-form {
  padding: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field-group-full {
  grid-column: 1 / -1;
}

.field-group label,
.checkbox-label {
  font-weight: 700;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: 0.92rem 1rem;
  font: inherit;
}

.field-group textarea {
  resize: vertical;
  min-height: 140px;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: 2px solid rgba(43, 109, 224, 0.18);
  border-color: rgba(43, 109, 224, 0.55);
}

.checkbox-group {
  margin-top: 0.15rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-weight: 600;
}

.checkbox-label input {
  margin-top: 0.18rem;
}

.form-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.form-help {
  margin: 0;
  color: var(--text-soft);
}

.form-status {
  margin-top: 1rem;
  min-height: 1.5rem;
  font-weight: 700;
}

.form-status-success {
  color: #12643d;
}

.form-status-title {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.form-status-subtle {
  display: block;
  margin-top: 0.32rem;
  font-weight: 600;
  color: rgba(18, 100, 61, 0.88);
}

.form-status-error {
  color: #a12b2b;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .form-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}


.hero-updated {
  padding-bottom: 3.5rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stat-card {
  padding: 1rem 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.hero-stat-card strong,
.region-pill-grid span {
  display: block;
  font-size: 0.98rem;
}

.hero-stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.show-card-map {
  min-height: 280px;
}

.region-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.region-pill-grid span {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.show-card-agenda {
  margin-top: 1.25rem;
}

.mini-check-list,
.compact-check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.mini-check-list li,
.compact-check-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.7rem;
}

.mini-check-list li::before,
.compact-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent-2);
}

.browse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card-strong {
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(248,251,255,0.92) 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.section-split {
  padding-top: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.split-panel {
  padding: 2rem;
  border-radius: 28px;
}

.split-panel-dark {
  background: linear-gradient(135deg, #0b1324 0%, #15294a 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.split-panel-dark p {
  color: rgba(255,255,255,0.8);
}

.eyebrow-dark {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.92);
}

.split-panel-light {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.highlight-band-expanded {
  gap: 1rem 2rem;
}

.highlight-band-expanded p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.about-copy-grid {
  align-items: start;
}

@media (max-width: 960px) {
  .hero-stat-grid,
  .browse-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }
}


.path-grid,
.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.path-card,
.priority-card,
.content-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.path-card-kicker {
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2857ad;
}

.path-card h3,
.priority-card h3,
.content-card h2 {
  margin: 0 0 0.7rem;
  line-height: 1.15;
}

.audience-grid-expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stacked-content {
  display: grid;
  gap: 1.4rem;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.content-card-grid-tight {
  align-items: start;
}

.form-shell-expanded {
  align-items: start;
}

.field-label {
  display: block;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.option-group {
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.option-group .field-label {
  margin-bottom: 0.95rem;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
}

.checkbox-row,
.checkbox-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  width: 100%;
  font-size: 0.98rem;
  color: var(--text);
}

.checkbox-row {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.checkbox-row:hover,
.checkbox-row:focus-within,
.checkbox-inline:hover,
.checkbox-inline:focus-within {
  border-color: rgba(43, 109, 224, 0.26);
}

.checkbox-row:focus-within {
  box-shadow: 0 0 0 4px rgba(43, 109, 224, 0.08);
  background: #fdfefe;
}

.checkbox-row input,
.checkbox-inline input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0.1rem 0 0;
}

.checkbox-row span,
.checkbox-inline span {
  flex: 1 1 auto;
  line-height: 1.4;
}

.checkbox-group {
  padding-top: 0.25rem;
}

.checkbox-inline {
  gap: 0.75rem;
  padding: 0;
}

.footer-compact-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-bottom: 1rem;
}

.footer-brand-line {
  margin: 0;
  max-width: 560px;
  color: var(--text-soft);
}

.footer-links-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  color: var(--text-soft);
}

@media (max-width: 980px) {
  .path-grid,
  .priority-grid,
  .audience-grid-expanded,
  .content-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .interest-grid,
  .content-card-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .path-grid,
  .priority-grid,
  .audience-grid-expanded {
    grid-template-columns: 1fr;
  }
}

}


.section-heading-compact {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-compact p {
  max-width: 680px;
  margin-inline: auto;
}

.browse-grid-tight,
.path-grid-balanced,
.priority-grid-tight {
  max-width: 1040px;
  margin-inline: auto;
}

.feature-grid-balanced-cards,
.content-card-grid-balanced {
  align-items: stretch;
}

.feature-grid-balanced-cards .feature-card,
.content-card-grid-balanced .feature-card {
  align-self: stretch;
}

.feature-grid-balanced-cards .feature-card h3,
.content-card-grid-balanced .feature-card h3 {
  max-width: 18ch;
}

.feature-card-tight,
.path-card-clean,
.priority-grid-tight .priority-card,
.audience-card-tight {
  min-height: 0;
}

.feature-card-tight {
  padding: 1.25rem 1.25rem 1.2rem;
}

.feature-card-eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2857ad;
}

.browse-grid-tight .feature-card h3,
.path-card-clean h3,
.priority-grid-tight .priority-card h3,
.audience-card-tight h3 {
  margin-bottom: 0.55rem;
}

.browse-grid-tight .feature-card p,
.path-card-clean p,
.priority-grid-tight .priority-card p,
.audience-card-tight p {
  margin-bottom: 0;
}

.path-grid-balanced {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.path-card-clean {
  padding: 1.35rem 1.35rem 1.25rem;
}

.path-card-clean .path-card-kicker {
  display: none;
}

.split-grid-refined {
  align-items: stretch;
}

.split-panel-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.interest-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

.checkbox-row,
.checkbox-inline,
.checkbox-inline-compact {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 0.75rem;
  row-gap: 0;
}

.checkbox-row {
  width: 100%;
  padding: 0.95rem 1rem;
}

.checkbox-inline,
.checkbox-inline-compact {
  width: auto;
  justify-content: start;
}

.checkbox-inline-compact {
  max-width: 680px;
}

.checkbox-row input,
.checkbox-inline input,
.checkbox-inline-compact input {
  width: 18px;
  height: 18px;
  margin: 0.12rem 0 0;
  align-self: start;
}

.checkbox-copy {
  display: block;
  min-width: 0;
  line-height: 1.4;
}

.checkbox-group {
  padding-top: 0.15rem;
}

@media (max-width: 980px) {
  .browse-grid-tight,
  .path-grid-balanced,
  .priority-grid-tight,
  .audience-grid-tight {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .interest-list,
  .browse-grid-tight,
  .path-grid-balanced,
  .priority-grid-tight,
  .audience-grid-tight {
    grid-template-columns: 1fr;
  }

  .checkbox-inline-compact {
    max-width: none;
  }
}


/* Header and logo cleanup */
:root {
  --header-logo-width: 340px;
  --header-logo-width-tablet: 280px;
  --header-logo-width-mobile: 250px;
  --footer-logo-width: 360px;
  --footer-logo-width-mobile: 280px;
  --not-found-logo-height: 84px;
}

.site-header .brand,
.site-footer .brand-footer {
  flex: 0 0 auto;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 96px;
  padding-block: 0.35rem;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header .brand-logo {
  display: block;
  width: clamp(220px, 30vw, var(--header-logo-width));
  height: auto !important;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-footer .brand-footer {
  display: inline-flex;
  align-items: center;
}

.site-footer .brand-logo-footer {
  display: block;
  width: min(100%, var(--footer-logo-width));
  height: auto !important;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
}

.brand-logo-404 {
  height: 84px;
  max-width: 560px;
  margin: 0 auto 1rem;
}

.brand-text,
.brand-wordmark,
.brand-name {
  display: none !important;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.site-nav a[aria-current="location"] {
  color: var(--text);
  background: rgba(37, 99, 235, 0.10);
  border-radius: 999px;
  padding-inline: 0.72rem;
}

.site-nav a[data-nav="early-access"],
.site-nav a.nav-pill {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.08rem !important;
  border-radius: 999px !important;
  background: #e5e7eb !important;
  color: #111827 !important;
  font-weight: 700 !important;
  border: 1px solid rgba(15, 23, 42, 0.16) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35) !important;
}

.site-nav a[data-nav="early-access"]:hover,
.site-nav a[data-nav="early-access"]:focus-visible,
.site-nav a.nav-pill:hover,
.site-nav a.nav-pill:focus-visible {
  background: #dbe1e8 !important;
  color: #111827 !important;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 88px;
  }

  .site-header .brand-logo {
    width: min(100%, var(--header-logo-width-tablet));
  }

  .site-footer .brand-logo-footer {
    width: min(100%, 320px);
  }

  .brand-logo-404 {
    height: 72px;
    max-width: 460px;
  }
}

@media (max-width: 760px) {
  html,
  body,
  .page-main,
  main,
  .site-footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .header-inner {
    overflow: visible;
  }

  .header-inner {
    min-height: 74px;
    gap: 0.75rem;
    padding-block: 0.2rem;
  }

  .site-header .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-header .brand-logo {
    width: min(100%, 250px);
  }

  .hero-copy,
  .hero h1 {
    max-width: none;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 10vw, 4rem);
  }

  .nav-toggle {
    flex: 0 0 auto;
    margin-left: auto;
    position: relative;
    z-index: 121;
  }

  .site-nav {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 4.9rem);
    left: auto;
    right: 0.5rem;
    width: min(320px, calc(100vw - 1rem));
    max-width: calc(100vw - 1rem);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - 5.75rem);
    margin-left: auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 120;
  }

  .nav-dropdown {
    display: grid;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.2rem;
    padding: 0.25rem 0 0 0.8rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown:not(.is-open) .nav-dropdown-menu {
    display: none;
  }

  .site-nav:not(.is-open) {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 72px;
  }

  .site-header .brand-logo {
    width: min(100%, var(--header-logo-width-mobile));
  }

  .site-footer .brand-logo-footer {
    width: min(100%, var(--footer-logo-width-mobile));
  }

  .brand-logo-404 {
    height: 60px;
    max-width: 280px;
  }

  .site-nav a[data-nav="early-access"],
  .site-nav a.nav-pill {
    padding: 0.68rem 1rem !important;
  }
}


.back-to-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px) + 1rem);
  bottom: max(1rem, env(safe-area-inset-bottom, 0px) + 1rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: #10213d;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.18s ease, box-shadow 0.18s ease;
  z-index: 2200;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.26);
  transform: translateY(0);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top span {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 640px) {
  .back-to-top {
    width: 48px;
    height: 48px;
    right: max(0.85rem, env(safe-area-inset-right, 0px) + 0.85rem);
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px) + 0.85rem);
  }
}


.field-group--full,
#heardFromOtherGroup {
  grid-column: 1 / -1;
}

#heardFromOtherGroup[hidden] {
  display: none !important;
}

.field-group select,
.field-group input,
.field-group textarea {
  width: 100%;
}

.form-grid .field-group label {
  display: block;
  min-height: 2.8em;
}


.feature-card,
.path-card,
.show-card,
.priority-card,
.hero-stat-card,
.faq-list details {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.feature-card:hover,
.path-card:hover,
.show-card:hover,
.priority-card:hover,
.hero-stat-card:hover,
.faq-list details:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
  border-color: rgba(37, 99, 235, 0.20);
}

.field-group--full {
  grid-column: 1 / -1;
}

#heardFromOtherGroup[hidden] {
  display: none !important;
}


.site-header.is-scrolled {
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}


html {
  scroll-padding-top: 96px;
}

body {
  overflow-x: clip;
}

.site-shell,
.page-shell,
main {
  overflow: visible;
}

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: inherit;
}



.cta-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.content-card-accent-light {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,243,251,0.96));
}

.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.section-cta-row-centered {
  justify-content: center;
}

.section-cta-row-spaced {
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #143c86;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.top-gap-lg {
  margin-top: 2.25rem;
}

.faq-list-page details[open] {
  border-color: rgba(37, 99, 235, 0.18);
}

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


.page-shell-wide {
  width: min(calc(100% - 2rem), 1080px);
  margin-inline: auto;
}

.page-heading-panel {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,251,255,0.92) 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.page-heading-actions-refined,
.hero-actions-refined,
.browse-cta-row,
.hero-audience-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.page-heading-actions-refined,
.hero-actions-refined {
  margin-top: 1.1rem;
}

.hero-grid-refined {
  align-items: start;
  gap: 2rem;
}

.hero-stat-grid-refined {
  margin-top: 1.5rem;
}

.hero-stat-grid-refined .hero-stat-card {
  min-height: 100%;
}

.hero-audience-cta-row {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
  padding-top: 0.4rem;
}

.section-heading-home {
  max-width: 760px;
}

.browse-cta-row {
  margin-top: 1.2rem;
}

.section-cta-row-soft {
  padding: 0.35rem 0;
}

@media (max-width: 900px) {
  .page-shell-wide {
    width: min(calc(100% - 2rem), var(--container));
  }

  .page-heading-panel {
    padding: 1.1rem;
    border-radius: 22px;
  }

  .hero-grid-refined {
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .page-heading-actions-refined,
  .hero-actions-refined,
  .browse-cta-row,
  .hero-audience-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .page-heading-actions-refined .button,
  .hero-actions-refined .button,
  .browse-cta-row .button,
  .hero-audience-cta-row .button {
    width: 100%;
    justify-content: center;
  }

  .page-heading-panel {
    padding: 1rem;
  }
}

.form-shell-expanded {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.early-access-form-refined {
  display: grid;
  gap: 1rem;
}

.form-section {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.form-section-preferences {
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(43, 109, 224, 0.16);
}

.form-section-consent {
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.form-section-heading {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 0.95rem;
}

.form-section-step {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0b1324;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(11, 19, 36, 0.18);
}

.form-section-heading h2 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
}

.form-section-heading p {
  margin: 0.3rem 0 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.field-note {
  margin: 0.15rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.option-group-compact {
  margin: 0;
}

.interest-list-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 0.75rem;
}

.checkbox-row-compact {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.15rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.checkbox-row-compact:hover,
.checkbox-row-compact:focus-within {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.checkbox-row-compact input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.consent-row {
  display: block;
}

.consent-inline {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  width: 100%;
  max-width: none;
}

.consent-inline input {
  width: 18px;
  height: 18px;
  margin: 0.15rem 0 0;
}

.form-actions-row-refined {
  align-items: flex-start;
  justify-content: space-between;
}

.form-actions-row-refined .form-help {
  flex: 1 1 260px;
}

@media (min-width: 860px) {
  .form-shell-expanded {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 1.5rem;
  }

  .interest-list-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.85rem;
  }
}

@media (min-width: 1100px) {
  .interest-list-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .form-section {
    padding: 0.95rem;
  }

  .form-section-heading {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .form-section-step {
    width: 1.8rem;
    height: 1.8rem;
  }

  .form-actions-row-refined {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions-row-refined .button {
    width: 100%;
    justify-content: center;
  }
}
