:root {
  --blue-950: #02172f;
  --blue-900: #042d5d;
  --blue-850: #073b78;
  --blue-800: #0a478f;
  --blue-700: #1164bd;
  --blue-500: #27a2ff;
  --blue-100: #dcecff;
  --orange-600: #e95f00;
  --orange-500: #ff7410;
  --orange-400: #ff9140;
  --orange-100: #ffead8;
  --ink: #0c1b2b;
  --muted: #5a697a;
  --line: #dce5ef;
  --surface: #f4f8fc;
  --white: #ffffff;
  --shadow-lg: 0 30px 75px rgba(2, 23, 47, .17);
  --shadow-md: 0 18px 45px rgba(2, 23, 47, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
  --header-h: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

/* Browser scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--orange-500) #dbe8f7;
}

body::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

body::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #edf5ff 0%, #dcecff 100%);
  border-left: 1px solid rgba(4, 45, 93, .08);
}

body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 3px solid #edf5ff;
  background: linear-gradient(180deg, var(--blue-700) 0%, var(--blue-500) 52%, var(--orange-500) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 6px 18px rgba(4, 45, 93, .18);
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--blue-800) 0%, var(--blue-600, #1d84db) 48%, var(--orange-600) 100%);
}

body::-webkit-scrollbar-corner {
  background: #edf5ff;
}

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

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

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

.section {
  padding: 112px 0;
}

.section-light {
  background: var(--white);
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.08;
  margin-top: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  letter-spacing: -.045em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -.02em;
}

p {
  margin-top: 0;
}

/* Header: transparent over hero, solid full-width white block after scroll */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 14px 0;
  background: transparent;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.nav-wrap {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 8px 12px 8px 14px;
  border: 1px solid rgba(140, 199, 255, .23);
  border-radius: 19px;
  background: linear-gradient(100deg, rgba(4, 45, 93, .72), rgba(6, 61, 123, .4));
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 14px 40px rgba(0, 13, 32, .2);
  transition: all .3s ease;
}

.site-header.scrolled {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #e7edf4;
  box-shadow: 0 10px 34px rgba(2, 23, 47, .1);
}

.site-header.scrolled .nav-wrap {
  min-height: 76px;
  padding: 5px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.brand {
  flex: 0 0 auto;
  width: 192px;
  height: 58px;
  padding: 5px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 8px 24px rgba(0, 35, 78, .1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(0, 35, 78, .16);
}

.brand img {
  height: 48px;
  object-fit: contain;
}

.site-header.scrolled .brand {
  width: 174px;
  height: 56px;
  box-shadow: none;
  padding-left: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 2px;
  transition: color .25s ease, transform .25s ease;
}

.nav-link span {
  position: relative;
  z-index: 1;
  transition: transform .25s ease, letter-spacing .25s ease;
}

.nav-link:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange-500), #ffbf82);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.nav-link:not(.nav-cta):hover span,
.nav-link[aria-current="page"] span {
  transform: translateY(-2px);
  letter-spacing: .025em;
}

.nav-link:not(.nav-cta):hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header.scrolled .primary-nav {
  color: var(--ink);
}

.nav-cta {
  position: relative;
  overflow: hidden;
  min-width: 128px;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .33) 48%, transparent 76%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.nav-cta:hover {
  color: var(--white);
  border-color: var(--orange-500);
  background: var(--orange-500);
  box-shadow: 0 10px 28px rgba(255, 116, 16, .3);
  transform: translateY(-2px);
}

.nav-cta:hover::before {
  transform: translateX(120%);
}

.site-header.scrolled .nav-cta {
  color: white;
  border-color: var(--blue-850);
  background: var(--blue-850);
}

.site-header.scrolled .nav-cta:hover {
  border-color: var(--orange-500);
  background: var(--orange-500);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(2, 23, 47, .1);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-900);
  transition: transform .25s ease, opacity .25s ease;
}

/* Shared link motion */
.text-link,
.card-link,
.footer-links a,
.back-top,
.breadcrumb a,
.contact-item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  transition: color .25s ease, transform .25s ease, letter-spacing .25s ease;
}

.text-link::after,
.card-link::after,
.footer-links a::after,
.back-top::after,
.breadcrumb a::after,
.contact-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.text-link:hover,
.card-link:hover,
.footer-links a:hover,
.back-top:hover,
.breadcrumb a:hover,
.contact-item a:hover {
  color: var(--orange-500);
  transform: translateY(-2px);
  letter-spacing: .018em;
}

.text-link:hover::after,
.card-link:hover::after,
.footer-links a:hover::after,
.back-top:hover::after,
.breadcrumb a:hover::after,
.contact-item a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.text-link svg,
.card-link svg {
  width: 20px;
  transition: transform .3s ease;
}

.text-link:hover svg,
.card-link:hover svg {
  transform: translateX(6px);
}

.text-link {
  margin-top: 24px;
  color: var(--blue-800);
  font-weight: 800;
}

.card-link {
  margin-top: auto;
  color: #b7d9ff;
  font-size: .82rem;
  font-weight: 800;
}

/* Button motion */
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 53px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: .91rem;
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -40%;
  left: -50%;
  width: 34%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .58), transparent);
  transform: rotate(14deg) translateX(-250%);
  transition: transform .7s cubic-bezier(.2, .75, .2, 1);
}

