.home-page .navbar {
  background: rgba(255, 255, 255, .98) !important;
}

.home-hero-v2,
.home-hero-v2 * {
  box-sizing: border-box;
}

.home-hero-v2 {
  position: relative;
  min-height: clamp(720px, 92vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 62px;
  background:
    radial-gradient(820px circle at 78% 28%, rgba(37, 208, 180, .11), transparent 48%),
    linear-gradient(180deg, rgba(2, 11, 24, .98) 0%, rgba(6, 26, 59, .96) 58%, rgba(8, 57, 135, .86) 100%);
  isolation: isolate;
}

.home-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 74px 74px, 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.92), rgba(0,0,0,.68) 68%, transparent);
  opacity: .72;
}

.home-hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 18, 38, .5), transparent 48%, rgba(3, 18, 38, .18));
  pointer-events: none;
}

.home-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .9;
  z-index: 0;
}

.home-hero-v2__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  gap: 52px;
  align-items: center;
}

.home-hero-v2__copy {
  min-width: 0;
}

.home-hero-v2 h1 {
  max-width: 790px;
  font-size: clamp(3rem, 4.85vw, 4.75rem);
  line-height: .94;
  letter-spacing: -.075em;
  margin: 24px 0 20px;
  text-wrap: balance;
}

.home-hero-v2 .lead {
  max-width: 680px;
  color: #D4E1F2;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.55;
}

.glass-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055)),
    rgba(3, 18, 38, .58);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(360px circle at 20% 10%, rgba(255, 210, 51, .19), transparent 44%),
    radial-gradient(440px circle at 96% 82%, rgba(37, 208, 180, .16), transparent 42%);
  pointer-events: none;
}

.story-card {
  min-height: 505px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 30px;
}

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

.story-card h2 {
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1.03;
  letter-spacing: -.055em;
  margin: 14px 0 18px;
}

.story-card p {
  color: var(--muted);
  font-size: 1.03rem;
  margin-top: 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: #E9F3FF;
  font-size: .82rem;
  font-weight: 900;
}

.character-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-character-pair {
  max-width: 760px;
  margin-top: 12px;
  align-items: end;
}

.character-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 8px;
  justify-items: center;
  align-items: end;
  min-height: 248px;
  padding: 16px 18px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background:
    radial-gradient(circle at 33% 38%, rgba(11,92,255,.2), transparent 40%),
    rgba(255,255,255,.07);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.character-card--gemini {
  background:
    radial-gradient(circle at 33% 38%, rgba(255,210,51,.25), transparent 42%),
    rgba(255,255,255,.07);
}

.character-card::before {
  content: "";
  position: absolute;
  inset: auto 6% -42px 6%;
  height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,210,51,.28), transparent 64%),
    radial-gradient(circle at 30% 48%, rgba(11,92,255,.3), transparent 62%);
}

.character-card img {
  position: relative;
  z-index: 1;
  width: clamp(170px, 16vw, 220px);
  height: clamp(168px, 16vw, 218px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.44));
  animation: characterFloat 5.6s ease-in-out infinite;
}

.character-card--gemini img {
  animation-delay: .8s;
  width: clamp(170px, 16vw, 220px);
  height: clamp(168px, 16vw, 218px);
}

.character-card div {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  padding-bottom: 0;
  text-align: center;
}

.character-card strong,
.character-card span,
.character-card small {
  display: block;
}

.character-card strong {
  color: var(--yellow);
  font-size: .9rem;
  font-weight: 950;
  letter-spacing: .14em;
}

.character-card span {
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.character-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
  margin-top: 2px;
  font-size: .8rem;
}

.character-card--gemini img {
  width: clamp(136px, 13vw, 168px);
}

.hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(8, 57, 135, .8));
  pointer-events: none;
}

.premium-grid .card {
  min-height: 300px;
}

.service-pillar-card {
  display: flex;
  flex-direction: column;
}

.service-mark {
  position: relative;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: #fff;
  isolation: isolate;
}

.service-mark::before,
.service-mark::after {
  content: "";
  position: absolute;
  border-radius: 24px;
}

.service-mark::before {
  inset: 0;
  border: 1px solid rgba(255,255,255,.2);
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(145deg, rgba(3,18,38,.16), rgba(255,255,255,.07));
  box-shadow: inset 0 0 24px rgba(255,255,255,.08), 0 18px 42px rgba(0,0,0,.16);
  z-index: -1;
}

.service-mark::after {
  inset: 14px;
  border: 1px solid currentColor;
  opacity: .28;
  transform: rotate(45deg);
}

.service-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px color-mix(in srgb, currentColor 42%, transparent));
}

.service-mark--digital {
  color: #8AB4FF;
}

.service-mark--physical {
  color: var(--yellow);
}

.service-mark--strategy {
  color: var(--cyan);
}

.solutions-preview {
  overflow: hidden;
}

.solutions-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 44px;
  align-items: center;
}

.solutions-layout .section-title {
  text-align: left;
  margin: 0;
}

.solutions-layout .btn {
  margin-top: 26px;
}

