:root {
  --plum: #86227c;
  --plum-bright: #a82d9d;
  --plum-deep: #45113f;
  --plum-soft: #f2e8f0;
  --cyan: #63b8c6;
  --cyan-soft: #e7f5f7;
  --ink: #131419;
  --ink-soft: #252730;
  --paper: #f7f5f1;
  --paper-deep: #efede8;
  --white: #fff;
  --text: #202127;
  --muted: #666a73;
  --line: #dedbe0;
  --max-width: 1240px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow-sm: 0 16px 40px rgba(33, 20, 34, .07);
  --shadow-lg: 0 32px 90px rgba(33, 20, 34, .14);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 6px;
}

::selection {
  color: var(--white);
  background: var(--plum);
}

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

h1,
h2,
h3 {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 4.2vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
}

h2 em,
h1 em {
  color: var(--plum);
  font-style: normal;
}

.container {
  width: min(var(--max-width), calc(100% - 80px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 126px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--plum);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.eyebrow-light {
  color: #df92d7;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding-top: 22px;
  transition: padding .35s var(--ease);
}

.site-header.is-scrolled {
  padding-top: 10px;
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  min-height: 84px;
  padding: 12px 14px 12px 24px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(72, 45, 71, .11);
  border-radius: 22px;
  box-shadow: 0 15px 50px rgba(47, 33, 48, .08);
  backdrop-filter: blur(18px);
  transition: min-height .35s var(--ease), box-shadow .35s ease;
}

.is-scrolled .nav-shell {
  min-height: 72px;
  box-shadow: 0 14px 42px rgba(35, 22, 35, .12);
}

.brand {
  position: relative;
  z-index: 2;
  width: 150px;
}

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

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(26px, 4vw, 58px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: .88rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding-block: 12px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--plum);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 10px;
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.2;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .3s var(--ease), box-shadow .3s ease;
}

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

.button-icon {
  font-size: 1.18rem;
  line-height: 1;
  transition: transform .25s var(--ease);
}

.button:hover .button-icon {
  transform: translate(3px, -3px);
}

.button:hover .button-icon-down {
  transform: translateY(4px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(19, 20, 25, .16);
}

.button-dark:hover {
  background: var(--plum);
  box-shadow: 0 16px 30px rgba(134, 34, 124, .22);
}

.nav-cta {
  min-height: 54px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 890px;
  overflow: hidden;
  padding: 170px 0 86px;
  background:
    radial-gradient(circle at 77% 40%, rgba(99, 184, 198, .07), transparent 24%),
    linear-gradient(180deg, #faf9f6 0%, var(--paper) 100%);
}

.hero-ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.hero-ambient-one {
  top: -270px;
  left: -260px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(134, 34, 124, .13), transparent 68%);
}

.hero-ambient-two {
  right: -320px;
  bottom: -460px;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(134, 34, 124, .08);
  box-shadow: 0 0 0 70px rgba(134, 34, 124, .02), 0 0 0 140px rgba(134, 34, 124, .015);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(46px, 6vw, 88px);
}

.hero-copy {
  min-width: 0;
  padding: 44px 0 0;
}

.hero h1 {
  max-width: 710px;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 720;
  line-height: .95;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 36px;
  color: #555963;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.67;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--plum-bright));
  box-shadow: 0 18px 42px rgba(134, 34, 124, .24);
}

.button-primary:hover {
  box-shadow: 0 22px 52px rgba(134, 34, 124, .33);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .35);
  border-color: #d2cfd3;
}

.button-ghost:hover {
  background: var(--white);
  border-color: #bdb8be;
  box-shadow: var(--shadow-sm);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 31px 0 0;
  color: #6c7079;
  font-size: .82rem;
  font-weight: 600;
}

.hero-note span {
  display: grid;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--plum);
  background: var(--plum-soft);
  border-radius: 50%;
}

.hero-references {
  max-width: 640px;
  margin-top: 25px;
  padding-top: 14px;
  border-top: 1px solid rgba(134, 34, 124, .12);
}

