:root {
  --navy-950: #050b13;
  --navy-900: #07111f;
  --navy-800: #0b1b30;
  --navy-700: #123354;
  --blue-600: #0877d1;
  --blue-500: #1296f3;
  --cyan-400: #45d6ff;
  --white: #ffffff;
  --slate-50: #f7f9fc;
  --slate-100: #eef3f8;
  --slate-200: #dce5ee;
  --slate-500: #68788a;
  --slate-700: #34465a;
  --text: #102134;
  --shadow: 0 24px 70px rgba(4, 22, 41, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --page: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  width: var(--page);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 58px;
  height: 44px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  color: var(--white);
}

.brand-mark::before {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 2px;
  left: 1px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-500), transparent);
  border-radius: 99px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 6px;
  height: 6px;
  background: var(--cyan-400);
  border: 2px solid rgba(69, 214, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(69, 214, 255, 0.75);
}

.brand-mark b,
.brand-mark em {
  position: relative;
  z-index: 1;
  font-size: 1.92rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.12em;
  transform: skewX(-7deg);
}

.brand-mark em {
  margin-left: -2px;
  color: var(--cyan-400);
}

.brand-mark i {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 8px;
  height: 8px;
  background: var(--navy-900);
  border: 2px solid var(--cyan-400);
  border-radius: 50%;
}

.brand-copy,
.footer-brand p {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav .nav-cta {
  padding: 10px 17px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 176px max(20px, calc((100% - 1180px) / 2)) 92px;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background: var(--navy-950);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 11, 19, 0.98) 0%, rgba(5, 11, 19, 0.88) 38%, rgba(5, 11, 19, 0.35) 68%, rgba(5, 11, 19, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 11, 19, 0.44), transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: 0;
  background: url("assets/hero-background.webp") 66% center / cover no-repeat;
  transform: scale(1.05);
  animation: heroMotion 22s ease-in-out infinite alternate;
  will-change: transform, background-position;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact .eyebrow {
  color: var(--cyan-400);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 4.9rem);
  font-weight: 760;
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 51px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  box-shadow: 0 14px 35px rgba(18, 150, 243, 0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, #25a5fa, #0870c5);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.trust-list {
  margin: 56px 0 0;
  padding: 0;
  display: flex;
  list-style: none;
}

.trust-list li {
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-list strong {
  font-size: 0.93rem;
}

.trust-list span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

@keyframes heroMotion {
  0% {
    background-position: 64% 50%;
    transform: scale(1.05) translate3d(-0.8%, 0, 0);
  }
  50% {
    background-position: 70% 48%;
    transform: scale(1.085) translate3d(0.4%, -0.5%, 0);
  }
  100% {
    background-position: 67% 53%;
    transform: scale(1.06) translate3d(0.8%, 0.5%, 0);
  }
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  position: relative;
  margin-top: 68px;
  margin-bottom: 24px;
  padding: 62px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 76px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(69, 214, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #eef7ff 0%, #f8fbff 56%, #eaf4fc 100%);
  border: 1px solid #d4e5f3;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(11, 45, 78, 0.08);
}

.intro::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -62px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(8, 119, 209, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(8, 119, 209, 0.045), 0 0 0 66px rgba(8, 119, 209, 0.025);
}

.intro h2,
.section-heading h2,
.platforms h2,
.company-showcase h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.intro-copy {
  position: relative;
  z-index: 1;
}

.intro-copy > p {
  margin: 0;
  color: var(--slate-500);
  font-size: 1.03rem;
}

.intro-points {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.intro-points li {
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-700);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 119, 209, 0.13);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
}

.intro-points li span {
  width: 7px;
  height: 7px;
  background: var(--blue-500);
  border: 2px solid rgba(18, 150, 243, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(18, 150, 243, 0.1);
}

.partners {
  position: relative;
  width: var(--page);
  margin: 0 auto 18px;
  padding: 48px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(18, 150, 243, 0.13), transparent 40%),
    linear-gradient(135deg, var(--navy-950), #0a2945);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(69, 214, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 214, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.partners-heading {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.partners-heading .eyebrow {
  color: var(--cyan-400);
}

.partners-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.partners-heading > p:last-child {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.64);
}

.partner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
}

.partner-card {
  min-height: 128px;
  padding: 18px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 13px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.partner-logo {
  min-height: 53px;
  display: grid;
  place-items: center;
}

.partner-logo img {
  width: auto;
  max-width: 145px;
  max-height: 48px;
  object-fit: contain;
}

.partner-card:first-child .partner-logo img {
  max-width: 150px;
  max-height: 38px;
}

.partner-card:nth-child(3) .partner-logo img,
.partner-card:nth-child(4) .partner-logo img {
  max-height: 34px;
}

.partner-google .partner-logo img {
  max-width: 158px;
  max-height: 36px;
}

.partner-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--slate-500);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-status i {
  width: 7px;
  height: 7px;
  background: #22b980;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 185, 128, 0.13);
}

.partner-status-solution i {
  background: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(18, 150, 243, 0.13);
}

.services-section {
  position: relative;
  z-index: 0;
  padding-top: 74px;
  padding-bottom: 112px;
  isolation: isolate;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0 auto;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 8% 14%, rgba(18, 150, 243, 0.1), transparent 24%),
    radial-gradient(circle at 92% 78%, rgba(69, 214, 255, 0.09), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f5faff 18%, #edf6fc 58%, #f8fbfe 84%, #ffffff 100%);
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0 auto;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 119, 209, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 119, 209, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 82%, transparent);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 46px;
}

