:root {
  --navy-950: #06152f;
  --navy-900: #081f49;
  --navy-800: #0a2f69;
  --blue-700: #0b4db8;
  --blue-600: #1263d6;
  --blue-500: #1d7cf2;
  --cyan-400: #35a8ff;
  --orange-500: #f28c18;
  --orange-400: #ffaa2b;
  --white: #fff;
  --slate-50: #f6f9fd;
  --slate-100: #edf3fa;
  --slate-300: #c7d5e7;
  --slate-500: #60708a;
  --slate-700: #33445f;
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Montserrat", "Inter", Arial, sans-serif;
  --shell: min(1200px, calc(100vw - 48px));
  --radius: 3px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

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

body {
  margin: 0;
  color: var(--navy-950);
  background: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 12px 16px;
  color: var(--white);
  background: var(--orange-500);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 88px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  color: var(--white);
  transition: background 300ms var(--ease), height 300ms var(--ease), box-shadow 300ms var(--ease);
}

.site-header.scrolled {
  height: 74px;
  background: rgb(6 21 47 / 94%);
  box-shadow: 0 10px 40px rgb(0 0 0 / 15%);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: block;
  width: 196px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
  color: rgb(255 255 255 / 74%);
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav > a:hover,
.site-nav > a.active {
  color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgb(255 255 255 / 32%);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

.nav-cta span {
  color: var(--orange-400);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 850px;
  height: min(920px, 100vh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-image,
.hero-grid,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: linear-gradient(90deg, rgb(6 21 47 / 10%) 0%, rgb(6 21 47 / 4%) 46%, rgb(6 21 47 / 0%) 80%),
    url("assets/images/egaforce-connected-industries-hero.png");
  background-position: center;
  background-size: cover;
}

.hero-grid {
  opacity: 0.13;
  background-image: linear-gradient(rgb(53 168 255 / 18%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(53 168 255 / 18%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 57%);
}

.hero-glow {
  background: linear-gradient(180deg, rgb(6 21 47 / 0%) 58%, var(--navy-950) 100%),
    radial-gradient(circle at 28% 52%, rgb(18 99 214 / 16%), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  padding-top: 82px;
  align-items: center;
  justify-content: space-between;
}

.hero-copy {
  width: min(720px, 60vw);
  animation: hero-in 900ms 100ms both var(--ease);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  color: var(--cyan-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--orange-500);
}

.eyebrow.dark {
  color: var(--blue-600);
}

.hero h1,
.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.98;
}

.hero h1 em,
.section h2 em {
  color: var(--orange-500);
  font-style: normal;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 73%);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  transition: transform 200ms var(--ease), background 200ms ease, color 200ms ease, border-color 200ms ease;
}

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

.button-primary {
  color: var(--navy-950);
  background: var(--orange-500);
  box-shadow: 0 12px 30px rgb(242 140 24 / 18%);
}

.button-primary:hover {
  background: var(--orange-400);
}

.button-quiet {
  color: var(--white);
  border-color: rgb(255 255 255 / 26%);
  background: rgb(6 21 47 / 20%);
  backdrop-filter: blur(8px);
}

.button-quiet:hover {
  border-color: rgb(255 255 255 / 70%);
  background: rgb(255 255 255 / 8%);
}

.hero-status {
  position: absolute;
  right: 0;
  bottom: 104px;
  width: 400px;
  padding: 18px 22px;
  border: 1px solid rgb(255 255 255 / 14%);
  background: rgb(6 21 47 / 62%);
  backdrop-filter: blur(12px);
  animation: hero-in 900ms 300ms both var(--ease);
}

.status-pulse {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 63%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-pulse i {
  position: relative;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 6px rgb(242 140 24 / 12%);
}

.status-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 15px;
}

.status-row > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 15px;
  border-left: 1px solid rgb(255 255 255 / 12%);
}

.status-row > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.status-row strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
}

.status-row span {
  color: rgb(255 255 255 / 48%);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.sector-ticker {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgb(255 255 255 / 10%);
  background: var(--navy-950);
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 56px;
  align-items: center;
  gap: 30px;
  color: rgb(255 255 255 / 55%);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: ticker 32s linear infinite;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: var(--orange-500);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--slate-300);
  color: var(--blue-600);
  font-family: var(--font-display);
  letter-spacing: 0;
}

.section-label.light {
  color: rgb(255 255 255 / 48%);
}

.section-label.light span {
  border-color: rgb(255 255 255 / 20%);
  color: var(--cyan-400);
}

.statement {
  overflow: hidden;
  background: var(--slate-50);
}

.statement::before {
  position: absolute;
  content: "E";
  right: -35px;
  bottom: -142px;
  color: transparent;
  font-family: var(--font-display);
  font-size: 610px;
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 1px rgb(8 31 73 / 5%);
}

.statement-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 60px;
}

.statement-content {
  max-width: 880px;
}

.section h2 {
  margin-bottom: 36px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.06;
}

.statement h2 {
  color: var(--navy-950);
}

.statement-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.statement-copy p,
.model-intro > p,
.network-copy > p {
  margin: 0;
  color: var(--slate-500);
  font-size: 15px;
  line-height: 1.8;
}

.statement-copy p:first-child {
  color: var(--slate-700);
  font-size: 18px;
  font-weight: 500;
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 82px;
  border-top: 1px solid var(--slate-300);
}

.proof-rail article {
  position: relative;
  min-height: 158px;
  padding: 32px 42px 0 0;
  border-right: 1px solid var(--slate-300);
}

.proof-rail article:not(:first-child) {
  padding-left: 42px;
}

.proof-rail article:last-child {
  border-right: 0;
}

.proof-rail article::before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 46px;
  height: 3px;
  background: var(--orange-500);
}

.proof-rail span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.proof-rail p {
  max-width: 270px;
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.65;
}

.industries {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.industries::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 50%;
  height: 540px;
  opacity: 0.22;
  background-image: linear-gradient(rgb(53 168 255 / 15%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(53 168 255 / 15%) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(135deg, transparent 8%, #000 85%);
}

.section-heading {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: end;
  margin-bottom: 62px;
}

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

.heading-copy {
  margin: 0 0 5px;
  color: rgb(255 255 255 / 52%);
  font-size: 13px;
  line-height: 1.75;
}

.sector-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgb(255 255 255 / 14%);
  border-left: 1px solid rgb(255 255 255 / 14%);
}

.sector-card {
  position: relative;
  display: flex;
  min-height: 380px;
  padding: 34px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgb(255 255 255 / 14%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 1%);
  transition: background 300ms ease, transform 300ms var(--ease);
}

.sector-card::after {
  position: absolute;
  z-index: 0;
  content: attr(data-sector);
  right: -12px;
  bottom: -40px;
  color: transparent;
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  -webkit-text-stroke: 1px rgb(53 168 255 / 25%);
  transition: opacity 300ms ease;
}

.sector-card:hover {
  z-index: 1;
  background: linear-gradient(145deg, rgb(18 99 214 / 22%), rgb(255 255 255 / 2%));
}

.sector-card:hover::after {
  opacity: 1;
}

.sector-card > * {
  position: relative;
  z-index: 1;
}

.sector-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sector-top svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--cyan-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.sector-number {
  color: rgb(255 255 255 / 36%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sector-card h3 {
  max-width: 460px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.15;
}

.sector-card p {
  max-width: 480px;
  margin: 0;
  color: rgb(255 255 255 / 54%);
  font-size: 13px;
  line-height: 1.7;
}

.sector-card ul {
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  list-style: none;
}

.sector-card li {
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 13%);
  color: rgb(255 255 255 / 52%);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.model {
  background: var(--white);
}

.model-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.model-intro .section-label,
.network-copy .section-label {
  margin-bottom: 56px;
}

.model-intro h2 {
  margin-bottom: 28px;
}

.model-intro > p {
  max-width: 500px;
}

.text-link {
  display: inline-flex;
  gap: 28px;
  padding-bottom: 5px;
  margin-top: 32px;
  border-bottom: 2px solid var(--orange-500);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
}

.model-steps {
  border-top: 1px solid var(--slate-300);
}

.model-steps article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 30px 10px;
  border-bottom: 1px solid var(--slate-300);
  transition: padding 240ms var(--ease), background 240ms ease;
}

.model-steps article:hover {
  padding-inline: 24px;
  background: var(--slate-50);
}

.model-steps article > span {
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}

.model-steps h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 22px;
}

.model-steps p {
  max-width: 480px;
  margin: 0;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.7;
}

.fintech {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #06152f, #0b3067);
}

.fintech::after {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgb(53 168 255 / 90%) 0.6px, transparent 0.6px);
  background-size: 20px 20px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.fintech-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.fintech-mark {
  position: relative;
  display: grid;
  width: 490px;
  height: 490px;
  place-items: center;
}

.fintech-mark::before,
.fintech-mark::after {
  position: absolute;
  content: "";
  border: 1px solid rgb(53 168 255 / 18%);
  border-radius: 50%;
}

.fintech-mark::before {
  width: 300px;
  height: 300px;
}

.fintech-mark::after {
  width: 450px;
  height: 450px;
  border-style: dashed;
  animation: orbit-spin 30s linear infinite;
}

.fintech-mark img {
  position: relative;
  z-index: 2;
  width: 150px;
  filter: drop-shadow(0 18px 45px rgb(0 0 0 / 30%));
}

.orbit-tag {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border: 1px solid rgb(255 255 255 / 18%);
  color: rgb(255 255 255 / 65%);
  background: rgb(6 21 47 / 75%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.tag-one { top: 48px; left: 180px; }
.tag-two { right: 9px; bottom: 116px; }
.tag-three { bottom: 60px; left: 16px; }

.fintech-copy .section-label {
  margin-bottom: 54px;
}

.fintech-copy h2 {
  margin-bottom: 25px;
}

.fintech-copy > p {
  max-width: 540px;
  margin-bottom: 30px;
  color: rgb(255 255 255 / 58%);
  font-size: 15px;
  line-height: 1.8;
}

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 5%);
}

.license-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--orange-500);
  font-size: 14px;
  font-weight: 800;
}

.license-badge div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.license-badge strong {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.license-badge small {
  color: rgb(255 255 255 / 45%);
  font-size: 10px;
}

.network {
  overflow: hidden;
  background: var(--slate-50);
}

.network-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.network-copy h2 {
  margin-bottom: 28px;
}

.network-visual {
  position: relative;
  min-height: 540px;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgb(18 99 214 / 20%);
  stroke-dasharray: 5 7;
  stroke-width: 1;
}

.network-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 142px;
  height: 142px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 20px 60px rgb(6 21 47 / 24%), 0 0 0 13px rgb(18 99 214 / 7%);
  transform: translate(-50%, -50%);
}

.network-core img {
  width: 54px;
}

.network-core span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.network-node {
  position: absolute;
  display: grid;
  min-width: 104px;
  height: 40px;
  padding: 0 12px;
  place-items: center;
  border: 1px solid var(--slate-300);
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 8px 28px rgb(6 21 47 / 7%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.network-node::before {
  position: absolute;
  content: "";
  top: -3px;
  width: 22px;
  height: 3px;
  background: var(--orange-500);
}

.node-1 { top: 44px; left: 2%; }
.node-2 { top: -2px; left: 42%; }
.node-3 { top: 55px; right: 1%; }
.node-4 { right: -2%; bottom: 73px; }
.node-5 { bottom: 0; left: 42%; }
.node-6 { bottom: 68px; left: -1%; }

.contact {
  overflow: hidden;
  padding: 122px 0;
  color: var(--white);
  background: var(--blue-700);
}

.contact::before {
  position: absolute;
  content: "";
  right: -140px;
  bottom: -280px;
  width: 660px;
  height: 660px;
  border: 120px solid rgb(255 255 255 / 4%);
  border-radius: 50%;
}

.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgb(255 255 255 / 10%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 10%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact h2 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.2vw, 82px);
}

.contact h2 em {
  color: var(--orange-400);
}

.contact-inner > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 67%);
  font-size: 16px;
  line-height: 1.7;
}

