.hero {
  min-height: 100vh;
  background: var(--blue-deep);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 100px;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.45;
}

.hero-accent-line {
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 45%;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

.hero-accent-orb {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 99, 168, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-content {
  max-width: 560px;
  flex-shrink: 0;
}

.hero-visual {
  flex: 1;
  position: relative;
  height: 560px;
  min-width: 280px;
  max-width: 560px;
}

.hero-img-card {
  position: absolute;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.hero-img-card:hover img {
  transform: scale(1.05);
}

.hero-img-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(11, 36, 71, 0.88));
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-light);
}

.hero-img-1 {
  width: 300px;
  height: 365px;
  top: 0;
  left: 4%;
  transform: rotate(-3deg);
  z-index: 3;
}

.hero-img-2 {
  width: 260px;
  height: 305px;
  top: 55px;
  right: 45px;
  transform: rotate(2.5deg);
  z-index: 4;
}

.hero-img-3 {
  width: 225px;
  height: 255px;
  bottom: 0;
  left: 36%;
  transform: rotate(-2deg);
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background: var(--orange);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 500;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--orange-light);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.hero-scroll-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.hero-scroll-bar {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@media (max-width: 1060px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 860px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.6rem; }
}