.reference-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: #8a7487;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.reference-kicker::after {
  height: 1px;
  flex: 1;
  content: "";
  background: linear-gradient(90deg, rgba(134, 34, 124, .12), transparent);
}

.reference-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.reference-track {
  display: flex;
  width: max-content;
  animation: reference-scroll 32s linear infinite;
  will-change: transform;
}

.reference-marquee:hover .reference-track {
  animation-play-state: paused;
}

.reference-set {
  display: flex;
  flex: none;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.reference-logo {
  display: grid;
  width: 112px;
  height: 38px;
  flex: none;
  place-items: center;
  filter: grayscale(1) saturate(0) contrast(.92);
  opacity: .5;
  transition: filter .25s ease, opacity .25s ease, transform .25s var(--ease);
}

.reference-logo:hover {
  filter: none;
  opacity: .92;
  transform: translateY(-2px);
}

.reference-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 31px;
}

.reference-logo-tall img {
  max-width: 82px;
  max-height: 38px;
}

.secure-core {
  position: relative;
  min-height: 615px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(99, 184, 198, .21), transparent 28%),
    radial-gradient(circle at 16% 88%, rgba(134, 34, 124, .53), transparent 37%),
    #111318;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 40px;
  box-shadow: 0 38px 92px rgba(25, 18, 26, .25);
  isolation: isolate;
  transform: translate3d(0, calc(var(--hero-scroll, 0) * 1px), 0);
}

.secure-core::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, .05), transparent 30% 65%, rgba(134, 34, 124, .1));
}

.core-grid {
  position: absolute;
  right: -60px;
  bottom: -100px;
  left: -60px;
  height: 390px;
  opacity: .2;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 80%, transparent);
  transform: perspective(700px) rotateX(58deg) scale(1.3);
  transform-origin: bottom center;
}

.core-header {
  position: absolute;
  top: 28px;
  right: 28px;
  left: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .65);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.core-status {
  display: flex;
  align-items: center;
  gap: 9px;
}

.core-status i {
  width: 8px;
  height: 8px;
  background: #6dd1b1;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(109, 209, 177, .09), 0 0 16px rgba(109, 209, 177, .65);
  animation: status-pulse 2.5s ease-in-out infinite;
}

.core-orbit {
  position: absolute;
  top: 194px;
  left: 50%;
  width: 420px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-9deg);
}

.orbit-two {
  top: 160px;
  width: 320px;
  height: 255px;
  opacity: .55;
  transform: translateX(-50%) rotate(64deg);
}

.core-orbit i {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 11px;
  height: 11px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(99, 184, 198, .95);
  animation: orbit-dot 5s ease-in-out infinite;
}

.orbit-two i {
  top: auto;
  right: auto;
  bottom: 8px;
  left: 80px;
  width: 7px;
  height: 7px;
  background: #d67dcc;
  animation-delay: -2s;
}

.shield-halo {
  position: absolute;
  top: 130px;
  left: 50%;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(134, 34, 124, .56), rgba(134, 34, 124, .09) 46%, transparent 67%);
  filter: blur(5px);
  transform: translateX(-50%);
  animation: halo-breathe 4.5s ease-in-out infinite;
}

.core-shield {
  position: absolute;
  top: 145px;
  left: 50%;
  z-index: 2;
  width: 195px;
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, .36));
  transform: translateX(-50%);
  animation: shield-float 5.5s ease-in-out infinite;
}

.data-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 176px;
  padding: 14px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 15px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);
}

.data-chip strong,
.data-chip small {
  display: block;
}

.data-chip strong {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .9);
  font-size: .76rem;
}

.data-chip small {
  color: rgba(255, 255, 255, .42);
  font-size: .56rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.chip-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #eaa2e3;
  background: rgba(134, 34, 124, .25);
  border-radius: 9px;
  font-size: .62rem;
  font-weight: 800;
}

.chip-icon.cyan {
  color: #a2e4ec;
  background: rgba(99, 184, 198, .18);
}

.chip-cloud {
  top: 116px;
  left: 23px;
  animation: chip-float 5s ease-in-out infinite;
}

.chip-network {
  top: 360px;
  right: 18px;
  animation: chip-float 6s ease-in-out -2s infinite;
}

