:root {
  --het-black: #050807;
  --graphite: #18211d;
  --deep-circuit: #0b2a20;
  --signal-green: #00a86b;
  --corporate-green: #007a4d;
  --accent-mint: #7dffb2;
  --soft-white: #f3f7f2;
  --paper: #fbfcfa;
  --steel-mist: #b9c6be;
  --warm-metal: #c1a36b;
  --line-dark: rgba(243, 247, 242, 0.16);
  --line-light: rgba(24, 33, 29, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --max: 1180px;
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--graphite);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 36px;
  color: var(--soft-white);
  background: linear-gradient(180deg, rgba(5, 8, 7, 0.88), rgba(5, 8, 7, 0.48) 72%, rgba(5, 8, 7, 0));
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(5, 8, 7, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: 264px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.1;
}

.site-nav a {
  padding: 10px 0;
  text-decoration: none;
  color: rgba(243, 247, 242, 0.82);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--soft-white);
}

.nav-cta {
  border: 1px solid rgba(125, 255, 178, 0.72);
  border-radius: var(--radius);
  padding: 17px 24px !important;
  color: var(--soft-white) !important;
  background: rgba(0, 168, 107, 0.18);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(243, 247, 242, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 8, 7, 0.5);
  color: var(--soft-white);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--het-black);
  color: var(--soft-white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/optimized/hero-event-1800.jpg");
  background-size: cover;
  background-position: 50% 48%;
  filter: saturate(0.86) contrast(1.05);
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.94) 0%, rgba(5, 8, 7, 0.8) 36%, rgba(5, 8, 7, 0.28) 72%),
    linear-gradient(180deg, rgba(5, 8, 7, 0.32) 0%, rgba(5, 8, 7, 0.68) 100%);
}

.hero-content {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 204px 0 52px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-mint);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--corporate-green);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 4.9rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin-bottom: 34px;
}

.hero-title span {
  display: block;
  line-height: 0.9;
}

.hero-title span:first-child {
  margin-bottom: 10px;
}

.hero-title-emphasis {
  color: var(--accent-mint);
  font-size: 1.52em;
  font-weight: 900;
}

h2 {
  font-size: 2.8rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  color: rgba(243, 247, 242, 0.84);
  font-size: 1.34rem;
  font-weight: 700;
}

.hero-confidence {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--accent-mint);
  font-size: 1rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--het-black);
  background: var(--accent-mint);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #a3ffc9;
}

.hero-cta {
  position: relative;
  overflow: hidden;
  min-height: 70px;
  padding: 20px 38px;
  border-color: rgba(184, 255, 210, 0.78);
  box-shadow:
    0 18px 46px rgba(0, 168, 107, 0.24),
    0 0 0 1px rgba(243, 247, 242, 0.12) inset;
  font-size: 1.19rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: hero-cta-grow 4.8s ease-in-out infinite;
}

.hero-cta::after {
  content: "";
  position: absolute;
  inset: -80% -45%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.12) 43%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 255, 255, 0.14) 57%,
    transparent 65%
  );
  transform: translateX(-72%) rotate(8deg);
  animation: hero-cta-shimmer 5.6s linear infinite;
  pointer-events: none;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  box-shadow:
    0 22px 54px rgba(0, 168, 107, 0.34),
    0 0 0 1px rgba(243, 247, 242, 0.18) inset;
}

@keyframes hero-cta-grow {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

@keyframes hero-cta-shimmer {
  0% {
    transform: translateX(-72%) rotate(8deg);
  }

  100% {
    transform: translateX(72%) rotate(8deg);
  }
}

.button.secondary {
  color: var(--soft-white);
  border-color: rgba(243, 247, 242, 0.42);
  background: rgba(5, 8, 7, 0.42);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(243, 247, 242, 0.8);
}

.section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 82px 0;
}

.body-copy {
  color: rgba(24, 33, 29, 0.8);
  font-size: 1.1rem;
}

.band-dark,
.band-light {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100% - var(--max)) / 2));
}

.band-dark {
  color: var(--soft-white);
  background:
    linear-gradient(180deg, rgba(11, 42, 32, 0.95), rgba(5, 8, 7, 1)),
    var(--het-black);
}

