:root {
  --page-bg: #101014;
  --header-bg: #121216;
  --search-bg: #222226;
  --text-primary: #F5F5F7;
  --text-secondary: #D8D8DC;
  --text-muted: #85858C;
  --blue: #26B9F3;
  --font-ui: 'Montserrat', "Segoe UI", Arial, sans-serif;
  --container-max-width: 1600px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--page-bg);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; outline: none; cursor: pointer; }
img { max-width: 100%; }

.global-header {
  height: 72px;
  background: var(--header-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.header-left, .header-right {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
}
.header-right { justify-content: flex-end; gap: 12px; }

.brand-logo-group {
  display: flex;
  align-items: center;
  margin-right: 28px;
  flex-shrink: 0;
}
.brand-logo-group img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.header-nav { display: flex; align-items: center; gap: 22px; }
.header-nav-item {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 700;
  white-space: nowrap;
}
.header-nav-item:hover,
.header-nav-item.is-active { color: var(--text-primary); }

.btn-login {
  height: 34px;
  padding: 0 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #111114;
}
.btn-login:hover { background: #f0f0f0; }

.store-page {
  width: calc(100% - 48px);
  max-width: 980px;
  margin: 36px auto 72px;
}

.store-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.store-page h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.store-lead {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 36px;
}

.store-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.store-section h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.store-section h3 {
  font-size: 15px;
  font-weight: 800;
  margin: 18px 0 8px;
  color: var(--text-primary);
}

.store-section p,
.store-section li {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--text-secondary);
}

.store-section ul {
  margin: 8px 0 0 18px;
  display: grid;
  gap: 6px;
}

.store-section a {
  color: #c9ecff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 8px;
}

.store-pill {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  color: var(--text-secondary);
}

.store-callout {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 2px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.03);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text-secondary);
}

.store-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.store-plan-card {
  background: #15151a;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.store-plan-card.is-featured {
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 14px 36px rgba(0,0,0,.35);
}

.store-plan-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.store-plan-name {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.store-plan-desc {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.5;
  min-height: 40px;
}

.store-plan-price {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.store-plan-price span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 4px;
}

.store-plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.store-plan-features li {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
}
.store-plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

.store-plan-cta {
  margin-top: auto;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 800;
}
.store-plan-cta:hover { background: #f0f0f0; }

.store-footnote {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.55;
}

.store-footer-wrap {
  margin-top: 48px;
  background: #0c0c0f;
  border-top: 1px solid rgba(255,255,255,.04);
}
.store-footer {
  width: calc(100% - 48px);
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 36px 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.store-footer p,
.store-footer a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
}
.store-footer a:hover { color: var(--text-secondary); }
.store-footer h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.store-footer-links { display: grid; gap: 8px; }
.store-footer-brand img {
  height: 26px;
  width: auto;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .store-plans-grid { grid-template-columns: 1fr; }
  .store-footer { grid-template-columns: 1fr; }
  .header-nav-item { display: none; }
  .global-header { padding: 0 16px; }
  .store-page { width: calc(100% - 32px); margin-top: 24px; }
}
