:root {
  --ink: #081b21;
  --ink-soft: #173239;
  --paper: #f5f1e8;
  --paper-bright: #fffdf8;
  --line: rgba(8, 27, 33, 0.16);
  --muted: #607078;
  --coral: #ff6b4a;
  --lime: #d6f35f;
  --sky: #72a7ff;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 24px 80px rgba(4, 18, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--lime);
  color: var(--ink);
}

.site-container {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(8, 27, 33, 0.12);
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-box {
  padding: 4px 7px 5px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--paper-bright);
  line-height: 1;
}

.brand-number {
  padding-left: 4px;
  color: var(--ink);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a,
.footer-column a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--coral);
}

.mobile-nav {
  display: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--lime);
}

.eyebrow--dark {
  color: var(--ink-soft);
}

.eyebrow--dark > span {
  background: var(--coral);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.68);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 85%, rgba(114, 167, 255, 0.18), transparent 31%),
    radial-gradient(circle at 88% 12%, rgba(214, 243, 95, 0.11), transparent 26%),
    var(--ink);
  color: white;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: 72px;
  padding-block: 88px 104px;
}

.hero-copy h1,
.page-hero h1,
.product-hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.8vw, 106px);
  font-weight: 760;
  letter-spacing: -0.072em;
  line-height: 0.91;
}

.hero-copy h1 em {
  display: block;
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

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

.button--primary {
  background: var(--lime);
  color: var(--ink);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: white;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.06);
}

.button--dark {
  background: var(--ink);
  color: white;
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--coral);
}

.button--light {
  background: white;
  color: var(--ink);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-proof span:not(:last-child)::after {
  padding-left: 20px;
  color: var(--coral);
  content: "\2022";
}

.hero-stage {
  position: relative;
  min-height: 545px;
  padding: 58px 44px 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 60px 110px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.hero-stage__glow {
  position: absolute;
  top: 19%;
  right: 6%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(114, 167, 255, 0.3);
  filter: blur(62px);
}

.hero-stage__header {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage__header strong {
  color: var(--lime);
}

.hero-stage__screen {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #102a31;
}

.hero-stage__screen::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  filter: blur(70px);
  opacity: 0.24;
}

.hero-stage__screen-top,
.product-window__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
}

.screen-dots {
  display: flex;
  gap: 5px;
}

.screen-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.33);
}

.hero-stage__metric {
  display: grid;
  gap: 3px;
  margin: 26px 0 18px;
}

.hero-stage__metric span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.hero-stage__metric strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.hero-stage__products {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 8px;
}

.hero-stage__products a {
  display: grid;
  grid-template-columns: 11px 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease;
}

.hero-stage__products a:hover,
.hero-stage__products a:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
}

.hero-stage__products a > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.hero-stage__products strong {
  font-size: 12px;
}

.hero-stage__products small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-stage__login {
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.floating-note {
  display: grid;
  position: absolute;
  z-index: 2;
  min-width: 150px;
  gap: 2px;
  padding: 13px 16px;
  border-radius: 15px;
  background: var(--paper-bright);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.floating-note span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-note--top {
  top: 91px;
  right: -36px;
}

.floating-note--bottom {
  bottom: 30px;
  left: -42px;
}

.statement-strip {
  overflow: hidden;
  border-bottom: 1px solid rgba(8, 27, 33, 0.12);
  background: var(--lime);
}

.statement-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 16px 24px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.statement-track i {
  color: var(--coral);
  font-style: normal;
}

.section {
  padding-block: 118px;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.leadership-intro h2,
.cta-panel h2,
.fit-panel h2,
.product-summary h2,
.workflow-copy h2,
.outcomes-section h2,
.faq-section h2,
.principles-layout h2,
.team-location h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 4.7vw, 70px);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.section-heading > p,
.section-heading--split > p,
.leadership-intro > p,
.page-hero__aside > p,
.team-hero__grid > p,
.workflow-copy > p,
.fit-panel > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.software-card {
  display: flex;
  min-height: 510px;
  grid-column: span 2;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-bright);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.software-card:nth-child(4),
.software-card:nth-child(5) {
  grid-column: span 3;
}

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

.software-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 0;
}

.software-card__index {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}

.software-card__category {
  max-width: 70%;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.software-card__visual {
  display: flex;
  position: relative;
  min-height: 230px;
  align-items: flex-end;
  justify-content: center;
  margin: 18px 16px 0;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.8), transparent 23%),
    var(--product-soft);
}

