:root {
  --ink: #18212d;
  --muted: #657181;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #e7e0d4;
  --teal: #0f6b6f;
  --blue: #276f9f;
  --gold: #b88a3d;
  --clay: #a75f3f;
  --green: #6f8d5e;
  --shadow: 0 22px 55px rgba(24, 33, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.top-strip {
  background: #1d2835;
  color: #f9f4eb;
  font-size: 0.84rem;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.top-strip a {
  color: #f9f4eb;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(231, 224, 212, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand img {
  width: 82px;
  height: auto;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1;
}

.brand span {
  color: var(--muted);
  display: block;
  font-size: 0.74rem;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  color: #344052;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--teal);
  background: rgba(15, 107, 111, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.is-menu-open .menu-toggle span {
  transform: rotate(45deg);
}

.is-menu-open .menu-toggle span::before {
  opacity: 0;
}

.is-menu-open .menu-toggle span::after {
  transform: translateY(-2px) rotate(90deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(15, 107, 111, 0.2);
}

.btn-primary:hover {
  background: #0b5d60;
}

.btn-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.btn-secondary:hover {
  box-shadow: 0 12px 28px rgba(24, 33, 45, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: center;
  background: #efe9df;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(0deg, var(--paper), rgba(251, 250, 247, 0));
  content: "";
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.86) 32%, rgba(251, 250, 247, 0.24) 68%, rgba(251, 250, 247, 0.12) 100%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 86px 0 128px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--gold);
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  margin-top: 18px;
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 600;
}

.hero-lede {
  max-width: 585px;
  margin: 22px 0 0;
  color: #394656;
  font-size: 1.16rem;
}

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

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: -54px;
  position: relative;
  z-index: 2;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.kpi {
  background: var(--surface);
  padding: 24px;
}

.kpi strong {
  display: block;
  color: var(--teal);
  font-size: 2rem;
  line-height: 1;
}

.kpi span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: #f4f0e8;
}

.section-dark {
  color: #edf6f4;
  background: #1d2835;
}

.section-dark h2,
.section-dark h3,
.section-dark .section-title p,
.section-dark .split-copy p,
.section-dark .list-check li,
.section-dark .metric span {
  color: #edf6f4;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 38px;
}

.section-title h2 {
  max-width: 720px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 550;
}

.section-title p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(24, 33, 45, 0.05);
}

.card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.card-link .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: #ffffff;
  background: var(--teal);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-number.gold {
  background: var(--gold);
}

.service-number.blue {
  background: var(--blue);
}

.service-number.clay {
  background: var(--clay);
}

.service-number.green {
  background: var(--green);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.split-copy p {
  color: var(--muted);
  margin: 18px 0 0;
}

.split-copy h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 550;
}

.list-check {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  color: #394656;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
}

.list-check li::before {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 6px #dbecea;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.metric {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.metric strong {
  display: block;
  color: #f7c66d;
  font-size: 2.2rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: #cbd9dc;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: #405064;
  background: #fffdf9;
  font-size: 0.9rem;
}

.page-hero {
  padding: 86px 0 58px;
  background: #efe9df;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #405064;
  font-size: 1.12rem;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--teal);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--teal);
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.table-like {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.table-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row strong {
  color: var(--ink);
}

.table-row span {
  color: var(--muted);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.logo-strip figure {
  display: grid;
  min-height: 118px;
  place-items: center;
  margin: 0;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logo-strip img {
  max-height: 64px;
  width: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}

.contact-panel h2 {
  margin-bottom: 22px;
  font-size: 1.7rem;
}

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

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-list a,
.contact-list strong {
  color: var(--ink);
  font-weight: 750;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #405064;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

.text-link::after {
  content: " ->";
}

.cta-band {
  padding: 48px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d2835, #0f6b6f);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.cta-band p {
  max-width: 680px;
  margin: 12px 0 0;
  color: #dcebea;
}

.site-footer {
  margin-top: auto;
  color: #dcebea;
  background: #18212d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
  padding: 56px 0 34px;
}

.footer-main h2,
.footer-main h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-main p,
.footer-main li,
.footer-main a {
  color: #c7d2d6;
}

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

.footer-brand img {
  width: 88px;
  margin-bottom: 16px;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aebdc5;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .is-menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(251, 250, 247, 0.94) 0%, rgba(251, 250, 247, 0.85) 58%, rgba(251, 250, 247, 0.38) 100%);
  }

  .hero-content {
    padding: 72px 0 114px;
  }

  .hero-kpis,
  .grid-3,
  .grid-4,
  .metric-row,
  .logo-strip,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .contact-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .section-title {
    display: block;
  }

  .section-title p {
    margin-top: 16px;
  }
}

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

  .top-strip .container {
    display: grid;
    gap: 4px;
  }

  .brand strong,
  .brand span {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 74px;
  }

  .nav-links {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .hero-content {
    padding: 58px 0 98px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-kpis,
  .grid-2,
  .grid-3,
  .grid-4,
  .metric-row,
  .logo-strip,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 58px 0 42px;
  }

  .card,
  .contact-panel {
    padding: 22px;
  }

  .table-row,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cta-band {
    padding: 30px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Premium minimal refresh */
:root {
  --ink: #0b0d12;
  --muted: #6e7480;
  --paper: #ffffff;
  --surface: #ffffff;
  --line: #e8e8ed;
  --teal: #0071e3;
  --blue: #0071e3;
  --gold: #bf8b2e;
  --clay: #c45f3d;
  --green: #2f8f6d;
  --soft: #f5f5f7;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
}

body {
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.top-strip,
.site-footer {
  background: #0b0d12;
}

.site-header {
  background: rgba(255, 255, 255, 0.76);
  border-bottom-color: rgba(232, 232, 237, 0.72);
  backdrop-filter: saturate(180%) blur(22px);
}

.nav-links a {
  color: #343741;
  font-weight: 590;
}

.btn {
  border-radius: 999px;
  font-weight: 650;
}

.btn-primary {
  background: #0071e3;
  box-shadow: 0 18px 34px rgba(0, 113, 227, 0.2);
}

.btn-primary:hover {
  background: #0064c9;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

h1,
h2,
h3,
h4,
.section-title h2,
.split-copy h2,
.page-hero h1,
.cta-band h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  font-weight: 740;
}

.section-title h2,
.split-copy h2,
.page-hero h1 {
  font-weight: 720;
}

.hero,
.page-hero,
.section-alt {
  background: var(--soft);
}

.hero::after {
  background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, 0));
}

.hero-media img {
  will-change: transform;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 33%, rgba(255, 255, 255, 0.12) 68%, rgba(255, 255, 255, 0) 100%);
}

.hero-kpis {
  border-radius: 26px;
  border-color: rgba(232, 232, 237, 0.86);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.08);
}

.kpi strong,
.metric strong {
  font-family: inherit;
  font-weight: 720;
}

.section-dark {
  background: #0b0d12;
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.section-dark .card p {
  color: #c6cad2;
}

.card,
.contact-panel,
.table-like,
.logo-strip figure {
  border-color: rgba(232, 232, 237, 0.92);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.045);
}

.card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 113, 227, 0.22);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.08);
}