.band-light {
  background: #edf2ee;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: rgba(243, 247, 242, 0.72);
  font-size: 1.05rem;
}

.band-light .section-heading p:not(.eyebrow),
.proof-safe .section-heading p:not(.eyebrow) {
  color: rgba(24, 33, 29, 0.76);
}

.section-heading.narrow {
  max-width: 700px;
}

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

.capability-card {
  min-height: 250px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(243, 247, 242, 0.045);
}

.capability-card span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--accent-mint);
  font-weight: 800;
}

.capability-card h3 {
  color: var(--soft-white);
}

.capability-card p {
  color: rgba(243, 247, 242, 0.72);
  margin-bottom: 0;
}

.fact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.fact-list div {
  border-top: 1px solid var(--line-light);
  padding-top: 14px;
}

.fact-list dt {
  color: var(--corporate-green);
  font-weight: 800;
}

.fact-list dd {
  margin: 2px 0 0;
  color: rgba(24, 33, 29, 0.78);
}

.proof-safe,
#solutions {
  position: relative;
  border: 1px solid rgba(0, 168, 107, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(#edf2ee, #edf2ee) padding-box,
    linear-gradient(110deg, rgba(0, 168, 107, 0.08), rgba(184, 255, 210, 0.42), rgba(0, 168, 107, 0.08)) border-box;
  overflow: hidden;
  isolation: isolate;
}

.proof-safe {
  width: 100%;
  max-width: none;
  padding-top: 32px;
  padding-inline: max(24px, calc((100% - var(--max)) / 2));
}

.proof-safe::before,
.proof-safe::after,
#solutions::before,
#solutions::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}

.proof-safe > *,
#solutions > * {
  position: relative;
  z-index: 1;
}

