* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: #0b0b0b;
  color: #e6e6e6;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em;
}

body {
  opacity: 0;
  transition: opacity 1.2s ease;
}

body.loaded {
  opacity: 1;
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.core * {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 1.1s ease forwards;
}

.core *:nth-child(1) { animation-delay: 0.2s; }
.core *:nth-child(2) { animation-delay: 0.4s; }
.core *:nth-child(3) { animation-delay: 0.6s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  width: 140px;
  margin-bottom: 20px;
}

.manifesto {
  margin-top: 20px;
  line-height: 1.6;
  opacity: 0.85;
}

/* AUTHOR */

.author {
  display: flex;
  gap: 40px;
  padding: 90px 10%;
  align-items: center;
}

.author-photo {
  width: 220px;
  border-radius: 4px;
  opacity: 0.9;
}

.author-text h2 {
  margin-bottom: 15px;
}

/* PROJECTS */

.projects {
  padding: 90px 10%;
  background: #0f0f0f;
}

.projects h2 {
  text-align: center;
  margin-bottom: 50px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.tile {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  text-decoration: none;
  color: #e6e6e6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.tile.locked {
  opacity: 0.6;
  font-style: italic;
}

/* NAV */

.command-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 0;
}

.command-nav a {
  color: #e6e6e6;
  text-decoration: none;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}

.command-nav a:hover {
  color: #c53b2d;
}

/* TIMELINE */

.timeline {
  border-left: 2px solid rgba(255,255,255,0.15);
  padding-left: 2rem;
  margin-top: 3rem;
}

.event {
  margin-bottom: 2rem;
}

.event span {
  font-size: 0.85rem;
  opacity: 0.6;
}

.event h3 {
  margin: 0.3rem 0;
}

/* FOOTER */

.seal {
  text-align: center;
  padding: 30px 0;
  font-size: 0.75rem;
  opacity: 0.6;
}

