/* Instats.ai · September 2026 design revision. All layout and typography are native HTML/CSS. */
:root {
  --blue: #00547b;
  --teal: #3092b1;
  --navy: #002735;
  --deep: #001e2c;
  --ink: #132e3a;
  --muted: #536874;
  --pale: #edf6fa;
  --line: #dce7eb;
  --mint: #9dd9e7;
  --white: #fff;
  --max: 1320px;
  --shadow: 0 12px 36px rgba(0, 45, 65, 0.08);
  --card-radius: 16px;
  --frame-radius: 12px;
  --frame-surface: #f7fafb;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: white;
  color: var(--ink);
  font:
    400 16px/1.65 "Montserrat",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
  cursor: pointer;
  background: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.18;
  letter-spacing: -0.035em;
}
h1,
h2,
h3 {
  font-weight: 700;
}
h2 {
  font-size: 42px;
}
h3 {
  font-size: 25px;
}
p {
  color: var(--muted);
}
p + p {
  margin-top: 15px;
}
.wrap {
  width: min(var(--max), calc(100% - 112px));
  margin: auto;
}
.section {
  padding: 96px 0;
}
.soft {
  background: var(--pale);
}
.night {
  background: var(--navy);
  color: white;
}
.night p {
  color: #bbced5;
}
.eyebrow {
  color: var(--blue);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.night .eyebrow {
  color: var(--mint);
}
.lead {
  font-size: 17px;
  line-height: 1.8;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 40px;
}
.section-head h2 {
  max-width: 720px;
}
.section-head p {
  max-width: 410px;
  font-size: 14px;
}
.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.035em;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--pale);
  color: var(--blue);
}
.label.outline {
  background: transparent;
  border: 1px solid #527683;
  color: #d9edf3;
}
.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  vertical-align: middle;
  stroke-width: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  padding: 13px 23px;
  min-height: 48px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 30px;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: normal;
}
.btn:hover {
  transform: none;
}
.btn.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.btn.primary:hover {
  background: #003d5a;
}
.btn.secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn.secondary:hover {
  background: #e7f3f8;
}
.btn.white {
  background: white;
  color: var(--blue);
  border-color: white;
}
.btn.ghost {
  color: white;
  border-color: #7ea4b4;
  background: transparent;
}
.btn.ghost:hover {
  background: #ffffff12;
}
.btn.small {
  padding: 9px 16px;
  min-height: 39px;
  font-size: 11px;
}
.btn .icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 27px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
  padding: 3px 0;
  text-align: left;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link .icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}
.night .text-link {
  color: #cae9f2;
}
.note {
  font-size: 10px;
  line-height: 1.6;
  color: #70848e;
}
.note .icon {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  background: white;
  padding: 12px;
  z-index: 999;
}
.skip:focus {
  top: 15px;
}
:focus-visible {
  outline: 3px solid #dcac50;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
/* Header and distinct authenticated destinations. */
.utility {
  background: #111b20;
  color: #cedce2;
  font-size: 10px;
  letter-spacing: 0.035em;
}
.utility .wrap {
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility a {
  color: white;
}
.site-header {
  height: 88px;
  background: white;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  height: 100%;
  gap: 28px;
  align-items: center;
}
.brand {
  display: inline-flex;
  gap: 4px;
  align-items: flex-end;
  flex-shrink: 0;
}
.brand img {
  width: 140px;
  height: auto;
}
.brand span {
  font-size: 17px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: -2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}
.nav > a,
.nav > button,
.signin > summary {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.nav > a:hover {
  color: var(--teal);
}
.nav .btn {
  font-size: 12px;
  min-height: 43px;
  padding: 11px 20px;
}
.signin {
  position: relative;
}
.signin summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 0;
}
.signin summary::-webkit-details-marker {
  display: none;
}
.signin summary .icon {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
}
.signin-menu {
  position: absolute;
  right: 0;
  top: 48px;
  width: 255px;
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 8px;
}
.signin-menu a {
  display: block;
  padding: 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}
.signin-menu a:hover {
  background: var(--pale);
}
.signin-menu small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  margin-top: 3px;
}
.mobile-toggle {
  display: none;
  margin-left: auto;
  padding: 10px;
}
.header-dark {
  background: var(--deep);
  border-color: #ffffff15;
  color: white;
}
.header-dark .brand span {
  color: var(--mint);
}
.header-dark .btn.primary {
  background: white;
  color: var(--blue);
  border-color: white;
}
/* Shared hero content, three different compositions. */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-main {
  padding: 76px 0 65px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 52px;
  align-items: center;
}
.hero h1 {
  font-size: 73px;
  line-height: 1.12;
  letter-spacing: -0.055em;
}
.hero h1 .subline {
  display: block;
  font-size: 31px;
  letter-spacing: -0.027em;
  line-height: 1.4;
  margin-top: 14px;
  white-space: nowrap;
  color: var(--mint);
  font-weight: 600;
}
.hero p.lead {
  max-width: 605px;
  font-size: 15px;
  line-height: 1.9;
  margin-top: 28px;
}
.hero .eyebrow {
  margin-bottom: 25px;
}
.hero .security-link {
  margin-top: 24px;
  font-size: 10px;
  gap: 7px;
}
.hero .actions {
  margin-top: 29px;
}
.classic .hero {
  background: linear-gradient(112deg, #0b2d3e 5%, #07374b 65%, #00547b 125%);
}
.hero-product {
  background: white;
  color: var(--ink);
  border: 1px solid #ffffff4a;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 24px 65px #00162350;
  position: relative;
}
.hero-product .label {
  margin-bottom: 10px;
}
.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.hero-product h2 {
  font-size: 27px;
  margin-bottom: 8px;
}
.hero-product p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.hero-product .image-window {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f4f7f9;
}
.hero-product .image-window img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: 57% top;
}
.hero-product .image-window button {
  padding: 0;
  width: 100%;
}
.product-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 17px;
}
.product-foot .note {
  max-width: 190px;
}
.product-foot .text-link {
  color: var(--blue);
}
.pillars {
  border-top: 1px solid #ffffff21;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillar {
  display: flex;
  gap: 14px;
  padding: 25px 25px 25px 0;
  align-items: center;
}
.pillar + .pillar {
  border-left: 1px solid #ffffff21;
  padding-left: 25px;
}
.pillar > .icon {
  color: var(--mint);
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}
.pillar strong {
  font-size: 12px;
  display: block;
  letter-spacing: 0.01em;
}
.pillar span {
  font-size: 10px;
  line-height: 1.55;
  display: block;
  color: #b9d0d9;
  margin-top: 3px;
}
.proof {
  background: #fff;
}
.partner-band {
  overflow: hidden;
  padding: 34px 0 24px;
  background: transparent;
  border-bottom: 1px solid #f1f0f1;
  text-align: center;
}
.partner-band + .ga-section {
  padding-top: 40px;
}
.partner-label {
  margin: 0 24px 28px;
  color: #6c6c73;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}
.partner-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.partner-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: none 220s linear infinite;
}
.partner-band.marquee-started .partner-track {
  animation-name: partner-roll;
}
.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}
.partner-set {
  flex: none;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}
