@font-face {
  font-family: Manrope;
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --navy: #090d15;
  --navy-light: #101722;
  --paper: #f7f8fa;
  --ink: #182130;
  --muted: #586375;
  --blue: #2865dd;
  --blue-light: #7ba7ff;
  --border: #dce1e9;
  --dark-border: #263040;
  --white: #f3f6fc;
  --radius: 10px;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  background: var(--navy);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  max-width: 100%;
}
button {
  color: inherit;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
button:disabled {
  cursor: default;
}
::selection {
  background: #3373ef;
  color: #fff;
}
:focus-visible {
  outline: 3px solid #598ffa;
  outline-offset: 5px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline-offset: 2px;
}
.shell {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section-pad {
  padding-block: 110px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #4169a2;
}
.mono {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  left: 15px;
  top: 10px;
  transform: translateY(-150%);
  background: #fff;
  color: #111;
  padding: 10px 18px;
  z-index: 100;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #090d15f2;
  border-bottom: 1px solid #ffffff0d;
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -1.2px;
  font-weight: 800;
  flex-shrink: 0;
}
.brand-light {
  font-weight: 400;
}
.brand-dot {
  color: var(--blue-light);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  color: #b5bfce;
  font-size: 12px;
}
.main-nav > a {
  transition: color 0.2s;
}
.main-nav > a:hover {
  color: #fff;
}
.nav-contact {
  border: 1px solid #3a4558;
  border-radius: 6px;
  padding: 10px 18px;
  color: var(--white);
}
.nav-contact span {
  margin-left: 16px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
  background: radial-gradient(ellipse at 79% 44%, #10254b70, transparent 47%), var(--navy);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(#ffffff08 1px, transparent 1px);
  opacity: 0.3;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  gap: 20px;
  align-items: center;
  padding-block: 92px 65px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a2b6d6;
  font-size: 10px;
  letter-spacing: 0.13em;
}
.tiny-line {
  width: 23px;
  height: 1px;
  background: var(--blue-light);
}
h1 {
  font-size: clamp(43px, 4.35vw, 67px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.13;
  margin-top: 26px;
  max-width: 670px;
}
h1 > span {
  color: var(--blue-light);
}
.hero-description {
  color: #a7b2c4;
  font-size: 15px;
  line-height: 1.85;
  max-width: 465px;
  margin-top: 27px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
  margin-top: 33px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border: 1px solid transparent;
  border-radius: 6px;
  min-height: 48px;
  padding: 13px 20px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 3px 20px #2563eb15;
}
.button-primary:hover {
  background: #235fd5;
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 600;
  padding-block: 9px;
}
.text-link:hover {
  color: var(--blue-light);
}
.hero-actions .text-link {
  color: #d2dbea;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: #8f9cb0;
  margin-top: 36px;
}
.small-cross {
  color: #8ba5c9;
  font-family: var(--mono);
  font-size: 16px;
}
.infra-visual {
  align-self: center;
  margin-top: 35px;
  position: relative;
  min-width: 0;
}
.architecture-svg {
  width: 112%;
  max-width: none;
  margin-left: -6%;
  display: block;
  overflow: visible;
}
.visual-topline,
.visual-bottomline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: #8092af;
  font-size: 9px;
  padding-block: 10px;
  border-bottom: 1px solid #28354b7d;
}
.visual-topline {
  position: relative;
  top: 22px;
}
.visual-topline .mono,
.visual-bottomline .mono {
  font-size: 8px;
}
.visual-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}
.visual-indicator i {
  height: 4px;
  width: 4px;
  background: #78a8ff;
  border-radius: 50%;
}
.visual-bottomline {
  border-top: 1px solid #28354b7d;
  border-bottom: 0;
  margin-top: -10px;
}
.diagram-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  fill: #b1c2db;
}
.diagram-label-blue {
  fill: #8eafe4;
  font-size: 9px;
}
.route-pulses {
  stroke-dasharray: 6 180;
  animation: flow 8s linear infinite;
}
.core-stack {
  animation: float 8s ease-in-out infinite;
}
.core-edge {
  animation: glimmer 5s ease-in-out infinite;
}
.hero-services {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-block: 26px;
  border-top: 1px solid #263040;
  font-size: 11px;
  color: #aab7cb;
}
.service-divider {
  color: #344257;
}
.hero-services > a {
  margin-left: auto;
  display: grid;
  place-items: center;
  height: 30px;
  width: 30px;
  border: 1px solid #374051;
  border-radius: 50%;
  color: #d8e0ec;
}
.solutions {
  background: #f7f8fa;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 65px;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-heading h2,
h2 {
  font-size: clamp(32px, 3.1vw, 47px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.045em;
}
.section-heading h2 {
  margin-top: 18px;
}
.section-heading > p {
  max-width: 340px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  padding-bottom: 4px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.solution-card {
  padding: 32px 29px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.solution-card + .solution-card {
  border-left: 1px solid var(--border);
}
.solution-number {
  position: absolute;
  right: 28px;
  top: 29px;
  font-family: var(--mono);
  font-size: 10px;
  color: #626e7e;
}
.service-icon {
  height: 37px;
  width: 37px;
  fill: none;
  stroke: #3b6dab;
  stroke-width: 1.35;
  margin-bottom: 30px;
}
.solution-card h3 {
  font-size: 23px;
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.35;
  margin-bottom: 17px;
}
.solution-card > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}
.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  font-size: 11px;
  line-height: 1.7;
  color: #4e596a;
}
.solution-card li {
  padding-block: 5px;
  padding-left: 14px;
  position: relative;
}
.solution-card li:before {
  content: '+';
  position: absolute;
  left: 0;
  color: #4872ad;
}
.card-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  padding: 17px 0 0;
  margin-top: auto;
  border: 0;
  border-top: 1px solid var(--border);
  background: none;
  text-align: left;
}
.card-link span {
  font-size: 17px;
  font-weight: 400;
}
.card-link:hover {
  color: #215ec6;
}
.vmware-note {
  display: flex;
  align-items: center;
  gap: 23px;
  border-top: 1px solid var(--border);
  padding: 27px 0 0;
  margin-top: 32px;
}
.note-icon {
  align-self: flex-start;
  color: #3974d5;
  font-size: 27px;
  line-height: 1;
}
.vmware-note h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.vmware-note p {
  font-size: 11px;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
}
.vmware-note .text-link {
  white-space: nowrap;
  margin-left: auto;
  font-size: 11px;
  color: #285eb1;
}
.architectures {
  background: #fff;
  border-top: 1px solid #e9edf2;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.showcase-card {
  border: 1px solid #e0e6ed;
  border-radius: 10px;
  overflow: hidden;
}
.showcase-art {
  height: 298px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.showcase-migration .showcase-art {
  background: radial-gradient(ellipse at 70% 80%, #20385f 0, transparent 62%), #0d1623;
}
.showcase-continuity .showcase-art {
  background: #eaf0f9;
}
.art-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#647fa315 1px, transparent 1px),
    linear-gradient(90deg, #647fa315 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: -1;
}
.art-label,
.art-caption {
  position: absolute;
  left: 24px;
  font-size: 8px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  color: #acbed8;
}
.art-label {
  top: 23px;
}
.art-caption {
  bottom: 20px;
  font-size: 8px;
  letter-spacing: 0.04em;
}
.showcase-continuity .art-label,
.showcase-continuity .art-caption {
  color: #566d8e;
}
.migration-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  height: 100%;
  padding-top: 14px;
}
.mini-rack {
  transform: skewY(-12deg);
  width: 81px;
  background: #17263b;
  border: 1px solid #415a7b;
  padding: 13px 9px;
  box-shadow: 12px 12px 0 #111e32;
}
.mini-rack i {
  display: block;
  height: 23px;
  margin: 6px 0;
  border: 1px solid #607495;
  position: relative;
}
.mini-rack i:after {
  content: '';
  position: absolute;
  right: 6px;
  top: 8px;
  width: 4px;
  height: 4px;
  background: #81a4d4;
}
.migration-track {
  display: flex;
  align-items: center;
  gap: 9px;
}
.migration-track i {
  width: 3px;
  height: 3px;
  background: #639aef;
}
.migration-track span {
  font-size: 24px;
  color: #8ebaff;
}
.cloud-cluster {
  width: 97px;
  transform: skewY(-12deg);
  position: relative;
}
.cluster-top {
  position: relative;
  z-index: 3;
  height: 72px;
  background: linear-gradient(135deg, #76a8ff, #2965d3);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -2px;
  box-shadow: 10px 9px 0 #163567;
}
.cluster-layer {
  height: 17px;
  border: 1px solid #5075a6;
  box-shadow: 10px 9px 0 #101e33;
  background: #223b5c;
  margin-top: 7px;
}
.continuity-scene {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 100%;
  margin: auto;
  padding-block: 71px 55px;
}
.continuity-node {
  background: #f9fbff;
  border: 1px solid #bfcee3;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23px 9px;
  box-shadow: 0 10px 20px #6987b012;
}
.node-mark {
  color: #477bd3;
  font-size: 29px;
  line-height: 1;
  margin-bottom: 17px;
}
.continuity-node > span:last-child {
  font-size: 7px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  color: #526b8d;
}
.continuity-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  color: #476a9b;
  font-size: 6px;
  font-family: var(--mono);
}
.continuity-path i {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #93b0d7 40%, transparent 40%);
  background-size: 7px 1px;
}
.continuity-foundation {
  grid-column: 1/-1;
  text-align: center;
  border-top: 1px solid #c3d0e1;
  margin-top: 22px;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 8px;
  color: #657a98;
  letter-spacing: 0.07em;
}
.showcase-info {
  padding: 27px 30px 25px;
}
.showcase-tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 19px;
}
.showcase-tags > span {
  font-size: 8px;
  font-family: var(--mono);
  padding: 3px 8px;
  background: #f2f5f9;
  color: #516579;
  border: 1px solid #e1e7ef;
  border-radius: 3px;
}
.showcase-info h3 {
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.35;
  font-weight: 550;
  margin-bottom: 13px;
}
.showcase-info > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 24px;
}
.portfolio-note {
  font-size: 10px;
  color: #667486;
  margin-top: 20px;
}
.method {
  background: #0d131d;
  color: var(--white);
}
.method-layout {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 95px;
}
.method-intro .eyebrow {
  color: #8aaddf;
}
.method-intro h2 {
  margin-top: 20px;
}
.method-intro > p:not(.eyebrow) {
  font-size: 13px;
  color: #a0aec2;
  max-width: 345px;
  margin-top: 25px;
}
.method-intro .text-link {
  margin-top: 29px;
  color: #bdd3f6;
  font-size: 12px;
}
.method-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}
.method-steps > li {
  display: flex;
  gap: 25px;
  padding: 24px 0;
  border-top: 1px solid #2c3543;
}
.method-steps > li:first-child {
  padding-top: 0;
  border-top: 0;
}
.method-steps > li:last-child {
  padding-bottom: 0;
}
.step-number {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 27px;
  color: #779ccf;
}
.method-steps h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 10px;
}
.method-steps p {
  color: #9caabd;
  font-size: 12px;
  line-height: 1.85;
}
.step-deliverable {
  font-size: 9px;
  color: #95b5e4;
  display: inline-block;
  margin-top: 12px;
}
.about-band {
  background: #eaf0fa;
  padding-block: 66px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 95px;
  align-items: start;
}
.about-layout > .eyebrow {
  grid-column: 1/-1;
}
.about-layout h2 {
  font-size: 35px;
}
.about-layout > div > p {
  color: #53657d;
  font-size: 12px;
  line-height: 1.9;
  max-width: 470px;
}
.about-layout > div > p + p {
  margin-top: 12px;
}
.about-layout .text-link {
  font-size: 11px;
  color: #2c5d9f;
  margin-top: 19px;
}
.faq {
  background: #fff;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 95px;
}
.faq h2 {
  margin-top: 20px;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-list details {
  border-bottom: 1px solid var(--border);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 23px 0;
  line-height: 1.7;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 400;
  color: #5f7592;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  padding: 0 30px 24px 0;
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}
.contact {
  background: radial-gradient(ellipse at 0% 100%, #14254d55, transparent 70%), var(--navy);
  color: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.contact .eyebrow {
  color: #8bacdb;
}
.contact h2 {
  margin-top: 20px;
  font-size: clamp(36px, 3.5vw, 51px);
  line-height: 1.17;
}
.contact h2 > span {
  color: #83abf5;
}
.contact-copy > p:not(.eyebrow) {
  color: #a4b1c5;
  font-size: 13px;
  line-height: 1.9;
  max-width: 350px;
  margin-top: 25px;
}
.contact-direct {
  margin-top: 28px;
  display: grid;
  justify-items: start;
  gap: 4px;
}
.contact-direct a {
  font-size: 12px;
  color: #b5cff8;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-signature {
  margin-top: 49px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  line-height: 1.6;
}
.signature-symbol {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid #465677;
  border-radius: 6px;
  font-size: 23px;
  color: #adc5ed;
}
.contact-signature small {
  font-size: 9px;
  color: #8d9eb8;
}
.contact-form {
  background: #111925;
  border: 1px solid #293449;
  border-radius: 9px;
  padding: 28px;
  align-self: start;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #d7e0ef;
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.optional {
  font-size: 9px;
  color: #a2b1c6;
  display: contents;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #364359;
  background: #0e1520;
  color: #edf4ff;
  border-radius: 5px;
  padding: 12px;
  font-size: 11px;
  min-height: 43px;
}
.contact-form textarea {
  resize: vertical;
  max-height: 400px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8d9aaf;
  opacity: 1;
}
.contact-form select {
  color-scheme: dark;
}
.form-privacy {
  font-size: 9px;
  color: #a3b0c4;
  line-height: 1.9;
  margin: 0 0 20px;
}
.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-form > .button {
  width: 100%;
  justify-content: space-between;
}
.contact-result {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #3e4c65;
}
.contact-result h3 {
  font-size: 16px;
  font-weight: 550;
}
.contact-result > p {
  font-size: 11px;
  color: #b2c0d5;
  margin-block: 8px 12px;
}
.contact-result textarea {
  font-size: 11px;
  line-height: 1.7;
  min-height: 160px;
}
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.button-small {
  background: #244e91;
  border: 1px solid #5480bd;
  min-height: 42px;
  font-size: 11px;
  padding: 10px 12px;
  gap: 10px;
}
.button-small:hover {
  background: #2f65b8;
}
.copy-button {
  border: 1px solid #566782;
  background: transparent;
  border-radius: 5px;
  font-size: 11px;
  padding: 10px 12px;
  min-height: 42px;
}
.copy-status {
  min-height: 1.5em;
}
.site-footer {
  background: var(--navy);
  color: #9baac0;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-block: 42px;
  border-top: 1px solid #263040;
}
.footer-top > .brand {
  font-size: 25px;
}
.footer-top > p {
  font-size: 10px;
}
.back-top {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
}
.back-top span {
  font-size: 17px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  border-top: 1px solid #202a39;
  padding-block: 23px;
  font-size: 9px;
}
.footer-bottom .mono {
  font-size: 8px;
  color: #7f90a9;
}
.case-dialog {
  width: min(700px, calc(100% - 32px));
  max-height: 85dvh;
  border: 1px solid #d5deeb;
  border-radius: 12px;
  padding: 36px;
  background: #f9fbfe;
  color: var(--ink);
  box-shadow: 0 25px 100px #0005;
  overscroll-behavior: contain;
}
.case-dialog::backdrop {
  background: #070e1ac9;
  backdrop-filter: blur(6px);
}
.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.dialog-close {
  height: 38px;
  width: 38px;
  border: 1px solid #cbd5e4;
  background: transparent;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}
.case-dialog h2 {
  font-size: 34px;
  margin-bottom: 18px;
}
.case-dialog > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.case-section {
  border-top: 1px solid #dbe2ec;
  padding-top: 19px;
  margin-top: 22px;
}
.case-section h3 {
  font-size: 14px;
  margin-bottom: 8px;
}
.case-section p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
}
.case-dialog .dialog-disclaimer {
  font-size: 10px;
  margin-block: 23px;
}
.case-dialog > .button {
  font-size: 11px;
}
.legal-main {
  background: #f7f8fa;
  min-height: 75vh;
  padding-block: 80px;
}
.legal-content {
  max-width: 780px;
  margin: auto;
  padding-inline: 25px;
}
.legal-content h1 {
  font-size: 48px;
  margin: 0 0 25px;
}
.legal-content h2 {
  font-size: 23px;
  margin: 35px 0 12px;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.legal-content a {
  text-decoration: underline;
}
.legal-content .eyebrow {
  margin-bottom: 20px;
}
.error-main {
  text-align: center;
}
.error-main .button {
  margin-top: 30px;
}
.error-main h1 {
  max-width: none;
}
.error-main .eyebrow {
  font-size: 60px;
}
@keyframes flow {
  to {
    stroke-dashoffset: -372;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes glimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@media (min-width: 1600px) {
  .hero-content {
    padding-block: 110px 90px;
  }
  h1 {
    font-size: 69px;
  }
}
@media (max-width: 1120px) {
  .shell {
    width: calc(100% - 72px);
  }
  .main-nav {
    gap: 22px;
  }
  .hero-content {
    gap: 8px;
    padding-block: 72px 54px;
    grid-template-columns: 1.1fr 1fr;
  }
  h1 {
    font-size: clamp(40px, 4.7vw, 57px);
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions > .button {
    font-size: 11px;
    padding: 12px 15px;
    gap: 15px;
  }
  .hero-actions > .text-link {
    font-size: 11px;
  }
  .visual-indicator {
    display: none;
  }
  .section-pad {
    padding-block: 85px;
  }
  .solution-card {
    padding: 27px 22px;
  }
  .solution-card h3 {
    font-size: 21px;
  }
  .method-layout,
  .contact-layout,
  .faq-layout,
  .about-layout {
    gap: 55px;
  }
  .section-heading {
    gap: 40px;
  }
  .showcase-art {
    height: 260px;
  }
  .showcase-info {
    padding: 24px;
  }
  .showcase-info h3 {
    font-size: 23px;
  }
  .vmware-note {
    gap: 15px;
  }
  .vmware-note .text-link {
    font-size: 10px;
  }
  .contact-form {
    padding: 23px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .art-label {
    font-size: 7px;
  }
}
@media (max-width: 800px) {
  .header-inner {
    height: 74px;
    gap: 20px;
  }
  .main-nav {
    gap: 17px;
    font-size: 11px;
  }
  .nav-contact {
    padding: 9px 12px;
  }
  .nav-contact span {
    margin-left: 6px;
  }
  .brand {
    font-size: 24px;
    gap: 8px;
  }
  .brand svg {
    width: 27px;
    height: 27px;
  }
  .hero-content {
    grid-template-columns: 1fr 1fr;
    padding-top: 64px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
    gap: 8px;
  }
  h1 {
    font-size: 39px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-actions {
    gap: 7px;
  }
  .hero-footnote {
    font-size: 8px;
  }
  .visual-topline .mono,
  .visual-bottomline .mono {
    font-size: 6px;
  }
  .hero-services {
    gap: 17px;
    font-size: 10px;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-heading > p {
    max-width: 240px;
    font-size: 12px;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    display: grid;
    grid-template-columns: 46px 1fr 1fr;
    gap: 12px 22px;
    padding: 27px;
  }
  .solution-card + .solution-card {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .solution-card h3 {
    font-size: 22px;
  }
  .solution-card > p {
    grid-column: 3;
    grid-row: 1/3;
    align-self: center;
  }
  .service-icon {
    grid-row: 1/3;
    margin: 0;
  }
  .solution-card ul {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 10px;
  }
  .solution-card .card-link {
    grid-column: 2/-1;
    margin-top: 10px;
  }
  .solution-number {
    display: none;
  }
  .vmware-note {
    flex-wrap: wrap;
  }
  .vmware-note .text-link {
    margin-left: 36px;
  }
  .showcase-grid {
    gap: 20px;
  }
  .showcase-art {
    height: 230px;
  }
  .migration-scene {
    gap: 18px;
    transform: scale(0.83);
  }
  .art-caption {
    font-size: 6px;
    left: 18px;
  }
  .art-label {
    left: 18px;
    font-size: 7px;
  }
  .showcase-info {
    padding: 22px 20px;
  }
  .showcase-info h3 {
    font-size: 20px;
  }
  .showcase-tags > span {
    font-size: 7px;
  }
  .continuity-scene {
    width: 85%;
    grid-template-columns: 1fr 38px 1fr;
  }
  .continuity-node {
    padding: 18px 5px;
  }
  .continuity-node > span:last-child {
    font-size: 5px;
  }
  .continuity-foundation {
    font-size: 6px;
  }
  .method-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .method-intro > p:not(.eyebrow) {
    max-width: 470px;
  }
  .method-steps {
    max-width: 600px;
  }
  .method-intro h2 > br:nth-of-type(2) {
    display: none;
  }
  .about-layout {
    gap: 20px 40px;
  }
  .about-layout h2 {
    font-size: 28px;
  }
  .contact-layout {
    gap: 35px;
  }
  .contact h2 {
    font-size: 34px;
  }
  .contact-signature small {
    font-size: 8px;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-top > p {
    font-size: 9px;
  }
}
@media (max-width: 620px) {
  html {
    scroll-padding-top: 78px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .section-pad {
    padding-block: 65px;
  }
  .header-inner {
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    padding-block: 17px;
  }
  .brand {
    font-size: 25px;
  }
  .main-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
    font-size: 12px;
    padding: 8px 0;
  }
  .js .header-inner {
    height: 70px;
    padding-block: 0;
    flex-wrap: nowrap;
  }
  .js .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: 1px solid #39485e;
    border-radius: 5px;
    background: none;
    color: #fff;
  }
  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .js .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: #0c131f;
    border-bottom: 1px solid #3e4d66;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 20px 20px;
  }
  .js .main-nav.is-open {
    display: flex;
  }
  .js .main-nav a {
    padding: 13px 10px;
    font-size: 13px;
  }
  .js .main-nav .nav-contact {
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-block: 51px 27px;
    gap: 20px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .hero h1 {
    font-size: clamp(39px, 10vw, 58px);
    line-height: 1.14;
    max-width: 520px;
    margin-top: 24px;
  }
  .hero-description {
    font-size: 13px;
    max-width: 430px;
    margin-top: 23px;
  }
  .hero-actions {
    margin-top: 27px;
    gap: 9px 22px;
  }
  .hero-actions > .button {
    font-size: 11px;
    min-height: 47px;
    padding: 13px 17px;
  }
  .hero-actions > .text-link {
    font-size: 11px;
    padding-block: 14px;
  }
  .hero-footnote {
    font-size: 9px;
    margin-top: 21px;
  }
  .infra-visual {
    width: min(440px, 100%);
    margin: 8px auto 0;
  }
  .architecture-svg {
    width: 100%;
    margin-left: 0;
  }
  .visual-topline .mono,
  .visual-bottomline .mono {
    font-size: 7px;
  }
  .visual-indicator {
    display: flex;
    font-size: 7px;
  }
  .hero-services {
    padding-block: 21px;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 8px;
  }
  .hero-services > a {
    width: 25px;
    height: 25px;
  }
  .section-heading {
    display: block;
    margin-bottom: 31px;
  }
  .section-heading h2 {
    font-size: 34px;
    margin-top: 16px;
  }
  .section-heading > p {
    max-width: 420px;
    margin-top: 20px;
    font-size: 12px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .solution-card {
    display: flex;
    padding: 28px;
    gap: 0;
  }
  .solution-number {
    display: block;
  }
  .service-icon {
    margin-bottom: 21px;
    width: 32px;
    height: 32px;
  }
  .solution-card h3 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .solution-card > p {
    font-size: 12px;
  }
  .solution-card ul {
    font-size: 11px;
    margin: 18px 0 22px;
  }
  .solution-card .card-link {
    font-size: 11px;
    margin-top: 0;
  }
  .vmware-note {
    gap: 12px;
  }
  .vmware-note > div {
    flex: 1;
  }
  .vmware-note h3 {
    font-size: 12px;
  }
  .vmware-note p {
    font-size: 11px;
  }
  .vmware-note .text-link {
    font-size: 11px;
    margin-left: 30px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .showcase-art {
    height: 275px;
  }
  .showcase-info {
    padding: 25px;
  }
  .showcase-info h3 {
    font-size: 25px;
  }
  .showcase-info > p {
    font-size: 12px;
  }
  .showcase-tags > span {
    font-size: 8px;
  }
  .migration-scene {
    transform: scale(1);
    gap: 30px;
  }
  .art-label {
    font-size: 8px;
    left: 24px;
  }
  .art-caption {
    font-size: 7px;
    left: 24px;
  }
  .continuity-node > span:last-child {
    font-size: 7px;
  }
  .continuity-scene {
    width: 80%;
    grid-template-columns: 1fr 45px 1fr;
  }
  .continuity-foundation {
    font-size: 7px;
  }
  .portfolio-note {
    font-size: 10px;
    line-height: 1.8;
  }
  .method-layout {
    gap: 35px;
  }
  .method-intro h2 {
    font-size: 35px;
  }
  .method-intro h2 > br:nth-of-type(2) {
    display: initial;
  }
  .method-intro .text-link {
    margin-top: 17px;
  }
  .method-steps > li {
    gap: 20px;
  }
  .method-steps h3 {
    font-size: 18px;
  }
  .about-band {
    padding-block: 51px;
  }
  .about-layout {
    display: block;
  }
  .about-layout h2 {
    font-size: 31px;
    margin-block: 19px 24px;
  }
  .about-layout > div > p {
    font-size: 12px;
  }
  .about-layout .text-link {
    font-size: 11px;
  }
  .faq-layout {
    gap: 30px;
  }
  .faq h2 {
    font-size: 35px;
  }
  .faq h2 br {
    display: none;
  }
  .faq summary {
    font-size: 12px;
    padding-block: 21px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact h2 {
    font-size: 43px;
  }
  .contact-signature {
    margin-top: 27px;
  }
  .contact-form {
    padding: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form label {
    font-size: 12px;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px;
    padding: 11px;
  }
  .form-privacy {
    font-size: 10px;
  }
  .contact-form > .button {
    font-size: 12px;
  }
  .contact-signature small {
    font-size: 9px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 15px 25px;
    padding-block: 30px;
  }
  .footer-top > p {
    order: 3;
    width: 100%;
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 12px;
  }
  .footer-bottom .mono {
    width: 100%;
    font-size: 8px;
  }
  .case-dialog {
    padding: 24px;
  }
  .case-dialog h2 {
    font-size: 28px;
  }
  .case-dialog > .button {
    width: 100%;
    justify-content: space-between;
  }
  .dialog-top .eyebrow {
    font-size: 8px;
  }
  .legal-main {
    padding-block: 50px;
  }
  .legal-content h1 {
    font-size: 37px;
  }
  .legal-content h2 {
    font-size: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
body.dialog-open {
  overflow: hidden;
}
