@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/InterVariable-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #0b1d2d;
  --ink-soft: #506170;
  --navy: #06172b;
  --navy-light: #0b2747;
  --blue: #2266bb;
  --cyan: #01aad8;
  --lime: #a3d900;
  --orange: #fb9d11;
  --paper: #f5f7f8;
  --white: #ffffff;
  --line: #dce3e7;
  --container: min(1180px, calc(100vw - 48px));
  --radius: 18px;
  --shadow: 0 24px 60px rgba(7, 26, 45, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(11, 29, 45, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(8, 29, 48, 0.08);
}

.header-inner {
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.brand img {
  width: 184px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  color: #445462;
  font-size: 0.91rem;
  font-weight: 570;
  white-space: nowrap;
}

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

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease;
}

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

.button--small {
  min-height: 43px;
  padding-inline: 19px;
  font-size: 0.86rem;
}

.button--dark {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 9px 22px rgba(6, 23, 43, 0.15);
}

.button--dark:hover {
  background: var(--navy-light);
}

.button--lime {
  color: #132800;
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(163, 217, 0, 0.2);
}

.button--lime:hover {
  background: #b2e91b;
  box-shadow: 0 18px 38px rgba(163, 217, 0, 0.28);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(11, 29, 45, 0.36);
  font-weight: 680;
  transition: gap 170ms ease, border-color 170ms ease;
}

.text-link:hover {
  gap: 14px;
  border-color: currentColor;
}

.text-link--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.menu-button {
  display: none;
  padding: 0;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.menu-button__lines {
  width: 25px;
  height: 16px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.menu-button__lines i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-button__lines i:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__lines i:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 250px;
  background: linear-gradient(to bottom, transparent, rgba(2, 12, 24, 0.54));
  pointer-events: none;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 77% 18%, rgba(163, 217, 0, 0.22), transparent 22%),
    radial-gradient(circle at 65% 55%, rgba(1, 170, 216, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(4, 18, 36, 0.96) 0%, rgba(4, 18, 36, 0.83) 48%, rgba(4, 18, 36, 0.58) 100%),
    url("./assets/images/brand-background.webp") 68% center / cover no-repeat;
  transform: scale(1.02);
}

.hero__inner {
  min-height: 790px;
  padding: 88px 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  grid-template-rows: 1fr auto;
  gap: 60px clamp(36px, 5.5vw, 82px);
  align-items: center;
}

.hero__copy {
  padding-bottom: 22px;
}

.eyebrow {
  margin: 0 0 21px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 760;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.hero h1,
.section-heading h2,
.online-copy h2,
.contact-panel h2 {
  margin: 0;
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 5.7vw, 6.2rem);
}

.hero__lead {
  max-width: 58ch;
  margin: 27px 0 0;
  color: rgba(237, 245, 252, 0.78);
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.66;
}

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

.hero-product {
  position: relative;
  width: min(710px, 56vw);
  justify-self: start;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: #e9edf0;
  box-shadow: 0 38px 90px rgba(0, 5, 15, 0.48);
  transform: perspective(1200px) rotateY(-2.4deg) rotateX(1deg);
  transform-origin: center left;
}

.browser-frame__bar {
  height: 39px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #68737b;
  background: #f8fafb;
  border-bottom: 1px solid #dce2e6;
}

.browser-frame__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8d0d6;
}

.browser-frame__bar span:first-child {
  background: var(--orange);
}

.browser-frame__bar small {
  margin-left: 9px;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.browser-frame > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6;
  object-fit: contain;
  object-position: top;
}

.live-badge {
  position: absolute;
  right: -18px;
  bottom: -20px;
  padding: 12px 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 700;
}

.live-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(163, 217, 0, 0.17);
}

