:root {
  --color-bg: #101113;
  --color-panel: #16181b;
  --color-text: #f2f2f0;
  --color-muted: #83888f;
  --color-line: #2a2d31;
  --color-accent: #c9a35a;
  --space-md: 1.5rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: system-ui, -apple-system, sans-serif;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4vh 2rem;
}

main h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.tagline {
  color: var(--color-muted);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.15s;
}

.pillars {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 920px;
}

.pillar {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  width: 220px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
  transition: border-color 0.25s, transform 0.25s;
}

.pillar:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.pillar:nth-of-type(1) { animation-delay: 0.35s; }
.pillar:nth-of-type(2) { animation-delay: 0.5s; }
.pillar:nth-of-type(3) { animation-delay: 0.65s; }

.pillar svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
  margin-bottom: 1rem;
}

.pillar h2 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

footer {
  margin-top: 3.5rem;
  padding: var(--space-md);
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-muted);
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.85s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
  }
}
