@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=Inter:wght@500;600;700;800;900&display=swap");

:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-2: #0a0a0d;
  --panel: #111114;
  --panel-2: #17171b;
  --text: #f5f5f2;
  --muted: #a7a7a4;
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .2);
  --magenta: #f4f4f4;
  --magenta-2: #8d9094;
  --lime: #d9d9d9;
  --cyan: #b8bdc2;
  --ink: #050506;
  --chrome-shadow: rgba(244, 244, 244, .24);
  --red: #ff6879;
  --shadow: rgba(0, 0, 0, .48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(145deg, rgba(208, 214, 220, .12), transparent 44%),
    var(--bg);
  background-size: 84px 84px, 84px 84px, auto, auto;
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(180deg, rgba(244, 244, 244, .07), transparent 34%, rgba(0, 0, 0, .62));
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.nav a,
.button,
.hero-kicker,
.eyebrow {
  font-family: "Chakra Petch", "Inter", sans-serif;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: 72px;
  font-weight: 700;
}

h2 {
  font-size: 44px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.mini-copy {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  width: min(1380px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, .84);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 244, 244, .45);
  border-radius: 8px;
  background: url("/assets/specter-logo.png") center / cover;
  box-shadow: 0 0 24px var(--chrome-shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav a {
  color: #cfc7d8;
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--magenta);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-badge {
  min-width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ddd7e6;
  font-size: 11px;
  font-weight: 900;
}

.cart-link {
  min-height: 38px;
  border-radius: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #ffffff, #9a9da1);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-weight: 700;
  box-shadow: 0 14px 34px var(--chrome-shadow);
}

.cart-link::after {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: skewX(-10deg);
}

.app-shell {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
}

.button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  background: rgba(255, 255, 255, .075);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  font-weight: 700;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.button.primary {
  border: 0;
  background: linear-gradient(135deg, #ffffff, #9a9da1);
  color: var(--ink);
  box-shadow: 0 16px 44px var(--chrome-shadow);
}

.button.ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: .56;
}

.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-hero {
  position: relative;
  min-height: 720px;
  margin: 0 calc((min(1380px, calc(100vw - 32px)) - 100vw) / 2);
  padding: 130px max(16px, calc((100vw - 1380px) / 2)) 34px;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(244, 244, 244, .13) 50%, transparent calc(50% + 1px)),
    linear-gradient(180deg, rgba(244, 244, 244, .12), transparent 38%, rgba(0, 0, 0, .86)),
    linear-gradient(90deg, rgba(244, 244, 244, .07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 244, 244, .055) 1px, transparent 1px);
  background-size: auto, auto, 320px 320px, 320px 320px;
  opacity: .9;
}

.hero-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 39%;
  width: 26px;
  height: 86px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--magenta), var(--magenta-2));
  transform: translateX(-50%);
  animation: pulseBar 2.2s ease-in-out infinite;
}

.hero-pixels span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 3px;
  background: rgba(244, 244, 244, .52);
  box-shadow: 0 0 18px rgba(244, 244, 244, .26);
  animation: pixelDrift 6s ease-in-out infinite;
  animation-delay: var(--d);
}

.hero-center {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: 118px;
  height: 118px;
  margin: 0 auto 18px;
  border: 1px solid rgba(244, 244, 244, .22);
  border-radius: 20px;
  padding: 9px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .02));
  display: grid;
  place-items: center;
  box-shadow: 0 0 48px rgba(244, 244, 244, .16);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, .3));
}

.hero-kicker,
.eyebrow {
  color: var(--magenta);
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-center h1 {
  margin: 0 0 24px;
  text-shadow: 0 0 32px rgba(244, 244, 244, .14);
}

.hero-center p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #ddd8e4;
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-metrics {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 100px;
}

.hero-metrics article,
.feature-tile,
.shop-section,
.trust-section,
.faq-section,
.shop-card a,
.product-frame,
.purchase-panel,
.checkout-panel,
.receipt-panel,
.payment-card,
.info-panel,
.lookup-card,
.admin-hero,
.admin-table-panel,
.stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: 0 22px 72px var(--shadow);
}

.hero-metrics article {
  min-height: 116px;
  padding: 20px;
  display: grid;
  gap: 7px;
}