.chip-security {
  bottom: 55px;
  left: 36px;
  padding-right: 48px;
  animation: chip-float 5.5s ease-in-out -1s infinite;
}

.signal-bars {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: end;
  gap: 3px;
  height: 18px;
}

.signal-bars i {
  width: 4px;
  background: linear-gradient(to top, var(--plum), #d66bcb);
  border-radius: 5px;
}

.signal-bars i:nth-child(1) { height: 7px; }
.signal-bars i:nth-child(2) { height: 12px; }
.signal-bars i:nth-child(3) { height: 17px; }
.signal-bars i:nth-child(4) { height: 10px; }

.core-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.core-caption i {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, .25);
}

.trust {
  position: relative;
  z-index: 4;
  margin-top: -36px;
  padding-bottom: 30px;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  align-items: center;
  min-height: 116px;
  padding: 22px 30px;
  background: var(--white);
  border: 1px solid rgba(69, 55, 69, .09);
  border-radius: 24px;
  box-shadow: 0 20px 66px rgba(47, 33, 48, .08);
}

.trust-intro {
  margin: 0;
  color: #757981;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.trust-intro strong {
  color: var(--ink);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding-left: 19px;
  border-left: 1px solid #ebe8ec;
}

.trust-item > span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--plum);
  background: var(--plum-soft);
  border-radius: 10px;
  font-size: .67rem;
  font-weight: 850;
}

.trust-item:nth-child(4) > span {
  color: #317e89;
  background: var(--cyan-soft);
}

.trust-item p {
  margin: 0;
  color: #3d4047;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
  margin-bottom: 58px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(350px, auto);
  gap: 22px;
}

.expertise-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  background: #f7f6f3;
  border: 1px solid #e2dfe3;
  border-radius: 28px;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .3s ease;
}

.expertise-card::after {
  position: absolute;
  top: -130px;
  right: -130px;
  width: 300px;
  height: 300px;
  content: "";
  background: radial-gradient(circle, rgba(134, 34, 124, .11), transparent 68%);
  opacity: 0;
  transition: opacity .35s ease;
}

.expertise-card:hover {
  z-index: 2;
  border-color: rgba(134, 34, 124, .24);
  box-shadow: 0 26px 64px rgba(44, 28, 44, .12);
  transform: translateY(-8px);
}

.expertise-card:hover::after {
  opacity: 1;
}

.expertise-card-plum {
  color: var(--white);
  background:
    radial-gradient(circle at 98% 2%, rgba(255, 255, 255, .17), transparent 31%),
    linear-gradient(140deg, #7a1c71, #94288a);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(134, 34, 124, .2);
}

.expertise-card-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 98% 0, rgba(99, 184, 198, .2), transparent 33%),
    var(--ink);
  border-color: var(--ink);
}

.expertise-card-cyan {
  background:
    radial-gradient(circle at 98% 0, rgba(99, 184, 198, .19), transparent 32%),
    #f6f8f7;
}

.card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.card-number {
  color: #479aa8;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.expertise-card-plum .card-number,
.expertise-card-dark .card-number {
  color: rgba(255, 255, 255, .58);
}

.card-icon {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--plum);
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(30, 20, 30, .08);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.card-copy {
  position: relative;
  z-index: 1;
}

.card-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.card-copy p {
  max-width: 490px;
  margin-bottom: 24px;
  color: #676b74;
  font-size: .93rem;
  line-height: 1.65;
}

.expertise-card-plum .card-copy p,
.expertise-card-dark .card-copy p {
  color: rgba(255, 255, 255, .7);
}

.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-tags li {
  padding: 7px 11px;
  color: #4d5058;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(134, 34, 124, .1);
  border-radius: 99px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.expertise-card-plum .card-tags li,
.expertise-card-dark .card-tags li {
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .13);
}

.engagements {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.engagements::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .12;
  background-image: radial-gradient(rgba(255, 255, 255, .35) .7px, transparent .7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, transparent 75%);
}

.engagement-glow {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(134, 34, 124, .36), transparent 67%);
  pointer-events: none;
}

