:root {
  --bg: #0f0f14;
  --fg: #f5f5f7;
  --muted: #a1a1aa;
  --accent: #ff7a18;
  --klik: #ff2b67
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

body {
  background: radial-gradient(
    circle at top,
    #1a1a24 0%,
    var(--bg) 60%
  );
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 900px;
  padding: 2rem;
  text-align: center;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.logo span {
  color: var(--accent);
}

.tagline {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent),
    transparent
  );
  margin: 0 auto 2rem;
  border-radius: 999px;
}

.description {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.footer {
  font-size: 0.9rem;
  color: var(--muted);
}

.product {
  margin-bottom: 3rem;
}

.product-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--klik);
  margin-bottom: 0.75rem;
}

.product-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}
