:root {
  --bg: #06101d;
  --bg-soft: #0c1b2f;
  --surface: #10243b;
  --surface-border: #1f3d5f;
  --text: #eaf3ff;
  --muted: #9fb7d5;
  --primary: #7be6b2;
  --primary-strong: #4ed89c;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 15% 10%, #17385d 0%, var(--bg) 40%, #040b15 100%);
  color: var(--text);
  min-height: 100vh;
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}

.bg-glow-1 {
  width: 360px;
  height: 360px;
  background: #4ed89c;
  top: -120px;
  left: -80px;
}

.bg-glow-2 {
  width: 420px;
  height: 420px;
  background: #2f9dff;
  bottom: -180px;
  right: -120px;
}

.container {
  width: min(1100px, 92%);
  margin: 36px auto;
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.card {
  background: linear-gradient(145deg, rgba(16, 36, 59, 0.95), rgba(11, 28, 49, 0.95));
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  padding: 28px;
}

.hero-right {
  display: grid;
  align-content: start;
  gap: 8px;
}

.logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

h1 {
  margin: 14px 0 8px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
}

h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.hero-image {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 6px;
}

.hidden {
  display: none;
}

h3 {
  margin: 0;
  font-size: 22px;
}

p {
  line-height: 1.55;
}

.muted {
  color: var(--muted);
}

.hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-chips span {
  background: rgba(123, 230, 178, 0.16);
  color: var(--primary);
  border: 1px solid rgba(123, 230, 178, 0.35);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
}

.stores {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.store-card {
  padding: 20px;
  display: grid;
  gap: 14px;
}

.qr {
  width: min(100%, 260px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #fff;
}

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

.btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(90deg, var(--primary), var(--primary-strong));
  color: #063028;
}

.btn.ghost {
  border: 1px solid #2b5f90;
  color: #b9d3f3;
}

.store-card.disabled {
  opacity: 0.65;
}

.store-card.disabled .btn {
  pointer-events: none;
}

.footer {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: #9fd0ff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }

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