:root {
  --bg: #0d0f14;
  --bg-soft: #151923;
  --bg-card: #191e2a;
  --ink: #f4efe5;
  --muted: #b8ad9d;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d7aa55;
  --gold-2: #f0cf7a;
  --steel: #b8c0c8;
  --blue: #8bb9ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at top left, rgba(215, 170, 85, 0.15), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(139, 185, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #0b0d12 0%, var(--bg) 48%, #0a0b0f 100%);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.announcement {
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  color: #211707;
  background: linear-gradient(90deg, #b77b27, #f0cf7a, #b77b27);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(13, 15, 20, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 48px;
  height: auto;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 18px rgba(215, 170, 85, 0.24));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.6vw, 1.75rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav > .button {
  min-width: 112px;
  text-align: center;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.84rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}
 
.button.primary {
  border: 0;
  background: linear-gradient(135deg, #d7aa55, #f1d489 50%, #ac731f);
  color: #1a1207;
}

.button:hover {
  transform: translateY(-1px);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px 20px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(215, 170, 85, 0.3);
  border-radius: 999px;
  background: rgba(215, 170, 85, 0.08);
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.2rem;
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero-copy {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  line-height: 1.68;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.hero-category-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(215, 170, 85, 0.28);
  border-radius: 999px;
  background: rgba(215, 170, 85, 0.08);
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.hero-category-row a:hover {
  color: #1a1207;
  background: var(--gold-2);
}

.hero-stat-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 640px;
}

.stat-pill {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.stat-pill strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.stat-pill span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.coin-orbit {
  position: absolute;
  width: min(94%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(circle at center, rgba(215, 170, 85, 0.16), transparent 65%);
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.55));
  z-index: -2;
}

.coin-stack {
  position: relative;
  width: min(92%, 430px);
  aspect-ratio: 0.86;
}

.coin-card {
  position: absolute;
  width: 67%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow), inset 0 0 0 12px rgba(0, 0, 0, 0.2), inset 0 0 22px rgba(255, 255, 255, 0.18);
  background: #11151d;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.coin-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.08), inset 0 0 38px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.coin-card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.coin-card:hover,
.coin-card:focus-visible {
  border-color: rgba(240, 207, 122, 0.62);
  box-shadow: var(--shadow), 0 0 0 4px rgba(240, 207, 122, 0.18), inset 0 0 22px rgba(255, 255, 255, 0.18);
  outline: none;
}

.coin-card.blue {
  left: 13%;
  top: 0;
  transform: rotate(-8deg);
}

.coin-card.mimic {
  right: 0;
  top: 28%;
  width: 58%;
  transform: rotate(12deg);
}

.coin-card.owlbear {
  left: 0;
  bottom: 0;
  width: 60%;
  transform: rotate(-15deg);
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 5%;
  max-width: 230px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(15, 18, 24, 0.78);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.floating-note strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.6rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
}

#hero {
  padding-bottom: 20px;
}

#why {
  padding-top: 20px;
  padding-bottom: 20px;
}

#coins {
  padding-top: 20px;
  padding-bottom: 20px;
}

#dogtags {
  padding-top: 20px;
  padding-bottom: 20px;
}

#foil-cards {
  padding-top: 20px;
  padding-bottom: 20px;
}

#metal-cards {
  padding-top: 20px;
  padding-bottom: 20px;
}

#coasters {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.section-head p {
  max-width: 430px;
  margin-bottom: 0.2rem;
  color: var(--muted);
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.22);
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 1.4rem;
  background:
    radial-gradient(circle at center, rgba(215, 170, 85, 0.18), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.new-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  color: #15100b;
  background: linear-gradient(135deg, #fff2dc, #ffc275);
  border: 1px solid rgba(255, 242, 220, 0.72);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35), 0 0 22px rgba(255, 194, 117, 0.24);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-media img {
  width: min(100%, 280px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.42));
}

.product-media img[data-shape="coin"],
.product-media img[data-shape="coaster"] {
  border-radius: 50%;
}

.product-media img[data-shape="card"] {
  border-radius: 22px;
  aspect-ratio: 2.5 / 3.5;
  max-height: 320px;
}