.button:hover {
  transform: translateY(-4px) scale(1.015);
}

.button:hover::before {
  transform: rotate(14deg) translateX(520%);
}

.button:active {
  transform: translateY(-1px) scale(.99);
}

.button svg {
  width: 20px;
  transition: transform .28s ease;
}

.button:hover svg {
  transform: translateX(6px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 14px 34px rgba(233, 95, 0, .3);
}

.button-primary:hover {
  box-shadow: 0 22px 48px rgba(233, 95, 0, .42);
}

.button-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, .08);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
}

.button-light {
  color: var(--blue-900);
  background: white;
  box-shadow: 0 14px 36px rgba(0, 16, 38, .22);
}

.button-light:hover {
  color: var(--orange-600);
  box-shadow: 0 22px 46px rgba(0, 16, 38, .3);
}

/* Home hero */
.hero {
  position: relative;
  min-height: 920px;
  display: grid;
  align-items: center;
  color: white;
  background: radial-gradient(circle at 82% 22%, rgba(38, 127, 222, .5), transparent 33%), linear-gradient(125deg, var(--blue-950) 0%, var(--blue-900) 58%, #0b4e98 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-500), var(--orange-500), transparent);
  opacity: .7;
}

.hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .55;
}

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

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: -170px;
  top: 180px;
  background: rgba(255, 116, 16, .18);
}

.hero-glow-two {
  width: 330px;
  height: 330px;
  left: -210px;
  bottom: 40px;
  background: rgba(49, 135, 228, .28);
}

.circuit {
  position: absolute;
  width: 320px;
  height: 180px;
  opacity: .45;
  background-image: linear-gradient(90deg, transparent 0 12%, rgba(40, 165, 255, .9) 12% 13%, transparent 13% 32%, rgba(40, 165, 255, .9) 32% 33%, transparent 33%), linear-gradient(rgba(40, 165, 255, .6) 1px, transparent 1px);
  background-size: 100% 38px;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.circuit-left {
  left: -70px;
  top: 220px;
  transform: rotate(8deg);
}

.circuit-right {
  right: -80px;
  bottom: 90px;
  transform: rotate(188deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 72px;
  padding-top: 100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #cde2ff;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--orange-500);
  box-shadow: 0 0 16px rgba(255, 116, 16, .7);
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 6vw, 6rem);
  letter-spacing: -.055em;
}

h1 em {
  color: var(--orange-500);
  font-style: normal;
}

.hero-copy>p {
  max-width: 630px;
  margin: 0 0 34px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, .76);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 640px;
  margin-top: 58px;
  padding: 23px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero-metrics div {
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.hero-metrics div:first-child {
  padding-left: 0;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  font-family: "Space Grotesk";
  font-size: 1.05rem;
  color: white;
}

.hero-metrics span {
  display: block;
  margin-top: 4px;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #91aed0;
}

.hero-visual {
  position: relative;
}

.image-shell {
  position: relative;
  padding: 13px;
  border: 1px solid rgba(125, 195, 255, .42);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .035));
  box-shadow: 0 36px 80px rgba(0, 16, 39, .34), inset 0 0 32px rgba(39, 162, 255, .1);
  transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}

