:root {
  --ink: #0b1220;
  --muted: #5f6c7d;
  --blue: #0a84ff;
  --blue-deep: #0062d8;
  --violet: #6e5cff;
  --lime: #c8ff3d;
  --line: rgba(118, 144, 179, 0.2);
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --dark: #09111f;
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --shadow: 0 28px 80px rgba(38, 80, 130, 0.15), 0 8px 28px rgba(30, 64, 106, 0.08);
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(202, 255, 235, 0.74), transparent 28%),
    radial-gradient(circle at 94% 20%, rgba(180, 209, 255, 0.78), transparent 32%),
    linear-gradient(145deg, #f6fbff 0%, #edf5ff 45%, #f8fbff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: white;
  border-radius: 999px;
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(10, 132, 255, 0.65);
  outline-offset: 4px;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
}

.ambient--one {
  top: 110px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: rgba(177, 255, 196, 0.38);
}

.ambient--two {
  top: 380px;
  right: -170px;
  width: 560px;
  height: 560px;
  background: rgba(96, 166, 255, 0.3);
}

.ambient--three {
  bottom: 8%;
  left: 36%;
  width: 420px;
  height: 420px;
  background: rgba(147, 118, 255, 0.2);
}

.glass-panel,
.glass-inset,
.dark-glass {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
  backdrop-filter: blur(30px) saturate(170%);
}

.glass-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42));
}

.glass-inset {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(225, 240, 255, 0.25));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), inset 0 -1px 0 rgba(91, 137, 195, 0.08), 0 20px 55px rgba(47, 90, 143, 0.11);
}

.dark-glass {
  color: white;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 10% 10%, rgba(10, 132, 255, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(12, 23, 41, 0.98), rgba(5, 13, 27, 0.96));
  box-shadow: 0 34px 90px rgba(6, 18, 38, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 14px;
  padding-top: 14px;
}

.header-shell {
  min-height: 82px;
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  gap: 34px;
  border-radius: 25px;
}

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

.brand__mark {
  width: 44px;
  height: 44px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(10, 132, 255, 0.18));
}

