:root {
  --future-black: #111317;
  --future-charcoal: #191c21;
  --future-panel: #22262c;
  --future-panel-light: #2a2f35;
  --future-paper: #eef0ed;
  --future-white: #fffdf8;
  --future-gold: #cda24e;
  --future-deep-gold: #9c752c;
  --future-teal: #35d6b4;
  --future-orange: #ff7a45;
  --gavel-midnight: #020718;
  --gavel-blue: #2f6fff;
  --gavel-cyan: #58c8ff;
  --gavel-violet: #a96cff;
  --future-line-dark: rgba(255, 253, 248, 0.12);
  --future-line-light: rgba(17, 19, 23, 0.14);
  --future-shell: 1240px;
  --header-height: 72px;
}

html {
  scroll-padding-top: var(--header-height);
}

.future-ui,
.future-ui *,
.future-ui *::before,
.future-ui *::after {
  letter-spacing: 0 !important;
}

.future-ui {
  background: var(--future-black);
  color: var(--future-white);
  font-family:
    "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

.future-ui .section-shell {
  width: min(calc(100% - 64px), var(--future-shell));
}

.future-ui .section-kicker,
.future-ui .eyebrow,
.future-ui .hero-code {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.future-ui .section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.future-ui .section-kicker::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.future-ui h1,
.future-ui h2,
.future-ui h3,
.future-ui h4,
.future-ui p {
  text-wrap: pretty;
}

.future-ui .keep-together {
  white-space: nowrap;
}

.future-ui .site-header {
  min-height: var(--header-height);
  padding: 0 max(32px, calc((100vw - var(--future-shell)) / 2));
  border-bottom: 1px solid rgba(255, 253, 248, 0.08);
  background: rgba(17, 19, 23, 0.94);
  backdrop-filter: blur(18px);
  transition:
    min-height 180ms ease,
    background-color 180ms ease;
}

.future-ui .site-header.is-scrolled {
  min-height: 64px;
  background: rgba(17, 19, 23, 0.98);
}

.future-ui .brand {
  min-width: 214px;
  min-height: 44px;
  gap: 12px;
}

.future-ui .brand-mark,
.future-ui .brand-mark img {
  width: 46px;
  height: 46px;
}

.future-ui .brand-mark {
  position: relative;
  flex-basis: 46px;
}

.future-ui .brand-mark::after {
  display: none;
}

.future-ui .brand-name strong {
  font-size: 21px;
  font-weight: 700;
}

.future-ui .brand-name small {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.future-ui .site-nav {
  gap: 30px;
}

.future-ui .site-nav a,
.future-ui .site-nav button {
  position: relative;
  min-height: 44px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 13px;
  font-weight: 650;
  align-items: center;
}

.future-ui .site-nav a:not(.nav-cta)::after,
.future-ui .site-nav button:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--future-teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.future-ui .site-nav a:hover,
.future-ui .site-nav button:hover,
.future-ui .site-nav [aria-current="page"] {
  color: var(--future-white);
}

.future-ui .site-nav .nav-flagship {
  color: var(--future-teal);
}

.future-ui .site-nav a:hover::after,
.future-ui .site-nav button:hover::after,
.future-ui .site-nav [aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.future-ui .site-nav .nav-cta {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  background: var(--future-gold);
  color: var(--future-black);
}

.future-ui .site-nav .nav-cta:hover {
  background: var(--future-teal);
  color: var(--future-black);
}

.future-ui .site-launch-strip {
  border-bottom: 1px solid rgba(88, 200, 255, 0.36);
  background: var(--gavel-midnight);
  color: var(--future-white);
}

.future-ui .site-launch-strip-inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.future-ui .site-launch-strip p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.future-ui .site-launch-label {
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--gavel-cyan);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.future-ui .site-launch-strip strong {
  font-size: 13px;
  font-weight: 850;
}

.future-ui .site-launch-strip a {
  display: inline-flex;
  min-height: 44px;
  border-bottom: 1px solid rgba(88, 200, 255, 0.72);
  color: var(--future-white);
  font-size: 12px;
  font-weight: 850;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.future-ui .site-launch-strip a:hover {
  border-color: var(--gavel-cyan);
  color: var(--gavel-cyan);
}

.future-ui .button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.future-ui .button:hover {
  transform: translateY(-2px);
}

.future-ui .button-primary {
  background: var(--future-gold);
  color: var(--future-black);
}

.future-ui .button-primary:hover {
  background: var(--future-teal);
}

.future-ui .button-dark {
  background: var(--future-black);
  color: var(--future-white);
}

.future-ui .button-dark:hover {
  background: #2d3339;
}

.future-ui .text-link {
  min-height: 44px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  color: var(--future-white);
  font-size: 14px;
  font-weight: 700;
}

.future-ui .text-link-dark {
  color: var(--future-black);
}

/* Home hero */

.home-page .hero {
  position: relative;
  min-height: 754px;
  overflow: hidden;
  background: var(--future-black);
}

.home-page .hero::before {
  position: absolute;
  top: 0;
  bottom: 64px;
  left: max(32px, calc((100vw - var(--future-shell)) / 2));
  width: 1px;
  background: rgba(53, 214, 180, 0.22);
  content: "";
}

.home-page .hero::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 44%;
  height: 1px;
  background: rgba(255, 253, 248, 0.08);
  content: "";
}

.home-page .hero-inner {
  display: grid;
  width: min(calc(100% - 64px), var(--future-shell));
  min-height: 690px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.home-page .hero-copy {
  max-width: 760px;
  padding: 76px 0 68px;
}

.home-page .hero-code {
  margin: 0 0 28px;
  color: rgba(255, 253, 248, 0.36);
  font-variant-numeric: tabular-nums;
}

.home-page .hero-flagship-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(53, 214, 180, 0.42);
  color: var(--future-teal);
  align-items: center;
  gap: 10px;
}

.home-page .hero-flagship-link:hover {
  border-color: var(--future-white);
  color: var(--future-white);
}

.home-page .hero .eyebrow {
  margin-bottom: 26px;
  color: var(--future-teal);
}

.home-page .hero .eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--future-teal);
}

.home-page .hero h1 {
  max-width: 730px;
  margin: 0;
  color: var(--future-white);
  font-size: 66px;
  font-weight: 590;
  line-height: 1.01;
}

.home-page .hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.64);
  font-size: 18px;
  line-height: 1.7;
}

.home-page .hero-location {
  display: flex;
  margin-top: 18px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--future-gold);
  font-size: 12px;
  font-weight: 750;
}

.home-page .hero-location span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-page .hero-location span:first-child::before {
  width: 20px;
  height: 2px;
  background: var(--future-teal);
  content: "";
}

.home-page .hero-location span + span {
  color: rgba(255, 253, 248, 0.55);
  font-weight: 600;
}

.home-page .hero-actions {
  margin-top: 38px;
  gap: 28px;
}

.home-page .hero-assurance {
  max-width: 660px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--future-line-dark);
  gap: 12px 30px;
}

.home-page .hero-assurance span {
  color: rgba(255, 253, 248, 0.54);
  font-size: 12px;
  font-weight: 650;
}

.home-page .hero-assurance span::before {
  width: 5px;
  height: 5px;
  background: var(--future-teal);
}

.home-page .hero-app-stage {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 610px;
  overflow: hidden;
  align-self: end;
}

.home-page .hero-app-stage::before {
  position: absolute;
  top: 82px;
  right: 20px;
  bottom: 0;
  left: 76px;
  border-top: 1px solid rgba(205, 162, 78, 0.3);
  border-right: 1px solid rgba(255, 253, 248, 0.1);
  border-left: 1px solid rgba(255, 253, 248, 0.1);
  background: #182128;
  content: "";
}

.home-page .hero-app-stage::after {
  position: absolute;
  top: 112px;
  right: 50px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--future-teal);
  box-shadow: 0 0 0 8px rgba(53, 214, 180, 0.1);
  content: "";
  z-index: 4;
}

.home-page .hero-stage-meta {
  position: absolute;
  top: 24px;
  left: 76px;
  display: grid;
  z-index: 6;
}

.home-page .hero-stage-meta span,
.home-page .hero-stage-meta small {
  color: rgba(255, 253, 248, 0.42);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.home-page .hero-stage-meta strong {
  color: var(--future-white);
  font-size: 20px;
  font-weight: 650;
}

.home-page .hero-stage-signal {
  position: absolute;
  top: 28px;
  right: 22px;
  color: var(--future-teal);
  font-size: 9px;
  font-weight: 850;
  z-index: 6;
}

.home-page .hero-brand-art {
  position: absolute;
  right: -126px;
  bottom: -110px;
  width: 500px;
  opacity: 0.16;
  transform: none;
}

.home-page .hero-shiftworth-art {
  position: absolute;
  top: 126px;
  right: 76px;
  bottom: auto;
  width: 322px;
  max-height: none;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  object-fit: cover;
  object-position: top center;
  z-index: 3;
}

.home-page .hero-fingershot-art,
.home-page .hero-rxace-art,
.home-page .hero-pricescout-art {
  position: absolute;
  right: 8px;
  width: 68px;
  height: 68px;
  border: 2px solid rgba(255, 253, 248, 0.72);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  z-index: 5;
}

.home-page .hero-rxace-art {
  top: 156px;
}

.home-page .hero-pricescout-art {
  top: 244px;
}

.home-page .hero-fingershot-art {
  top: 332px;
}

.home-page .hero-capabilities {
  position: relative;
  z-index: 8;
  width: 100%;
  height: 64px;
  padding: 0 max(32px, calc((100vw - var(--future-shell)) / 2));
  border-top: 1px solid rgba(53, 214, 180, 0.26);
  background: #1f2428;
  grid-template-columns: repeat(4, 1fr);
}

.home-page .hero-capabilities span {
  min-width: 0;
  padding: 0 24px;
  border-right: 1px solid var(--future-line-dark);
  color: rgba(255, 253, 248, 0.48);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-page .hero-capabilities span:first-child {
  border-left: 1px solid var(--future-line-dark);
}

.home-page .hero-capabilities strong {
  margin-right: 8px;
  color: var(--future-gold);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.home-page .hero-capabilities span:nth-child(1) strong {
  color: var(--future-teal);
}

/* Gavel AI launch */

.home-page .gavel-launch {
  overflow: hidden;
  background: var(--gavel-midnight);
  color: var(--future-white);
}

.home-page .gavel-launch-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--gavel-midnight);
}

.home-page .gavel-launch-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to bottom, transparent, rgba(2, 8, 23, 0.78));
  content: "";
  pointer-events: none;
}

.home-page .gavel-launch-media > picture,
.home-page .gavel-launch-media > picture > img {
  display: block;
  width: 100%;
}

