.hero-split {
  display: flex;
  flex-direction: column-reverse;
  gap: 28px;
}

.hero-mock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(201, 168, 76, 0.08);
}

.hero-mock img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--panel);
  color: var(--muted);
  font-size: 13px;
}

.proof-chip strong {
  color: var(--text);
  font-weight: 700;
  margin-right: 6px;
}

.store-hero .lede { max-width: 46ch; }

.page-store.page-main {
  padding-bottom: 80px;
}

.page-store .store-hero {
  padding-bottom: 56px;
}

.store-sec {
  padding: 72px 0;
}

.store-sec + .store-sec {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-store .sec-top {
  margin-bottom: 32px;
  align-items: flex-start;
}

.page-store .sec-top h2 {
  margin-top: 10px;
}

.page-store .sec-top .sub {
  margin-top: 14px;
}

.page-store .pc-trust-sec {
  padding-top: 64px;
  padding-bottom: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-store .pc-trust {
  padding: 28px 28px 16px;
}

.page-store .pc-trust-head {
  padding-bottom: 22px;
}

.page-store .pc-trust-row {
  padding: 18px 0;
}

.store-sub {
  margin-top: 48px;
}

.sec-top + .store-sub {
  margin-top: 8px;
}

.store-sub-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.store-subhead {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.dl-count {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.app-hero-split {
  display: grid;
  gap: 22px;
  align-items: start;
}

.app-hero-icon,
.page-app .app-icon {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.app-crumb {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 10px;
}

.app-crumb a {
  color: var(--gold);
  text-decoration: none;
}

.app-crumb a:hover {
  text-decoration: underline;
}

.page-app .store-hero h1 {
  max-width: 20ch;
  margin-top: 8px;
}

.store-card-top h2 .app-title-link {
  color: inherit;
}

.app-list {
  display: grid;
  gap: 14px;
}

.app-row {
  border-radius: 16px;
  background: rgba(20, 20, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.app-row:hover {
  border-color: rgba(201, 168, 76, 0.22);
}

.app-row[open] {
  border-color: rgba(201, 168, 76, 0.32);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32), 0 0 24px rgba(201, 168, 76, 0.1);
}

.app-row-bar {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 80px;
  padding: 14px 16px;
}

.app-row-bar::-webkit-details-marker,
.app-row-bar::marker { display: none; content: ""; }

.app-row-icon,
.app-row-bar .app-icon-img,
.app-row-bar .app-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  margin: 0;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.app-row-copy {
  min-width: 0;
  flex: 1;
}

.app-row-copy h2 {
  margin: 0;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-row-bar .app-icon {
  font-size: 16px;
  color: #0a0a0f;
}

.app-row-copy .store-stars,
.app-row-copy .store-meta {
  margin-top: 6px;
  font-size: 12px;
}

.app-row-copy .store-stars {
  white-space: nowrap;
}

.app-row-hint {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.app-row .hint-on { display: none; }
.app-row[open] .hint-off { display: none; }
.app-row[open] .hint-on { display: inline; }

.app-row-edit {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.app-row[open] .app-row-edit {
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.28);
}

.app-row-panel {
  padding: 16px 18px 20px 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.05), rgba(255, 255, 255, 0.02));
}

.app-row-panel .store-meta { margin-bottom: 10px; }
.app-row-panel .sub { margin: 0 0 12px; }
.app-row-panel .store-ticks { margin-bottom: 14px; }
.app-row-panel .safety-row { margin-bottom: 14px; }

.store-card-top .app-icon,
.store-card-top .app-icon-img {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.store-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.store-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.store-card-top img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.store-card h2 {
  margin: 0;
  font-size: 22px;
}

.store-meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.store-stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #f5c518;
  font-size: 14px;
  font-weight: 700;
}

.store-stars span {
  color: var(--muted);
  font-weight: 400;
}

.store-card .sub { margin: 0; max-width: none; }

.store-ticks {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
}

.store-ticks li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
}

.store-ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.7);
}

.safety-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.safety-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.store-actions .btn {
  min-height: 48px;
}

.shelf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.app-card,
.product-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.app-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px 18px;
  padding: 24px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.app-card-icon,
.app-card .app-icon-img,
.app-card .app-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  margin: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.app-card-body {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.app-card-body h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.app-card-body .sub {
  margin: 0;
  max-width: none;
}

.app-card .store-actions {
  margin-top: 8px;
}

.store-card .store-card-top h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.25;
}

.faq-item summary {
  min-height: 48px;
}

.review-board {
  display: grid;
  gap: 28px;
  padding: 28px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-avg {
  text-align: center;
  padding-bottom: 8px;
}

.review-avg-score {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.review-avg-stars {
  margin-top: 8px;
  color: #C9A84C;
  letter-spacing: 4px;
  font-size: 22px;
}

.review-avg-count {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.review-form {
  display: grid;
  gap: 14px;
}

.review-label,
.review-field span {
  color: var(--slate, #7E8AA6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-picker {
  display: flex;
  gap: 6px;
}

.review-star {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 26px;
  line-height: 1;
}

.review-star.is-on,
.review-star:hover,
.review-picker:hover .review-star.is-on {
  color: #C9A84C;
}

.review-field {
  display: grid;
  gap: 8px;
}

.review-field input,
.review-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 15, 0.6);
  color: var(--text);
  padding: 12px 14px;
}

.review-field textarea { resize: vertical; min-height: 96px; }

.review-list {
  display: grid;
  gap: 12px;
}

.review-item {
  position: relative;
  padding: 16px 44px 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.review-item strong { display: block; margin-bottom: 4px; }
.review-item .review-meta {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}
.review-item p { color: var(--muted); font-size: 15px; }
.review-del {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--muted);
}
.review-del:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }

.aos-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.aos-fade.is-in {
  opacity: 1;
  transform: none;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  font-weight: 700;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after { content: "-"; }

.faq-item p,
.faq-item li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  padding: 0 18px;
}

.faq-item p { padding-bottom: 8px; }
.faq-item p:last-child { padding-bottom: 18px; }
.faq-item ul {
  margin: 0 18px 16px 36px;
}

@media (min-width: 768px) {
  .hero-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
  }

  .hero-mock {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
  }

  .app-row-panel {
    padding-left: 76px;
  }

  .app-hero-split {
    grid-template-columns: 96px 1fr;
    gap: 28px;
    align-items: center;
  }
}

@media (max-width: 719px) {
  .page-store .store-hero { padding-bottom: 36px; }
  .store-sec { padding: 48px 0; }
  .page-store .sec-top { margin-bottom: 24px; }
  .page-store .pc-trust-sec {
    padding-top: 48px;
    padding-bottom: 56px;
  }
  .page-store .pc-trust { padding: 22px 18px 12px; }
  .app-list { gap: 12px; }
  .shelf-grid { gap: 16px; }
  .app-card,
  .store-card { padding: 20px; }
  .store-actions .btn { width: 100%; justify-content: center; }
  .review-board { padding: 20px; }
  .store-sub { margin-top: 36px; }
}

@media (max-width: 640px) {
  .app-row-hint { display: none; }
  .app-row-panel { padding-left: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .aos-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ambient-orb { animation: none; }
}