.engagement-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.engagement-copy h2 {
  max-width: 590px;
}

.engagement-copy h2 em {
  color: #e79bdf;
}

.engagement-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .61);
  font-size: 1rem;
  line-height: 1.72;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.metrics > div {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-bottom: 8px;
  color: #e69bde;
  font-size: 1.85rem;
  letter-spacing: -.05em;
}

.metrics span {
  color: rgba(255, 255, 255, .5);
  font-size: .7rem;
  line-height: 1.45;
}

.commitment-list {
  display: grid;
  gap: 12px;
}

.commitment-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 17px 21px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 17px;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
}

.commitment-item:hover,
.commitment-item.featured {
  background: linear-gradient(90deg, rgba(134, 34, 124, .32), rgba(255, 255, 255, .07));
  border-color: rgba(216, 123, 207, .2);
  transform: translateX(7px);
}

.commitment-number {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: #e69bde;
  background: rgba(134, 34, 124, .25);
  border-radius: 12px;
  font-size: .7rem;
  font-weight: 850;
}

.commitment-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.commitment-item p {
  margin: 0;
  color: rgba(255, 255, 255, .46);
  font-size: .75rem;
}

.commitment-mark {
  color: rgba(255, 255, 255, .38);
}

.approach {
  background: var(--paper);
}

.approach-heading {
  margin-bottom: 68px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

.steps::before {
  position: absolute;
  top: 23px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(134, 34, 124, .2), rgba(99, 184, 198, .3));
}

.step {
  position: relative;
}

.step > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 27px;
  place-items: center;
  color: var(--plum);
  background: var(--white);
  border: 1px solid #e5e1e6;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(44, 28, 44, .07);
  font-size: .62rem;
  font-weight: 850;
  transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.step:first-child > span,
.step:hover > span {
  color: var(--white);
  background: var(--plum);
  border-color: var(--plum);
  transform: scale(1.08);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: #777a82;
  font-size: .76rem;
  line-height: 1.58;
}

.transformation {
  padding-top: 50px;
  background: var(--paper);
}

.transformation-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: 60px;
  padding: 52px;
  background: var(--white);
  border: 1px solid rgba(75, 45, 73, .09);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.transformation-panel::after {
  position: absolute;
  right: -150px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(134, 34, 124, .13), transparent 66%);
  pointer-events: none;
}

.panel-label {
  margin-bottom: 16px;
  color: var(--plum);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.transformation-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 3.3vw, 3.25rem);
}

.transformation-copy > p:not(.panel-label) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.68;
}

.transformation-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #41444b;
  font-size: .78rem;
  font-weight: 700;
}

.transformation-proof span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--plum);
  background: var(--plum-soft);
  border-radius: 50%;
}

.architecture-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.architecture-card {
  min-height: 330px;
  padding: 30px;
  background: #f5f3f4;
  border: 1px solid #e7e3e7;
  border-radius: 20px;
}

.architecture-card small {
  display: block;
  margin-bottom: 16px;
  color: var(--plum);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.architecture-card h3 {
  margin-bottom: 21px;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -.04em;
}

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

.architecture-card li {
  position: relative;
  padding-left: 17px;
  color: #676a72;
  font-size: .74rem;
  line-height: 1.45;
}

.architecture-card li::before {
  position: absolute;
  top: .58em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #c47aba;
  border-radius: 50%;
}

.architecture-target {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(99, 184, 198, .18), transparent 34%),
    var(--ink);
  border-color: var(--ink);
  box-shadow: 0 22px 55px rgba(19, 20, 25, .2);
}

.architecture-target small {
  color: #80d1dd;
}

.architecture-target li {
  color: rgba(255, 255, 255, .66);
}

.architecture-target li::before {
  background: #82d0dc;
  box-shadow: 0 0 10px rgba(99, 184, 198, .6);
}

.flow-arrow {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--plum);
  background: var(--plum-soft);
  border-radius: 50%;
  font-size: 1.1rem;
}

