.lore-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.lore-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,65,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,65,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.lore-radial {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 35%, rgba(0,50,80,0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lore-main {
  position: relative;
  z-index: 1;
  padding: 64px 24px 96px;
}

.lore-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.lore-hero {
  text-align: center;
  margin-bottom: 48px;
}

.lore-eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.lore-title {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.06;
  margin-bottom: 16px;
}

.lore-title .accent {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.lore-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.lore-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.lore-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
}

.lore-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  opacity: 0.7;
}

.lore-card h2 {
  font-size: 0.92rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--cyan);
}

.lore-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.lore-card p:last-child {
  margin-bottom: 0;
}

.lore-timeline {
  margin-top: 26px;
  background: #060c13;
  border: 1px solid var(--border-cyan);
  padding: 20px;
}

.lore-timeline h3 {
  color: var(--green);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lore-timeline ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.lore-timeline li {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.6;
  border-bottom: 1px dashed rgba(0,255,65,0.15);
  padding-bottom: 8px;
}

.lore-timeline li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lore-year {
  color: var(--cyan);
  font-weight: 700;
  margin-right: 8px;
}

.lore-cta {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .lore-main {
    padding: 48px 18px 72px;
  }
}