.image-shell::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 36px;
  background: linear-gradient(140deg, rgba(45, 166, 255, .8), transparent 35%, transparent 70%, rgba(255, 116, 16, .55));
  filter: blur(7px);
  opacity: .7;
}

.image-shell img {
  height: 620px;
  object-fit: cover;
  border-radius: 24px;
  filter: saturate(.88) contrast(1.04);
}

.image-overlay {
  position: absolute;
  inset: 13px;
  border-radius: 24px;
  background: linear-gradient(110deg, rgba(4, 35, 74, .24), transparent 50%, rgba(5, 54, 107, .2));
  box-shadow: inset 0 0 80px rgba(2, 23, 47, .25);
}

.hud-corner {
  position: absolute;
  width: 64px;
  height: 64px;
  border-color: #4db6ff;
}

.hud-corner-a {
  left: 4px;
  top: 4px;
  border-left: 3px solid;
  border-top: 3px solid;
  border-radius: 26px 0 0 0;
}

.hud-corner-b {
  right: 4px;
  bottom: 4px;
  border-right: 3px solid var(--orange-500);
  border-bottom: 3px solid var(--orange-500);
  border-radius: 0 0 26px 0;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 20px;
  border: 1px solid rgba(160, 210, 255, .3);
  border-radius: 999px;
  color: white;
  background: rgba(3, 31, 66, .88);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 18, 45, .34);
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

.floating-chip span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 16px var(--orange-500);
}

.chip-one {
  left: -23px;
  top: 50px;
}

.chip-two {
  right: -18px;
  bottom: 58px;
}

.tech-orbit {
  position: absolute;
  border: 1px solid rgba(105, 185, 255, .25);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 150px;
  height: 150px;
  right: -60px;
  top: -60px;
  animation: spin 15s linear infinite;
}

.orbit-two {
  width: 115px;
  height: 115px;
  left: -45px;
  bottom: -45px;
  border-style: dashed;
  animation: spin 11s linear infinite reverse;
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 31px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #a9c7e9;
  transform: translateX(-50%);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-indicator i {
  position: relative;
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--orange-500), transparent);
  overflow: hidden;
}

.scroll-indicator i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -14px;
  width: 1px;
  height: 12px;
  background: white;
  animation: scanDown 1.7s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scanDown {
  to {
    transform: translateY(55px);
  }
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  padding: 150px 0 90px;
  color: white;
  background: radial-gradient(circle at 82% 25%, rgba(32, 128, 224, .48), transparent 34%), linear-gradient(125deg, var(--blue-950), var(--blue-900) 62%, #0b4e98);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 23, 47, .98), rgba(2, 23, 47, .62)), var(--page-image);
  background-size: cover;
  background-position: center;
  opacity: .52;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-500), var(--orange-500), transparent);
}

.page-hero-profile {
  --page-image: url("assets/about.webp");
}

.page-hero-services {
  --page-image: url("assets/ai-chip.webp");
}

.page-hero-values {
  --page-image: url("assets/vr.webp");
}

.page-hero-contact {
  --page-image: url("assets/office.webp");
}

.page-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3.2rem, 6vw, 6.1rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #a7c9ed;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.breadcrumb>span:last-child {
  color: white;
}

/* Sections */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--orange-600);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.section-label-light {
  color: #ff9c51;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .section-label {
  justify-content: center;
}

.section-heading p,
.section-copy p {
  color: var(--muted);
}

