:root {
  --bg: #0b0f14;
  --panel: #121826;
  --panel2: #161d2a;
  --text: #e8ecf3;
  --muted: #9aa4b2;
  --border: rgba(255,255,255,0.08);
  --accent: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(900px 500px at 50% 0%, #1a2436, var(--bg));
  color: var(--text);
}

.container {
  max-width: 950px;
  margin: 0 auto;
  padding: 70px 20px;
}

.hero {
  text-align: center;
  margin-bottom: 50px;
}

.brand {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.hero p {
  color: var(--muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 16px;
  border-radius: 10px;

  text-decoration: none;
  font-size: 14px;

  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--border);

  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.2);
}

.primary {
  background: var(--accent);
  color: #0b0f14;
  font-weight: 600;
}

.card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;

  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;

  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
}

.product-img {
  width: 170px;
  height: 170px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.content h2 {
  margin: 0 0 10px;
}

.content p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 36px;
  }

  .card {
    grid-template-columns: 1fr;
  }

  .product-img {
    width: 100%;
    height: 220px;
  }
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
}

.footer {
  margin-top: auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10, 14, 20, 0.6);
  backdrop-filter: blur(10px);
}

.footer-inner {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-size: 12px;
  color: #9aa4b2;
}

.dot {
  opacity: 0.5;
}