.proof-safe::before,
#solutions::before {
  border: 1px solid rgba(0, 168, 107, 0.28);
  background:
    radial-gradient(ellipse 13px 6px at 18px 16px, rgba(0, 168, 107, 0.28), transparent 70%),
    radial-gradient(ellipse 12px 6px at calc(100% - 18px) 28px, rgba(0, 168, 107, 0.26), transparent 70%),
    radial-gradient(ellipse 13px 6px at 30px calc(100% - 16px), rgba(0, 168, 107, 0.24), transparent 70%),
    radial-gradient(ellipse 12px 6px at calc(100% - 30px) calc(100% - 18px), rgba(0, 168, 107, 0.28), transparent 70%),
    radial-gradient(ellipse 8px 13px at 8px 42px, rgba(0, 168, 107, 0.22), transparent 72%),
    radial-gradient(ellipse 8px 13px at calc(100% - 8px) calc(100% - 42px), rgba(0, 168, 107, 0.22), transparent 72%),
    linear-gradient(90deg, rgba(0, 168, 107, 0.28), transparent 18%, transparent 82%, rgba(0, 168, 107, 0.28)),
    linear-gradient(180deg, rgba(0, 168, 107, 0.28), transparent 18%, transparent 82%, rgba(0, 168, 107, 0.28));
  background-size: 130px 100%, 150px 100%, 160px 100%, 140px 100%, 100% 124px, 100% 138px, 100% 1px, 1px 100%;
  background-repeat: repeat-x, repeat-x, repeat-x, repeat-x, repeat-y, repeat-y, repeat-x, repeat-y;
  opacity: 0.9;
  animation: proof-ivy-drift 12.5s linear infinite;
  -webkit-mask-image:
    linear-gradient(#000 0 0),
    linear-gradient(#000 0 0);
  -webkit-mask-size: 100% 30px, 30px 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0, 0 0;
  mask-image:
    linear-gradient(#000 0 0),
    linear-gradient(#000 0 0);
  mask-size: 100% 30px, 30px 100%;
  mask-repeat: no-repeat;
  mask-position: 0 0, 0 0;
}

.proof-safe::after,
#solutions::after {
  background:
    radial-gradient(ellipse 11px 5px at 0% 14%, rgba(0, 168, 107, 0.32), transparent 70%),
    radial-gradient(ellipse 11px 5px at 100% 28%, rgba(0, 168, 107, 0.3), transparent 70%),
    radial-gradient(ellipse 11px 5px at 18% 0%, rgba(0, 168, 107, 0.32), transparent 70%),
    radial-gradient(ellipse 11px 5px at 72% 100%, rgba(0, 168, 107, 0.28), transparent 70%),
    radial-gradient(ellipse 7px 12px at 100% 64%, rgba(0, 168, 107, 0.24), transparent 72%),
    radial-gradient(ellipse 7px 12px at 0% 80%, rgba(0, 168, 107, 0.22), transparent 72%),
    linear-gradient(90deg, transparent 0 3%, rgba(0, 168, 107, 0.28) 9%, transparent 18% 82%, rgba(0, 168, 107, 0.28) 91%, transparent 97%),
    linear-gradient(180deg, transparent 0 3%, rgba(0, 168, 107, 0.24) 9%, transparent 18% 82%, rgba(0, 168, 107, 0.24) 91%, transparent 97%);
  background-size: 100% 84px, 100% 104px, 142px 100%, 170px 100%, 100% 116px, 100% 132px, 100% 100%, 100% 100%;
  background-repeat: repeat-y, repeat-y, repeat-x, repeat-x, repeat-y, repeat-y, no-repeat, no-repeat;
  animation: proof-ivy-pulse 5.8s ease-in-out infinite;
  -webkit-mask-image:
    linear-gradient(#000 0 0),
    linear-gradient(#000 0 0);
  -webkit-mask-size: 100% 38px, 38px 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 100%, 100% 0;
  mask-image:
    linear-gradient(#000 0 0),
    linear-gradient(#000 0 0);
  mask-size: 100% 38px, 38px 100%;
  mask-repeat: no-repeat;
  mask-position: 0 100%, 100% 0;
}

.proof-safe::before,
#solutions::before {
  animation-duration: 15s;
}

.proof-safe::after,
#solutions::after {
  animation-delay: -2.4s;
}

.proof-safe h2 {
  text-align: center;
  white-space: nowrap;
}

.proof-safe .section-heading {
  max-width: none;
  margin-inline: auto;
}

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

.why-grid article {
  border-top: 2px solid var(--corporate-green);
  padding: 22px 22px 0 0;
}

.why-grid p {
  color: rgba(24, 33, 29, 0.76);
}

@keyframes proof-ivy-drift {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 100% 0, 0 0, 0 0;
  }

  100% {
    background-position: 130px 0, -150px 0, -160px 0, 140px 0, 0 124px, 100% -138px, 100% 0, 0 100%;
  }
}

@keyframes proof-ivy-pulse {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.85;
  }
}

.technology-section {
  width: 100%;
  max-width: none;
  padding: 0;
}

.technology-banner {
  position: relative;
  aspect-ratio: 2400 / 820;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 28px;
  color: var(--soft-white);
  background: var(--het-black);
}

.technology-banner img,
.technology-banner-overlay {
  position: absolute;
  inset: 0;
}

.technology-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.08);
}

.technology-banner-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.72), rgba(5, 8, 7, 0.18) 48%, rgba(5, 8, 7, 0.72)),
    linear-gradient(180deg, rgba(5, 8, 7, 0.1), rgba(5, 8, 7, 0.44));
}

.technology-banner h2 {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 32px;
  color: var(--soft-white);
  background:
    linear-gradient(
      95deg,
      #ffffff 0%,
      #ffffff 20%,
      #7dffb2 30%,
      #00ff95 39%,
      #ffffff 46%,
      #b8ffd2 52%,
      #00a86b 60%,
      #ffffff 72%,
      #ffffff 100%
    );
  background-size: 420% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 5.3rem;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 5px rgba(125, 255, 178, 0.34))
    drop-shadow(0 0 16px rgba(0, 168, 107, 0.38))
    drop-shadow(0 18px 32px rgba(5, 8, 7, 0.86));
  animation:
    technology-shimmer 4.6s linear infinite,
    technology-glow-pulse 4.8s ease-in-out infinite;
}

