
/* Hero inner layout */
.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  width: 100%; padding: 0 60px 0 140px;
}

.text-shield {
  position: relative; flex-shrink: 0; width: 360px;
}
.text-shield::before {
  content: ''; position: absolute;
  inset: -20px -32px -20px -20px;
  background: linear-gradient(90deg, rgba(13,27,42,0.78) 50%, transparent 100%);
  pointer-events: none; z-index: -1;
}

.hero-right-panel {
  flex: 1; display: flex;
  align-items: center; justify-content: center;
  overflow: visible;
}


/* Text shield — protects text from lines */
.text-shield {
  position: relative;
}
.text-shield::before {
  content: '';
  position: absolute;
  inset: -16px -24px -16px -16px;
  background: linear-gradient(90deg, rgba(13,27,42,0.75) 55%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}


/* Right panel */
.hero-title-row {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero-right-panel {
  position: relative;
  flex: 1;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ============================================================
   GLYDE MEDIA — web-portfolio-hero.css
   Styles for the Web Portfolio section intro hero only.
   ============================================================ */

.hero-graphic {
  position: relative;
  width: 100%; height: 620px;
  overflow: hidden;
  /* extra padding for orbit rings */
  background: var(--navy);
  display: flex;
  align-items: center;
}
.hero-graphic::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(61,189,160,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,189,160,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none; z-index: 0;
  animation: gridShift 25s linear infinite;
}
@keyframes gridShift { to { background-position: 48px 48px; } }

.hero-left {
  position: relative; z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  padding-top: 0;
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--cond);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
  animation: fadeUp 0.9s 0.2s both;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--teal); }

.hero-title {
  font-family: var(--cond);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em; line-height: 0.9;
  animation: fadeUp 0.9s 0.35s both;
  flex-shrink: 0;
}
.hero-title .solid  { color: var(--white); display: block; }
.hero-title .stroke { display: block; -webkit-text-stroke: 2px var(--teal); color: transparent; }

.hero-divider {
  width: 48px; height: 3px; background: var(--teal);
  margin: 18px 0 14px;
  animation: fadeUp 0.9s 0.45s both;
}

.hero-sub {
  font-family: var(--cond);
  font-size: 17px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  max-width: 420px; line-height: 1.6;
  animation: fadeUp 0.9s 0.5s both;
}

/* Logo spin */
.logo-spin-wrap {
  position: relative; z-index: 5;
  width: 380px; height: 380px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: -16px; margin-left: 0; margin-right: 40px;
}
.logo-glow-ring {
  position: absolute; inset: -16%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(61,189,160,0.14) 0%, rgba(61,189,160,0.05) 50%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.1);opacity:1} }

.orbit-ring-1 {
  position: absolute; width: 118%; height: 118%;
  border-radius: 50%; border: 1px solid rgba(61,189,160,0.22);
  animation: orbitSpin1 12s linear infinite;
}
.orbit-ring-1::before {
  content: ''; position: absolute;
  top: -4px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 10px rgba(61,189,160,0.9);
}
@keyframes orbitSpin1 { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.orbit-ring-2 {
  position: absolute; width: 138%; height: 138%;
  border-radius: 50%; border: 1px dashed rgba(61,189,160,0.13);
  animation: orbitSpin2 20s linear infinite;
}
.orbit-ring-2::before {
  content: ''; position: absolute;
  bottom: -3px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(120,188,65,0.85); box-shadow: 0 0 8px rgba(120,188,65,0.7);
}
@keyframes orbitSpin2 { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }

.logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
  animation: logoSpin 18s linear infinite;
  filter: drop-shadow(0 0 32px rgba(61,189,160,0.6));
}
@keyframes logoSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }





/* Slanted lines + canvas */
.lines-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 1;
  pointer-events: none;
}
.bg-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 2;
}

@media (max-width: 900px) {
  .hero-graphic   { height: auto; min-height: 460px; }
  .hero-left      { padding: 60px 32px 48px; }
  .hero-title-row { gap: 20px; }
  .logo-spin-wrap { width: 140px; height: 140px; margin-right: 20px; }
}

.orbit-ring-3 {
  position: absolute; width: 168%; height: 168%;
  border-radius: 50%; border: 1px solid rgba(61,189,160,0.07);
  animation: orbitSpin3 35s linear infinite;
}
.orbit-ring-3::before {
  content: ''; position: absolute;
  top: 50%; right: -4px; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(61,189,160,0.6); box-shadow: 0 0 8px rgba(61,189,160,0.6);
}
@keyframes orbitSpin3 { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