.placeholder-coin {
  width: min(100%, 265px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #16120b;
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  border: 9px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 12px rgba(0, 0, 0, 0.16), 0 22px 42px rgba(0, 0, 0, 0.34);
  background:
    radial-gradient(circle at 33% 28%, rgba(255, 255, 255, 0.42), transparent 14%),
    conic-gradient(from 120deg, #303743, #d8dde2, #917544, #12151b, #c5cbd1, #303743);
  padding: 2.5rem;
}

.placeholder-coin.gold {
  background:
    radial-gradient(circle at 33% 28%, rgba(255, 255, 255, 0.36), transparent 14%),
    conic-gradient(from 90deg, #3e210d, #edc66d, #9b5d21, #2a160a, #d3a243, #3e210d);
}

.placeholder-coin.slate {
  border-radius: 28% 35% 31% 38%;
  color: #f3efe4;
  background:
    radial-gradient(circle at 33% 28%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(135deg, #2f3235, #111417 45%, #4b4d50);
  border-color: rgba(255, 255, 255, 0.12);
}

.placeholder-card {
  width: min(100%, 230px);
  aspect-ratio: 2.5 / 3.5;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 22px;
  padding: 1.5rem;
  color: #16120b;
  font-weight: 1000;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.14), inset 0 0 0 12px rgba(0, 0, 0, 0.18), 0 22px 42px rgba(0, 0, 0, 0.34);
  transform: rotate(-2deg);
}

.placeholder-card.foil-card {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.8), transparent 14%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(139, 185, 255, 0.56) 24%, rgba(240, 207, 122, 0.72) 48%, rgba(255, 255, 255, 0.8) 72%, rgba(198, 156, 255, 0.52));
}

.placeholder-card.metal-card {
  color: #f4efe5;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.42), transparent 13%),
    linear-gradient(135deg, #f0f2f4, #6e7680 22%, #171b22 45%, #c3c9cf 68%, #2f3540);
}

.product-body {
  flex: 1;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.product-kicker {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-kicker > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.sale {
  display: inline-block;
  color: #14100c;
  background: var(--gold-2);
  border-radius: 999px;
  padding: 0.25rem 0.48rem;
  letter-spacing: 0.04em;
}

.price-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
}

.sale-note {
  display: block;
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
}

.catalog-note {
  display: none;
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 clamp(1rem, 3vw, 2rem) 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog-note.is-visible {
  display: block;
}

.catalog-note-inner {
  border: 1px solid rgba(240, 207, 122, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(215, 170, 85, 0.07);
  padding: 1rem;
  line-height: 1.5;
}

.product h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.product p {
  color: var(--muted);
  line-height: 1.52;
  margin-bottom: 0.25rem;
}

.product-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  padding: 0.34rem 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.product .button {
  margin-top: 0.4rem;
  width: fit-content;
  max-width: 100%;
  align-self: center;
  text-align: center;
}

.product-loading,
.product-error,
.product-empty {
  grid-column: 1 / -1;
  min-height: 160px;
  justify-content: center;
}

.product-loading .product-body,
.product-error .product-body,
.product-empty .product-body {
  justify-content: center;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
  align-items: stretch;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.3rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.feature-card h2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.62;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.point {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.point strong {
  display: block;
  margin-bottom: 0.4rem;
}

.point span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.93rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.step-num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(215, 170, 85, 0.16);
  color: var(--gold-2);
  font-weight: 1000;
}

.step h3 {
  margin-bottom: 0.45rem;
}

.step p {
  color: var(--muted);
  line-height: 1.52;
  margin-bottom: 0;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 1.5rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.cta {
  text-align: center;
  border: 1px solid rgba(215, 170, 85, 0.24);
  border-radius: calc(var(--radius-xl) + 10px);
  background:
    radial-gradient(circle at center top, rgba(215, 170, 85, 0.22), transparent 48%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.cta h2 {
  margin: 0 auto 1rem;
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.cta p {
  margin: 0 auto 1.6rem;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.6;
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 3vw, 2rem) 3rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .hero,
  .feature-band,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 430px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 0.85rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .announcement {
    font-size: 0.78rem;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-stat-row,
  .product-grid,
  .feature-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 230px;
  }

  .floating-note {
    left: 0.5rem;
    right: 0.5rem;
    max-width: none;
  }

  footer {
    display: block;
  }
}
