/* ARKODIZ production tokens — gold #e2c638 on charcoal. */
:root {
  --c-bg: #e2c638;
  --c-bg-deep: #c4a82a;
  --c-bg-warm: #ead56a;
  --c-bg-dark: #0f1216;
  --c-bg-pale: #fff0d9;
  --c-on-orange: #0b0d0f;
  --c-on-orange-2: #3d3510;
  --c-on-orange-3: rgba(11, 13, 15, 0.5);
  --c-border-on: rgba(11, 13, 15, 0.14);
  --c-border-on-str: rgba(11, 13, 15, 0.26);
  --c-surface: #141920;
  --c-surface-hi: #1b2229;
  --c-border: rgba(255, 255, 255, 0.07);
  --c-border-str: rgba(255, 255, 255, 0.13);
  --c-tx-bg: #f5f1eb;
  --c-tx-surface: #fdfaf5;
  --c-tx-border: #ddd8cf;
  --c-tx-text: #13171c;
  --c-tx-muted: #6a707a;
  --c-brand: #e2c638;
  --c-accent: #e5973d;
  --c-brand-glow: rgba(226, 198, 56, 0.28);
  --c-cta: #e2c638;
  --c-cta-dark: #c4a82a;
  --c-cta-glow: rgba(226, 198, 56, 0.35);
  --c-pts: #7c5ce8;
  --c-pts-dim: rgba(124, 92, 232, 0.15);
  --c-text: #ede9e0;
  --c-text-2: #9aa5b0;
  --c-text-3: #5c6570;
  --c-success: #10b981;
  --c-success-bg: rgba(16, 185, 129, 0.12);
  --c-warn: #f59e0b;
  --c-warn-bg: rgba(245, 158, 11, 0.12);
  --c-error: #ef4444;
  --c-error-bg: rgba(239, 68, 68, 0.12);
  --r-xs: 4px;
  --r-sm: 7px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --font-display: Georgia, "Iowan Old Style", Palatino, serif;
  --font-sans: "Segoe UI", system-ui, sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", monospace;
  --font-ar: "Segoe UI", "Noto Sans Arabic", "Cairo", sans-serif;
  --z-nav: 200;
  --z-drawer: 300;
  --z-toast: 600;
  --duration: 150ms;
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --ink: var(--c-text);
  --paper: var(--c-bg-dark);
  --gold: var(--c-brand);
  --muted: var(--c-text-2);
  --line: var(--c-border);
  --danger: var(--c-error);
  --ok: var(--c-success);
  --radius: var(--r-md);
  --font: var(--font-display);
  --ui: var(--font-sans);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--c-bg-dark);
  color: var(--c-text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
[dir="rtl"] body { font-family: var(--font-ar), var(--font-sans); }
[dir="rtl"] .Brand-word { letter-spacing: 0; }
[hidden] { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
:focus-visible { outline: 2px solid var(--c-brand); outline-offset: 2px; }
.skip { position: absolute; inset-inline-start: -999px; }
.skip:focus { inset-inline-start: 16px; top: 16px; z-index: var(--z-toast); background: var(--c-surface); padding: 8px 12px; }
.shell { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

.Navbar, .topbar {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(11, 13, 15, 0.97);
  border-bottom: 1px solid rgba(226, 198, 56, 0.14);
  backdrop-filter: blur(10px);
  overflow: visible;
}
.Navbar-inner {
  max-width: 1440px; margin: 0 auto; padding: 10px 20px;
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px;
  min-width: 0; width: 100%;
}
.Brand, .brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.03em;
  color: var(--c-text); text-decoration: none; background: none; border: 0; cursor: pointer; min-height: 40px;
}
.Brand-mark { width: 32px; height: 32px; object-fit: contain; display: block; flex-shrink: 0; }
.Brand-word { line-height: 1; }
.Brand--on-orange { color: var(--c-on-orange); }
.brand span { color: var(--c-brand); font-size: 11px; letter-spacing: 0.12em; margin-inline-start: 6px; font-family: var(--font-sans); }

.SearchBar {
  display: flex; align-items: center; min-height: 48px; max-width: 640px; width: 100%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 0 6px 0 16px; gap: 8px;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.SearchBar-icon {
  width: 14px; height: 14px; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,0.45); border-radius: 50%;
  position: relative;
}
.SearchBar-icon::after {
  content: ""; position: absolute; width: 6px; height: 1.5px; background: rgba(255,255,255,0.45);
  inset-inline-end: -5px; bottom: -1px; transform: rotate(45deg);
}
[dir="rtl"] .SearchBar-icon::after { transform: rotate(-45deg); inset-inline-end: auto; inset-inline-start: -5px; }
.SearchBar:focus-within { border-color: var(--c-brand); box-shadow: 0 0 0 3px var(--c-brand-glow); }
.SearchBar input { flex: 1; border: 0; background: transparent; color: inherit; min-height: 44px; padding: 0; width: auto; font-size: 15px; min-width: 0; }
.SearchBar input::placeholder { color: rgba(255,255,255,0.42); }
.SearchBar-go { min-height: 36px; padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.IconControl {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; min-height: 40px; padding: 0;
  background: transparent; color: var(--c-text); border: 0; border-radius: var(--r-sm);
  text-decoration: none; flex-shrink: 0;
}
.IconControl svg { width: 22px; height: 22px; display: block; }
.IconControl:hover, .IconControl.is-active { color: var(--c-brand); background: rgba(226,198,56,0.08); }
button.IconControl {
  background: transparent; color: var(--c-text); box-shadow: none; letter-spacing: 0;
}
button.IconControl:hover { background: rgba(226,198,56,0.08); color: var(--c-brand); }
button.IconControl:active { transform: none; }
.NavAccount {
  color: var(--c-text); text-decoration: none; font-size: 13px; font-weight: 600; min-height: 40px;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.NavAccount-icon { width: 22px; height: 22px; flex-shrink: 0; display: block; }
.AuthSplit { color: rgba(255,255,255,0.35); font-weight: 400; user-select: none; }
.LocaleWrap { position: relative; }
.LocaleToggle {
  display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 10px;
  background: transparent; color: var(--c-text); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-sm);
  font-size: 12px; font-weight: 600; letter-spacing: 0; white-space: nowrap;
}
.LocaleToggle svg { width: 18px; height: 18px; flex-shrink: 0; }
.LocaleToggle:hover, .LocaleToggle:active { background: rgba(226,198,56,0.08); color: var(--c-brand); transform: none; }
.LocaleScrim {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(11, 13, 15, 0.72);
}
.LocaleDialog {
  position: fixed; inset: 0; z-index: 410;
  width: min(420px, calc(100vw - 32px));
  height: fit-content;
  max-height: calc(100vh - 32px);
  margin: auto;
  overflow: auto;
  background: var(--c-surface); color: var(--c-text);
  border: 1px solid var(--c-border-str); border-radius: var(--r-lg);
  padding: 24px 24px 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}
.LocaleDialog-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.LocaleDialog-head h2 { margin: 0 0 6px; font-size: 22px; color: var(--c-text); }
.LocaleDialog-head p { margin: 0; }
.LocaleDialog-close {
  margin-inline-start: auto; background: transparent; color: var(--c-text-2);
  min-height: 36px; min-width: 36px; padding: 0; font-size: 22px;
}
.LocaleDialog-close:hover { background: rgba(255,255,255,0.06); color: var(--c-text); transform: none; }
.LocaleField { display: block; margin-bottom: 14px; }
.LocaleField span {
  display: block; margin-bottom: 6px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-text-3);
}
.LocaleField select {
  width: 100%; min-height: 48px; padding: 0 12px;
  background: var(--c-surface-hi); color: var(--c-text);
  border: 1px solid var(--c-border); border-radius: var(--r-sm);
}
.LocaleDialog-note { font-size: 12px; margin: 4px 0 16px; }
.LocaleDialog-actions { display: flex; justify-content: flex-end; gap: 10px; }
.LocaleDialog-actions .secondary { background: transparent; color: var(--c-text); border: 1px solid var(--c-border-str); }
.AccountWrap { position: relative; display: inline-flex; align-items: center; gap: 8px; }
.AccountFlyout {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px); z-index: 40;
  min-width: 200px; max-width: min(280px, calc(100vw - 24px));
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.AccountFlyout[hidden] { display: none; }
.AccountFlyout a, .AccountFlyout button {
  display: block; width: 100%; text-align: start; background: transparent; border: 0;
  color: var(--c-text); padding: 10px 12px; border-radius: 8px; font-size: 13px; cursor: pointer; text-decoration: none;
}
.AccountFlyout a:hover, .AccountFlyout button:hover { background: rgba(255,255,255,0.06); }
.NavMeta { display: flex; align-items: center; gap: 8px; flex-wrap: nowrap; }
.NavMeta select { width: auto; min-height: 40px; background: transparent; border-color: rgba(255,255,255,0.12); }
#lang.visually-hidden { position: absolute; width: 1px; height: 1px; min-height: 0; padding: 0; border: 0; overflow: hidden; clip: rect(0 0 0 0); }
nav[aria-label="Primary"] {
  display: flex; gap: 2px; overflow-x: auto; padding: 0 20px;
  background: rgba(11,13,15,0.92); border-top: 1px solid rgba(226,198,56,0.1);
}
nav[aria-label="Primary"] a,
nav[aria-label="Primary"] .NavLink {
  padding: 10px 14px; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 12px; font-weight: 600; white-space: nowrap; border-bottom: 2px solid transparent;
  background: transparent; border-top: 0; border-left: 0; border-right: 0; border-radius: 0; min-height: 40px; display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.03em;
}
nav[aria-label="Primary"] a:hover, nav[aria-label="Primary"] a.is-active,
nav[aria-label="Primary"] .NavLink:hover, nav[aria-label="Primary"] .NavLink.is-active { color: var(--c-brand); border-bottom-color: var(--c-brand); background: transparent; }

.BalanceChip, .PointsBadge {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; min-height: 36px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.BalanceChip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); color: var(--c-text); }
.PointsBadge { background: var(--c-pts-dim); border: 1px solid rgba(124,92,232,0.22); color: var(--c-pts); }

button {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.03em; border: 0; border-radius: var(--r-sm);
  padding: 10px 16px; min-height: 40px; cursor: pointer; background: var(--c-cta); color: #111;
  transition: background var(--duration) var(--ease), transform 120ms var(--ease), box-shadow var(--duration) var(--ease);
}
button:hover { background: var(--c-cta-dark); }
button:active { transform: scale(0.97); }
button:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
button.secondary { background: transparent; color: var(--c-text-2); border: 1px solid var(--c-border-str); }
button.secondary:hover { color: var(--c-brand); border-color: var(--c-brand); background: transparent; }
.cta-dark { background: #0f1216; color: #ede9e0; }
.cta-dark:hover { background: #1b2229; }
.cta-accent { background: var(--c-accent); color: #110e0c; }
.cta-accent:hover { background: #d4862e; color: #110e0c; }
.Btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.03em;
  border-radius: var(--r-sm); padding: 10px 16px; min-height: 40px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}
.Btn--gold { background: var(--c-cta); color: #111; }
.Btn--gold:hover { background: var(--c-cta-dark); color: #111; }
.Btn--dark { background: #0f1216; color: #ede9e0; }
.Btn--dark:hover { background: #1b2229; color: #ede9e0; }
.Btn--ghost {
  background: transparent; color: var(--c-on-orange);
  border-color: var(--c-border-on-str);
}
.Btn--ghost:hover { border-color: var(--c-on-orange); color: var(--c-on-orange); }
.Section-paper .Btn--ghost, .Section-dark .Btn--ghost {
  color: var(--c-text); border-color: var(--c-border-str);
}
.Section-paper .Btn--ghost { color: var(--c-tx-text); border-color: var(--c-tx-border); }
.Section-paper .Btn--ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }
.Section-dark .Btn--ghost:hover { color: var(--c-brand); border-color: var(--c-brand); }
.ButtonDestructive { background: var(--c-error); color: #fff; }
.wish { min-width: 40px; padding: 8px 10px; }

input, select, textarea {
  font: inherit; border-radius: var(--r-sm); padding: 8px 10px; min-height: 40px;
  border: 1px solid var(--c-border-str); background: var(--c-surface-hi); color: var(--c-text);
}
#view-checkout input, #view-checkout select, #view-checkout textarea {
  background: var(--c-tx-bg); color: var(--c-tx-text); border-color: var(--c-tx-border);
}

.Hero {
  background: radial-gradient(ellipse 70% 80% at 18% 20%, #ead56a 0%, #e2c638 42%, #c4a82a 100%);
  padding: 40px 24px 36px; position: relative; overflow: visible; color: var(--c-on-orange);
}
.Hero-veil {
  position: absolute; inset: 0 auto 0 0; width: 55%;
  background: radial-gradient(ellipse 80% 80% at 20% 40%, rgba(11,13,15,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.Hero-grid {
  max-width: 1440px; margin: 0 auto; position: relative; display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px); gap: 28px; align-items: stretch;
}
.Hero-copy { display: flex; flex-direction: column; justify-content: center; }
.Hero-actions { margin-top: 18px; }
.Hero-fx { margin-top: 10px; color: var(--c-on-orange-2); }
.Hero-cats { margin-top: 14px; }
.Hero h1, .Display {
  font-family: var(--font-display); line-height: 1.05; margin: 0 0 14px; font-weight: 300; letter-spacing: -0.02em;
  color: var(--c-on-orange); font-size: clamp(30px, 4.4vw, 52px);
}
.Caption { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-on-orange-3); margin: 0 0 8px; }

.Vending {
  position: relative; z-index: 1; padding: 10px;
  background: linear-gradient(180deg, rgba(20,25,32,0.96), #0c1014);
  border: 1px solid rgba(226,198,56,0.38);
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(11,13,15,0.45), inset 0 1px 0 rgba(226,198,56,0.18), 0 0 40px rgba(226,198,56,0.12);
}
.Vending::before {
  content: ""; position: absolute; inset: 8px; border-radius: 16px; pointer-events: none;
  box-shadow: inset 0 0 40px rgba(226,198,56,0.08);
}
.Vending-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.Chamber { background: var(--c-surface); border: 1px solid rgba(226,198,56,0.3); border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 12px 40px rgba(11,13,15,0.55); color: var(--c-text); position: relative; z-index: 1; }
.Chamber-media, .ProductCard-media { position: relative; overflow: hidden; background: #0a0d11; }
.Chamber-media { aspect-ratio: 16 / 10; }
.ProductCard-media { aspect-ratio: 4 / 3; }
.Chamber-caption {
  position: absolute; inset: auto 0 0 0; padding: 10px 12px;
  background: linear-gradient(transparent, rgba(10,13,17,0.94));
  color: var(--c-text);
}
.Chamber-caption a, .Hero .PriceDisplay, .Hero .PriceDzd, #hero-chamber a { color: var(--c-text); text-decoration: none; }
.Vending .Chamber { transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease); }
.Vending .Chamber:hover { transform: translateY(-3px); border-color: rgba(226,198,56,0.7); }

.ProductMedia {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  aspect-ratio: 4 / 3;
}
.Chamber-media .ProductMedia { object-position: center 35%; }

.MediaFallback {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background:
    radial-gradient(circle at 30% 20%, rgba(226,198,56,0.18), transparent 42%),
    linear-gradient(160deg, #1a222c 0%, #0a0d11 70%);
}
.MediaFallback-brand { width: 28px; height: 28px; opacity: 0.28; }
.MediaFallback-initials { font-family: var(--font-display); font-size: 28px; letter-spacing: -0.04em; color: rgba(237,233,224,0.55); }
.MediaFallback-note { font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-text-3); }
.media-software { background: radial-gradient(circle at 70% 30%, rgba(124,92,232,0.2), transparent 45%), linear-gradient(160deg, #171c28, #0a0d11); }
.media-design { background: radial-gradient(circle at 30% 80%, rgba(226,198,56,0.28), transparent 48%), linear-gradient(160deg, #24180f, #0a0d11); }
.media-education { background: radial-gradient(circle at 50% 40%, rgba(16,185,129,0.16), transparent 46%), linear-gradient(160deg, #12201c, #0a0d11); }

.Section { padding: 36px 24px; }
.Section-compact { padding: 28px 24px; }
.Section-dark { background: var(--c-bg-dark); color: var(--c-text); }
.Section-dark h1, .Section-dark h2, .Section-dark h3, .Section-dark strong { color: var(--c-text); }
.Section-dark p, .Section-dark li, .Section-dark .muted, .Section-dark .Lead { color: var(--c-text-2); }
.Section-dark .kicker { color: var(--c-brand); }
.Section-orange { background: var(--c-bg); color: var(--c-on-orange); }
.Section-deep { background: linear-gradient(135deg, #d4b42e 0%, #c4a82a 60%, #9a821c 100%); color: var(--c-on-orange); }
.SectionHead { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 16px; gap: 16px; }
.SectionHead .kicker { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-brand); margin-bottom: 4px; }
.Section-orange .kicker, .Section-deep .kicker { color: var(--c-on-orange-3); }
.SectionHead h2 { margin: 0; font-size: clamp(18px, 2vw, 22px); font-weight: 700; letter-spacing: -0.02em; }
.SectionLink { color: var(--c-brand); font-size: 12px; font-weight: 700; text-decoration: none; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.grid-compact { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.ProductCard, .card {
  background: var(--c-surface); border: 1px solid rgba(226,198,56,0.12); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  position: relative;
}
.ProductCard:hover { border-color: rgba(226,198,56,0.45); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,0.25); }
.ProductCard--compact .ProductCard-body { padding: 10px 11px 11px; gap: 4px; }
.ProductCard--compact .ProductCard-title { font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.4em; }
.ProductCard--compact .PriceDisplay { font-size: 16px; }
.ProductCard--featured { border-color: rgba(226,198,56,0.28); }
.ProductCard-body { padding: 12px 13px 14px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
.ProductCard-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ProductCard-title { color: var(--c-text); text-decoration: none; font-weight: 600; font-size: 14px; line-height: 1.25; }
.ProductCard-actions { margin-top: auto; display: flex; gap: 8px; padding-top: 6px; }
.ProductCard-actions button { flex: 1; }
.ProductCard a { color: var(--c-text); text-decoration: none; font-weight: 600; font-size: 13px; }
.ComparePick { position: absolute; top: 8px; inset-inline-end: 8px; z-index: 2; background: rgba(11,13,15,0.72); border-radius: 4px; padding: 4px; }
.ComparePick input { min-height: auto; width: 16px; height: 16px; }
.PriceStack { display: flex; flex-direction: column; gap: 2px; }
.PriceDisplay, .price { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 18px; font-weight: 600; letter-spacing: -0.03em; }
.PriceDzd { font-family: var(--font-mono); font-size: 12px; color: var(--c-text-2); }
.PriceFx { font-size: 10px; letter-spacing: 0.04em; color: var(--c-text-3); }
.ProductBadge { font-family: var(--font-mono); font-size: 8px; background: var(--c-brand); color: #111; padding: 2px 5px; border-radius: var(--r-xs); font-weight: 700; width: fit-content; }
.cat-label { font-size: 11px; color: var(--c-text-2); letter-spacing: 0.04em; text-transform: uppercase; margin: 0; }
.StockBadge-in { color: var(--c-success); font-size: 11px; margin: 0; }
.StockBadge-low { color: var(--c-warn); font-size: 11px; margin: 0; }
.StockBadge-out { color: var(--c-error); font-size: 11px; margin: 0; }
.CategoryChip {
  padding: 8px 12px; background: rgba(11,13,15,0.12); border: 1px solid var(--c-border-on); border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: 12px; font-weight: 700; color: var(--c-on-orange); letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; min-height: 40px;
}
.CategoryRow { display: flex; flex-wrap: wrap; gap: 8px; }
.TrustGrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: rgba(226,198,56,0.1); border: 1px solid rgba(226,198,56,0.15); border-radius: var(--r-lg); overflow: hidden; }
.TrustGrid > div { background: var(--c-surface); padding: 18px 16px; }
.TrustGrid h3 { margin: 6px 0; font-size: 14px; }

.ExploreLayout { display: grid; grid-template-columns: 240px 1fr; gap: 20px; max-width: 1440px; margin: 0 auto; }
.ExploreShell { max-width: 1440px; margin: 0 auto; padding: 0 20px 32px; }
.ExploreHead { margin-bottom: 14px; }
.ExploreHead-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.ExploreCount { margin: 0; color: var(--c-text-2); font-variant-numeric: tabular-nums; }
.Breadcrumb { font-size: 12px; color: var(--c-text-3); margin: 0 0 8px; }
.Breadcrumb a { color: var(--c-brand); text-decoration: none; }
.FilterPanel { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 14px; position: sticky; top: 88px; max-height: calc(100vh - 110px); overflow: auto; }
.FilterPanel-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 8px; }
.FilterPanel-head h3, .FilterGroup h4 { margin: 0 0 8px; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-text-2); }
.FilterGroup { margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--c-border); }
.FilterChip, .FilterChip.is-on {
  display: block; width: 100%; text-align: start; margin-bottom: 6px; min-height: 36px; padding: 6px 10px;
  background: transparent; color: var(--c-text-2); border: 1px solid var(--c-border); font-weight: 600; font-size: 12px; letter-spacing: 0;
}
.FilterChip.is-on, .FilterChip[aria-pressed="true"] { border-color: var(--c-brand); color: var(--c-brand); background: rgba(226,198,56,0.08); }
.ExploreToolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 12px; }
.ActiveFilters { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
.ExploreMobileBar { display: none; gap: 10px; align-items: center; margin-bottom: 12px; position: sticky; top: 72px; z-index: 40; background: var(--c-bg-dark); padding: 8px 0; }
.CompareTray { margin-top: 16px; padding: 12px; border: 1px solid var(--c-border); border-radius: var(--r-md); background: var(--c-surface); overflow: auto; }
.CompareTray table { width: 100%; border-collapse: collapse; font-size: 12px; }
.CompareTray th, .CompareTray td { padding: 8px; border-bottom: 1px solid var(--c-border); text-align: start; vertical-align: top; }
.ProductLayout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; max-width: 1440px; margin: 0 auto; padding: 24px 24px 80px; }
.BuyBox { background: var(--c-surface); border: 1px solid rgba(226,198,56,0.2); border-radius: var(--r-lg); padding: 20px; position: sticky; top: 88px; }
.FactRow { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 6px 0; border-bottom: 1px solid var(--c-border); }
.CheckoutShell { max-width: 720px; }
.CheckoutSteps { display: flex; gap: 12px; padding: 0; margin: 0 0 16px; list-style: none; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-tx-muted); }
.CheckoutSteps li { border-bottom: 2px solid var(--c-tx-border); padding-bottom: 6px; }
.CheckoutSteps li.is-on { color: var(--c-brand); border-bottom-color: var(--c-brand); }
.CheckoutEmpty { text-align: center; padding: 72px 20px; max-width: 480px; margin: 0 auto; }
.CheckoutEmpty h2 { margin: 0 0 12px; }
.CheckoutEmpty p { color: var(--c-text-2); margin: 0 0 20px; }
.CartBadge {
  position: absolute; top: 2px; inset-inline-end: 0;
  display: inline-flex; align-items: center; justify-content: center; min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; background: var(--c-brand); color: var(--c-on-orange); font-size: 10px; font-weight: 700;
  pointer-events: none;
}
.CartWrap { position: relative; z-index: 270; }
.CartScrim {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(11, 13, 15, 0.35); border: 0;
}
.CartDrawer {
  position: absolute; top: calc(100% + 12px); inset-inline-end: 0; z-index: 260;
  width: 380px; max-width: min(380px, calc(100vw - 16px));
  max-height: min(520px, calc(100vh - 120px));
  display: flex; flex-direction: column;
  background: var(--c-surface); color: var(--c-text);
  border: 1px solid var(--c-border-str); border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.CartDrawer::before {
  content: ""; position: absolute; top: -6px; inset-inline-end: 14px;
  width: 12px; height: 12px; background: var(--c-surface); border-inline-start: 1px solid var(--c-border-str); border-top: 1px solid var(--c-border-str);
  transform: rotate(45deg);
}
.CartDrawer-head {
  display: flex; align-items: center; gap: 12px; padding: 16px 16px 12px;
  background: var(--c-surface); color: var(--c-text);
}
.CartDrawer-head h2 { margin: 0; flex: 1; font-size: 16px; color: var(--c-text); }
.CartDrawer-close {
  background: transparent; color: var(--c-text-2); min-height: 36px; min-width: 36px; padding: 0; font-size: 22px;
}
.CartDrawer-close:hover { background: rgba(255,255,255,0.06); transform: none; }
.CartToast {
  background: var(--c-brand); color: var(--c-on-orange); font-size: 12px; font-weight: 700; padding: 8px 16px;
}
.CartDrawer-lines { flex: 1; overflow: auto; padding: 0 16px; min-height: 80px; }
.CartLine {
  display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 12px; align-items: start;
  padding: 12px 0; border-bottom: 1px solid var(--c-border);
}
.CartLine-thumb { position: relative; width: 64px; height: 64px; border-radius: var(--r-md); overflow: hidden; background: #0a0d11; }
.CartLine-thumb img, .CartLine-thumb .ProductMedia, .CartLine-thumb .MediaFallback { width: 100%; height: 100%; object-fit: cover; }
.CartLine-meta strong { display: block; font-size: 13px; }
.CartLine-meta p { margin: 4px 0 8px; }
.QtyCtrl { display: inline-flex; align-items: center; gap: 8px; }
.QtyCtrl button {
  width: 28px; height: 28px; min-height: 28px; padding: 0; border-radius: 6px;
  background: var(--c-surface-hi); color: var(--c-text); font-size: 16px; font-weight: 600; letter-spacing: 0;
}
.QtyCtrl button:hover { background: rgba(226,198,56,0.16); transform: none; }
.QtyCtrl span { min-width: 1.2em; text-align: center; font-size: 13px; font-weight: 600; }
.CartLine-price { text-align: end; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.CartLine-price strong { display: block; font-size: 16px; }
.CartLine-remove {
  background: transparent; color: var(--c-text-2); min-height: 28px; min-width: 28px; padding: 0; font-size: 18px; font-weight: 400;
}
.CartLine-remove:hover { color: var(--c-error); background: transparent; transform: none; }
.CartDrawer-empty {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; padding: 24px 16px;
}
.CartDrawer-empty p { margin: 0; }
.CartDrawer-foot {
  padding: 16px; background: var(--c-surface); border-top: 1px solid var(--c-border);
}
.CartSubtotal { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.CartSubtotal strong { font-size: 22px; color: var(--c-text); }
.CartNote { font-size: 11px; margin: 0 0 12px; color: var(--c-text-3); }
.CartDrawer-foot button { width: 100%; border-radius: 8px; margin-bottom: 8px; }
.CartDrawer-foot .secondary { background: transparent; color: var(--c-text); border: 1px solid var(--c-border-str); }
.CartDrawer-foot .secondary:hover { background: rgba(255,255,255,0.04); }
.CartPage { padding-top: 24px; padding-bottom: 48px; }
.CartSteps { display: flex; gap: 16px; list-style: none; padding: 0; margin: 0 0 24px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-text-3); }
.CartSteps li.is-on { color: var(--c-brand); }
.CartPage-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }
.CartPage-main, .CartPage-summary { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 20px; }
.CartPage-main h1 { margin: 0 0 16px; font-size: 22px; }
.CartPage-summary h2 { margin: 0 0 8px; font-size: 16px; }
.CartPage-summary button { width: 100%; margin-top: 12px; }
.CartInspired { margin-top: 32px; }
@media (max-width: 768px) {
  .CartDrawer {
    position: fixed; top: 88px; bottom: auto; inset-inline-end: 8px; inset-inline-start: auto;
    width: min(380px, calc(100vw - 16px)); max-height: min(520px, calc(100vh - 100px));
    border-radius: 12px;
  }
  .CartPage-grid { grid-template-columns: 1fr; }
}
.WalletStatus { padding: 10px 12px; border: 1px solid var(--c-tx-border); border-radius: var(--r-sm); margin-bottom: 12px; font-size: 13px; }
.WalletStatus.is-short { border-color: var(--c-error); }
.AccountLayout { display: grid; grid-template-columns: 200px 1fr; gap: 24px; }
body.is-auth .Navbar { display: none; }
.AuthStage {
  display: grid; grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
  min-height: 100vh; background: var(--c-bg-dark); color: var(--c-text);
  padding: 12px; position: relative;
}
.AuthHome {
  position: absolute; top: 20px; inset-inline-start: 24px; z-index: 2;
  color: var(--c-text);
}
.AuthHome .Brand-word { color: var(--c-text); }
.AuthForm {
  display: flex; flex-direction: column; justify-content: center;
  max-width: 420px; width: 100%; margin: 0 auto; padding: 88px 32px 48px;
}
.AuthForm h1 {
  margin: 0 0 10px; font-family: var(--font-sans); font-size: 36px; font-weight: 700;
  letter-spacing: -0.04em; color: var(--c-text);
}
.AuthForm-lead { margin: 0 0 28px; color: var(--c-text-2); font-size: 14px; }
.AuthCredentials { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.AuthField { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--c-text-2); font-weight: 600; }
.AuthField input {
  min-height: 48px; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--c-border-str); background: var(--c-surface-hi); color: var(--c-text);
  font-size: 15px;
}
.AuthPrimary {
  width: 100%; min-height: 52px; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--c-cta); color: var(--c-on-orange); font-size: 14px; font-weight: 700;
}
.AuthPrimary:hover { background: var(--c-cta-dark); }
.AuthDivider {
  display: flex; align-items: center; gap: 12px; margin: 16px 0;
  color: var(--c-text-3); font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
}
.AuthDivider::before, .AuthDivider::after {
  content: ""; flex: 1; height: 1px; background: var(--c-border-str);
}
.AuthError { margin: 0; color: #c45c4a; font-size: 13px; }
.AuthCheck { margin-top: 8px; }
.AuthOauth {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; min-height: 52px; margin-bottom: 12px; padding: 12px 18px;
  border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 700;
  box-shadow: 0 10px 28px rgba(11, 13, 15, 0.28);
}
.AuthOauth svg { width: 18px; height: 18px; flex-shrink: 0; }
.AuthOauth-primary { background: var(--c-cta); color: var(--c-on-orange); }
.AuthOauth-primary:hover { background: var(--c-cta-dark); color: var(--c-on-orange); }
.AuthOauth-secondary {
  background: var(--c-surface-hi); color: var(--c-text);
  border: 1px solid var(--c-border-str);
}
.AuthOauth-secondary:hover { border-color: var(--c-brand); color: var(--c-brand); }
.AuthSwitch { margin: 8px 0 0; font-size: 13px; }
.AuthSwitch a { color: var(--c-text-2); text-decoration: none; font-weight: 600; }
.AuthSwitch a:hover { color: var(--c-brand); }
.AuthNote { margin: 20px 0 0; font-size: 12px; color: var(--c-text-3); }
.AuthBrand {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--c-surface); color: var(--c-text);
  border-radius: 32px; padding: 48px 44px; min-height: 520px;
}
.AuthBrand::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(115deg, transparent 40%, rgba(226, 198, 56, 0.12) 52%, transparent 64%),
    radial-gradient(ellipse at 80% 20%, rgba(226, 198, 56, 0.18), transparent 50%);
}
.AuthBrand-mark {
  position: absolute; width: min(72%, 440px); height: auto; opacity: 0.12;
  inset-inline-end: -6%; top: 8%; pointer-events: none;
}
.AuthBrand-copy, .AuthCallout { position: relative; z-index: 1; }
.AuthBrand-copy h2 {
  margin: 8px 0 12px; font-size: 34px; font-weight: 600; letter-spacing: -0.03em;
  font-family: var(--font-display); color: var(--c-text);
}
.AuthBrand .Caption { color: var(--c-brand); }
.AuthBrand-copy p { margin: 0; max-width: 420px; color: var(--c-text-2); }
.AuthCallout {
  background: rgba(11, 13, 15, 0.55); border: 1px solid var(--c-border-str);
  border-radius: 24px; padding: 22px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.AuthCallout strong { display: block; margin-bottom: 8px; font-size: 16px; color: var(--c-text); }
.AuthCallout p { margin: 0; font-size: 13px; color: var(--c-text-2); }

#view-checkout { background: var(--c-tx-bg); color: var(--c-tx-text); min-height: 60vh; padding: 24px; }
.panel, .hero, .OrderSummary {
  background: var(--c-tx-surface); border: 1px solid var(--c-tx-border); border-radius: var(--r-md); padding: 16px; margin: 12px 0;
}
.Section-dark .panel, .Section-dark .hero { background: var(--c-surface); border-color: var(--c-border); color: var(--c-text); }
.PaymentMethodCard {
  display: block; width: 100%; text-align: start; background: var(--c-tx-bg); border: 1px solid var(--c-tx-border);
  color: var(--c-tx-text); padding: 12px; margin-bottom: 8px; font-weight: 600;
}
.PaymentMethodCard.is-selected { border-color: var(--c-brand); background: rgba(226,198,56,0.05); }
.Alert { border: 1px solid var(--c-tx-border); border-inline-start: 3px solid var(--c-brand); padding: 12px 14px; font-size: 13px; margin: 12px 0; background: var(--c-tx-surface); color: var(--c-tx-text); }
.Alert-warning { border-inline-start-color: var(--c-warn); }
.Alert-error { border-inline-start-color: var(--c-error); }
.Alert-success { border-inline-start-color: var(--c-success); }
.Alert-sensitive { border-inline-start-color: #8b3a32; background: #f3e6e3; color: #5c2a24; }
.StatusBadge, .status-pill { display: inline-flex; padding: 2px 8px; border-radius: var(--r-xs); font-size: 10px; font-weight: 700; text-transform: uppercase; background: var(--c-surface-hi); }
.StatusBadge-success { background: var(--c-success-bg); color: var(--c-success); }
.StatusBadge-warning { background: var(--c-warn-bg); color: var(--c-warn); }
.StatusBadge-error { background: var(--c-error-bg); color: var(--c-error); }
.empty { color: var(--c-text-2); padding: 20px 16px; text-align: center; border: 1px dashed var(--c-border-str); border-radius: var(--r-md); }
.empty p { margin: 0 0 10px; }
.err { color: var(--c-error); }
.muted { color: var(--c-text-2); font-size: 13px; }
.row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
pre { white-space: pre-wrap; overflow: auto; background: #0a0d11; color: var(--c-text); padding: 16px; border-radius: var(--r-md); font-family: var(--font-mono); font-size: 12px; }
pre.visually-hidden { background: transparent; padding: 0; margin: 0; border: 0; }

.AppFrame { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; background: var(--c-bg-dark); }
.AppSide { border-inline-end: 1px solid var(--c-border); padding: 16px; background: #0c1014; }
.AppMain { padding: 24px; min-width: 0; }
.AccountNav { display: flex; flex-direction: column; gap: 2px; }
.AccountNav a { padding: 8px 12px; text-decoration: none; color: var(--c-text-2); border-inline-start: 2px solid transparent; font-size: 13px; }
.AccountNav a.is-active, .AccountNav a:hover { color: var(--c-brand); border-inline-start-color: var(--c-brand); }
.SensitiveBar { background: #3a221f; color: #e0b4ae; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 16px; }
.DataTable { width: 100%; border-collapse: collapse; font-size: 13px; }
.DataTable th { text-align: start; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-text-3); padding: 8px; border-bottom: 1px solid var(--c-border-str); }
.DataTable td { padding: 12px 8px; border-bottom: 1px solid var(--c-border); }
.StatCard { border: 1px solid var(--c-border); padding: 16px; background: var(--c-surface); border-radius: var(--r-md); }
.StatCard strong { font-size: 20px; font-variant-numeric: tabular-nums; display: block; }
.Skeleton { min-height: 12px; background: var(--c-surface-hi); border-radius: 4px; animation: pulse 1.5s ease-in-out infinite; }
.ProductCard.is-skeleton { pointer-events: none; }
.ProductCard.is-skeleton .ProductCard-media { background: var(--c-surface-hi); }
@keyframes pulse { 50% { opacity: 0.45; } }
.Footer { padding: 28px 24px; background: #9f5a1f; color: #fff0d9; }
.Footer-inner { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.Footer p { margin: 6px 0 0; max-width: 420px; font-size: 13px; }
.PayMarquee {
  background: #0c1014; border-block: 1px solid rgba(226, 198, 56, 0.1);
  padding: 10px 0; overflow: hidden; opacity: 0.92;
}
.PayMarquee-viewport { overflow: hidden; }
.PayMarquee-track {
  display: flex; align-items: center; gap: 28px; width: max-content;
  animation: pay-marquee 48s linear infinite;
}
.PayMarquee-group { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.PayMarquee-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-text-3);
}
.PayMarquee-chip {
  font-size: 12px; color: var(--c-text); padding: 0;
  background: none; border: 0;
}
.PayMarquee-chip--reward { color: var(--c-pts); }
.PayMarquee-chip--soon { color: var(--c-text-3); }
.PayMarquee-dot { color: var(--c-text-3); }
@keyframes pay-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.SiteFooter {
  background: #0c1014; color: var(--c-text);
  padding: 36px 0 24px; border-top: 1px solid rgba(226, 198, 56, 0.14);
}
.SiteFooter-grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}
.SiteFooter-brand p { margin: 10px 0 0; max-width: 280px; font-size: 13px; color: var(--c-text-2); }
.SiteFooter-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.SiteFooter nav { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.SiteFooter h2 {
  margin: 0 0 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-brand);
}
.SiteFooter nav a {
  color: var(--c-text-2); text-decoration: none; font-size: 13px;
}
.SiteFooter nav a:hover { color: var(--c-brand); }
.SiteFooter-meta {
  margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--c-border);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
}
.SiteFooter-meta p { margin: 0; max-width: 640px; font-size: 12px; color: var(--c-text-2); }
#view-site {
  background: var(--c-bg-dark);
  color: var(--c-text);
}
.Section-paper {
  background: var(--c-tx-bg);
  color: var(--c-tx-text);
}
.Section-paper h2, .Section-paper h3, .Section-paper strong { color: var(--c-tx-text); }
.Section-paper p, .Section-paper li, .Section-paper .muted { color: var(--c-tx-muted); font-size: 16px; line-height: 1.55; }
.Section-paper .kicker { color: var(--c-accent); letter-spacing: 0.14em; }
.Section-paper .SectionHead h2 {
  font-size: clamp(22px, 3vw, 32px); font-family: var(--font-display); font-weight: 400;
}
.Section-gold {
  background: radial-gradient(ellipse 70% 80% at 18% 20%, #ead56a 0%, #e2c638 42%, #c4a82a 100%);
  color: var(--c-on-orange);
}
.PageHero {
  padding: 40px 24px 44px;
  background: radial-gradient(ellipse 70% 80% at 18% 20%, #ead56a 0%, #e2c638 42%, #c4a82a 100%);
  color: var(--c-on-orange);
  border-bottom: 1px solid rgba(11, 13, 15, 0.12);
}
.PageHero h1 {
  font-family: var(--font-display); font-weight: 300; letter-spacing: -0.03em;
  font-size: clamp(36px, 5.4vw, 64px); margin: 0 0 14px; color: var(--c-on-orange); line-height: 1.05;
}
.PageHero .Caption { color: var(--c-on-orange); letter-spacing: 0.16em; font-size: 11px; opacity: 0.55; }
.PageHero p { margin: 0; max-width: 640px; color: var(--c-on-orange-2); font-size: 17px; line-height: 1.5; }
.PageHero .Hero-actions { gap: 10px; }
.SiteCrumb {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 12px; margin: 0 0 18px; color: rgba(11, 13, 15, 0.45); font-weight: 500;
}
.SiteCrumb a { color: rgba(11, 13, 15, 0.55); text-decoration: none; }
.SiteCrumb a:hover { color: var(--c-on-orange); }
.SiteCrumb strong { color: var(--c-on-orange); font-weight: 700; }
.PhilGrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
}
.PhilCard {
  background: var(--c-tx-surface); color: var(--c-tx-text);
  border-radius: 14px; padding: 26px 22px; min-height: 168px;
  border: 1px solid var(--c-tx-border);
  box-shadow: 0 10px 28px rgba(11, 13, 15, 0.06);
}
.Section-gold .PhilCard {
  background: var(--c-tx-surface);
  box-shadow: 0 12px 32px rgba(11, 13, 15, 0.12);
}
.Section-dark .PhilCard {
  background: var(--c-surface-hi); color: var(--c-text);
  border-color: rgba(226,198,56,0.16); box-shadow: none;
}
.Section-dark .PhilCard h3 { color: var(--c-text); }
.Section-dark .PhilCard p { color: var(--c-text-2); }
.PhilCard-n {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--c-accent); margin-bottom: 12px; text-transform: uppercase;
}
.PhilCard h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 20px;
  margin: 0 0 10px; color: var(--c-tx-text);
}
.PhilCard p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--c-tx-muted); }
.SitePage--dense .PhilGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px; background: var(--c-tx-border);
  border: 1px solid var(--c-tx-border); border-radius: var(--r-lg); overflow: hidden;
}
.SitePage--dense .PhilCard {
  border-radius: 0; border: 0; box-shadow: none; min-height: 148px; padding: 20px 18px;
}
.TrustIntro { padding: 36px 24px 28px; }
.TrustIntro h2 {
  font-family: var(--font-display); font-weight: 300; letter-spacing: -0.03em;
  font-size: clamp(26px, 3.4vw, 40px); margin: 0; max-width: 720px;
}
.StepList, .StepRail { list-style: none; margin: 0; padding: 0; }
.StepList { display: flex; flex-direction: column; gap: 16px; }
.StepRail {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
}
.StepItem { display: flex; gap: 16px; align-items: flex-start; }
.StepRail .StepItem {
  flex-direction: column; gap: 12px;
  background: var(--c-tx-surface); border: 1px solid var(--c-tx-border);
  border-radius: 12px; padding: 18px 16px; min-height: 180px;
  box-shadow: 0 8px 20px rgba(11, 13, 15, 0.05);
}
.StepItem-n {
  flex-shrink: 0; background: var(--c-bg-dark); color: var(--c-brand);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  border-radius: 999px; padding: 8px 12px; min-width: 40px; text-align: center;
}
.StepItem h3 { margin: 0 0 4px; font-size: 16px; color: var(--c-tx-text); }
.StepItem p { margin: 0; font-size: 15px; line-height: 1.45; color: var(--c-tx-muted); max-width: 640px; }
.Section-dark .StepItem h3 { color: var(--c-text); }
.Section-dark .StepItem p { color: var(--c-text-2); }
.SiteList { margin: 0; padding-inline-start: 18px; color: var(--c-tx-muted); }
.SiteList li { margin-bottom: 8px; font-size: 16px; }
.SiteList-onDark { color: var(--c-text-2); }
.RelatedBlock {
  padding: 14px 24px 22px;
  background: var(--c-tx-bg);
  border-top: 1px solid var(--c-tx-border);
}
.RelatedBlock-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.RelatedChip {
  display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--c-tx-border); color: var(--c-tx-muted); text-decoration: none;
  font-size: 12px; font-weight: 500; min-height: 0; background: var(--c-tx-surface);
}
.RelatedChip:hover { border-color: var(--c-accent); color: var(--c-tx-text); }
.ConfigCallout {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-start;
  margin: 12px 0 0; padding: 8px 0; border: 0; background: transparent;
  font-size: 12px; color: var(--c-tx-muted);
}
.ConfigCallout-tag {
  background: transparent; color: var(--c-accent); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0; padding: 0;
  border-inline-end: 1px solid var(--c-tx-border); padding-inline-end: 10px;
}
.CollectionGrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px;
}
.CollectionCard, button.CollectionCard {
  text-align: start; background: var(--c-surface); color: var(--c-text);
  border: 1px solid rgba(226,198,56,0.16); border-radius: 12px; padding: 0;
  display: flex; flex-direction: column; gap: 0; min-height: 0; overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.28); letter-spacing: 0; width: 100%;
  font-weight: 400; font-size: inherit;
}
button.CollectionCard:hover { background: var(--c-surface); color: var(--c-text); transform: translateY(-3px); }
button.CollectionCard:active { transform: translateY(-3px); }
.CollectionCard-visual {
  display: block; min-height: 220px; aspect-ratio: 3 / 4; padding: 0; border-radius: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(226,198,56,0.22), transparent 42%),
    linear-gradient(180deg, #2a2218 0%, #0c1014 100%);
  font-size: 0; line-height: 0; color: transparent;
}
.CollectionCard-visual--gaming {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(226,198,56,0.35), transparent 40%),
    linear-gradient(165deg, #3a2410 0%, #121018 55%, #0a0d11 100%);
}
.CollectionCard-visual--streaming {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(124,92,232,0.4), transparent 45%),
    linear-gradient(180deg, #2a1638 0%, #0c1014 100%);
}
.CollectionCard-visual--discord {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(88,101,242,0.35), transparent 50%),
    linear-gradient(180deg, #1a2448 0%, #0c1014 100%);
}
.CollectionCard-visual--software {
  background:
    radial-gradient(ellipse at 10% 80%, rgba(16,185,129,0.28), transparent 46%),
    linear-gradient(180deg, #14302c 0%, #0c1014 100%);
}
.CollectionCard-visual--creator {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(229,151,61,0.4), transparent 44%),
    linear-gradient(180deg, #3a1c10 0%, #0c1014 100%);
}
.CollectionCard-visual--value {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(226,198,56,0.32), transparent 48%),
    linear-gradient(180deg, #2e2610 0%, #0c1014 100%);
}
.CollectionCard-visual--new {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(16,185,129,0.22), transparent 46%),
    linear-gradient(180deg, #14241c 0%, #0c1014 100%);
}
.CollectionCard-visual--featured {
  background:
    radial-gradient(ellipse at 80% 80%, rgba(229,151,61,0.35), transparent 42%),
    linear-gradient(180deg, #3a1410 0%, #0c1014 100%);
}
.CollectionCard-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.CollectionCard .kicker { color: var(--c-brand); margin-bottom: 0; font-size: 10px; letter-spacing: 0.12em; }
.CollectionCard strong { font-size: 16px; color: var(--c-text); font-family: var(--font-sans); font-weight: 650; }
.CollectionCard p { margin: 0; font-size: 13px; color: var(--c-text-2); line-height: 1.4; }
.CollectionCard:hover { transform: translateY(-3px); }
.CollectionCard.is-config { cursor: default; opacity: 0.88; }
.CollectionCard.is-config .ConfigCallout-tag {
  color: var(--c-text-3); border: 0; padding: 0; font-size: 9px;
}
.FaqPanel {
  background: var(--c-tx-surface); border: 1px solid var(--c-tx-border);
  border-radius: var(--r-lg); padding: 22px 22px 12px;
  box-shadow: 0 12px 32px rgba(11, 13, 15, 0.06);
}
.FaqTools { display: flex; flex-direction: column; gap: 14px; }
.FaqCats { display: flex; flex-wrap: wrap; gap: 8px; }
.FaqCats .FilterChip {
  width: auto; display: inline-flex; margin: 0; color: var(--c-tx-muted);
  border-color: var(--c-tx-border); background: transparent; border-radius: 999px;
}
.FaqCats .FilterChip.is-on {
  border-color: var(--c-accent); color: var(--c-accent); background: rgba(229,151,61,0.08);
}
#view-site #faq-search {
  background: var(--c-tx-bg); color: var(--c-tx-text); border-color: var(--c-tx-border); max-width: 420px;
}
.FaqList { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--c-tx-border); }
.FaqItem {
  background: transparent; border-radius: 0; padding: 0;
  color: var(--c-tx-text); border-bottom: 1px solid var(--c-tx-border);
}
.FaqItem summary {
  cursor: pointer; list-style: none; padding: 14px 4px;
  font-size: 16px; font-weight: 650; color: var(--c-tx-text);
}
.FaqItem summary::-webkit-details-marker { display: none; }
.FaqItem summary::after {
  content: "+"; float: inline-end; color: var(--c-accent); font-weight: 500;
}
.FaqItem[open] summary::after { content: "–"; }
.FaqItem p { margin: 0 0 14px; font-size: 15px; line-height: 1.5; color: var(--c-tx-muted); }
.ContactPaths {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-bottom: 16px;
}
.PathCard {
  display: flex; flex-direction: column; gap: 6px; padding: 18px 16px; border-radius: 14px;
  background: var(--c-tx-surface); color: var(--c-tx-text); text-decoration: none;
  border: 1px solid var(--c-tx-border); box-shadow: 0 8px 20px rgba(11,13,15,0.05);
}
.PathCard:hover { border-color: var(--c-accent); }
.PathCard span { font-size: 14px; color: var(--c-tx-muted); }
.MathCard {
  background: var(--c-surface); color: var(--c-text);
  border-radius: 4px; padding: 28px 24px; max-width: 720px;
  border: 1px solid rgba(226,198,56,0.28);
  box-shadow: inset 0 1px 0 rgba(226,198,56,0.16);
}
.MathCard .Caption { color: var(--c-brand); letter-spacing: 0.16em; }
.MathCard-eq {
  font-family: var(--font-mono); font-size: clamp(15px, 2vw, 20px);
  color: var(--c-text); margin: 12px 0 16px; line-height: 1.45;
  padding: 14px 0; border-block: 1px solid rgba(226,198,56,0.2);
}
.MathCard p { color: var(--c-text-2); font-size: 14px; }
.Lead { max-width: 720px; font-size: 18px; line-height: 1.5; color: var(--c-text-2); }
.EmptyQuiet {
  text-align: start; border: 0; background: transparent; padding: 8px 0 12px;
  color: var(--c-tx-muted); max-width: 560px;
}
.EmptyQuiet p { margin: 0 0 8px; font-size: 16px; }
.EmptyQuiet strong { display: block; color: var(--c-tx-text); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.SitePage--editorial .PageHero { padding-bottom: 56px; }
.SitePage--energy .PageHero h1 { letter-spacing: -0.04em; }
.SitePage--aspire .PageHero h1 { font-weight: 400; }
.SitePage--ops .PageHero { padding-bottom: 20px; }
.SitePage--movement .PageHero {
  padding-bottom: 28px;
}
.SitePage--visual .Section-dark { padding-top: 28px; }
.FormWell {
  background: var(--c-surface); border: 1px solid rgba(226,198,56,0.18);
  border-radius: var(--r-lg); padding: 28px 24px; max-width: 560px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}
.SiteForm { display: flex; flex-direction: column; gap: 10px; max-width: 520px; }
.FormWell .SiteForm { max-width: none; }
.SiteForm button, .SiteForm .Btn { width: fit-content; min-height: 44px; }
.SiteForm label { font-size: 12px; color: var(--c-text-2); }
.Section-dark .SiteForm input, .Section-dark .SiteForm select, .Section-dark .SiteForm textarea {
  background: var(--c-surface-hi); color: var(--c-text); border-color: var(--c-border-str);
}
.TicketDone {
  max-width: 560px; padding: 20px; border-radius: 14px;
  background: var(--c-surface-hi); border: 1px solid rgba(226,198,56,0.2);
}
.SiteFooter details { display: contents; }
.SiteFooter summary {
  list-style: none; cursor: default; margin: 0 0 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-brand);
}
.SiteFooter summary::-webkit-details-marker { display: none; }
.AuthForm .Caption { color: var(--c-brand); }
.AuthForm h1 { font-family: var(--font-display); font-weight: 300; }
@media (max-width: 900px) {
  .SiteFooter-grid { grid-template-columns: 1fr 1fr; }
  .PhilGrid { grid-template-columns: 1fr 1fr; }
  .SitePage--dense .PhilGrid { grid-template-columns: 1fr 1fr; }
  .CollectionGrid { grid-template-columns: 1fr 1fr; }
  .StepRail { grid-template-columns: 1fr 1fr; }
  .PageHero { padding: 28px 16px 32px; }
  .Section { padding: 28px 16px; }
}
@media (max-width: 560px) {
  .SiteFooter-grid { grid-template-columns: 1fr; }
  .SiteFooter details { display: block; border-bottom: 1px solid var(--c-border); padding: 8px 0; }
  .SiteFooter summary { cursor: pointer; padding: 10px 0; min-height: 44px; display: flex; align-items: center; }
  .SiteFooter nav a { min-height: 44px; display: flex; align-items: center; }
  .PhilGrid, .SitePage--dense .PhilGrid, .CollectionGrid, .ContactPaths, .StepRail { grid-template-columns: 1fr; }
  .Hero-actions { display: flex; flex-direction: column; align-items: stretch; }
  .Hero-actions a, .Hero-actions button, .Hero-actions .Btn { width: 100%; }
  .Hero-actions button, .Hero-actions .Btn { min-height: 44px; }
  .RelatedBlock-chips { flex-direction: row; flex-wrap: wrap; }
  .RelatedChip { justify-content: center; min-height: 0; }
  .StepList .StepItem { flex-direction: column; gap: 8px; }
  .ConfigCallout { flex-direction: column; }
}
.FilterSheet {
  display: none; position: fixed; inset-inline: 0; bottom: 0; z-index: var(--z-drawer);
  background: var(--c-surface); border-top: 1px solid var(--c-border); padding: 16px; max-height: 80vh; overflow: auto;
  transform: translateY(8px); transition: transform 180ms var(--ease);
}
.FilterSheet.is-open { display: block; transform: translateY(0); }

@media (max-width: 900px) {
  .Navbar-inner { grid-template-columns: auto 1fr; }
  .NavMeta { grid-column: 1 / -1; justify-content: flex-end; flex-wrap: wrap; }
  .Hero-grid, .ExploreLayout, .ProductLayout, .AppFrame, .AccountLayout { grid-template-columns: 1fr; }
  .AuthStage { grid-template-columns: 1fr; min-height: 100vh; padding: 12px; }
  .AuthForm { padding: 88px 20px 16px; }
  .AuthForm h1 { font-size: 30px; }
  .AuthBrand { min-height: 280px; padding: 28px 24px; border-radius: 28px; }
  .FilterPanel { position: static; max-height: none; display: none; }
  .ExploreMobileBar { display: flex; }
  .BuyBox { position: sticky; bottom: 0; top: auto; z-index: 80; margin: 0 -8px; border-radius: var(--r-md) var(--r-md) 0 0; }
  .Hero { padding: 28px 16px; }
  .Brand-word { font-size: 16px; }
}
@media (max-width: 430px) {
  .Navbar-inner { padding: 8px 12px; gap: 10px; }
  .SearchBar { padding-inline-start: 10px; min-height: 44px; }
  .SearchBar input { font-size: 16px; min-height: 40px; }
  .SearchBar-go { min-height: 32px; padding: 6px 12px; }
  .BalanceChip, .PointsBadge { min-height: 32px; font-size: 10px; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .Hero h1 { font-size: 28px; }
  nav[aria-label="Primary"] { padding: 0 12px; }
}
@media (max-width: 768px) {
  .DataTable thead { display: none; }
  .DataTable, .DataTable tbody, .DataTable tr, .DataTable td { display: block; width: 100%; }
  .DataTable tr { border: 1px solid var(--c-border); margin-bottom: 12px; padding: 8px; }
  .DataTable td { display: flex; justify-content: space-between; border: 0; }
  .DataTable td::before { content: attr(data-label); font-weight: 600; color: var(--c-text-3); }
}
@media (min-width: 901px) {
  .ExploreMobileBar { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .PayMarquee-viewport { overflow-x: auto; }
  .PayMarquee-track { width: max-content; transform: none; }
}