.brand__type {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand__type strong {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.brand__type small {
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.desktop-nav {
  margin-left: auto;
  padding: 6px;
  display: flex;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.desktop-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.desktop-nav a:hover {
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(44, 82, 125, 0.11);
}

.header-cta {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: linear-gradient(135deg, #0a84ff, #006ee6);
  box-shadow: 0 12px 30px rgba(10, 132, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.36);
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(10, 132, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.mobile-menu {
  display: none;
}

.hero {
  padding: 54px 0 30px;
}

.hero-shell {
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.hero-shell::before {
  content: "";
  position: absolute;
  top: -110px;
  left: -80px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(200, 255, 61, 0.18);
  filter: blur(42px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  align-items: center;
  gap: 34px;
}

.hero-copy {
  padding: 45px 8px 45px 14px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(10, 132, 255, 0.4);
}

h1 {
  max-width: 680px;
  margin-bottom: 27px;
  font-size: clamp(62px, 6vw, 91px);
  font-weight: 800;
  letter-spacing: -0.073em;
  line-height: 0.94;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.button--primary {
  color: white;
  background: linear-gradient(135deg, #0a84ff, #0068df);
  box-shadow: 0 15px 34px rgba(10, 132, 255, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 30px rgba(40, 81, 129, 0.1), inset 0 1px 0 white;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-visual {
  min-width: 0;
  overflow: hidden;
  border-radius: 34px;
}

.hero-visual svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.visual-glow {
  position: absolute;
  top: 22%;
  left: 33%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(93, 165, 255, 0.32);
  filter: blur(40px);
}

.diagram-card rect {
  fill: url(#glassFill);
  stroke: rgba(74, 132, 216, 0.58);
  stroke-width: 1.4;
}

.diagram-card path,
.diagram-card ellipse,
.diagram-card circle:not(.accent) {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.4;
}

.diagram-card .accent {
  fill: var(--lime);
  stroke: var(--blue);
  stroke-width: 1.4;
}

.core > path {
  fill: url(#glassFill);
  stroke: rgba(74, 132, 216, 0.7);
  stroke-width: 1.5;
}

.diagram-lines path {
  stroke-dasharray: 980;
  stroke-dashoffset: 980;
  animation: draw 1.6s ease-out forwards 0.2s;
}

.core {
  transform-origin: 340px 300px;
  animation: float 5s ease-in-out infinite;
}

.capability-row {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.glass-chip {
  min-height: 70px;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 12px 28px rgba(43, 87, 137, 0.08);
  font-size: 13px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.glass-chip:hover {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 white, 0 16px 32px rgba(43, 87, 137, 0.13);
  transform: translateY(-3px);
}

.capability-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--blue-deep);
  border: 1px solid rgba(10, 132, 255, 0.2);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(214, 235, 255, 0.7));
  box-shadow: inset 0 1px 0 white, 0 8px 18px rgba(10, 132, 255, 0.12);
  font-size: 18px;
}

.section {
  padding: 100px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.45fr 0.75fr;
  align-items: end;
  gap: 38px;
  margin-bottom: 48px;
}

.section-heading .section-kicker {
  align-self: start;
}

.section-heading h2,
.approach h2,
.about h2,
.industries h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 790;
  letter-spacing: -0.06em;
  line-height: 1;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

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

.solution-card {
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(10, 132, 255, 0.1);
  filter: blur(8px);
  transition: transform 240ms ease, background 240ms ease;
}

.solution-card:hover {
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 34px 84px rgba(30, 79, 135, 0.18), inset 0 1px 0 white;
  transform: translateY(-7px);
}

.solution-card:hover::before {
  background: rgba(110, 92, 255, 0.15);
  transform: scale(1.15);
}

.solution-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-top span:last-child {
  padding: 7px 10px;
  border: 1px solid rgba(10, 132, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.solution-card h3 {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: auto 0 16px;
  font-size: 29px;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.solution-card > p {
  position: relative;
  z-index: 1;
  min-height: 72px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tags span {
  padding: 7px 10px;
  color: #526173;
  border: 1px solid rgba(106, 132, 167, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.approach {
  padding-top: 70px;
}

.approach-panel {
  overflow: hidden;
  padding: 72px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 90px;
  border-radius: var(--radius-xl);
}

.approach-panel::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(110, 92, 255, 0.14);
  filter: blur(30px);
}

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

.approach-intro,
.steps {
  position: relative;
  z-index: 1;
}

.approach-intro > p:last-child {
  max-width: 480px;
  margin: 32px 0 0;
  color: #aebcd0;
  font-size: 17px;
  line-height: 1.65;
}

.steps {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.step {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 48px 1fr 1.12fr;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.step > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.step h3,
.step p {
  margin: 0;
}

.step h3 {
  font-size: 19px;
}

.step p {
  color: #9caabd;
  font-size: 13px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 16px;
}

.about-grid > * {
  min-width: 0;
}

.about-title,
.about-copy {
  min-height: 460px;
  padding: 48px;
  border-radius: var(--radius-xl);
}

.about-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-lead {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.27;
}

.about-copy > p:not(.about-lead) {
  max-width: 690px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.company-facts {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.company-facts div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.37);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.company-facts span,
.company-facts strong {
  display: block;
}

.company-facts span {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.company-facts strong {
  font-size: 14px;
}

.industries {
  padding-top: 0;
}

.industries-panel {
  padding: 52px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 80px;
  border-radius: var(--radius-xl);
}

.industry-list {
  display: grid;
  gap: 8px;
}

.industry-list div {
  min-height: 61px;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.industry-list span {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
}

.industry-list strong {
  font-size: 18px;
}

.contact-section {
  padding: 20px 0 56px;
}

.contact-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 15%, rgba(200, 255, 61, 0.18), transparent 30%),
    linear-gradient(135deg, #087fff 0%, #2263ed 52%, #6857f5 100%);
  box-shadow: 0 34px 90px rgba(13, 86, 205, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(255, 255, 255, 0.035), 0 0 0 128px rgba(255, 255, 255, 0.025);
}

.contact-card > div {
  position: relative;
  z-index: 1;
}

.contact-phone,
.contact-email {
  display: block;
  width: fit-content;
}

.contact-phone {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.contact-email {
  margin-bottom: 22px;
  color: white;
  font-size: 20px;
  font-weight: 680;
}

.contact-actions > p {
  max-width: 470px;
  margin-bottom: 28px;
  color: #dce9ff;
  font-size: 15px;
  line-height: 1.6;
}

.contact-actions > div {
  display: flex;
  gap: 10px;
}

.button--lime {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 15px 34px rgba(85, 116, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.button--ghost-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

footer {
  padding: 0 0 28px;
}

.footer-shell {
  padding: 58px 58px 22px;
  border-radius: var(--radius-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.95fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
}

footer .brand__type strong {
  color: white;
  font-size: 18px;
}

.brand--compact .brand__mark {
  width: 38px;
  height: 38px;
}

.footer-brand p,
.footer-address p {
  margin: 22px 0 0;
  color: #8f9db1;
  font-size: 13px;
  line-height: 1.65;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-label {
  margin-bottom: 7px;
  color: #738198;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  color: #dbe4f1;
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #728096;
  font-size: 11px;
}

.floating-contact {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(200, 255, 61, 0.76);
  box-shadow: 0 16px 36px rgba(12, 41, 79, 0.22), inset 0 1px 0 white;
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  font-size: 11px;
  font-weight: 850;
  transition: transform 180ms ease;
}

.floating-contact:hover {
  transform: translateY(-4px) scale(1.04);
}

.error-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.error-main {
  width: min(720px, 100%);
}

.error-card {
  padding: 46px;
  text-align: center;
  border-radius: var(--radius-xl);
}

.error-card .brand {
  margin-bottom: 50px;
}

.error-code {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(76px, 15vw, 132px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.error-card h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 7vw, 58px);
  letter-spacing: -0.055em;
}

.error-card > p:not(.error-code) {
  max-width: 520px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 0;
  }

  .desktop-nav a {
    padding-inline: 12px;
  }

  .header-cta {
    display: none;
  }

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

  h1 {
    font-size: clamp(58px, 7.5vw, 80px);
  }

  .section-heading {
    grid-template-columns: 0.66fr 1.34fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .approach-panel {
    gap: 54px;
  }

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

  .footer-address {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .container {
    width: calc(100% - 28px);
  }

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

  .header-shell {
    min-height: 70px;
    padding: 9px 11px 9px 16px;
    border-radius: 21px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__type strong {
    font-size: 17px;
  }

  .brand__type small {
    font-size: 7px;
  }

  .desktop-nav {
    display: none;
  }

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

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    padding: 11px;
    display: grid;
    align-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: inset 0 1px 0 white, 0 8px 18px rgba(49, 85, 128, 0.1);
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-menu summary span {
    display: block;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
  }

  .mobile-menu nav {
    position: absolute;
    top: 54px;
    right: 0;
    width: min(300px, calc(100vw - 28px));
    padding: 12px;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
  }

  .mobile-menu nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 720;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-shell {
    padding: 22px;
    border-radius: 32px;
  }

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

  .hero-copy {
    padding: 28px 4px 5px;
  }

  .hero-visual {
    width: min(100%, 620px);
    justify-self: center;
  }

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

  .section {
    padding: 78px 0;
  }

  .section-heading,
  .approach-panel,
  .about-grid,
  .industries-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading > p:last-child {
    grid-column: auto;
  }

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

  .approach-panel {
    padding: 52px 38px;
    gap: 46px;
  }

  .about-title,
  .about-copy {
    min-height: auto;
    padding: 38px;
  }

  .about-title {
    min-height: 360px;
  }

  .industries-panel {
    padding: 38px;
    gap: 42px;
  }

  .contact-card {
    padding: 52px 38px;
    gap: 44px;
  }

  .footer-shell {
    padding: 46px 38px 22px;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 20px);
  }

  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 35px;
    height: 35px;
  }

  .brand__type strong {
    font-size: 15px;
  }

  .brand__type small {
    letter-spacing: 0.24em;
  }

  .hero-shell {
    padding: 18px;
    border-radius: 28px;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 10px;
  }

  h1 {
    margin-bottom: 23px;
    font-size: clamp(45px, 13.5vw, 60px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    margin: 8px -11px 0;
    width: calc(100% + 22px);
    border-radius: 25px;
  }

  .glass-chip {
    border-radius: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .approach h2,
  .about h2,
  .industries h2,
  .contact-card h2 {
    font-size: 43px;
  }

  .about h2 {
    font-size: 38px;
  }

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

  .solution-card {
    min-height: 330px;
    border-radius: 26px;
  }

  .approach-panel,
  .about-title,
  .about-copy,
  .industries-panel,
  .contact-card,
  .footer-shell {
    border-radius: 28px;
  }

  .approach-panel {
    padding: 46px 24px;
  }

  .step {
    grid-template-columns: 36px 1fr;
  }

  .step p {
    grid-column: 2;
  }

  .about-title,
  .about-copy,
  .industries-panel {
    padding: 30px 24px;
  }

  .about-title {
    min-height: 320px;
  }

  .about-lead {
    font-size: 24px;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }

  .industry-list strong {
    font-size: 16px;
  }

  .contact-card {
    padding: 46px 24px;
  }

  .contact-phone {
    font-size: 31px;
  }

  .contact-email {
    font-size: 18px;
  }

  .contact-actions > div {
    flex-direction: column;
  }

  .footer-shell {
    padding: 42px 24px 20px;
  }

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

  .footer-brand,
  .footer-address {
    grid-column: 1 / -1;
  }

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

  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .error-card {
    padding: 34px 22px;
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass-panel,
  .glass-inset {
    background: rgba(247, 251, 255, 0.96);
  }
}

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

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