.section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--slate-500);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 250px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(13, 48, 77, 0.045);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  border-color: #b9d4e9;
  box-shadow: 0 22px 44px rgba(13, 48, 77, 0.08);
}

.service-card:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.service-card.featured {
  grid-column: span 2;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(18, 150, 243, 0.12), transparent 55%),
    var(--navy-900);
  border-color: var(--navy-900);
}

.service-number {
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.featured .service-number {
  color: var(--cyan-400);
}

.service-icon {
  position: absolute;
  top: 23px;
  right: 23px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffffff, #e5f2fc);
  border: 1px solid #d2e4f2;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(8, 82, 145, 0.1);
  transform: rotate(2deg);
}

.service-icon img {
  width: 25px;
  height: 25px;
  opacity: 0.82;
  filter: invert(34%) sepia(82%) saturate(1570%) hue-rotate(180deg) brightness(87%) contrast(99%);
}

.featured .service-icon {
  background: rgba(69, 214, 255, 0.12);
  border-color: rgba(69, 214, 255, 0.28);
  box-shadow: none;
}

.featured .service-icon img {
  filter: invert(85%) sepia(36%) saturate(1166%) hue-rotate(163deg) brightness(103%) contrast(105%);
}

.service-card h3 {
  margin: 38px 0 13px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.9rem;
}

.featured h3 {
  margin-top: 32px;
  font-size: 1.45rem;
}

.featured p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.65);
}

.featured ul {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.featured li {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
}

.service-card-cta {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
}

.featured .service-card-cta {
  color: var(--cyan-400);
}

.service-card-cta span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.service-card:hover .service-card-cta span,
.service-card:focus-visible .service-card-cta span {
  transform: translateX(4px);
}

.platforms {
  padding: 90px max(20px, calc((100% - 1180px) / 2));
  color: var(--white);
  text-align: center;
  background: var(--navy-900);
}

.platforms h2 {
  max-width: 760px;
  margin: 0 auto;
}

.platform-list {
  max-width: 980px;
  margin: 45px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.platform-list span {
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
}

.company-showcase {
  position: relative;
  width: var(--page);
  min-height: 630px;
  margin: 110px auto 90px;
  padding: 72px 68px 44px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(5, 20, 36, 0.22);
  isolation: isolate;
}

.company-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 11, 19, 0.94), rgba(5, 11, 19, 0.68) 58%, rgba(5, 11, 19, 0.44)),
    linear-gradient(0deg, rgba(5, 11, 19, 0.74), transparent 55%);
}

.company-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(69, 214, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 214, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
}

.company-showcase-media {
  position: absolute;
  inset: -5%;
  z-index: -2;
  background: url("assets/company-background.webp") center / cover no-repeat;
  opacity: 0.9;
  transform: scale(1.05);
  animation: company-showcase-motion 22s ease-in-out infinite alternate;
}

.company-showcase-heading {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 85px;
}

.company-showcase-heading .eyebrow {
  color: var(--cyan-400);
}

.company-showcase-heading h2 {
  max-width: 690px;
}

.company-showcase-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.company-showcase-copy button {
  margin-top: 24px;
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.company-showcase-copy button:hover,
.company-showcase-copy button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(69, 214, 255, 0.4);
}

.company-showcase-copy button span { color: var(--cyan-400); font-size: 1rem; }

