:root {
  --live-eco-accent: rgba(74, 222, 128, 0.32);
  --live-nature-panel: rgba(120, 113, 108, 0.13);
  --live-green-veil: rgba(163, 230, 53, 0.10);
  --live-sustainable-edge: rgba(56, 189, 248, 0.26);
  --live-organic-round: 22px;
}

.live-shell {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 72px;
}

.live-hero-strip {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(120deg, var(--surface), rgba(2, 15, 47, 0.4));
  border-radius: var(--live-organic-round);
  padding: 28px;
  margin-bottom: 44px;
}

.live-eco-strip {
  border: 1px solid var(--border);
  border-left: 5px solid var(--live-eco-accent);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
}

.live-hero-media img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.live-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(244, 114, 182, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.live-flag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.live-hero-text h1 {
  font-size: 2.4rem;
  color: var(--text);
  margin-bottom: 14px;
}

.live-hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

.live-block {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.live-block h2 {
  font-size: 1.55rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.live-block p {
  color: var(--muted);
  margin-bottom: 14px;
}

.live-green-block {
  background: var(--live-green-veil);
  border: 1px solid var(--live-sustainable-edge);
  border-radius: var(--live-organic-round);
  border-bottom: 1px solid var(--live-sustainable-edge);
  padding: 28px 26px;
  margin: 12px 0;
}

.live-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 32px 0;
}

.live-nature-feature {
  background: var(--live-nature-panel);
  border: 1px solid var(--border);
  border-top: 3px solid var(--eco-leaf);
  border-radius: var(--live-organic-round);
  padding: 22px 20px;
}

.live-nature-feature h3 {
  font-size: 1.12rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.live-nature-feature p {
  color: var(--muted);
  font-size: 14px;
}

.live-organic-cta {
  padding-top: 26px;
}

.live-organic-cta a {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 600;
  transition: transform 0.2s;
}

.live-organic-cta a:hover {
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .live-hero-strip {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .live-feature-row {
    grid-template-columns: 1fr;
  }

  .live-hero-text h1 {
    font-size: 1.9rem;
  }
}