.technology-banner h2::before,
.technology-banner h2::after {
  content: "CUTTING EDGE TECHNOLOGY";
  position: absolute;
  inset: 32px;
  z-index: -1;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
}

.technology-banner h2::before {
  color: rgba(125, 255, 178, 0.14);
  filter: blur(12px);
  transform: scale(1.035);
  animation: technology-aura 4.8s ease-in-out infinite;
}

.technology-banner h2::after {
  color: transparent;
  background:
    linear-gradient(100deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.92) 48%, rgba(125, 255, 178, 0.92) 52%, transparent 62%, transparent 100%);
  background-size: 260% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px rgba(184, 255, 210, 0.42);
  animation: technology-flash-sweep 3.8s linear infinite;
}

.technology-sparks {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.technology-sparks span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 255, 210, 0), rgba(184, 255, 210, 0.82), rgba(255, 255, 255, 0));
  opacity: 0;
  transform-origin: center;
  filter: drop-shadow(0 0 8px rgba(125, 255, 178, 0.46));
  animation: technology-spark 4.6s ease-out infinite;
}

.technology-sparks span:nth-child(1) {
  --spark-x: -370px;
  --spark-y: -118px;
  --spark-rotate: -18deg;
  animation-delay: 0.1s;
}

.technology-sparks span:nth-child(2) {
  --spark-x: 360px;
  --spark-y: -96px;
  --spark-rotate: 22deg;
  animation-delay: 0.55s;
}

.technology-sparks span:nth-child(3) {
  --spark-x: -330px;
  --spark-y: 92px;
  --spark-rotate: 190deg;
  animation-delay: 1.15s;
}

.technology-sparks span:nth-child(4) {
  --spark-x: 330px;
  --spark-y: 108px;
  --spark-rotate: 166deg;
  animation-delay: 1.75s;
}

.technology-sparks span:nth-child(5) {
  --spark-x: -72px;
  --spark-y: -152px;
  --spark-rotate: -82deg;
  width: 34px;
  animation-delay: 2.35s;
}

.technology-sparks span:nth-child(6) {
  --spark-x: 92px;
  --spark-y: 150px;
  --spark-rotate: 94deg;
  width: 34px;
  animation-delay: 2.95s;
}

.technology-sparks span:nth-child(7) {
  --spark-x: -460px;
  --spark-y: 0;
  --spark-rotate: 180deg;
  width: 38px;
  animation-delay: 3.45s;
}

.technology-sparks span:nth-child(8) {
  --spark-x: 460px;
  --spark-y: 8px;
  --spark-rotate: 0deg;
  width: 38px;
  animation-delay: 4s;
}

@keyframes technology-shimmer {
  0% {
    background-position: 180% 0;
  }

  100% {
    background-position: -180% 0;
  }
}

@keyframes technology-glow-pulse {
  0%,
  100% {
    filter:
      drop-shadow(0 0 5px rgba(125, 255, 178, 0.3))
      drop-shadow(0 0 16px rgba(0, 168, 107, 0.34))
      drop-shadow(0 18px 32px rgba(5, 8, 7, 0.86));
  }

  50% {
    filter:
      drop-shadow(0 0 10px rgba(184, 255, 210, 0.58))
      drop-shadow(0 0 28px rgba(0, 255, 149, 0.46))
      drop-shadow(0 22px 44px rgba(5, 8, 7, 0.92));
  }
}

@keyframes technology-aura {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1.03);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.075);
  }
}

@keyframes technology-flash-sweep {
  0% {
    background-position: 150% 0;
  }

  100% {
    background-position: -150% 0;
  }
}

@keyframes technology-spark {
  0%,
  68% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--spark-rotate)) scaleX(0.1);
  }

  73% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--spark-x)), calc(-50% + var(--spark-y))) rotate(var(--spark-rotate)) scaleX(1);
  }
}

.technology-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--het-black);
}

.technology-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--soft-white);
  background: var(--het-black);
  text-decoration: none;
  transform: scale(1);
  transition: transform 420ms ease, box-shadow 420ms ease, filter 420ms ease;
}

