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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #fff;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.hero-content {
  max-width: 560px;
}

.logo {
  width: 88px;
  height: 88px;
  margin-bottom: 32px;
  border-radius: 18px;
}

h1 {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 300;
  color: #b3b3b3;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 0.95rem;
  color: #535353;
  line-height: 1.6;
}

/* Characters */
.characters {
  padding: 80px 24px 100px;
  border-top: 1px solid #111;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.character-card {
  text-align: center;
}

.character-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid #1a1a1a;
}

.character-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.character-title {
  color: #535353;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.character-card blockquote {
  color: #727272;
  font-size: 0.9rem;
  line-height: 1.5;
  font-style: italic;
}

/* Features */
.features {
  padding: 80px 24px;
  border-top: 1px solid #111;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #535353;
  margin-bottom: 8px;
}

.feature p {
  color: #727272;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer */
footer {
  padding: 48px 24px;
  border-top: 1px solid #111;
  text-align: center;
}

footer a {
  font-size: 0.8rem;
  color: #535353;
}

footer a:hover {
  color: #b3b3b3;
}

footer p {
  color: #282828;
  font-size: 0.7rem;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .character-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
    gap: 48px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