.home-page .gavel-launch-media > picture > img {
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.home-page .gavel-launch-media-actions {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 32px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-page .gavel-launch-grid {
  display: grid;
  min-height: 220px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
}

.home-page .gavel-launch-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--future-white);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.home-page .gavel-launch-status .status-pulse {
  width: 8px;
  height: 8px;
  background: var(--gavel-cyan);
  box-shadow: 0 0 18px rgba(88, 200, 255, 0.9);
}

.home-page .gavel-launch h2 {
  max-width: 720px;
  margin-top: 12px;
  color: var(--future-white);
  font-size: 38px;
  font-weight: 680;
  line-height: 1.08;
}

.home-page .gavel-launch-grid > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.home-page .gavel-launch .section-kicker {
  color: var(--gavel-cyan);
}

.home-page .gavel-launch .button-light {
  min-width: 190px;
  border: 1px solid rgba(88, 200, 255, 0.76);
  background: var(--future-white);
  color: var(--gavel-midnight);
}

/* Product principles */

.home-page .product-values {
  padding: 0;
  background: var(--future-paper);
  color: var(--future-black);
}

.home-page .product-values-grid {
  display: grid;
  padding: 70px 0;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 0;
}

.home-page .product-values-intro,
.home-page .product-values article {
  min-height: 230px;
  padding: 34px;
}

.home-page .product-values-intro {
  padding-left: 0;
  border-right: 1px solid var(--future-line-light);
}

.home-page .product-values .section-kicker {
  color: var(--future-deep-gold);
}

.home-page .product-values h2 {
  max-width: 380px;
  margin-top: 30px;
  color: var(--future-black);
  font-size: 35px;
  font-weight: 620;
  line-height: 1.15;
}

.home-page .product-values article {
  border-right: 1px solid var(--future-line-light);
}

.home-page .product-values article:last-child {
  border-right: 0;
}

.home-page .product-values article > span {
  margin-bottom: 52px;
  color: var(--future-deep-gold);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
}

.home-page .product-values h3 {
  margin-bottom: 12px;
  color: var(--future-black);
  font-size: 19px;
  font-weight: 720;
}

.home-page .product-values article p {
  color: rgba(17, 19, 23, 0.62);
  font-size: 13px;
}

/* Portfolio */

.home-page .apps-showcase {
  position: relative;
  padding: 122px 0 130px;
  overflow: hidden;
  background: #15171b;
}

.home-page .apps-showcase::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(32px, calc((100vw - var(--future-shell)) / 2));
  width: 1px;
  background: rgba(53, 214, 180, 0.14);
  content: "";
}

.home-page .apps-heading,
.home-page .portfolio-section-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 40px;
  align-items: start;
}

.home-page .apps-heading {
  margin-bottom: 62px;
}

.home-page .apps-heading .section-kicker,
.home-page .portfolio-section-heading .section-kicker {
  color: var(--future-teal);
}

.home-page .apps-heading h2 {
  max-width: 700px;
  margin: 0;
  color: var(--future-white);
  font-size: 50px;
  font-weight: 590;
  line-height: 1.06;
}

.home-page .apps-heading > p:last-child,
.home-page .portfolio-section-heading > p {
  max-width: 390px;
  margin: 4px 0 0;
  color: rgba(255, 253, 248, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.home-page .portfolio-tracker {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--future-panel);
}

.home-page .portfolio-tracker::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 84px;
  height: 4px;
  background: var(--future-teal);
  content: "";
}

.home-page .tracker-heading {
  min-height: 110px;
  padding: 26px 32px;
}

.home-page .tracker-label {
  color: var(--future-teal);
  font-size: 10px;
}

.home-page .tracker-heading h3 {
  font-size: 25px;
  font-weight: 620;
}

.home-page .tracker-updated {
  color: rgba(255, 253, 248, 0.35);
  font-size: 10px;
}

.home-page .portfolio-stats {
  margin: 0;
  background: rgba(255, 253, 248, 0.1);
  gap: 1px;
}

.home-page .portfolio-stat {
  min-height: 160px;
  padding: 28px 32px;
  background: #1c2025;
}

.home-page .portfolio-stat strong {
  margin-bottom: 20px;
  font-size: 48px;
}

.home-page .portfolio-stat p {
  font-size: 14px;
}

.home-page .pipeline-list {
  margin: 0;
  padding: 14px 32px 20px;
}

.home-page .pipeline-row {
  min-height: 64px;
  grid-template-columns: 130px minmax(210px, 0.7fr) 1fr;
  border-color: rgba(255, 253, 248, 0.08);
}

.home-page .pipeline-stage,
.home-page .app-status-badge {
  min-height: 24px;
  padding: 5px 8px;
  border: 0;
  border-radius: 3px;
}

.home-page .portfolio-section-heading {
  margin: 100px 0 34px;
}

.home-page .portfolio-section-heading > div {
  display: contents;
}

.home-page .portfolio-section-heading h3 {
  max-width: 720px;
  font-size: 38px;
  font-weight: 610;
}

.home-page .live-app-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-page .product-card,
.home-page .next-app-card {
  border: 0;
  border-radius: 8px;
  background: var(--future-panel);
  box-shadow: none;
}

.home-page .product-card {
  min-height: 980px;
}

.home-page .product-card-visual {
  height: 430px;
  border: 0;
}

.home-page .product-card-screen {
  width: 84%;
  transform: translateY(40px);
}

.home-page .product-card-body {
  padding: 28px 28px 32px;
}

.home-page .product-card-title {
  grid-template-columns: 56px minmax(0, 1fr);
}

.home-page .product-card-title > img {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 8px;
}

.home-page .product-card-title h3 {
  font-size: 22px;
}

.home-page .product-card-tagline {
  margin-top: 30px;
  color: var(--future-gold);
  font-size: 21px;
}

.home-page .product-card-description {
  color: rgba(255, 253, 248, 0.62);
}

.home-page .product-card-points li,
.home-page .next-app-copy li {
  color: rgba(255, 253, 248, 0.76);
}

.home-page .product-card-footer,
.home-page .next-app-copy small {
  border-color: rgba(255, 253, 248, 0.1);
}

.home-page .next-app-grid {
  gap: 22px;
}

.home-page .portfolio-more {
  display: flex;
  padding-top: 34px;
  justify-content: center;
}

.home-page .portfolio-more[hidden] {
  display: none;
}

.home-page .catalog-toggle {
  display: inline-flex;
  min-height: 52px;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 4px;
  align-items: center;
  gap: 18px;
  background: transparent;
  color: var(--future-white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 720;
}

.home-page .catalog-toggle:hover,
.home-page .catalog-toggle:focus-visible {
  border-color: var(--future-teal);
  background: rgba(53, 214, 180, 0.08);
}

.home-page .catalog-toggle-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--future-teal);
  font-size: 20px;
  line-height: 1;
}

.home-page .next-app-card {
  min-height: 540px;
}

.home-page .next-app-card[hidden] {
  display: none;
}

.home-page .next-app-visual {
  min-height: 540px;
  border: 0;
}

.home-page .next-app-visual-pilllens {
  background: #124950;
}

.home-page .next-app-visual-storescan {
  background: #dfe5ef;
}

.home-page .next-app-visual-gavel {
  align-items: stretch;
  background: var(--gavel-midnight);
}

.home-page .next-app-gavel-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-page .next-app-visual-skyhopper {
  background: #86c7dc;
}

.home-page .next-app-visual-fileflip {
  background: #4635a1;
}

.home-page .next-app-visual-shiftworth {
  background: #dce7ea;
}

.home-page .next-app-visual-insulin {
  align-items: center;
  background: #143e3d;
}

.home-page .next-app-visual-fingershot {
  align-items: flex-start;
}

.home-page .next-app-visual-storescan .next-app-screen,
.home-page .next-app-visual-pilllens .next-app-screen,
.home-page .next-app-visual-skyhopper .next-app-screen,
.home-page .next-app-visual-shiftworth .next-app-screen,
.home-page .next-app-visual-fingershot .next-app-screen {
  width: 74%;
  max-width: 260px;
}

.home-page .next-app-visual-fileflip .next-app-screen {
  width: 72%;
  max-width: 248px;
}

.home-page .next-app-symbol {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 66px;
  height: 66px;
  border: 2px solid rgba(255, 253, 248, 0.78);
  border-radius: 8px;
  background: var(--future-white);
  color: #4635a1;
  font-size: 22px;
  font-weight: 850;
  place-items: center;
}

.home-page .next-app-brand-panel {
  display: grid;
  width: min(230px, calc(100% - 48px));
  min-height: 290px;
  padding: 32px;
  border: 1px solid rgba(53, 214, 180, 0.42);
  background: #102f2e;
  align-content: space-between;
}

.home-page .next-app-brand-panel span,
.home-page .next-app-brand-panel small {
  color: rgba(255, 253, 248, 0.58);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.home-page .next-app-brand-panel strong {
  color: var(--future-gold);
  font-size: 92px;
  font-weight: 560;
  line-height: 1;
}

.home-page .next-app-copy {
  padding: 36px 32px;
}

.home-page .next-app-copy h3 {
  font-size: 26px;
}

.home-page .app-card-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  border-bottom: 1px solid rgba(53, 214, 180, 0.56);
  align-items: center;
  gap: 10px;
  color: var(--future-teal);
  font-size: 13px;
  font-weight: 750;
}

.home-page .next-app-copy small {
  margin-top: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .home-page .product-card:hover,
  .home-page .next-app-card:hover {
    background: var(--future-panel-light);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    transform: translateY(-6px);
  }
}

/* Request, services, and operations */

.home-page .app-request {
  padding: 120px 0;
  background: var(--future-paper);
  color: var(--future-black);
}

.home-page .request-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 96px;
}

.home-page .request-copy {
  position: sticky;
  top: 108px;
  align-self: start;
}

.home-page .request-copy .section-kicker {
  color: var(--future-deep-gold);
}

.home-page .request-copy h2 {
  max-width: 520px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.05;
}

.home-page .request-copy > p:not(.section-kicker) {
  color: rgba(17, 19, 23, 0.62);
  font-size: 16px;
}

.home-page .request-principles {
  border-color: var(--future-line-light);
}

.home-page .request-principles > div {
  border-color: var(--future-line-light);
}

.home-page .request-form {
  padding: 38px;
  border: 0;
  border-radius: 8px;
  background: #dde1df;
}

.home-page .request-form input,
.home-page .request-form select,
.home-page .request-form textarea {
  border: 1px solid rgba(17, 19, 23, 0.22);
  border-radius: 4px;
  background: var(--future-white);
}

.home-page .required-mark {
  color: var(--future-deep-gold);
  font-size: 1.18em;
}

.home-page .field-help {
  color: rgba(17, 19, 23, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.home-page .form-prep-note {
  max-width: 62ch;
  color: rgba(17, 19, 23, 0.65);
  font-size: 12px;
  line-height: 1.55;
}

.home-page .ownership-assurance {
  padding: 24px;
  border-left: 3px solid var(--future-teal);
  background: rgba(255, 253, 248, 0.62);
}

.home-page .ownership-assurance > p:first-child {
  margin: 0 0 8px;
  color: var(--future-deep-gold);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-page .ownership-assurance h3 {
  margin: 0 0 12px;
  color: var(--future-black);
  font-size: 21px;
  font-weight: 650;
}

.home-page .ownership-assurance > p:not(:first-child) {
  margin: 0;
  color: rgba(17, 19, 23, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.home-page .ownership-assurance small {
  display: block;
  margin-top: 14px;
  color: rgba(17, 19, 23, 0.56);
  font-size: 11px;
  line-height: 1.55;
}

.home-page .field-row > label {
  align-self: start;
}

.home-page .services {
  padding: 122px 0;
  background: #d9dedf;
}

.home-page .services .section-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 40px;
}

.home-page .services .section-heading h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.06;
}

.home-page .service-list {
  margin-top: 68px;
  border-color: var(--future-line-light);
}

.home-page .service-row {
  min-height: 118px;
  grid-template-columns: 80px minmax(260px, 0.8fr) minmax(0, 1.2fr) 32px;
  border-color: var(--future-line-light);
  transition:
    background-color 180ms ease,
    padding 180ms ease;
}

.home-page .service-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 253, 248, 0.55);
}

.home-page .service-number {
  color: var(--future-deep-gold);
  font-size: 12px;
}

.home-page .service-row h3 {
  font-size: 22px;
}

.home-page .service-accent {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--future-teal);
}

.home-page .service-deep-link {
  margin-top: 56px;
  padding: 32px 0 0;
  border-color: var(--future-line-light);
}

.home-page .service-deep-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.home-page .service-deep-actions .text-link {
  color: var(--future-black);
}