.solution-orbit {
  position: relative;
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr minmax(170px, .72fr) 1fr;
  grid-template-rows: 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  padding: clamp(22px, 3.2vw, 34px);
  background:
    radial-gradient(420px circle at 18% 24%, rgba(11,92,255,.24), transparent 46%),
    radial-gradient(380px circle at 84% 22%, rgba(255,210,51,.16), transparent 44%),
    rgba(255,255,255,.055);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
  overflow: hidden;
}

.solution-orbit::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 47%;
  height: 108px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  border-top-color: rgba(138,180,255,.34);
  border-bottom-color: rgba(255,210,51,.28);
  opacity: .8;
}

.solution-orbit::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
  pointer-events: none;
}

.delivery-map__hub,
.delivery-map__rail,
.delivery-map__stages,
.delivery-map__track,
.delivery-map__pulse {
  position: relative;
  z-index: 1;
}

.delivery-map__hub {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 24px 20px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.16), transparent 34%),
    linear-gradient(145deg, var(--blue-500), var(--blue-950) 48%, rgba(255,210,51,.82));
  box-shadow: 0 0 78px rgba(37,208,180,.2), 0 26px 58px rgba(0,0,0,.34);
  text-align: center;
  animation: deliveryHub 5.8s ease-in-out infinite;
}