.technology-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.08) 0%, rgba(5, 8, 7, 0.74) 100%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.58), rgba(5, 8, 7, 0.08));
  transition: opacity 420ms ease;
}

.technology-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 2px solid rgba(125, 255, 178, 0.92);
  box-shadow:
    inset 0 0 24px rgba(0, 168, 107, 0.42),
    inset 0 0 5px rgba(184, 255, 210, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease, box-shadow 420ms ease;
}

.technology-card:hover,
.technology-card:focus-visible {
  z-index: 3;
  transform: scale(1.045);
  box-shadow:
    0 0 0 1px rgba(125, 255, 178, 0.72),
    0 0 30px rgba(0, 168, 107, 0.72),
    0 26px 70px rgba(0, 0, 0, 0.46);
  filter: saturate(1.08) contrast(1.04);
  outline: 0;
}

.technology-card:hover::before,
.technology-card:focus-visible::before {
  opacity: 1;
}

.technology-card:hover::after,
.technology-card:focus-visible::after {
  opacity: 0.82;
}

.technology-media,
.technology-media img,
.technology-media video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 620ms ease;
}

.technology-card:hover .technology-media img,
.technology-card:hover .technology-media video,
.technology-card:focus-visible .technology-media img,
.technology-card:focus-visible .technology-media video {
  transform: scale(1.035);
}

.technology-card:nth-child(2) .technology-media video {
  object-position: 50% 18%;
}

.technology-card:nth-child(1) .technology-media img {
  object-position: 50% 68%;
}

.technology-media {
  overflow: hidden;
  background: var(--het-black);
}

.technology-copy {
  max-width: 560px;
  padding: 42px;
  transform: translateY(0);
  transition: transform 420ms ease;
}

.technology-card:hover .technology-copy,
.technology-card:focus-visible .technology-copy {
  transform: translateY(-10px);
}

.technology-grid h3 {
  margin: 0 0 12px;
  color: var(--soft-white);
  font-size: 2.25rem;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(5, 8, 7, 0.74);
}

.visual-strip {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  padding: 0;
  background: var(--het-black);
}

.proof-video-strip {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--het-black) 0%, rgba(5, 8, 7, 0) 34%, rgba(237, 242, 238, 0) 66%, #edf2ee 100%);
}

.proof-video-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.88) 0%, rgba(5, 8, 7, 0.38) 8%, rgba(5, 8, 7, 0) 20%),
    linear-gradient(0deg, #edf2ee 0%, rgba(237, 242, 238, 0.52) 9%, rgba(237, 242, 238, 0) 22%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.3) 0%, rgba(5, 8, 7, 0) 13%, rgba(5, 8, 7, 0) 87%, rgba(5, 8, 7, 0.24) 100%);
}

.proof-video-strip video {
  display: block;
  width: 100%;
  min-height: 460px;
  max-height: 620px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) blur(0.2px);
  transform: scale(1.012);
}

.visual-strip figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
}

.visual-strip img,
.visual-strip video {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.visual-strip figure:nth-child(2) img {
  object-position: 50% 54%;
}

.visual-strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--soft-white);
  background: rgba(5, 8, 7, 0.72);
  font-size: 0.86rem;
}

.solution-list {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.solution-list a {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.solution-list a:hover span,
.solution-list a:focus-visible span {
  color: var(--corporate-green);
}

.solution-list span {
  font-size: 1.3rem;
  font-weight: 800;
}

.solution-list strong {
  color: rgba(24, 33, 29, 0.76);
  font-weight: 500;
}

.process-section {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 760px;
  isolation: isolate;
  padding-top: 118px;
  padding-bottom: 118px;
  padding-inline: max(24px, calc((100% - var(--max)) / 2));
  color: var(--soft-white);
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.52), rgba(5, 8, 7, 0.74)),
    url("assets/optimized/approach-background-web.jpg") center 42% / 100% auto no-repeat;
}

.process-section .section-heading p:not(.eyebrow) {
  color: rgba(243, 247, 242, 0.76);
}

