:root {
  --bg: #0b0d12;
  --bg-2: #0e1117;
  --text: #e6e9ef;
  --muted: #aab1bf;
  --primary: #7c8cff;
  --accent-a: #7c8cff;
  --accent-b: #5ae0ff;
  --accent-c: #9effb5;
  --accent-d: #ff9af6;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.14);
  --shadow: 0px 20px 50px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(124,140,255,0.12), transparent 70%),
              radial-gradient(900px 500px at 10% 0%, rgba(90,224,255,0.12), transparent 60%),
              var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0.01em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11,13,18,0.75); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--accent-a), var(--accent-b)); color: #0b0d12; font-weight: 800; }
.brand-icon svg { width: 22px; height: 22px; }
.brand-name { font-family: "Plus Jakarta Sans", Inter, sans-serif; font-weight: 700; letter-spacing: 0.02em; }
.nav { display: none; gap: 18px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 500; }
.nav a:hover { color: var(--text); }
.actions { display: flex; gap: 12px; }
.cart-btn { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: var(--text); font-weight: 600; }
.cart-icon { font-size: 18px; }
.badge { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: linear-gradient(135deg, var(--accent-a), var(--accent-b)); color: #0b0d12; font-weight: 800; font-size: 12px; }

.btn { display: inline-flex; align-items: center; justify-content: center; height: 40px; padding: 0 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: var(--text); text-decoration: none; font-weight: 600; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04); }
.btn:hover { filter: brightness(1.15); }
.btn.primary { background: linear-gradient(135deg, var(--accent-a), var(--accent-b)); color: #0b0d12; border: none; }
.btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,0.18); color: var(--text); }
.btn.xl { height: 48px; padding: 0 20px; border-radius: 12px; }

.hero { padding: 72px 0; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.headline { font-size: 44px; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 18px; font-family: "Plus Jakarta Sans", Inter, sans-serif; }
.subtext { font-size: 18px; color: var(--muted); max-width: 640px; }
.cta-row { display: flex; gap: 12px; margin-top: 18px; }
.trust-row { display: flex; gap: 18px; margin-top: 26px; color: var(--muted); font-size: 14px; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-b), var(--accent-c)); box-shadow: 0 0 12px rgba(90,224,255,0.6); }