.contact-mail {
  padding: 8px 0;
  border-bottom: 1px solid rgb(255 255 255 / 34%);
  color: rgb(255 255 255 / 72%);
  font-size: 12px;
}

.site-footer {
  color: var(--white);
  background: var(--navy-950);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding-top: 76px;
  padding-bottom: 64px;
}

.footer-brand img {
  width: 195px;
}

.footer-brand p {
  margin: 24px 0 0;
  color: rgb(255 255 255 / 42%);
  font-size: 12px;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-nav strong {
  margin-bottom: 8px;
  color: var(--cyan-400);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  color: rgb(255 255 255 / 58%);
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1.3fr;
  gap: 28px;
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-bottom p {
  margin: 0;
  color: rgb(255 255 255 / 32%);
  font-size: 9px;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

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

@media (max-width: 1000px) {
  :root { --shell: min(100% - 40px, 900px); }
  .section { padding: 100px 0; }
  .site-nav { gap: 20px; }
  .hero { min-height: 800px; }
  .hero-copy { width: min(680px, 74vw); }
  .hero-image { background-position: 57% center; }
  .statement-grid { grid-template-columns: 130px 1fr; gap: 32px; }
  .section-heading { grid-template-columns: 130px 1fr; }
  .section-heading .heading-copy { display: none; }
  .model-grid, .network-grid { gap: 55px; }
  .fintech-grid { gap: 30px; }
  .fintech-mark { width: 400px; height: 400px; }
  .fintech-mark::before { width: 260px; height: 260px; }
  .fintech-mark::after { width: 380px; height: 380px; }
  .network-visual { min-height: 500px; }
}

@media (max-width: 780px) {
  :root { --shell: calc(100% - 32px); }
  .section { padding: 84px 0; }
  .site-header, .site-header.scrolled { height: 72px; }
  .brand { width: 164px; }
  .brand { position: relative; z-index: 2; }
  .nav-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid rgb(255 255 255 / 20%);
    background: transparent;
  }
  .nav-toggle > span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 220ms ease;
  }
  .nav-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 110px 24px 40px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    color: var(--white);
    background: var(--navy-950);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 250ms ease, transform 250ms ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.nav-cta) {
    padding: 18px 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    font-family: var(--font-display);
    font-size: 24px;
  }
  .site-nav > a::after { display: none; }
  .nav-cta { margin-top: 24px; justify-content: space-between; }
  .hero { min-height: 760px; height: 100svh; }
  .hero-image {
    opacity: 0.64;
    background-image: linear-gradient(90deg, rgb(6 21 47 / 8%), rgb(6 21 47 / 10%)),
      url("assets/images/egaforce-connected-industries-hero.png");
    background-position: 62% center;
  }
  .hero-glow { background: linear-gradient(180deg, rgb(6 21 47 / 58%) 0%, rgb(6 21 47 / 10%) 35%, var(--navy-950) 100%); }
  .hero-grid { mask-image: linear-gradient(#000, transparent 80%); }
  .hero-content { padding-top: 60px; align-items: center; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(43px, 13vw, 65px); }
  .hero-lede { max-width: 560px; font-size: 15px; line-height: 1.6; }
  .hero-status { display: none; }
  .ticker-track { height: 48px; }
  .statement-grid, .section-heading, .model-grid, .fintech-grid, .network-grid { grid-template-columns: 1fr; }
  .statement-grid, .model-grid, .network-grid { gap: 52px; }
  .section-heading { gap: 42px; }
  .statement-copy { gap: 28px; }
  .proof-rail { grid-template-columns: 1fr; }
  .proof-rail article, .proof-rail article:not(:first-child) { min-height: 135px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--slate-300); }
  .sector-grid { grid-template-columns: 1fr; }
  .sector-card { min-height: 340px; }
  .model-intro .section-label, .network-copy .section-label, .fintech-copy .section-label { margin-bottom: 40px; }
  .fintech-mark { grid-row: 2; width: min(100%, 430px); height: 430px; margin-inline: auto; }
  .fintech-mark::after { width: min(92%, 390px); height: min(92vw, 390px); }
  .network-copy { max-width: 620px; }
  .network-visual { max-width: 620px; width: 100%; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 60px; }
  .footer-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .section { padding: 72px 0; }
  .hero { min-height: 720px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { justify-content: space-between; }
  .hero h1 { margin-bottom: 22px; }
  .hero-lede { margin-bottom: 28px; }
  .section h2 { font-size: clamp(36px, 11vw, 50px); }
  .statement-copy { grid-template-columns: 1fr; }
  .statement-copy p:first-child { font-size: 16px; }
  .sector-card { min-height: 360px; padding: 28px 22px; }
  .sector-card ul { gap: 6px; }
  .model-steps article { grid-template-columns: 42px 1fr; gap: 14px; padding-inline: 0; }
  .model-steps article:hover { padding-inline: 10px; }
  .fintech-mark { height: 350px; }
  .fintech-mark::before { width: 220px; height: 220px; }
  .fintech-mark::after { width: 320px; height: 320px; }
  .fintech-mark img { width: 110px; }
  .tag-one { top: 25px; left: 125px; }
  .tag-two { right: -4px; bottom: 77px; }
  .tag-three { bottom: 44px; left: -5px; }
  .network-visual { min-height: 420px; transform: scale(0.9); }
  .node-1 { top: 20px; left: -5%; }
  .node-2 { left: 37%; }
  .node-3 { top: 25px; right: -4%; }
  .node-4 { right: -8%; bottom: 40px; }
  .node-5 { left: 38%; }
  .node-6 { bottom: 38px; left: -7%; }
  .contact { padding: 90px 0; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-mail { width: fit-content; }
  .footer-nav { grid-template-columns: 1fr 1fr; row-gap: 45px; }
  .footer-top { padding-top: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Expanded EgaForce company profile — July 2026 */
.statement-copy {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.statement-copy p:first-child {
  font-size: 16px;
}

.proof-rail--four {
  grid-template-columns: repeat(4, 1fr);
}

.purpose {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.9%, rgb(8 31 73 / 6%) 50%, transparent 50.1%),
    var(--white);
}

.purpose::after {
  position: absolute;
  content: "";
  top: -230px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 100px solid rgb(18 99 214 / 4%);
  border-radius: 50%;
}

.purpose-heading,
.brand-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.purpose-heading h2,
.brand-heading h2 {
  margin-bottom: 0;
}

.purpose-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--slate-300);
  border-left: 1px solid var(--slate-300);
}

.purpose-card {
  position: relative;
  min-height: 370px;
  padding: 46px;
  border-right: 1px solid var(--slate-300);
  border-bottom: 1px solid var(--slate-300);
  background: rgb(255 255 255 / 88%);
}

.purpose-card::before {
  position: absolute;
  content: "";
  top: -1px;
  left: -1px;
  width: 82px;
  height: 4px;
  background: var(--blue-600);
}

.purpose-card--accent {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--blue-700));
}

.purpose-card--accent::before {
  background: var(--orange-500);
}

.purpose-card__number {
  display: block;
  margin-bottom: 72px;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.purpose-card--accent .purpose-card__number {
  color: var(--orange-400);
}

.purpose-card h3 {
  max-width: 520px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
}

.purpose-card p {
  max-width: 600px;
  margin: 0;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.85;
}

.purpose-card--accent p {
  color: rgb(255 255 255 / 66%);
}

.capabilities {
  background:
    radial-gradient(circle at 78% 10%, rgb(18 99 214 / 22%), transparent 28%),
    var(--navy-950);
}

.capability-grid {
  position: relative;
  border-top: 1px solid rgb(255 255 255 / 15%);
}

.capability-card {
  border-right: 1px solid rgb(255 255 255 / 15%);
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  border-left: 1px solid rgb(255 255 255 / 15%);
  background: rgb(255 255 255 / 1.5%);
  transition: background 220ms ease, border-color 220ms ease;
}

.capability-card:hover,
.capability-card[open] {
  border-color: rgb(53 168 255 / 35%);
  background: linear-gradient(120deg, rgb(18 99 214 / 17%), rgb(255 255 255 / 2%));
}

.capability-card summary {
  display: grid;
  min-height: 112px;
  padding: 25px 30px;
  grid-template-columns: 58px minmax(0, 1fr) 36px;
  gap: 22px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.capability-card summary::-webkit-details-marker {
  display: none;
}

.capability-card summary > span {
  color: var(--cyan-400);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.capability-card summary h3 {
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.2;
}

.capability-card summary p {
  margin: 0;
  color: rgb(255 255 255 / 48%);
  font-size: 12px;
  line-height: 1.55;
}

.capability-card summary > i {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(255 255 255 / 19%);
  border-radius: 50%;
}

.capability-card summary > i::before,
.capability-card summary > i::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--orange-400);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.capability-card summary > i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.capability-card[open] summary > i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.capability-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 30px 30px 110px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  border-left: 1px solid rgb(255 255 255 / 12%);
}

.capability-columns > div {
  padding: 26px 30px;
  border-right: 1px solid rgb(255 255 255 / 12%);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.capability-columns h4 {
  margin: 0 0 18px;
  color: var(--orange-400);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.capability-columns ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capability-columns li {
  position: relative;
  padding-left: 14px;
  color: rgb(255 255 255 / 66%);
  font-size: 11px;
  line-height: 1.5;
}

.capability-columns li::before {
  position: absolute;
  content: "";
  top: 0.62em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--blue-500);
  transform: rotate(45deg);
}

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

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

.capability-note {
  margin: 0 30px 30px 110px;
  padding: 28px 30px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-left: 3px solid var(--orange-500);
  background: rgb(255 255 255 / 3%);
}

.capability-note p {
  max-width: 900px;
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 12px;
  line-height: 1.8;
}

.brand-ecosystem {
  overflow: hidden;
  background: var(--slate-50);
}

.brand-heading {
  grid-template-columns: 190px minmax(0, 1fr) 280px;
  align-items: end;
}

.brand-heading > p {
  margin: 0 0 6px;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.75;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--slate-300);
  border-left: 1px solid var(--slate-300);
}

.brand-card {
  position: relative;
  min-height: 230px;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid var(--slate-300);
  border-bottom: 1px solid var(--slate-300);
  background: var(--white);
  transition: color 240ms ease, background 240ms ease, transform 240ms var(--ease);
}

.brand-card::after {
  position: absolute;
  content: "";
  right: -60px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border: 36px solid rgb(18 99 214 / 5%);
  border-radius: 50%;
}

.brand-card:hover {
  z-index: 1;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--blue-700));
  transform: translateY(-3px);
}