.hero__proof {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 29px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__proof > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hero__proof dt {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero__proof dd {
  margin: 0;
  color: rgba(237, 245, 252, 0.64);
  font-size: 0.86rem;
}

.trust-strip {
  color: #314351;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-strip__inner {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.trust-strip p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 620;
}

.trust-strip ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  list-style: none;
}

.trust-strip li {
  padding: 6px 10px;
  color: #6a7781;
  background: #f1f4f5;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.07em;
}

.section {
  padding: clamp(96px, 10vw, 150px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.section-heading h2,
.online-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 4.7vw, 5.1rem);
}

.intro-copy {
  padding-top: 35px;
  max-width: 650px;
}

.intro-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.intro-copy .intro-copy__lead {
  color: var(--ink);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.intro-copy p + p {
  margin-top: 24px;
}

.process {
  position: relative;
  margin-top: clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #bfcbd1;
}

.process-step {
  position: relative;
  min-height: 285px;
  padding: 28px 25px 20px 0;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--paper);
}

.process-step > span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 53px 0 12px;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.process-step p {
  max-width: 24ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.section--dark {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 4%, rgba(1, 170, 216, 0.13), transparent 24%),
    var(--navy);
}

.section-heading--split {
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.section-heading--split h2 {
  max-width: 13ch;
}

.section-heading--split > p {
  max-width: 46ch;
  margin: 0 0 8px;
  color: rgba(232, 241, 248, 0.68);
  font-size: 1.02rem;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-row {
  padding: 46px 0;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-row__title {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}

.service-row__title span {
  padding-top: 6px;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 770;
  letter-spacing: 0.13em;
}

.service-row h3 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.service-row__details > p {
  max-width: 55ch;
  margin: 0 0 25px;
  color: rgba(232, 241, 248, 0.76);
  font-size: 1.02rem;
}

.service-row ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  list-style: none;
}

.service-row li {
  position: relative;
  padding-left: 20px;
  color: rgba(232, 241, 248, 0.63);
  font-size: 0.88rem;
}

.service-row li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

.section--online {
  overflow: hidden;
  background: #edf2f4;
}

.online-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.73fr) minmax(0, 1.27fr);
  gap: clamp(56px, 8vw, 115px);
  align-items: center;
}

.online-copy {
  position: relative;
  z-index: 2;
}

.online-copy h2 {
  max-width: 10ch;
}

.online-copy > p:not(.eyebrow) {
  max-width: 51ch;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

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

.check-list li {
  position: relative;
  padding: 13px 0 13px 29px;
  border-bottom: 1px solid #d5dfe3;
  font-size: 0.9rem;
  font-weight: 580;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 2px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.online-showcase {
  position: relative;
  min-height: 710px;
}

.product-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top;
}

.product-shot figcaption {
  height: 54px;
  padding: 0 13px 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--white);
}

.product-shot figcaption span {
  font-size: 0.77rem;
  font-weight: 750;
}

.product-shot figcaption small {
  color: #77858e;
  font-size: 0.66rem;
}

.product-shot--wide {
  top: 6px;
  left: 3%;
  z-index: 1;
  width: 84%;
  transform: rotate(-1.3deg);
}

.product-shot--wide img {
  aspect-ratio: 1.6;
}

.product-shot--secondary {
  right: -13%;
  bottom: 4px;
  z-index: 2;
  width: 67%;
  transform: rotate(2.4deg);
}

.product-shot--secondary img {
  aspect-ratio: 1.6;
}

.product-shot--phone {
  left: 0;
  bottom: 10px;
  z-index: 3;
  width: 31%;
  border-width: 7px;
  border-radius: 27px;
  transform: rotate(-3deg);
}

.product-shot--phone img {
  aspect-ratio: 9 / 16;
}

.product-shot--phone figcaption {
  display: block;
  height: auto;
  padding: 10px 8px 7px;
  text-align: center;
  line-height: 1.25;
}

.product-shot--phone figcaption small {
  display: block;
  margin-top: 2px;
}

.confidence-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 118px);
}

.confidence-grid .section-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
}

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

.responsibility-card {
  min-height: 420px;
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.responsibility-card--accent {
  background: linear-gradient(155deg, #e7f4fb, #f9fcfd 68%);
  border-color: rgba(34, 102, 187, 0.15);
}

.responsibility-card__label {
  margin: 0 0 54px;
  color: var(--blue);
  font-size: 0.71rem;
  font-weight: 770;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.responsibility-card h3 {
  margin: 0 0 28px;
  font-size: 1.4rem;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.responsibility-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsibility-card li {
  padding: 10px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.87rem;
}

.responsibility-card li:last-child {
  border-bottom: 0;
}

.contact-section {
  padding: 0 0 38px;
  background: var(--paper);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: clamp(46px, 6vw, 78px);
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
  align-items: end;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(163, 217, 0, 0.2), transparent 24%),
    linear-gradient(120deg, rgba(3, 19, 37, 0.97), rgba(3, 22, 43, 0.77)),
    url("./assets/images/brand-background.webp") center / cover no-repeat;
  border-radius: 22px;
}

.contact-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 37%;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--orange));
}

.contact-panel h2 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 4.9vw, 5rem);
}

.contact-panel__aside > p {
  margin: 0;
  color: rgba(236, 244, 249, 0.72);
  font-size: 1rem;
}