.software-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--product-accent);
  box-shadow: 0 18px 28px color-mix(in srgb, var(--product-accent) 28%, transparent);
  color: white;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.software-card__visual > .software-mark {
  position: absolute;
  z-index: 2;
  top: 23px;
  left: 23px;
}

.mini-interface {
  width: 83%;
  min-height: 170px;
  padding: 18px;
  transform: translateY(22px) rotate(-1.6deg);
  border: 1px solid rgba(8, 27, 33, 0.1);
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 60px rgba(8, 27, 33, 0.14);
}

.mini-interface__bar {
  display: block;
  width: 34%;
  height: 8px;
  border-radius: 99px;
  background: var(--product-accent);
}

.mini-interface__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 22px 0 18px;
}

.mini-interface__grid span {
  height: 48px;
  border-radius: 9px;
  background: var(--product-soft);
}

.mini-interface__line {
  display: block;
  width: 80%;
  height: 6px;
  margin-bottom: 9px;
  border-radius: 99px;
  background: rgba(8, 27, 33, 0.12);
}

.mini-interface__line--short {
  width: 54%;
}

.software-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 28px 30px;
}

.software-card__body h3 {
  margin: 0 0 11px;
  font-size: 30px;
  font-weight: 820;
  letter-spacing: -0.055em;
}