.brand-card > span {
  display: block;
  margin-bottom: 58px;
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
}

.brand-card:hover > span {
  color: var(--orange-400);
}

.brand-card h3 {
  margin-bottom: 11px;
  font-family: var(--font-display);
  font-size: 24px;
}

.brand-card p {
  max-width: 320px;
  margin: 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.7;
}

.brand-card:hover p {
  color: rgb(255 255 255 / 66%);
}

.philosophy {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgb(29 124 242 / 23%), transparent 27%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.philosophy::after {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgb(53 168 255 / 22%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(53 168 255 / 22%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.philosophy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 40px;
}

.philosophy h2 {
  max-width: 850px;
  margin-bottom: 30px;
}

.philosophy-copy {
  max-width: 900px;
  margin: 0;
  color: rgb(255 255 255 / 62%);
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 1180px) and (min-width: 781px) {
  .brand { width: 178px; }
  .site-nav { gap: 18px; font-size: 12px; }
  .nav-cta { gap: 10px; padding-inline: 14px; }
}

@media (min-width: 781px) {
  .nav-wrap { padding-right: 72px; }
}

@media (max-width: 1000px) {
  .statement-copy { grid-template-columns: 1fr 1fr; }
  .statement-copy p:last-child { grid-column: 1 / -1; }
  .proof-rail--four { grid-template-columns: repeat(2, 1fr); }
  .proof-rail--four article:nth-child(2) { border-right: 0; }
  .brand-heading { grid-template-columns: 130px 1fr; }
  .brand-heading > p { grid-column: 2; }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability-columns ul { grid-template-columns: 1fr; }
  .capability-columns--single ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .purpose-heading,
  .brand-heading,
  .philosophy-grid { grid-template-columns: 1fr; gap: 38px; }
  .brand-heading > p { grid-column: auto; }
  .purpose-grid { grid-template-columns: 1fr; }
  .purpose-card { min-height: 0; padding: 36px 30px; }
  .purpose-card__number { margin-bottom: 42px; }
  .statement-copy { grid-template-columns: 1fr; }
  .statement-copy p:last-child { grid-column: auto; }
  .proof-rail--four { grid-template-columns: 1fr; }
  .proof-rail--four article { border-right: 0; }
  .capability-card summary { grid-template-columns: 42px minmax(0, 1fr) 32px; gap: 14px; padding-inline: 20px; }
  .capability-columns { grid-template-columns: 1fr; margin: 0 20px 22px 76px; }
  .capability-note { margin: 0 20px 22px 76px; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: clamp(39px, 11.8vw, 55px); }
  .hero-lede { font-size: 14px; }
  .capability-card summary { min-height: 102px; grid-template-columns: 30px minmax(0, 1fr) 28px; gap: 10px; padding: 20px 14px; }
  .capability-card summary p { display: none; }
  .capability-card summary > i { width: 28px; height: 28px; }
  .capability-columns { margin: 0 14px 16px; }
  .capability-columns > div { padding: 22px 20px; }
  .capability-columns--single ul { grid-template-columns: 1fr; }
  .capability-note { margin: 0 14px 16px; padding: 22px 20px; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card { min-height: 205px; padding: 28px; }
  .brand-card > span { margin-bottom: 44px; }
  .license-badge { align-items: flex-start; }
}