.partner-logo-card {
  width: 164px;
  height: 84px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.partner-logo-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 132px;
  max-height: 56px;
  object-fit: contain;
}
@keyframes partner-roll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 0;
}
.proof-item {
  padding: 0 26px;
  border-left: 1px solid var(--line);
}
.proof-item:first-child {
  padding-left: 0;
  border: 0;
}
.proof-item strong {
  display: block;
  color: var(--blue);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.4;
}
.proof-item span {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.proof-item:last-child strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}
/* Grant Assistant product evidence */
.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 68px;
  align-items: center;
}
.split h2 {
  margin-bottom: 23px;
}
.feature-list {
  margin-top: 24px;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 17px;
  font-size: 12px;
  line-height: 1.65;
}
.feature .icon {
  color: var(--teal);
  margin-top: 2px;
}
.feature strong {
  font-weight: 600;
  display: block;
}
.feature span {
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.app-frame {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.app-bar {
  background: #f7fafb;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  padding: 0 16px;
  font-size: 11px;
  color: #53707e;
}
.traffic {
  display: none;
}
.traffic i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b8ccd4;
}
.app-bar .spacer {
  margin-left: auto;
}
.app-image-button {
  padding: 0;
  width: 100%;
  display: block;
  position: relative;
}
.hero-jump {
  cursor: pointer;
}
.app-image-button img {
  width: 100%;
  height: auto;
}
.frame-caption {
  padding: 12px 16px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  background: white;
  border-top: 1px solid var(--line);
}
.examples {
  margin-top: 32px;
  padding: 24px 25px;
  border-radius: 12px;
  background: #e9f3f7;
}
.examples-head strong {
  display: block;
  font-size: 18pt;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.examples-head p {
  font-size: 12px;
  line-height: 1.75;
  margin-top: 7px;
  color: #41697c;
  max-width: 560px;
}
.example-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.example-link {
  display: flex;
  align-items: center;
  gap: 13px;
  background: white;
  border: 1px solid #cbe1ea;
  border-radius: 10px;
  padding: 14px 16px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.example-link:hover {
  border-color: var(--teal);
  transform: none;
}
.example-scheme {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--pale);
  border-radius: 6px;
  padding: 7px 9px;
}
.example-body {
  min-width: 0;
}
.example-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.example-body small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.example-link > .icon {
  margin-left: auto;
  flex-basis: 16px;
  width: 16px;
  height: 16px;
  color: var(--blue);
}
/* Actual actual product screenshots, with full-context Research Assistant preview. */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-copy {
  padding: 30px 32px 25px;
}
.product-copy h3 {
  margin: 12px 0 13px;
  font-size: 27px;
}
.product-copy p {
  font-size: 13px;
  line-height: 1.9;
}
.product-copy .micro-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
  color: var(--blue);
  display: flex;
  gap: 8px;
  align-items: center;
}
.product-body {
  padding: 0 20px 20px;
  margin-top: auto;
}
.product-card .actions {
  margin-top: 20px;
}
.product-card .actions .btn {
  font-size: 11px;
  padding: 10px 17px;
  min-height: 40px;
}
.preview-shell {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: white;
}
.preview-heading {
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #f7fafb;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  color: #53707e;
}
.preview-heading > span {
  color: var(--muted);
}
.segmented {
  display: inline-flex;
  padding: 3px;
  background: #eaf2f6;
  border-radius: 20px;
  gap: 2px;
}
.segmented button {
  padding: 5px 10px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
}
.segmented button[aria-selected="true"] {
  background: white;
  color: var(--blue);
  box-shadow: 0 2px 4px #00273510;
}
.path-shot {
  height: 345px;
  overflow: auto;
  scrollbar-width: thin;
  background: #f7fafb;
  padding: 16px;
}
.path-shot img {
  width: 100%;
}
.path-input {
  max-width: 380px;
  margin: auto;
}
.path-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  padding: 12px 16px;
  background: white;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.ra-visual {
  background: #f7fafb;
  height: 345px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.ra-preview {
  display: block;
  width: 100%;
  line-height: 0;
  border: 1px solid #d0e1e8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 18px #00273512;
  background: white;
}
.ra-preview img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
button.ra-preview:focus-visible {
  outline: 3px solid #1486b2;
  outline-offset: 4px;
}
.capability-band {
  border-top: 1px solid #cedfe7;
  margin-top: 38px;
  padding-top: 27px;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 35px;
  font-size: 12px;
}
.capability-band strong {
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}
.capability-band p {
  font-size: 11px;
  line-height: 1.8;
}
.capability-band .big-caption {
  color: var(--blue);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.02em;
}
/* Institutional trust */
.trust-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 75px;
}
.trust-copy h2 {
  margin-bottom: 21px;
}
.trust-copy p {
  font-size: 14px;
  line-height: 1.9;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
}
.trust-item {
  border-top: 1px solid #6c9cab66;
  padding-top: 19px;
}
.trust-item > .icon {
  margin-bottom: 14px;
  color: var(--mint);
  width: 24px;
  height: 24px;
}
.trust-item h3 {
  font-size: 16px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.trust-item p {
  font-size: 12px;
  line-height: 1.8;
}
.trust-fine {
  font-size: 10px;
  line-height: 1.8;
  border-top: 1px solid #7da2b033;
  padding-top: 19px;
  margin-top: 28px;
  grid-column: 1/-1;
  color: #b4cbd3 !important;
}
.accordions {
  margin-top: 26px;
}
.accordions details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.accordions summary {
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.accordions details p {
  font-size: 12px;
  margin-top: 12px;
  line-height: 1.8;
}
/* Adoption, open publications and research training */
.adoption-head {
  max-width: 840px;
  margin-bottom: 33px;
}
.adoption-head h2 {
  margin-bottom: 22px;
}
.adoption-head p {
  font-size: 15px;
}
.adoption-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 42px;
}
.adoption-step {
  border-top: 2px solid var(--teal);
  padding-top: 19px;
}
.adoption-step span {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
}
.adoption-step h3 {
  font-size: 18px;
  margin: 9px 0 12px;
}
.adoption-step p {
  font-size: 12px;
  line-height: 1.85;
}
.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.resource {
  border: 1px solid var(--line);
  border-radius: 13px;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 23px;
  padding: 22px;
  align-items: center;
  background: #fbfcfd;
}
.book-cover {
  aspect-ratio: 0.74;
  background: var(--blue);
  color: white;
  padding: 17px 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 3px 5px 0 #c7dce4;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  border-radius: 2px;
}
.book-cover .book-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.06em;
}
.book-cover small {
  font-size: 7px;
  font-weight: 400;
  color: #c7e3ed;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.book-cover.readiness {
  background: var(--navy);
}
.resource h3 {
  font-size: 19px;
  margin: 9px 0 10px;
  line-height: 1.4;
  letter-spacing: -0.025em;
}
.resource p {
  font-size: 11px;
  line-height: 1.8;
}
.resource-links {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.resource .text-link {
  font-size: 10px;
}
.resource-kicker {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-weight: 700;
}
.adoption-foot {
  margin-top: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.adoption-foot p {
  font-size: 12px;
  max-width: 550px;
}
.media-row {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 28px;
  margin-top: 52px;
}
.video-card {
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
  background: white;
}
.video-poster {
  height: 185px;
  background: linear-gradient(120deg, #0d3344, #00547b);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: white;
  position: relative;
  overflow: hidden;
}
.video-poster .eyebrow {
  font-size: 8px;
  color: #a8d6e4;
  margin-bottom: 10px;
}
.video-poster h3 {
  font-size: 24px;
  max-width: 350px;
  line-height: 1.35;
}
.video-poster .poster-note {
  color: #b9d6df;
  font-size: 10px;
  line-height: 1.7;
  margin-top: 10px;
}
.poster-disc {
  background: #ffffff15;
  border: 1px solid #ffffff50;
  border-radius: 50%;
  height: 68px;
  width: 68px;
  flex: 0 0 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.poster-disc .icon {
  width: 26px;
  height: 26px;
}
.poster-ga {
  background: #e8f2f7;
  padding: 0;
  position: relative;
}
.poster-ga img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% top;
  opacity: 0.75;
}
.poster-ga .poster-disc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--blue);
  color: white;
  border: 4px solid white;
}
.video-caption {
  padding: 18px 23px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
.video-caption strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
.video-caption p {
  font-size: 10px;
  margin-top: 3px;
}
.video-caption .text-link {
  font-size: 10px;
}
/* The company is the research community and the technology, together. */
.community-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: start;
}
.community-layout h2 {
  margin-bottom: 23px;
}
.community-layout .lead {
  font-size: 14px;
}
.community-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.community-values span {
  font-size: 10px;
  background: white;
  border: 1px solid #cddfe7;
  border-radius: 20px;
  color: var(--blue);
  padding: 6px 10px;
}
.training-list {
  background: white;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
}
.training-title {
  padding: 18px 22px;
  font-size: 11px;
  font-weight: 600;
  background: #dceef5;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 9px;
}
.training-course {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 19px 22px;
  border-top: 1px solid #e4edf1;
  transition: background 0.2s;
}
.training-course:hover {
  background: #f5fbfd;
}
.course-num {
  font-size: 11px;
  font-weight: 600;
  color: #7197a7;
}
.training-course strong {
  font-size: 12px;
  display: block;
  line-height: 1.55;
}
.training-course small {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.training-course .icon {
  margin-left: auto;
  color: var(--blue);
  width: 15px;
  flex-basis: 15px;
}
.training-list .training-foot {
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
.community-base {
  border-top: 1px solid #ccdee7;
  margin-top: 40px;
  padding-top: 23px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.community-base p {
  max-width: 690px;
  font-size: 11px;
}
.community-base .text-link {
  white-space: nowrap;
}
.closing {
  padding: 65px 0;
  background: var(--blue);
  color: white;
}
.closing .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.closing h2 {
  font-size: 33px;
  max-width: 700px;
}
.closing p {
  color: #c5e1ed;
  font-size: 13px;
  margin-top: 16px;
}
.closing .actions {
  margin-top: 0;
  flex-shrink: 0;
}
.site-footer {
  background: #001e2b;
  color: white;
  padding: 42px 0 22px;
}
.footer-top {
  display: flex;
  gap: 45px;
  justify-content: space-between;
}
.footer-brand img {
  width: 138px;
}
.footer-brand p {
  font-size: 11px;
  max-width: 390px;
  color: #aecad5;
  margin-top: 17px;
  line-height: 1.8;
}
.footer-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-links a {
  font-size: 10px;
  display: block;
  color: #c6dce5;
  margin-bottom: 10px;
}
.footer-links a:hover {
  color: white;
}
.footer-bottom {
  margin-top: 33px;
  padding-top: 18px;
  border-top: 1px solid #ffffff16;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #85a6b5;
  font-size: 9px;
}
.footer-bottom button {
  font-size: 9px;
  color: #b9d9e7;
  text-decoration: underline;
}
/* Layout 02: airy typographic opening, full-width product evidence. */
.product-led .hero {
  background: linear-gradient(180deg, #fff 0%, #f2f9fc 58%, #fff 100%);
  overflow: visible;
}
.product-led .hero-main {
  padding: 67px 0 0;
  text-align: center;
}
.product-led .hero h1 {
  font-size: 81px;
}
.product-led .hero h1 .subline {
  font-size: 39px;
  color: var(--blue);
  margin-top: 12px;
}
.product-led .hero p.lead {
  max-width: 830px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 15px;
}
.product-led .hero .actions {
  justify-content: center;
}
.product-led .hero .security-link {
  color: var(--blue);
  margin-top: 20px;
}
.product-led .hero .eyebrow {
  color: var(--blue);
}
.showcase {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
  text-align: left;
  overflow: hidden;
  margin: 40px auto 0;
  max-width: 1120px;
}
.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #f7fafb;
}
.showcase-tabs button {
  position: relative;
  transition:
    background-color 200ms ease,
    color 200ms ease;
  font-size: 11px;
  font-weight: 600;
  padding: 16px 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid transparent;
}
.showcase-tabs button[aria-selected="true"] {
  background: var(--pale);
  font-weight: 700;
  color: var(--blue);
}
.showcase-tabs button .icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}
/* Overlapping grid cells reserve the tallest panel at every viewport width. */
.showcase-panels {
  display: grid;
}
.showcase-panels > .showcase-panel {
  grid-area: 1 / 1;
  min-width: 0;
}
.showcase-panels > .showcase-panel[hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}
.showcase-panel {
  padding: 24px 24px 0;
}
.showcase-panel:not([hidden]) {
  animation: showcase-enter 1s ease-out both;
}
@keyframes showcase-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.showcase-tabs button[aria-selected="true"]::before,
.showcase-tabs button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 4px;
  background: var(--blue);
}
.showcase-tabs button[aria-selected="true"]::after {
  background: var(--mint);
  transform-origin: left;
  transform: scaleX(var(--slide-progress, 0));
}
.showcase-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}
.showcase-title h2 {
  font-size: 23px;
  margin-bottom: 6px;
}
.showcase-title p {
  font-size: 11px;
  max-width: 740px;
}
.showcase-panel > img {
  width: 100%;
  max-height: 355px;
  object-fit: cover;
  object-position: top;
  border-radius: 7px 7px 0 0;
  border: 1px solid var(--line);
  border-bottom: 0;
}
.showcase-panel .ra-visual {
  max-width: none;
  margin: auto;
  height: 355px;
  padding: 16px;
}
.showcase-panel .ra-preview {
  width: auto;
  max-width: 100%;
}
.showcase-panel .ra-preview img {
  width: auto;
  max-width: 100%;
  max-height: 325px;
  object-fit: contain;
}
.showcase-path {
  height: 355px;
  overflow: auto;
  background: #f7fafb;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 23px;
  padding: 16px;
}
.showcase-path img {
  width: 100%;
  height: auto;
  align-self: start;
  cursor: pointer;
}
.showcase-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 24px;
  background: white;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}
.product-led .pillar-band-light {
  background: var(--blue);
  color: white;
  margin-top: 48px;
}
.product-led .pillar-band-light .pillar span {
  color: #c8e3ee;
}
.product-led .proof-grid {
  padding: 28px 0;
}
.product-led .ga-section .split {
  grid-template-columns: 1fr 1fr;
}
/* Layout 03: deep navy, reviewer workflow, alternating panels. */
.institutional .hero {
  background: var(--deep);
}
.institutional .hero-main {
  padding: 79px 0 66px;
}
.institutional .hero-grid {
  grid-template-columns: 1.07fr 0.93fr;
  gap: 65px;
}
.institutional .hero h1 {
  font-size: 73px;
}
.institutional .hero h1 .subline {
  font-size: 31px;
}
.review-hero {
  border: 1px solid #8dbac947;
  border-radius: 16px;
  background: #0b3443;
  overflow: hidden;
  box-shadow: 0 20px 50px #00111c45;
}
.review-hero-head {
  padding: 26px 28px 18px;
  border-bottom: 1px solid #ffffff20;
}
.review-hero-head h2 {
  font-size: 27px;
  margin: 12px 0;
  color: white;
}
.review-hero-head p {
  font-size: 12px;
  line-height: 1.8;
}
.review-hero-step {
  display: flex;
  gap: 15px;
  padding: 17px 27px;
  border-bottom: 1px solid #ffffff10;
}
.review-hero-step > span {
  font-size: 10px;
  color: #86bdcc;
  margin-top: 2px;
}
.review-hero-step strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
.review-hero-step small {
  display: block;
  font-size: 10px;
  color: #b5d2db;
  margin-top: 4px;
  line-height: 1.75;
}
.review-hero-step.active {
  background: #d6edf5;
  color: var(--blue);
}
.review-hero-step.active small {
  color: #3c6475;
}
.review-hero-step .icon {
  margin-left: auto;
  color: #8dbcc9;
  width: 16px;
  flex-basis: 16px;
}
.review-hero-foot {
  padding: 17px 27px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.review-hero-foot .note {
  color: #a5c6d1;
}
.institutional .ga-section {
  background: #f4f9fb;
}
.institutional .ga-section .split {
  grid-template-columns: 0.78fr 1.22fr;
}
.institutional .trust-section {
  background: #00547b;
}
.institutional .community-section {
  background: white;
}
.institutional .training-list {
  background: #f4f9fb;
}
.institutional .adoption-section {
  background: #f2f8fa;
}
.institutional .resource {
  background: white;
}
/* Local-only interactions. No authentication, upload, network inference or booking API is implemented. */
dialog {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  color: var(--ink);
  max-height: 90vh;
  max-width: calc(100% - 28px);
  width: 750px;
  box-shadow: 0 24px 90px #00162344;
}
dialog::backdrop {
  background: #001d2ccc;
  backdrop-filter: blur(4px);
}
.modal-header {
  padding: 20px 27px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 3;
}
.modal-header h2 {
  font-size: 19px;
  letter-spacing: -0.02em;
}
.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pale);
  flex: 0 0 32px;
}
#book .modal-header,
#security-dialog .modal-header,
#pathways-trial .modal-header {
  background: #003d5a;
  border-bottom-color: #003d5a;
  color: var(--white);
}
#book .modal-header h2,
#book .modal-close,
#security-dialog .modal-header h2,
#pathways-trial .modal-header h2,
#security-dialog .modal-close,
#pathways-trial .modal-close {
  color: var(--white);
}
#book .modal-close,
#security-dialog .modal-close,
#pathways-trial .modal-close {
  background: rgba(255, 255, 255, 0.12);
}
#book .modal-close:hover,
#security-dialog .modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.modal-content {
  padding: 28px;
}
.modal-content p {
  font-size: 13px;
  line-height: 1.8;
}
.modal-content h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.modal-content .eyebrow {
  font-size: 10px;
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 23px 0;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #c8dbe4;
  border-radius: 7px;
  background: white;
  padding: 11px;
  font-size: 12px;
  color: var(--ink);
}
.field.full {
  grid-column: 1/-1;
}
.field textarea {
  min-height: 82px;
  resize: vertical;
}
.email-preview {
  white-space: pre-wrap;
  background: var(--pale);
  border-radius: 10px;
  padding: 17px;
  font:
    12px/1.8 "Montserrat",
    sans-serif;
  margin-top: 20px;
}