.process-section h2 {
  color: var(--soft-white);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.96),
    0 8px 24px rgba(0, 0, 0, 0.72);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  border: 1px solid rgba(243, 247, 242, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(5, 8, 7, 0.58);
  backdrop-filter: blur(12px);
}

.process-list p {
  color: rgba(243, 247, 242, 0.76);
}

.about-section {
  position: relative;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  align-items: center;
  gap: 56px;
  padding-inline: max(24px, calc((100% - var(--max)) / 2));
  color: var(--soft-white);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 168, 107, 0.22), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(184, 255, 210, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(7, 27, 22, 0.98), rgba(5, 8, 7, 1) 58%, rgba(11, 42, 32, 0.96));
  overflow: hidden;
  isolation: isolate;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(184, 255, 210, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(184, 255, 210, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 76%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 76%);
  opacity: 0.42;
}

.about-section > * {
  position: relative;
  z-index: 1;
}

.about-section p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(243, 247, 242, 0.76);
  font-size: 1.08rem;
}

.about-section h2 {
  margin-bottom: 0;
}

.request-section {
  position: relative;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 52px;
  align-items: center;
  margin: 0;
  padding: 94px max(24px, calc((100% - var(--max)) / 2));
  color: var(--soft-white);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 168, 107, 0.22), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(184, 255, 210, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(7, 27, 22, 0.98), rgba(5, 8, 7, 1) 58%, rgba(11, 42, 32, 0.96));
  overflow: hidden;
  isolation: isolate;
}

.request-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(184, 255, 210, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(184, 255, 210, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 76%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 76%);
  opacity: 0.42;
}

.request-section > * {
  position: relative;
  z-index: 1;
}

.request-copy {
  align-self: center;
  transform: translateY(-28px);
}

.request-copy .eyebrow {
  max-width: 520px;
  margin-bottom: 56px;
  color: var(--accent-mint);
  font-size: 3.4rem;
  line-height: 0.92;
  text-shadow: 0 0 28px rgba(0, 168, 107, 0.34);
}

.request-copy h2 {
  margin-bottom: 30px;
  color: var(--soft-white);
}

.request-arrow {
  position: relative;
  width: 202px;
  height: 46px;
  margin-top: 6px;
  color: var(--accent-mint);
  animation: request-arrow-nudge 1.35s ease-in-out infinite;
}

.request-arrow::before,
.request-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: currentColor;
}

.request-arrow::before {
  left: 0;
  width: 164px;
  height: 8px;
  border-radius: 999px;
}

.request-arrow::after {
  right: 0;
  width: 34px;
  height: 34px;
  border-top: 8px solid currentColor;
  border-right: 8px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

@keyframes request-arrow-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(18px);
  }
}

.request-copy p:not(.eyebrow) {
  color: rgba(243, 247, 242, 0.78);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid rgba(184, 255, 210, 0.28);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(243, 247, 242, 0.94);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(18px);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: rgba(24, 33, 29, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 33, 29, 0.22);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--graphite);
  background: #fff;
}

.request-form textarea::placeholder {
  color: rgba(24, 33, 29, 0.44);
  font-style: italic;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 3px solid rgba(0, 168, 107, 0.22);
  border-color: var(--corporate-green);
}

.request-form .full {
  grid-column: 1 / -1;
}

.checkbox {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 600 !important;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.checkbox span {
  color: rgba(24, 33, 29, 0.72);
  font-size: 0.86rem;
}

.form-note {
  color: rgba(24, 33, 29, 0.62) !important;
  font-size: 0.92rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--corporate-green);
  font-weight: 800;
}

.form-status.is-error {
  color: #8f261f;
}

.request-video-band {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: var(--het-black);
}

.request-video-band video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.subpage-hero {
  width: 100%;
  max-width: none;
  padding: 150px max(24px, calc((100% - var(--max)) / 2)) 82px;
  color: var(--soft-white);
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.95), rgba(11, 42, 32, 0.86)),
    var(--het-black);
}

.subpage-hero h1 {
  max-width: 920px;
  font-size: 4rem;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(243, 247, 242, 0.78);
  font-size: 1.16rem;
}

