/* Tech hero — match landing: brand gradient, logo LEFT, rotating circle RIGHT */

.tech-land-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
  background: #020617;
  min-height: min(78vh, 42rem);
}

.tech-land-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 18% 20%, rgba(34, 211, 238, 0.32), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 70%, rgba(56, 189, 248, 0.22), transparent 50%),
    radial-gradient(ellipse 40% 35% at 60% 10%, rgba(99, 102, 241, 0.14), transparent 55%),
    linear-gradient(165deg, #05080f 0%, #0b1220 45%, #071018 100%);
}
.tech-land-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1px 1px at 48% 22%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 72% 38%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1px 1px at 86% 14%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 28% 72%, rgba(255, 255, 255, 0.4), transparent);
}

.tech-land-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: clamp(5rem, 10vh, 6.5rem) 1.25rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: center;
  box-sizing: border-box;
  min-height: inherit;
}

.tech-land-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  min-width: 0;
}

.tech-land-hero__logo-wrap {
  position: relative;
  width: min(100%, 15rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.tech-land-hero__logo-glow {
  position: absolute;
  inset: -26%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.55) 0%,
    rgba(34, 211, 238, 0.28) 40%,
    rgba(14, 165, 233, 0.12) 58%,
    transparent 72%
  );
  filter: blur(14px);
  pointer-events: none;
  animation: tech-sun-pulse 4.5s ease-in-out infinite;
}
.tech-land-hero__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none !important;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  filter: none !important;
}
@keyframes tech-sun-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.tech-land-hero__copy {
  width: 100%;
  padding: 1.2rem 1.3rem 1.3rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(125, 211, 252, 0.3);
  background: linear-gradient(165deg, rgba(10, 20, 38, 0.82), rgba(4, 10, 22, 0.9));
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 18px 48px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(34, 211, 238, 0.1);
}
.tech-land-hero__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #67e8f9;
}
.tech-land-hero__title {
  margin: 0 0 0.55rem;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #f8fafc;
}
.tech-land-hero__lead {
  margin: 0 0 0.85rem;
  color: #cbd5e1;
  max-width: 36rem;
  line-height: 1.55;
}
.tech-land-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tech-land-hero__right {
  display: grid;
  place-items: center;
  min-width: 0;
}
.tech-land-hero__orbit {
  width: min(100%, 32rem) !important;
  height: min(100%, 32rem) !important;
  aspect-ratio: 1 / 1 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  --orbit-r: 12.5rem;
  --orbit-period: 36s;
  --orbit-n: 12;
}
.tech-land-hero__orbit-core-dot {
  position: relative;
  z-index: 1;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: radial-gradient(circle, #67e8f9 0%, #22d3ee 55%, transparent 70%);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.8);
}
.tech-land-hero .orbit__node-mark {
  font-size: 1.15rem;
  line-height: 1;
}

@media (max-width: 960px) {
  .tech-land-hero {
    min-height: 0;
  }
  .tech-land-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 4.75rem;
    gap: 1rem;
  }
  .tech-land-hero__left {
    align-items: center;
    text-align: center;
  }
  .tech-land-hero__actions {
    justify-content: center;
  }
  .tech-land-hero__logo-wrap {
    width: min(70vw, 12.5rem);
  }
  .tech-land-hero__orbit {
    width: min(96vw, 22rem) !important;
    height: min(96vw, 22rem) !important;
    --orbit-r: 8.5rem;
    --orbit-period: 28s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-land-hero__logo-glow {
    animation: none;
  }
}


/* navClear3 — keep tech hero fully below fixed nav */
body[data-page=tech] {
  padding-top: 4.75rem !important;
}
body[data-page=tech] .site-nav.site-nav--premium {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10055 !important;
  width: 100% !important;
}
body[data-page=tech] .tech-land-hero {
  padding-top: 0 !important;
}
body[data-page=tech] .tech-land-hero__inner {
  padding-top: 2rem !important;
}
@media (max-width: 900px) {
  body[data-page=tech] { padding-top: 3.6rem !important; }
}
