/* HERO */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, var(--bg-raised) 0%, var(--bg-void) 60%);
}

.hero__inner {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 768px) {
  .hero__inner {
    flex-direction: row;
    gap: 4rem;
  }
}

.hero__left {
  flex: 1;
  width: 100%;
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fire);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__status-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.line-2 {
  color: var(--ink-dim);
  display: flex;
  align-items: flex-end;
}

.period-spark {
  color: var(--fire);
  margin-left: 0.5rem;
  padding-bottom: 0.125rem;
  line-height: 1;
}

.hero-descriptor {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--ink-dim);
  max-width: 24rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__ctas a {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.hero__cards {
  flex: 1;
  width: 100%;
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-card {
  position: absolute;
  width: 240px;
  height: 320px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transform-style: preserve-3d;
}

.hero-card--back {
  transform: rotate(-12deg) translateX(-3rem);
  opacity: 0.4;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.hero-card--mid {
  transform: rotate(-6deg) translateX(-1.5rem);
  opacity: 0.6;
  z-index: 10;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.hero-card--front {
  z-index: 20;
  background: var(--bg-void);
  border-color: var(--fire);
  box-shadow: 0 0 30px rgba(255, 49, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s ease;
}
.hero-card--front:hover {
  transform: translateY(-1rem) rotate(2deg);
}

.hero-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fire);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.hero-card__front h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.hero-card__meta {
  font-size: 0.75rem;
  color: var(--ink-dim);
  margin-top: 2rem;
}