.home-page .automation {
  position: relative;
  padding: 124px 0;
  overflow: hidden;
  background: #161c20;
}

.home-page .automation::after {
  position: absolute;
  top: 0;
  right: max(32px, calc((100vw - var(--future-shell)) / 2));
  width: 1px;
  height: 100%;
  background: rgba(53, 214, 180, 0.12);
  content: "";
}

.home-page .automation-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 40px;
}

.home-page .automation-heading .section-kicker {
  color: var(--future-teal);
}

.home-page .automation-heading h2 {
  color: var(--future-white);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.06;
}

.home-page .automation-heading > p:last-child {
  color: rgba(255, 253, 248, 0.54);
}

.home-page .automation-outcomes {
  margin-top: 72px;
  border: 0;
  background: rgba(255, 253, 248, 0.1);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.home-page .automation-outcomes article {
  min-height: 250px;
  padding: 34px;
  border: 0;
  background: #1c2429;
}

.home-page .automation-outcomes article > span {
  margin-bottom: 54px;
  color: var(--future-teal);
}

.home-page .automation-outcomes h3 {
  color: var(--future-gold);
}

.home-page .command-workflow {
  display: grid;
  margin-top: 74px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.1);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1px;
}

.home-page .command-console,
.home-page .command-workflow-copy {
  min-width: 0;
  padding: 46px;
}

.home-page .command-console {
  background: #101518;
}

.home-page .command-console-header {
  display: grid;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--future-line-dark);
  grid-template-columns: 12px 1fr auto;
  gap: 10px;
  align-items: center;
}

.home-page .command-console-header .status-pulse {
  width: 8px;
  height: 8px;
  background: var(--future-teal);
}

.home-page .command-console-header p,
.home-page .command-console-header small {
  margin: 0;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.home-page .command-console-header p {
  color: var(--future-white);
}

.home-page .command-console-header small {
  color: rgba(255, 253, 248, 0.38);
}

.home-page .command-prompt {
  margin: 30px 0;
  padding: 24px;
  border-left: 3px solid var(--future-teal);
  background: #1d2529;
}

.home-page .command-prompt span {
  color: var(--future-teal);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-page .command-prompt p {
  margin: 10px 0 0;
  color: var(--future-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.home-page .command-results {
  display: grid;
  border: 1px solid var(--future-line-dark);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .command-results div {
  min-height: 104px;
  padding: 20px;
  border-right: 1px solid var(--future-line-dark);
  border-bottom: 1px solid var(--future-line-dark);
}

.home-page .command-results div:nth-child(2n) {
  border-right: 0;
}

.home-page .command-results div:nth-child(n + 3) {
  border-bottom: 0;
}

.home-page .command-results span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 253, 248, 0.44);
  font-size: 10px;
}

.home-page .command-results strong {
  color: var(--future-gold);
  font-size: 29px;
  font-variant-numeric: tabular-nums;
  font-weight: 620;
}

.home-page .command-results div:first-child strong,
.home-page .command-results div:last-child strong {
  color: var(--future-teal);
}

.home-page .command-note {
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.38);
  font-size: 10px;
  line-height: 1.55;
}

.home-page .command-workflow-copy {
  display: flex;
  background: #213038;
  flex-direction: column;
  justify-content: center;
}

.home-page .command-workflow-copy .section-kicker {
  color: var(--future-teal);
}

.home-page .command-workflow-copy h3 {
  margin: 12px 0 22px;
  color: var(--future-white);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.08;
}

.home-page .command-workflow-copy > p:not(.section-kicker) {
  color: rgba(255, 253, 248, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.home-page .command-workflow-copy ul {
  display: grid;
  margin: 28px 0 34px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.home-page .command-workflow-copy li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 253, 248, 0.8);
  font-size: 13px;
}

.home-page .command-workflow-copy li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--future-teal);
  content: "";
  transform: translateY(-50%);
}

.home-page .command-workflow-copy .button {
  width: fit-content;
}

.home-page .adoption-panel {
  margin-top: 74px;
  border: 0;
  border-radius: 8px;
  background: var(--future-paper);
  color: var(--future-black);
}

.home-page .adoption-copy {
  padding: 54px;
}

.home-page .adoption-copy h3 {
  color: var(--future-black);
}

.home-page .adoption-copy > p:not(.section-kicker) {
  color: rgba(17, 19, 23, 0.62);
}

.home-page .adoption-points {
  border-color: var(--future-line-light);
}

.home-page .adoption-points > div {
  border-color: var(--future-line-light);
}

.home-page .adoption-points span {
  color: rgba(17, 19, 23, 0.62);
}

.home-page .automation-faq {
  margin-top: 88px;
}

.home-page .faq-intro h3 {
  color: var(--future-white);
}

.home-page .faq-intro > p:not(.section-kicker),
.home-page .faq-list details p {
  color: rgba(255, 253, 248, 0.52);
}

.home-page .faq-list {
  border-color: var(--future-line-dark);
}

.home-page .faq-list details {
  border-color: var(--future-line-dark);
}

.home-page .faq-list summary {
  color: var(--future-white);
}

/* Healthcare, mission, and company */

.home-page .healthcare {
  position: relative;
  padding: 124px 0;
  overflow: hidden;
  background: #0f302e;
}

.home-page .healthcare::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 31%;
  height: 5px;
  background: var(--future-gold);
  content: "";
}

.home-page .healthcare-intro {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 80px;
}

.home-page .healthcare-promise h2 {
  max-width: 920px;
  font-size: 52px;
  font-weight: 590;
  line-height: 1.04;
}

.home-page .healthcare-workflows {
  margin-top: 76px;
  border-color: rgba(255, 253, 248, 0.16);
}

.home-page .healthcare-workflows article,
.home-page .healthcare-workflows article:last-child {
  min-height: 260px;
  border-color: rgba(255, 253, 248, 0.16);
}

.home-page .healthcare-workflows article:hover {
  background: rgba(255, 253, 248, 0.05);
}

.home-page .healthcare-boundary {
  border-color: rgba(205, 162, 78, 0.55);
}

.home-page .mission {
  padding: 112px 0;
  background: var(--future-gold);
  color: var(--future-black);
}

.home-page .mission-grid {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 80px;
}

.home-page .mission .section-kicker,
.home-page .mission-label span,
.home-page .mission-statement h2,
.home-page .mission-statement p {
  color: var(--future-black);
}

.home-page .mission-statement h2 {
  max-width: 920px;
  font-size: 52px;
  font-weight: 590;
  line-height: 1.05;
}

.home-page .mission-statement p {
  max-width: 780px;
  opacity: 0.68;
}

.home-page .approach {
  padding: 118px 0;
  background: var(--future-black);
}

.home-page .approach .section-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 40px;
}

.home-page .approach .section-heading h2 {
  font-size: 46px;
  font-weight: 600;
}

.future-ui .delivery-promise {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid var(--future-line-light);
  border-bottom: 1px solid var(--future-line-light);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.future-ui .delivery-promise article {
  min-width: 0;
  padding: 30px;
  border-left: 1px solid var(--future-line-light);
}

.future-ui .delivery-promise article:last-child {
  border-right: 1px solid var(--future-line-light);
}

.future-ui .delivery-promise span,
.future-ui .delivery-promise strong {
  display: block;
}

.future-ui .delivery-promise span {
  margin-bottom: 28px;
  color: var(--future-deep-gold);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.future-ui .delivery-promise strong {
  margin-bottom: 10px;
  color: var(--future-black);
  font-size: 20px;
  font-weight: 650;
}

.future-ui .delivery-promise p {
  margin: 0;
  color: rgba(17, 19, 23, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.home-page .delivery-promise {
  border-color: var(--future-line-dark);
}

.home-page .delivery-promise article {
  border-color: var(--future-line-dark);
}

.home-page .delivery-promise span {
  color: var(--future-teal);
}

.home-page .delivery-promise strong {
  color: var(--future-gold);
}

.home-page .delivery-promise p {
  color: rgba(255, 253, 248, 0.66);
}

.home-page .steps {
  margin-top: 64px;
  border-color: var(--future-line-dark);
  background: rgba(255, 253, 248, 0.1);
  gap: 1px;
}

.home-page .step {
  min-height: 310px;
  padding: 38px;
  border: 0;
  background: var(--future-charcoal);
}

.home-page .step-number {
  margin-bottom: 74px;
  color: var(--future-teal);
}

.home-page .about {
  padding: 112px 0;
  background: var(--future-paper);
}

.home-page .about-grid {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
}

.home-page .about-visual {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  background: var(--future-black);
}

.home-page .about-visual::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 86px;
  height: 4px;
  background: var(--future-teal);
  content: "";
}

.home-page .about-visual img {
  width: min(68%, 340px);
  border-radius: 8px;
  mix-blend-mode: normal;
}

.home-page .about-copy h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.06;
}

.home-page .contact {
  padding: 118px 0;
  background: #111b1e;
}

.home-page .contact-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 96px;
}

.home-page .contact {
  color: var(--future-white);
}

.home-page .contact-copy h2 {
  color: var(--future-white);
  font-size: 50px;
  font-weight: 590;
  line-height: 1.05;
}

.home-page .contact-copy > p:not(.section-kicker) {
  color: rgba(255, 253, 248, 0.68);
}

.home-page .contact-copy .contact-delivery-note {
  padding-left: 16px;
  border-left: 2px solid var(--future-teal);
  color: rgba(255, 253, 248, 0.82);
  font-weight: 600;
}

.home-page .contact-email {
  display: inline-flex;
  min-height: 44px;
  color: var(--future-teal);
  align-items: center;
}

.home-page .contact-form {
  padding: 38px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.05);
}

.home-page .contact-form input,
.home-page .contact-form select,
.home-page .contact-form textarea {
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 4px;
  background: #182226;
  color: var(--future-white);
}

.home-page .contact-form input,
.home-page .contact-form select {
  min-height: 48px;
}

.home-page .contact-form label span {
  color: rgba(255, 253, 248, 0.76);
}

.home-page .contact-form .required-mark {
  color: var(--future-teal);
}

.home-page .contact-form .field-help {
  color: rgba(255, 253, 248, 0.54);
}

.home-page .contact-form .form-prep-note {
  color: rgba(255, 253, 248, 0.62);
}

.home-page .contact-form input::placeholder,
.home-page .contact-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.44);
}

.home-page .contact-form .form-note {
  color: rgba(255, 253, 248, 0.6);
}

