:root {
  --navy: #081527;
  --navy-soft: #0f1b26;
  --teal-deep: #1e8a90;
  --teal: #2fb8b8;
  --teal-light: #8adfd9;
  --teal-ink: #17767b;
  --teal-tint: #e6f4f4;
  --off-white: #f5f7fa;
  --white: #ffffff;
  --neutral-100: #eaeff3;
  --neutral-200: #d8e1e7;
  --neutral-300: #bcc9d2;
  --neutral-400: #8b9ca8;
  --neutral-500: #647885;
  --neutral-600: #4a5c68;
  --neutral-700: #33434f;
  --neutral-800: #1e2c38;
  --neutral-900: #0f1b26;
  --danger: #b42318;
  --font-display: Georgia, "Times New Roman", serif;
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 22px 60px rgba(8, 21, 39, 0.12);
  --shadow-card: 0 12px 32px rgba(8, 21, 39, 0.08);
  --radius-large: 22px;
  --radius-card: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--neutral-700);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: var(--font-ui);
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--teal-light);
  color: var(--navy);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 5.2vw, 4.8rem);
  margin-bottom: 0;
}

h2 {
  font-size: clamp(2.15rem, 3.8vw, 3.55rem);
  margin-bottom: 0;
}

h3 {
  font-size: 1.45rem;
}

.shell {
  margin-inline: auto;
  max-width: 1180px;
  width: calc(100% - 80px);
}

.section {
  padding-block: 108px;
}