.service-number {
  border-radius: 999px;
}

.split-media {
  border-radius: 30px;
  background: #e8e8ed;
}

.split-media img,
.parallax-media img {
  transform: scale(1.04);
  will-change: transform;
}

.cta-band {
  border-radius: 30px;
  background: radial-gradient(circle at 82% 15%, rgba(0, 113, 227, 0.58), transparent 32%), linear-gradient(135deg, #0b0d12, #1b1f2a);
}

.service-image-grid,
.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-image-card,
.product-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.045);
}

.service-image-card img,
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-image-card:hover img,
.product-card:hover img {
  transform: scale(1.055);
}

.service-image-card div,
.product-card div {
  padding: 18px;
}

.service-image-card h3,
.product-card h3 {
  margin: 0 0 6px;
  font-size: 1.03rem;
  letter-spacing: -0.02em;
}

.service-image-card p,
.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 6px 0 18px;
  scroll-snap-type: x mandatory;
}

.product-strip .product-card {
  scroll-snap-align: start;
}

.parallax-media {
  overflow: hidden;
  border-radius: 30px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-frame {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.hero .hero-media img {
  object-position: center right;
}

.hero-content {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card.is-visible:hover,
.service-image-card.is-visible:hover,
.product-card.is-visible:hover {
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .card,
  .service-image-card img,
  .product-card img {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 56%, rgba(255, 255, 255, 0.28) 100%);
  }

  .service-image-grid,
  .product-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 3.2rem;
  }

  .service-image-grid,
  .product-showcase {
    grid-template-columns: 1fr;
  }
}

/* Cinematic motion layer */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #0071e3, #6ed6ff, #d8a84c);
  box-shadow: 0 0 24px rgba(0, 113, 227, 0.45);
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(0, 113, 227, 0.12), rgba(216, 168, 76, 0.055) 36%, transparent 68%);
  transition: opacity 260ms ease;
  mix-blend-mode: multiply;
}