.section-heading.centered p {
  max-width: 700px;
  margin-inline: auto;
}

.lead {
  font-size: 1.08rem;
  color: #314155 !important;
}

.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 82px;
  align-items: center;
}

.media-frame {
  position: relative;
}

.media-frame::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 150px;
  height: 150px;
  border-left: 3px solid var(--orange-500);
  border-bottom: 3px solid var(--orange-500);
  border-radius: 0 0 0 22px;
}

.media-frame>img {
  position: relative;
  z-index: 1;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.media-frame-tall>img {
  height: 590px;
}

.media-badge {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 30px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  width: 300px;
  padding: 17px;
  border-radius: 17px;
  background: white;
  box-shadow: var(--shadow-md);
}

.media-badge img {
  width: 46px;
}

.media-badge strong,
.media-badge span {
  display: block;
}

.media-badge strong {
  font-size: .84rem;
}

.media-badge span {
  color: var(--muted);
  font-size: .67rem;
}

.year-badge {
  position: absolute;
  z-index: 2;
  left: -24px;
  bottom: 34px;
  padding: 20px 25px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(145deg, var(--blue-900), var(--blue-700));
  box-shadow: var(--shadow-md);
}

.year-badge strong,
.year-badge span {
  display: block;
}

.year-badge strong {
  font-family: "Space Grotesk";
  font-size: 2rem;
}

.year-badge span {
  color: #b8d5f2;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 28px;
}

.info-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.info-item span,
.info-item strong {
  display: block;
}

.info-item span {
  margin-bottom: 6px;
  color: var(--orange-600);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.info-item strong {
  font-size: .86rem;
  line-height: 1.5;
}

.services-section {
  color: white;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-850));
}

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

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 405px;
  padding: 32px;
  border: 1px solid rgba(150, 204, 255, .16);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  transition: transform .32s ease, border-color .32s ease, background .32s ease, box-shadow .32s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: -40%;
  bottom: -60%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(39, 162, 255, .12);
  filter: blur(8px);
  transition: transform .4s ease, background .4s ease;
}

.service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 116, 16, .6);
  background: linear-gradient(145deg, rgba(11, 90, 171, .5), rgba(255, 255, 255, .04));
  box-shadow: 0 24px 50px rgba(0, 13, 33, .28);
}

.service-card:hover::before {
  transform: translate(55px, -45px);
  background: rgba(255, 116, 16, .14);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  color: var(--orange-500);
  background: rgba(255, 116, 16, .11);
  transition: transform .35s ease, background .35s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-5deg) scale(1.08);
  background: rgba(255, 116, 16, .2);
}

.service-icon svg {
  width: 29px;
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255, 255, 255, .13);
  font-family: "Space Grotesk";
  font-size: 2.1rem;
  font-weight: 700;
}

.service-card h2,
.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 27px 0 13px;
  color: white;
}

.service-card h2 {
  font-size: 1.7rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .65);
  font-size: 1.1rem;
}

.service-card ul {
  position: relative;
  z-index: 1;
  margin: 5px 0 24px;
  padding: 0;
  list-style: none;
  color: #d2e4f8;
  font-size: 1.0rem;
}

.service-card li {
  position: relative;
  padding: 5px 0 5px 17px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 2px;
  background: var(--orange-500);
}

.services-grid-preview .service-card {
  min-height: 350px;
}

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

.service-card-full {
  min-height: 500px;
  scroll-margin-top: 105px;
}

.values-preview-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.value-orbit {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid #dce7f2;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 31%, #f4f8fc 31% 32%, transparent 32%), conic-gradient(from 90deg, rgba(10, 71, 143, .05), rgba(255, 116, 16, .1), rgba(10, 71, 143, .04));
  box-shadow: inset 0 0 0 40px rgba(4, 45, 93, .025);
}

.value-orbit::before,
.value-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(10, 71, 143, .23);
  border-radius: 50%;
  animation: spin 26s linear infinite;
}

.value-orbit::after {
  inset: 25%;
  animation-direction: reverse;
}