.company-values {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.company-values article {
  min-height: 175px;
  padding: 24px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  background: rgba(5, 15, 27, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.company-values article:hover {
  transform: translateY(-5px);
  background: rgba(8, 31, 52, 0.72);
  border-color: rgba(69, 214, 255, 0.28);
}

.company-values article > span {
  color: var(--cyan-400);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.company-values h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.company-values p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.company-showcase-status {
  margin-top: 17px;
  padding-top: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-showcase-status i {
  width: 7px;
  height: 7px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(69, 214, 255, 0.1), 0 0 15px rgba(69, 214, 255, 0.75);
  animation: global-live 2.4s ease-in-out infinite;
}

.company-showcase-status b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
}

@keyframes company-showcase-motion {
  from { transform: scale(1.05) translate3d(-1%, 0, 0); }
  to { transform: scale(1.1) translate3d(1.2%, -0.8%, 0); }
}

.contact {
  width: var(--page);
  margin: 10px auto 80px;
  padding: 62px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 0%, rgba(69, 214, 255, 0.18), transparent 25%),
    linear-gradient(130deg, var(--navy-900), #0a2c4a);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact > div:first-child > p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button-light {
  color: var(--navy-900);
  background: var(--white);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.email-hint {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  text-align: center;
}

.consultation-modal {
  width: min(720px, calc(100% - 28px));
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow: auto;
  color: var(--text);
  background: var(--white);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 36px 100px rgba(2, 13, 24, 0.38);
}

.consultation-modal::backdrop {
  background: rgba(2, 9, 16, 0.78);
  backdrop-filter: blur(8px);
}

.modal-header {
  position: relative;
  padding: 20px 30px 16px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(69, 214, 255, 0.18), transparent 30%),
    var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}

.modal-header .eyebrow {
  margin-bottom: 8px;
}

.modal-header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.modal-header p:last-child {
  margin: 7px 0 0;
  color: var(--slate-500);
  font-size: 0.82rem;
}

.modal-close {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  color: var(--slate-700);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  transform: rotate(4deg);
  border-color: var(--blue-500);
}

.consultation-form {
  padding: 18px 30px 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 11px;
}

.consultation-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.consultation-form label > span {
  color: var(--slate-700);
  font-size: 0.78rem;
  font-weight: 750;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #cad7e3;
  border-radius: 10px;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.consultation-form textarea {
  min-height: 80px;
  max-height: 130px;
  resize: vertical;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(18, 150, 243, 0.12);
}

.form-full {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-footer {
  margin-top: 14px;
  padding-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--slate-200);
}

.form-footer p {
  max-width: 390px;
  margin: 0;
  color: var(--slate-500);
  font-size: 0.75rem;
}

.form-footer .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-footer .button {
  min-height: 42px;
  padding: 10px 18px;
}

.form-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  font-size: 0.84rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: #087a55;
}

.form-status.is-error {
  color: #b42318;
}

.social-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  transition: opacity 180ms ease, visibility 180ms ease;
}

body.menu-open .social-float {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.social-button {
  width: 58px;
  min-width: 58px;
  height: 58px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(1, 11, 20, 0.25);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.social-button:hover,
.social-button:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 18px 42px rgba(1, 11, 20, 0.32);
}

.social-button:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
}

.social-icon {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
}

.social-icon img {
  width: 27px;
  height: 27px;
}

.social-label {
  display: none;
}

.instagram-float {
  background: linear-gradient(135deg, #6a35d5, #d62976 58%, #f6a23a);
}

.whatsapp-float {
  background: linear-gradient(135deg, #1ebb63, #0b8f49);
}

.site-footer {
  padding: 42px max(20px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark-small {
  width: 48px;
  height: 42px;
  flex-basis: 48px;
}

.brand-mark-small b,
.brand-mark-small em {
  font-size: 1.55rem;
}

.footer-brand p {
  margin: 0;
}

.footer-brand strong {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
}

.footer-brand span {
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding-top: 22px;
  font-size: 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.outcomes {
  position: relative;
  padding-top: 104px;
  padding-bottom: 112px;
}

.outcomes-heading,
.finder-heading {
  margin-bottom: 46px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 90px;
}

.outcomes-heading h2,
.operations-heading h2,
.finder-heading h2,
.faq h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.outcomes-heading > p,
.finder-heading > p {
  margin: 0 0 5px;
  color: var(--slate-500);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.outcome-card {
  min-height: 285px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #ffffff, #f5f9fd);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 38px rgba(13, 48, 77, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.outcome-card::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(18, 150, 243, 0.13), transparent 68%);
}

.outcome-card:hover {
  transform: translateY(-5px);
  border-color: #b7d7ed;
  box-shadow: 0 22px 46px rgba(13, 48, 77, 0.09);
}

.outcome-card:first-child {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), #0a2c4a);
  border-color: var(--navy-900);
}

.outcome-number {
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.outcome-card:first-child .outcome-number {
  color: var(--cyan-400);
}

.outcome-card h3 {
  margin: 58px 0 13px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.outcome-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.88rem;
}

.outcome-card:first-child p {
  color: rgba(255, 255, 255, 0.65);
}

.outcome-tag {
  margin-top: auto;
  padding-top: 25px;
  color: var(--blue-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-card:first-child .outcome-tag {
  color: var(--cyan-400);
}

.operations-experience {
  position: relative;
  width: var(--page);
  min-height: 830px;
  margin: 0 auto 22px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgba(4, 22, 41, 0.24);
  isolation: isolate;
}

.operations-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 11, 19, 0.98) 0%, rgba(5, 11, 19, 0.86) 47%, rgba(5, 11, 19, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 11, 19, 0.3), rgba(5, 11, 19, 0.86));
}

.operations-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.operations-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  transform: scale(1.06);
  animation: operations-image-drift 18s ease-in-out infinite alternate;
}

.operations-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  right: 8%;
  top: 16%;
  background: radial-gradient(circle, rgba(69, 214, 255, 0.23), rgba(18, 150, 243, 0.07) 42%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  transition: transform 900ms ease, background 900ms ease;
  animation: operations-glow-breathe 6s ease-in-out infinite;
}

.operations-experience[data-active-mode="redes"] .operations-glow { transform: translate(-22%, 28%) scale(0.82); }
.operations-experience[data-active-mode="seguridad"] .operations-glow { transform: translate(15%, -8%) scale(1.12); }
.operations-experience[data-active-mode="cloud"] .operations-glow { transform: translate(-42%, -15%) scale(0.95); }

.operations-scan {
  position: absolute;
  inset: -25% auto -25% -20%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(69, 214, 255, 0.1), transparent);
  filter: blur(2px);
  transform: skewX(-12deg);
  animation: operations-scan 8s linear infinite;
}

.operations-node {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--cyan-400);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(69, 214, 255, 0.09), 0 0 26px rgba(69, 214, 255, 0.75);
  animation: operations-node-pulse 3.2s ease-in-out infinite;
}

.operations-node::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, rgba(69, 214, 255, 0.6), transparent);
  transform-origin: left center;
  transform: rotate(-18deg);
}

.node-one { right: 17%; top: 24%; }
.node-two { right: 36%; top: 42%; animation-delay: -0.8s; }
.node-two::after { transform: rotate(25deg); }
.node-three { right: 10%; top: 66%; animation-delay: -1.6s; }
.node-three::after { transform: rotate(-145deg); }
.node-four { right: 30%; top: 78%; animation-delay: -2.4s; }
.node-four::after { transform: rotate(165deg); }

.operations-shell {
  position: relative;
  z-index: 2;
  padding: 68px 68px 42px;
}

.operations-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: end;
  gap: 78px;
}

.operations-heading .eyebrow {
  color: var(--cyan-400);
}

.operations-heading h2 {
  max-width: 650px;
}

.operations-intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.operations-live {
  margin-top: 22px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(5, 11, 19, 0.5);
  border: 1px solid rgba(69, 214, 255, 0.18);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.operations-live i,
.operations-status i {
  width: 7px;
  height: 7px;
  background: #2ad697;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(42, 214, 151, 0.12), 0 0 16px rgba(42, 214, 151, 0.72);
  animation: operations-live-pulse 2.4s ease-in-out infinite;
}

.operations-console {
  max-width: 870px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  background: rgba(5, 11, 19, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.operations-console::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-400), transparent);
  opacity: 0.55;
}

.operations-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.operations-tabs button {
  min-height: 74px;
  padding: 16px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 780;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.operations-tabs button:first-child { border-left: 0; }
.operations-tabs button span { color: rgba(69, 214, 255, 0.6); font-size: 0.62rem; letter-spacing: 0.08em; }

.operations-tabs button:hover,
.operations-tabs button:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
}

.operations-tabs button:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: -3px;
}

.operations-tabs button.is-active {
  color: var(--white);
  background: linear-gradient(180deg, rgba(69, 214, 255, 0.12), rgba(18, 150, 243, 0.035));
  box-shadow: inset 0 -2px 0 var(--cyan-400);
}

.operations-panels {
  min-height: 382px;
}

.operations-panel {
  min-height: 382px;
  padding: 38px 40px 34px;
  position: relative;
  animation: operations-panel-reveal 460ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.operations-panel[hidden] { display: none; }

.panel-label {
  margin: 0 0 15px;
  color: var(--cyan-400);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.operations-panel h3 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(1.7rem, 3.1vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.operations-panel > p:not(.panel-label) {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.operations-panel ul {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.operations-panel li {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-size: 0.68rem;
}

.operations-panel > a {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-400);
  font-size: 0.78rem;
  font-weight: 820;
  text-decoration: none;
}

.operations-panel > a span { transition: transform 180ms ease; }
.operations-panel > a:hover span,
.operations-panel > a:focus-visible span { transform: translateX(5px); }

.panel-signal {
  position: absolute;
  right: 35px;
  top: 35px;
  height: 30px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  opacity: 0.7;
}

.panel-signal span {
  width: 3px;
  height: 10px;
  background: linear-gradient(180deg, var(--cyan-400), var(--blue-600));
  border-radius: 3px;
  animation: operations-signal 1.2s ease-in-out infinite alternate;
}

.panel-signal span:nth-child(2) { animation-delay: -0.45s; }
.panel-signal span:nth-child(3) { animation-delay: -0.9s; }
.panel-signal span:nth-child(4) { animation-delay: -0.25s; }
.panel-signal span:nth-child(5) { animation-delay: -0.7s; }

.operations-status {
  min-height: 48px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.61rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.operations-status span:first-child { margin-right: auto; display: flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, 0.66); }
.operations-status i { display: inline-block; }

.technology-flow {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  overflow: hidden;
  background: rgba(5, 11, 19, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.technology-flow-track {
  width: max-content;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: technology-flow 34s linear infinite;
}

.technology-flow span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.technology-flow i {
  width: 5px;
  height: 5px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(69, 214, 255, 0.8);
}

@keyframes operations-image-drift {
  from { transform: scale(1.06) translate3d(-0.5%, 0, 0); }
  to { transform: scale(1.12) translate3d(1.8%, -1%, 0); }
}

@keyframes operations-glow-breathe {
  0%, 100% { opacity: 0.6; filter: blur(9px); }
  50% { opacity: 1; filter: blur(16px); }
}

@keyframes operations-scan {
  from { transform: translateX(-10vw) skewX(-12deg); }
  to { transform: translateX(150vw) skewX(-12deg); }
}

@keyframes operations-node-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes operations-live-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 0 6px rgba(42, 214, 151, 0.08), 0 0 22px rgba(42, 214, 151, 0.9); }
}

@keyframes operations-panel-reveal {
  from { opacity: 0; transform: translateY(13px); filter: blur(3px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes operations-signal {
  from { height: 7px; opacity: 0.45; }
  to { height: 28px; opacity: 1; }
}

@keyframes technology-flow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.solution-finder {
  position: relative;
  padding-top: 105px;
  padding-bottom: 112px;
}

.finder-list,
.faq-list {
  border-top: 1px solid var(--slate-200);
}

.finder-list details,
.faq-list details {
  border-bottom: 1px solid var(--slate-200);
}

.finder-list summary,
.faq-list summary {
  list-style: none;
  cursor: pointer;
}

.finder-list summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.finder-list summary {
  min-height: 112px;
  padding: 25px 6px;
  display: grid;
  grid-template-columns: 70px 1fr 42px;
  align-items: center;
  gap: 22px;
}

.finder-list details[open] {
  background: linear-gradient(90deg, rgba(18, 150, 243, 0.055), transparent 72%);
}

.finder-index {
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.finder-list summary strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.25;
}

.finder-list summary small {
  margin-top: 5px;
  display: block;
  color: var(--slate-500);
  font-size: 0.82rem;
}

.finder-list summary i,
.faq-list summary i {
  width: 38px;
  height: 38px;
  position: relative;
  display: block;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 50%;
}

.finder-list summary i::before,
.finder-list summary i::after,
.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.finder-list summary i::after,
.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.finder-list details[open] summary i::after,
.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.finder-answer {
  padding: 0 80px 34px 98px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px 55px;
}

.finder-answer > p {
  margin: 0;
  color: var(--slate-500);
}

.finder-answer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.finder-answer li {
  padding: 5px 0 5px 18px;
  position: relative;
  color: var(--slate-700);
  font-size: 0.84rem;
}

.finder-answer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(18, 150, 243, 0.1);
}

.finder-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.finder-links a,
.finder-links button {
  padding: 9px 13px;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid #cfe1ef;
  border-radius: 999px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.finder-links a:hover,
.finder-links button:hover,
.finder-links a:focus-visible,
.finder-links button:focus-visible {
  color: var(--white);
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.faq {
  padding-top: 108px;
  padding-bottom: 112px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-heading {
  align-self: start;
}

.faq-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--slate-500);
}

.faq-list summary {
  min-height: 82px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: center;
  gap: 25px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 780;
}

.faq-list details > div {
  padding: 0 64px 26px 0;
}

.faq-list details > div p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.9rem;
}

.finder-list summary:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid rgba(18, 150, 243, 0.45);
  outline-offset: 4px;
  border-radius: 8px;
}

@media (max-height: 700px) and (min-width: 761px) {
  .consultation-modal {
    max-height: calc(100vh - 12px);
    max-height: calc(100dvh - 12px);
    border-radius: 18px;
    scrollbar-width: none;
  }

  .consultation-modal::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .modal-header {
    padding: 10px 28px 8px;
  }

  .modal-header .eyebrow {
    margin-bottom: 3px;
    font-size: 0.64rem;
  }

  .modal-header h2 {
    font-size: 1.65rem;
  }

  .modal-header p:last-child {
    margin-top: 3px;
    font-size: 0.74rem;
  }

  .modal-close {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
    font-size: 1.35rem;
  }

  .consultation-form {
    padding: 10px 28px 12px;
  }

  .form-grid {
    row-gap: 7px;
  }

  .consultation-form label {
    gap: 4px;
  }

  .consultation-form label > span {
    font-size: 0.7rem;
  }

  .consultation-form input,
  .consultation-form select,
  .consultation-form textarea {
    min-height: 36px;
    padding: 6px 11px;
    font-size: 0.82rem;
  }

  .consultation-form textarea {
    min-height: 60px;
    max-height: 74px;
  }

  .form-footer {
    margin-top: 8px;
    padding-top: 8px;
  }

  .form-footer p {
    font-size: 0.68rem;
  }

  .form-footer .button {
    min-height: 38px;
    padding: 8px 16px;
  }

  .form-status {
    margin-top: 6px;
    font-size: 0.74rem;
  }
}

@media (max-width: 1120px) {
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 155px;
  }

  .hero-content {
    max-width: 760px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-showcase {
  position: relative;
  width: var(--page);
  min-height: 630px;
  margin: 110px auto 90px;
  padding: 72px 68px 44px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(5, 20, 36, 0.22);
  isolation: isolate;
}

.company-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 11, 19, 0.94), rgba(5, 11, 19, 0.68) 58%, rgba(5, 11, 19, 0.44)),
    linear-gradient(0deg, rgba(5, 11, 19, 0.74), transparent 55%);
}

.company-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(69, 214, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 214, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
}

.company-showcase-media {
  position: absolute;
  inset: -5%;
  z-index: -2;
  background: url("assets/company-background.webp") center / cover no-repeat;
  opacity: 0.9;
  transform: scale(1.05);
  animation: company-showcase-motion 22s ease-in-out infinite alternate;
}

.company-showcase-heading {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 85px;
}

.company-showcase-heading .eyebrow {
  color: var(--cyan-400);
}

.company-showcase-heading h2 {
  max-width: 690px;
}

.company-showcase-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.company-showcase-copy button {
  margin-top: 24px;
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.company-showcase-copy button:hover,
.company-showcase-copy button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(69, 214, 255, 0.4);
}

.company-showcase-copy button span { color: var(--cyan-400); font-size: 1rem; }

.company-values {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.company-values article {
  min-height: 175px;
  padding: 24px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  background: rgba(5, 15, 27, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.company-values article:hover {
  transform: translateY(-5px);
  background: rgba(8, 31, 52, 0.72);
  border-color: rgba(69, 214, 255, 0.28);
}

.company-values article > span {
  color: var(--cyan-400);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.company-values h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.company-values p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.company-showcase-status {
  margin-top: 17px;
  padding-top: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-showcase-status i {
  width: 7px;
  height: 7px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(69, 214, 255, 0.1), 0 0 15px rgba(69, 214, 255, 0.75);
  animation: global-live 2.4s ease-in-out infinite;
}

.company-showcase-status b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
}

@keyframes company-showcase-motion {
  from { transform: scale(1.05) translate3d(-1%, 0, 0); }
  to { transform: scale(1.1) translate3d(1.2%, -0.8%, 0); }
}

.contact {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 78px;
  }

  .brand-mark {
    width: 48px;
    height: 42px;
    flex-basis: 48px;
  }

  .menu-button {
    width: 46px;
    height: 42px;
    padding: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    padding: 120px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    color: var(--white);
    background: rgba(5, 11, 19, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 0;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav .nav-cta {
    margin-top: 22px;
    padding: 14px 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero {
    min-height: 0;
    padding-top: 132px;
    padding-bottom: 82px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 11, 19, 0.96), rgba(5, 11, 19, 0.74)),
      linear-gradient(0deg, rgba(5, 11, 19, 0.52), transparent 55%);
  }

  .hero::after {
    background-position: 58% center;
    opacity: 0.72;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .trust-list {
    margin-top: 45px;
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .trust-list li {
    width: 50%;
    padding: 0 16px;
  }

  .trust-list li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .section {
    padding: 78px 0;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
    padding: 46px 30px;
  }

  .services-section {
    padding-top: 58px;
  }

  .partners {
    padding: 48px 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: auto;
  }

  .platforms {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .company-showcase {
  position: relative;
  width: var(--page);
  min-height: 630px;
  margin: 110px auto 90px;
  padding: 72px 68px 44px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(5, 20, 36, 0.22);
  isolation: isolate;
}

.company-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 11, 19, 0.94), rgba(5, 11, 19, 0.68) 58%, rgba(5, 11, 19, 0.44)),
    linear-gradient(0deg, rgba(5, 11, 19, 0.74), transparent 55%);
}

.company-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(69, 214, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 214, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
}

.company-showcase-media {
  position: absolute;
  inset: -5%;
  z-index: -2;
  background: url("assets/company-background.webp") center / cover no-repeat;
  opacity: 0.9;
  transform: scale(1.05);
  animation: company-showcase-motion 22s ease-in-out infinite alternate;
}

.company-showcase-heading {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 85px;
}

.company-showcase-heading .eyebrow {
  color: var(--cyan-400);
}

.company-showcase-heading h2 {
  max-width: 690px;
}

.company-showcase-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.company-showcase-copy button {
  margin-top: 24px;
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.company-showcase-copy button:hover,
.company-showcase-copy button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(69, 214, 255, 0.4);
}

.company-showcase-copy button span { color: var(--cyan-400); font-size: 1rem; }

.company-values {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.company-values article {
  min-height: 175px;
  padding: 24px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  background: rgba(5, 15, 27, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.company-values article:hover {
  transform: translateY(-5px);
  background: rgba(8, 31, 52, 0.72);
  border-color: rgba(69, 214, 255, 0.28);
}

.company-values article > span {
  color: var(--cyan-400);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.company-values h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.company-values p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.company-showcase-status {
  margin-top: 17px;
  padding-top: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-showcase-status i {
  width: 7px;
  height: 7px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(69, 214, 255, 0.1), 0 0 15px rgba(69, 214, 255, 0.75);
  animation: global-live 2.4s ease-in-out infinite;
}

.company-showcase-status b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
}

@keyframes company-showcase-motion {
  from { transform: scale(1.05) translate3d(-1%, 0, 0); }
  to { transform: scale(1.1) translate3d(1.2%, -0.8%, 0); }
}

.contact {
    margin-bottom: 14px;
    padding: 40px 24px;
    gap: 38px;
    border-radius: 20px;
  }

  .contact-actions {
    max-width: none;
  }

  .consultation-modal {
    width: min(100% - 18px, 760px);
    max-height: calc(100vh - 18px);
    border-radius: 18px;
  }

  .modal-header {
    padding: 26px 22px 22px;
    gap: 16px;
  }

  .consultation-form {
    padding: 24px 22px 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-full {
    grid-column: auto;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form-footer .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .social-float {
    right: 14px;
    bottom: 14px;
  }

  .social-button {
    min-width: 52px;
    width: 52px;
    height: 52px;
    padding: 0;
  }

  .social-icon {
    width: 100%;
    height: 100%;
  }

  .social-label {
    display: none;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list li {
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }

  .service-card {
    min-height: 250px;
    padding: 25px;
  }

  .featured ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-visual {
    min-height: 310px;
    padding: 34px;
  }
}


@media (max-width: 1120px) and (min-width: 761px) {
  .main-nav { gap: 17px; }
  .main-nav a { font-size: 0.8rem; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .outcomes-heading,
  .finder-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .methodology {
    padding: 54px 42px;
  }

  .methodology-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .methodology-steps li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .methodology-steps li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .finder-answer {
    grid-template-columns: 1fr;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-heading {
    max-width: 700px;
  }
}

@media (max-width: 760px) {
  .outcomes,
  .solution-finder,
  .faq {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 240px;
  }

  .methodology {
    padding: 46px 25px;
    border-radius: 20px;
  }

  .methodology-steps {
    grid-template-columns: 1fr;
  }

  .methodology-steps li,
  .methodology-steps li:first-child,
  .methodology-steps li:nth-child(3) {
    min-height: 0;
    padding: 25px 0;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 15px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .methodology-steps h3 {
    margin: 0 0 6px;
  }

  .finder-list summary {
    min-height: 98px;
    padding: 20px 0;
    grid-template-columns: 36px 1fr 36px;
    gap: 12px;
  }

  .finder-list summary i,
  .faq-list summary i {
    width: 34px;
    height: 34px;
  }

  .finder-answer {
    padding: 0 0 28px 48px;
    gap: 18px;
  }

  .faq-list summary {
    font-size: 0.94rem;
  }

  .faq-list details > div {
    padding-right: 42px;
  }
}

@media (max-width: 430px) {
  .outcome-card { padding: 25px; }
  .finder-list summary { grid-template-columns: 28px 1fr 32px; }
  .finder-index { font-size: 0.63rem; }
  .finder-answer { padding-left: 40px; }
  .faq-list details > div { padding-right: 8px; }
}


@media (max-width: 980px) {
  .operations-experience { min-height: 920px; }
  .operations-shell { padding: 54px 42px 70px; }
  .operations-heading { grid-template-columns: 1fr; gap: 22px; }
  .operations-intro { max-width: 680px; }
  .operations-console { max-width: none; }
  .operations-media > img { object-position: 62% center; }
}

@media (max-width: 760px) {
  .operations-experience { min-height: 1010px; border-radius: 20px; }
  .operations-experience::before { background: linear-gradient(90deg, rgba(5, 11, 19, 0.97), rgba(5, 11, 19, 0.72)), linear-gradient(180deg, rgba(5, 11, 19, 0.35), rgba(5, 11, 19, 0.92)); }
  .operations-shell { padding: 46px 22px 74px; }
  .operations-tabs { grid-template-columns: repeat(2, 1fr); }
  .operations-tabs button { min-height: 62px; padding: 12px 8px; }
  .operations-tabs button:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .operations-tabs button:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .operations-panels,
  .operations-panel { min-height: 480px; }
  .operations-panel { padding: 30px 24px; }
  .panel-signal { right: 22px; top: 27px; }
  .operations-panel h3 { padding-right: 10px; }
  .operations-status { gap: 14px; }
  .operations-status span:not(:first-child) { display: none; }
  .operations-node { display: none; }
  .operations-glow { right: -25%; }
}

@media (max-width: 430px) {
  .operations-experience { min-height: 1060px; }
  .operations-shell { padding-right: 17px; padding-left: 17px; }
  .operations-console { border-radius: 16px; }
  .operations-tabs button { font-size: 0.68rem; }
  .operations-tabs button span { display: none; }
  .operations-panel { padding: 28px 20px; }
  .operations-panel h3 { font-size: 1.55rem; }
  .panel-signal { display: none; }
}


.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.hero-global {
  min-height: 880px;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
  gap: 42px;
}

.hero-global::before {
  background:
    radial-gradient(circle at 78% 46%, rgba(18, 150, 243, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(5, 11, 19, 0.98) 0%, rgba(5, 11, 19, 0.89) 38%, rgba(5, 11, 19, 0.46) 68%, rgba(5, 11, 19, 0.14) 100%),
    linear-gradient(0deg, rgba(5, 11, 19, 0.54), transparent 48%);
}

.hero-grid-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(69, 214, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 214, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 75% 50%, #000, transparent 47%);
}

.hero-global .hero-content {
  max-width: 700px;
}

.hero-global .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-global .eyebrow > span {
  width: 7px;
  height: 7px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(69, 214, 255, 0.1), 0 0 18px rgba(69, 214, 255, 0.75);
  animation: global-live 2.4s ease-in-out infinite;
}

.hero-global h1 {
  max-width: 700px;
  font-size: clamp(3rem, 5.05vw, 5.05rem);
}

.hero-global h1 em {
  display: block;
  color: var(--cyan-400);
  font-style: normal;
  font-weight: 820;
  text-shadow: 0 0 38px rgba(69, 214, 255, 0.2);
}

.hero-global .hero-copy {
  max-width: 650px;
}

.hero-stage {
  --stage-rotate-x: 0deg;
  --stage-rotate-y: 0deg;
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  aspect-ratio: 1;
  justify-self: end;
  transform-style: preserve-3d;
  transform: perspective(1100px) rotateX(var(--stage-rotate-x)) rotateY(var(--stage-rotate-y));
  transition: transform 260ms ease-out;
}

.stage-orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(69, 214, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 38px rgba(18, 150, 243, 0.035), 0 0 30px rgba(18, 150, 243, 0.035);
}

.stage-orbit::before,
.stage-orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--cyan-400);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(69, 214, 255, 0.08), 0 0 22px rgba(69, 214, 255, 0.8);
}

.stage-orbit::before { left: 9%; top: 20%; }
.stage-orbit::after { right: 8%; bottom: 23%; }

.orbit-one {
  width: 88%;
  height: 88%;
  animation: orbit-spin 24s linear infinite;
}

.orbit-two {
  width: 67%;
  height: 67%;
  border-style: dashed;
  opacity: 0.72;
  animation: orbit-spin-reverse 18s linear infinite;
}

.orbit-three {
  width: 47%;
  height: 47%;
  border-color: rgba(255, 255, 255, 0.17);
  animation: orbit-breathe 5s ease-in-out infinite;
}

.stage-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 185px;
  height: 185px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 35% 20%, rgba(69, 214, 255, 0.22), transparent 38%),
    rgba(5, 16, 29, 0.9);
  border: 1px solid rgba(69, 214, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(18, 150, 243, 0.035), 0 28px 75px rgba(0, 0, 0, 0.45), inset 0 0 45px rgba(18, 150, 243, 0.09);
  transform: translate(-50%, -50%) translateZ(45px);
  backdrop-filter: blur(14px);
}

.stage-core::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
}

.stage-core span,
.stage-core small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.stage-core strong {
  margin: 3px 0;
  color: var(--white);
  font-size: 4.7rem;
  font-weight: 830;
  line-height: 0.95;
  letter-spacing: -0.08em;
  text-shadow: 0 0 28px rgba(69, 214, 255, 0.28);
}

.stage-card {
  min-width: 175px;
  padding: 13px 15px;
  position: absolute;
  display: grid;
  grid-template-columns: 11px 1fr;
  align-items: center;
  column-gap: 10px;
  color: var(--white);
  background: rgba(5, 13, 23, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.stage-card i {
  width: 8px;
  height: 8px;
  grid-row: 1 / 3;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(69, 214, 255, 0.08), 0 0 16px rgba(69, 214, 255, 0.72);
}

.stage-card strong { font-size: 0.72rem; line-height: 1.2; }
.stage-card small { color: rgba(255, 255, 255, 0.45); font-size: 0.61rem; }
.stage-card-one { left: -3%; top: 18%; animation: stage-card-float 5.5s ease-in-out infinite; }
.stage-card-two { right: -2%; top: 29%; animation: stage-card-float 6.4s ease-in-out -2s infinite; }
.stage-card-three { left: 4%; bottom: 14%; animation: stage-card-float 5.9s ease-in-out -3.5s infinite; }

.stage-status {
  min-width: 190px;
  min-height: 42px;
  padding: 9px 12px;
  position: absolute;
  right: 2%;
  bottom: 6%;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(5, 13, 23, 0.78);
  border: 1px solid rgba(42, 214, 151, 0.22);
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 760;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.stage-status i {
  width: 7px;
  height: 7px;
  background: #2ad697;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(42, 214, 151, 0.1), 0 0 14px rgba(42, 214, 151, 0.8);
  animation: global-live 2.4s ease-in-out infinite;
}

.stage-status b { color: #2ad697; letter-spacing: 0.08em; }

.stage-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(69, 214, 255, 0.85);
  animation: stage-particle 7s ease-in-out infinite;
}

.particle-one { left: 12%; top: 42%; }
.particle-two { right: 17%; top: 12%; animation-delay: -2.3s; }
.particle-three { right: 13%; bottom: 24%; animation-delay: -4.5s; }


.stage-world {
  width: 205px;
  height: 205px;
  padding: 20px;
}

.stage-globe {
  width: 126px;
  height: 126px;
  margin: 5px 0 4px;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(69, 214, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(69, 214, 255, 0.045), 0 0 30px rgba(69, 214, 255, 0.3), inset 0 0 22px rgba(69, 214, 255, 0.16);
  animation: globe-breathe 5.5s ease-in-out infinite;
}

.stage-globe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 32%, transparent 67%, rgba(69, 214, 255, 0.08));
  animation: globe-shine 6s ease-in-out infinite;
}

.stage-globe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform: scale(1.12);
  animation: globe-drift 14s ease-in-out infinite alternate;
}

@keyframes globe-breathe {
  0%, 100% { box-shadow: 0 0 0 7px rgba(69, 214, 255, 0.045), 0 0 25px rgba(69, 214, 255, 0.24); }
  50% { box-shadow: 0 0 0 10px rgba(69, 214, 255, 0.055), 0 0 42px rgba(69, 214, 255, 0.42); }
}

@keyframes globe-shine {
  0%, 100% { opacity: 0.45; transform: translateX(-5%); }
  50% { opacity: 0.9; transform: translateX(5%); }
}

@keyframes globe-drift {
  from { transform: scale(1.12) translateX(-1.5%); }
  to { transform: scale(1.18) translateX(1.5%); }
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-spin-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes orbit-breathe {
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.94); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes stage-card-float {
  0%, 100% { transform: translate3d(0, 0, 18px); }
  50% { transform: translate3d(0, -10px, 28px); }
}

@keyframes stage-particle {
  0%, 100% { opacity: 0.25; transform: translate(0, 0) scale(0.7); }
  50% { opacity: 1; transform: translate(16px, -20px) scale(1.2); }
}

@keyframes global-live {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; transform: scale(1.12); }
}



@media (max-width: 1120px) {
  .hero-global { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr); gap: 20px; }
  .hero-stage { width: 440px; }
  .stage-card { min-width: 155px; }
}

@media (max-width: 980px) {
  .hero-global {
    min-height: 0;
    padding-top: 152px;
    padding-bottom: 82px;
    grid-template-columns: 1fr;
  }
  .hero-global .hero-content { max-width: 760px; }
  .hero-stage { width: min(100%, 490px); margin: 28px auto 0; justify-self: center; }
}

@media (max-width: 760px) {
  .hero-global { padding-top: 132px; }
  .hero-global h1 { font-size: clamp(2.65rem, 12.5vw, 4rem); }
  .hero-global .eyebrow { font-size: 0.66rem; }
  .hero-stage { width: min(100%, 390px); }
  .stage-card { min-width: 145px; padding: 10px 12px; }
  .stage-card-one { left: -1%; top: 14%; }
  .stage-card-two { right: -1%; top: 27%; }
  .stage-card-three { left: 2%; bottom: 10%; }
  .stage-status { right: 1%; bottom: 2%; min-width: 170px; }
  .stage-core { width: 150px; height: 150px; }
  .stage-world { width: 168px; height: 168px; padding: 16px; }
  .stage-globe { width: 100px; height: 100px; }
  .stage-core strong { font-size: 3.8rem; }
}

@media (max-width: 430px) {
  .hero-stage { width: 335px; max-width: 100%; }
  .stage-core { width: 132px; height: 132px; }
  .stage-world { width: 150px; height: 150px; padding: 13px; }
  .stage-globe { width: 91px; height: 91px; }
  .stage-core strong { font-size: 3.25rem; }
  .stage-core span,
  .stage-core small { font-size: 0.49rem; }
  .stage-card { min-width: 126px; grid-template-columns: 8px 1fr; column-gap: 7px; }
  .stage-card i { width: 6px; height: 6px; }
  .stage-card strong { font-size: 0.64rem; }
  .stage-card small { display: none; }
  .stage-status { min-width: 150px; font-size: 0.52rem; }
}


@media (max-width: 980px) {
  .company-showcase { padding: 58px 44px 42px; }
  .company-showcase-heading { grid-template-columns: 1fr; gap: 24px; }
  .company-showcase-copy { max-width: 700px; }
  .company-values { margin-top: 50px; grid-template-columns: 1fr; }
  .company-values article { min-height: 145px; }
}

@media (max-width: 760px) {
  .company-showcase { min-height: 0; margin-top: 78px; margin-bottom: 68px; padding: 48px 24px 34px; border-radius: 20px; }
  .company-showcase::before { background: linear-gradient(90deg, rgba(5, 11, 19, 0.94), rgba(5, 11, 19, 0.74)), linear-gradient(0deg, rgba(5, 11, 19, 0.8), transparent 55%); }
  .company-values { margin-top: 40px; }
  .company-values article { min-height: 0; padding: 22px; }
  .company-showcase-status { align-items: flex-start; flex-wrap: wrap; }
  .company-showcase-status b { width: 100%; margin: 0 0 0 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