.mockup-disclosure {
  font-size: 11px;
  line-height: 1.9;
}
.mockup-disclosure li {
  margin-bottom: 10px;
}
@media (min-width: 1700px) {
  :root {
    --max: 1420px;
  }
  .hero h1,
  .institutional .hero h1 {
    font-size: 80px;
  }
  .hero h1 .subline,
  .institutional .hero h1 .subline {
    font-size: 33px;
  }
  .hero-product .image-window img {
    height: 280px;
  }
}
@media (max-width: 1220px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .nav {
    gap: 17px;
  }
  .nav > a,
  .signin > summary {
    font-size: 12px;
  }
  .hero-grid {
    gap: 35px;
  }
  .hero h1,
  .institutional .hero h1 {
    font-size: 61px;
  }
  .hero h1 .subline,
  .institutional .hero h1 .subline {
    font-size: 25px;
  }
  .hero-product {
    padding: 22px;
  }
  .split {
    gap: 40px;
  }
  .trust-layout {
    gap: 45px;
  }
  .resource {
    grid-template-columns: 115px 1fr;
    gap: 20px;
    padding: 20px;
  }
  .book-cover {
    font-size: 9px;
  }
  .institutional .hero-grid {
    gap: 40px;
  }
  .hero p.lead {
    font-size: 14px;
  }
  .section {
    padding: 80px 0;
  }
  .nav .btn {
    padding: 10px 15px;
  }
  .brand img {
    width: 128px;
  }
  .community-layout {
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .nav {
    gap: 14px;
  }
  .nav > a {
    font-size: 12px;
  }
  .brand img {
    width: 110px;
  }
  .brand span {
    font-size: 14px;
  }
  .nav .btn {
    font-size: 10px;
    padding: 10px 13px;
  }
  .hero-grid,
  .institutional .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero-main,
  .institutional .hero-main {
    padding: 57px 0;
  }
  .hero-copy {
    max-width: 750px;
  }
  .hero h1,
  .institutional .hero h1 {
    font-size: 68px;
  }
  .hero h1 .subline,
  .institutional .hero h1 .subline {
    font-size: 31px;
  }
  .hero p.lead {
    max-width: 720px;
  }
  .hero-product {
    max-width: 800px;
    width: 100%;
  }
  .hero-product .image-window img {
    height: 320px;
    object-fit: cover;
    object-position: top;
  }
  .review-hero {
    max-width: 700px;
  }
  .review-hero-head {
    padding: 22px;
  }
  .review-hero-step {
    padding: 14px 22px;
  }
  .split,
  .product-led .ga-section .split,
  .institutional .ga-section .split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .split-copy {
    max-width: 700px;
  }
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trust-copy {
    max-width: 750px;
  }
  .section-head {
    display: block;
  }
  .section-head > p {
    max-width: 740px;
    margin-top: 20px;
  }
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .resource {
    grid-template-columns: 125px 1fr;
    max-width: none;
  }
  .resource h3 {
    font-size: 21px;
  }
  .resource p {
    font-size: 12px;
  }
  .book-cover {
    max-height: 180px;
    font-size: 10px;
  }
  .product-copy {
    padding: 25px 24px;
  }
  .product-body {
    padding: 0 15px 15px;
  }
  .product-copy h3 {
    font-size: 24px;
  }
  .product-copy p {
    font-size: 12px;
  }
  .ra-visual {
    padding: 20px 15px;
  }
  .community-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .community-layout .lead {
    max-width: 780px;
  }
  .closing .wrap {
    display: block;
  }
  .closing .actions {
    margin-top: 25px;
  }
  .pillar {
    gap: 10px;
    padding-right: 14px;
  }
  .pillar + .pillar {
    padding-left: 14px;
  }
  .pillar span {
    font-size: 9px;
  }
  .pillar strong {
    font-size: 11px;
  }
  .pillar > .icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }
  .showcase-title h2 {
    font-size: 21px;
  }
  .showcase-title p {
    font-size: 10px;
  }
}
@media (max-width: 780px) {
  .example-links {
    grid-template-columns: 1fr;
  }
  .examples {
    padding: 20px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  h2 {
    font-size: 31px;
  }
  .section {
    padding: 60px 0;
  }
  .site-header {
    height: 74px;
  }
  .utility .wrap {
    font-size: 8px;
    height: 27px;
  }
  .utility .wrap > span {
    max-width: 52%;
  }
  .brand img {
    width: 125px;
  }
  .brand span {
    font-size: 15px;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    padding: 18px 22px 24px;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .nav.open {
    display: flex;
  }
  .nav > a {
    font-size: 12px;
    padding: 9px;
  }
  .nav .btn {
    font-size: 12px;
  }
  .signin > summary {
    font-size: 12px;
    padding: 10px;
  }
  .signin-menu {
    position: static;
    box-shadow: none;
    width: auto;
    border: 0;
    background: var(--pale);
  }
  .header-dark .mobile-toggle {
    color: white;
  }
  .header-dark .nav .btn {
    background: var(--blue);
    color: white;
  }
  .hero-main,
  .institutional .hero-main {
    padding: 47px 0 36px;
  }
  .hero-grid,
  .institutional .hero-grid {
    gap: 33px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 23px;
  }
  .hero h1,
  .institutional .hero h1 {
    font-size: 49px;
    letter-spacing: -0.05em;
  }
  .hero h1 .subline,
  .institutional .hero h1 .subline {
    font-size: 21px;
    white-space: normal;
    line-height: 1.5;
    margin-top: 12px;
    letter-spacing: -0.035em;
  }
  .hero p.lead {
    font-size: 13px;
    line-height: 1.9;
    margin-top: 22px;
  }
  .hero .actions {
    gap: 9px;
  }
  .hero .btn {
    padding: 12px 17px;
    font-size: 11px;
    min-height: 45px;
  }
  .hero .security-link {
    font-size: 9px;
    max-width: 100%;
    margin-top: 22px;
  }
  .hero-product {
    padding: 18px;
    border-radius: 12px;
  }
  .hero-product h2 {
    font-size: 22px;
  }
  .hero-product p {
    font-size: 11px;
  }
  .hero-product .image-window img {
    height: 190px;
    object-fit: cover;
  }
  .hero-product .label {
    font-size: 8px;
  }
  .hero-product .product-top {
    gap: 8px;
  }
  .product-foot {
    gap: 10px;
  }
  .product-foot .note {
    font-size: 8px;
  }
  .product-foot .text-link {
    font-size: 10px;
  }
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pillar {
    padding: 18px 12px 18px 0;
  }
  .pillar + .pillar {
    padding-left: 14px;
  }
  .pillar:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #ffffff21;
  }
  .pillar:nth-child(4) {
    border-top: 1px solid #ffffff21;
  }
  .pillar span {
    font-size: 9px;
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 0;
    padding: 25px 0;
  }
  .proof-item {
    padding: 0 17px;
  }
  .proof-item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .proof-item strong {
    font-size: 23px;
  }
  .proof-item:last-child strong {
    font-size: 16px;
  }
  .proof-item span {
    font-size: 9px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-copy {
    padding: 26px 23px;
  }
  .product-copy h3 {
    font-size: 25px;
  }
  .product-copy p {
    font-size: 12px;
  }
  .product-body {
    padding: 0 16px 16px;
  }
  .path-shot {
    height: 315px;
  }
  .ra-visual {
    height: auto;
    min-height: 0;
    padding: 12px;
  }
  .preview-heading {
    font-size: 9px;
    padding: 9px 10px;
  }
  .segmented button {
    font-size: 9px;
    padding: 5px 8px;
  }
  .path-caption {
    font-size: 8px;
  }
  .path-caption .text-link {
    font-size: 9px;
  }
  .capability-band {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-top: 28px;
  }
  .capability-band .big-caption {
    font-size: 21px;
  }
  .section-head {
    margin-bottom: 30px;
  }
  .section-head p {
    font-size: 12px;
  }
  .split h2 {
    margin-bottom: 19px;
  }
  .split p.lead {
    font-size: 13px;
    line-height: 1.9;
  }
  .feature {
    font-size: 11px;
  }
  .app-frame {
    border-radius: 10px;
  }
  .app-bar {
    font-size: 8px;
    padding: 10px;
  }
  .app-bar .spacer {
    font-size: 7px;
  }
  .frame-caption {
    font-size: 8px;
    padding: 12px;
    gap: 12px;
  }
  .frame-caption .text-link {
    font-size: 9px;
  }
  .human-line {
    font-size: 13px;
    padding: 18px;
    align-items: flex-start;
    margin-top: 24px;
  }
  .trust-copy p {
    font-size: 12px;
  }
  .trust-grid {
    gap: 25px 19px;
  }
  .trust-item h3 {
    font-size: 14px;
  }
  .trust-item p {
    font-size: 10px;
  }
  .trust-fine {
    font-size: 9px;
  }
  .adoption-head p {
    font-size: 13px;
  }
  .adoption-steps {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-bottom: 32px;
  }
  .adoption-step {
    padding-top: 13px;
  }
  .adoption-step h3 {
    font-size: 18px;
    margin: 7px 0 10px;
  }
  .adoption-step p {
    font-size: 12px;
  }
  .resource {
    grid-template-columns: 95px 1fr;
    padding: 17px;
    gap: 17px;
  }
  .book-cover {
    font-size: 8px;
    padding: 13px 10px;
  }
  .book-cover small {
    font-size: 6px;
  }
  .book-cover .book-brand {
    font-size: 15px;
  }
  .resource h3 {
    font-size: 16px;
    line-height: 1.4;
  }
  .resource p {
    font-size: 10px;
  }
  .resource-kicker {
    font-size: 8px;
  }
  .resource-links {
    gap: 10px;
  }
  .resource .text-link {
    font-size: 9px;
  }
  .adoption-foot {
    display: block;
  }
  .adoption-foot .btn {
    margin-top: 17px;
  }
  .adoption-foot p {
    font-size: 11px;
  }
  .media-row {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-top: 35px;
  }
  .video-poster {
    height: 177px;
    padding: 23px;
  }
  .video-poster h3 {
    font-size: 23px;
  }
  .poster-disc {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .video-caption {
    padding: 16px 18px;
  }
  .video-caption strong {
    font-size: 11px;
  }
  .video-caption p {
    font-size: 9px;
  }
  .video-caption .text-link {
    font-size: 9px;
  }
  .poster-ga {
    padding: 0;
  }
  .community-layout .lead {
    font-size: 12px;
  }
  .community-values {
    gap: 7px;
  }
  .community-values span {
    font-size: 9px;
    padding: 6px 9px;
  }
  .training-course {
    padding: 16px 18px;
    gap: 13px;
  }
  .training-course strong {
    font-size: 11px;
  }
  .training-course small {
    font-size: 9px;
  }
  .training-list .training-foot {
    font-size: 9px;
  }
  .community-base {
    display: block;
    margin-top: 28px;
  }
  .community-base p {
    font-size: 10px;
  }
  .community-base .text-link {
    margin-top: 15px;
  }
  .closing {
    padding: 46px 0;
  }
  .closing h2 {
    font-size: 28px;
  }
  .closing p {
    font-size: 12px;
  }
  .footer-top {
    display: block;
  }
  .footer-brand p {
    font-size: 10px;
    max-width: 370px;
  }
  .footer-links {
    margin-top: 28px;
    gap: 30px;
  }
  .footer-bottom {
    display: block;
    font-size: 8px;
  }
  .footer-bottom > span {
    display: block;
    margin-bottom: 9px;
  }
  .site-footer {
    padding-top: 33px;
  }
  .product-led .hero-main {
    padding: 44px 0 0;
  }
  .product-led .hero h1 {
    font-size: 52px;
  }
  .product-led .hero h1 .subline {
    font-size: 23px;
    white-space: normal;
    line-height: 1.5;
  }
  .product-led .hero p.lead {
    font-size: 12px;
    margin-top: 20px;
  }
  .product-led .hero .eyebrow {
    font-size: 8px;
  }
  .product-led .hero .security-link {
    font-size: 9px;
  }
  .showcase {
    margin-top: 30px;
    border-radius: 11px;
  }
  .showcase-tabs button {
    position: relative;
    transition:
      background-color 200ms ease,
      color 200ms ease;
    font-size: 9px;
    gap: 6px;
    line-height: 1.5;
    padding: 13px 6px;
    flex-direction: column;
  }
  .showcase-tabs button .icon {
    height: 17px;
    width: 17px;
  }
  .showcase-panel {
    padding: 20px 14px 0;
  }
  .showcase-title {
    display: block;
    margin-bottom: 15px;
  }
  .showcase-title h2 {
    font-size: 18px;
  }
  .showcase-title p {
    font-size: 10px;
  }
  .showcase-title .text-link {
    margin-top: 12px;
    font-size: 10px;
  }
  .showcase-panel > img {
    height: 185px;
    max-height: none;
    object-fit: cover;
    object-position: 50% top;
  }
  .showcase-panel .ra-visual {
    height: auto;
    min-height: 0;
    padding: 10px;
  }
  .showcase-panel .ra-preview img {
    width: 100%;
    height: auto;
    max-height: none;
  }
  .showcase-path {
    grid-template-columns: 1fr;
    gap: 15px;
    height: 260px;
  }
  .showcase-path img {
    max-width: 480px;
    margin: auto;
  }
  .showcase-bottom {
    font-size: 8px;
    padding: 12px 14px;
    align-items: flex-start;
  }
  .showcase-bottom .text-link {
    font-size: 9px;
  }
  .product-led .pillar-band-light {
    margin-top: 30px;
  }
  .institutional .hero-grid {
    gap: 30px;
  }
  .review-hero-head h2 {
    font-size: 25px;
  }
  .review-hero-head p {
    font-size: 11px;
  }
  .review-hero-foot {
    padding: 15px 22px;
  }
  .review-hero-foot .note {
    font-size: 8px;
  }
  .modal-header {
    padding: 17px 18px;
  }
  .modal-header h2 {
    font-size: 16px;
  }
  .modal-content {
    padding: 22px 18px;
  }
  .modal-content p {
    font-size: 12px;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    min-height: 44px;
  }
  .footer-links a {
    padding: 5px 0;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 30px);
  }
  .hero h1,
  .institutional .hero h1 {
    font-size: 44px;
  }
  .hero h1 .subline,
  .institutional .hero h1 .subline {
    font-size: 19px;
  }
  .resource {
    grid-template-columns: 78px 1fr;
    gap: 13px;
  }
  .book-cover {
    font-size: 7px;
  }
  .product-foot {
    align-items: flex-start;
  }
  .hero-product .product-top {
    display: block;
  }
  .hero-product .product-top > .label {
    margin: 4px 0;
  }
  .brand img {
    width: 115px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* Final responsive and institutional-relationship refinements. */
.collaborators {
  margin-top: 38px;
  padding: 27px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
}
.collaborators strong {
  font-size: 12px;
  line-height: 1.6;
}
.collaborators p {
  font-size: 10px;
  margin-top: 5px;
}
.collaborator-logos {
  display: flex;
  gap: 38px;
  align-items: center;
}
.collaborator-logos img {
  width: 125px;
  max-height: 67px;
  object-fit: contain;
}
.collaborator-logos img:last-child {
  width: 111px;
}
.footer-plain {
  font-size: 10px;
  display: block;
  color: #c6dce5;
  padding: 0;
  margin-bottom: 10px;
}
.footer-plain:hover {
  color: white;
}
@media (max-width: 1100px) {
  .collaborators {
    display: block;
  }
  .collaborator-logos {
    margin-top: 22px;
    justify-content: space-between;
  }
}
@media (max-width: 780px) {
  .hero h1,
  .institutional .hero h1,
  .product-led .hero h1 {
    font-size: clamp(32px, 10.3vw, 49px);
  }
  .collaborators {
    padding: 20px;
  }
  .collaborators strong {
    font-size: 11px;
  }
  .collaborators p {
    font-size: 9px;
  }
  .collaborator-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    justify-items: center;
  }
  .collaborator-logos img,
  .collaborator-logos img:last-child {
    max-width: 110px;
    max-height: 55px;
    width: 100%;
  }
}

.design-style-0 {
  cursor: pointer;
}
.design-style-1 {
  cursor: pointer;
}
.design-style-2 {
  cursor: pointer;
}
.design-style-3 {
  background-color: #ffffff;
}
.design-style-4 {
  margin-top: 15px;
}
.design-style-5 {
  font-size: 11px;
  color: #6b8290;
  margin-top: 22px;
}
.design-style-6 {
  margin-top: 15px;
}
/* Change only body[data-site-mode] to reveal the preserved main site. */
#holding-site,
#main-site {
  display: none;
}
html[data-site-mode="main"] body > #main-site {
  display: block;
}
html[data-site-mode="holding"] body > #holding-site {
  --holding-navy: #001e2c;
  --holding-cyan: #a8deed;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  padding: 48px 24px;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(48, 146, 177, 0.34),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 84%,
      rgba(168, 222, 237, 0.18),
      transparent 24rem
    ),
    var(--holding-navy);
  color: var(--paper);
}
#holding-site::before,
#holding-site::after {
  position: absolute;
  border: 1px solid rgba(168, 222, 237, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
#holding-site::before {
  width: 520px;
  height: 520px;
  top: -250px;
  right: -220px;
}
#holding-site::after {
  width: 340px;
  height: 340px;
  right: -150px;
  bottom: -170px;
}
.holding-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  text-align: center;
}
.holding-card img {
  width: auto;
  height: 30px;
  margin: 0 auto 64px;
}
.holding-card h1 {
  color: var(--paper);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-wrap: balance;
}
.holding-card h1 span {
  display: block;
  margin-top: 12px;
  color: var(--holding-cyan);
}
.holding-card p {
  max-width: 420px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

:root {
  --paper: #fff;
}
html[data-site-mode="holding"] body {
  font-size: 15px;
  line-height: 1.7;
}
.holding-card h1 {
  margin: 0;
}
[hidden] {
  display: none !important;
}
.motion-paused .partner-track {
  animation-play-state: paused;
}
.email-preview {
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
/* Keep the supplied palette while meeting text contrast requirements. */
.adoption-step > span,
.course-num {
  color: #47616b;
}
.note {
  color: #526873;
}

@media (max-width: 640px) {
  .partner-label {
    margin-bottom: 22px;
    font-size: 11px;
  }
  .partner-set {
    gap: 16px;
    padding-right: 16px;
  }
  .partner-logo-card {
    width: 136px;
    height: 72px;
  }
  .partner-logo-card img {
    max-width: 110px;
    max-height: 48px;
  }
}

/* Early product previews: original screenshots cropped only within their frames. */
.upcoming-section {
  background: white;
}
.upcoming-card {
  background: linear-gradient(160deg, #fff, #f7fafb);
}
.upcoming-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.upcoming-status {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  border: 1px solid #c7dde6;
  border-radius: 99px;
  padding: 4px 10px;
  background: var(--pale);
  white-space: nowrap;
}
.upcoming-preview {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: white;
}
.upcoming-window {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #f7fafb;
  color: var(--muted);
  font-size: 10px;
  border-bottom: 1px solid var(--line);
}
.upcoming-window span:last-child {
  white-space: nowrap;
}
.upcoming-crop {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--pale);
}
.upcoming-crop img {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
.upcoming-development img {
  object-position: right center;
}
.upcoming-agents img {
  object-position: center top;
}
.upcoming-crop::after {
  content: "";
  position: absolute;
  inset: 62% 0 0;
  background: linear-gradient(transparent, rgba(237, 246, 250, 0.88));
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  -webkit-mask-image: linear-gradient(transparent, #000 45%);
  mask-image: linear-gradient(transparent, #000 45%);
  pointer-events: none;
}
.upcoming-agents::after {
  background: linear-gradient(transparent, rgba(0, 30, 44, 0.9));
}
.upcoming-glimpse {
  position: absolute;
  z-index: 1;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 24px);
  white-space: nowrap;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(247, 250, 251, 0.94);
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.025em;
  pointer-events: none;
}
.upcoming-agents .upcoming-glimpse {
  background: rgba(0, 39, 53, 0.94);
  border-color: rgba(157, 217, 231, 0.35);
  color: var(--mint);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .upcoming-crop::after {
    transition:
      backdrop-filter 700ms ease,
      -webkit-backdrop-filter 700ms ease,
      opacity 700ms ease;
  }
  .upcoming-preview:hover .upcoming-crop::after {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0.8;
  }
}
.upcoming-preview figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 10px;
}
.upcoming-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* Shared surfaces and readable supporting text across the landing page. */
.product-card,
.app-frame,
.resource,
.video-card,
.training-list,
.showcase {
  border-radius: var(--card-radius);
}
.preview-shell,
.upcoming-preview,
.examples {
  border-radius: var(--frame-radius);
}
.app-bar,
.preview-heading,
.upcoming-window {
  min-height: 44px;
  height: auto;
  padding: 10px 16px;
  background: var(--frame-surface);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.frame-caption,
.path-caption,
.upcoming-preview figcaption {
  padding: 12px 16px;
  font-size: 11px;
  line-height: 1.65;
  color: var(--muted);
}
.resource-grid,
.media-row {
  gap: 28px;
}
.resource p,
.video-caption p,
.training-course small,
.training-list .training-foot {
  font-size: 12px;
  line-height: 1.7;
}
.resource .text-link,
.video-caption .text-link,
.footer-links a,
.footer-plain {
  font-size: 12px;
}
.video-caption .text-link {
  flex-shrink: 0;
}
.footer-bottom {
  font-size: 11px;
}
/* Trim the browser status strip from the screenshot without changing the source. */
.grant-preview {
  overflow: hidden;
}
.grant-preview img {
  margin-bottom: -1.1%;
}
a.book-cover,
a.video-poster,
button.app-image-button,
button.ra-preview {
  transition:
    box-shadow 180ms ease,
    outline-color 180ms ease;
}
@media (hover: hover) {
  a.book-cover:hover,
  a.video-poster:hover,
  button.app-image-button:hover,
  button.ra-preview:hover {
    outline: 1px solid var(--teal);
    outline-offset: -1px;
    box-shadow: inset 0 0 0 1px var(--teal);
  }
}
a.book-cover:focus-visible,
a.video-poster:focus-visible,
button.app-image-button:focus-visible,
button.ra-preview:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: -3px;
}
@media (max-width: 640px) {
  .showcase-bottom {
    min-height: calc(3.3em + 26px);
    align-items: center;
  }
  /* Give each slide the same preview area and let the title row absorb copy length. */
  .showcase-panels > .showcase-panel,
  .showcase-panels > .showcase-panel[hidden] {
    display: grid !important;
    grid-template-rows: 1fr 220px;
  }
  .showcase-panel > img,
  .showcase-panel .ra-visual,
  .showcase-panel .showcase-path {
    height: 220px;
    min-height: 0;
    max-height: none;
  }
  .showcase-panel .ra-preview img {
    max-height: 200px;
    object-fit: contain;
  }
  .showcase-panel .ra-visual {
    width: 100%;
  }
  .app-bar .spacer,
  .showcase-bottom,
  .preview-heading,
  .segmented button,
  .resource-kicker,
  .trust-fine,
  .upcoming-window,
  .footer-brand p {
    font-size: 11px;
  }
  .feature,
  .trust-item p,
  .training-course strong,
  .video-caption strong,
  .adoption-foot p {
    font-size: 12px;
  }
  .resource {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    align-items: start;
  }
  .book-cover {
    padding: 10px 8px;
    font-size: 7px;
  }
  .book-cover .book-brand {
    font-size: 13px;
  }
  .resource-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .resource .text-link {
    min-height: 36px;
  }
  .video-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }
  .footer-links > div:last-child {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-links a,
  .footer-plain {
    padding: 8px 0;
    margin-bottom: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .example-link,
  a.book-cover,
  a.video-poster,
  button.app-image-button,
  button.ra-preview {
    transition: none;
  }
  .btn:hover,
  .example-link:hover {
    transform: none;
  }
}

/* Product-led depth and restrained interactions, using the Instats palette. */
:root {
  --edge-accent: #b8d4df;
  --surface-shadow: 0 2px 5px #00273504, 0 12px 28px #00273506;
}
.product-led .hero-main {
  background:
    radial-gradient(ellipse 64% 44% at 50% 88%, #9dd9e747, transparent 78%),
    linear-gradient(180deg, #fff 8%, #f5fafc 100%);
}
.showcase {
  border-color: var(--edge-accent);
  box-shadow:
    0 2px 6px #00273505,
    0 24px 64px #00547b12;
}
.product-card,
.resource,
.video-card,
.training-list {
  box-shadow: var(--surface-shadow);
}
.product-card {
  border-color: #d1e2e9;
}
.upcoming-card {
  background: linear-gradient(155deg, #fff 35%, #f4f9fb);
}
.preview-shell,
.upcoming-preview {
  box-shadow:
    0 1px 0 #ffffffcc,
    0 3px 12px #00273504;
}
.app-bar,
.preview-heading,
.upcoming-window {
  background: linear-gradient(180deg, #fbfdfe, var(--frame-surface));
  box-shadow: inset 0 1px 0 #fff;
}
.section-head h2,
.split h2,
.trust-copy h2,
.product-copy h3,
.closing h2 {
  text-wrap: balance;
}
.product-copy .micro-head > .icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  padding: 5px;
  border: 1px solid #d1e6ed;
  border-radius: 8px;
  background: var(--pale);
}
.upcoming-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: inset 0 1px 0 #fff;
}
.upcoming-status::before {
  content: "";
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal);
}
.trust-section {
  background:
    radial-gradient(ellipse at 90% 10%, #3092b11f, transparent 65%), var(--navy);
}
.closing {
  background:
    radial-gradient(ellipse at 85% 10%, #9dd9e71c, transparent 60%), var(--blue);
  box-shadow: inset 0 1px 0 #ffffff1a;
}
.btn {
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.btn.primary {
  box-shadow:
    inset 0 1px 0 #ffffff26,
    0 2px 3px #00273512;
}
.btn.secondary,
.btn.white {
  box-shadow: 0 1px 2px #00273508;
}
.text-link {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.nav > a:not(.btn) {
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}
.resource,
.video-card,
.training-list {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}
.resource:focus-within,
.video-card:focus-within,
.training-list:focus-within {
  border-color: var(--teal);
}
@media (hover: hover) {
  .nav > a:not(.btn):hover {
    text-decoration-line: underline;
    color: var(--blue);
  }
  .resource:hover,
  .video-card:hover {
    border-color: var(--edge-accent);
    box-shadow:
      0 3px 8px #00273505,
      0 14px 32px #0027350a;
  }
  .btn:not(:disabled):hover {
    transform: none;
  }
  .btn.primary:not(:disabled):hover {
    box-shadow:
      inset 0 1px 0 #ffffff26,
      0 4px 12px #00547b26;
  }
}
.btn:not(:disabled):active {
  transform: translateY(0);
  box-shadow: inset 0 1px 3px #00273526;
}
.btn:disabled {
  cursor: wait;
  transform: none;
}
.field input,
.field textarea,
.field select {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  border-color: var(--blue);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #edf6fa;
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .text-link > .icon,
  .btn > .icon,
  .training-course > .icon,
  .example-link > .icon,
  .resource,
  .video-card,
  .training-list,
  .field input,
  .field textarea,
  .field select {
    transition: none;
  }
  .btn:not(:disabled):hover,
  .text-link:hover > .icon,
  .btn:not(:disabled):hover > .icon,
  .training-course:hover > .icon,
  .example-link:hover > .icon {
    transform: none;
  }
}

/* A larger product stage and a more editorial section rhythm. */
.product-led .hero-main {
  padding-top: 48px;
  background:
    linear-gradient(180deg, transparent calc(100% - 180px), #fff 100%),
    radial-gradient(ellipse 75% 50% at 50% 80%, #9dd9e75c, transparent 80%),
    linear-gradient(180deg, #fff, #f5fafc);
}
.showcase {
  max-width: var(--max);
  margin-top: 32px;
}
@media (min-width: 901px) {
  .showcase-panel > img,
  .showcase-panel .ra-visual,
  .showcase-path {
    height: 480px;
    max-height: 480px;
  }
  .showcase-panel .ra-preview img {
    max-height: 448px;
  }
}
.product-led .ga-section .split {
  display: block;
}
.ga-section .split-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  align-items: start;
  margin-bottom: 40px;
}
.ga-section .split-copy > .eyebrow {
  grid-column: 1 / -1;
}
.ga-section .split-copy h2 {
  grid-column: 1;
  grid-row: 2 / 4;
  margin-bottom: 0;
}
.ga-section .split-copy .lead {
  grid-column: 2;
  font-size: 16px;
}
.ga-section .split-copy .actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  grid-column: 2;
  margin-top: 22px;
}
.ga-section .split-copy .actions .btn {
  padding-inline: 12px;
}
.ga-section .app-frame {
  border-color: var(--edge-accent);
  box-shadow: 0 16px 48px #00547b12;
}
.review-marker {
  position: absolute;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  background: var(--blue);
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow:
    0 0 0 5px #00547b1a,
    0 3px 10px #00273533;
  font-size: 12px;
  font-weight: 700;
  pointer-events: auto;
}
.marker-scheme {
  left: 28%;
  top: 20%;
}
.marker-document {
  left: 68%;
  top: 25%;
}
.marker-oversight {
  left: 88%;
  top: 65%;
}
.ga-section .feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.ga-section .feature {
  margin-top: 0;
  font-size: 13px;
}
.feature > .feature-number {
  margin-top: 0;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.ga-section .examples {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0 0;
  border-radius: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}
.ga-section .example-links {
  flex: 1;
  margin-top: 0;
}
#products .product-grid {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 48px;
}
#products .product-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #c6dce5;
}
#products .product-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
#products .product-copy {
  padding: 0 0 28px;
}
#products .product-body {
  padding: 0;
  margin-top: auto;
}
#products .preview-heading {
  height: 52px;
}
#products .ra-visual,
#products .path-shot {
  height: 380px;
}
#products .ra-preview img {
  max-height: 344px;
  object-fit: contain;
}
#products .path-caption {
  min-height: 52px;
}
.upcoming-section {
  background:
    radial-gradient(ellipse at 12% 60%, #3092b12b, transparent 55%),
    radial-gradient(ellipse at 88% 65%, #00547b66, transparent 55%), var(--deep);
  color: white;
}
.upcoming-section .eyebrow,
.upcoming-section .micro-head {
  color: var(--mint);
}
.upcoming-section .section-head > p,
.upcoming-section .product-copy p,
.upcoming-section .upcoming-note {
  color: #bfd3dc;
}
.upcoming-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.upcoming-card .product-copy {
  padding: 12px 0 28px;
}
.upcoming-card .product-body {
  padding: 0;
}
.upcoming-section .product-grid {
  position: relative;
  gap: 48px;
}
.upcoming-section .product-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #9dd9e740;
}
@media (max-width: 780px) {
  .upcoming-section .product-grid::before {
    display: none;
  }
  .upcoming-card + .upcoming-card {
    border-top: 1px solid #9dd9e740;
    padding-top: 32px;
  }
}
.upcoming-section .upcoming-status {
  background: #9dd9e70d;
  border-color: #9dd9e740;
  color: var(--mint);
  box-shadow: none;
}
.upcoming-section .upcoming-status::before {
  background: var(--mint);
}
.upcoming-preview {
  border-color: #9dd9e740;
  background: #082b3b;
  box-shadow: 0 0 40px #3092b11c;
}
.upcoming-window {
  background: #0d3344;
  color: #bfd3dc;
  border-color: #9dd9e726;
  box-shadow: inset 0 1px 0 #ffffff08;
  align-items: center;
  flex-wrap: wrap;
}
.upcoming-window .segmented {
  background: #002735;
  flex-shrink: 0;
}
.upcoming-section .upcoming-window {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.upcoming-section .upcoming-window > span {
  min-width: 0;
}
.upcoming-window .segmented {
  margin-left: auto;
}
.upcoming-window .segmented button {
  color: #bfd3dc;
}
.upcoming-window .segmented button[aria-selected="true"] {
  background: #dff1f6;
  color: var(--blue);
}
.upcoming-conversations {
  background: #002735;
}
.upcoming-conversations img {
  object-fit: contain;
  object-position: center top;
}
.upcoming-preview figcaption {
  color: #bfd3dc;
  background: #082b3b;
}
.upcoming-development::after {
  background: linear-gradient(transparent, #082b3b);
}
.upcoming-development .upcoming-glimpse {
  color: var(--mint);
  background: #002735ed;
  border-color: #9dd9e759;
}
.trust-section {
  background: white;
}
.trust-item {
  border-color: var(--line);
}
.trust-item > .icon {
  color: var(--blue);
}
.trust-fine {
  color: var(--muted) !important;
  border-color: var(--line);
}
.adoption-section {
  background: var(--pale);
}
.adoption-steps {
  border-top: 1px solid #a9cbd8;
  padding-top: 24px;
  gap: 40px;
}
.adoption-step {
  position: relative;
  padding-top: 0;
  border-top: 0;
}
.adoption-step::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--pale);
}
.adoption-section .resource {
  background: transparent;
  border: 0;
  border-top: 1px solid #c6dce5;
  border-radius: 0;
  box-shadow: none;
  padding: 28px 0;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: start;
}
.adoption-section .resource-kicker {
  font-size: 10px;
}
.adoption-foot {
  border-top: 1px solid #c6dce5;
  padding-top: 24px;
  margin-top: 0;
}
.adoption-section .video-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.adoption-section .video-poster {
  border-radius: var(--card-radius);
}
.adoption-section .video-caption {
  padding: 18px 0 0;
}
.community-section {
  background: white;
}
.section-revealed {
  animation: section-arrive 650ms ease-out both;
}
@keyframes section-arrive {
  from {
    opacity: 0.7;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .ga-section .split-copy {
    column-gap: 28px;
  }
  #products .product-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  #products .product-grid::before {
    display: none;
  }
  #products .product-card + .product-card {
    border-top: 1px solid #c6dce5;
    padding-top: 32px;
  }
  .upcoming-section .product-grid {
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .product-led .hero-main {
    padding-top: 32px;
  }
  .ga-section .split-copy {
    display: block;
    margin-bottom: 28px;
  }
  .ga-section .split-copy h2 {
    margin-bottom: 20px;
  }
  .ga-section .split-copy .lead {
    font-size: 14px;
  }
  .ga-section .split-copy .actions {
    grid-template-columns: 1fr;
  }
  .ga-section .feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }
  .review-marker {
    width: 20px;
    height: 20px;
    font-size: 9px;
    box-shadow: 0 0 0 3px #00547b1a;
  }
  .ga-section .examples {
    display: block;
  }
  .ga-section .example-links {
    margin-top: 16px;
  }
  #products .ra-visual,
  #products .path-shot {
    height: 260px;
  }
  #products .ra-preview img {
    max-height: 236px;
  }
  #products .preview-heading {
    padding: 10px;
  }
  .upcoming-section .product-grid {
    gap: 40px;
  }
  .upcoming-card .product-copy {
    padding-top: 0;
  }
  .adoption-steps {
    border-top: 0;
    border-left: 1px solid #a9cbd8;
    padding: 0 0 0 24px;
    gap: 28px;
    margin-left: 5px;
  }
  .adoption-step::before {
    left: -29px;
    top: 5px;
  }
  .adoption-section .resource {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-revealed {
    animation: none;
  }
}

/* Short, coordinated motion: guided annotations and staggered section arrivals. */
.review-marker {
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease;
}
.review-marker::before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  opacity: 0;
}
.review-marker::after {
  pointer-events: none;
  content: attr(data-label);
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--navy);
  color: white;
  font-size: 11px;
  box-shadow: 0 4px 12px #00273526;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}