.orbit-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  padding: 25px;
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%);
}

.value-orbit>span {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 190px;
  min-height: 54px;
  padding: 11px 18px;
  border: 1px solid #d9e6f3;
  border-radius: 999px;
  text-align: center;
  color: var(--blue-900);
  background: white;
  box-shadow: 0 9px 24px rgba(3, 31, 66, .1);
  font-size: 1rem;
  line-height: 1.28;
  font-weight: 800;
  transform: rotate(calc(var(--i) * 90deg)) translateY(-225px) rotate(calc(var(--i) * -90deg)) translate(-50%, -50%);
  transform-origin: 0 0;
}

.cta-band {
  padding: 68px 0;
  color: white;
  background: linear-gradient(125deg, var(--blue-950), var(--blue-800));
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.vision-section {
  color: white;
  background: linear-gradient(135deg, var(--blue-950), #0a4a92);
}

.vision-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.vision-visual {
  position: relative;
}

.vision-visual>img {
  height: 700px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0, 12, 30, .35);
}

.vision-copy p {
  color: rgba(255, 255, 255, .69);
}

.mission-list {
  margin-top: 30px;
}

.mission-list>div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.mission-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 116, 16, .5);
  border-radius: 50%;
  color: var(--orange-400);
  font-size: .7rem;
  font-weight: 800;
}

.mission-list p {
  margin: 1px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: 1.12rem;
  line-height: 1.58;
  font-weight: 600;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.why-card:hover {
  transform: translateY(-7px);
  border-color: #b8d8f7;
  box-shadow: var(--shadow-md);
}

.why-card>span {
  color: var(--orange-600);
  font-family: "Space Grotesk";
  font-size: .8rem;
  font-weight: 700;
}

.why-card h3 {
  margin: 34px 0 12px;
}

.why-card p {
  color: var(--muted);
  font-size: .87rem;
}

.commitment-section {
  position: relative;
  min-height: 630px;
  display: grid;
  align-items: center;
  color: white;
  overflow: hidden;
}

.commitment-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(2, 23, 47, .97) 0%, rgba(2, 23, 47, .88) 55%, rgba(2, 23, 47, .25) 100%), url("assets/commitment.webp");
  background-size: cover;
  background-position: center;
}

.commitment-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to right, black, transparent);
}

.commitment-content {
  position: relative;
  z-index: 1;
}

.commitment-content h2 {
  max-width: 820px;
}

.commitment-content p {
  max-width: 740px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.04rem;
}

.commitment-content .button {
  margin-top: 18px;
}

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

.process-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: white;
  box-shadow: 0 15px 35px rgba(3, 31, 66, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
  transform: scaleX(.2);
  transform-origin: left;
  transition: transform .35s ease;
}

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

.process-card:hover::after {
  transform: scaleX(1);
}

.process-card>span {
  color: var(--orange-600);
  font-family: "Space Grotesk";
  font-weight: 700;
}

.process-card h3 {
  margin: 54px 0 13px;
}

.process-card p {
  color: var(--muted);
  font-size: .86rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #c1dbf4;
  box-shadow: var(--shadow-md);
}

.value-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.value-card>span {
  color: var(--orange-600);
  font-family: "Space Grotesk";
  font-size: .78rem;
  font-weight: 700;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-top: 18px;
  border-radius: 18px;
  color: var(--blue-900);
  background: linear-gradient(145deg, #eef6ff, #dcecff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), 0 14px 28px rgba(3, 31, 66, .08);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card:hover .value-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 34px rgba(3, 31, 66, .14);
}

.value-card h2 {
  margin: 22px 0 15px;
  font-size: 1.55rem;
}

.value-card p {
  color: var(--muted);
  font-size: .84rem;
}

.value-card.featured {
  color: white;
  background: linear-gradient(145deg, var(--blue-900), var(--blue-700));
  transform: translateY(-15px);
}

.value-card.featured .value-icon {
  color: white;
  background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 14px 28px rgba(0, 0, 0, .18);
}

.value-card.featured p {
  color: rgba(255, 255, 255, .72);
}

.culture-section {
  color: white;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-850));
}

