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

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

.page-shell {
  max-width: 1400px;
  margin: 0 auto;
}

.hero {
  background: #111;
  padding: 40px;
  border-bottom: 2px solid #333;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #999;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  border: 2px solid #e63946;
  background: transparent;
  color: #e63946;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn.primary {
  background: #e63946;
  color: #fff;
  border-color: #e63946;
}

.btn.primary:hover {
  background: #d62839;
  border-color: #d62839;
}

.btn.ghost:hover {
  background: #e63946;
  color: #fff;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.hero-left h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-left p {
  color: #ccc;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats div {
  border-left: 3px solid #fff;
  padding-left: 15px;
}

.hero-stats strong {
  display: block;
  font-size: 32px;
  margin-bottom: 5px;
}

.hero-stats span {
  color: #999;
  font-size: 14px;
}

.hero-card {
  background: #1a1a1a;
  border: 2px solid #333;
  padding: 40px;
}

.hero-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
  background: rgba(230, 57, 70, 0.15);
  padding: 15px;
  margin: -40px -40px 15px -40px;
}

.hero-card p {
  color: #ccc;
  margin-bottom: 25px;
}

main {
  padding: 60px 40px;
}

.article {
  background: #0a0a0a;
  border: 2px solid #222;
  padding: 0;
}

.article h1,
.article h3 {
  background: rgba(230, 57, 70, 0.15);
  padding: 25px 40px;
  margin: 0;
  border-bottom: 2px solid #222;
  font-weight: 700;
}

.article h1 {
  font-size: 32px;
}

.article h3 {
  font-size: 22px;
  background: rgba(230, 57, 70, 0.1);
}

.article p {
  padding: 30px 40px;
  background: #000;
  border-bottom: 1px solid #1a1a1a;
  color: #ddd;
}

.footer {
  background: #111;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 2px solid #333;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer p,
.footer a {
  color: #999;
  margin-bottom: 8px;
}

.footer a {
  display: block;
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #333;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .nav {
    flex-direction: column;
    text-align: center;
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero,
  main,
  .footer {
    padding: 30px 20px;
  }
  
  .hero {
    min-height: auto;
    padding-bottom: 20px;
  }
  
  .hero-bg {
    height: 200px !important;
    background-size: cover !important;
    background-position: center !important;
  }
  
  .logo {
    height: 30px;
  }
  
  .hero-left h1 {
    font-size: 28px;
  }
  
  .hero-content {
    margin-top: 20px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .article h1 {
    font-size: 24px;
    padding: 20px;
  }
  
  .article h3 {
    font-size: 18px;
    padding: 18px 20px;
  }
  
  .article p {
    padding: 20px;
  }
  
  .hero-card {
    padding: 20px;
  }
  
  .hero-card h2 {
    margin: -20px -20px 15px -20px;
    padding: 12px;
    font-size: 18px;
  }
}
