:root {
  --primary: #0055FF;
  --bg-warm: #F9F7F2;
  --text-main: #2D2D2D;
  --text-muted: #666666;
  --white: #FFFFFF;
  --border: #E5E1D8;
  --surface: #F1EFE9;
  --font: 'Inter', -apple-system, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background-color: var(--bg-warm);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Typography */
h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* Navigation */
nav {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--text-main);
}

/* Hero */
.hero {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-image {
  height: 400px;
  background-color: var(--surface);
  border-radius: 4px;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
}

/* Status/Pill */
.status-pill {
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

/* Footer */
footer {
  margin-top: 80px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { 
    grid-template-columns: 1fr; 
    padding: 60px 0; 
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  h1 { font-size: 40px; }
  .hero-image { height: 300px; }
}