.home-page .privacy-note {
  margin: -8px 0 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.home-page .privacy-note a {
  display: inline-flex;
  min-height: 44px;
  color: var(--future-teal);
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-page .contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
}

.home-page .contact-form select:focus {
  border-color: var(--future-teal);
  outline: 2px solid rgba(53, 214, 180, 0.24);
  outline-offset: 2px;
}

.home-page .contact-form .button-dark {
  background: var(--future-gold);
  color: var(--future-black);
}

.home-page .support-section {
  padding: 90px 0;
  background: var(--future-gold);
  color: var(--future-black);
}

.home-page .support-copy .section-kicker,
.home-page .support-copy h2,
.home-page .support-copy > p,
.home-page .support-use,
.home-page .support-use small {
  color: var(--future-black);
}

.home-page .support-copy h2 {
  font-size: 42px;
  font-weight: 620;
}

.home-page .support-copy .button-primary {
  background: var(--future-black);
  color: var(--future-white);
}

.home-page .support-use {
  border-color: rgba(17, 19, 23, 0.24);
}

/* Shared footer and modal */

.future-ui .site-footer {
  width: min(calc(100% - 64px), var(--future-shell));
  min-height: 120px;
  grid-template-columns: minmax(160px, 1fr) auto auto minmax(220px, 1fr);
  border-color: var(--future-line-dark);
  background: var(--future-black);
}

.future-ui .site-footer > p {
  color: rgba(255, 253, 248, 0.46);
  font-size: 12px;
}

.future-ui .site-footer a:not(.brand) {
  min-height: 44px;
  color: rgba(255, 253, 248, 0.68);
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.future-ui .footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.future-ui .footer-meta span[aria-hidden="true"] {
  color: rgba(255, 253, 248, 0.24);
}

.future-ui .footer-meta a {
  min-width: 44px;
  justify-content: center;
}

.future-ui .footer-message {
  display: grid;
  align-content: center;
  gap: 1px;
}

.future-ui .footer-message p {
  color: var(--future-gold);
  font-size: 12px;
}

.future-ui .footer-message .footer-location {
  color: rgba(255, 253, 248, 0.54);
  font-size: 11px;
}

.future-ui .footer-message a,
.future-ui .footer-nav a {
  display: inline-flex;
  font-size: 12px;
}

.future-ui .footer-message a {
  width: fit-content;
}

.future-ui .footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* App support */

.future-ui .app-support-hero {
  overflow: hidden;
  padding: 148px 0 82px;
  background: var(--future-black);
  color: var(--future-white);
}

.future-ui .app-support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  align-items: center;
  gap: 80px;
}

.future-ui .app-support-identity {
  max-width: 700px;
}

.future-ui .app-support-title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.future-ui .app-support-title > img {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border-radius: 22px;
  object-fit: cover;
}

.future-ui .app-support-title p {
  margin-bottom: 6px;
  color: var(--future-teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.future-ui .app-support-title h1 {
  max-width: 700px;
  color: var(--future-white);
  font-size: 60px;
  font-weight: 620;
  line-height: 1;
}

.future-ui .app-support-summary {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 19px;
  line-height: 1.65;
}

.future-ui .app-support-preview {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #dde0dc;
}

.future-ui .app-support-preview img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
}

.future-ui .app-support-preview-brand {
  background: var(--future-charcoal);
}

.future-ui .app-support-preview-brand img {
  width: 58%;
  height: auto;
}

.future-ui .app-support-content {
  padding: 108px 0;
}

.future-ui .app-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(17, 19, 23, 0.14);
}

.future-ui .app-support-panel {
  min-height: 430px;
  padding: 54px;
  background: var(--future-paper);
}

.future-ui .app-support-panel h2,
.future-ui .app-support-faq h2,
.future-ui .app-support-contact h2 {
  margin-top: 16px;
  color: var(--future-black);
  font-size: 36px;
  line-height: 1.15;
}

.future-ui .app-support-panel ul {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  padding: 0;
  list-style: none;
}

.future-ui .app-support-panel li {
  position: relative;
  padding: 0 0 18px 28px;
  border-bottom: 1px solid rgba(17, 19, 23, 0.14);
  line-height: 1.6;
}

.future-ui .app-support-panel li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--future-teal);
  content: "";
}

.future-ui .app-support-privacy {
  background: #dce2df;
}

.future-ui .app-support-privacy > p:not(.section-kicker) {
  margin: 38px 0 24px;
  line-height: 1.75;
}

.future-ui .app-support-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 80px;
  padding-top: 110px;
}

.future-ui .app-support-faq .faq-list {
  border-top: 1px solid rgba(17, 19, 23, 0.18);
}

.future-ui .app-support-faq details {
  border-bottom: 1px solid rgba(17, 19, 23, 0.18);
}

.future-ui .app-support-faq summary {
  min-height: 68px;
  padding: 20px 0;
  color: var(--future-black);
  font-weight: 650;
  cursor: pointer;
}

.future-ui .app-support-faq details p {
  padding: 0 0 24px;
  line-height: 1.7;
}

.future-ui .app-support-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 64px;
  margin-top: 110px;
  padding: 54px;
  border-radius: 8px;
  background: var(--future-gold);
}

.future-ui .app-support-contact p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 20px;
  line-height: 1.7;
}

.future-ui .support-backdrop {
  background: rgba(4, 6, 8, 0.8);
  backdrop-filter: blur(10px);
}

.future-ui .support-dialog {
  border: 0;
  border-radius: 8px;
  background: var(--future-paper);
}

/* Privacy and data safety */

.future-ui.privacy-page {
  background: var(--future-paper);
}

.future-ui .policy-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--future-black);
}

.future-ui .policy-hero::after {
  position: absolute;
  right: max(32px, calc((100vw - var(--future-shell)) / 2));
  bottom: 0;
  width: 34%;
  height: 4px;
  background: var(--future-teal);
  content: "";
}

.future-ui .policy-hero-inner {
  display: flex;
  min-height: 430px;
  padding-top: 64px;
  padding-bottom: 64px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.future-ui .policy-hero .eyebrow {
  color: var(--future-teal);
}

.future-ui .policy-hero h1 {
  max-width: 850px;
  color: var(--future-white);
  font-size: 62px;
  font-weight: 590;
  line-height: 1.02;
}

.future-ui .policy-hero > .section-shell > p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 17px;
}

.future-ui .policy-updated {
  margin-top: 28px;
  color: var(--future-gold);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.future-ui .policy-content {
  padding: 112px 0;
  background: #e1e6e7;
}

.future-ui .policy-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  gap: 100px;
  justify-content: center;
}

.future-ui .policy-navigation {
  position: sticky;
  top: 96px;
  align-self: start;
  border-top: 1px solid rgba(17, 19, 23, 0.22);
}

.future-ui .policy-navigation > p {
  margin: 0;
  padding: 18px 0 12px;
  color: var(--future-deep-gold);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.future-ui .policy-navigation a {
  display: flex;
  min-height: 48px;
  border-bottom: 1px solid rgba(17, 19, 23, 0.15);
  color: rgba(17, 19, 23, 0.7);
  font-size: 13px;
  font-weight: 650;
  align-items: center;
}

.future-ui .policy-navigation a:hover {
  color: var(--future-black);
}

.future-ui .policy-copy {
  min-width: 0;
}

.future-ui .policy-copy > section {
  padding: 0 0 76px;
  border-bottom: 1px solid rgba(17, 19, 23, 0.18);
}

.future-ui .policy-copy > section + section,
.future-ui .policy-copy > aside + section {
  padding-top: 76px;
}

.future-ui .policy-copy h2 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--future-black);
  font-size: 38px;
  font-weight: 610;
  line-height: 1.08;
}

.future-ui .policy-copy section > p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(17, 19, 23, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.future-ui .policy-copy section > p:not(.section-kicker) + p {
  margin-top: 18px;
}

.future-ui .policy-callout {
  margin: 76px 0 0;
  padding: 34px;
  border-left: 4px solid var(--future-teal);
  background: var(--future-black);
}

.future-ui .policy-callout .section-kicker {
  color: var(--future-teal);
}

.future-ui .policy-callout h2 {
  color: var(--future-white);
  font-size: 32px;
}

.future-ui .policy-callout > p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
  line-height: 1.7;
}

.future-ui .policy-copy .policy-contact {
  padding-bottom: 0;
  border-bottom: 0;
}

.future-ui .policy-contact .button {
  margin-top: 26px;
}

/* Founder and services page heroes */

.future-ui.founder-page,
.future-ui.services-page {
  background: var(--future-black);
}

.future-ui .founder-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--future-black);
}

.future-ui .founder-hero::before {
  position: absolute;
  top: 0;
  bottom: 64px;
  left: max(32px, calc((100vw - var(--future-shell)) / 2));
  width: 1px;
  background: rgba(53, 214, 180, 0.2);
  content: "";
}

.future-ui .founder-hero-art {
  right: -80px;
  bottom: -160px;
  width: 660px;
  opacity: 0.22;
}

.future-ui .founder-hero-inner {
  min-height: 656px;
}

.future-ui .founder-hero-copy {
  max-width: 820px;
}

.future-ui .founder-hero-copy .eyebrow {
  color: var(--future-teal);
}

.future-ui .founder-hero-copy h1 {
  max-width: 860px;
  font-size: 68px;
  font-weight: 590;
  line-height: 1.02;
}

.future-ui .founder-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 18px;
}

.future-ui .founder-focus {
  height: 64px;
  padding: 0 max(32px, calc((100vw - var(--future-shell)) / 2));
  border-color: rgba(53, 214, 180, 0.24);
  background: #1f2428;
}

.future-ui .founder-focus a {
  display: flex;
  min-width: 0;
  padding: 0 12px;
  border-left: 1px solid var(--future-line-dark);
  border-color: var(--future-line-dark);
  color: rgba(255, 253, 248, 0.62);
  font-size: 11px;
  font-weight: 820;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
}

.future-ui .founder-focus a:last-child {
  border-right: 1px solid var(--future-line-dark);
}

.future-ui .founder-focus a:hover {
  background: rgba(53, 214, 180, 0.08);
  color: var(--future-teal);
}

/* Founder page */

.future-ui .founder-story {
  padding: 112px 0;
  background: var(--future-paper);
}

.future-ui .founder-story-grid {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 82px;
}

.future-ui .founder-story-copy h2 {
  max-width: 900px;
  font-size: 52px;
  font-weight: 590;
  line-height: 1.05;
}

.future-ui .founder-story-copy blockquote {
  border-color: var(--future-teal);
  color: var(--future-black);
  font-size: 24px;
}

.future-ui .founder-background {
  padding: 116px 0 124px;
  background: #eef2f1;
  color: var(--future-black);
}

.future-ui .founder-background-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.future-ui .founder-background-heading h2,
.future-ui .founder-research-heading h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.06;
}

.future-ui .founder-background-heading > p:last-child,
.future-ui .founder-research-heading > p {
  color: rgba(17, 19, 23, 0.64);
  font-size: 15px;
  line-height: 1.72;
}

.future-ui .founder-proof {
  display: grid;
  margin-top: 68px;
  border-top: 1px solid rgba(17, 19, 23, 0.2);
  border-bottom: 1px solid rgba(17, 19, 23, 0.2);
  grid-template-columns: repeat(4, 1fr);
}

.future-ui .founder-proof p {
  min-height: 172px;
  margin: 0;
  padding: 30px;
  border-left: 1px solid rgba(17, 19, 23, 0.2);
}

.future-ui .founder-proof p:last-child {
  border-right: 1px solid rgba(17, 19, 23, 0.2);
}

