/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero-bg .orb-1 {
  width: 600px; height: 600px;
  background: var(--sage-light);
  top: -200px; right: -100px;
}

.hero-bg .orb-2 {
  width: 400px; height: 400px;
  background: var(--amber-light);
  bottom: -100px; left: -50px;
  opacity: 0.2;
}

.hero-bg .orb-3 {
  width: 300px; height: 300px;
  background: var(--forest-pale);
  top: 40%; left: 50%;
  opacity: 0.15;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--sage-light);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.hero-badge .pulse {
  width: 7px;
  height: 7px;
  background: #6bda6b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--bark);
}

.hero h1 em {
  font-style: italic;
  color: var(--forest);
}

.hero .subtitle {
  font-size: 1.15rem;
  color: var(--bark-light);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== DOE SCENE ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.doe-scene {
  position: relative;
  width: 420px;
  height: 460px;
}

.doe-scene svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(42, 26, 10, 0.1));
}

.doe-scene .glow-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid var(--sage-light);
  opacity: 0.4;
  animation: ring-breathe 4s ease-in-out infinite;
}

.doe-scene .glow-ring:nth-child(2) {
  width: 380px;
  height: 380px;
  animation-delay: -1.5s;
  opacity: 0.2;
  border-color: var(--amber-light);
}

/* ===== FLOATING BADGES ===== */
.float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.float-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
}

.float-badge:nth-child(4) {
  top: 15%; right: -20px;
  animation-delay: -1s;
}

.float-badge:nth-child(5) {
  bottom: 20%; left: -30px;
  animation-delay: -3s;
}

.float-badge:nth-child(6) {
  bottom: 8%; right: 10px;
  animation-delay: -4.5s;
}