.marker-document::after,
.marker-oversight::after {
  left: auto;
  right: -8px;
}
.review-marker.highlight-active {
  background: #003d5a;
  box-shadow:
    0 0 0 7px #3092b133,
    0 4px 16px #00273533;
}
.review-marker.highlight-active::before {
  animation: annotation-ring 1400ms ease-out both;
}
.review-marker.highlight-active::after {
  opacity: 1;
  transform: translateY(0);
}
.ga-section .feature {
  position: relative;
  padding-bottom: 12px;
}
.ga-section .feature::after {
  content: "";
  position: absolute;
  left: 41px;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms ease;
}
.ga-section .feature.highlight-active::after {
  transform: scaleX(1);
}
.feature > .feature-number {
  transition:
    background-color 220ms ease,
    color 220ms ease;
}
.feature.highlight-active > .feature-number {
  background: var(--blue);
  color: white;
}
.highlight-replay {
  flex-shrink: 0;
  font-size: 11px;
}
@keyframes annotation-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}
.section-revealed.adoption-steps,
.section-revealed.resource-grid,
.section-revealed.media-row,
.section-revealed.training-list {
  animation: none;
}
.section-revealed > .adoption-step,
.section-revealed > .resource,
.section-revealed > .video-card,
.section-revealed > .training-course {
  animation: section-arrive 650ms ease-out both;
}
.section-revealed > :nth-child(2) {
  animation-delay: 100ms;
}
.section-revealed > :nth-child(3) {
  animation-delay: 200ms;
}
.section-revealed > :nth-child(4) {
  animation-delay: 300ms;
}
.section-revealed > :nth-child(5) {
  animation-delay: 400ms;
}
.upcoming-preview.section-revealed .upcoming-crop::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    #ffffff24 50%,
    transparent 75%
  );
  transform: translateX(-110%);
  animation: preview-glint 1400ms 200ms ease-out both;
  pointer-events: none;
}
@keyframes preview-glint {
  to {
    transform: translateX(110%);
  }
}
@media (max-width: 640px) {
  .ga-section .frame-caption {
    flex-wrap: wrap;
    gap: 4px 12px;
  }
  .review-marker::after {
    font-size: 10px;
    padding: 4px 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .highlight-replay {
    display: none;
  }
  .review-marker,
  .review-marker::after,
  .ga-section .feature::after,
  .feature > .feature-number {
    transition: none;
  }
  .section-revealed > .adoption-step,
  .section-revealed > .resource,
  .section-revealed > .video-card,
  .section-revealed > .training-course,
  .upcoming-preview.section-revealed .upcoming-crop::before,
  .review-marker.highlight-active::before {
    animation: none;
  }
}

#pathways-trial {
  width: 1200px;
  height: 90dvh;
  max-height: 90dvh;
  overflow: hidden;
}
#pathways-trial[open] {
  display: flex;
  flex-direction: column;
}
#pathways-trial .modal-header {
  flex-shrink: 0;
}
#pathways-trial iframe {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 0;
  border: 0;
  background: white;
}
.path-caption {
  gap: 12px;
}
.path-caption .text-link {
  flex-shrink: 0;
}

.adoption-section .resource-grid {
  margin-bottom: 42px;
}
.path-caption .btn {
  flex-shrink: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .upcoming-preview [role="tabpanel"]:not([hidden]) {
    animation: upcoming-panel-in 1s ease both;
  }
}
@keyframes upcoming-panel-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
