:root {
  --navy: #061827;
  --navy-2: #0b2638;
  --ink: #10222b;
  --cream: #f5efe4;
  --cream-2: #fffaf1;
  --white: #ffffff;
  --gold: #c3a15c;
  --gold-light: #e0c98e;
  --cobalt: #2455e6;
  --cyan: #14c8ed;
  --forest: #173b32;
  --forest-2: #0e2b25;
  --terracotta: #bd6248;
  --sage: #a8b6a4;
  --muted: #64727a;
  --line: rgba(16, 34, 43, 0.14);
  --headquarters-bar-height: 0px;
  --shell: min(1320px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: var(--font-geist-sans, Inter), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(92px + var(--headquarters-bar-height));
}

html.has-headquarters-bar {
  --headquarters-bar-height: 40px;
}

body {
  margin: 0;
  background: var(--cream-2);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

.has-headquarters-bar body {
  padding-top: var(--headquarters-bar-height);
}

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

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

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.headquarters-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 130;
  height: var(--headquarters-bar-height);
  border-bottom: 1px solid rgba(195, 161, 92, 0.72);
  background: linear-gradient(90deg, #ead8a9, var(--gold-light) 48%, #f2e6c8);
  color: var(--navy);
  box-shadow: 0 5px 18px rgba(6, 24, 39, 0.1);
}

.headquarters-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  height: 100%;
  text-align: center;
}

.headquarters-bar p {
  margin: 0;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.015em;
  line-height: 1.35;
}

.headquarters-bar strong {
  font-weight: 800;
}

.headquarters-marker {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(6, 24, 39, 0.09);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  border-bottom: 1px solid rgba(195, 161, 92, 0.34);
  background: rgba(6, 24, 39, 0.93);
  color: var(--cream);
  backdrop-filter: blur(18px);
}

.has-headquarters-bar .site-header {
  top: var(--headquarters-bar-height);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 44px;
}

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

.brand-logo-image {
  width: auto;
  max-width: 230px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-symbol {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol span {
  content: "";
  position: absolute;
  display: block;
  border: 1px solid rgba(20, 200, 237, 0.82);
  transform: rotate(45deg);
}

.brand-symbol::before {
  width: 19px;
  height: 19px;
}

.brand-symbol::after {
  width: 9px;
  height: 9px;
  border-color: var(--gold-light);
  background: rgba(195, 161, 92, 0.18);
}

.brand-symbol span {
  width: 29px;
  height: 1px;
  border-width: 1px 0 0;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(245, 239, 228, 0.82);
  font-size: 14px;
  font-weight: 550;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.desktop-nav a[aria-current="page"] {
  color: var(--cream);
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid rgba(195, 161, 92, 0.72);
  border-radius: 6px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 35%, rgba(36, 85, 230, 0.17), transparent 30%),
    radial-gradient(circle at 8% 82%, rgba(23, 59, 50, 0.75), transparent 34%),
    var(--navy);
  color: var(--cream);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.21;
  background-image:
    linear-gradient(rgba(20, 200, 237, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 200, 237, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent, black 48%, black 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  align-items: center;
  gap: clamp(44px, 5vw, 86px);
  min-height: calc(100svh - 82px);
  padding-block: 62px 58px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  animation: rise-in 0.75s ease both;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-badge > span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(20, 200, 237, 0.1);
}

.launch-badge b {
  color: rgba(224, 201, 142, 0.48);
}

.hero-kicker {
  margin: 0 0 15px;
  color: rgba(245, 239, 228, 0.64);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 5.4vw, 82px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 29px 0 0;
  color: rgba(245, 239, 228, 0.74);
  font-size: 18px;
  line-height: 1.68;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.button-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 13px 34px rgba(195, 161, 92, 0.16);
}

.button-gold:hover {
  box-shadow: 0 17px 38px rgba(195, 161, 92, 0.28);
}

.button-ghost {
  border-color: rgba(224, 201, 142, 0.44);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.025);
}

.button-ghost:hover {
  border-color: var(--cyan);
  background: rgba(20, 200, 237, 0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 37px;
}

.hero-proof > div,
.hero-proof > a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border: 1px solid rgba(224, 201, 142, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-proof > a {
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.hero-proof > a:hover {
  border-color: rgba(20, 200, 237, 0.55);
  background: rgba(20, 200, 237, 0.07);
  transform: translateY(-2px);
}

.proof-code {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 6px;
  background: rgba(36, 85, 230, 0.24);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.proof-code-col {
  background: rgba(189, 98, 72, 0.2);
  color: #eda088;
}

.hero-proof p {
  margin: 0;
  color: rgba(245, 239, 228, 0.61);
  font-size: 11px;
  line-height: 1.45;
}

.hero-proof strong {
  display: block;
  margin-bottom: 2px;
  color: var(--cream);
  font-size: 13px;
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 665px;
  justify-self: end;
  animation: media-in 0.9s 0.12s ease both;
}

.media-frame {
  position: relative;
  min-height: min(660px, calc(100svh - 192px));
  overflow: hidden;
  border: 1px solid rgba(224, 201, 142, 0.3);
  border-radius: 24px 4px 24px 4px;
  background: var(--navy-2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.32);
}

.media-frame > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
}

.media-sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(6, 24, 39, 0.83) 100%),
    linear-gradient(90deg, rgba(6, 24, 39, 0.18), transparent 38%);
  pointer-events: none;
}

.system-status {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 174px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(6, 24, 39, 0.76);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.status-one {
  top: 25px;
  right: 24px;
}

.status-two {
  right: 24px;
  top: 99px;
}

.status-pulse {
  width: 10px;
  height: 10px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(20, 200, 237, 0.14);
  animation: pulse 2.5s ease-in-out infinite;
}

.status-pulse.terracotta {
  background: #ed9074;
  box-shadow: 0 0 0 5px rgba(189, 98, 72, 0.16);
}

.system-status small,
.system-status strong {
  display: block;
}

.system-status small {
  color: rgba(245, 239, 228, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-status strong {
  margin-top: 2px;
  color: var(--cream);
  font-size: 12px;
}

.media-caption {
  position: absolute;
  right: 29px;
  bottom: 27px;
  left: 29px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(224, 201, 142, 0.42);
}

.media-caption > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 23px;
}

.media-caption strong {
  color: var(--cream);
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.tech-chip {
  position: absolute;
  z-index: 4;
  padding: 7px 10px;
  border: 1px solid rgba(20, 200, 237, 0.38);
  border-radius: 4px;
  background: var(--navy);
  color: rgba(20, 200, 237, 0.8);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.chip-one {
  top: -13px;
  left: -18px;
}

.chip-two {
  right: -14px;
  bottom: 93px;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero-bottom-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0 28%, rgba(195, 161, 92, 0.18) 28% 72%, var(--terracotta) 72%);
}

.hero-bottom-line span {
  position: absolute;
  left: 28%;
  width: 11%;
  height: 3px;
  background: var(--cyan);
}

.section-pad {
  padding-block: clamp(88px, 9vw, 138px);
}

.eyebrow {
  margin: 0 0 19px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 11px 3px 0;
  background: currentColor;
}

.eyebrow-light {
  color: var(--gold-light);
}

.intro {
  background: var(--cream-2);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.76fr;
  gap: clamp(60px, 9vw, 148px);
  align-items: start;
}

.section-heading h2,
.history-heading h2,
.services-top h2,
.method-title h2,
.coverage-copy h2,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.intro-copy {
  padding-top: 31px;
}

.intro-copy p {
  margin: 0 0 19px;
  color: #526069;
  font-size: 17px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 17px;
  align-items: center;
  margin-top: 17px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.history {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.history-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(6, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 64%);
}

.history-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(64px, 9vw, 142px);
  align-items: start;
}

.history-heading {
  position: sticky;
  top: 112px;
}

.history-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 6px 11px;
  border: 1px solid rgba(189, 98, 72, 0.35);
  border-radius: 999px;
  color: var(--terracotta);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.history-heading h2 {
  margin: 0;
}

.history-lead {
  margin: 27px 0 0;
  color: #526069;
  font-size: 16px;
  line-height: 1.75;
}

.history-signature {
  display: grid;
  gap: 6px;
  margin-top: 29px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: var(--navy);
  color: var(--cream);
}

.history-signature small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.history-signature strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.history-heading blockquote {
  margin: 26px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.35;
}

.history-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 48px;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 12px;
  width: 1px;
  background: linear-gradient(var(--gold), var(--cobalt), var(--terracotta));
}

.history-item {
  position: relative;
  padding: 28px 30px 29px;
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 15px 38px rgba(6, 24, 39, 0.055);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.history-item:hover {
  transform: translateX(5px);
  border-color: rgba(36, 85, 230, 0.28);
}

.history-dot {
  position: absolute;
  top: 34px;
  left: -43px;
  width: 15px;
  height: 15px;
  border: 4px solid var(--cream);
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 1px rgba(36, 85, 230, 0.4);
}

.history-item:first-child .history-dot {
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(195, 161, 92, 0.5);
}

.history-item:last-child .history-dot {
  background: var(--terracotta);
  box-shadow: 0 0 0 1px rgba(189, 98, 72, 0.5);
}

.history-period {
  margin: 0 0 9px;
  color: var(--cobalt);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.history-item h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.history-item > p:last-child {
  margin: 0;
  color: #5d6971;
  font-size: 14px;
  line-height: 1.7;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 85, 230, 0.1), transparent 38%),
    var(--navy);
  color: var(--cream);
}

.services::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -270px;
  bottom: -310px;
  border: 1px solid rgba(20, 200, 237, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(20, 200, 237, 0.025), 0 0 0 150px rgba(20, 200, 237, 0.018);
}

.services-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.services-top > p {
  max-width: 370px;
  margin: 0 0 8px;
  color: rgba(245, 239, 228, 0.6);
  font-size: 16px;
  line-height: 1.65;
}

.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 60px;
}

.service-card {
  display: flex;
  min-height: 392px;
  flex-direction: column;
  padding: 28px 25px 24px;
  border: 1px solid rgba(224, 201, 142, 0.2);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(20, 200, 237, 0.62);
  background: rgba(36, 85, 230, 0.09);
}

.service-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(20, 200, 237, 0.36);
  border-radius: 6px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.service-card h3 {
  margin: 29px 0 14px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.service-card > p {
  margin: 0;
  color: rgba(245, 239, 228, 0.62);
  font-size: 14px;
  line-height: 1.68;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 23px 0 28px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 5px 8px;
  border: 1px solid rgba(224, 201, 142, 0.17);
  border-radius: 30px;
  color: rgba(245, 239, 228, 0.6);
  font-size: 9px;
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(224, 201, 142, 0.19);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 750;
}

.digital-solutions {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 8%, rgba(36, 85, 230, 0.2), transparent 25%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
  color: var(--cream);
}

.digital-solutions-grid,
.portfolio-grid-background {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(20, 200, 237, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 200, 237, 0.1) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.digital-solutions > .shell,
.web-portfolio > .shell {
  position: relative;
  z-index: 2;
}

.digital-solutions-heading,
.web-portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: clamp(45px, 8vw, 118px);
}

.digital-solutions-heading h2,
.web-portfolio-heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 5.1vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.01;
}

.digital-solutions-heading > p,
.web-portfolio-heading > p {
  margin: 0 0 7px;
  color: rgba(245, 239, 228, 0.62);
  font-size: 15px;
  line-height: 1.72;
}

.digital-sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.digital-sector-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(224, 201, 142, 0.22);
  border-radius: 18px 4px 18px 4px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.18);
}

.digital-sector-copy {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
}

.digital-sector-number {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.web-sector-card .digital-sector-number {
  color: var(--gold-light);
}

.digital-sector-copy h3 {
  max-width: 570px;
  margin: 28px 0 17px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.25vw, 49px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.digital-sector-copy > p {
  margin: 0;
  color: rgba(245, 239, 228, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.digital-sector-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 25px 0 31px;
  padding: 0;
  list-style: none;
}

.digital-sector-copy li {
  padding: 7px 9px;
  border: 1px solid rgba(224, 201, 142, 0.18);
  border-radius: 999px;
  color: rgba(245, 239, 228, 0.62);
  font-size: 9px;
}

.digital-sector-copy > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(224, 201, 142, 0.2);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
}

.digital-sector-visual {
  position: relative;
  min-height: 285px;
  border-top: 1px solid rgba(224, 201, 142, 0.18);
  background: rgba(3, 16, 26, 0.58);
}

.software-visual {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 34px;
  background:
    radial-gradient(circle at 76% 27%, rgba(20, 200, 237, 0.11), transparent 25%),
    rgba(3, 16, 26, 0.58);
}

.software-window {
  display: grid;
  grid-template-columns: 9px 9px 9px 1fr;
  align-items: center;
  gap: 7px;
  padding: 13px 15px;
  border: 1px solid rgba(20, 200, 237, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.software-window > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.software-window > span:nth-child(2) { background: var(--gold); }
.software-window > span:nth-child(3) { background: var(--cyan); }

.software-window code {
  justify-self: end;
  color: rgba(245, 239, 228, 0.56);
  font-size: 10px;
}

.software-flow {
  display: grid;
  grid-template-columns: 34px auto 1fr 34px auto 1fr 34px auto;
  align-items: center;
  gap: 9px;
}

.software-flow i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(20, 200, 237, 0.38);
  border-radius: 7px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-style: normal;
}

.software-flow b {
  color: rgba(245, 239, 228, 0.75);
  font-size: 9px;
}

.software-flow > span {
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 200, 237, 0.5), rgba(224, 201, 142, 0.2));
}

.web-visual {
  min-height: 310px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(195, 161, 92, 0.14), transparent 55%),
    rgba(3, 16, 26, 0.62);
}

.web-visual img {
  position: absolute;
  width: 62%;
  aspect-ratio: 1200 / 760;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 7px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.web-visual img:nth-child(1) {
  top: 37px;
  left: 4%;
  z-index: 1;
  transform: rotate(-5deg);
}

.web-visual img:nth-child(2) {
  top: 25px;
  left: 19%;
  z-index: 3;
}

.web-visual img:nth-child(3) {
  top: 44px;
  right: 2%;
  z-index: 2;
  transform: rotate(5deg);
}

.home-service {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}

.home-service-glow {
  position: absolute;
  top: -230px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(36, 85, 230, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(20, 200, 237, 0.025), 0 0 0 170px rgba(195, 161, 92, 0.025);
}

.home-service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: stretch;
  gap: clamp(44px, 7vw, 96px);
  padding: clamp(42px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid rgba(224, 201, 142, 0.32);
  border-radius: 24px 5px 24px 5px;
  background:
    radial-gradient(circle at 82% 18%, rgba(20, 200, 237, 0.12), transparent 28%),
    linear-gradient(128deg, rgba(36, 85, 230, 0.12), transparent 48%),
    var(--navy);
  color: var(--cream);
  box-shadow: 0 34px 80px rgba(6, 24, 39, 0.18);
}

.home-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(20, 200, 237, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 200, 237, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 56%);
  pointer-events: none;
}

.home-service-copy,
.home-service-zones {
  position: relative;
  z-index: 2;
}

.home-service-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.home-service-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 27px 0 31px;
  color: rgba(245, 239, 228, 0.7);
  font-size: 16px;
  line-height: 1.72;
}

.home-service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.home-service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(224, 201, 142, 0.55);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 750;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.home-service-detail-link:hover {
  border-color: var(--cyan);
  color: var(--cream);
}

.home-service-note {
  display: block;
  max-width: 560px;
  margin-top: 18px;
  color: rgba(245, 239, 228, 0.48);
  font-size: 11px;
  line-height: 1.6;
}

.home-service-zones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

.home-service-zone {
  min-height: 290px;
  padding: 28px 25px;
  border: 1px solid rgba(20, 200, 237, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.home-service-zone:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 200, 237, 0.7);
  background: rgba(20, 200, 237, 0.075);
}

.home-service-zone-colonia {
  margin-top: 42px;
  border-color: rgba(224, 201, 142, 0.3);
}

.home-service-zone-colonia:hover {
  border-color: rgba(224, 201, 142, 0.75);
  background: rgba(195, 161, 92, 0.08);
}

.home-service-code {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(20, 200, 237, 0.45);
  border-radius: 8px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-service-zone-colonia .home-service-code {
  border-color: rgba(224, 201, 142, 0.48);
  color: var(--gold-light);
}

.home-service-zone h3 {
  margin: 31px 0 13px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.home-service-zone p {
  margin: 0;
  color: rgba(245, 239, 228, 0.62);
  font-size: 13px;
  line-height: 1.72;
}

.method {
  background: var(--cream);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.method-title > p:last-child {
  max-width: 430px;
  margin: 26px 0 0;
  color: #627078;
  line-height: 1.72;
}

.method-steps {
  border-top: 1px solid var(--line);
}

.method-steps article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 25px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.method-steps article > span {
  color: var(--cobalt);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.method-steps h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.method-steps p {
  margin: 0;
  color: #627078;
  font-size: 14px;
  line-height: 1.65;
}

.site-directory {
  background:
    linear-gradient(135deg, rgba(36, 85, 230, 0.045), transparent 40%),
    var(--cream-2);
}

.directory-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.directory-heading h2,
.inner-section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.directory-heading > p {
  margin: 0 0 7px;
  color: #627078;
  font-size: 15px;
  line-height: 1.7;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 58px;
}

.directory-card {
  display: flex;
  min-height: 278px;
  flex-direction: column;
  padding: 27px 26px 24px;
  border: 1px solid rgba(6, 24, 39, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(6, 24, 39, 0.045);
  transition: transform 0.23s ease, border-color 0.23s ease, box-shadow 0.23s ease;
}

.directory-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 85, 230, 0.35);
  box-shadow: 0 24px 52px rgba(6, 24, 39, 0.09);
}

.directory-card > span,
.inner-section-card > span,
.related-page-grid > a > span {
  color: var(--cobalt);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.directory-card h3 {
  margin: 29px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.directory-card p {
  margin: 0;
  color: #647179;
  font-size: 13px;
  line-height: 1.68;
}

.directory-card strong,
.related-page-grid > a > strong {
  margin-top: auto;
  padding-top: 24px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
}

.inner-page-hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 clamp(78px, 8vw, 118px);
  background:
    radial-gradient(circle at 83% 30%, rgba(36, 85, 230, 0.2), transparent 28%),
    radial-gradient(circle at 9% 92%, rgba(23, 59, 50, 0.75), transparent 35%),
    var(--navy);
  color: var(--cream);
}

.inner-page-grid {
  position: absolute;
  inset: 0;
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(20, 200, 237, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 200, 237, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-bottom: clamp(55px, 7vw, 92px);
  color: rgba(245, 239, 228, 0.5);
  font-size: 11px;
  font-weight: 650;
}

.breadcrumbs a {
  color: var(--gold-light);
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.inner-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: clamp(54px, 8vw, 120px);
}

.inner-hero-copy h1 {
  max-width: 870px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.047em;
  line-height: 0.98;
}

.inner-page-lead {
  max-width: 800px;
  margin: 29px 0 0;
  color: rgba(245, 239, 228, 0.72);
  font-size: 17px;
  line-height: 1.74;
}

.inner-page-summary {
  padding: 28px;
  border: 1px solid rgba(224, 201, 142, 0.27);
  border-radius: 14px 4px 14px 4px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(9px);
}

.inner-page-summary > small,
.inner-page-address em {
  display: block;
  color: var(--gold-light);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.inner-page-summary > strong {
  display: block;
  margin-top: 11px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.inner-page-summary > p {
  margin: 15px 0 22px;
  color: rgba(245, 239, 228, 0.61);
  font-size: 13px;
  line-height: 1.65;
}

.inner-page-areas {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(224, 201, 142, 0.18);
  border-bottom: 1px solid rgba(224, 201, 142, 0.18);
}

.inner-page-areas span {
  color: rgba(245, 239, 228, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
}

.inner-page-address {
  margin-top: 18px;
  color: rgba(245, 239, 228, 0.68);
  font-size: 11px;
  line-height: 1.65;
}

.inner-page-address em {
  margin-bottom: 6px;
}

.inner-content {
  background: var(--cream-2);
}

.inner-section-heading {
  max-width: 850px;
}

.inner-section-heading h2 {
  font-size: clamp(40px, 4.6vw, 64px);
}

.inner-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 58px;
}

.inner-section-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(6, 24, 39, 0.1);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(6, 24, 39, 0.045);
}

.inner-section-card h3 {
  margin: 27px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.inner-section-card p {
  margin: 0;
  color: #617078;
  font-size: 14px;
  line-height: 1.73;
}

.web-portfolio {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0, rgba(36, 85, 230, 0.18), transparent 28%),
    var(--navy);
  color: var(--cream);
}

.web-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
}

.portfolio-project {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(224, 201, 142, 0.2);
  border-radius: 15px 4px 15px 4px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 25px 58px rgba(0, 0, 0, 0.17);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.portfolio-project:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 200, 237, 0.5);
}

.portfolio-preview {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(224, 201, 142, 0.17);
  background: #e8eaeb;
}

.portfolio-browser-bar {
  display: grid;
  grid-template-columns: 8px 8px 8px 1fr;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 13px;
  background: #eef1f2;
}

.portfolio-browser-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d77b62;
}

.portfolio-browser-bar > span:nth-child(2) { background: #d4ad58; }
.portfolio-browser-bar > span:nth-child(3) { background: #56b78d; }

.portfolio-browser-bar small {
  min-width: 0;
  margin-left: 7px;
  overflow: hidden;
  color: #7a858a;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-preview > img {
  width: 100%;
  aspect-ratio: 1200 / 760;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}

.portfolio-project:hover .portfolio-preview > img {
  transform: scale(1.025);
}

.portfolio-preview-placeholder {
  display: grid;
  aspect-ratio: 1200 / 760;
  place-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy-2), var(--forest));
  text-align: center;
}

.portfolio-preview-placeholder strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.portfolio-preview-placeholder span {
  color: rgba(245, 239, 228, 0.52);
  font-size: 10px;
}

.portfolio-project-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 18px 28px;
  padding: 25px 27px 27px;
}

.portfolio-project-copy > div > span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portfolio-project-copy h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.portfolio-project-copy > p {
  margin: 0;
  color: rgba(245, 239, 228, 0.58);
  font-size: 12px;
  line-height: 1.65;
}

.portfolio-project-copy > a {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(224, 201, 142, 0.17);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 750;
}

.contact-details {
  background: var(--forest);
  color: var(--cream);
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.contact-detail-grid > a,
.contact-detail-grid > div {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid rgba(245, 239, 228, 0.16);
  border-radius: 11px;
  background: rgba(6, 24, 39, 0.27);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.contact-detail-grid > a:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 201, 142, 0.62);
}

.contact-detail-grid span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail-grid strong {
  margin-top: 31px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.contact-detail-grid p {
  margin: auto 0 0;
  padding-top: 18px;
  color: rgba(245, 239, 228, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.related-pages {
  background: var(--cream);
}

.related-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.related-page-grid > a {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid rgba(6, 24, 39, 0.11);
  border-radius: 11px;
  background: rgba(255, 250, 241, 0.82);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.related-page-grid > a:hover {
  transform: translateY(-5px);
  border-color: rgba(189, 98, 72, 0.42);
}

.related-page-grid h3 {
  margin: 27px 0 11px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.related-page-grid p {
  margin: 0;
  color: #637078;
  font-size: 13px;
  line-height: 1.65;
}

.inner-page-closing {
  padding-top: 0;
}

.coverage {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--cream);
}

.coverage-orbit {
  position: absolute;
  border: 1px solid rgba(168, 182, 164, 0.11);
  border-radius: 50%;
}

.orbit-one {
  width: 700px;
  height: 700px;
  top: -380px;
  left: -340px;
}

.orbit-two {
  width: 530px;
  height: 530px;
  right: -310px;
  bottom: -300px;
}

.coverage-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(58px, 8vw, 120px);
  align-items: center;
}

.coverage-copy h2 {
  max-width: 590px;
}

.coverage-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 27px 0 31px;
  color: rgba(245, 239, 228, 0.66);
  font-size: 16px;
  line-height: 1.72;
}

.button-cream {
  border-color: rgba(245, 239, 228, 0.34);
  color: var(--forest);
  background: var(--cream);
}

.route-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 228, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 62% 36%, rgba(20, 200, 237, 0.13), transparent 22%),
    linear-gradient(145deg, rgba(6, 24, 39, 0.45), rgba(14, 43, 37, 0.82));
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.2);
}

.route-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(168, 182, 164, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 182, 164, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
}

.route-line {
  position: absolute;
  top: 122px;
  left: 45%;
  width: 210px;
  height: 250px;
  border: 2px solid var(--terracotta);
  border-top: 0;
  border-left-color: transparent;
  border-radius: 0 0 90% 0;
  transform: rotate(14deg);
  opacity: 0.92;
}

.route-line::before,
.route-line span {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 6px rgba(189, 98, 72, 0.35);
}

.route-line::before {
  right: -5px;
  top: -5px;
}

.route-line span {
  left: 3px;
  bottom: -5px;
}

.place {
  position: absolute;
  z-index: 2;
  padding: 17px 19px;
  border: 1px solid rgba(245, 239, 228, 0.17);
  border-radius: 10px;
  background: rgba(6, 24, 39, 0.72);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.place-mvd {
  top: 55px;
  right: 45px;
}

.place-col {
  bottom: 61px;
  left: 42px;
}

.place-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  top: -5px;
  left: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(20, 200, 237, 0.15);
}

.place-dot-col {
  background: #ed9074;
  box-shadow: 0 0 0 5px rgba(189, 98, 72, 0.18);
}

.place small {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.place h3 {
  margin: 8px 0 6px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.place p {
  margin: 0;
  color: rgba(245, 239, 228, 0.56);
  font-size: 11px;
  line-height: 1.55;
}

.route-label {
  position: absolute;
  top: 58%;
  right: 33px;
  color: rgba(168, 182, 164, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.closing {
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--cream-2);
}

.closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid rgba(195, 161, 92, 0.32);
  border-radius: 20px 4px 20px 4px;
  background:
    linear-gradient(105deg, rgba(36, 85, 230, 0.06), transparent 50%),
    var(--white);
  box-shadow: 0 27px 70px rgba(16, 34, 43, 0.08);
}

.closing h2 {
  font-size: clamp(42px, 4.6vw, 64px);
}

.closing-card > div > p:last-child {
  max-width: 590px;
  margin: 18px 0 0;
  color: #65727a;
  line-height: 1.65;
}

.button-large {
  min-width: 242px;
  min-height: 62px;
}

.site-footer {
  padding: 74px 0 25px;
  background: var(--navy);
  color: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding-bottom: 60px;
}

.brand-footer .brand-copy strong {
  font-size: 27px;
}

.footer-main > div:first-child > p {
  margin: 20px 0 0;
  color: rgba(245, 239, 228, 0.46);
  font-size: 13px;
}

.footer-group-signature {
  display: block;
  max-width: 350px;
  margin-top: 10px;
  color: rgba(224, 201, 142, 0.72);
  font-size: 9px;
  line-height: 1.55;
}

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

.footer-data > div {
  padding-top: 12px;
  border-top: 1px solid rgba(224, 201, 142, 0.2);
}

.footer-data small {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-data p {
  margin: 13px 0 0;
  color: rgba(245, 239, 228, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.footer-data a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.footer-social a {
  padding: 7px 10px;
  border: 1px solid rgba(224, 201, 142, 0.2);
  border-radius: 6px;
  color: rgba(245, 239, 228, 0.68);
  font-size: 9px;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-site-links {
  display: flex;
  max-width: 510px;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.footer-site-links a {
  padding: 7px 10px;
  border: 1px solid rgba(224, 201, 142, 0.16);
  border-radius: 6px;
  color: rgba(245, 239, 228, 0.62);
  font-size: 9px;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-site-links a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(224, 201, 142, 0.16);
  color: rgba(245, 239, 228, 0.4);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--gold-light);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 180;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 38px rgba(6, 24, 39, 0.3), 0 5px 14px rgba(37, 211, 102, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(37, 211, 102, 0.48);
  border-radius: inherit;
  animation: whatsapp-pulse 2.6s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  background: #20c65a;
  box-shadow: 0 20px 44px rgba(6, 24, 39, 0.34), 0 7px 19px rgba(37, 211, 102, 0.38);
}

.whatsapp-float:focus-visible {
  outline-color: #25d366;
  outline-offset: 5px;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

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

@keyframes media-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.82); opacity: 0.62; }
}

@keyframes whatsapp-pulse {
  0% { opacity: 0.72; transform: scale(0.92); }
  72%, 100% { opacity: 0; transform: scale(1.28); }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.82fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 67px);
  }

  .media-frame {
    min-height: 570px;
  }

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

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

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

  .digital-sector-copy {
    min-height: 510px;
  }
}

@media (max-width: 880px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  .site-header {
    height: 72px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(224, 201, 142, 0.36);
    border-radius: 6px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 18px;
    height: 1px;
    background: var(--cream);
  }

  .mobile-menu nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: min(300px, calc(100vw - 34px));
    overflow: hidden;
    border: 1px solid rgba(224, 201, 142, 0.3);
    border-radius: 10px;
    background: var(--navy);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  }

  .mobile-menu nav a {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(224, 201, 142, 0.12);
    font-size: 14px;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 70px 74px;
  }

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

  .hero-media {
    max-width: none;
    margin-top: 10px;
  }

  .media-frame {
    min-height: 590px;
  }

  .intro-grid,
  .history-layout,
  .home-service-card,
  .method-layout,
  .coverage-layout,
  .directory-heading,
  .inner-hero-layout,
  .digital-solutions-heading,
  .web-portfolio-heading {
    grid-template-columns: 1fr;
  }

  .digital-sector-grid,
  .web-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .digital-sector-copy {
    min-height: 0;
  }

  .digital-sector-copy > a {
    margin-top: 8px;
  }

  .intro-copy {
    max-width: 640px;
    padding-top: 0;
  }

  .history-heading {
    position: static;
  }

  .history-layout {
    gap: 52px;
  }

  .method-layout,
  .coverage-layout {
    gap: 54px;
  }

  .home-service-card {
    gap: 46px;
  }

  .inner-hero-layout {
    gap: 50px;
  }

  .inner-page-summary {
    max-width: 560px;
  }

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

  .services-top {
    display: grid;
  }

  .route-card {
    min-height: 500px;
  }

  .closing-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: calc(80px + var(--headquarters-bar-height));
  }

  html.has-headquarters-bar {
    --headquarters-bar-height: 56px;
  }

  .headquarters-bar-inner {
    gap: 9px;
  }

  .headquarters-bar p {
    max-width: 280px;
    font-size: 10.5px;
  }

  .brand-symbol {
    width: 35px;
    height: 35px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .hero-layout {
    padding-top: 52px;
  }

  .launch-badge {
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 59px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .media-frame {
    min-height: 455px;
    border-radius: 18px 3px 18px 3px;
  }

  .system-status {
    min-width: 155px;
    padding: 10px 12px;
  }

  .status-one,
  .status-two {
    right: 13px;
  }

  .status-one { top: 14px; }
  .status-two { top: 78px; }

  .media-caption {
    right: 17px;
    bottom: 18px;
    left: 17px;
  }

  .media-caption > span {
    display: none;
  }

  .media-caption strong {
    width: 100%;
    text-align: left;
  }

  .chip-one,
  .chip-two {
    display: none;
  }

  .section-pad {
    padding-block: 82px;
  }

  .section-heading h2,
  .history-heading h2,
  .services-top h2,
  .home-service-copy h2,
  .method-title h2,
  .coverage-copy h2,
  .closing h2,
  .directory-heading h2,
  .inner-section-heading h2,
  .digital-solutions-heading h2,
  .web-portfolio-heading h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .digital-solutions-heading,
  .web-portfolio-heading {
    gap: 24px;
  }

  .digital-sector-grid,
  .web-portfolio-grid {
    margin-top: 40px;
  }

  .digital-sector-copy {
    padding: 30px 23px;
  }

  .digital-sector-visual {
    min-height: 250px;
  }

  .software-visual {
    padding: 25px 20px;
  }

  .software-flow {
    grid-template-columns: 32px 1fr 32px 1fr 32px;
  }

  .software-flow b {
    display: none;
  }

  .portfolio-project-copy {
    grid-template-columns: 1fr;
    padding: 22px 20px 24px;
  }

  .portfolio-project-copy > a {
    grid-column: 1;
  }

  .inner-page-hero {
    padding-top: 18px;
  }

  .breadcrumbs {
    margin-bottom: 48px;
  }

  .inner-hero-copy h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .inner-page-lead {
    font-size: 15px;
  }

  .inner-content-grid,
  .directory-grid,
  .contact-detail-grid,
  .related-page-grid {
    grid-template-columns: 1fr;
  }

  .directory-heading {
    gap: 25px;
  }

  .directory-grid,
  .inner-content-grid {
    margin-top: 40px;
  }

  .directory-card,
  .inner-section-card,
  .related-page-grid > a,
  .contact-detail-grid > a,
  .contact-detail-grid > div {
    min-height: 0;
  }

  .home-service-actions,
  .home-service-actions .button {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 338px;
  }

  .home-service-card {
    padding: 36px 24px;
  }

  .home-service-zones {
    grid-template-columns: 1fr;
  }

  .home-service-zone {
    min-height: 230px;
  }

  .home-service-zone-colonia {
    margin-top: 0;
  }

  .history-timeline {
    padding-left: 34px;
  }

  .history-timeline::before {
    left: 7px;
  }

  .history-dot {
    left: -34px;
  }

  .history-item {
    padding: 24px 22px;
  }

  .method-steps article {
    grid-template-columns: 48px 1fr;
  }

  .route-card {
    min-height: 490px;
  }

  .place-mvd {
    top: 42px;
    right: 22px;
  }

  .place-col {
    bottom: 42px;
    left: 22px;
  }

  .route-line {
    top: 125px;
    left: 30%;
    width: 165px;
    height: 230px;
  }

  .route-label {
    top: 51%;
    right: 19px;
    font-size: 8px;
  }

  .closing-card {
    padding: 34px 24px;
  }

  .button-large {
    width: 100%;
    min-width: 0;
  }

  .footer-data {
    grid-template-columns: 1fr;
  }

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

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

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