:root {
  --bg: #0E0F14;
  --bg-deep: #0a0b0f;
  --card: #1a1b23;
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .14);
  --text: #fff;
  --muted: #9a9ea9;
  --muted-2: #8b8f9c;
  --accent: #8B93F0;
  --grad: linear-gradient(135deg, #5E6AD2, #8B5CF6);
  --grad-lumae: linear-gradient(135deg, #FA408C, #E6C78C);
  --green: #34D399;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #A6ADF5; }

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

/* Header */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px; border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff; flex: none;
}
.brand-name { font-weight: 700; font-size: 15px; letter-spacing: -.01em; }

/* Hero */
.hero {
  position: relative; padding: 110px 48px 72px; text-align: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; left: 50%; top: -20%; width: 760px; height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(circle, #5E6AD2, transparent 68%);
  opacity: .28; filter: blur(20px); pointer-events: none;
}
.hero-eyebrow {
  position: relative; font-size: 13px; font-weight: 700; color: var(--accent);
  letter-spacing: .08em; text-transform: uppercase;
}
.hero-title {
  position: relative; font-weight: 800; letter-spacing: -.03em;
  font-size: 60px; line-height: 1.08; margin: 20px 0 0;
}
.hero-desc {
  position: relative; font-size: 18px; font-weight: 500; color: var(--muted);
  margin: 22px auto 0; max-width: 560px; line-height: 1.6;
}

/* Products */
.products { padding: 20px 48px 110px; flex: 1; }
.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 880px; margin: 0 auto;
}
.product-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 32px; display: flex; flex-direction: column;
}
.product-head { display: flex; align-items: center; gap: 16px; }
.product-icon {
  width: 56px; height: 56px; border-radius: 15px; flex: none; object-fit: cover;
}
.product-icon.placeholder {
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 26px; color: #fff;
}
.product-name { font-weight: 700; font-size: 22px; letter-spacing: -.01em; }
.product-status {
  display: inline-flex; margin-top: 6px; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.product-status.live { background: rgba(250,64,140,.16); color: #FA76A8; }
.product-status.soon { background: rgba(255,255,255,.08); color: var(--muted-2); }
.product-desc {
  font-size: 15px; color: var(--muted); line-height: 1.6; margin: 20px 0 28px; flex: 1;
}
.product-slogan {
  display: block; margin-top: 10px; font-style: italic; font-weight: 600; color: #c9cbe0;
}
.product-btn {
  display: block; text-align: center; padding: 15px 24px; border-radius: 14px;
  font-weight: 700; font-size: 15px; color: #fff;
}
.product-card.lumae .product-btn { background: var(--grad-lumae); }
.product-card.lumae .product-btn:hover { opacity: .92; color: #fff; }
.product-btn.disabled {
  background: rgba(255,255,255,.06); border: 1px solid var(--border-strong);
  color: var(--muted-2); cursor: default;
}

/* Footer */
.site-footer { padding: 40px 48px; background: var(--bg-deep); border-top: 1px solid var(--border); }
.footer-inner { max-width: 880px; margin: 0 auto; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; }
.footer-brand-mark {
  width: 26px; height: 26px; border-radius: 8px; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff;
}
.footer-brand-name { font-weight: 700; font-size: 14px; color: #fff; }
.footer-copy { font-size: 13px; color: #6b6f7d; margin-top: 12px; line-height: 1.6; }
.footer-links { display: flex; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); }

@media (max-width: 720px) {
  .site-header { padding: 16px 20px; }
  .hero { padding: 72px 20px 48px; }
  .hero-title { font-size: 38px; }
  .hero-desc { font-size: 16px; }
  .products { padding: 12px 20px 72px; }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-card { padding: 26px; }
  .site-footer { padding: 32px 20px; }
}