.software-card__body p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.software-card__actions {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.software-card__actions .text-link {
  margin-top: 0;
}

.software-open-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: inset 0 0 0 2px var(--product-accent);
  color: white;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.software-open-link:hover,
.software-open-link:focus-visible {
  transform: translateY(-2px);
  background: var(--product-accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--product-accent, var(--coral));
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: transform 180ms ease;
}

.text-link--large {
  margin-top: 30px;
  font-size: 15px;
}

.text-link--on-dark {
  color: white;
  text-decoration-color: var(--lime);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.section--services,
.workflow-section,
.principles-section {
  background: var(--ink);
  color: white;
}

.section-heading--light > p,
.workflow-copy > p {
  color: rgba(255, 255, 255, 0.58);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card {
  min-height: 310px;
  padding: 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card > span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(214, 243, 95, 0.1);
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
}

.service-card h3 {
  margin: 64px 0 16px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.section--leadership {
  background: #e6eef0;
}

.leadership-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 90px;
}

.leader-list {
  display: grid;
  gap: 14px;
}

.leader-card {
  display: grid;
  grid-template-columns: 42px 94px 1fr;
  align-items: center;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(8, 27, 33, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
}

.leader-card__number {
  align-self: start;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.leader-avatar {
  display: grid;
  width: 88px;
  height: 106px;
  place-items: center;
  border-radius: 44px 44px 18px 18px;
  background: var(--ink);
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.leader-card:nth-child(2) .leader-avatar {
  background: var(--coral);
  color: white;
}

.leader-card__body > p {
  margin: 0 0 4px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leader-card__body h3 {
  margin: 0 0 8px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.leader-card__body > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.leader-card__body a,
.leader-profile__body a {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 4px;
}

.cta-section {
  padding: 24px;
  background: var(--ink);
}

.cta-panel {
  display: grid;
  min-height: 440px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding: 72px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 89% 20%, rgba(214, 243, 95, 0.23), transparent 25%),
    linear-gradient(135deg, #1f50c4, #3e6ee6 54%, #2754c8);
  color: white;
}

.cta-panel h2 {
  max-width: 900px;
}

.site-footer {
  padding: 86px 0 28px;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 70px;
  padding-bottom: 72px;
}

.brand--footer .brand-box {
  background: white;
  color: var(--ink);
}

.brand--footer .brand-number {
  color: white;
}

.footer-statement {
  max-width: 390px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--lime);
}

.footer-label {
  margin: 0 0 10px;
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Shared inner-page hero */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 96px 110px;
  background: var(--ink);
  color: white;
}

.page-hero::after {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 440px;
  height: 440px;
  border: 100px solid rgba(214, 243, 95, 0.08);
  border-radius: 50%;
  content: "";
}

.page-hero__grid,
.team-hero__grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: 1.28fr 0.72fr;
  align-items: end;
  gap: 90px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(52px, 6.6vw, 92px);
}

.page-hero__aside {
  padding-bottom: 8px;
}

.page-hero__aside > p,
.team-hero__grid > p {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero__aside .text-link {
  margin-top: 28px;
}

.catalogue-section {
  padding-top: 70px;
}

.catalogue-intro,
.leader-profiles__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.catalogue-intro p,
.leader-profiles__intro p {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalogue-intro span,
.leader-profiles__intro span {
  max-width: 580px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.fit-section {
  padding: 0 24px 110px;
}

.fit-panel {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 80px;
  padding: 70px;
  overflow: hidden;
  border-radius: 38px;
  background: #dfe8ea;
}

.fit-panel__mark {
  position: absolute;
  top: -58px;
  right: 5%;
  color: rgba(8, 27, 33, 0.06);
  font-family: Georgia, serif;
  font-size: 280px;
  line-height: 1;
}

.fit-panel > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

/* Product detail */

.product-hero {
  position: relative;
  overflow: hidden;
  padding-block: 34px 104px;
  background:
    radial-gradient(circle at 82% 16%, color-mix(in srgb, var(--product-accent) 30%, transparent), transparent 25%),
    var(--ink);
  color: white;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 86px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 750;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: white;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 85px;
}

.eyebrow--product {
  color: var(--product-soft);
}

.eyebrow--product > span {
  background: var(--product-accent);
}

.product-hero h1 {
  font-size: clamp(82px, 10vw, 148px);
}

.product-hero__tagline {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1.55;
}

.button--product {
  background: var(--product-accent);
  color: white;
}

.button--product:hover,
.button--product:focus-visible {
  background: white;
  color: var(--ink);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
  border-color: white;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.3);
  transform: rotate(1.5deg);
}

.product-window__topbar {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-window__body {
  display: grid;
  min-height: 410px;
  grid-template-columns: 94px 1fr;
}

.product-window__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
}

.software-mark--large {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  font-size: 19px;
}

.product-window__sidebar i {
  display: block;
  width: 34px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.13);
}

.product-window__content {
  padding: 46px 38px;
}

.product-window__label {
  color: var(--product-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-window__content > strong {
  display: block;
  margin-top: 5px;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
}

.product-window__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.product-window__metrics span {
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.product-window__chart {
  display: flex;
  height: 140px;
  align-items: flex-end;
  gap: 12px;
  margin-top: 22px;
  padding: 18px 18px 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.product-window__chart i {
  flex: 1;
  height: 38%;
  border-radius: 7px 7px 0 0;
  background: var(--product-accent);
  opacity: 0.5;
}

.product-window__chart i:nth-child(2) {
  height: 68%;
  opacity: 0.7;
}

.product-window__chart i:nth-child(3) {
  height: 48%;
}

.product-window__chart i:nth-child(4) {
  height: 88%;
  opacity: 0.88;
}

.product-window__chart i:nth-child(5) {
  height: 72%;
}

.product-summary {
  padding-block: 100px;
  background: var(--product-soft);
}

.product-summary__grid {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 70px;
}

.section-kicker {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-summary h2 {
  max-width: 990px;
  font-size: clamp(34px, 4.2vw, 59px);
  line-height: 1.07;
}

.product-summary__grid > div > p {
  max-width: 790px;
  margin: 34px 0 0;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  font-size: 18px;
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-card {
  min-height: 260px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-card > span {
  color: var(--product-accent);
  font-size: 11px;
  font-weight: 900;
}

.capability-card h3 {
  margin: 62px 0 13px;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.capability-card p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.workflow-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.workflow-list span {
  color: var(--product-accent);
  font-size: 11px;
  font-weight: 900;
}

.workflow-list p {
  margin: 0;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.outcomes-section {
  background: var(--paper-bright);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 100px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}

.tag-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.outcome-card {
  padding: 42px;
  border-radius: 32px;
  background: var(--product-soft);
}

.outcome-card > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outcome-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 12px;
  font-size: 16px;
  font-weight: 650;
}

.outcome-card li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--product-accent);
  color: white;
  font-size: 11px;
}

.faq-section {
  padding-top: 0;
  background: var(--paper-bright);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 0;
  color: var(--product-accent);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 0 28px;
  color: var(--muted);
  line-height: 1.65;
}

.product-cta {
  padding: 26px;
  background: var(--paper-bright);
}

.product-cta__inner {
  display: grid;
  min-height: 380px;
  grid-template-columns: 82px 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 64px;
  border-radius: 38px;
  background: var(--ink);
  color: white;
}

.product-cta__inner > div p {
  margin: 0 0 10px;
  color: var(--product-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-cta__inner h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(37px, 4.1vw, 60px);
  letter-spacing: -0.055em;
  line-height: 1;
}

/* Leadership page */

.team-hero__grid {
  align-items: end;
}

.leader-profiles {
  background: var(--paper-bright);
}

.leader-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.leader-profile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--paper);
}

.leader-profile__visual {
  display: grid;
  position: relative;
  min-height: 330px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(114, 167, 255, 0.25), transparent 58%),
    var(--ink);
}

.leader-profile:nth-child(2) .leader-profile__visual {
  background:
    linear-gradient(135deg, rgba(255, 107, 74, 0.36), transparent 62%),
    var(--ink);
}

.leader-profile__visual::before,
.leader-profile__visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.leader-profile__visual::before {
  width: 270px;
  height: 270px;
}

.leader-profile__visual::after {
  width: 390px;
  height: 390px;
}

.leader-profile__index {
  position: absolute;
  top: 25px;
  left: 25px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 900;
}

.leader-profile__initials {
  position: relative;
  z-index: 1;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 88px;
  letter-spacing: -0.08em;
}

.leader-profile:nth-child(2) .leader-profile__initials {
  color: var(--coral);
}

.leader-profile__body {
  padding: 36px;
}

.leader-profile__body > p {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leader-profile__body h2 {
  margin: 0 0 17px;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.leader-profile__body > span {
  display: block;
  color: var(--muted);
  line-height: 1.66;
}

.principles-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

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

.principles-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.principles-list article > span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.principles-list h3 {
  margin: 0 0 9px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.principles-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.team-location {
  padding: 26px;
  background: var(--paper-bright);
}

.team-location__inner {
  display: grid;
  min-height: 400px;
  grid-template-columns: 160px 1fr auto;
  align-items: end;
  gap: 50px;
  padding: 64px;
  border-radius: 38px;
  background: var(--lime);
}

.location-mark {
  display: grid;
  width: 132px;
  height: 160px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 66px 66px 22px 22px;
  font-family: Georgia, serif;
  font-size: 42px;
}

/* Contact */

.contact-hero {
  position: relative;
  overflow: hidden;
  padding-block: 105px 120px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 107, 74, 0.25), transparent 23%),
    var(--ink);
  color: white;
}

.contact-hero::after {
  position: absolute;
  right: -130px;
  bottom: -230px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.025),
    0 0 0 144px rgba(255, 255, 255, 0.018);
  content: "";
}

.contact-hero__grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: 1.22fr 0.78fr;
  align-items: end;
  gap: 90px;
}

.contact-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(55px, 7.2vw, 100px);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.contact-hero__grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.65;
}

.contact-section {
  padding-block: 110px;
  background: #dfe8ea;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: 70px;
}

.contact-details {
  position: sticky;
  top: 115px;
}

.contact-details h2 {
  max-width: 510px;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 730;
  letter-spacing: -0.06em;
  line-height: 1;
}

.contact-details > p:not(.eyebrow) {
  max-width: 520px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-methods {
  display: grid;
  gap: 9px;
  margin-top: 36px;
}

.contact-methods a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  padding: 18px 20px;
  border: 1px solid rgba(8, 27, 33, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  transform: translateX(4px);
  background: white;
}

.contact-methods span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 14px;
}

.contact-methods i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--coral);
  font-style: normal;
  font-weight: 900;
}

.contact-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(8, 27, 33, 0.12);
}

.contact-note > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 13px;
}

.contact-note p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.contact-form-card {
  padding: 46px;
  border: 1px solid rgba(8, 27, 33, 0.12);
  border-radius: 34px;
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.contact-form-card__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-form-card__heading span {
  font-size: 21px;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.contact-form-card__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.contact-form-card label {
  color: var(--ink-soft);
}

.contact-form-card input,
.contact-form-card textarea {
  border-color: rgba(8, 27, 33, 0.18);
  background: #fffefb;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--coral);
  --tw-ring-color: rgba(255, 107, 74, 0.14);
}

.contact-form-card button[type="submit"] {
  background: var(--ink);
}

.contact-form-card button[type="submit"]:hover,
.contact-form-card button[type="submit"]:focus-visible {
  background: var(--coral);
}

.contact-privacy {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.contact-thanks {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 80px 24px;
  background: var(--paper-bright);
  text-align: center;
}

.contact-thanks > div {
  max-width: 760px;
}

.contact-thanks > div > span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: var(--lime);
  font-size: 28px;
  font-weight: 900;
}

.contact-thanks .eyebrow {
  justify-content: center;
}

.contact-thanks h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.contact-thanks > div > p:not(.eyebrow) {
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 18px;
}

/* Not found and redirects */

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 80px 24px;
  background: var(--ink);
  color: white;
  text-align: center;
}

.not-found h1 {
  margin: 0 0 18px;
  font-size: clamp(70px, 12vw, 160px);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.not-found p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 7.4vw, 82px);
  }

  .floating-note--top {
    right: -16px;
  }

  .floating-note--bottom {
    left: -16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leadership-layout,
  .product-hero__grid,
  .outcomes-grid,
  .principles-layout {
    gap: 54px;
  }

  .product-hero__grid {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .product-hero h1 {
    font-size: clamp(70px, 9vw, 110px);
  }

  .team-location__inner,
  .product-cta__inner {
    grid-template-columns: 100px 1fr;
  }

  .team-location__inner > .button,
  .product-cta__inner > .button {
    grid-column: 2;
    justify-self: start;
  }

  .location-mark {
    width: 96px;
    height: 124px;
  }
}

@media (max-width: 820px) {
  .site-container {
    width: min(100% - 32px, 1240px);
  }

  .header-inner {
    min-height: 70px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: relative;
    margin-left: auto;
  }

  .mobile-nav summary {
    padding: 9px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 850;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    display: grid;
    position: absolute;
    top: 48px;
    right: 0;
    width: min(76vw, 280px);
    gap: 5px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper-bright);
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    padding: 12px 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 750;
  }

  .mobile-nav nav a:hover,
  .mobile-nav nav a:focus-visible {
    background: var(--paper);
  }

  .hero-grid,
  .section-heading--split,
  .leadership-layout,
  .page-hero__grid,
  .team-hero__grid,
  .fit-panel,
  .product-hero__grid,
  .product-summary__grid,
  .workflow-grid,
  .outcomes-grid,
  .faq-grid,
  .principles-layout,
  .contact-hero__grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 70px;
    padding-block: 76px 90px;
  }

  .hero-copy h1 {
    font-size: clamp(55px, 13vw, 92px);
  }

  .hero-stage {
    width: min(100%, 580px);
    min-height: 510px;
    margin-inline: auto;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading--split {
    align-items: start;
    gap: 28px;
  }

  .software-card,
  .software-card:nth-child(4),
  .software-card:nth-child(5) {
    grid-column: span 3;
  }

  .leader-card {
    grid-template-columns: 34px 80px 1fr;
  }

  .leader-avatar {
    width: 76px;
    height: 94px;
  }

  .cta-panel {
    min-height: 410px;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 48px;
  }

  .cta-panel .button {
    justify-self: start;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .page-hero {
    padding-block: 76px 90px;
  }

  .page-hero__grid,
  .team-hero__grid {
    gap: 32px;
  }

  .fit-panel {
    gap: 35px;
    padding: 50px;
  }

  .breadcrumbs {
    margin-bottom: 58px;
  }

  .product-hero__grid {
    gap: 60px;
  }

  .product-window {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .product-summary__grid,
  .workflow-grid,
  .faq-grid {
    gap: 38px;
  }

  .outcomes-grid,
  .principles-layout {
    gap: 56px;
  }

  .leader-profile-grid {
    grid-template-columns: 1fr;
  }

  .team-location__inner,
  .product-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 48px;
  }

  .contact-layout {
    gap: 48px;
  }

  .contact-details {
    position: static;
  }

  .team-location__inner > .button,
  .product-cta__inner > .button {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .site-container {
    width: min(100% - 24px, 1240px);
  }

  .hero-grid {
    padding-top: 60px;
  }

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

  .software-open-link {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(50px, 16vw, 74px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .button-row {
    display: grid;
  }

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

  .hero-proof {
    gap: 8px 13px;
  }

  .hero-proof span:not(:last-child)::after {
    padding-left: 13px;
  }

  .hero-stage {
    min-height: 450px;
    padding: 44px 12px 18px;
    border-radius: 28px;
  }

  .hero-stage__screen {
    min-height: 360px;
  }

  .hero-stage__header {
    padding-inline: 8px;
  }

  .hero-stage__products a {
    grid-template-columns: 10px 68px minmax(0, 1fr) auto;
  }

  .floating-note {
    display: none;
  }

  .statement-track {
    justify-content: flex-start;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading h2,
  .leadership-intro h2,
  .fit-panel h2,
  .principles-layout h2,
  .team-location h2 {
    font-size: 39px;
  }

  .software-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .software-card,
  .software-card:nth-child(4),
  .software-card:nth-child(5) {
    min-height: 480px;
    grid-column: 1;
  }

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

  .service-card {
    min-height: 250px;
  }

  .service-card h3 {
    margin-top: 42px;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .leader-card__number {
    position: absolute;
  }

  .leader-avatar {
    width: 80px;
    height: 94px;
  }

  .cta-section,
  .product-cta,
  .team-location,
  .fit-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .cta-panel,
  .fit-panel,
  .product-cta__inner,
  .team-location__inner {
    padding: 34px 26px;
    border-radius: 28px;
  }

  .cta-panel h2,
  .product-cta__inner h2 {
    font-size: 38px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .page-hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .catalogue-intro,
  .leader-profiles__intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalogue-intro span,
  .leader-profiles__intro span {
    text-align: left;
  }

  .product-hero {
    padding-bottom: 76px;
  }

  .product-hero h1 {
    font-size: clamp(66px, 22vw, 100px);
  }

  .product-hero__tagline {
    font-size: 18px;
  }

  .product-window__body {
    min-height: 330px;
    grid-template-columns: 70px 1fr;
  }

  .product-window__sidebar {
    padding: 18px 10px;
  }

  .software-mark--large {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 15px;
  }

  .product-window__content {
    padding: 34px 20px;
  }

  .product-window__content > strong {
    font-size: 23px;
  }

  .product-window__metrics span:nth-child(3) {
    display: none;
  }

  .product-window__metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-summary {
    padding-block: 72px;
  }

  .product-summary h2 {
    font-size: 34px;
  }

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

  .capability-card {
    min-height: 230px;
  }

  .workflow-list p {
    font-size: 17px;
  }

  .outcome-card {
    padding: 30px 24px;
  }

  .leader-profile__visual {
    min-height: 250px;
  }

  .leader-profile__initials {
    font-size: 68px;
  }

  .leader-profile__body {
    padding: 28px 24px;
  }

  .contact-hero {
    padding-block: 76px 88px;
  }

  .contact-hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .contact-form-card {
    padding: 30px 20px;
    border-radius: 26px;
  }

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

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

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

/* ASP.NET Web Forms contact fields */

.contact-form {
  display: grid;
  gap: 24px;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.contact-field label span {
  color: var(--coral);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(8, 27, 33, 0.18);
  border-radius: 15px;
  outline: none;
  background: #fffefb;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-field textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.12);
}

.contact-field__hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-form__actions button {
  border: 0;
  cursor: pointer;
}

.contact-form__actions p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

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

.aspx-notice {
  padding: 14px 16px;
  border: 1px solid rgba(8, 27, 33, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 560px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form__actions .button {
    width: 100%;
  }
}

/* Free HTML tools */

.free-tools-section {
  background: #dfe8ea;
}

.free-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.free-tool-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid rgba(8, 27, 33, 0.13);
  border-radius: 24px;
  background: var(--paper-bright);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.free-tool-card:hover,
.free-tool-card:focus-visible {
  transform: translateY(-5px);
  border-color: var(--coral);
  box-shadow: var(--shadow);
}

.free-tool-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 15px;
  background: var(--ink);
  color: var(--lime);
  font-size: 24px;
  line-height: 1;
}

.free-tool-card h3 {
  margin: 0 0 7px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.free-tool-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.free-tool-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-size: 12px;
}

.free-tools-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 980px) {
  .free-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .free-tools-grid {
    grid-template-columns: 1fr;
  }

  .free-tool-card {
    min-height: 190px;
  }
}