.hero-metrics span,
.trust-grid span {
  color: var(--magenta);
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.hero-metrics strong {
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-size: 20px;
}

.hero-metrics small,
.feature-tile small {
  color: var(--muted);
  line-height: 1.5;
}

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

.feature-tile {
  min-height: 210px;
  position: relative;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  transition: transform .32s ease;
}

.feature-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 6, .05), rgba(5, 5, 6, .9));
}

.feature-tile:hover img {
  transform: scale(1.05);
}

.feature-tile span,
.feature-tile strong,
.feature-tile small {
  position: relative;
  z-index: 1;
}

.feature-tile span {
  color: var(--lime);
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-tile strong {
  margin-top: 6px;
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-size: 26px;
}

.shop-section,
.trust-section,
.faq-section {
  scroll-margin-top: 86px;
  padding: 26px;
  margin: 28px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
}

.compact-head {
  display: grid;
  justify-content: start;
  gap: 0;
}

.search-box {
  width: min(420px, 100%);
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, .07);
  color: var(--text);
  outline: 0;
}

select option {
  color: #151515;
}

.field:focus,
select:focus {
  border-color: rgba(244, 244, 244, .65);
  box-shadow: 0 0 0 3px rgba(244, 244, 244, .12);
}

.compact {
  width: auto;
  min-width: 150px;
}

.category-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.category-chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .05);
  color: #ddd7e6;
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-weight: 700;
}

.category-chip.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--magenta), var(--magenta-2));
  color: #fff;
}

.visible-count {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 800;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(244px, 1fr));
  gap: 16px;
}

.shop-card[hidden] {
  display: none;
}

.shop-card a {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}

.shop-card a:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 244, 244, .48);
}

.shop-media {
  position: relative;
  overflow: hidden;
  background: #08080a;
}

.shop-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .28s ease;
}

.shop-card a:hover .shop-media img {
  transform: scale(1.04);
}

.shop-media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(5, 5, 6, .74);
  color: var(--lime);
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.shop-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.shop-title {
  display: grid;
  gap: 7px;
  margin-bottom: 10px;
}

.shop-title h3 {
  margin: 0;
}

.shop-title strong {
  color: #fff;
  font-size: 22px;
}

.shop-body p {
  margin-bottom: 18px;
  font-size: 13px;
}

.shop-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-foot small {
  color: var(--muted);
}

.shop-foot b {
  color: var(--magenta);
  font-family: "Chakra Petch", "Inter", sans-serif;
}

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

.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, .04);
}

.trust-grid strong {
  display: block;
  margin: 10px 0 8px;
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-size: 22px;
}

.trust-grid p {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .04);
}

summary {
  color: var(--text);
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
}

.product-page,
.checkout-page,
.payment-page {
  min-height: calc(100vh - 64px);
  padding: 42px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .72fr);
  gap: 22px;
  align-items: start;
}

.product-art {
  display: grid;
  gap: 14px;
}

.back-link {
  color: var(--muted);
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-weight: 700;
}

.product-frame {
  overflow: hidden;
}

.product-frame img,
.receipt-panel img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.product-frame img {
  aspect-ratio: 1.12 / 1;
}

.purchase-panel,
.checkout-panel,
.receipt-panel,
.payment-card,
.info-panel,
.lookup-card {
  padding: 26px;
}

.purchase-panel h1,
.checkout-panel h1,
.payment-card h1,
.lookup-card h1 {
  margin: 0 0 16px;
  font-size: 52px;
}

.form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.variant-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 4px;
}

.variant-option {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: rgba(255, 255, 255, .048);
  color: var(--text);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.variant-option:has(input:checked) {
  border-color: rgba(244, 244, 244, .68);
  background: rgba(244, 244, 244, .09);
}

.variant-option small,
td small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.checkout-form {
  margin-top: 22px;
}

.receipt-panel {
  padding: 0;
  overflow: hidden;
}

.receipt-panel img {
  aspect-ratio: 16 / 11;
}

.receipt-panel > div {
  padding: 22px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.row span {
  color: var(--muted);
}

.notice {
  border: 1px solid rgba(244, 244, 244, .34);
  border-radius: 8px;
  padding: 12px;
  background: rgba(244, 244, 244, .08);
  color: #ffd9fa;
  line-height: 1.55;
}

.error {
  border-color: rgba(255, 104, 121, .45);
  background: rgba(255, 104, 121, .09);
  color: #ffdce1;
}

.payment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.amount-panel {
  margin: 26px 0 14px;
  border: 1px solid rgba(244, 244, 244, .45);
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(244, 244, 244, .14), rgba(184, 189, 194, .08));
  display: grid;
  gap: 8px;
}

.amount-panel span,
.wallet-block span {
  color: var(--muted);
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.amount-panel strong {
  font-size: 30px;
}

.wallet-block {
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, .045);
  display: grid;
  gap: 8px;
}

.wallet-block code {
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  word-break: break-all;
}

.payment-side {
  display: grid;
  gap: 14px;
}

.lookup-page {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 54px 0;
}

.lookup-card {
  width: min(640px, 100%);
}

.private-access {
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(244, 244, 244, .12) 50%, transparent calc(50% + 1px)),
    linear-gradient(180deg, rgba(244, 244, 244, .08), transparent 42%);
}