.section--navy {
  background: var(--navy);
  color: var(--neutral-200);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.skip-link {
  background: var(--white);
  border-radius: 0 0 6px 6px;
  color: var(--navy);
  left: 20px;
  padding: 10px 14px;
  position: fixed;
  top: -100px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.eyebrow {
  color: var(--teal-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--teal-light);
}

.section-lead {
  color: var(--neutral-600);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 35em;
}

.section-heading {
  max-width: 690px;
}

.section-heading--centred {
  margin-inline: auto;
  text-align: center;
}

.section-heading--centred .section-lead {
  margin: 25px auto 0;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 650;
  justify-content: center;
  min-height: 50px;
  padding: 12px 23px;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.site-nav__link:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.button--primary {
  background: var(--navy);
  box-shadow: 0 8px 26px rgba(8, 21, 39, 0.2);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: inset 0 0 0 2px var(--teal), 0 12px 30px rgba(8, 21, 39, 0.24);
}

.button--teal {
  background: var(--teal);
  color: var(--navy);
}

.button--teal:hover,
.button--teal:focus-visible {
  background: var(--teal-light);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.button--small {
  font-size: 0.9rem;
  min-height: 42px;
  padding: 9px 17px;
}

.button--full {
  width: 100%;
}

.text-link {
  color: var(--navy);
  font-weight: 650;
  text-decoration-color: var(--teal);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-header {
  background: rgba(8, 21, 39, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  position: sticky;
  top: 0;
  z-index: 50;
}

@supports (backdrop-filter: blur(14px)) {
  .site-header {
    backdrop-filter: blur(14px);
    background: rgba(8, 21, 39, 0.91);
  }
}

.site-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 78px;
}

.site-brand {
  display: block;
  flex: 0 0 auto;
  width: 190px;
}

.site-brand img {
  height: auto;
  width: 100%;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.site-nav__link {
  color: var(--neutral-200);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav__link:hover {
  color: var(--white);
}

.hero {
  background:
    radial-gradient(circle at 83% 12%, rgba(47, 184, 184, 0.12), transparent 27%),
    linear-gradient(180deg, var(--off-white) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--neutral-200);
  overflow: hidden;
  position: relative;
}

.hero::before {
  border: 1px solid rgba(30, 138, 144, 0.14);
  border-radius: 50%;
  content: "";
  height: 560px;
  position: absolute;
  right: -350px;
  top: -255px;
  width: 560px;
}

.hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(50px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  min-height: 760px;
  padding-block: 76px 88px;
  position: relative;
}

.hero__copy {
  max-width: 650px;
}

.hero__lockup {
  height: auto;
  margin-bottom: 38px;
  width: min(450px, 100%);
}

.hero__lockup--compact {
  display: none;
  width: min(260px, 80%);
}

.hero__lead {
  color: var(--neutral-600);
  font-size: clamp(1.12rem, 1.7vw, 1.3rem);
  line-height: 1.7;
  margin: 27px 0 0;
  max-width: 36em;
}

.hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 38px;
}

.archive-demo {
  background: var(--white);
  border: 1px solid rgba(8, 21, 39, 0.1);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  min-width: 0;
  overflow: hidden;
  transform: rotate(0.4deg);
}

.archive-demo__bar {
  align-items: center;
  background: var(--neutral-100);
  border-bottom: 1px solid var(--neutral-200);
  color: var(--neutral-600);
  display: grid;
  font-size: 0.72rem;
  font-weight: 700;
  grid-template-columns: 1fr auto 1fr;
  letter-spacing: 0.05em;
  min-height: 47px;
  padding-inline: 18px;
  text-transform: uppercase;
}

.archive-demo__window-dots {
  display: flex;
  gap: 6px;
}

.archive-demo__window-dots i {
  background: var(--neutral-300);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.archive-demo__secure {
  color: var(--teal-ink);
  justify-self: end;
}

.archive-demo__body {
  display: grid;
  grid-template-columns: 31% 69%;
  min-height: 520px;
}

.archive-demo__sidebar {
  background: var(--navy);
  color: var(--white);
  padding: 28px 20px;
}

.archive-demo__sidebar > img {
  margin-bottom: 25px;
  width: 155px;
}

.archive-demo__archive-name {
  background: var(--teal-tint);
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 9px 10px;
}

.archive-demo__access {
  align-items: center;
  border: 1px solid rgba(138, 223, 217, 0.42);
  border-radius: 999px;
  color: var(--teal-light);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 650;
  gap: 5px;
  margin-top: 18px;
  padding: 5px 8px;
}

.archive-demo__access span {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  font-size: 0.53rem;
  height: 14px;
  justify-content: center;
  width: 14px;
}

.archive-demo__search {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 9px;
  margin-top: 25px;
  padding-top: 22px;
}

.archive-demo__search span {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  height: 30px;
}

.archive-demo__search span:first-child {
  width: 72%;
}

.archive-demo__content {
  background: var(--off-white);
  padding: 31px 28px;
}

.archive-demo__patient {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.archive-demo__patient div {
  display: grid;
  gap: 2px;
}

.archive-demo__patient strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 400;
}

.archive-demo__label,
.archive-demo__facts dt {
  color: var(--neutral-500);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.archive-demo__badge {
  background: var(--teal-tint);
  border: 1px solid rgba(30, 138, 144, 0.25);
  border-radius: 999px;
  color: var(--teal-ink);
  font-size: 0.63rem;
  font-weight: 700;
  padding: 4px 8px;
}

.archive-demo__facts {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0 18px;
  padding: 13px;
}

.archive-demo__facts div {
  min-width: 0;
}

.archive-demo__facts dd {
  color: var(--neutral-800);
  font-size: 0.73rem;
  margin: 2px 0 0;
}

.archive-demo__filters {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.archive-demo__filters span {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  color: var(--neutral-600);
  font-size: 0.6rem;
  font-weight: 650;
  padding: 4px 8px;
}

.archive-demo__filters span:first-child {
  background: var(--teal-tint);
  border-color: rgba(30, 138, 144, 0.25);
  color: var(--teal-ink);
}

.archive-demo__timeline {
  display: grid;
  gap: 9px;
}

.archive-demo__timeline article {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 7px;
  display: grid;
  gap: 10px;
  grid-template-columns: 12px 1fr;
  min-height: 74px;
  padding: 10px 12px;
}

.archive-demo__marker {
  background: var(--teal-deep);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.archive-demo__marker--dark {
  background: var(--navy);
}

.archive-demo__timeline article > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.archive-demo__timeline small {
  color: var(--neutral-500);
  font-size: 0.58rem;
  grid-column: 1 / -1;
}

.archive-demo__timeline strong {
  color: var(--neutral-800);
  font-size: 0.7rem;
  font-weight: 650;
}

.archive-demo__timeline article div > span {
  color: var(--teal-ink);
  font-size: 0.58rem;
}

.trust-band {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
}

.trust-band__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 27px;
}

.trust-band p {
  align-items: center;
  color: var(--neutral-800);
  display: flex;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 12px;
  margin: 0;
}

.trust-band p:nth-child(2) {
  justify-content: center;
}

.trust-band p:last-child {
  justify-content: flex-end;
}

.trust-band p span {
  background: var(--teal-deep);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

.trust-band p:nth-child(2) span {
  background: var(--navy);
}

.split {
  display: grid;
  gap: clamp(55px, 9vw, 120px);
  grid-template-columns: minmax(0, 0.87fr) minmax(0, 1.13fr);
}

.problem {
  background: var(--off-white);
}

.problem__content {
  max-width: 650px;
}

.plain-list {
  list-style: none;
  margin: 35px 0 0;
  padding: 0;
}

.plain-list li {
  border-top: 1px solid rgba(8, 21, 39, 0.14);
  color: var(--neutral-800);
  font-size: 1.05rem;
  padding: 18px 0 18px 27px;
  position: relative;
}

.plain-list li:last-child {
  border-bottom: 1px solid rgba(8, 21, 39, 0.14);
}

.plain-list li::before {
  background: var(--teal-deep);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 3px;
  position: absolute;
  top: 27px;
  width: 7px;
}

.solution__grid {
  align-items: center;
  display: grid;
  gap: clamp(60px, 9vw, 130px);
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
}

.solution__copy > p:last-child {
  color: var(--neutral-200);
  font-size: 1.15rem;
  line-height: 1.75;
  margin: 30px 0 0;
  max-width: 37em;
}

.collaboration-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  padding: 38px;
}

.collaboration-card img {
  border-radius: 10px;
  height: 56px;
  margin-bottom: 26px;
  width: 56px;
}

.collaboration-card__label {
  color: var(--neutral-300);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.collaboration-card h3 {
  font-family: var(--font-ui);
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.collaboration-card > p:not(.collaboration-card__label) {
  color: var(--neutral-300);
  margin-bottom: 18px;
}

.collaboration-card a {
  color: var(--teal-light);
  font-size: 0.9rem;
  font-weight: 650;
  text-underline-offset: 4px;
}

.steps {
  background: var(--white);
}

.steps__grid {
  counter-reset: steps;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 70px 0 0;
  padding: 0;
}

.step-card {
  background: var(--off-white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-card);
  min-height: 310px;
  padding: 34px 32px;
  position: relative;
}

.step-card::after {
  background: var(--neutral-200);
  content: "";
  height: 1px;
  left: calc(100% + 1px);
  position: absolute;
  top: 63px;
  width: 22px;
}

.step-card:last-child::after {
  display: none;
}

.step-card--accent {
  background: var(--teal-tint);
  border-color: rgba(30, 138, 144, 0.28);
}

.step-card__number {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1.15rem;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.step-card--accent .step-card__number {
  background: var(--teal-deep);
}

.step-card h3 {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin: 28px 0 13px;
}

.step-card p {
  color: var(--neutral-600);
  margin-bottom: 0;
}

.services {
  background: var(--off-white);
}

.product-film {
  background: var(--navy-soft);
  color: var(--neutral-200);
}

.product-film__heading {
  align-items: end;
  display: flex;
  gap: 55px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.product-film h2 {
  color: var(--white);
}

.product-film .section-lead {
  color: var(--neutral-300);
  max-width: 31em;
}

.product-film__frame {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-large);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.product-film__bar {
  align-items: center;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  justify-content: space-between;
  min-height: 66px;
  padding: 11px 22px;
}

.product-film__bar img {
  width: 162px;
}

.product-film__bar span {
  color: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-film video {
  aspect-ratio: 996 / 720;
  background: var(--off-white);
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.services__intro {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 58px;
}

.services__intro .section-lead {
  margin-bottom: 5px;
  max-width: 30em;
}

.services__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(8, 21, 39, 0.1);
  border-radius: var(--radius-card);
  min-height: 260px;
  padding: 34px;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.service-card__icon {
  align-items: center;
  background: var(--teal-tint);
  border-radius: 8px;
  color: var(--teal-ink);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.95rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.service-card h3 {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin: 25px 0 12px;
}

.service-card p {
  color: var(--neutral-600);
  margin: 0;
  max-width: 38em;
}

.outcome {
  padding-block: 75px;
}

.outcome__inner {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 78px 1fr auto;
}

.outcome__inner > img {
  border-radius: 15px;
  height: 78px;
  width: 78px;
}

.outcome h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.outcome p:last-child {
  color: var(--neutral-300);
  margin: 12px 0 0;
}

.contact {
  background:
    radial-gradient(circle at 9% 100%, rgba(47, 184, 184, 0.14), transparent 26%),
    var(--off-white);
}

.contact__grid {
  align-items: start;
  display: grid;
  gap: clamp(55px, 8vw, 105px);
  grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1.14fr);
}

.contact__copy .section-lead {
  margin-top: 27px;
}

.contact__assurances {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.contact__assurances li {
  color: var(--neutral-700);
  padding-left: 29px;
  position: relative;
}

.contact__assurances li::before {
  align-items: center;
  background: var(--teal-tint);
  border-radius: 50%;
  color: var(--teal-ink);
  content: "✓";
  display: inline-flex;
  font-size: 0.67rem;
  font-weight: 800;
  height: 19px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 3px;
  width: 19px;
}

.form-card {
  background: var(--white);
  border: 1px solid rgba(8, 21, 39, 0.1);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
  padding: 35px;
}

.form-card form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  gap: 17px;
  grid-template-columns: repeat(2, 1fr);
}

.form-card label {
  display: grid;
  gap: 7px;
}

.form-card label > span {
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-card label small {
  color: var(--neutral-500);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.form-card input,
.form-card textarea {
  background: var(--white);
  border: 1px solid var(--neutral-300);
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.95rem;
  min-height: 49px;
  padding: 12px 13px;
  width: 100%;
}

.form-card textarea {
  min-height: 112px;
  resize: vertical;
}

.form-card input:focus,
.form-card textarea:focus,
.site-footer input:focus {
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 3px rgba(47, 184, 184, 0.18);
  outline: 0;
}

.form-status {
  color: var(--neutral-600);
  font-size: 0.82rem;
  margin: -4px 0 0;
  min-height: 21px;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--teal-ink);
}

.site-footer {
  background: var(--navy);
  color: var(--neutral-300);
  padding-top: 74px;
}

.site-footer__grid {
  display: grid;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: 0.9fr 1.3fr 0.65fr;
  padding-bottom: 55px;
}

.site-footer h2 {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.site-footer__brand img {
  margin-bottom: 24px;
  width: 205px;
}

.site-footer__brand p,
.site-footer__guide > p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.site-footer__guide form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 18px;
}

.site-footer__guide input,
.site-footer__guide button {
  min-height: 44px;
}

.site-footer__guide input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px 0 0 7px;
  color: var(--white);
  min-width: 0;
  padding: 10px 12px;
}

.site-footer__guide input::placeholder {
  color: var(--neutral-400);
}

.site-footer__guide button {
  background: var(--teal);
  border: 0;
  border-radius: 0 7px 7px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 14px;
}

.site-footer__guide button:hover,
.site-footer__guide button:focus-visible {
  background: var(--teal-light);
}

.form-status--footer {
  color: var(--neutral-300);
  margin-top: 9px;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
}

.site-footer__contact a {
  color: var(--neutral-200);
  font-size: 0.92rem;
  margin-bottom: 9px;
  text-decoration-color: rgba(138, 223, 217, 0.5);
  text-underline-offset: 4px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--neutral-400);
  display: flex;
  font-size: 0.8rem;
  justify-content: space-between;
  padding-block: 23px 27px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.js .reveal--delay-short {
  transition-delay: 80ms;
}

.js .reveal--delay {
  transition-delay: 150ms;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .hero__inner {
    gap: 55px;
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  }

  .archive-demo__body {
    grid-template-columns: 29% 71%;
  }

  .archive-demo__sidebar {
    padding-inline: 15px;
  }

  .archive-demo__content {
    padding-inline: 20px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: calc(100% - 48px);
  }

  .section {
    padding-block: 82px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 65px 78px;
  }

  .hero__copy {
    margin-inline: auto;
    text-align: center;
  }

  .hero__lockup {
    margin-inline: auto;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .archive-demo {
    margin-inline: auto;
    max-width: 690px;
    transform: none;
    width: 100%;
  }

  .trust-band__grid {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .trust-band p,
  .trust-band p:nth-child(2),
  .trust-band p:last-child {
    justify-content: flex-start;
  }

  .split,
  .solution__grid,
  .contact__grid {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .solution__grid,
  .contact__grid {
    max-width: 760px;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    margin-inline: auto;
    max-width: 670px;
  }

  .step-card {
    min-height: 0;
  }

  .step-card::after {
    display: none;
  }

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

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

  .outcome__inner {
    grid-template-columns: 70px 1fr;
  }

  .outcome__inner .button {
    grid-column: 2;
    justify-self: start;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1.35fr;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.42rem, 12vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .shell {
    width: calc(100% - 34px);
  }

  .section {
    padding-block: 68px;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .site-brand {
    width: 158px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav__link {
    display: none;
  }

  .hero__inner {
    padding-block: 50px 64px;
  }

  .hero__lockup--full {
    display: none;
  }

  .hero__lockup--compact {
    display: block;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .archive-demo__bar {
    grid-template-columns: 1fr auto;
    padding-inline: 13px;
  }

  .archive-demo__window-dots {
    display: none;
  }

  .archive-demo__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .archive-demo__sidebar {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 120px 1fr;
    padding: 15px;
  }

  .archive-demo__sidebar > img {
    margin: 0;
    width: 115px;
  }

  .archive-demo__archive-name {
    grid-column: 2;
  }

  .archive-demo__access,
  .archive-demo__search {
    display: none;
  }

  .archive-demo__content {
    padding: 20px 15px;
  }

  .archive-demo__facts {
    gap: 9px;
    padding-inline: 10px;
  }

  .archive-demo__filters span:last-child {
    display: none;
  }

  .services__grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 28px;
  }

  .product-film__bar {
    min-height: 56px;
    padding-inline: 15px;
  }

  .product-film__bar img {
    width: 130px;
  }

  .collaboration-card,
  .form-card {
    padding: 27px;
  }

  .outcome__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .outcome__inner > img {
    margin-inline: auto;
  }

  .outcome__inner .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__contact {
    grid-column: auto;
  }

  .site-footer__guide form {
    grid-template-columns: 1fr;
  }

  .site-footer__guide input,
  .site-footer__guide button {
    border-radius: 7px;
  }

  .site-footer__guide button {
    margin-top: 8px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
