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

body {
  background: #0f172a;
  color: #e2e8f0;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
}

/* LAYOUT */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid #1e293b;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #38bdf8;
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
}

.nav a {
  margin-left: 20px;
  color: #94a3b8;
  text-decoration: none;
}

.nav a.active,
.nav a:hover {
  color: #38bdf8;
}

/* HERO */
.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
}

.lead {
  margin: 20px 0;
  color: #cbd5e1;
}

.benefits div {
  margin: 6px 0;
}

/* HERO IMAGE */
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

/* INTRO */
.intro {
  padding: 60px 0;
  background: #1e293b;
  text-align: center;
}

.intro-inner {
  max-width: 800px;
  margin: auto;
}

/* CHARACTERS */
.characters {
  padding: 80px 0;
}

.characters h2 {
  text-align: center;
  font-size: 2rem;
}

.char-sub {
  text-align: center;
  margin-bottom: 40px;
  color: #94a3b8;
}

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

.char-card {
  background: #1e293b;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: #e2e8f0;
  transition: transform 0.15s, box-shadow 0.15s;
}

.char-card img {
  width: 85%;
  margin-bottom: 12px;
}

.char-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* FOOTER */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid #1e293b;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}