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

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}

.tag {
  display: inline-block;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: #a3a3a3;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1rem;
}

.dot {
  color: #22c55e;
}

.sub {
  font-size: 1.2rem;
  color: #a3a3a3;
  margin-bottom: 3rem;
}

.sub strong {
  color: #f5f5f5;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: left;
}

.card {
  background: #141414;
  border: 1px solid #262626;
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #22c55e;
}

.emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: #737373;
  margin-bottom: 1rem;
}

.price {
  font-weight: 700;
  color: #22c55e;
}

.cta {
  background: linear-gradient(135deg, #141414, #1a1a0a);
  border: 1px solid #262626;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  margin-bottom: 3rem;
}

.cta h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cta p {
  color: #a3a3a3;
}

.meme {
  margin-top: 1rem;
  font-weight: 700;
  color: #f5f5f5 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

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