.hero-visual { display: flex; justify-content: center; }
.glow-card { position: relative; width: 100%; max-width: 480px; border-radius: 20px; padding: 24px; background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05)); border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow); }
.glow-a { position: absolute; inset: -40px -20px auto auto; width: 180px; height: 180px; filter: blur(60px); background: radial-gradient(closest-side, rgba(124,140,255,0.6), transparent); opacity: 0.7; }
.glow-b { position: absolute; inset: auto auto -40px -20px; width: 200px; height: 200px; filter: blur(70px); background: radial-gradient(closest-side, rgba(90,224,255,0.6), transparent); opacity: 0.7; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.metric-k { font-size: 26px; font-weight: 700; }
.metric-l { color: var(--muted); font-size: 13px; }
.mini-chart { margin-top: 22px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; align-items: end; height: 80px; }
.mini-chart .bar { height: calc(var(--h)); background: linear-gradient(180deg, var(--accent-b), var(--accent-a)); border-radius: 9px; box-shadow: 0 8px 24px rgba(124,140,255,0.35); }

.section-head { display: grid; gap: 6px; margin-bottom: 22px; }
.section-head h2 { font-size: 28px; margin: 0; letter-spacing: -0.01em; }
.section-head p { margin: 0; color: var(--muted); }

.ranking { padding: 48px 0; }
.ranking-controls { display: flex; gap: 10px; margin-bottom: 14px; }
.chip { height: 34px; padding: 0 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: var(--text); font-weight: 600; }
.chip.active { background: linear-gradient(135deg, var(--accent-a), var(--accent-b)); color: #0b0d12; border: none; }
.ranking-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.rank-card { display: grid; grid-template-columns: 40px 1.3fr 1fr 1fr 120px; align-items: center; gap: 12px; padding: 14px; border-radius: 14px; background: var(--card); border: 1px solid var(--border); }
.rank-card { overflow: hidden; }
.rank-card .idx { font-weight: 700; color: var(--muted); }
.rank-card .name { font-weight: 600; }
.rank-card .tag { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: 999px; background: rgba(124,140,255,0.16); color: var(--text); border: 1px solid rgba(124,140,255,0.36); font-size: 12px; }
.rank-card .score { font-weight: 700; }
.rank-card .vol { color: var(--muted); }
.rank-card .cta { display: inline-flex; justify-content: flex-end; }
.ranking-cta { display: flex; justify-content: center; margin-top: 16px; }

.features { padding: 56px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-card { display: grid; gap: 8px; padding: 18px; border-radius: 16px; background: var(--card); border: 1px solid var(--border); }
.feature-card h3 { margin: 0; font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-icon { width: 36px; height: 36px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; color: #0b0d12; }
.gradient-a { background: linear-gradient(135deg, var(--accent-a), var(--accent-b)); }
.gradient-b { background: linear-gradient(135deg, #ffb36b, #ffd86b); }
.gradient-c { background: linear-gradient(135deg, var(--accent-c), var(--accent-b)); }
.gradient-d { background: linear-gradient(135deg, var(--accent-d), var(--accent-b)); }

.how { padding: 56px 0; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step { display: grid; grid-template-columns: 50px 1fr; align-items: center; gap: 12px; padding: 16px; border-radius: 16px; background: var(--card); border: 1px solid var(--border); }
.step-badge { width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--accent-a), var(--accent-b)); color: #0b0d12; font-weight: 800; }
.step-body h3 { margin: 0; font-size: 18px; }
.step-body p { margin: 4px 0 0; color: var(--muted); }

.partners { padding: 56px 0; }
.logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.logo { display: inline-flex; align-items: center; justify-content: center; height: 64px; border-radius: 14px; background: var(--card); border: 1px solid var(--border); font-weight: 700; color: var(--muted); }
.badge-a { background: linear-gradient(135deg, rgba(124,140,255,0.25), rgba(90,224,255,0.2)); }
.badge-b { background: linear-gradient(135deg, rgba(255,179,107,0.25), rgba(255,216,107,0.2)); }
.badge-c { background: linear-gradient(135deg, rgba(158,255,181,0.25), rgba(90,224,255,0.2)); }
.badge-d { background: linear-gradient(135deg, rgba(255,154,246,0.25), rgba(90,224,255,0.2)); }
.badge-e { background: linear-gradient(135deg, rgba(143,234,255,0.25), rgba(124,140,255,0.2)); }
.badge-f { background: linear-gradient(135deg, rgba(124,140,255,0.25), rgba(158,255,181,0.2)); }

.cta { padding: 56px 0; }
.cta-card { position: relative; border-radius: 18px; padding: 28px; background: linear-gradient(135deg, rgba(124,140,255,0.18), rgba(90,224,255,0.18)); border: 1px solid rgba(255,255,255,0.2); box-shadow: var(--shadow); text-align: center; }
.cta-card h2 { margin: 0 0 6px; font-size: 26px; }
.cta-card p { margin: 0 0 18px; color: var(--muted); }
.cta-actions { display: flex; gap: 12px; justify-content: center; }

.site-footer { border-top: 1px solid rgba(255,255,255,0.06); background: var(--bg-2); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; padding: 28px 0; }
.footer-brand { display: grid; gap: 8px; align-content: start; }
.foot-note { color: var(--muted); font-size: 13px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.footer-links .col { display: grid; gap: 8px; }
.footer-links .col a { color: var(--muted); text-decoration: none; }
.footer-links .col a:hover { color: var(--text); }
.col-title { font-weight: 700; }
.footer-rights { display: flex; gap: 12px; align-items: center; color: var(--muted); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 860px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .logos { grid-template-columns: repeat(2, 1fr); }
}
.shop { padding: 48px 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.product-card { display: grid; gap: 10px; padding: 16px; border-radius: 14px; background: var(--card); border: 1px solid var(--border); }
.product-media { position: relative; height: 160px; border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.16); }
.product-media svg { width: 64px; height: 64px; }
.product-media[data-kind="photo"] { background: radial-gradient(400px 200px at 50% 0%, rgba(124,140,255,0.22), rgba(90,224,255,0.18)); }
.product-media[data-kind="pdf"] { background: radial-gradient(400px 200px at 50% 0%, rgba(255,179,107,0.22), rgba(255,216,107,0.18)); }
.product-media[data-kind="api"] { background: radial-gradient(400px 200px at 50% 0%, rgba(158,255,181,0.22), rgba(90,224,255,0.18)); }
.product-media[data-kind="meeting"] { background: radial-gradient(400px 200px at 50% 0%, rgba(255,154,246,0.22), rgba(124,140,255,0.18)); }
.media-chip { position: absolute; left: 10px; bottom: 10px; height: 26px; padding: 0 10px; border-radius: 999px; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.26); font-weight: 700; font-size: 12px; color: var(--text); }
.product-name { font-weight: 600; }
.product-meta { display: flex; justify-content: space-between; align-items: center; }
.price { font-weight: 700; }
.merchant { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: 999px; background: rgba(124,140,255,0.16); color: var(--text); border: 1px solid rgba(124,140,255,0.36); font-size: 12px; }
.product-actions { display: flex; gap: 10px; }
.cart-drawer { position: fixed; top: 72px; right: 0; width: 360px; height: calc(100% - 72px); transform: translateX(110%); transition: transform .25s ease; background: var(--bg-2); border-left: 1px solid var(--border); box-shadow: var(--shadow); z-index: 60; display: grid; grid-template-rows: auto 1fr auto; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 14px; border-bottom: 1px solid var(--border); }
.cart-items { padding: 14px; display: grid; gap: 10px; overflow: auto; }
.cart-item { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; padding: 10px; border-radius: 10px; background: var(--card); border: 1px solid var(--border); }
.cart-footer { display: flex; justify-content: space-between; align-items: center; padding: 14px; border-top: 1px solid var(--border); }
.cart-total { font-weight: 700; }

.modal { position: fixed; inset: 0; background: rgba(11,13,18,0.6); backdrop-filter: blur(6px); display: grid; place-items: center; z-index: 70; }
.modal.hidden { display: none; }
.modal-card { width: 420px; max-width: calc(100% - 40px); border-radius: 16px; padding: 20px; background: linear-gradient(135deg, rgba(124,140,255,0.18), rgba(90,224,255,0.18)); border: 1px solid rgba(255,255,255,0.2); box-shadow: var(--shadow); }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 12px; }