body.is-pointer-active .cursor-glow {
  opacity: 1;
}

body.is-scrolled .site-header {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.07);
}

body.is-scrolled .nav {
  min-height: 66px;
}

.hero-media img {
  animation: heroImageEnter 1300ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-lede,
.hero-actions {
  animation: heroTextEnter 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-content h1 {
  animation-delay: 80ms;
}

.hero-lede {
  animation-delay: 170ms;
}

.hero-actions {
  animation-delay: 260ms;
}

.hero-content {
  transform: translate3d(0, calc(var(--hero-depth, 0) * -18px), 0);
  transition: transform 80ms linear;
}

.hero-kpis {
  transform: translate3d(0, calc(var(--hero-depth, 0) * -26px), 0);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 820ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.split-media,
.parallax-media,
.map-frame {
  position: relative;
}

.split-media::after,
.parallax-media::after,
.map-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  content: "";
  transform: translateX(-105%);
  transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.split-media.is-visible::after,
.parallax-media.is-visible::after,
.map-frame.is-visible::after {
  transform: translateX(105%);
}

.card,
.service-image-card,
.product-card,
.metric,
.kpi,
.logo-strip figure,
.contact-panel {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.card::after,
.service-image-card::after,
.product-card::after,
.metric::after,
.kpi::after,
.contact-panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.18) 20%, transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 48%);
  transition: opacity 220ms ease;
  content: "";
  mix-blend-mode: overlay;
}

.card:hover::after,
.service-image-card:hover::after,
.product-card:hover::after,
.metric:hover::after,
.kpi:hover::after,
.contact-panel:hover::after {
  opacity: 0.8;
}

.service-image-card img,
.product-card img {
  transform: scale(1.015);
}

.service-image-card.is-visible:hover img,
.product-card.is-visible:hover img {
  transform: scale(1.075);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  position: absolute;
  inset: -70% auto -70% -40%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  content: "";
  transform: translateX(-160%) rotate(18deg);
  transition: transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn:hover::after {
  transform: translateX(520%) rotate(18deg);
}

@keyframes heroTextEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroImageEnter {
  from {
    opacity: 0;
    transform: scale(1.1) translate3d(0, 18px, 0);
    filter: blur(12px) saturate(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1.06) translate3d(0, 0, 0);
    filter: blur(0) saturate(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .cursor-glow {
    display: none;
  }

  .hero-media img,
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-lede,
  .hero-actions {
    animation: none;
  }

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