:root {
  --bg-main: #06111f;
  --bg-secondary: #0b1f37;
  --panel: rgba(10, 26, 46, 0.84);
  --panel-strong: rgba(13, 32, 57, 0.96);
  --line: rgba(105, 176, 255, 0.18);
  --text-main: #eff6ff;
  --text-soft: #a9c0da;
  --text-dim: #6f8aa7;
  --accent: #52c7ff;
  --accent-2: #7ef9c6;
  --accent-3: #ffd66b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(82, 199, 255, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(126, 249, 198, 0.12), transparent 24%),
    linear-gradient(180deg, #05101d 0%, #071728 45%, #06111f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(116, 157, 205, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 157, 205, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.store-shell {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.store-header,
.store-hero,
.store-filters,
.store-section-head,
.store-card,
.pulse-card,
.stack-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(7, 19, 35, 0.72);
  box-shadow: var(--shadow);
}

.store-brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.store-logo-orb {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(135deg, rgba(82, 199, 255, 0.95), rgba(63, 110, 255, 0.82), rgba(8, 28, 52, 0.94));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 0 35px rgba(82, 199, 255, 0.42);
}

.store-kicker,
.store-section-kicker,
.store-eyebrow,
.pulse-label {
  margin: 0 0 6px;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.store-header h1,
.store-section-head h3,
.store-hero h2 {
  margin: 0;
}

.store-tagline {
  margin: 8px 0 0;
  color: var(--text-soft);
}

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

.store-nav a {
  padding: 10px 14px;
  border: 1px solid rgba(82, 199, 255, 0.16);
  border-radius: 999px;
  color: var(--text-soft);
  text-decoration: none;
  transition: 180ms ease;
}

.store-nav a:hover {
  color: var(--text-main);
  border-color: rgba(82, 199, 255, 0.38);
  background: rgba(82, 199, 255, 0.08);
}

.store-main {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(9, 24, 44, 0.9), rgba(7, 18, 32, 0.72));
  box-shadow: var(--shadow);
}

.store-hero-copy p {
  max-width: 70ch;
  color: var(--text-soft);
}

.store-hero h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.04;
}

.store-search-wrap {
  margin-top: 26px;
}

.store-search-wrap input {
  width: min(100%, 720px);
  padding: 18px 20px;
  border: 1px solid rgba(82, 199, 255, 0.24);
  border-radius: 18px;
  background: rgba(6, 16, 30, 0.88);
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 25px rgba(82, 199, 255, 0.08);
}

.store-search-wrap input::placeholder {
  color: var(--text-dim);
}

.store-search-wrap input:focus {
  border-color: rgba(126, 249, 198, 0.52);
  box-shadow: 0 0 0 4px rgba(82, 199, 255, 0.12);
}

.store-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.store-hero-metrics article,
.pulse-card,
.stack-card,
.store-card {
  border: 1px solid rgba(127, 186, 255, 0.16);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.store-hero-metrics article {
  padding: 16px;
}

.store-hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  color: var(--accent-3);
}

.store-hero-metrics span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.store-hero-panel {
  display: grid;
  gap: 18px;
}

.pulse-card,
.stack-card {
  padding: 22px;
  box-shadow: var(--shadow);
}

.pulse-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.pulse-card span {
  color: var(--text-soft);
}

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

.stack-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  border: 1px solid rgba(82, 199, 255, 0.18);
  border-radius: 18px;
  background: rgba(82, 199, 255, 0.07);
  color: var(--text-soft);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.store-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(7, 19, 35, 0.7);
}

.filter-chip {
  padding: 12px 16px;
  border: 1px solid rgba(96, 158, 230, 0.18);
  border-radius: 999px;
  background: rgba(13, 29, 49, 0.72);
  color: var(--text-soft);
  cursor: pointer;
  transition: 180ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #04111e;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(82, 199, 255, 0.24);
}

.store-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding: 0 4px;
}

.store-results-text {
  margin: 0;
  color: var(--text-dim);
}

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

.store-card {
  overflow: hidden;
  display: grid;
  min-height: 100%;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.store-card:hover {
  transform: translateY(-5px);
  border-color: rgba(126, 249, 198, 0.28);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.store-card-visual {
  position: relative;
  min-height: 140px;
  padding: 18px;
  background:
    radial-gradient(circle at 15% 20%, rgba(126, 249, 198, 0.2), transparent 24%),
    radial-gradient(circle at 80% 25%, rgba(82, 199, 255, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(13, 32, 57, 0.95), rgba(7, 20, 35, 0.88));
}

.store-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(82, 199, 255, 0.95), rgba(126, 249, 198, 0.65));
  box-shadow: 0 0 28px rgba(82, 199, 255, 0.3);
}

.store-card-type {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5, 13, 24, 0.72);
  border: 1px solid rgba(126, 249, 198, 0.22);
  color: var(--text-main);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.store-card-topline,
.store-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.store-card-category,
.store-card-priority,
.store-card-state,
.store-card-tag {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.store-card-category,
.store-card-tag {
  background: rgba(82, 199, 255, 0.08);
  color: var(--text-soft);
}

.store-card-priority {
  background: rgba(255, 214, 107, 0.12);
  color: #ffe8a3;
}

.store-card-state {
  background: rgba(126, 249, 198, 0.12);
  color: #b6ffd8;
}

.store-card-title {
  margin: 0;
  font-size: 1.2rem;
}

.store-card-description {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.store-empty-state {
  grid-column: 1 / -1;
  padding: 34px 20px;
  border: 1px dashed rgba(126, 249, 198, 0.22);
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--text-soft);
  background: rgba(8, 20, 35, 0.72);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .store-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .store-shell {
    width: min(100% - 20px, 1380px);
    padding-top: 18px;
  }

  .store-header,
  .store-hero,
  .store-filters {
    padding: 18px;
  }

  .store-header,
  .store-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-grid,
  .store-hero-metrics {
    grid-template-columns: 1fr;
  }
}

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

  .store-hero h2 {
    font-size: 2.2rem;
  }

  .store-nav,
  .store-filters {
    width: 100%;
  }

  .filter-chip,
  .store-nav a {
    width: 100%;
    text-align: center;
  }
}