.future-ui .founder-proof strong {
  display: block;
  color: var(--future-deep-gold);
  font-size: 36px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.future-ui .founder-proof span {
  display: block;
  max-width: 190px;
  margin-top: 24px;
  color: rgba(17, 19, 23, 0.66);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.future-ui .founder-background-grid {
  display: grid;
  margin-top: 84px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.future-ui .founder-record-label {
  margin: 0 0 18px;
  color: var(--future-deep-gold);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.future-ui .founder-record-list {
  border-bottom: 1px solid rgba(17, 19, 23, 0.2);
}

.future-ui .founder-record-list article {
  display: grid;
  min-height: 142px;
  padding: 26px 0;
  border-top: 1px solid rgba(17, 19, 23, 0.2);
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
}

.future-ui .founder-record-list time {
  padding-top: 3px;
  color: rgba(17, 19, 23, 0.46);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.future-ui .founder-record-list h3 {
  color: var(--future-black);
  font-size: 20px;
  font-weight: 680;
}

.future-ui .founder-record-list p {
  margin-top: 10px;
  color: rgba(17, 19, 23, 0.62);
  font-size: 14px;
  line-height: 1.62;
}

.future-ui .founder-research {
  padding: 116px 0 124px;
  background: #dfe7ea;
  color: var(--future-black);
}

.future-ui .founder-research-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 90px;
  align-items: end;
}

.future-ui .founder-research-heading h2 {
  max-width: 760px;
  margin-top: 18px;
}

.future-ui .publication-list {
  margin-top: 72px;
  border-bottom: 1px solid rgba(17, 19, 23, 0.22);
}

.future-ui .publication-row {
  display: grid;
  min-height: 174px;
  padding: 32px 0;
  border-top: 1px solid rgba(17, 19, 23, 0.22);
  grid-template-columns: 220px minmax(0, 1fr) 150px;
  gap: 42px;
  align-items: center;
}

.future-ui .publication-meta {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
}

.future-ui .publication-meta > span {
  color: var(--future-deep-gold);
  font-size: 12px;
  font-weight: 850;
}

.future-ui .publication-meta p {
  margin: 0;
  color: rgba(17, 19, 23, 0.55);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.55;
  text-transform: uppercase;
}

.future-ui .publication-row h3 {
  max-width: 760px;
  color: var(--future-black);
  font-size: 21px;
  font-weight: 640;
  line-height: 1.35;
}

.future-ui .publication-row > a {
  display: inline-flex;
  min-height: 44px;
  border-bottom: 1px solid rgba(17, 19, 23, 0.48);
  color: var(--future-black);
  font-size: 12px;
  font-weight: 800;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.future-ui .publication-row > a:hover {
  border-color: var(--future-teal);
  color: #0a695b;
}

.future-ui .founder-work {
  padding: 120px 0;
  background: #15171b;
}

.future-ui .founder-work .section-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 40px;
}

.future-ui .founder-work .section-heading h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.06;
}

.future-ui .founder-projects {
  margin-top: 72px;
  border-color: var(--future-line-dark);
}

.future-ui .founder-project {
  min-height: 220px;
  border-color: var(--future-line-dark);
  grid-template-columns: 180px 70px minmax(0, 1fr);
}

.future-ui .founder-project-visual {
  border-radius: 8px;
  background: var(--future-panel);
}

.future-ui .founder-project-visual img {
  border-radius: 8px;
}

.future-ui .founder-principles {
  padding: 108px 0;
  background: var(--future-gold);
  color: var(--future-black);
}

.future-ui .founder-principles .section-kicker,
.future-ui .founder-principles h2,
.future-ui .founder-principle-list strong,
.future-ui .founder-principle-list span {
  color: var(--future-black);
}

.future-ui .founder-principle-list,
.future-ui .founder-principle-list p {
  border-color: rgba(17, 19, 23, 0.22);
}

.future-ui .founder-contact {
  padding: 108px 0;
  background: #102427;
}

.future-ui .founder-contact a {
  color: var(--future-teal);
}

/* Services page */

.future-ui .solutions-hero .founder-hero-copy {
  max-width: 960px;
}

.future-ui .solutions-hero .founder-hero-copy h1 {
  max-width: 930px;
  font-size: 60px;
}

.future-ui .team-solutions {
  padding: 116px 0 0;
  background: var(--future-paper);
  color: var(--future-black);
}

.future-ui .team-solutions-heading,
.future-ui .team-use-cases-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 40px;
  align-items: start;
}

.future-ui .team-solutions-heading .section-kicker {
  color: var(--future-deep-gold);
}

.future-ui .team-solutions-heading h2,
.future-ui .team-use-cases-heading h2,
.future-ui .services-faq h2 {
  margin: 0;
  color: var(--future-black);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.06;
}

.future-ui .team-solutions-heading > p:last-child,
.future-ui .team-use-cases-heading > p:last-child,
.future-ui .services-faq-grid > div:first-child > p:last-child {
  margin: 0;
  color: rgba(17, 19, 23, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.future-ui .team-solution-list {
  margin-top: 72px;
}

.future-ui .team-solution-row {
  display: grid;
  min-height: 650px;
  padding: 70px 0;
  border-top: 1px solid var(--future-line-light);
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 86px;
  align-items: center;
}

.future-ui .team-solution-copy {
  max-width: 510px;
}

.future-ui .solution-label {
  margin: 0 0 24px;
  color: var(--future-deep-gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.future-ui .team-solution-copy h3 {
  margin: 0;
  color: var(--future-black);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.08;
}

.future-ui .team-solution-copy > p:not(.solution-label) {
  margin: 24px 0 0;
  color: rgba(17, 19, 23, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.future-ui .team-solution-copy ul {
  display: grid;
  margin: 28px 0 32px;
  padding: 0;
  border-top: 1px solid var(--future-line-light);
  list-style: none;
}

.future-ui .team-solution-copy li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--future-line-light);
  color: rgba(17, 19, 23, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.future-ui .team-solution-copy li::before {
  position: absolute;
  top: 20px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--future-teal);
  content: "";
}

.future-ui .team-solution-media,
.future-ui .team-workflow-preview,
.future-ui .team-knowledge-preview {
  position: relative;
  min-width: 0;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.future-ui .team-solution-media {
  background: var(--gavel-midnight);
}

.future-ui .team-solution-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.future-ui .gavel-solution-media img {
  object-fit: contain;
}

.future-ui .team-solution-media::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(2, 7, 24, 0.9));
  content: "";
}

.future-ui .team-solution-media figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
}

.future-ui .team-solution-media figcaption .status-pulse {
  width: 9px;
  height: 9px;
  grid-row: 1 / span 2;
}

.future-ui .team-solution-media figcaption strong {
  color: var(--future-white);
  font-size: 15px;
}

.future-ui .team-solution-media figcaption small {
  color: rgba(255, 253, 248, 0.58);
  font-size: 11px;
}

.future-ui .team-solution-row-reverse .team-solution-copy {
  grid-column: 2;
  grid-row: 1;
}

.future-ui .team-solution-row-reverse .team-workflow-preview {
  grid-column: 1;
  grid-row: 1;
}

.future-ui .team-workflow-preview,
.future-ui .team-knowledge-preview {
  padding: 30px;
  background: var(--future-black);
  color: var(--future-white);
}

.future-ui .team-preview-header {
  display: grid;
  min-height: 52px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--future-line-dark);
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.future-ui .team-preview-header .status-pulse {
  width: 8px;
  height: 8px;
}

.future-ui .team-preview-header p,
.future-ui .team-preview-header small {
  margin: 0;
}

.future-ui .team-preview-header p {
  color: var(--future-white);
  font-size: 13px;
  font-weight: 750;
}

.future-ui .team-preview-header small {
  color: rgba(255, 253, 248, 0.45);
  font-size: 10px;
}

.future-ui .team-preview-command {
  margin-top: 38px;
  padding: 24px;
  border: 1px solid rgba(53, 214, 180, 0.3);
  background: rgba(53, 214, 180, 0.06);
}

.future-ui .team-preview-command span,
.future-ui .knowledge-answer > span {
  color: var(--future-teal);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.future-ui .team-preview-command p {
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: 16px;
  line-height: 1.55;
}

.future-ui .team-preview-metrics {
  display: grid;
  margin-top: 24px;
  border: 1px solid var(--future-line-dark);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.future-ui .team-preview-metrics div {
  display: grid;
  min-height: 104px;
  padding: 20px;
  border-right: 1px solid var(--future-line-dark);
  border-bottom: 1px solid var(--future-line-dark);
  align-content: center;
  gap: 6px;
}

.future-ui .team-preview-metrics div:nth-child(2n) {
  border-right: 0;
}

.future-ui .team-preview-metrics div:nth-child(n + 3) {
  border-bottom: 0;
}

.future-ui .team-preview-metrics span {
  color: rgba(255, 253, 248, 0.44);
  font-size: 10px;
}

.future-ui .team-preview-metrics strong {
  color: var(--future-gold);
  font-size: 25px;
  font-weight: 650;
}

.future-ui .team-preview-note {
  margin: 20px 0 0;
  color: rgba(255, 253, 248, 0.36);
  font-size: 10px;
  line-height: 1.55;
}

.future-ui .knowledge-query {
  margin-top: 34px;
  padding: 22px;
  border-left: 3px solid var(--future-gold);
  background: rgba(205, 162, 78, 0.08);
  color: var(--future-white);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.future-ui .knowledge-answer {
  padding: 25px 22px;
  border-bottom: 1px solid var(--future-line-dark);
}

.future-ui .knowledge-answer p {
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 14px;
  line-height: 1.65;
}

.future-ui .knowledge-sources {
  display: grid;
  padding: 14px 0;
}

.future-ui .knowledge-sources p {
  display: grid;
  margin: 0;
  padding: 10px 4px;
  border-bottom: 1px solid var(--future-line-dark);
  grid-template-columns: 36px 1fr;
  color: rgba(255, 253, 248, 0.6);
  font-size: 11px;
}

.future-ui .knowledge-sources span {
  color: var(--future-teal);
}

.future-ui .team-use-cases {
  padding: 116px 0;
  background: #102427;
}

.future-ui .team-use-cases-heading .section-kicker {
  color: var(--future-teal);
}

.future-ui .team-use-cases-heading h2 {
  color: var(--future-white);
}

.future-ui .team-use-cases-heading > p:last-child {
  color: rgba(255, 253, 248, 0.62);
}

.future-ui .team-use-case-grid {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--future-line-dark);
  border-left: 1px solid var(--future-line-dark);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.future-ui .team-use-case-grid article {
  min-height: 250px;
  padding: 32px;
  border-right: 1px solid var(--future-line-dark);
  border-bottom: 1px solid var(--future-line-dark);
}

.future-ui .team-use-case-grid article > span {
  color: var(--future-teal);
  font-size: 11px;
  font-weight: 800;
}

.future-ui .team-use-case-grid h3 {
  margin: 50px 0 16px;
  color: var(--future-white);
  font-size: 25px;
  font-weight: 600;
}

.future-ui .team-use-case-grid p {
  margin: 0;
  color: rgba(255, 253, 248, 0.56);
  font-size: 13px;
  line-height: 1.65;
}

.future-ui .team-use-case-cta {
  display: flex;
  padding-top: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.future-ui .team-use-case-cta p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 253, 248, 0.66);
  font-size: 15px;
  line-height: 1.65;
}

.future-ui .capability-catalog {
  padding: 116px 0;
  background: var(--future-paper);
}

.future-ui .capability-catalog > .section-shell > .section-heading,
.future-ui .security-practice .section-heading,
.future-ui .delivery-process .section-heading,
.future-ui .engagement .section-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 40px;
}

.future-ui .capability-catalog .section-heading h2,
.future-ui .security-practice .section-heading h2,
.future-ui .delivery-process .section-heading h2,
.future-ui .engagement .section-heading h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.06;
}

.future-ui .capability-groups {
  margin-top: 78px;
}

.future-ui .capability-group {
  display: grid;
  padding: 58px 0;
  border-color: var(--future-line-light);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 2.28fr);
  gap: 70px;
}

.future-ui .capability-group > header {
  position: sticky;
  top: 96px;
  align-self: start;
}

.future-ui .capability-group > header > span {
  color: var(--future-deep-gold);
}

.future-ui .capability-items {
  border-color: var(--future-line-light);
}

.future-ui .capability-items article {
  min-height: 230px;
  border-color: var(--future-line-light);
}

.future-ui .engagement {
  padding: 116px 0;
  background: #15171b;
}

.future-ui .engagement-options {
  margin-top: 68px;
  border: 0;
  background: rgba(255, 253, 248, 0.1);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.future-ui .engagement-options article {
  min-height: 340px;
  border: 0;
  background: var(--future-panel);
}

.future-ui .security-practice {
  padding: 116px 0;
  background: #d9dedf;
}

.future-ui .security-grid {
  margin-top: 70px;
  border: 0;
  background: rgba(17, 19, 23, 0.14);
  gap: 1px;
}

.future-ui .security-grid article {
  min-height: 250px;
  border: 0;
  background: var(--future-paper);
}

.future-ui .hipaa-panel {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--future-black);
}

.future-ui .hipaa-label {
  border-color: var(--future-line-dark);
}

.future-ui .delivery-process {
  padding: 116px 0;
  background: var(--future-paper);
}

.future-ui .delivery-steps {
  margin-top: 68px;
  border: 0;
  background: rgba(17, 19, 23, 0.14);
  gap: 1px;
}

.future-ui .delivery-steps article {
  min-height: 230px;
  border: 0;
  background: #e3e6e3;
}

.future-ui .services-cta {
  padding: 106px 0;
  background: var(--future-gold);
}

.future-ui .services-cta .section-kicker,
.future-ui .services-cta h2,
.future-ui .services-cta p,
.future-ui .services-cta-email {
  color: var(--future-black);
}

.future-ui .ownership-commitment {
  padding: 110px 0;
  background: var(--future-black);
  color: var(--future-white);
}

.future-ui .ownership-commitment-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}

.future-ui .ownership-commitment h2 {
  max-width: 620px;
  color: var(--future-white);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
}

.future-ui .ownership-commitment-copy > p {
  margin: 0 0 34px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.future-ui .ownership-principles {
  border-top: 1px solid var(--future-line-dark);
}

.future-ui .ownership-principles p {
  display: grid;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--future-line-dark);
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
}

.future-ui .ownership-principles strong {
  color: var(--future-gold);
  font-size: 14px;
}

.future-ui .ownership-principles span {
  color: rgba(255, 253, 248, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

.future-ui .ownership-commitment-copy > small {
  display: block;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.42);
  font-size: 11px;
  line-height: 1.65;
}

.future-ui .services-faq {
  padding: 116px 0;
  background: #d9dedf;
  color: var(--future-black);
}

.future-ui .services-faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 90px;
  align-items: start;
}

.future-ui .services-faq .section-kicker {
  color: var(--future-deep-gold);
}

.future-ui .services-faq h2 {
  margin-top: 24px;
}

.future-ui .services-faq-grid > div:first-child > p:last-child {
  margin-top: 24px;
}

.future-ui .services-faq-list {
  border-top: 1px solid rgba(17, 19, 23, 0.22);
}

.future-ui .services-faq-list details {
  border-bottom: 1px solid rgba(17, 19, 23, 0.22);
}

.future-ui .services-faq-list summary {
  display: grid;
  min-height: 76px;
  padding: 20px 0;
  cursor: pointer;
  color: var(--future-black);
  font-size: 16px;
  font-weight: 700;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  list-style: none;
}

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

.future-ui .services-faq-list summary span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--future-deep-gold);
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.future-ui .services-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.future-ui .services-faq-list details p {
  max-width: 720px;
  margin: 0;
  padding: 0 48px 24px 0;
  color: rgba(17, 19, 23, 0.66);
  font-size: 14px;
  line-height: 1.72;
}

/* Reveal motion */

.future-ui.js .reveal-target {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.future-ui.js .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.future-ui.js .reveal-target:nth-child(2) {
  transition-delay: 70ms;
}

.future-ui.js .reveal-target:nth-child(3) {
  transition-delay: 140ms;
}

.future-ui.js .reveal-target:nth-child(4) {
  transition-delay: 210ms;
}

@keyframes future-signal {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

.home-page .hero-stage-signal,
.home-page .status-pulse {
  animation: future-signal 2.4s ease-in-out infinite;
}

/* Responsive */

@media (max-width: 1180px) {
  .future-ui .site-nav {
    gap: 20px;
  }

  .home-page .hero-inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
    gap: 30px;
  }

  .home-page .hero h1 {
    font-size: 58px;
  }

  .home-page .hero-shiftworth-art {
    right: 54px;
    width: 290px;
  }

  .home-page .apps-heading,
  .home-page .portfolio-section-heading,
  .home-page .services .section-heading,
  .home-page .automation-heading,
  .home-page .approach .section-heading,
  .future-ui .founder-work .section-heading,
  .future-ui .capability-catalog > .section-shell > .section-heading,
  .future-ui .security-practice .section-heading,
  .future-ui .delivery-process .section-heading,
  .future-ui .engagement .section-heading {
    grid-template-columns: 140px minmax(0, 1.3fr) minmax(240px, 0.7fr);
    gap: 30px;
  }

  .home-page .product-card {
    min-height: 960px;
  }

  .home-page .request-grid,
  .home-page .contact-grid {
    gap: 60px;
  }
}

@media (min-width: 761px) and (max-height: 780px) {
  .home-page .hero {
    min-height: 608px;
  }

  .home-page .hero-inner {
    min-height: 544px;
  }

  .home-page .hero-copy {
    padding-top: 42px;
    padding-bottom: 36px;
  }

  .home-page .hero-code {
    margin-bottom: 18px;
  }

  .home-page .hero .eyebrow {
    margin-bottom: 18px;
  }

  .home-page .hero h1 {
    font-size: 54px;
  }

  .home-page .hero-lede {
    margin-top: 20px;
    font-size: 16px;
  }

  .home-page .hero-actions {
    margin-top: 24px;
  }

  .home-page .hero-assurance {
    margin-top: 22px;
    padding-top: 16px;
  }

  .home-page .hero-app-stage {
    height: 544px;
  }

  .home-page .hero-app-stage::before {
    top: 62px;
  }

  .home-page .hero-stage-meta {
    top: 10px;
  }

  .home-page .hero-shiftworth-art {
    top: 96px;
    width: 260px;
  }

  .home-page .hero-rxace-art {
    top: 118px;
  }

  .home-page .hero-pricescout-art {
    top: 198px;
  }

  .home-page .hero-fingershot-art {
    top: 278px;
  }

  .future-ui .founder-hero {
    min-height: 608px;
  }

  .future-ui .founder-hero-inner {
    min-height: 544px;
    padding-bottom: 48px;
  }

  .future-ui .founder-hero-copy h1 {
    font-size: 58px;
  }

  .future-ui .solutions-hero .founder-hero-copy h1 {
    font-size: 52px;
  }

  .future-ui .founder-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .future-ui .founder-hero-art {
    right: -70px;
    bottom: -140px;
    width: 580px;
  }
}

@media (max-width: 960px) {
  .future-ui .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .future-ui .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 32px 0;
  }

  .future-ui .footer-nav,
  .future-ui .footer-meta {
    justify-content: flex-end;
  }

  .future-ui .app-support-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .future-ui .app-support-preview {
    min-height: 420px;
  }

  .future-ui .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: var(--future-panel);
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .future-ui .menu-toggle span {
    flex: 0 0 auto;
    margin: 3px 0;
  }

  .future-ui .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100dvh - 64px);
    padding: 28px 24px 36px;
    overflow-y: auto;
    background: var(--future-black);
  }

  .future-ui .site-nav .nav-cta {
    width: fit-content;
    min-height: 44px;
  }

  .future-ui .site-nav a,
  .future-ui .site-nav button {
    min-height: 44px;
  }

  .home-page .hero {
    min-height: 0;
  }

  .home-page .hero-inner {
    min-height: 760px;
    grid-template-columns: 1fr 360px;
  }

  .home-page .hero h1 {
    font-size: 50px;
  }

  .home-page .hero-app-stage {
    height: 600px;
  }

  .home-page .hero-app-stage::before {
    left: 20px;
  }

  .home-page .hero-stage-meta {
    left: 20px;
  }

  .home-page .hero-shiftworth-art {
    right: 28px;
    width: 270px;
  }

  .home-page .product-values-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .home-page .product-values-intro {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 0 0 40px;
    border-right: 0;
    border-bottom: 1px solid var(--future-line-light);
  }

  .home-page .product-values article:first-of-type {
    padding-left: 0;
  }

  .home-page .apps-heading,
  .home-page .portfolio-section-heading,
  .home-page .services .section-heading,
  .home-page .automation-heading,
  .home-page .approach .section-heading,
  .future-ui .founder-work .section-heading,
  .future-ui .capability-catalog > .section-shell > .section-heading,
  .future-ui .security-practice .section-heading,
  .future-ui .delivery-process .section-heading,
  .future-ui .engagement .section-heading {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .apps-heading .section-kicker,
  .home-page .portfolio-section-heading .section-kicker,
  .home-page .services .section-heading .section-kicker,
  .home-page .automation-heading .section-kicker,
  .home-page .approach .section-heading .section-kicker,
  .future-ui .founder-work .section-heading .section-kicker,
  .future-ui .capability-catalog .section-heading .section-kicker,
  .future-ui .security-practice .section-heading .section-kicker,
  .future-ui .delivery-process .section-heading .section-kicker,
  .future-ui .engagement .section-heading .section-kicker {
    grid-column: 1 / -1;
  }

  .home-page .portfolio-section-heading > div {
    display: block;
  }

  .home-page .portfolio-section-heading > div .section-kicker {
    margin-bottom: 18px;
  }

  .home-page .live-app-grid {
    grid-template-columns: 1fr;
  }

  .home-page .product-card {
    min-height: 0;
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  }

  .home-page .product-card-visual {
    height: 100%;
    min-height: 650px;
  }

  .home-page .request-grid,
  .home-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-page .request-copy {
    position: static;
  }

  .home-page .automation-outcomes {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .command-workflow {
    grid-template-columns: 1fr;
  }

  .home-page .healthcare-intro,
  .home-page .mission-grid,
  .future-ui .founder-story-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-page .healthcare-workflows {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .about-grid {
    gap: 54px;
  }

  .future-ui .founder-hero-copy h1 {
    font-size: 58px;
  }

  .future-ui .founder-background-heading {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .future-ui .founder-background-heading > p:last-child {
    grid-column: 2;
  }

  .future-ui .founder-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .future-ui .founder-proof p:nth-child(3),
  .future-ui .founder-proof p:nth-child(4) {
    border-top: 1px solid rgba(17, 19, 23, 0.2);
  }

  .future-ui .founder-background-grid {
    gap: 46px;
  }

  .future-ui .founder-research-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
    gap: 48px;
  }

  .future-ui .publication-row {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .future-ui .publication-row > a {
    width: fit-content;
    grid-column: 2;
  }

  .future-ui .capability-group {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .future-ui .capability-group > header {
    position: static;
  }

  .future-ui .engagement-options {
    grid-template-columns: 1fr 1fr;
  }

  .future-ui .policy-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 54px;
  }

  .future-ui .ownership-commitment-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 760px) {
  .future-ui .section-shell,
  .future-ui .site-footer {
    width: calc(100% - 40px);
  }

  .future-ui .site-launch-strip-inner {
    min-height: 0;
    padding: 13px 0;
    gap: 14px;
  }

  .future-ui .site-launch-strip p {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .future-ui .site-launch-label {
    padding: 0;
    border: 0;
  }

  .future-ui .site-launch-strip p > span:last-child {
    display: none;
  }

  .home-page .gavel-launch-grid {
    min-height: 0;
    padding: 42px 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-page .gavel-launch-media {
    min-height: 0;
  }

  .home-page .gavel-launch-media > picture > img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .home-page .gavel-launch-media-actions {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    padding: 18px 0 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .home-page .gavel-launch-media::after {
    display: none;
  }

  .home-page .gavel-launch h2 {
    font-size: 30px;
  }

  .home-page .gavel-launch .button-light {
    width: 100%;
  }

  .future-ui .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 38px 0;
  }

  .future-ui .footer-nav,
  .future-ui .footer-meta {
    justify-content: flex-start;
  }

  .future-ui .footer-nav {
    flex-wrap: wrap;
    gap: 4px 18px;
  }

  .future-ui .app-support-hero {
    padding: 112px 0 60px;
  }

  .future-ui .app-support-title {
    align-items: flex-start;
  }

  .future-ui .app-support-title > img {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
    border-radius: 16px;
  }

  .future-ui .app-support-title h1 {
    font-size: 40px;
  }

  .future-ui .app-support-summary {
    font-size: 16px;
  }

  .future-ui .app-support-preview {
    min-height: 340px;
  }

  .future-ui .app-support-content {
    padding: 76px 0;
  }

  .future-ui .app-support-grid,
  .future-ui .app-support-faq,
  .future-ui .app-support-contact {
    grid-template-columns: 1fr;
  }

  .future-ui .app-support-panel {
    min-height: 0;
    padding: 38px 24px;
  }

  .future-ui .app-support-panel h2,
  .future-ui .app-support-faq h2,
  .future-ui .app-support-contact h2 {
    font-size: 30px;
  }

  .future-ui .app-support-faq {
    gap: 42px;
    padding-top: 76px;
  }

  .future-ui .app-support-contact {
    align-items: start;
    gap: 32px;
    margin-top: 76px;
    padding: 38px 24px;
  }

  .home-page .hero::before,
  .home-page .apps-showcase::before,
  .home-page .automation::after,
  .future-ui .founder-hero::before {
    display: none;
  }

  .home-page .hero-inner {
    display: block;
    width: calc(100% - 40px);
    min-height: 0;
  }

  .home-page .hero-copy {
    max-width: none;
    padding: 36px 0 18px;
  }

  .home-page .hero-code {
    display: none;
  }

  .home-page .hero-code.hero-flagship-link {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 10px;
  }

  .home-page .hero .eyebrow {
    margin-bottom: 20px;
  }

  .home-page .hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .home-page .hero-lede {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .home-page .hero-actions {
    margin-top: 22px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .home-page .hero-actions .button {
    width: 100%;
  }

  .home-page .hero-actions .text-link {
    width: fit-content;
  }

  .home-page .hero-assurance {
    display: none;
  }

  .home-page .hero-app-stage {
    width: 100%;
    height: 210px;
    margin-top: 0;
  }

  .home-page .hero-app-stage::before {
    top: 46px;
    right: 18px;
    left: 44px;
  }

  .home-page .hero-app-stage::after {
    top: 66px;
    right: 38px;
  }

  .home-page .hero-stage-meta {
    top: 0;
    left: 44px;
  }

  .home-page .hero-stage-signal {
    right: 36px;
    bottom: 16px;
  }

  .home-page .hero-brand-art {
    right: -70px;
    bottom: -90px;
    width: 320px;
  }

  .home-page .hero-shiftworth-art {
    top: 68px;
    right: 54px;
    width: 148px;
  }

  .home-page .hero-fingershot-art,
  .home-page .hero-rxace-art,
  .home-page .hero-pricescout-art {
    right: 4px;
    width: 40px;
    height: 40px;
  }

  .home-page .hero-rxace-art {
    top: 76px;
  }

  .home-page .hero-pricescout-art {
    top: 124px;
  }

  .home-page .hero-fingershot-art {
    top: 172px;
  }

  .home-page .hero-capabilities {
    display: none;
  }

  .home-page .product-values-grid {
    padding: 64px 0;
    grid-template-columns: 1fr;
  }

  .home-page .product-values article,
  .home-page .product-values article:first-of-type {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--future-line-light);
  }

  .home-page .product-values article > span {
    margin-bottom: 24px;
  }

  .home-page .apps-showcase,
  .home-page .app-request,
  .home-page .services,
  .home-page .automation,
  .home-page .healthcare,
  .home-page .mission,
  .home-page .approach,
  .home-page .about,
  .home-page .contact,
  .future-ui .founder-story,
  .future-ui .founder-work,
  .future-ui .founder-principles,
  .future-ui .founder-contact,
  .future-ui .capability-catalog,
  .future-ui .engagement,
  .future-ui .security-practice,
  .future-ui .delivery-process,
  .future-ui .services-cta {
    padding: 82px 0;
  }

  .home-page .apps-heading,
  .home-page .portfolio-section-heading,
  .home-page .services .section-heading,
  .home-page .automation-heading,
  .home-page .approach .section-heading,
  .future-ui .founder-work .section-heading,
  .future-ui .capability-catalog > .section-shell > .section-heading,
  .future-ui .security-practice .section-heading,
  .future-ui .delivery-process .section-heading,
  .future-ui .engagement .section-heading {
    display: block;
  }

  .home-page .apps-heading .section-kicker,
  .home-page .portfolio-section-heading .section-kicker,
  .home-page .services .section-heading .section-kicker,
  .home-page .automation-heading .section-kicker,
  .home-page .approach .section-heading .section-kicker,
  .future-ui .founder-work .section-heading .section-kicker,
  .future-ui .capability-catalog .section-heading .section-kicker,
  .future-ui .security-practice .section-heading .section-kicker,
  .future-ui .delivery-process .section-heading .section-kicker,
  .future-ui .engagement .section-heading .section-kicker {
    margin-bottom: 22px;
  }

  .home-page .apps-heading h2,
  .home-page .services .section-heading h2,
  .home-page .automation-heading h2,
  .home-page .healthcare-promise h2,
  .home-page .mission-statement h2,
  .home-page .approach .section-heading h2,
  .home-page .about-copy h2,
  .home-page .contact-copy h2,
  .future-ui .founder-story-copy h2,
  .future-ui .founder-work .section-heading h2,
  .future-ui .capability-catalog .section-heading h2,
  .future-ui .security-practice .section-heading h2,
  .future-ui .delivery-process .section-heading h2,
  .future-ui .engagement .section-heading h2 {
    font-size: 38px;
  }

  .home-page .apps-heading > p:last-child,
  .home-page .portfolio-section-heading > p,
  .home-page .services .section-heading > p:last-child,
  .home-page .automation-heading > p:last-child,
  .home-page .approach .section-heading > p:last-child {
    margin-top: 22px;
  }

  .home-page .tracker-heading {
    padding: 24px 20px;
  }

  .home-page .portfolio-stats {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .portfolio-stat {
    min-height: 145px;
    padding: 24px 20px;
  }

  .home-page .pipeline-list {
    padding: 10px 20px 16px;
  }

  .home-page .pipeline-row {
    grid-template-columns: 106px 1fr;
    gap: 8px 14px;
  }

  .home-page .pipeline-row > span:last-child {
    grid-column: 1 / -1;
  }

  .home-page .portfolio-section-heading {
    margin-top: 72px;
  }

  .home-page .portfolio-section-heading h3 {
    font-size: 32px;
  }

  .home-page .product-card {
    display: flex;
    min-height: 0;
  }

  .home-page .product-card-visual {
    height: 420px;
    min-height: 0;
  }

  .home-page .next-app-grid {
    grid-template-columns: 1fr;
  }

  .home-page .service-row {
    padding: 28px 0;
    grid-template-columns: 42px minmax(0, 1fr) 16px;
    column-gap: 14px;
    row-gap: 14px;
  }

  .home-page .service-number {
    grid-column: 1;
  }

  .home-page .service-row h3 {
    grid-column: 2;
  }

  .home-page .service-row > p:nth-of-type(2) {
    grid-column: 2 / 4;
  }

  .home-page .service-accent {
    grid-column: 3;
    grid-row: 1;
  }

  .home-page .service-deep-link,
  .home-page .service-deep-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-page .request-grid,
  .home-page .contact-grid {
    gap: 48px;
  }

  .home-page .request-copy h2 {
    font-size: 39px;
  }

  .home-page .request-form,
  .home-page .contact-form {
    padding: 26px 20px;
  }

  .home-page .automation-outcomes,
  .home-page .healthcare-workflows {
    grid-template-columns: 1fr;
  }

  .home-page .command-console,
  .home-page .command-workflow-copy {
    padding: 34px 24px;
  }

  .home-page .command-workflow-copy h3 {
    font-size: 31px;
  }

  .home-page .automation-outcomes article {
    min-height: 220px;
  }

  .home-page .adoption-panel {
    grid-template-columns: 1fr;
  }

  .home-page .adoption-copy {
    padding: 34px 24px;
  }

  .home-page .adoption-points {
    border-top: 1px solid var(--future-line-light);
    border-left: 0;
  }

  .home-page .automation-faq {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-page .healthcare-boundary {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-page .steps {
    grid-template-columns: 1fr;
  }

  .future-ui .delivery-promise {
    grid-template-columns: 1fr;
  }

  .future-ui .delivery-promise article,
  .future-ui .delivery-promise article:last-child {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--future-line-light);
    border-left: 0;
  }

  .future-ui .delivery-promise article:last-child {
    border-bottom: 0;
  }

  .home-page .delivery-promise article {
    border-color: var(--future-line-dark);
  }

  .future-ui .delivery-promise span {
    margin-bottom: 18px;
  }

  .future-ui .ownership-commitment {
    padding: 78px 0;
  }

  .future-ui .ownership-commitment h2 {
    font-size: 38px;
  }

  .future-ui .ownership-principles p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-page .step {
    min-height: 250px;
  }

  .home-page .step-number {
    margin-bottom: 42px;
  }

  .home-page .about-grid {
    grid-template-columns: 1fr;
  }

  .home-page .about-visual {
    min-height: 340px;
  }

  .home-page .support-grid {
    grid-template-columns: 1fr;
  }

  .future-ui .founder-hero {
    min-height: 650px;
  }

  .future-ui .founder-hero-inner {
    min-height: 586px;
  }

  .future-ui .founder-hero-copy h1,
  .future-ui .solutions-hero .founder-hero-copy h1 {
    font-size: 45px;
  }

  .future-ui .founder-hero-art {
    right: -130px;
    bottom: -90px;
    width: 430px;
  }

  .future-ui .founder-focus {
    height: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .future-ui .founder-focus a {
    min-height: 58px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 1.25;
  }

  .future-ui .founder-project {
    grid-template-columns: 90px 40px minmax(0, 1fr);
  }

  .future-ui .founder-background,
  .future-ui .founder-research {
    padding: 76px 0 84px;
  }

  .future-ui .founder-background-heading,
  .future-ui .founder-research-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .future-ui .founder-background-heading > p:last-child {
    grid-column: auto;
  }

  .future-ui .founder-background-heading h2,
  .future-ui .founder-research-heading h2 {
    font-size: 36px;
  }

  .future-ui .founder-proof {
    margin-top: 48px;
  }

  .future-ui .founder-proof p {
    min-height: 154px;
    padding: 24px 20px;
  }

  .future-ui .founder-proof span {
    margin-top: 18px;
  }

  .future-ui .founder-background-grid {
    margin-top: 62px;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .future-ui .publication-list {
    margin-top: 48px;
  }

  .future-ui .publication-row {
    min-height: 0;
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .future-ui .publication-row > a {
    grid-column: auto;
  }

  .future-ui .capability-group {
    padding: 42px 0;
  }

  .future-ui .capability-items {
    grid-template-columns: 1fr;
  }

  .future-ui .engagement-options,
  .future-ui .security-grid,
  .future-ui .delivery-steps {
    grid-template-columns: 1fr;
  }

  .future-ui .hipaa-panel {
    grid-template-columns: 1fr;
  }

  .future-ui .policy-hero,
  .future-ui .policy-hero-inner {
    min-height: 0;
  }

  .future-ui .policy-hero-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .future-ui .policy-hero h1 {
    font-size: 42px;
  }

  .future-ui .policy-hero > .section-shell > p:not(.eyebrow) {
    font-size: 16px;
  }

  .future-ui .policy-content {
    padding: 76px 0;
  }

  .future-ui .policy-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .future-ui .policy-navigation {
    position: static;
  }

  .future-ui .policy-copy > section {
    padding-bottom: 58px;
  }

  .future-ui .policy-copy > section + section,
  .future-ui .policy-copy > aside + section {
    padding-top: 58px;
  }

  .future-ui .policy-copy h2 {
    font-size: 32px;
  }

  .future-ui .policy-callout {
    margin-top: 58px;
    padding: 28px 24px;
  }

  .future-ui .policy-callout h2 {
    font-size: 28px;
  }
}

@media (max-width: 960px) {
  .future-ui .team-solutions-heading,
  .future-ui .team-use-cases-heading {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .future-ui .team-solutions-heading > p:last-child,
  .future-ui .team-use-cases-heading > p:last-child {
    grid-column: 2;
  }

  .future-ui .team-solution-row {
    min-height: 560px;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
  }

  .future-ui .team-solution-copy h3 {
    font-size: 34px;
  }

  .future-ui .team-solution-media,
  .future-ui .team-workflow-preview,
  .future-ui .team-knowledge-preview {
    min-height: 480px;
  }

  .future-ui .team-use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .future-ui .services-faq-grid {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .future-ui .team-solutions,
  .future-ui .team-use-cases,
  .future-ui .services-faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .future-ui .team-solutions {
    padding-bottom: 0;
  }

  .future-ui .team-solutions-heading,
  .future-ui .team-use-cases-heading,
  .future-ui .services-faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .future-ui .team-solutions-heading > p:last-child,
  .future-ui .team-use-cases-heading > p:last-child {
    grid-column: auto;
  }

  .future-ui .team-solutions-heading h2,
  .future-ui .team-use-cases-heading h2,
  .future-ui .services-faq h2 {
    font-size: 38px;
  }

  .future-ui .team-solution-list {
    margin-top: 50px;
  }

  .future-ui .team-solution-row {
    min-height: 0;
    padding: 54px 0;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .future-ui .team-solution-row-reverse .team-solution-copy,
  .future-ui .team-solution-row-reverse .team-workflow-preview {
    grid-column: auto;
    grid-row: auto;
  }

  .future-ui .team-solution-media,
  .future-ui .team-workflow-preview,
  .future-ui .team-knowledge-preview {
    min-height: 430px;
  }

  .future-ui .team-use-case-grid {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .future-ui .team-use-case-grid article {
    min-height: 0;
  }

  .future-ui .team-use-case-grid h3 {
    margin-top: 30px;
  }

  .future-ui .team-use-case-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .future-ui .services-faq-list {
    margin-top: 18px;
  }
}

@media (max-width: 520px) {
  .future-ui .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .future-ui .brand {
    min-width: 154px;
  }

  .future-ui .brand-mark,
  .future-ui .brand-mark img {
    width: 40px;
    height: 40px;
  }

  .future-ui .brand-mark {
    flex-basis: 40px;
  }

  .future-ui .brand-name strong {
    font-size: 19px;
  }

  .future-ui .footer-meta {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .home-page .hero-inner {
    width: calc(100% - 32px);
  }

  .home-page .hero-copy {
    padding-top: 36px;
  }

  .home-page .hero h1 {
    font-size: 37px;
  }

  .home-page .hero-assurance {
    gap: 8px 16px;
  }

  .home-page .product-card-body,
  .home-page .next-app-copy {
    padding: 26px 20px 30px;
  }

  .home-page .product-card-title {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .home-page .product-card-title > img {
    width: 52px;
    height: 52px;
  }

  .home-page .product-card-title p {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-page .product-card-title h3 {
    font-size: 22px;
  }

  .home-page .next-app-card {
    grid-template-columns: 1fr;
  }

  .home-page .portfolio-more {
    padding-top: 24px;
  }

  .home-page .catalog-toggle {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
  }

  .home-page .hero-stage-signal {
    top: 8px;
    right: 18px;
  }

  .home-page .next-app-visual {
    min-height: 400px;
    border: 0;
  }

  .future-ui .founder-project {
    grid-template-columns: 72px 1fr;
  }

  .future-ui .founder-project-number {
    display: none;
  }

  .future-ui .team-solutions-heading h2,
  .future-ui .team-use-cases-heading h2,
  .future-ui .services-faq h2 {
    font-size: 32px;
  }

  .future-ui .team-solution-copy h3 {
    font-size: 30px;
  }

  .future-ui .team-solution-media {
    min-height: 330px;
  }

  .future-ui .team-workflow-preview,
  .future-ui .team-knowledge-preview {
    min-height: 0;
    padding: 22px;
  }

  .future-ui .team-preview-header {
    grid-template-columns: auto 1fr;
  }

  .future-ui .team-preview-header small {
    grid-column: 2;
  }

  .future-ui .team-preview-command {
    margin-top: 26px;
    padding: 18px;
  }

  .future-ui .team-preview-metrics div {
    min-height: 90px;
    padding: 14px;
  }

  .future-ui .team-preview-metrics strong {
    font-size: 21px;
  }

  .future-ui .team-use-case-grid article {
    padding: 26px 22px;
  }

  .future-ui .services-faq-list summary {
    min-height: 70px;
    font-size: 14px;
  }

  .future-ui .services-faq-list details p {
    padding-right: 0;
  }
}

/* Homepage refinement: immersive flagship hero and compact mobile browsing */

.home-page .hero {
  min-height: 560px;
  isolation: isolate;
}

.home-page .hero-background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(66%, 900px);
  height: calc(100% - 64px);
  opacity: 0.82;
  object-fit: cover;
  object-position: center 22%;
  pointer-events: none;
}

.home-page .hero::before {
  z-index: 2;
}

.home-page .hero::after {
  z-index: 1;
  inset: 0 0 64px;
  width: auto;
  height: auto;
  background: linear-gradient(
    90deg,
    #111317 0%,
    #111317 41%,
    rgba(17, 19, 23, 0.92) 50%,
    rgba(17, 19, 23, 0.42) 70%,
    rgba(17, 19, 23, 0.08) 100%
  );
}

.home-page .hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 496px;
}

.home-page .hero-copy {
  max-width: 700px;
  padding: 42px 0 38px;
}

.home-page .hero h1 {
  max-width: 700px;
  font-size: 60px;
}

.home-page .hero-lede {
  max-width: 600px;
  margin-top: 22px;
}

.home-page .hero-actions {
  margin-top: 28px;
}

.home-page .hero-assurance {
  margin-top: 26px;
  padding-top: 16px;
}

.home-page .hero-capabilities {
  z-index: 3;
}

.home-page .home-section-nav {
  position: relative;
  z-index: 6;
  border-top: 1px solid var(--future-line-light);
  border-bottom: 1px solid var(--future-line-light);
  background: var(--future-paper);
}

.home-page .home-section-nav-inner {
  display: grid;
  min-height: 64px;
  grid-template-columns: repeat(6, 1fr);
}

.home-page .home-section-nav a {
  display: flex;
  min-width: 0;
  padding: 0 18px;
  border-right: 1px solid var(--future-line-light);
  align-items: center;
  justify-content: space-between;
  color: rgba(17, 19, 23, 0.72);
  font-size: 12px;
  font-weight: 750;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.home-page .home-section-nav a::after {
  color: var(--future-deep-gold);
  content: "\2193";
}

.home-page .home-section-nav a:first-child {
  border-left: 1px solid var(--future-line-light);
}

.home-page .home-section-nav a:hover,
.home-page .home-section-nav a:focus-visible {
  background: rgba(53, 214, 180, 0.08);
  color: var(--future-black);
}

@media (max-width: 960px) {
  .home-page .hero-background {
    width: 72%;
    opacity: 0.7;
  }

  .home-page .hero::after {
    background: linear-gradient(
      90deg,
      #111317 0%,
      #111317 50%,
      rgba(17, 19, 23, 0.8) 64%,
      rgba(17, 19, 23, 0.2) 100%
    );
  }

  .home-page .hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 760px) {
  .home-page .hero {
    min-height: 0;
  }

  .home-page .hero-background {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.42;
    object-position: center top;
  }

  .home-page .hero::after {
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(17, 19, 23, 0.3) 0%,
      rgba(17, 19, 23, 0.82) 40%,
      #111317 72%,
      #111317 100%
    );
  }

  .home-page .hero-inner {
    min-height: 0;
  }

  .home-page .hero-copy {
    padding: 38px 0 54px;
  }

  .home-page .hero h1 {
    font-size: 40px;
  }

  .home-page .hero-lede {
    max-width: 320px;
  }

  .home-page .hero-location {
    display: grid;
    align-items: start;
    gap: 10px;
  }

  .home-page .hero-location span + span {
    line-height: 1.5;
  }

  .home-page .home-section-nav {
    overflow: hidden;
  }

  .home-page .home-section-nav-inner {
    display: flex;
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .home-page .home-section-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .home-page .home-section-nav a {
    min-width: 116px;
    padding: 0 16px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .home-page .home-section-nav a:first-child {
    border-left: 1px solid var(--future-line-light);
  }

  .home-page .live-app-grid,
  .home-page .next-app-grid,
  .home-page .service-list,
  .home-page .automation-outcomes,
  .home-page .healthcare-workflows,
  .home-page .steps {
    display: grid;
    padding: 0 46px 18px 0;
    overflow-x: auto;
    overflow-y: hidden;
    grid-template-columns: none;
    grid-auto-columns: min(82vw, 310px);
    grid-auto-flow: column;
    gap: 14px;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .home-page .live-app-grid::-webkit-scrollbar,
  .home-page .next-app-grid::-webkit-scrollbar,
  .home-page .service-list::-webkit-scrollbar,
  .home-page .automation-outcomes::-webkit-scrollbar,
  .home-page .healthcare-workflows::-webkit-scrollbar,
  .home-page .steps::-webkit-scrollbar {
    display: none;
  }

  .home-page .product-card,
  .home-page .next-app-card,
  .home-page .service-row,
  .home-page .automation-outcomes article,
  .home-page .healthcare-workflows article,
  .home-page .step {
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
  }

  .home-page .product-card {
    min-height: 0;
  }

  .home-page .product-card-visual {
    height: 340px;
  }

  .home-page .product-card-tagline {
    margin-top: 22px;
    font-size: 18px;
  }

  .home-page .next-app-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-page .next-app-visual {
    min-height: 330px;
  }

  .home-page .service-list {
    margin-top: 48px;
    border-top: 0;
  }

  .home-page .service-row,
  .home-page .service-row:hover {
    min-height: 300px;
    padding: 24px;
    border: 1px solid var(--future-line-light);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.58);
    grid-template-columns: minmax(0, 1fr) 16px;
    grid-template-rows: auto auto 1fr;
    column-gap: 10px;
    row-gap: 18px;
    align-content: start;
  }

  .home-page .service-number {
    grid-row: 1;
    grid-column: 1;
  }

  .home-page .service-row h3 {
    grid-row: 2;
    grid-column: 1 / 3;
  }

  .home-page .service-row > p:nth-of-type(2) {
    grid-row: 3;
    grid-column: 1 / 3;
  }

  .home-page .service-accent {
    grid-row: 1;
    grid-column: 2;
  }

  .home-page .automation-outcomes {
    margin-top: 52px;
    background: transparent;
  }

  .home-page .automation-outcomes article {
    min-height: 270px;
  }

  .home-page .healthcare-workflows {
    margin-top: 52px;
    border: 0;
  }

  .home-page .healthcare-workflows article,
  .home-page .healthcare-workflows article:last-child {
    min-height: 280px;
    border: 1px solid rgba(255, 253, 248, 0.16);
    border-radius: 8px;
  }

  .home-page .steps {
    margin-top: 52px;
    background: transparent;
  }

  .home-page .step {
    min-height: 300px;
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .future-ui *,
  .future-ui *::before,
  .future-ui *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .future-ui.js .reveal-target {
    opacity: 1;
    transform: none;
  }
}