.contact {
  background: var(--paper);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 4.4vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 15%, rgba(226, 120, 214, .38), transparent 32%),
    linear-gradient(125deg, #46113f, #7f1e75 58%, #9b2d8e);
  border-radius: 34px;
  box-shadow: 0 32px 85px rgba(91, 24, 84, .25);
}

.contact-rings {
  position: absolute;
  top: -180px;
  right: -60px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, .026), 0 0 0 90px rgba(255, 255, 255, .018);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: clamp(36px, 4.2vw, 64px);
}

.panel-label-light {
  color: rgba(255, 255, 255, .63);
}

.contact-copy h2 {
  max-width: 610px;
  margin: 0 0 26px;
  font-size: clamp(3.2rem, 5.25vw, 4.9rem);
  line-height: .94;
}

.contact-intro {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .94rem;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 11px;
  margin-top: 34px;
}

.contact-detail {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 13px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
}

a.contact-detail:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .3);
  transform: translateX(4px);
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--plum);
  background: var(--white);
  border-radius: 12px;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-detail small,
.contact-detail strong {
  display: block;
}

.contact-detail small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .55);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-detail strong {
  overflow-wrap: anywhere;
  font-size: .82rem;
  line-height: 1.45;
}

.contact-arrow {
  color: rgba(255, 255, 255, .55);
}

.contact-address {
  margin: 0;
  font-style: normal;
}

.contact-form-card {
  color: var(--ink);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 27px;
  padding: clamp(25px, 3vw, 38px);
  box-shadow: 0 24px 70px rgba(49, 6, 43, .22);
}

.contact-form-heading {
  margin-bottom: 24px;
}

.contact-form-heading p {
  margin-bottom: 7px;
  color: var(--plum);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-form-heading h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.1vw, 2.15rem);
  letter-spacing: -.045em;
}

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

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 7px;
  color: #36343a;
  font-size: .72rem;
  font-weight: 750;
}

.form-field label > span:not(.optional) {
  color: var(--plum);
}

.form-field .optional {
  margin-left: auto;
  color: #87838a;
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f8f6f4;
  border: 1px solid #ded9de;
  border-radius: 11px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 108px;
  padding: 12px 13px;
  line-height: 1.5;
  resize: vertical;
}

.contact-form textarea::placeholder {
  color: #969198;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #c4bdc4;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(99, 184, 198, .36);
  outline-offset: 1px;
  background: var(--white);
  border-color: var(--cyan);
  box-shadow: 0 0 0 5px rgba(99, 184, 198, .09);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  background: #fff8f8;
  border-color: #b8324d;
}

.field-error {
  display: block;
  min-height: 16px;
  padding-top: 3px;
  color: #a82340;
  font-size: .65rem;
  font-weight: 650;
  line-height: 1.3;
}

.form-demo-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 4px 0 17px;
  color: #716c73;
  font-size: .67rem;
  line-height: 1.45;
}

.form-demo-note > span {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--plum);
  background: var(--plum-soft);
  border-radius: 50%;
  font-size: .6rem;
  font-weight: 850;
}

.contact-submit {
  display: flex;
  width: 100%;
  min-height: 53px;
  padding: 0 19px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--plum-bright));
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 800;
  box-shadow: 0 13px 27px rgba(134, 34, 124, .2);
  transition: transform .25s var(--ease), box-shadow .25s ease, filter .25s ease;
}

.contact-submit:hover {
  filter: brightness(1.06);
  box-shadow: 0 17px 34px rgba(134, 34, 124, .28);
  transform: translateY(-2px);
}

.contact-submit span {
  font-size: 1rem;
  transition: transform .25s var(--ease);
}

.contact-submit:hover span {
  transform: translate(2px, -2px);
}

.form-status {
  display: none;
  margin: 14px 0 0;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: .71rem;
  font-weight: 650;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #8d1f38;
  background: #fff0f3;
  border: 1px solid #f0c7d0;
}

.form-status.is-success {
  color: #195d65;
  background: var(--cyan-soft);
  border: 1px solid #b9dfe4;
}

.site-footer {
  padding: 78px 0 35px;
  color: rgba(255, 255, 255, .66);
  background: #101116;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr 1fr;
  gap: 70px;
  padding-bottom: 62px;
}