.content-page {
  width: min(100% - 48px, 900px);
  margin: 0 auto;
  padding: 84px 0;
}

.content-page h2 {
  margin-top: 42px;
  font-size: 2rem;
}

.content-page p,
.content-page li {
  color: rgba(24, 33, 29, 0.78);
}

.content-page a {
  color: var(--corporate-green);
  font-weight: 800;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.service-detail-grid article {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
}

.mini-cta {
  margin-top: 44px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 24px;
  background: #edf2ee;
}

.mini-cta p {
  max-width: 680px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: start;
  padding: 48px max(24px, calc((100% - var(--max)) / 2));
  color: var(--soft-white);
  background: var(--het-black);
}

.site-footer p,
.site-footer address,
.site-footer nav a {
  color: rgba(243, 247, 242, 0.72);
}

.site-footer address {
  font-style: normal;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-mint);
}

.site-footer img {
  width: 144px;
  height: auto;
}

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

  h2 {
    font-size: 2.35rem;
  }

  .site-nav {
    gap: 14px;
    font-size: 1.02rem;
  }

  .brand-link img {
    width: 232px;
  }

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

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

  .technology-banner h2 {
    font-size: 3.15rem;
  }

  .proof-safe h2 {
    font-size: 2rem;
  }

  .process-section {
    min-height: 680px;
    background:
      linear-gradient(180deg, rgba(5, 8, 7, 0.54), rgba(5, 8, 7, 0.76)),
      url("assets/optimized/approach-background-web.jpg") center 45% / cover no-repeat;
  }

  .request-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .request-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .request-copy {
    position: static;
    transform: none;
  }

  .request-copy .eyebrow {
    font-size: 2.7rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand-link img {
    width: 176px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(5, 8, 7, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 920px;
  }

  .hero-media {
    background-position: 51% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 8, 7, 0.86) 0%, rgba(5, 8, 7, 0.78) 50%, rgba(5, 8, 7, 0.94) 100%),
      rgba(5, 8, 7, 0.5);
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding: 166px 0 86px;
  }

  h1 {
    font-size: 3.1rem;
    line-height: 1;
  }

  .hero-title {
    gap: 10px;
    font-size: 2.14rem;
  }

  .hero-title-emphasis {
    font-size: 1.34em;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-confidence {
    font-size: 0.96rem;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 72px 0;
  }

  .band-dark,
  .band-light,
  .process-section,
  .about-section {
    width: 100%;
    padding-inline: 16px;
  }

  .request-section {
    padding-inline: 16px;
  }

  .capability-grid,
  .why-grid,
  .process-list,
  .service-detail-grid,
  .visual-strip,
  .request-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .technology-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .technology-card {
    min-height: 340px;
  }

  .technology-copy {
    padding: 28px 16px;
  }

  .technology-grid h3 {
    font-size: 1.7rem;
  }

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

  .technology-banner h2 {
    padding: 24px;
    font-size: 1.55rem;
  }

  .proof-safe h2 {
    font-size: 1.35rem;
  }

  .proof-video-strip video {
    min-height: 260px;
  }

  .request-copy .eyebrow {
    font-size: 2.15rem;
  }

  .request-video-band {
    height: 260px;
  }

  .visual-strip figure,
  .visual-strip img,
  .visual-strip video {
    min-height: 260px;
  }

  .solution-list a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .request-form {
    padding: 16px;
  }

  .site-footer {
    padding: 42px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .technology-banner h2,
  .technology-banner h2::before,
  .technology-banner h2::after,
  .technology-sparks span {
    animation: none;
    background-position: 50% 0;
  }

  .hero-cta,
  .hero-cta::after {
    animation: none;
  }

  .proof-safe::before,
  .proof-safe::after,
  #solutions::before,
  #solutions::after {
    animation: none;
  }

  .technology-banner h2,
  .technology-banner h2::before,
  .technology-banner h2::after,
  .technology-sparks span,
  .technology-card,
  .technology-card::after,
  .technology-media img,
  .technology-media video,
  .technology-copy {
    transition: none;
  }

  .request-arrow {
    animation: none;
  }

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