:root {
  --bg: #030303;
  --panel: #111111;
  --panel-soft: #181818;
  --panel-bright: #23201a;
  --line: rgba(245, 198, 112, 0.2);
  --line-strong: rgba(245, 198, 112, 0.46);
  --gold: #f4c46b;
  --gold-strong: #ffd98a;
  --gold-soft: rgba(244, 196, 107, 0.16);
  --red: #d71920;
  --white: #f7f2e8;
  --muted: #b4aa99;
  --muted-2: #7f776c;
  --green: #29d787;
  --orange: #ff9f2f;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 196, 107, 0.14), transparent 24rem),
    radial-gradient(circle at 92% 12%, rgba(215, 25, 32, 0.12), transparent 22rem),
    linear-gradient(180deg, #050505 0%, #080706 52%, #020202 100%);
  font-family: "Inter", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.6;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark__logo {
  width: 148px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 14px rgba(198, 226, 255, 0.22));
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
}

.brand-mark small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-strong);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.header-cta,
.primary-button {
  color: #090806;
  background: linear-gradient(135deg, var(--gold-strong), #b98735);
  box-shadow: 0 10px 30px rgba(244, 196, 107, 0.22);
}

.secondary-button {
  color: var(--gold-strong);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

main {
  overflow: hidden;
}

.top-video-section {
  position: relative;
  min-height: clamp(360px, 72vh, 820px);
  z-index: 1;
  overflow: visible;
  background: #000;
  isolation: isolate;
}

.top-video {
  display: block;
  width: 100%;
  min-height: inherit;
  height: clamp(360px, 72vh, 820px);
  object-fit: cover;
  object-position: center;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 8vw, 98px) clamp(18px, 5vw, 72px);
}

.hero-bg,
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(244, 196, 107, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 196, 107, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, black 0%, transparent 88%);
}

.hero-plate {
  position: absolute;
  border: 1px solid rgba(244, 196, 107, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(244, 196, 107, 0.02));
  transform: skewX(-18deg);
}

.hero-plate--one {
  top: 16%;
  right: 7%;
  width: 28vw;
  height: 46vh;
}

.hero-plate--two {
  bottom: 10%;
  left: 48%;
  width: 22vw;
  height: 28vh;
}

.hero-content,
.hero-product {
  position: relative;
  z-index: 1;
}

.hero-logo {
  display: block;
  width: min(520px, 76vw);
  margin: 0 0 28px;
  filter:
    drop-shadow(0 0 24px rgba(187, 219, 255, 0.18))
    drop-shadow(0 14px 44px rgba(0, 0, 0, 0.48));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.4vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-line--gold {
  color: var(--gold-strong);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 130px));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats dt {
  color: var(--gold-strong);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-product {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.product-stage {
  position: relative;
  width: min(82vw, 520px);
  aspect-ratio: 0.82;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(244, 196, 107, 0.16), rgba(0, 0, 0, 0.22));
  box-shadow:
    inset 0 0 80px rgba(244, 196, 107, 0.08),
    0 40px 100px rgba(0, 0, 0, 0.55);
  transform: perspective(900px) rotateY(-10deg) rotateX(3deg);
}

.product-stage::before,
.product-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(244, 196, 107, 0.28);
}

.product-stage::before {
  inset: 34px;
}

.product-stage::after {
  right: 44px;
  bottom: 44px;
  width: 44%;
  height: 34%;
  background: radial-gradient(circle, rgba(244, 196, 107, 0.4), transparent 64%);
}

.product-stage__image {
  position: absolute;
  top: 7%;
  left: 7%;
  width: 86%;
  height: 86%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  opacity: 0.78;
  box-shadow: inset 0 0 34px rgba(244, 196, 107, 0.22);
}

.product-stage__chip {
  position: absolute;
  left: 10%;
  bottom: 10%;
  padding: 10px 13px;
  color: #080806;
  background: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.story-section,
.elements-section,
.highlight-section,
.products-section,
.offer-section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(244, 196, 107, 0.08), transparent 48%),
    #050505;
}

