* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: #05070d;
  color: #f4f1e8;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 220, 150, 0.18), transparent 22%),
    linear-gradient(to bottom, #08101d, #05070d 70%);
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(#fff 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.12;
}

.orb {
  position: absolute;
  top: 8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6d5, #d6b76a 45%, transparent 70%);
  opacity: 0.45;
  filter: blur(1px);
  box-shadow: 0 0 90px rgba(255, 217, 130, 0.45);
}

.terminal {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 3rem;
  border: 1px solid rgba(255, 221, 150, 0.28);
  background: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 50px rgba(255, 200, 90, 0.08);
}

.eyebrow {
  color: #d6b76a;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
}

h1 span {
  color: #d6b76a;
  text-shadow: 0 0 20px rgba(214, 183, 106, 0.45);
}

.subtitle {
  margin-top: 1.5rem;
  max-width: 560px;
  color: #cfc9b8;
  font-size: 1.2rem;
}

.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  border: 1px solid #d6b76a;
}

.primary {
  background: #d6b76a;
  color: #05070d;
}

.secondary {
  color: #d6b76a;
}

.section,
.timeline {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #d6b76a;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

article,
.timeline-item {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

article h3 {
  color: #fff;
  margin-bottom: 0.8rem;
}

article p {
  color: #bdb7a8;
}

.timeline-item {
  margin-bottom: 1rem;
  border-left: 3px solid #d6b76a;
}

.future {
  color: #d6b76a;
  box-shadow: 0 0 25px rgba(214, 183, 106, 0.12);
}

@media (max-width: 600px) {
  .terminal {
    padding: 2rem;
  }

  .orb {
    width: 150px;
    height: 150px;
  }
}