.culture-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 82px;
  align-items: center;
}

.culture-visual {
  position: relative;
}

.culture-visual img {
  height: 610px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 12, 30, .35);
}

.culture-tag {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 18px;
  background: rgba(2, 23, 47, .8);
  backdrop-filter: blur(14px);
}

.culture-tag span,
.culture-tag strong {
  display: block;
}

.culture-tag span {
  color: var(--orange-400);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.practice-list {
  margin: 26px 0 30px;
}

.practice-list>div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.practice-list span {
  color: var(--orange-400);
  font-size: 1.1rem;
  font-weight: 800;
}

.practice-list p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
}

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

.promise-stat {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.promise-stat strong,
.promise-stat span {
  display: block;
}

.promise-stat strong {
  color: var(--orange-600);
  font-family: "Space Grotesk";
  font-size: 2.2rem;
}

.promise-stat span {
  margin-top: 32px;
  font-weight: 800;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: start;
}

.contact-copy>p {
  color: var(--muted);
}

.contact-panel {
  margin-top: 34px;
  padding: 34px;
  border-radius: 25px;
  color: white;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-800));
  box-shadow: var(--shadow-lg);
}

.contact-panel-light {
  margin-top: 30px;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--orange-500);
  background: rgba(255, 116, 16, .14);
  transition: transform .3s ease, background .3s ease;
}

.contact-item:hover .contact-icon {
  transform: rotate(-6deg) scale(1.06);
  background: rgba(255, 116, 16, .22);
}

.contact-icon svg {
  width: 22px;
}

.contact-item span {
  display: block;
  margin-bottom: 3px;
  color: #a9c8ec;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: white;
  font-size: .88rem;
  line-height: 1.65;
}

.contact-form-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.form-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  color: white;
  background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #54d98c;
  box-shadow: 0 0 14px #54d98c;
}

.contact-form {
  padding: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 17px;
}

.contact-form label>span {
  display: block;
  margin-bottom: 7px;
  color: #344457;
  font-size: .72rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d5e0eb;
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #f8fbfe;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-form input,
.contact-form select {
  height: 49px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(39, 162, 255, .12);
}

.button-submit {
  width: 100%;
}

.form-note {
  margin: 13px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .7rem;
}

.office-strip {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  color: white;
  overflow: hidden;
}

.office-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 23, 47, .95), rgba(2, 23, 47, .5)), url("assets/office.webp") center/cover;
}

.office-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.office-content h2 {
  max-width: 700px;
  margin-bottom: 14px;
}

.office-content p {
  color: rgba(255, 255, 255, .74);
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, .72);
  background: #01162f;
}

.footer-top {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 55px 0 35px;
}

.footer-brand {
  padding: 8px 14px;
  border-radius: 14px;
  background: white;
  transition: transform .3s ease, box-shadow .3s ease;
}

.footer-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 32px rgba(0, 0, 0, .3);
}

.footer-brand img {
  height: 56px;
  object-fit: contain;
}

.footer-top p {
  margin: 0;
  max-width: 420px;
  font-size: .86rem;
}

.footer-links {
  display: flex;
  gap: 23px;
  font-size: .8rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .72rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .14s;
}

.reveal-delay-sm {
  transition-delay: .08s;
}