.inline-form {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.admin-dashboard {
  padding: 34px 0 64px;
  display: grid;
  gap: 16px;
}

.admin-hero {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.admin-hero h1 {
  margin: 0 0 8px;
  font-size: 54px;
}

.admin-hero p {
  margin-bottom: 0;
}

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

.stat {
  padding: 18px;
}

.stat span {
  color: var(--muted);
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.stat strong {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  font-weight: 950;
}

.admin-table-panel {
  padding: 18px;
}

.admin-filter {
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

td a {
  color: var(--magenta);
  font-weight: 850;
}

.status-select {
  min-width: 170px;
}

.status {
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 950;
}

.status-pending,
.status-pending-confirmations {
  color: #ffe8ae;
  background: rgba(217, 217, 217, .12);
}

.status-paid,
.status-fulfilled {
  color: #dffff0;
  background: rgba(184, 189, 194, .13);
}

.status-underpaid,
.status-cancelled,
.status-refunded {
  color: #ffdce1;
  background: rgba(255, 104, 121, .14);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #1b1120;
  color: #ffd9fa;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .34);
}

.toast-error {
  background: #251013;
  color: #ffdce1;
}

.footer {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@keyframes pulseBar {
  0%, 100% {
    transform: translateX(-50%) scaleY(.92);
    filter: brightness(1);
  }
  50% {
    transform: translateX(-50%) scaleY(1.14);
    filter: brightness(1.35);
  }
}

@keyframes pixelDrift {
  0%, 100% {
    transform: translateY(0);
    opacity: .45;
  }
  50% {
    transform: translateY(-18px);
    opacity: .95;
  }
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 12px;
    overflow-x: auto;
  }

  .landing-hero {
    min-height: 660px;
    padding-top: 96px;
  }

  .hero-metrics,
  .featured-strip,
  .trust-grid,
  .product-page,
  .checkout-page,
  .payment-page {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    min-height: 170px;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .topbar,
  .app-shell,
  .footer {
    width: calc(100% - 24px);
  }

  .topbar {
    gap: 12px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    gap: 6px;
  }

  .lang-badge {
    display: none;
  }

  .cart-link {
    min-height: 36px;
    padding: 8px 12px;
  }

  .nav {
    gap: 16px;
  }

  .landing-hero {
    min-height: 620px;
    padding: 82px 12px 26px;
  }

  .hero-center p {
    font-size: 16px;
  }

  .hero-grid::after {
    top: 42%;
    height: 64px;
  }

  .hero-metrics {
    margin-top: 70px;
    gap: 10px;
  }

  .hero-metrics article {
    min-height: 94px;
    padding: 14px;
  }

  .featured-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }

  .feature-tile {
    min-width: 250px;
    scroll-snap-align: start;
  }

  .section-head,
  .admin-hero,
  .admin-filter,
  .inline-form,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-grid,
  .stat-grid,
  .inline-form {
    grid-template-columns: 1fr;
  }

  .search-box,
  .compact {
    width: 100%;
  }

  .shop-section,
  .trust-section,
  .faq-section,
  .purchase-panel,
  .checkout-panel,
  .receipt-panel > div,
  .payment-card,
  .info-panel,
  .lookup-card,
  .admin-hero,
  .admin-table-panel {
    padding: 18px;
  }

  .purchase-panel h1,
  .checkout-panel h1,
  .payment-card h1,
  .lookup-card h1,
  .admin-hero h1 {
    font-size: 38px;
  }
}