.footer-brand img {
  width: 168px;
  height: auto;
  margin-bottom: 22px;
  padding: 7px;
  background: rgba(255, 255, 255, .94);
  border-radius: 8px;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: .8rem;
  line-height: 1.65;
}

.footer-column h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: inherit;
  font-size: .76rem;
  letter-spacing: 0;
}

.footer-column ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-column address {
  color: rgba(255, 255, 255, .52);
  font-size: .75rem;
  font-style: normal;
  line-height: 1.5;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: var(--white);
}

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

.footer-contact h2 {
  margin-bottom: 9px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 27px;
  color: rgba(255, 255, 255, .33);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .65rem;
}

.footer-bottom i {
  margin-inline: 7px;
  color: var(--plum-bright);
  font-style: normal;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

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

.js-ready .secure-core[data-reveal] {
  transform: translateY(30px) scale(.985);
}

.js-ready .secure-core[data-reveal].is-visible {
  transform: translateY(calc(var(--hero-scroll, 0) * 1px)) scale(1);
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.82); }
}

@keyframes shield-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes halo-breathe {
  0%, 100% { opacity: .72; transform: translateX(-50%) scale(.95); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.07); }
}

@keyframes orbit-dot {
  0%, 100% { opacity: .5; transform: scale(.7); }
  45%, 60% { opacity: 1; transform: scale(1.1); }
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes reference-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 1120px) {
  .container {
    width: min(var(--max-width), calc(100% - 48px));
  }

  .nav-shell {
    grid-template-columns: 165px 1fr;
  }

  .brand {
    width: 142px;
  }

  .nav-links {
    gap: 17px;
    font-size: .8rem;
  }

  .nav-panel {
    gap: 22px;
  }

  .nav-cta {
    padding-inline: 18px;
    font-size: .82rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 6.6vw, 4.7rem);
  }

  .secure-core {
    min-height: 580px;
  }

  .trust-panel {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .trust-intro {
    grid-column: 1 / -1;
    padding-bottom: 16px;
  }

  .trust-item:nth-child(2) {
    padding-left: 0;
    border-left: 0;
  }

  .transformation-panel {
    grid-template-columns: 1fr;
  }

  .transformation-copy {
    max-width: 700px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 94px;
  }

  .container {
    width: min(var(--max-width), calc(100% - 40px));
  }

  .section {
    padding-block: 92px;
  }

  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 70px;
    padding: 9px 10px 9px 19px;
    /* Keep the fixed drawer anchored to the viewport on mobile. */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 18px;
  }

  .brand {
    width: 132px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    width: min(420px, 88vw);
    padding: 115px 30px 32px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 30px;
    background: rgba(255, 255, 255, .985);
    box-shadow: -24px 0 70px rgba(20, 12, 20, .18);
    visibility: hidden;
    transform: translateX(105%);
    transition: visibility .35s ease, transform .35s var(--ease);
  }

  .nav-panel::before {
    position: fixed;
    inset: 0 100% 0 auto;
    width: 100vw;
    content: "";
    background: rgba(11, 9, 13, .4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }

  .nav-shell.is-open .nav-panel {
    visibility: visible;
    transform: translateX(0);
  }

  .nav-shell.is-open .nav-panel::before {
    opacity: 1;
  }

  .nav-links {
    display: grid;
    gap: 0;
    font-size: 1.2rem;
  }

  .nav-links a {
    padding: 19px 0;
    border-bottom: 1px solid #e8e4e8;
  }

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

  .nav-cta {
    min-height: 60px;
  }

  .hero {
    min-height: auto;
    padding: 135px 0 86px;
  }

  .hero-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 720px;
    padding-block: 30px 10px;
  }

  .hero-references {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(4rem, 10.5vw, 5.3rem);
  }

  .secure-core {
    width: min(570px, 100%);
    min-height: 600px;
    margin-inline: auto;
  }

  .trust {
    margin-top: -28px;
  }

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

  .trust-item:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .engagement-copy {
    max-width: 680px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
  }

  .steps::before {
    display: none;
  }

  .step > span {
    margin-bottom: 18px;
  }

  .transformation {
    padding-top: 20px;
  }

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

  .contact-copy {
    max-width: 680px;
  }

  .contact-panel {
    padding: 50px;
  }

  .contact-copy h2 {
    max-width: 670px;
    font-size: clamp(3.3rem, 8vw, 4.8rem);
  }

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

  .form-field-wide {
    grid-column: auto;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .section {
    padding-block: 76px;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .nav-shell {
    border-radius: 16px;
  }

  .brand {
    width: 120px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.25rem, 15vw, 4.25rem);
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.62;
  }

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

  .hero-actions {
    align-items: stretch;
  }

  .hero-note {
    align-items: flex-start;
    line-height: 1.5;
  }

  .hero-references {
    margin-top: 23px;
  }

  .reference-set {
    gap: 22px;
    padding-right: 22px;
  }

  .reference-logo {
    width: 102px;
  }

  .secure-core {
    min-height: 500px;
    border-radius: 28px;
  }

  .core-header {
    top: 22px;
    right: 20px;
    left: 20px;
    font-size: .53rem;
  }

  .core-shield {
    top: 124px;
    width: 155px;
  }

  .shield-halo {
    top: 99px;
    width: 270px;
    height: 270px;
  }

  .core-orbit {
    top: 159px;
    width: 320px;
    height: 148px;
  }

  .orbit-two {
    top: 131px;
    width: 245px;
    height: 210px;
  }

  .data-chip {
    min-width: 142px;
    padding: 11px;
  }

  .data-chip strong {
    font-size: .66rem;
  }

  .data-chip small {
    font-size: .48rem;
  }

  .chip-icon {
    width: 29px;
    height: 29px;
  }

  .chip-cloud {
    top: 90px;
    left: 12px;
  }

  .chip-network {
    top: 309px;
    right: 10px;
  }

  .chip-security {
    bottom: 38px;
    left: 15px;
  }

  .core-caption {
    display: none;
  }

  .trust-panel {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .trust-intro {
    padding-bottom: 7px;
  }

  .trust-item,
  .trust-item:nth-child(4) {
    min-height: 64px;
    padding-left: 0;
    border-top: 1px solid #ebe8ec;
    border-left: 0;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(330px, auto);
  }

  .expertise-card {
    padding: 27px;
    border-radius: 23px;
  }

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

  .commitment-item {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .commitment-item:hover,
  .commitment-item.featured {
    transform: none;
  }

  .commitment-mark {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
  }

  .step > span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .step h3 {
    margin: 3px 0 7px;
  }

  .transformation-panel {
    gap: 40px;
    padding: 28px;
    border-radius: 24px;
  }

  .architecture-flow {
    grid-template-columns: 1fr;
  }

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

  .flow-arrow {
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .contact-panel {
    padding: 34px 25px 25px;
    border-radius: 25px;
  }

  .contact-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  .contact-layout {
    gap: 34px;
  }

  .contact-details {
    margin-top: 28px;
  }

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

  .contact-form-grid {
    gap: 10px;
  }

  .contact-form input,
  .contact-form select {
    min-height: 52px;
  }

  .contact-submit {
    min-height: 56px;
  }

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

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

@media (max-width: 390px) {
  .container {
    width: min(var(--max-width), calc(100% - 22px));
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .button {
    padding-inline: 17px;
    font-size: .82rem;
  }

  .contact-panel {
    padding-inline: 18px;
  }

  .contact-form-card {
    padding-inline: 17px;
  }

  .contact-detail {
    padding-inline: 12px;
  }

  .secure-core {
    min-height: 455px;
  }

  .core-status {
    font-size: 0;
  }

  .chip-network {
    top: 285px;
  }

  .chip-security {
    bottom: 24px;
  }
}

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

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

  .js-ready [data-reveal],
  .js-ready .secure-core[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .reference-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: none;
  }

  .reference-marquee::-webkit-scrollbar {
    display: none;
  }

  .reference-track {
    animation: none;
  }

  .reference-set[aria-hidden="true"] {
    display: none;
  }
}