.story-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
}

.section-heading {
  max-width: 920px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 24px;
}

.section-heading--split p:last-child {
  max-width: 420px;
  color: var(--muted);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.category-tab {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.element-showcase {
  position: relative;
  aspect-ratio: 1.46;
  min-height: 430px;
  max-height: 620px;
  margin: 34px 0 30px;
  border: 1px solid rgba(180, 210, 238, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 66% 56%, rgba(160, 183, 204, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(22, 29, 36, 0.96), rgba(8, 10, 13, 0.98) 54%, rgba(7, 8, 10, 1));
  overflow: hidden;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.8), var(--shadow);
}

.element-showcase::before,
.element-showcase::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  border: 1px solid rgba(207, 222, 235, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.element-showcase::before {
  top: -48%;
  height: 76%;
  box-shadow:
    0 18px 0 rgba(255, 255, 255, 0.035),
    0 42px 0 rgba(255, 255, 255, 0.025);
}

.element-showcase::after {
  bottom: 8%;
  left: 14%;
  right: 8%;
  height: 18%;
  border-color: rgba(225, 231, 237, 0.22);
  transform: perspective(620px) rotateX(64deg);
}

.element-tile {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 120px;
  border: 1px solid rgba(235, 242, 248, 0.22);
  border-radius: 8px;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.element-tile:hover,
.element-tile:focus-visible {
  z-index: 10;
  transform: translateY(-18px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.56),
    0 0 36px rgba(244, 196, 107, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  outline: none;
}

.element-tile.is-active {
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(244, 196, 107, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.element-tile.is-active:hover,
.element-tile.is-active:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.56),
    0 0 36px rgba(244, 196, 107, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.element-tile__label {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.element-tile strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.92;
}

.element-tile--black {
  z-index: 1;
  top: 18%;
  left: 7%;
  width: 47%;
  min-width: 0;
  height: 48%;
  border-color: rgba(218, 232, 244, 0.34);
  background:
    linear-gradient(145deg, rgba(24, 31, 38, 0.74), rgba(7, 9, 12, 0.92)),
    rgba(13, 16, 20, 0.82);
  transform: translateY(-14px);
  box-shadow:
    0 42px 86px rgba(0, 0, 0, 0.66),
    0 16px 30px rgba(85, 140, 190, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.element-tile--black::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -20px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.66), transparent 68%);
  pointer-events: none;
}

.element-tile--black:hover,
.element-tile--black:focus-visible {
  transform: translateY(-28px) scale(1.045);
  border-color: rgba(233, 243, 252, 0.72);
  box-shadow:
    0 54px 110px rgba(0, 0, 0, 0.72),
    0 0 42px rgba(142, 190, 230, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.element-tile--black.is-active {
  border-color: rgba(233, 243, 252, 0.58);
  box-shadow:
    0 46px 92px rgba(0, 0, 0, 0.66),
    0 0 32px rgba(142, 190, 230, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07);
}

.element-tile--black.is-active:hover,
.element-tile--black.is-active:focus-visible {
  transform: translateY(-28px) scale(1.045);
  border-color: rgba(233, 243, 252, 0.72);
  box-shadow:
    0 54px 110px rgba(0, 0, 0, 0.72),
    0 0 42px rgba(142, 190, 230, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.element-tile--red {
  z-index: 2;
  bottom: 10%;
  left: 7%;
  width: 36%;
  min-width: 0;
  height: 26%;
  border-left: 6px solid #ff2635;
  background: linear-gradient(135deg, rgba(25, 25, 28, 0.9), rgba(255, 38, 53, 0.08));
  transform: translateY(-3px);
  justify-content: center;
}

.element-tile--crystal {
  z-index: 3;
  top: 8%;
  left: 43%;
  width: 25%;
  min-width: 0;
  height: 39%;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04)),
    rgba(28, 32, 36, 0.48);
}

.element-tile--gold {
  z-index: 4;
  bottom: 10%;
  left: 35%;
  width: 24%;
  min-width: 0;
  height: 28%;
  color: #050505;
  border-color: rgba(245, 210, 88, 0.7);
  background: linear-gradient(145deg, #efca45, #bd961f);
}

.category-tab.is-active {
  border-color: var(--line-strong);
  color: var(--gold-strong);
  background: linear-gradient(135deg, rgba(244, 196, 107, 0.18), rgba(255, 255, 255, 0.04));
}

.element-detail {
  display: block;
  min-height: 0;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 196, 107, 0.08), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.element-detail p {
  color: var(--muted);
  max-width: 1020px;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.element-detail h3 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: 0;
}

.element-detail .eyebrow {
  font-size: 0.92rem;
}

.highlight-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #070707;
}

.highlight-section .section-heading .eyebrow {
  margin-bottom: 28px;
  font-size: clamp(1.3rem, 2.8vw, 2.6rem);
  letter-spacing: 0.18em;
}

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

.highlight-card {
  color: inherit;
  text-align: left;
  cursor: pointer;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 196, 107, 0.1), transparent 46%),
    var(--panel-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.highlight-card:hover,
.highlight-card:focus-visible {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(244, 196, 107, 0.16), rgba(255, 255, 255, 0.035) 52%),
    var(--panel-soft);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  outline: none;
}

.highlight-card--large {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.highlight-card p {
  color: var(--muted);
}

.highlight-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.highlight-card p:not(.eyebrow) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.text-link {
  color: var(--gold-strong);
  font-weight: 800;
}

.products-section {
  background:
    linear-gradient(180deg, #050505 0%, #0b0906 100%);
}

.category-tab {
  padding: 11px 16px;
  font-weight: 800;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.product-card--available .product-visual img {
  mix-blend-mode: normal;
  filter:
    brightness(1.08)
    contrast(1.06)
    saturate(1.08)
    drop-shadow(0 20px 34px rgba(244, 196, 107, 0.18));
}

.product-card--coming {
  border-color: rgba(245, 198, 112, 0.3);
  background:
    linear-gradient(145deg, rgba(244, 196, 107, 0.06), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(244, 196, 107, 0.26), transparent 38%),
    linear-gradient(145deg, #191919, #050505);
}

.product-visual img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 26px;
  background: transparent;
}

.product-visual::after {
  content: attr(data-code);
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: rgba(247, 242, 232, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border: 1px solid rgba(244, 196, 107, 0.28);
  border-radius: 999px;
  color: var(--gold-strong);
  background: rgba(0, 0, 0, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
}

.badge--gift {
  color: #090806;
  background: var(--gold-strong);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-category {
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.product-body h3 {
  min-height: 92px;
  margin-bottom: 12px;
}

.product-description {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-bonus {
  margin: 0 0 12px;
  border-left: 3px solid var(--gold-strong);
  padding: 8px 10px;
  color: var(--gold-strong);
  background: rgba(244, 196, 107, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.price {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.stock::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.stock--preorder::before {
  background: var(--green);
}

.stock--coming::before {
  background: var(--gold-strong);
}

.buy-button {
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  margin-top: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--gold-strong);
  font-weight: 900;
}

.buy-button:hover,
.buy-button:focus-visible {
  color: #090806;
  background: var(--gold-strong);
}

.buy-button--disabled,
.buy-button--disabled:hover,
.buy-button--disabled:focus-visible {
  color: var(--gold-strong);
  background: rgba(244, 196, 107, 0.08);
  cursor: default;
  opacity: 0.86;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 50%, rgba(244, 196, 107, 0.22), transparent 22rem),
    linear-gradient(135deg, rgba(244, 196, 107, 0.12), rgba(215, 25, 32, 0.1));
}

.offer-section p {
  max-width: 820px;
  color: var(--muted);
}

.offer-list {
  max-width: 900px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.offer-list li + li {
  margin-top: 8px;
}

.armoury-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(72px, 8vw, 118px) 0 clamp(70px, 8vw, 120px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.96), rgba(0, 0, 0, 1)),
    #000;
}

.armoury-section::before {
  position: absolute;
  inset: 0 clamp(18px, 5vw, 72px);
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: clamp(92px, 15vw, 180px) clamp(92px, 15vw, 180px);
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  content: "";
}

.armoury-copy {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px);
  text-align: center;
}

.armoury-copy h2 {
  max-width: 1140px;
  margin-inline: auto;
  font-size: clamp(2.6rem, 5.8vw, 5.4rem);
  line-height: 1.05;
}

.armoury-copy p:not(.eyebrow) {
  max-width: 980px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  font-weight: 700;
}

.armoury-copy .eyebrow {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.armoury-carousel {
  position: relative;
  z-index: 1;
  margin-top: clamp(36px, 5vw, 66px);
}

.armoury-track {
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: max(clamp(18px, 5vw, 72px), calc((100vw - 1180px) / 2));
  scroll-snap-type: x mandatory;
  padding: 16px max(clamp(18px, 5vw, 72px), calc((100vw - 1180px) / 2)) 34px;
  scrollbar-width: none;
}

.armoury-track::-webkit-scrollbar {
  display: none;
}

.armoury-slide {
  flex: 0 0 min(84vw, 1320px);
  overflow: hidden;
  border: 1px solid rgba(245, 198, 112, 0.2);
  border-radius: var(--radius);
  background: #080808;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.7),
    0 0 42px rgba(244, 196, 107, 0.08);
  scroll-snap-align: center;
}

.armoury-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 1.86;
  object-fit: cover;
}

.armoury-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #0b0905;
  background: linear-gradient(135deg, var(--white), var(--gold-strong));
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.armoury-control:hover,
.armoury-control:focus-visible {
  transform: translateY(-50%) scale(1.08);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.52),
    0 0 28px rgba(244, 196, 107, 0.22);
  outline: none;
}

.armoury-control span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  transform: translateY(-1px);
  font-family: Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.armoury-control--prev {
  left: clamp(16px, 5vw, 92px);
}

.armoury-control--next {
  right: clamp(16px, 5vw, 92px);
}

.armoury-dots {
  display: flex;
  position: relative;
  z-index: 2;
  justify-content: center;
  gap: 14px;
  min-height: 18px;
}

.armoury-dots button {
  width: 13px;
  height: 13px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition:
    width 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.armoury-dots button:hover,
.armoury-dots button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.armoury-dots button.is-active {
  width: 68px;
  background: var(--gold-strong);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #020202;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-strong);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .product-grid,
  .highlight-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-product {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-mark__logo {
    width: 118px;
  }

  .brand-mark__copy {
    display: none;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.2rem);
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-stats,
  .story-section,
  .element-detail,
  .offer-section {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: start;
    flex-direction: column;
  }

  .product-grid,
  .highlight-layout {
    grid-template-columns: 1fr;
  }

  .highlight-card--large {
    grid-column: auto;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .armoury-section {
    min-height: auto;
    padding-block: 58px 72px;
  }

  .armoury-copy {
    text-align: left;
  }

  .armoury-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .armoury-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .armoury-track {
    gap: 14px;
    scroll-padding-inline: 18px;
    padding-inline: 18px;
    padding-bottom: 28px;
  }

  .armoury-slide {
    flex-basis: 86vw;
  }

  .armoury-control {
    width: 44px;
    height: 44px;
  }

  .armoury-control span {
    font-size: 2.1rem;
  }

  .armoury-control--prev {
    left: 12px;
  }

  .armoury-control--next {
    right: 12px;
  }

  .armoury-dots {
    gap: 10px;
  }

  .armoury-dots button.is-active {
    width: 48px;
  }

  .element-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    aspect-ratio: auto;
    min-height: auto;
    padding: 16px;
  }

  .element-tile,
  .element-tile--black,
  .element-tile--red,
  .element-tile--crystal,
  .element-tile--gold {
    position: relative;
    inset: auto;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 124px;
    align-items: start;
  }
}
