:root {
  --bg: #0f0f10;
  --bg-soft: #17171a;
  --panel: rgba(18, 18, 22, 0.86);
  --panel-strong: rgba(12, 12, 18, 0.94);
  --panel-border: rgba(255, 224, 157, 0.16);
  --text: #f7f2e5;
  --muted: #c9bea2;
  --gold: #f0ca73;
  --gold-strong: #ffdd95;
  --danger: #ff8f7a;
  --success: #8de3a1;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --radius-sm: 16px;
  --content: 1160px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 213, 120, 0.22), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(190, 134, 26, 0.12), transparent 22%),
    radial-gradient(circle at 50% 28%, rgba(255, 221, 149, 0.06), transparent 32%),
    linear-gradient(180deg, #20170c 0%, #0f0f10 42%, #09090a 100%);
  color: var(--text);
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 227, 152, 0.08), transparent 22%),
    radial-gradient(circle at 80% 0%, rgba(255, 209, 103, 0.08), transparent 18%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

body::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 96px 96px;
  content: "";
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

html[dir="rtl"] body {
  direction: rtl;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 28px 0 72px;
  position: relative;
  z-index: 1;
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  flex: 0 0 auto;
}

.brand-badge {
  background: linear-gradient(180deg, rgba(255, 226, 150, 0.12), rgba(255, 226, 150, 0.04));
  border: 1px solid rgba(255, 221, 149, 0.35);
  border-radius: 999px;
  box-shadow: inset 0 0 18px rgba(255, 221, 149, 0.06);
  color: var(--gold);
  font-size: 0.84rem;
  padding: 7px 12px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.locale-switcher {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.nav-links a,
.ghost-button {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 15px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.ghost-button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 221, 149, 0.24);
  transform: translateY(-1px);
}

.locale-pill {
  min-width: 52px;
  text-align: center;
}

.locale-pill.active {
  background: rgba(255, 221, 149, 0.09);
  border-color: rgba(255, 221, 149, 0.24);
  color: var(--gold);
}

.hero {
  background:
    linear-gradient(135deg, rgba(255, 216, 131, 0.18), rgba(255, 255, 255, 0.02) 42%, rgba(18, 18, 25, 0.9)),
    rgba(10, 10, 11, 0.78);
  border: 1px solid var(--panel-border);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.home-page .hero::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 222, 149, 0.07), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 86px
    );
  content: "";
  inset: 0;
  opacity: 0.8;
  position: absolute;
}

.hero::after {
  background:
    radial-gradient(circle at center, rgba(255, 226, 150, 0.28), transparent 54%);
  content: "";
  filter: blur(6px);
  height: 380px;
  position: absolute;
  right: -80px;
  top: -120px;
  width: 380px;
  animation: heroPulse 8s ease-in-out infinite;
}

