/* ── hero.css ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-24);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background decorative shape */
.hero__bg-shape {
  position: absolute;
  top: -10%;
  right: -15%;
  width: 60vw;
  max-width: 900px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--color-yellow-light) 0%, transparent 70%);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-yellow-dark);
  background: var(--color-yellow-light);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.hero__title {
  margin-bottom: var(--space-6);
}
.hero__title em {
  display: inline-block;
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 8px;
  background: var(--color-yellow);
  opacity: .5;
  z-index: -1;
  border-radius: 2px;
}

.hero__sub {
  font-size: var(--text-lg);
  max-width: 480px;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Hero image zone */
.hero__visual { position: relative; }

.hero__img-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: visible;
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Floating cards */
.hero__floating-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  animation: floatCard 4s ease-in-out infinite;
}
.hero__floating-card--1 {
  bottom: -16px;
  left: -24px;
}
.hero__floating-card--2 {
  top: -16px;
  right: -16px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: -0.01em;
  animation-delay: 2s;
}

.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--green { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-gray-400);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gray-400), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