.reveal-delay-md {
  transition-delay: .16s;
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    padding: 145px 0 105px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding-top: 0;
  }

  .image-shell img {
    height: 540px;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-card.featured {
    transform: none;
  }

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

@media (max-width: 900px) {
  .site-header {
    padding: 8px 0;
    background: white;
    box-shadow: 0 8px 30px rgba(2, 23, 47, .08);
  }

  .nav-wrap,
  .site-header.scrolled .nav-wrap {
    min-height: 64px;
    padding: 4px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .brand,
  .site-header.scrolled .brand {
    width: 164px;
    height: 54px;
    padding: 4px 5px 4px 0;
    box-shadow: none;
  }

  .brand img {
    height: 46px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--ink);
    background: white;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

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

  .nav-link {
    padding: 12px;
  }

  .nav-link:not(.nav-cta)::after {
    left: 12px;
    right: auto;
    width: 54px;
  }

  .nav-cta {
    margin-top: 8px;
    color: white;
    border-color: var(--blue-850);
    background: var(--blue-850);
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid,
  .split-grid,
  .vision-grid,
  .values-preview-grid,
  .culture-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 620px;
    margin: 30px auto 0;
  }

  .image-shell img {
    height: 570px;
  }

  .scroll-indicator {
    display: none;
  }

  .split-grid,
  .vision-grid,
  .culture-grid,
  .contact-grid {
    gap: 58px;
  }

  .section-media,
  .vision-visual,
  .culture-visual {
    max-width: 680px;
  }

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

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

  .value-orbit {
    margin-top: 10px;
  }

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

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

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

  .office-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .page-hero {
    min-height: 560px;
    padding: 130px 0 75px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .hero {
    padding: 122px 0 82px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
  }

  .hero-metrics div {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    padding: 9px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .image-shell {
    transform: none;
  }

  .image-shell img {
    height: 430px;
  }

  .floating-chip {
    gap: 8px;
    padding: 11px 14px;
    font-size: .82rem;
  }

  .chip-one {
    left: -4px;
    top: 24px;
  }

  .chip-two {
    right: -4px;
    bottom: 28px;
  }

  .media-frame>img,
  .media-frame-tall>img {
    height: 440px;
  }

  .media-badge {
    right: 10px;
    bottom: 20px;
    width: calc(100% - 20px);
  }

  .year-badge {
    left: 12px;
    bottom: 22px;
  }

  .info-grid,
  .services-grid,
  .services-grid-full,
  .why-cards,
  .process-grid,
  .values-grid,
  .promise-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-full {
    min-height: 410px;
  }

  .value-orbit {
    transform: scale(.82);
    margin-block: -40px;
  }

  .value-orbit>span {
    width: 165px;
    min-height: 48px;
    padding: 9px 14px;
    font-size: .9rem;
    transform: rotate(calc(var(--i) * 90deg)) translateY(-200px) rotate(calc(var(--i) * -90deg)) translate(-50%, -50%);
  }

  .cta-band-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .vision-visual>img,
  .culture-visual img {
    height: 470px;
  }

  .commitment-section {
    min-height: 650px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-panel {
    padding: 26px 20px;
  }

  .office-strip {
    min-height: 560px;
  }

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

  .footer-brand {
    width: 220px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

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

@media (prefers-reduced-motion: reduce) {

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

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

/* Values page readability enhancements */
body[data-page="values"] .section-label {
  gap: 11px;
  margin-bottom: 20px;
  font-size: .9rem;
  letter-spacing: .14em;
}

body[data-page="values"] .section-label::before {
  width: 32px;
  height: 3px;
}

body[data-page="values"] .section-heading>p,
body[data-page="values"] .section-copy>p {
  font-size: 1.08rem;
  line-height: 1.82;
}

body[data-page="values"] .value-card p {
  font-size: 1rem;
  line-height: 1.76;
}

body[data-page="values"] .practice-list p {
  font-size: 1rem;
  line-height: 1.72;
}

body[data-page="values"] .culture-tag strong {
  margin-top: 5px;
  font-size: 1.05rem;
  line-height: 1.55;
}

body[data-page="values"] .culture-tag span {
  font-size: .8rem;
}

body[data-page="values"] .promise-stat span {
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  body[data-page="values"] .section-label {
    font-size: .82rem;
  }

  body[data-page="values"] .section-heading>p,
  body[data-page="values"] .section-copy>p,
  body[data-page="values"] .value-card p,
  body[data-page="values"] .practice-list p,
  body[data-page="values"] .promise-stat span {
    font-size: .96rem;
  }
}