.hero-grid {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 0.9fr;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-heading-row {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 6px;
}

.hero-seal {
  align-items: center;
  background: radial-gradient(circle at 30% 20%, rgba(255, 226, 150, 0.18), rgba(255, 226, 150, 0.04));
  border: 1px solid rgba(255, 221, 149, 0.2);
  border-radius: 24px;
  box-shadow: inset 0 0 24px rgba(255, 221, 149, 0.05);
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  padding: 12px;
}

.hero-kicker {
  color: rgba(247, 242, 229, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  margin-top: -2px;
  text-transform: uppercase;
}

.hero h1,
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.96;
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

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

.home-page .hero p {
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-actions .primary-button,
.hero-actions .secondary-button {
  letter-spacing: 0.02em;
}

.hero-ledger {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.hero-ledger-item {
  background: linear-gradient(180deg, rgba(255, 244, 214, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 221, 149, 0.15);
  border-radius: 18px;
  min-height: 96px;
  padding: 16px 16px 14px;
}

.hero-ledger-label {
  color: rgba(247, 242, 229, 0.6);
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-ledger-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.25;
}

.home-page .hero .primary-button {
  border: 1px solid rgba(255, 245, 214, 0.55);
  font-size: 1.08rem;
  min-height: 66px;
  min-width: 220px;
  padding: 18px 30px;
  text-align: center;
}

.home-page .hero .secondary-button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 66px;
  min-width: 170px;
  padding: 0 28px;
  text-align: center;
}

.primary-button,
.secondary-button,
button {
  align-items: center;
  appearance: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  isolation: isolate;
  justify-content: center;
  line-height: 1.1;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}

.primary-button,
button.primary-button {
  background:
    linear-gradient(180deg, rgba(255, 249, 233, 0.45), rgba(255, 249, 233, 0) 34%),
    linear-gradient(135deg, #ffe09a, #e8b756 58%, #c68f30);
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 242, 0.55),
    0 14px 34px rgba(248, 195, 86, 0.22),
    0 0 0 1px rgba(255, 227, 156, 0.16);
  color: #24190a;
  font-weight: 700;
  padding: 14px 22px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover,
button.primary-button:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 242, 0.65),
    0 18px 40px rgba(248, 195, 86, 0.3),
    0 0 0 1px rgba(255, 227, 156, 0.22);
  transform: translateY(-2px);
}

.primary-button::after,
button.primary-button::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  inset: 0 auto 0 -140%;
  position: absolute;
  transform: skewX(-18deg);
  width: 60%;
  z-index: -1;
}

.primary-button:hover::after,
button.primary-button:hover::after {
  animation: buttonSheen 900ms ease;
}

.secondary-button {
  background:
    linear-gradient(180deg, rgba(255, 225, 150, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 221, 149, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 14px 22px;
  text-decoration: none;
}

.secondary-button:hover {
  background:
    linear-gradient(180deg, rgba(255, 225, 150, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
}

.price-card,
.panel,
.order-card,
.certificate-card,
.stats-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.price-card {
  background:
    linear-gradient(180deg, rgba(7, 9, 19, 0.96), rgba(9, 10, 16, 0.94)),
    var(--panel-strong);
  backdrop-filter: blur(18px);
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.price-card::before {
  background: radial-gradient(circle at top left, rgba(255, 220, 135, 0.2), transparent 42%);
  content: "";
  height: 220px;
  left: -60px;
  position: absolute;
  top: -80px;
  width: 220px;
}

.price-card::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 38%);
  content: "";
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  position: absolute;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card-mark {
  filter: drop-shadow(0 0 18px rgba(255, 222, 149, 0.18));
  opacity: 0.26;
  position: absolute;
  right: 24px;
  top: 72px;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 4rem);
  letter-spacing: 0.01em;
  margin: 12px 0 10px;
  text-shadow:
    0 0 28px rgba(255, 228, 160, 0.08),
    0 0 56px rgba(255, 228, 160, 0.05);
}

.price-card-top {
  align-items: start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.price-edition {
  background: rgba(255, 221, 149, 0.08);
  border: 1px solid rgba(255, 221, 149, 0.16);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 7px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card ul,
.risk-list,
.checklist,
.facts {
  color: var(--muted);
  line-height: 1.65;
  margin: 14px 0 0;
  padding-left: 18px;
}

.price-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.price-meta-pill {
  background: rgba(255, 221, 149, 0.08);
  border: 1px solid rgba(255, 221, 149, 0.18);
  border-radius: 999px;
  color: var(--gold-strong);
  display: inline-flex;
  padding: 9px 12px;
}

.grid-two,
.grid-three,
.certificate-grid,
.stats-grid,
.order-grid {
  display: grid;
  gap: 22px;
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-three,
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section {
  margin-top: 34px;
}

.panel {
  padding: 26px;
}

.section-head .section-title,
.panel .section-title {
  position: relative;
}

.section-head .section-title::after,
.panel .section-title::after {
  background: linear-gradient(90deg, rgba(255, 221, 149, 0.8), rgba(255, 221, 149, 0));
  border-radius: 999px;
  content: "";
  display: block;
  height: 2px;
  margin-top: 16px;
  width: min(140px, 28%);
}

.panel:hover,
.order-card:hover,
.certificate-card:hover,
.stats-card:hover,
.price-card:hover {
  border-color: rgba(255, 221, 149, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  transform: translateY(-2px);
}

.label {
  color: var(--muted);
  display: block;
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.input,
.textarea,
.file-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
  width: 100%;
}

.textarea {
  min-height: 180px;
  resize: vertical;
}

.file-input {
  padding: 12px;
}

.checkbox-row {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.checkbox-row input {
  margin-top: 5px;
}

.checkbox-row label {
  color: var(--muted);
  line-height: 1.55;
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}

.consent-note {
  background: linear-gradient(180deg, rgba(255, 223, 150, 0.08), rgba(255, 223, 150, 0.02));
  border: 1px solid rgba(255, 223, 150, 0.18);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 247, 228, 0.05);
  color: var(--muted);
  line-height: 1.7;
  margin: 10px 0 0;
  padding: 16px 18px;
}

.notice-card {
  background: linear-gradient(180deg, rgba(255, 244, 214, 0.08), rgba(255, 221, 149, 0.03));
  border: 1px solid rgba(255, 221, 149, 0.18);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 247, 228, 0.05);
  margin-top: 16px;
  padding: 18px;
}

.notice-card .eyebrow {
  margin-bottom: 10px;
}

.notice-list {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  padding-left: 18px;
}

.alert,
.success,
.warning {
  border-radius: 18px;
  margin: 16px 0 0;
  padding: 16px 18px;
}

.alert {
  background: rgba(255, 143, 122, 0.1);
  border: 1px solid rgba(255, 143, 122, 0.28);
  color: #ffd1c7;
}

.success {
  background: rgba(141, 227, 161, 0.1);
  border: 1px solid rgba(141, 227, 161, 0.28);
  color: #c8f7d2;
}

.warning {
  background: rgba(255, 208, 120, 0.08);
  border: 1px solid rgba(255, 208, 120, 0.22);
  color: #ffe7b6;
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

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

.tag-row,
.meta-row,
.sort-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag,
.sort-pill {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  gap: 8px;
  padding: 9px 12px;
  text-decoration: none;
}

.sort-pill.active {
  background: rgba(255, 221, 149, 0.09);
  border-color: rgba(255, 221, 149, 0.24);
  color: var(--gold);
}

.spotlight-grid .spotlight-card {
  background:
    linear-gradient(180deg, rgba(255, 214, 126, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(15, 15, 20, 0.88);
}

.tribute-preview {
  position: relative;
}

.tribute-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tribute-card {
  background:
    radial-gradient(circle at top right, rgba(255, 222, 149, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 218, 128, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 18, 0.9);
  border: 1px solid rgba(255, 221, 149, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 22px;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.tribute-card-strong::before {
  background: linear-gradient(180deg, rgba(255, 221, 149, 0.15), transparent);
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
}

.tribute-card-top {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.tribute-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.05;
  margin: 18px 0 12px;
}

.tribute-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.tribute-card:hover {
  border-color: rgba(255, 221, 149, 0.24);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
  transform: translateY(-3px);
}

.tribute-rank {
  color: rgba(255, 221, 149, 0.18);
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 14px;
}

.tribute-side-card .price {
  margin-bottom: 8px;
}

.purchase-panel {
  background:
    linear-gradient(135deg, rgba(255, 218, 128, 0.08), rgba(17, 17, 23, 0.92)),
    rgba(18, 18, 22, 0.88);
}

.paypal-panel {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

html[dir="rtl"] .paypal-panel {
  align-items: flex-end;
}

#paypal-button-container {
  width: min(360px, 100%);
}

.certificate-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

.faq-item {
  background:
    linear-gradient(180deg, rgba(255, 218, 128, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(16, 16, 20, 0.9);
  border: 1px solid rgba(255, 221, 149, 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  gap: 16px;
  list-style: none;
  padding: 20px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--gold);
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 20px;
  padding-right: 30px;
}

.certificate-card {
  overflow: hidden;
}

.certificate-card-link {
  color: inherit;
  display: block;
  height: 100%;
  text-decoration: none;
}

.certificate-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 320ms ease;
  width: 100%;
}

.certificate-card:hover img {
  transform: scale(1.03);
}

.certificate-card .card-body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  padding: 18px;
}

.detail-grid {
  align-items: start;
}

.certificate-stage {
  overflow: hidden;
  padding: 18px;
}

.certificate-stage img {
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius) - 8px);
  object-fit: cover;
  width: 100%;
}

.detail-facts {
  margin-top: 0;
}

.share-panel {
  border-top: 1px solid rgba(255, 221, 149, 0.14);
  margin-top: 26px;
  padding-top: 24px;
}

.share-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 12px;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.certificate-number {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certificate-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 10px 0 8px;
}

.order-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.order-card {
  overflow: hidden;
}

.order-card .body {
  padding: 20px;
}

.order-image {
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.04);
  object-fit: cover;
  width: 100%;
}

.status {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.12em;
  padding: 7px 11px;
  text-transform: uppercase;
}

.status.awaiting {
  background: rgba(255, 208, 120, 0.08);
  color: #ffd68b;
}

.status.ready {
  background: rgba(141, 227, 161, 0.08);
  color: #baf0c5;
}

.status.live {
  background: rgba(125, 188, 255, 0.08);
  color: #c8e0ff;
}

.facts {
  margin-top: 16px;
}

.facts strong {
  color: var(--text);
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-form .input {
  min-width: 180px;
}

.delete-certificate-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.delete-button {
  border-color: rgba(255, 143, 122, 0.2);
  color: #ffd5cc;
}

.delete-button:hover {
  border-color: rgba(255, 143, 122, 0.35);
}

.footer-note {
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 42px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.footer-links a {
  border: 1px solid rgba(255, 221, 149, 0.2);
  border-radius: 999px;
  color: var(--gold);
  padding: 8px 14px;
  text-decoration: none;
}

.empty-state {
  background:
    linear-gradient(180deg, rgba(255, 216, 131, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(14, 14, 18, 0.88);
  border: 1px dashed rgba(255, 221, 149, 0.18);
  border-radius: var(--radius);
  color: var(--muted);
  line-height: 1.75;
  padding: 32px 24px;
  text-align: center;
}

.loading-text {
  color: var(--gold);
  margin-top: 12px;
}

.legal-page .legal-section {
  margin-top: 20px;
}

.legal-intro .muted {
  max-width: 880px;
}

.legal-list {
  color: var(--muted);
  line-height: 1.75;
  margin: 12px 0 0;
  padding-left: 18px;
}

html[dir="rtl"] .topbar,
html[dir="rtl"] .nav-links,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .hero-heading-row,
html[dir="rtl"] .share-actions,
html[dir="rtl"] .tag-row,
html[dir="rtl"] .sort-row,
html[dir="rtl"] .inline-form,
html[dir="rtl"] .meta-row,
html[dir="rtl"] .locale-switcher {
  flex-direction: row-reverse;
}

html[dir="rtl"] .price-card-top {
  flex-direction: row-reverse;
}

html[dir="rtl"] .price-card-mark {
  left: 24px;
  right: auto;
}

html[dir="rtl"] .notice-list,
html[dir="rtl"] .price-card ul,
html[dir="rtl"] .risk-list,
html[dir="rtl"] .checklist,
html[dir="rtl"] .legal-list,
html[dir="rtl"] .facts {
  padding-left: 0;
  padding-right: 18px;
}

html[dir="rtl"] .faq-item summary {
  flex-direction: row-reverse;
}

html[dir="rtl"] .faq-item p {
  padding-left: 30px;
  padding-right: 0;
}

html[dir="rtl"] .tribute-card-top {
  flex-direction: row-reverse;
}

html[dir="rtl"] .tribute-rank {
  left: 18px;
  right: auto;
}

code,
pre {
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
}

pre {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow-x: auto;
  padding: 16px;
  white-space: pre-wrap;
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes buttonSheen {
  from {
    left: -140%;
  }
  to {
    left: 180%;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-two,
  .grid-three,
  .stats-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--content));
    padding-bottom: 44px;
  }

  .hero,
  .panel,
  .price-card,
  .order-card .body {
    padding: 20px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-heading-row {
    align-items: flex-start;
  }

  .hero-seal {
    border-radius: 20px;
    padding: 10px;
  }

  .hero-seal img,
  .brand-mark {
    height: 42px;
    width: 42px;
  }
}