.contact-panel__actions {
  margin-top: 29px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.site-footer {
  padding: 60px 0 42px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}

.footer-grid img {
  width: 162px;
  height: auto;
}

.footer-grid p {
  margin: 14px 0 0;
  color: #6e7b84;
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #687680;
  font-size: 0.74rem;
}

.footer-links {
  text-align: right;
}

.footer-links a:hover {
  color: var(--blue);
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1040px) {
  :root {
    --container: min(100% - 40px, 900px);
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .hero__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px 34px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 7vw, 5rem);
  }

  .hero-product {
    width: 54vw;
  }

  .hero__proof > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .process {
    grid-template-columns: repeat(3, 1fr);
    border-top: 0;
  }

  .process-step {
    min-height: 255px;
    border-top: 1px solid #bfcbd1;
  }

  .process-step:nth-child(3) {
    border-right: 0;
  }

  .service-row {
    gap: 34px;
  }

  .online-grid,
  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .online-copy {
    max-width: 620px;
  }

  .online-copy h2 {
    max-width: 12ch;
  }

  .online-showcase {
    width: min(760px, 100%);
    min-height: 680px;
    margin-inline: auto;
  }

  .confidence-grid .section-heading h2 {
    max-width: 14ch;
  }

  .contact-panel {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }
}

@media (max-width: 780px) {
  :root {
    --container: calc(100% - 32px);
  }

  .site-header {
    height: 68px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .brand img {
    width: 155px;
  }

  .header-contact {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 45px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 13px 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 1.3rem;
  }

  .site-nav a::after {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    padding: 75px 0 32px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 54px;
  }

  .hero__copy {
    padding: 0;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .hero__lead {
    max-width: 52ch;
  }

  .hero-product {
    width: 100%;
  }

  .browser-frame {
    transform: none;
  }

  .live-badge {
    right: 12px;
  }

  .hero__proof {
    grid-column: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .hero__proof dt {
    font-size: 1.38rem;
  }

  .hero__proof dd {
    font-size: 0.73rem;
    line-height: 1.4;
  }

  .trust-strip__inner {
    min-height: 110px;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .trust-strip ul {
    max-width: 100%;
    overflow-x: auto;
  }

  .section {
    padding: 92px 0;
  }

  .intro-grid,
  .section-heading--split,
  .service-row,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 24px;
  }

  .section-heading h2,
  .online-copy h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .process-step {
    min-height: auto;
    padding: 27px 0 32px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 5px 14px;
    border-right: 0;
  }

  .process-step::before {
    display: none;
  }

  .process-step > span {
    grid-row: 1 / 3;
    padding-top: 6px;
  }

  .process-step h3 {
    margin: 0;
  }

  .process-step p {
    max-width: 42ch;
  }

  .section-heading--split {
    gap: 30px;
  }

  .service-row {
    gap: 28px;
  }

  .service-row__title {
    grid-template-columns: 38px 1fr;
  }

  .service-row ul {
    grid-template-columns: 1fr;
  }

  .online-showcase {
    min-height: 600px;
  }

  .product-shot--wide {
    width: 94%;
    left: 0;
  }

  .product-shot--secondary {
    width: 74%;
    right: -8%;
  }

  .product-shot--phone {
    width: 34%;
  }

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

  .responsibility-card {
    min-height: auto;
  }

  .contact-panel {
    min-height: 540px;
    gap: 60px;
    border-radius: 18px;
  }

  .contact-panel__aside {
    align-self: end;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    gap: 36px 30px;
  }

  .footer-links {
    grid-column: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero__proof > div {
    display: grid;
    grid-template-columns: 66px 1fr;
    align-items: baseline;
    gap: 10px;
  }

  .browser-frame__bar {
    height: 32px;
  }

  .live-badge {
    bottom: -18px;
    font-size: 0.72rem;
  }

  .online-showcase {
    min-height: 485px;
  }

  .product-shot {
    border-width: 5px;
    border-radius: 11px;
  }

  .product-shot figcaption {
    height: 42px;
  }

  .product-shot figcaption small {
    display: none;
  }

  .product-shot--wide {
    width: 100%;
  }

  .product-shot--secondary {
    right: -3%;
    width: 78%;
  }

  .product-shot--phone {
    left: -2%;
    width: 36%;
    border-radius: 18px;
  }

  .product-shot--phone figcaption {
    height: auto;
  }

  .contact-panel {
    width: calc(100% - 20px);
    padding: 42px 26px;
  }

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

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

  .footer-links {
    grid-column: auto;
  }
}

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

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

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