.delivery-map__hub span {
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.delivery-map__hub strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.delivery-map__hub small {
  display: block;
  max-width: 180px;
  margin-top: 10px;
  color: #D8E7FF;
  font-size: .76rem;
  line-height: 1.36;
}

.delivery-map__rail {
  grid-row: 1;
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background: rgba(3,18,38,.42);
}

.delivery-map__rail--physical {
  grid-column: 1;
  border-color: rgba(255,210,51,.28);
}

.delivery-map__rail--digital {
  grid-column: 3;
  border-color: rgba(138,180,255,.34);
}

.delivery-map__rail span {
  color: var(--yellow);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.delivery-map__rail--digital span {
  color: #AFCBFF;
}

.delivery-map__rail strong,
.delivery-map__stages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #EAF4FF;
  font-size: .82rem;
  font-weight: 950;
}

.delivery-map__rail--physical strong {
  border-color: rgba(255,210,51,.32);
  color: var(--yellow);
}

.delivery-map__rail--digital strong {
  border-color: rgba(138,180,255,.34);
  color: #C8DCFF;
}

.delivery-map__stages {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.delivery-map__stages span {
  width: 100%;
  color: #D9E8FF;
  animation: stageGlow 4.8s ease-in-out infinite;
}

.delivery-map__stages span:nth-child(2) {
  animation-delay: .35s;
}

.delivery-map__stages span:nth-child(3) {
  animation-delay: .7s;
}

.delivery-map__stages span:nth-child(4) {
  animation-delay: 1.05s;
}

.delivery-map__track {
  position: absolute;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(90deg, rgba(138,180,255,.08), rgba(138,180,255,.9), rgba(255,210,51,.9), rgba(255,210,51,.08));
  box-shadow: 0 0 28px rgba(37,208,180,.24);
}

.delivery-map__track--cab {
  top: 42%;
}

.delivery-map__track--gemini {
  top: 56%;
  opacity: .72;
}

.delivery-map__pulse {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  box-shadow: 0 0 24px currentColor;
}

.delivery-map__pulse--cab {
  top: calc(42% - 6px);
  color: #8AB4FF;
  background: #8AB4FF;
  animation: pulseCab 4.5s var(--ease) infinite;
}

.delivery-map__pulse--gemini {
  top: calc(56% - 6px);
  color: var(--yellow);
  background: var(--yellow);
  animation: pulseGemini 4.5s var(--ease) infinite;
}

@keyframes deliveryHub {
  50% {
    transform: translateY(-8px);
    box-shadow: 0 0 88px rgba(37,208,180,.28), 0 34px 68px rgba(0,0,0,.38);
  }
}

@keyframes pulseCab {
  0% { left: 18%; opacity: 0; }
  10%, 85% { opacity: 1; }
  100% { left: calc(82% - 13px); opacity: 0; }
}

@keyframes pulseGemini {
  0% { right: 18%; opacity: 0; }
  10%, 85% { opacity: 1; }
  100% { right: calc(82% - 13px); opacity: 0; }
}

@keyframes stageGlow {
  50% {
    border-color: rgba(255,210,51,.42);
    color: var(--yellow);
    box-shadow: 0 0 26px rgba(255,210,51,.12);
  }
}

@keyframes pulseCabMobile {
  0% { top: 18%; opacity: 0; }
  10%, 85% { opacity: 1; }
  100% { top: calc(88% - 13px); opacity: 0; }
}

@keyframes pulseGeminiMobile {
  0% { top: calc(88% - 13px); opacity: 0; }
  10%, 85% { opacity: 1; }
  100% { top: 18%; opacity: 0; }
}

.cta-premium {
  background:
    radial-gradient(420px circle at 10% 0%, rgba(255,210,51,.2), transparent 42%),
    linear-gradient(135deg, rgba(11,92,255,.36), rgba(3,18,38,.74) 48%, rgba(255,210,51,.12));
}

.footer-premium {
  padding: 0;
  background: rgba(2, 11, 24, .72);
  backdrop-filter: blur(14px);
}

.footer-premium-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: 34px;
  padding: 46px 0;
}

.footer-premium-grid p,
.footer-premium-grid span,
.footer-premium-grid a {
  color: var(--muted);
}

.footer-premium-grid strong,
.footer-premium-grid a,
.footer-premium-grid span {
  display: block;
}

.footer-premium-grid strong {
  color: #fff;
  margin-bottom: 12px;
}

.footer-premium-grid a,
.footer-premium-grid span {
  margin-top: 8px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
}

@keyframes characterFloat {
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1050px) {
  .home-hero-v2 {
    min-height: auto;
    padding-top: 118px;
  }

  .home-hero-v2__grid,
  .solutions-layout {
    grid-template-columns: 1fr;
  }

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

  .solutions-layout .section-title {
    text-align: center;
    margin: 0 auto;
  }
}

@media (min-width: 1051px) and (max-height: 980px) {
  .home-hero-v2 {
    min-height: 100svh;
    padding: 84px 0 28px;
    align-items: start;
  }

  .home-hero-v2__grid {
    gap: 36px;
    align-items: start;
  }

  .home-hero-v2 h1 {
    font-size: clamp(2.65rem, 3.75vw, 3.8rem);
    line-height: .94;
    margin: 14px 0 12px;
  }

  .home-hero-v2 .lead {
    font-size: .98rem;
    line-height: 1.42;
  }

  .home-hero-v2 .badge {
    padding: 7px 12px;
    font-size: .78rem;
  }

  .home-character-pair {
    margin-top: 8px;
    gap: 12px;
  }

  .character-card {
    min-height: 148px;
    padding: 8px 12px 10px;
    border-radius: 18px;
  }

  .character-card img,
  .character-card--gemini img {
    width: 108px;
    height: 104px;
  }

  .character-card strong {
    font-size: .76rem;
  }

  .character-card span {
    font-size: .88rem;
  }

  .character-card small {
    font-size: .72rem;
  }

  .story-card {
    min-height: auto;
    padding: 26px 34px;
  }

  .story-card h2 {
    font-size: clamp(2rem, 2.85vw, 2.75rem);
    margin: 10px 0 12px;
  }

  .story-card p {
    font-size: .94rem;
    line-height: 1.44;
    margin-top: 10px;
  }

  .pill-row {
    margin-top: 16px;
    gap: 8px;
  }

  .pill-row span {
    min-height: 32px;
    padding: 7px 10px;
    font-size: .76rem;
  }

  .story-card .hero-actions {
    margin-top: 22px;
  }
}

@media (max-width: 760px) {
  .home-hero-v2 {
    padding: 112px 0 44px;
  }

  .home-hero-v2 h1 {
    font-size: clamp(2.55rem, 13vw, 4.05rem);
  }

  .character-pair,
  .footer-premium-grid {
    grid-template-columns: 1fr;
  }

  .character-card {
    grid-template-columns: none;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 236px;
    padding: 14px 16px 18px;
  }

  .character-card img {
    width: clamp(142px, 48vw, 178px);
    height: clamp(154px, 52vw, 194px);
  }

  .story-card {
    padding: 24px;
    border-radius: 24px;
  }

  .pill-row span {
    flex: 1 1 auto;
  }

  .solution-orbit {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .solution-orbit::before {
    left: 22px;
    right: 22px;
    top: 22px;
    bottom: 22px;
    width: auto;
    height: auto;
  }

  .delivery-map__hub,
  .delivery-map__rail,
  .delivery-map__stages {
    grid-column: 1;
  }

  .delivery-map__hub {
    grid-row: 1;
    min-height: 170px;
  }

  .delivery-map__rail {
    min-height: auto;
    padding: 20px;
  }

  .delivery-map__rail--physical {
    grid-row: 2;
  }

  .delivery-map__rail--digital {
    grid-row: 3;
  }

  .delivery-map__stages {
    grid-row: 4;
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-map__track {
    left: 50%;
    right: auto;
    top: 18%;
    bottom: 12%;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(138,180,255,.08), rgba(138,180,255,.9), rgba(255,210,51,.9), rgba(255,210,51,.08));
  }

  .delivery-map__track--cab,
  .delivery-map__track--gemini {
    top: 18%;
  }

  .delivery-map__track--gemini {
    left: calc(50% + 8px);
  }

  .delivery-map__pulse--cab {
    left: calc(50% - 6px);
    animation: pulseCabMobile 4.5s var(--ease) infinite;
  }

  .delivery-map__pulse--gemini {
    right: auto;
    left: calc(50% + 2px);
    animation: pulseGeminiMobile 4.5s var(--ease) infinite;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  .character-card {
    min-height: 236px;
  }

  .character-card img {
    width: 150px;
    height: 164px;
  }
}
