:root {
  color-scheme: dark;

  --background: #05030b;
  --background-soft: #0d0718;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(198, 165, 255, 0.35);

  --text: #ffffff;
  --muted: #bbb3ca;
  --muted-light: #d7cfe2;

  --purple: #9b5cff;
  --purple-dark: #6d32c9;
  --purple-light: #c6a5ff;
  --purple-pale: #eadcff;

  --header-height: 84px;
  --content-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;

  color: var(--text);
  background: var(--background);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  -webkit-font-smoothing: antialiased;
}

body.navigation-is-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 54px;
  padding: 0 26px;

  border: 1px solid var(--border);
  border-radius: 999px;

  font-weight: 750;
  line-height: 1;

  cursor: pointer;

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: #0a0410;
  border-color: transparent;

  background:
    linear-gradient(
      135deg,
      var(--purple-light),
      var(--purple)
    );

  box-shadow:
    0 16px 50px rgba(155, 92, 255, 0.22);
}

.button--primary:hover {
  box-shadow:
    0 20px 60px rgba(155, 92, 255, 0.34);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.button--secondary:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.08);
}

.button--light {
  color: #140922;
  border-color: transparent;
  background: #ffffff;
}

.section-label {
  margin: 0 0 16px;

  color: var(--purple-light);

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================================================
   LANDING PAGE
   ========================================================= */

.landing-page {
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(118, 54, 210, 0.26),
      transparent 44%
    ),
    var(--background);
}

.landing-hero {
  position: relative;

  display: grid;
  place-items: center;

  min-height: 100svh;
  padding: 48px 24px 82px;

  overflow: hidden;
  isolation: isolate;
}

.landing-hero::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -3;

  background:
    linear-gradient(
      180deg,
      rgba(198, 165, 255, 0.07),
      transparent 22%
    );
}

.landing-hero__glow {
  position: absolute;
  z-index: -2;

  width: min(620px, 90vw);
  aspect-ratio: 1;

  border-radius: 50%;

  background: rgba(145, 74, 255, 0.2);
  filter: blur(125px);

  transition:
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 600ms ease;
}

.landing-hero__content {
  width: min(880px, 100%);
  text-align: center;

  transition:
    transform 700ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 500ms ease,
    filter 600ms ease;
}

.landing-hero__eyebrow {
  margin: 0 0 20px;

  color: var(--purple-light);

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.landing-hero__title {
  margin: 0;

  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.landing-hero__title span {
  display: block;

  color: var(--purple-light);
}

.landing-hero__description {
  max-width: 720px;
  margin: 30px auto 0;

  color: var(--muted-light);

  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.landing-hero__actions {
  display: flex;
  justify-content: center;

  margin-top: 36px;
}

.enter-army-button {
  min-width: 230px;
}

.enter-army-button__arrow {
  display: inline-block;

  font-size: 1.25rem;

  transition: transform 180ms ease;
}

.enter-army-button:hover .enter-army-button__arrow {
  transform: translateX(4px);
}

.landing-hero__origin {
  position: absolute;
  bottom: 26px;
  left: 50%;

  margin: 0;

  color: rgba(255, 255, 255, 0.43);

  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transform: translateX(-50%);
}

.army-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  overflow: hidden;

  visibility: hidden;
  pointer-events: none;
}

.army-transition__portal {
  position: absolute;

  width: 20px;
  height: 20px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      #ffffff 0%,
      var(--purple-light) 15%,
      var(--purple) 35%,
      #1d073a 62%,
      #05030b 76%
    );

  box-shadow:
    0 0 45px rgba(198, 165, 255, 0.8),
    0 0 140px rgba(155, 92, 255, 0.65);

  transform: scale(0);
}

.army-transition__content {
  position: relative;
  z-index: 2;

  display: grid;
  justify-items: center;
  gap: 18px;

  opacity: 0;
  transform: translateY(16px);
}

.army-transition__symbol {
  display: grid;
  place-items: center;

  width: 144px;
  height: 144px;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;

  font-size: 2.4rem;
  font-weight: 800;

  background: rgba(8, 3, 17, 0.48);
  backdrop-filter: blur(12px);
}

.army-transition__content p {
  margin: 0;

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-page.is-entering-army .landing-hero__content {
  opacity: 0;
  filter: blur(10px);
  transform: scale(0.88);
}

.landing-page.is-entering-army .landing-hero__glow {
  opacity: 0;
  transform: scale(1.8);
}

.landing-page.is-entering-army .army-transition {
  visibility: visible;
}

.landing-page.is-entering-army .army-transition__portal {
  animation:
    portal-open 900ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.landing-page.is-entering-army .army-transition__content {
  animation:
    portal-content 650ms 180ms ease forwards;
}

@keyframes portal-open {
  0% {
    transform: scale(0);
  }

  55% {
    transform: scale(24);
  }

  100% {
    transform: scale(120);
  }
}

@keyframes portal-content {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.9);
  }

  45% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: var(--header-height);
  padding: 0 max(24px, calc((100vw - var(--content-width)) / 2));

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(5, 3, 11, 0.76);
  backdrop-filter: blur(22px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-brand__mark {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border: 1px solid var(--border-strong);
  border-radius: 14px;

  color: #140922;
  background:
    linear-gradient(
      135deg,
      var(--purple-light),
      var(--purple)
    );

  font-weight: 900;
}

.site-brand__mark--image {
  padding: 0;

  overflow: hidden;

  color: transparent;
  background: #0b0613;
}

.site-brand__mark--image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.site-brand__text {
  display: flex;
  gap: 5px;

  font-size: 1.08rem;
}

.site-brand__text span {
  color: var(--purple-light);
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-navigation a {
  color: var(--muted-light);

  font-size: 0.92rem;
  font-weight: 650;

  transition: color 180ms ease;
}

.site-navigation a:hover {
  color: #ffffff;
}

.site-navigation__bnpi {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  min-height: 44px;
  padding: 0 18px;

  border: 1px solid var(--border-strong);
  border-radius: 999px;

  background: rgba(155, 92, 255, 0.1);
}

.navigation-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;

  width: 44px;
  height: 44px;
  padding: 12px;

  border: 1px solid var(--border);
  border-radius: 13px;

  background: var(--surface);
  cursor: pointer;
}

.navigation-toggle span {
  display: block;

  width: 100%;
  height: 2px;

  border-radius: 999px;
  background: #ffffff;

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

/* =========================================================
   HOME HERO
   ========================================================= */

.home-page {
  background:
    radial-gradient(
      circle at 68% 14%,
      rgba(110, 44, 205, 0.17),
      transparent 34%
    ),
    var(--background);
}

.home-hero {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 72px;

  width: min(var(--content-width), calc(100% - 48px));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: 90px 0;

  isolation: isolate;
}

.home-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;

  overflow: hidden;
  pointer-events: none;
}

.home-hero__grid {
  position: absolute;
  inset: 0;

  opacity: 0.2;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.055) 1px,
      transparent 1px
    );

  background-size: 64px 64px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 28%,
      black 72%,
      transparent
    );
}

.home-hero__orb {
  position: absolute;

  border-radius: 50%;
  filter: blur(80px);
}

.home-hero__orb--one {
  top: 12%;
  right: 4%;

  width: 380px;
  height: 380px;

  background: rgba(155, 92, 255, 0.23);
}

.home-hero__orb--two {
  bottom: 5%;
  left: 15%;

  width: 260px;
  height: 260px;

  background: rgba(94, 46, 155, 0.13);
}

.home-hero__title {
  max-width: 760px;
  margin: 0;

  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.home-hero__title span {
  display: block;

  color: var(--purple-light);
}

.home-hero__description {
  max-width: 670px;
  margin: 30px 0 0;

  color: var(--muted-light);

  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 34px;
}

.home-hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 28px;

  color: var(--muted);

  font-size: 0.84rem;
}

.home-hero__trust-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #7cffb2;
  box-shadow: 0 0 18px rgba(124, 255, 178, 0.7);
}

.home-hero__visual {
  display: grid;
  place-items: center;
}

.bopi-showcase {
  position: relative;

  display: grid;
  place-items: center;

  width: min(100%, 480px);
  aspect-ratio: 0.9;

  border: 1px solid var(--border);
  border-radius: 42px;

  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.48);

  backdrop-filter: blur(20px);
}

.bopi-showcase__halo {
  position: absolute;

  width: 66%;
  aspect-ratio: 1;

  border: 1px solid rgba(198, 165, 255, 0.3);
  border-radius: 50%;

  box-shadow:
    0 0 80px rgba(155, 92, 255, 0.22),
    inset 0 0 60px rgba(155, 92, 255, 0.13);
}

.bopi-showcase__image {
  position: relative;
  z-index: 2;

  width: 82%;
  height: 86%;

  object-fit: contain;

  filter:
    drop-shadow(0 34px 36px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 36px rgba(155, 92, 255, 0.2));

  animation: bopi-showcase-float 5s ease-in-out infinite;
}

@keyframes bopi-showcase-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

.bopi-showcase__badge {
  position: absolute;
  z-index: 3;

  padding: 11px 16px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--muted-light);
  background: rgba(8, 4, 16, 0.82);
  backdrop-filter: blur(12px);

  font-size: 0.76rem;
  font-weight: 700;
}

.bopi-showcase__badge--top {
  top: 12%;
  right: -7%;
}

.bopi-showcase__badge--bottom {
  bottom: 13%;
  left: -9%;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.content-section {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.content-section--tokens {
  position: relative;
  padding-top: 64px;
  padding-bottom: 72px;
}

#about {
  padding-top: 88px;
  padding-bottom: 64px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 64px;

  margin-bottom: 40px;
}

.section-heading h2,
.wear-section h2,
.bnpi-section h2 {
  margin: 0;

  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin: 0;

  color: var(--muted);
  line-height: 1.75;
}

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

.feature-card {
  min-height: 250px;
  padding: 28px;

  border: 1px solid var(--border);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.018)
    );
}

.feature-card__number {
  display: inline-flex;

  margin-bottom: 48px;

  color: var(--purple-light);

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.feature-card h3 {
  margin: 0 0 14px;

  font-size: 1.32rem;
}

.feature-card p {
  margin: 0;

  color: var(--muted);
  line-height: 1.7;
}
/* =========================================================
   BNPI INTRODUCTION
   ========================================================= */

.bnpi-intro-section {
  position: relative;

  padding: 76px 24px;

  overflow: hidden;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(155, 92, 255, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 10% 78%,
      rgba(255, 188, 53, 0.07),
      transparent 28%
    ),
    #090512;
}

.bnpi-intro-section__inner {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.bnpi-intro-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 64px;

  margin-bottom: 40px;
}

.bnpi-intro-section__heading h2 {
  margin: 0;

  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.bnpi-intro-section__heading > p {
  margin: 0;

  color: var(--muted);
  line-height: 1.75;
}

.bnpi-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr);
  gap: 22px;
}

.bnpi-intro__main,
.pi-invitation {
  border: 1px solid var(--border);
  border-radius: 34px;
}

.bnpi-intro__main {
  padding: 42px;

  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(155, 92, 255, 0.14),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.018)
    );
}

.bnpi-intro__brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bnpi-intro__logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  width: 92px;
  height: 92px;

  border: 1px solid var(--border-strong);
  border-radius: 28px;

  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      rgba(155, 92, 255, 0.34),
      rgba(155, 92, 255, 0.08)
    );

  box-shadow:
    0 18px 50px rgba(155, 92, 255, 0.18);

  font-size: 1.5rem;
  font-weight: 900;
}

.bnpi-intro__logo strong {
  color: var(--purple-light);
}

.bnpi-intro__logo--image {
  width: 150px;
  height: 92px;
  padding: 12px;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(155, 92, 255, 0.08)
    );
}

.bnpi-intro__logo--image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.bnpi-mobile-notice__icon--image {
  width: 72px;
  height: 48px;
  padding: 6px;

  background: rgba(255, 255, 255, 0.045);
}

.bnpi-mobile-notice__icon--image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}
.bnpi-section__symbol--logo {
  width: min(100%, 310px);
  height: 190px;
  padding: 28px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(155, 92, 255, 0.12),
      transparent 70%
    );
}

.bnpi-section__symbol--logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}
.wear-bnpi-banner__symbol--logo {
  width: 150px;
  height: 88px;
  padding: 10px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.045);
}

.wear-bnpi-banner__symbol--logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.bnpi-intro__status {
  display: block;

  margin-bottom: 10px;

  color: var(--purple-light);

  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bnpi-intro__brand h3 {
  margin: 0;

  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.bnpi-intro__description {
  max-width: 760px;
  margin: 28px 0 32px;

  color: var(--muted);
  line-height: 1.75;
}

.bnpi-intro__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  margin-bottom: 32px;

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.bnpi-intro__features article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;

  min-height: 164px;
  padding: 22px;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bnpi-intro__features article > span {
  color: var(--purple-light);

  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.bnpi-intro__features strong {
  display: block;

  margin-bottom: 8px;

  font-size: 0.94rem;
}

.bnpi-intro__features p {
  margin: 0;

  color: var(--muted);

  font-size: 0.82rem;
  line-height: 1.6;
}

.pi-invitation {
  display: flex;
  flex-direction: column;

  padding: 36px;

  color: #170a27;

  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(255, 255, 255, 0.44),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #eadcff,
      #b884ff 62%,
      #9b5cff
    );

  box-shadow:
    0 32px 90px rgba(74, 27, 133, 0.25);
}

.pi-invitation__top {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 32px;

  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pi-invitation__symbol {
  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(23, 10, 39, 0.2);
  border-radius: 50%;

  color: #ffffff;
  background: #28113f;

  font-size: 1.5rem;
  font-weight: 850;
}

.pi-invitation h3 {
  margin: 0;

  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.pi-invitation > p {
  margin: 22px 0 26px;

  color: rgba(23, 10, 39, 0.76);
  line-height: 1.68;
}

.pi-invitation__code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 24px;
  padding: 16px 18px;

  border: 1px solid rgba(23, 10, 39, 0.18);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.28);
}

.pi-invitation__code span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pi-invitation__code strong {
  font-size: 1.08rem;
}

.pi-invitation .button--light {
  width: 100%;
  margin-top: auto;

  background: #ffffff;
}

.pi-invitation__note {
  margin: 16px 0 0 !important;

  color: rgba(23, 10, 39, 0.62) !important;

  font-size: 0.76rem;
  line-height: 1.55 !important;
}

.bnpi-mobile-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;

  margin-top: 22px;
  padding: 20px 22px;

  border: 1px solid var(--border-strong);
  border-radius: 22px;

  background: rgba(155, 92, 255, 0.055);
}

.bnpi-mobile-notice__icon {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border-radius: 14px;

  color: #140922;
  background:
    linear-gradient(
      135deg,
      var(--purple-light),
      var(--purple)
    );

  font-weight: 900;
}

.bnpi-mobile-notice p {
  margin: 5px 0 0;

  color: var(--muted);

  font-size: 0.84rem;
  line-height: 1.55;
}

.bnpi-mobile-notice > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--purple-light);

  font-weight: 800;
  white-space: nowrap;
}
.token-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.token-card {
  display: flex;
  flex-direction: column;

  min-width: 0;
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 34px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.018)
    );

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.22);

  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.token-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-strong);

  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.36);
}

.token-card__artwork {
  position: relative;

  display: grid;
  place-items: center;

  min-height: 470px;
  padding: 48px 36px 34px;

  overflow: hidden;
  isolation: isolate;

  border-bottom: 1px solid var(--border);
}

.token-card--ecosystem .token-card__artwork {
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(255, 196, 63, 0.19),
      transparent 46%
    ),
    radial-gradient(
      circle at 50% 15%,
      rgba(155, 92, 255, 0.24),
      transparent 58%
    ),
    #0b0613;
}

.token-card--solana .token-card__artwork {
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(31, 244, 211, 0.16),
      transparent 44%
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(155, 92, 255, 0.24),
      transparent 58%
    ),
    #070510;
}

.token-card__artwork-glow {
  position: absolute;
  z-index: -1;

  width: 62%;
  aspect-ratio: 1;

  border-radius: 50%;

  background: rgba(155, 92, 255, 0.22);
  filter: blur(65px);
}

.token-card__artwork img {
  position: relative;
  z-index: 2;

  width: min(88%, 390px);
  aspect-ratio: 1;

  object-fit: contain;

  filter:
    drop-shadow(0 30px 35px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 30px rgba(155, 92, 255, 0.18));

  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 420ms ease;
}

.token-card:hover .token-card__artwork img {
  transform: translateY(-7px) scale(1.035);

  filter:
    drop-shadow(0 38px 42px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 44px rgba(155, 92, 255, 0.27));
}

.token-card__badges {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.token-network-badge {
  display: inline-flex;
  align-items: center;

  min-height: 32px;
  padding: 0 12px;

  border: 1px solid rgba(198, 165, 255, 0.28);
  border-radius: 999px;

  color: var(--purple-pale);
  background: rgba(5, 3, 11, 0.72);
  backdrop-filter: blur(14px);

  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.token-network-badge--solana {
  color: #8effed;
  border-color: rgba(49, 255, 224, 0.28);
}

.status-badge--community {
  color: #e3d2ff;
  border-color: rgba(198, 165, 255, 0.34);
  background: rgba(155, 92, 255, 0.11);
}

.token-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;

  padding: 30px;
}

.token-card__identity {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;

  margin: 0;
}

.token-card__symbol {
  display: block;

  margin-bottom: 8px;

  color: var(--purple-light);

  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.token-card__identity h3 {
  margin: 0;

  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.token-card__type {
  flex: 0 0 auto;

  padding: 7px 10px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--muted-light);
  background: rgba(255, 255, 255, 0.045);

  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.token-card__description {
  margin: 24px 0;

  color: var(--muted);
  line-height: 1.72;
}

.token-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin-top: auto;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.token-feature-list span {
  display: grid;
  align-content: start;
  gap: 6px;

  min-width: 0;
  padding: 18px 14px;

  color: var(--muted);

  font-size: 0.76rem;
  line-height: 1.4;
}

.token-feature-list span:first-child {
  padding-left: 0;
}

.token-feature-list span + span {
  border-left: 1px solid var(--border);
}

.token-feature-list strong {
  color: var(--muted-light);

  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.token-card__actions {
  display: flex;

  margin-top: 26px;
}

.token-card__actions .button {
  width: 100%;
}

.token-expansion-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.48fr) minmax(0, 1fr);
  align-items: center;
  gap: 50px;

  margin-top: 22px;
  padding: 36px;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 30px;

  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(31, 244, 211, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 35% 30%,
      rgba(155, 92, 255, 0.1),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.025);
}

.token-expansion-card__visual {
  display: grid;
  place-items: center;

  min-height: 280px;

  border: 1px solid var(--border);
  border-radius: 26px;

  background:
    radial-gradient(
      circle,
      rgba(155, 92, 255, 0.18),
      transparent 64%
    ),
    rgba(5, 3, 11, 0.44);
}

.token-expansion-card__visual img {
  width: min(88%, 260px);

  object-fit: contain;

  filter:
    drop-shadow(0 26px 30px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 28px rgba(31, 244, 211, 0.12));
}

.token-expansion-card__content h3 {
  margin: 0;

  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.token-expansion-card__content > p:not(.section-label) {
  margin: 20px 0;

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

.contract-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;

  margin-top: 24px;
  padding: 16px;

  border: 1px solid var(--border);
  border-radius: 18px;

  background: rgba(5, 3, 11, 0.52);
}

.contract-preview > span {
  grid-column: 1 / -1;

  color: var(--muted);

  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contract-preview code {
  min-width: 0;
  overflow: hidden;

  color: var(--muted-light);

  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;

  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-preview button {
  min-width: 70px;
  padding: 8px 12px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--purple-light);
  background: rgba(155, 92, 255, 0.08);

  font-size: 0.76rem;
  font-weight: 800;

  cursor: pointer;

  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contract-preview button:hover {
  color: #ffffff;
  border-color: var(--border-strong);
  background: rgba(155, 92, 255, 0.15);
  transform: translateY(-1px);
}

.contract-preview button.is-copied {
  color: #a4ffca;
  border-color: rgba(124, 255, 178, 0.34);
  background: rgba(124, 255, 178, 0.08);
}

.token-expansion-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 26px;
}

.token-card__actions--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.token-expansion-card__note {
  margin-bottom: 0 !important;

  color: rgba(255, 255, 255, 0.48) !important;

  font-size: 0.79rem;
}

.security-notice {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  margin-top: 20px;
  padding: 22px 24px;

  border: 1px solid rgba(124, 255, 178, 0.18);
  border-radius: 22px;

  background: rgba(124, 255, 178, 0.045);
}

.security-notice__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  width: 36px;
  height: 36px;

  border-radius: 50%;

  color: #07130c;
  background: #8cffbc;

  font-weight: 900;
}

.security-notice p {
  margin: 6px 0 0;

  color: var(--muted);
  line-height: 1.6;
}

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

.bopi-card {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 30px;

  background: var(--surface);
}

.bopi-card__visual {
  display: grid;
  place-items: center;

  min-height: 330px;

  color: rgba(255, 255, 255, 0.42);

  background:
    radial-gradient(
      circle,
      rgba(155, 92, 255, 0.24),
      transparent 56%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.01)
    );

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bopi-card__content {
  padding: 24px;
}

.bopi-card__content > span {
  color: var(--purple-light);

  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bopi-card h3 {
  margin: 10px 0 8px;

  font-size: 1.3rem;
}

.bopi-card p {
  margin: 0;

  color: var(--muted);
  line-height: 1.6;
}

.section-action {
  display: flex;
  justify-content: center;

  margin-top: 28px;
}

/* =========================================================
   BOPI LIFE
   ========================================================= */

.bopi-life-section {
  position: relative;
  padding-top: 72px;
  padding-bottom: 56px;
}

.bopi-life-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;

  padding: 56px;

  border: 1px solid var(--border);
  border-radius: 42px;

  background:
    radial-gradient(
      circle at 18% 48%,
      rgba(155, 92, 255, 0.18),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.018)
    );

  overflow: hidden;
}

.bopi-life-feature__visual {
  position: relative;

  display: grid;
  place-items: center;

  min-height: 520px;

  border: 1px solid rgba(198, 165, 255, 0.16);
  border-radius: 34px;

  background:
    linear-gradient(
      180deg,
      rgba(198, 165, 255, 0.09),
      rgba(155, 92, 255, 0.025)
    );

  isolation: isolate;
}

.bopi-life-feature__glow {
  position: absolute;
  z-index: -1;

  width: 72%;
  aspect-ratio: 1;

  border-radius: 50%;

  background: rgba(155, 92, 255, 0.22);
  filter: blur(64px);
}

.bopi-life-feature__visual img {
  width: 88%;
  height: 470px;

  object-fit: contain;

  filter:
    drop-shadow(0 36px 40px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 35px rgba(155, 92, 255, 0.2));
}

.ecosystem-chip {
  position: absolute;
  right: 20px;
  bottom: 20px;

  padding: 10px 14px;

  border: 1px solid var(--border-strong);
  border-radius: 999px;

  color: var(--purple-pale);
  background: rgba(8, 4, 16, 0.82);
  backdrop-filter: blur(14px);

  font-size: 0.72rem;
  font-weight: 750;
}

.bopi-life-feature__content h3 {
  max-width: 570px;
  margin: 0;

  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.bopi-life-feature__content > p:not(.section-label) {
  margin: 24px 0 30px;

  color: var(--muted);
  line-height: 1.75;
}

.experience-list {
  display: grid;
  gap: 0;

  margin: 0 0 34px;
  padding: 0;

  list-style: none;

  border-top: 1px solid var(--border);
}

.experience-list li {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 16px 0;

  border-bottom: 1px solid var(--border);

  color: var(--muted-light);

  font-size: 0.92rem;
}

.experience-list span {
  color: var(--purple-light);

  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.subsection-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 64px;

  margin: 78px 0 34px;
}

.subsection-heading h3 {
  margin: 0;

  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.subsection-heading > p {
  margin: 0;

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

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

.skin-card {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 28px;

  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.018)
    );

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.skin-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-strong);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.skin-card__visual {
  position: relative;

  display: grid;
  place-items: center;

  min-height: 310px;
  padding: 18px;

  background:
    radial-gradient(
      circle,
      rgba(155, 92, 255, 0.2),
      transparent 64%
    );
}

.skin-card__visual img {
  width: 100%;
  height: 275px;

  object-fit: contain;

  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.36));
}

.skin-card__boost {
  position: absolute;
  top: 16px;
  right: 16px;

  padding: 8px 11px;

  border: 1px solid rgba(124, 255, 178, 0.3);
  border-radius: 999px;

  color: #a4ffca;
  background: rgba(5, 20, 12, 0.68);
  backdrop-filter: blur(12px);

  font-size: 0.68rem;
  font-weight: 850;
}

.skin-card__boost--legendary {
  color: #fff0b6;
  border-color: rgba(255, 221, 121, 0.35);
  background: rgba(34, 25, 2, 0.68);
}
.skin-card__boost--genesis {
  color: #eadcff;
  border-color: rgba(198, 165, 255, 0.46);

  background:
    linear-gradient(
      135deg,
      rgba(155, 92, 255, 0.32),
      rgba(61, 18, 112, 0.78)
    );

  box-shadow:
    0 0 24px rgba(155, 92, 255, 0.24);
}
.skin-card__content {
  min-height: 170px;
  padding: 22px;

  border-top: 1px solid var(--border);
}

.skin-card__content > span {
  color: var(--purple-light);

  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skin-card__content h3 {
  margin: 9px 0 8px;

  font-size: 1.24rem;
}

.skin-card__content p {
  margin: 0;

  color: var(--muted);

  font-size: 0.88rem;
  line-height: 1.6;
}

.skin-card--galaxy {
  grid-column: span 2;

  border-color: rgba(255, 255, 255, 0.23);

  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(220, 211, 255, 0.14),
      transparent 45%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(155, 92, 255, 0.025)
    );
}

.skin-card--galaxy .skin-card__visual img {
  height: 340px;
}

.exclusive-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;

  margin-top: 22px;
  padding: 22px 24px;

  border: 1px solid var(--border-strong);
  border-radius: 24px;

  background: rgba(155, 92, 255, 0.055);
}

.exclusive-notice__mark {
  display: grid;
  place-items: center;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  color: #140922;
  background:
    linear-gradient(
      135deg,
      var(--purple-light),
      var(--purple)
    );

  font-size: 1.35rem;
  font-weight: 850;
}

.exclusive-notice p {
  margin: 5px 0 0;

  color: var(--muted);

  font-size: 0.88rem;
  line-height: 1.55;
}

.exclusive-notice > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--purple-light);

  font-weight: 800;
}

/* =========================================================
   STREAK JOURNEY
   ========================================================= */

.streak-section {
  padding-top: 64px;
  padding-bottom: 72px;
}

.streak-timeline {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.streak-timeline::before {
  content: "";

  position: absolute;
  top: 44%;
  right: 5%;
  left: 5%;
  z-index: -1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(198, 165, 255, 0.5),
      transparent
    );
}
.wear-hero__visual--artwork {
  position: relative;

  display: grid;
  place-items: center;

  overflow: visible;
}

.wear-hero__artwork-frame {
  width: min(100%, 520px);
  aspect-ratio: 1;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 42px;

  background: #090512;

  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.46),
    0 0 70px rgba(155, 92, 255, 0.15);
}

.wear-hero__artwork-frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

@media (max-width: 640px) {
  .wear-hero__artwork-frame {
    border-radius: 28px;
  }
}
.streak-card {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 28px;

  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.018)
    );

  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.streak-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-strong);
}

.streak-card__image {
  position: relative;

  overflow: hidden;

  aspect-ratio: 1 / 1;

  background:
    radial-gradient(
      circle,
      rgba(155, 92, 255, 0.18),
      transparent 68%
    );
}

.streak-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 420ms ease;
}

.streak-card:hover .streak-card__image img {
  transform: scale(1.045);
}

.streak-card__step {
  position: absolute;
  top: 14px;
  left: 14px;

  display: grid;
  place-items: center;

  width: 36px;
  height: 36px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  background: rgba(5, 3, 11, 0.72);
  backdrop-filter: blur(12px);

  font-size: 0.67rem;
  font-weight: 850;
}

.streak-card__ultimate-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;

  padding: 8px 11px;

  border: 1px solid rgba(255, 221, 121, 0.36);
  border-radius: 999px;

  color: #fff0b6;
  background: rgba(34, 25, 2, 0.74);
  backdrop-filter: blur(12px);

  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.streak-card__content {
  min-height: 168px;
  padding: 20px;
}

.streak-card__content > span {
  color: var(--purple-light);

  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.streak-card__content h3 {
  margin: 9px 0 8px;

  font-size: 1.3rem;
}

.streak-card__content p {
  margin: 0;

  color: var(--muted);

  font-size: 0.84rem;
  line-height: 1.55;
}

.streak-card--ultimate {
  border-color: rgba(255, 221, 121, 0.26);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 221, 121, 0.09),
      transparent 50%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.018)
    );
}

/* =========================================================
   BOPI GAMES
   ========================================================= */

.games-section {
  position: relative;

  padding: 80px 24px;

  overflow: hidden;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(155, 92, 255, 0.16),
      transparent 40%
    ),
    #090512;
}

.games-section__inner {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

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

.game-card {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 30px;

  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.018)
    );

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.game-card__cover {
  position: relative;

  overflow: hidden;

  aspect-ratio: 1 / 1;

  background: var(--background-soft);
}

.game-card__cover img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 480ms ease;
}

.game-card:hover .game-card__cover img {
  transform: scale(1.055);
}

.game-card__status {
  position: absolute;
  top: 14px;
  right: 14px;

  padding: 8px 11px;

  border: 1px solid var(--border-strong);
  border-radius: 999px;

  color: var(--purple-pale);
  background: rgba(5, 3, 11, 0.74);
  backdrop-filter: blur(14px);

  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-card__content {
  display: flex;
  flex-direction: column;

  min-height: 190px;
  padding: 23px;
}

.game-card__content > span {
  color: var(--purple-light);

  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-card__content h3 {
  margin: 10px 0 9px;

  font-size: 1.34rem;
}

.game-card__content p {
  margin: auto 0 0;

  color: var(--muted);
  line-height: 1.62;
}

.games-section__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  margin-top: 30px;
  padding-top: 26px;

  border-top: 1px solid var(--border);
}

.games-section__footer p {
  max-width: 640px;
  margin: 0;

  color: var(--muted);

  font-size: 0.88rem;
  line-height: 1.6;
}

/* =========================================================
   WEAR + BNPI
   ========================================================= */

.wear-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.65fr);
  align-items: center;
  gap: 60px;

  width: min(var(--content-width), calc(100% - 48px));
  margin: 64px auto 0;
  padding: 64px 70px; 

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;

  color: #160925;
  background:
    linear-gradient(
      135deg,
      #d8c0ff,
      #9b5cff
    );
}

.wear-section__image-frame::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(5, 3, 11, 0.74)
    );

  pointer-events: none;
}

.wear-section__image-frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.wear-section__visual--official:hover .wear-section__image-frame {
  transform: rotate(0deg) scale(1.025);

  box-shadow:
    0 40px 100px rgba(34, 7, 69, 0.52);
}

.wear-section .section-label {
  color: rgba(22, 9, 37, 0.7);
}

.wear-section__content > p:not(.section-label) {
  max-width: 630px;
  margin: 24px 0 30px;

  color: rgba(22, 9, 37, 0.76);

  font-size: 1.08rem;
  line-height: 1.7;
}

.wear-section__visual {
  position: relative;

  min-height: 390px;
}

.wear-product {
  position: absolute;

  width: 250px;
  height: 310px;

  border-radius: 30px 30px 48px 48px;

  box-shadow:
    0 30px 60px rgba(32, 8, 58, 0.28);
}

.wear-product--back {
  top: 0;
  right: 0;

  background: #251534;

  transform: rotate(10deg);
}

.wear-product--front {
  bottom: 0;
  left: 10%;

  display: grid;
  place-items: center;

  color: #c6a5ff;
  background: #0d0814;

  font-size: 2.2rem;
  font-weight: 900;

  transform: rotate(-7deg);
}

.bnpi-section {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  align-items: center;
  justify-content: center;
  gap: 64px;

  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 96px;
}

.bnpi-section__symbol {
  display: grid;
  place-items: center;

  width: 230px;
  aspect-ratio: 1;

  border: 1px solid var(--border-strong);
  border-radius: 50%;

  color: var(--purple-light);

  background:
    radial-gradient(
      circle,
      rgba(155, 92, 255, 0.2),
      transparent 68%
    );

  box-shadow:
    0 0 90px rgba(155, 92, 255, 0.16);

  font-size: 6rem;
  font-weight: 800;
}

.bnpi-section__content > p:not(.section-label) {
  margin: 26px 0 32px;

  color: var(--muted);

  font-size: 1.08rem;
  line-height: 1.75;
}

/* =========================================================
   BOPI WEAR PAGE
   ========================================================= */
.wear-independence-notice {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto 28px;
  padding: 18px 20px;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.025);
}

.wear-independence-notice strong {
  display: block;

  margin-bottom: 6px;

  color: var(--purple-light);

  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wear-independence-notice p {
  margin: 0;

  color: var(--muted);

  font-size: 0.82rem;
  line-height: 1.6;
}

.wear-page {
  background:
    radial-gradient(
      circle at 75% 8%,
      rgba(155, 92, 255, 0.17),
      transparent 30%
    ),
    var(--background);
}

.wear-page .site-navigation a[aria-current="page"] {
  color: #ffffff;
}

.wear-hero {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: 72px;

  width: min(var(--content-width), calc(100% - 48px));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: 82px 0;

  isolation: isolate;
}

.wear-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;

  overflow: hidden;
  pointer-events: none;
}

.wear-hero__grid {
  position: absolute;
  inset: 0;

  opacity: 0.16;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );

  background-size: 64px 64px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 22%,
      #000 78%,
      transparent
    );
}

.wear-hero__glow {
  position: absolute;

  border-radius: 50%;
  filter: blur(90px);
}

.wear-hero__glow--one {
  top: 12%;
  right: 7%;

  width: 390px;
  height: 390px;

  background: rgba(155, 92, 255, 0.25);
}

.wear-hero__glow--two {
  bottom: 7%;
  left: 5%;

  width: 260px;
  height: 260px;

  background: rgba(198, 165, 255, 0.1);
}

.wear-hero__content h1 {
  margin: 0;

  font-size: clamp(3.8rem, 7.5vw, 7.5rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.wear-hero__content h1 span {
  display: block;

  color: var(--purple-light);
}

.wear-hero__content > p:not(.section-label) {
  max-width: 650px;
  margin: 30px 0 0;

  color: var(--muted-light);

  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.wear-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 34px;
}

.wear-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 28px;
}

.wear-hero__trust span {
  padding: 8px 11px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--muted);

  font-size: 0.7rem;
  font-weight: 750;
}

.wear-hero__visual {
  position: relative;

  min-height: 560px;
}

.wear-hero__product {
  position: absolute;

  display: grid;
  place-items: center;

  width: 310px;
  height: 410px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 46px 46px 70px 70px;

  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.45);
}

.wear-hero__product--back {
  top: 20px;
  right: 10px;

  color: rgba(255, 255, 255, 0.14);
  background: #251436;

  font-size: 3rem;
  font-weight: 900;

  transform: rotate(10deg);
}

.wear-hero__product--front {
  bottom: 18px;
  left: 14px;

  align-content: center;
  gap: 12px;

  color: #ffffff;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(155, 92, 255, 0.24),
      transparent 40%
    ),
    #0b0711;

  transform: rotate(-7deg);
}

.wear-hero__product-mark {
  display: grid;
  place-items: center;

  width: 100px;
  height: 100px;

  border-radius: 30px;

  color: #140922;
  background:
    linear-gradient(
      135deg,
      var(--purple-light),
      var(--purple)
    );

  font-size: 2.8rem;
  font-weight: 900;
}

.wear-hero__product--front strong {
  font-size: 1.5rem;
}

.wear-hero__product--front small {
  color: var(--muted);

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wear-hero__badge {
  position: absolute;
  z-index: 4;

  padding: 11px 15px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--muted-light);
  background: rgba(5, 3, 11, 0.82);
  backdrop-filter: blur(14px);

  font-size: 0.72rem;
  font-weight: 800;
}

.wear-hero__badge--top {
  top: 13%;
  left: 0;
}

.wear-hero__badge--bottom {
  right: 0;
  bottom: 15%;
}

.wear-announcement {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;

  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 22px;

  border: 1px solid var(--border-strong);
  border-radius: 22px;

  background: rgba(155, 92, 255, 0.055);
}

.wear-announcement__icon {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border-radius: 14px;

  color: #140922;
  background:
    linear-gradient(
      135deg,
      var(--purple-light),
      var(--purple)
    );

  font-weight: 900;
}

.wear-announcement p {
  margin: 5px 0 0;

  color: var(--muted);

  font-size: 0.84rem;
  line-height: 1.55;
}

.wear-announcement__status {
  padding: 8px 11px;

  border: 1px solid var(--border-strong);
  border-radius: 999px;

  color: var(--purple-light);

  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wear-products-section,
.wear-process-section {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0;
}

.wear-filter-bar {
  display: block;

  margin-bottom: 30px;
}

.wear-filter-bar__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.wear-filter-button,
.wear-cart-button {
  min-height: 44px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--muted-light);
  background: rgba(255, 255, 255, 0.035);

  font-weight: 750;
  cursor: pointer;

  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.wear-filter-button {
  padding: 0 17px;
}

.wear-filter-button:hover,
.wear-filter-button.is-active {
  color: #ffffff;
  border-color: var(--border-strong);
  background: rgba(155, 92, 255, 0.1);
}

.wear-cart-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 0 15px;
}

.wear-cart-button strong {
  display: grid;
  place-items: center;

  min-width: 24px;
  height: 24px;

  border-radius: 50%;

  color: #140922;
  background: var(--purple-light);

  font-size: 0.7rem;
}

.wear-product-grid {
  display: grid;
  gap: 72px;
}

.wear-collection-group {
  display: grid;
  gap: 30px;
}

.wear-collection-group__header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 54px;

  padding-bottom: 24px;

  border-bottom: 1px solid var(--border);
}

.wear-collection-group__header h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;

  margin: 0;

  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.wear-collection-group__header h3 span {
  color: var(--purple-light);

  font-size: 0.3em;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wear-collection-group__header > p {
  margin: 0;

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

.wear-collection-group__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.wear-shop-card {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.018)
    );

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.wear-shop-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-strong);

  box-shadow:
    0 32px 85px rgba(0, 0, 0, 0.34);
}

.wear-shop-card__visual {
  position: relative;

  display: grid;
  place-items: center;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-bottom: 1px solid var(--border);

  background:
    radial-gradient(
      circle,
      rgba(155, 92, 255, 0.2),
      transparent 58%
    ),
    #0a0611;
}

.wear-shop-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;

  padding: 8px 10px;

  border: 1px solid var(--border-strong);
  border-radius: 999px;

  color: var(--purple-light);
  background: rgba(5, 3, 11, 0.72);
  backdrop-filter: blur(12px);

  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wear-shop-card__placeholder {
  display: grid;
  place-items: center;

  width: 62%;
  height: 72%;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px 32px 48px 48px;

  color: var(--purple-light);
  background: #120a1c;

  box-shadow:
    0 26px 55px rgba(0, 0, 0, 0.36);

  transform: rotate(-4deg);
}

.wear-shop-card__placeholder--hoodie {
  background: #241330;
  transform: rotate(4deg);
}

.wear-shop-card__placeholder--cap {
  width: 62%;
  height: 46%;

  border-radius: 50% 50% 26px 26px;

  background: #0d0913;
  transform: rotate(-3deg);
}

.wear-shop-card__placeholder span {
  font-size: 2rem;
  font-weight: 900;
}

.wear-shop-card__placeholder small {
  color: var(--muted);

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wear-shop-card__view {
  position: absolute;
  right: 16px;
  bottom: 16px;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 10px 13px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--muted-light);
  background: rgba(5, 3, 11, 0.72);
  backdrop-filter: blur(12px);

  font-size: 0.7rem;
  font-weight: 800;
}

.wear-shop-card__content {
  padding: 23px;
}

.wear-shop-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.wear-shop-card__heading span {
  color: var(--purple-light);

  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wear-shop-card__heading h3 {
  margin: 8px 0 0;

  font-size: 1.28rem;
}

.wear-shop-card__heading > strong {
  flex: 0 0 auto;

  color: var(--muted-light);

  font-size: 0.88rem;
}

.wear-shop-card__heading > strong {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;

  text-align: right;
}

.wear-shop-card__price-prefix {
  color: var(--muted);

  font-size: 0.7rem;
  font-weight: 650;
  text-transform: none;
}

.wear-shop-card__content > p {
  margin: 18px 0;

  color: var(--muted);

  font-size: 0.87rem;
  line-height: 1.6;
}

.wear-shop-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  padding-top: 16px;

  border-top: 1px solid var(--border);
}

.wear-shop-card__meta span {
  padding: 7px 9px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--muted);

  font-size: 0.65rem;
  font-weight: 750;
}

.wear-drop-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 22px;

  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 82px;
}

.wear-drop-section__content,
.wear-drop-section__edition {
  border: 1px solid var(--border);
  border-radius: 34px;
}

.wear-drop-section__content {
  padding: 48px;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(155, 92, 255, 0.15),
      transparent 32%
    ),
    rgba(255, 255, 255, 0.025);
}

.wear-drop-section__content h2 {
  max-width: 770px;
  margin: 0;

  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.wear-drop-section__content > p:not(.section-label) {
  max-width: 740px;
  margin: 24px 0 32px;

  color: var(--muted);
  line-height: 1.75;
}

.wear-drop-section__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wear-drop-section__features > div {
  display: grid;
  gap: 8px;

  padding: 22px 18px;
}

.wear-drop-section__features > div:first-child {
  padding-left: 0;
}

.wear-drop-section__features > div + div {
  border-left: 1px solid var(--border);
}

.wear-drop-section__features strong {
  color: var(--purple-light);

  font-size: 1.7rem;
}

.wear-drop-section__features span {
  color: var(--muted);

  font-size: 0.75rem;
  line-height: 1.45;
}

.wear-drop-section__edition {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 34px;

  color: #170a27;

  background:
    linear-gradient(
      145deg,
      #eadcff,
      #b884ff 62%,
      #9b5cff
    );
}

.wear-drop-section__edition-label {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wear-drop-section__edition > strong {
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.wear-drop-section__edition p {
  margin: 0;

  color: rgba(23, 10, 39, 0.72);
  line-height: 1.65;
}

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

.wear-process-grid article {
  min-height: 260px;
  padding: 26px;

  border: 1px solid var(--border);
  border-radius: 27px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.016)
    );
}

.wear-process-grid article > span {
  display: block;

  margin-bottom: 56px;

  color: var(--purple-light);

  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.wear-process-grid h3 {
  margin: 0 0 12px;

  font-size: 1.2rem;
}

.wear-process-grid p {
  margin: 0;

  color: var(--muted);
  line-height: 1.65;
}
.wear-collection-group {
  position: relative;
}

.wear-collection-group::after {
  content: "Swipe to explore →";

  display: none;
}

@media (max-width: 640px) {
  .wear-collection-group::after {
    display: block;

    margin-top: -16px;

    color: rgba(255, 255, 255, 0.46);

    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}
.wear-bnpi-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;

  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto 88px;
  padding: 38px;

  border: 1px solid var(--border-strong);
  border-radius: 30px;

  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(155, 92, 255, 0.17),
      transparent 24%
    ),
    rgba(155, 92, 255, 0.04);
}

.wear-bnpi-banner__symbol {
  display: grid;
  place-items: center;

  width: 92px;
  height: 92px;

  border: 1px solid var(--border-strong);
  border-radius: 50%;

  color: var(--purple-light);
  background: rgba(155, 92, 255, 0.08);

  font-size: 2.8rem;
  font-weight: 850;
}

.wear-bnpi-banner h2 {
  margin: 0;

  font-size: clamp(2rem, 3.7vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.wear-bnpi-banner__content > p:not(.section-label) {
  margin: 18px 0 0;

  color: var(--muted);
  line-height: 1.65;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 30px;

  border-top: 1px solid var(--border);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding-bottom: 50px;
}

.site-footer__brand p {
  margin: 0;

  color: var(--muted);
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;

  padding: 45px 0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-footer__links > div {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer__links strong {
  margin-bottom: 6px;

  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__links a {
  width: fit-content;

  color: var(--muted);

  font-size: 0.9rem;
}

.site-footer__links a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;

  padding-top: 28px;

  color: rgba(255, 255, 255, 0.42);

  font-size: 0.76rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  .navigation-toggle {
    display: flex;
  }

  .site-navigation {
    position: fixed;
    top: var(--header-height);
    right: 18px;
    left: 18px;

    display: grid;
    align-content: start;
    gap: 0;

    padding: 16px;

    border: 1px solid var(--border);
    border-radius: 24px;

    background: rgba(9, 5, 17, 0.98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .site-navigation > a:not(
    .site-navigation__bnpi
  ):not(
    .site-navigation__orders
  ) {
    padding: 16px;
  }

  .site-navigation__orders {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;

    width: 100%;
    min-height: 66px;
    margin: 8px 0;
    padding: 10px 14px;

    border-color: rgba(198, 165, 255, 0.3);
    border-radius: 18px;

    background:
      linear-gradient(
        135deg,
        rgba(155, 92, 255, 0.16),
        rgba(198, 165, 255, 0.055)
      );
  }

  .site-navigation__orders-icon {
    width: 42px;
    height: 42px;

    border-radius: 13px;

    font-size: 1.15rem;
  }

  .site-navigation__orders-text small {
    display: block;
  }

  .site-navigation__orders-text strong {
    font-size: 0.98rem;
  }

  .site-navigation__orders-arrow {
    font-size: 1.15rem;
  }

  .site-navigation__bnpi {
    margin-top: 8px;
  }

  .navigation-is-open .site-navigation {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navigation-is-open .navigation-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navigation-is-open .navigation-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navigation-is-open .navigation-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

    .home-hero {
    grid-template-columns: 1fr;
    gap: 56px;

    min-height: auto;
    padding: 76px 0 84px;
    }
.content-section {
  padding: 64px 0;
}

#about {
  padding-top: 72px;
  padding-bottom: 56px;
}

.content-section--tokens {
  padding-top: 56px;
  padding-bottom: 64px;
}

.bopi-life-section {
  padding-top: 64px;
  padding-bottom: 52px;
}

.streak-section {
  padding-top: 56px;
  padding-bottom: 64px;
}

.games-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.wear-section {
  margin-top: 56px;
  margin-bottom: 0;
}
.wear-collection-group__header {
  grid-template-columns: 1fr;
  gap: 16px;
}

.wear-collection-group__products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bnpi-section {
  padding-top: 68px;
  padding-bottom: 82px;
}
  .home-hero__content {
    text-align: center;
  }

  .home-hero__description {
    margin-right: auto;
    margin-left: auto;
  }

  .home-hero__actions,
  .home-hero__trust {
    justify-content: center;
  }

  .bopi-showcase {
    width: min(100%, 520px);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-grid,
  .token-grid,
  .bopi-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card__number {
    margin-bottom: 45px;
  }

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

  .wear-section__visual {
    min-height: 360px;
  }

  .bnpi-section {
    grid-template-columns: 1fr;
    justify-items: center;

    text-align: center;
  }

.bopi-life-feature {
  grid-template-columns: 1fr;
}

.subsection-heading {
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.streak-card--ultimate {
  grid-column: span 2;
}

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

  .bnpi-section__content {
    display: grid;
    justify-items: center;
  }
.token-grid {
  grid-template-columns: 1fr;
}

.token-card__artwork {
  min-height: 520px;
}

.token-expansion-card {
  grid-template-columns: 1fr;
}

.token-expansion-card__visual {
  min-height: 340px;
}
.bnpi-intro-section {
  padding: 64px 24px;
}

.bnpi-intro-section__heading {
  grid-template-columns: 1fr;
  gap: 22px;
}

.bnpi-intro {
  grid-template-columns: 1fr;
}

.pi-invitation {
  min-height: 520px;
}
.wear-hero {
  grid-template-columns: 1fr;
  gap: 50px;

  min-height: auto;
  padding: 76px 0 84px;
}

.wear-hero__content {
  text-align: center;
}

.wear-hero__content > p:not(.section-label) {
  margin-right: auto;
  margin-left: auto;
}

.wear-hero__actions,
.wear-hero__trust {
  justify-content: center;
}

.wear-hero__visual {
  width: min(100%, 560px);
  min-height: 530px;
  margin: 0 auto;
}

.wear-product-grid {
 grid-template-columns: 1fr;
}

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

.wear-drop-section__edition {
  min-height: 420px;
}

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

.wear-bnpi-banner {
  grid-template-columns: auto minmax(0, 1fr);
}

.wear-bnpi-banner > .button {
  grid-column: 1 / -1;

  width: 100%;
}
.wear-product-dialog {
  grid-template-columns: 1fr;
}

.wear-product-dialog__gallery {
  border-right: 0;
  border-bottom: 1px solid var(--border);
}

.wear-product-dialog__content {
  min-height: 560px;
}
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 0 18px;
  }

  .site-brand__mark {
    width: 38px;
    height: 38px;
  }

  .landing-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .landing-hero__title {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .landing-hero__description {
    font-size: 1rem;
  }

  .enter-army-button {
    width: 100%;
    max-width: 340px;
  }

  .home-hero,
  .content-section,
  .wear-section,
  .bnpi-section,
  .site-footer {
    width: min(100% - 36px, var(--content-width));
  }

  .home-hero {
    padding-top: 70px;
  }

  .home-hero__title {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .home-hero__actions {
    display: grid;
  }

  .home-hero__actions .button {
    width: 100%;
  }

  .bopi-showcase {
    border-radius: 30px;
  }

  .bopi-showcase__badge--top {
    top: 6%;
    right: 4%;
  }

  .bopi-showcase__badge--bottom {
    bottom: 7%;
    left: 4%;
  }

.content-section {
  padding: 56px 0;
}

#about {
  padding-top: 62px;
  padding-bottom: 48px;
}

.content-section--tokens {
  padding-top: 48px;
  padding-bottom: 56px;
}

.bopi-life-section {
  padding-top: 56px;
  padding-bottom: 44px;
}

.streak-section {
  padding-top: 48px;
  padding-bottom: 56px;
}

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .wear-section h2,
  .bnpi-section h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .token-card {
    min-height: 360px;
  }

  .bopi-card__visual {
    min-height: 280px;
  }

    .wear-section {
    margin-top: 48px;
    margin-bottom: 0;
    padding: 42px 24px;
    border-radius: 30px;
    }

  .wear-section__visual {
    min-height: 310px;
  }

  .wear-product {
    width: 190px;
    height: 250px;
  }

    .bnpi-section {
    gap: 38px;
    padding: 60px 0 76px;
    }

  .bnpi-section__symbol {
    width: 170px;

    font-size: 4.6rem;
  }

  .site-footer__brand,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

    .bopi-life-feature {
    gap: 36px;
    padding: 24px;
    border-radius: 30px;
    }

    .bopi-life-feature__visual {
    min-height: 390px;
    }

    .bopi-life-feature__visual img {
    height: 355px;
    }

    .subsection-heading {
    margin-top: 58px;
    margin-bottom: 30px;
    }

    .skin-card--galaxy,
    .streak-card--ultimate {
    grid-column: auto;
    }

    .skin-card__visual {
    min-height: 340px;
    }

    .skin-card__visual img,
    .skin-card--galaxy .skin-card__visual img {
    height: 305px;
    }

    .exclusive-notice {
    grid-template-columns: auto 1fr;
    }

    .exclusive-notice > a {
    grid-column: 1 / -1;

    justify-content: center;

    min-height: 48px;

    border: 1px solid var(--border-strong);
    border-radius: 999px;
    }

    .games-section {
    padding: 60px 18px;
    }

    .games-section__footer {
    align-items: stretch;
    flex-direction: column;
    }

    .games-section__footer .button {
    width: 100%;
    }
.token-card {
  border-radius: 28px;
}

.token-card__artwork {
  min-height: 360px;
  padding: 55px 18px 24px;
}

.token-card__artwork img {
  width: min(92%, 310px);
}

.token-card__badges {
  top: 14px;
  right: 14px;
  left: 14px;
}

.token-network-badge,
.status-badge {
  font-size: 0.58rem;
}

.token-card__body {
  padding: 23px;
}

.token-card__identity {
  align-items: flex-start;
}

.token-feature-list {
  grid-template-columns: 1fr;
}

.token-feature-list span {
  padding: 14px 0;
}

.token-feature-list span + span {
  border-top: 1px solid var(--border);
  border-left: 0;
}

.token-expansion-card {
  gap: 28px;

  padding: 22px;
  border-radius: 26px;
}

.token-expansion-card__visual {
  min-height: 280px;
}

.contract-preview {
  grid-template-columns: 1fr;
}

.contract-preview button {
  width: 100%;
}

.token-expansion-card__actions,
.token-card__actions--split {
  grid-template-columns: 1fr;
}

.token-expansion-card__actions {
  display: grid;
}

.token-expansion-card__actions .button {
  width: 100%;
}

  .site-footer__links {
    grid-template-columns: 1fr;
  }
  .bnpi-intro-section {
  padding: 56px 18px;
}

.bnpi-intro-section__heading {
  margin-bottom: 32px;
}

.bnpi-intro-section__heading h2 {
  font-size: clamp(2.5rem, 13vw, 4rem);
}

.bnpi-intro__main,
.pi-invitation {
  padding: 24px;
  border-radius: 28px;
}

.bnpi-intro__brand {
  align-items: flex-start;
  flex-direction: column;
}

.bnpi-intro__logo {
  width: 76px;
  height: 76px;

  border-radius: 22px;

  font-size: 1.25rem;
}

.bnpi-intro__features {
  grid-template-columns: 1fr;
}

.bnpi-intro__features article {
  min-height: auto;
}

.pi-invitation {
  min-height: auto;
}

.pi-invitation__code {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.bnpi-mobile-notice {
  grid-template-columns: auto minmax(0, 1fr);
}

.bnpi-mobile-notice > a {
  grid-column: 1 / -1;

  justify-content: center;

  min-height: 48px;

  border: 1px solid var(--border-strong);
  border-radius: 999px;
}
.wear-hero,
.wear-announcement,
.wear-products-section,
.wear-drop-section,
.wear-process-section,
.wear-bnpi-banner {
  width: min(100% - 36px, var(--content-width));
}

.wear-hero {
  padding-top: 58px;
}

.wear-hero__content h1 {
  font-size: clamp(3.2rem, 16vw, 5rem);
}

.wear-hero__actions {
  display: grid;
}

.wear-hero__actions .button {
  width: 100%;
}

.wear-hero__visual {
  min-height: 390px;
}

.wear-hero__product {
  width: 215px;
  height: 300px;

  border-radius: 34px 34px 48px 48px;
}

.wear-hero__product-mark {
  width: 72px;
  height: 72px;

  border-radius: 22px;

  font-size: 2rem;
}

.wear-hero__badge--top {
  left: 4px;
}

.wear-hero__badge--bottom {
  right: 4px;
}

.wear-announcement {
  grid-template-columns: auto minmax(0, 1fr);
}

.wear-announcement__status {
  grid-column: 1 / -1;

  text-align: center;
}

.wear-products-section,
.wear-process-section {
  padding: 62px 0;
}

.wear-cart-button {
  justify-content: center;
}

.wear-process-grid {
  grid-template-columns: 1fr;
}

.wear-collection-group__products {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82vw, 340px);
  grid-template-columns: none;
  gap: 16px;

  width: calc(100vw - 18px);
  margin-right: calc(50% - 50vw);
  padding-right: 18px;
  padding-bottom: 14px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  overscroll-behavior-inline: contain;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.wear-collection-group__products::-webkit-scrollbar {
  display: none;
}

.wear-collection-group__products .wear-shop-card {
  width: 100%;
  min-width: 0;

  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.wear-collection-group__products .wear-shop-card:hover {
  transform: none;
}

.wear-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px;
}

.wear-collection-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;

  min-width: 0;
}

.wear-collection-group__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;

  width: 100%;
  padding-bottom: 24px;
}

.wear-collection-group__header > div,
.wear-collection-group__header > p {
  width: 100%;
  min-width: 0;
}

.wear-collection-group__header > p {
  max-width: 34rem;

  font-size: 1rem;
  line-height: 1.65;
}

.wear-collection-group__header h3 {
  display: grid;
  justify-items: start;
  gap: 8px;

  font-size: clamp(3rem, 16vw, 4.6rem);
  line-height: 0.92;
}

.wear-collection-group__header h3 span {
  display: block;

  font-size: 0.24em;
  line-height: 1;
}

.wear-drop-section {
  padding-bottom: 62px;
}

.wear-drop-section__content,
.wear-drop-section__edition {
  padding: 26px;
  border-radius: 28px;
}

.wear-drop-section__features {
  grid-template-columns: 1fr;
}

.wear-drop-section__features > div {
  padding: 17px 0;
}

.wear-drop-section__features > div + div {
  border-top: 1px solid var(--border);
  border-left: 0;
}

.wear-drop-section__edition {
  min-height: 360px;
}

.wear-process-grid article {
  min-height: auto;
}
.wear-shop-card__content {
  padding: 22px;
}

.wear-shop-card__heading {
  gap: 14px;
}

.wear-shop-card__heading h3 {
  font-size: 1.35rem;
}

.wear-shop-card__content > p {
  min-height: auto;
}

.wear-shop-card__meta {
  flex-direction: row;
}

.wear-shop-card__button {
  min-height: 52px;
}
.wear-process-grid article > span {
  margin-bottom: 38px;
}

.wear-bnpi-banner {
  grid-template-columns: 1fr;

  justify-items: center;

  margin-bottom: 64px;
  padding: 28px;

  text-align: center;
}

.wear-bnpi-banner__content {
  display: grid;
  justify-items: center;
}

.wear-bnpi-banner > .button {
  grid-column: auto;
}
.wear-modal__dialog {
  width: 100%;
  max-height: 100svh;
  margin: 0;

  border: 0;
  border-radius: 0;
}

.wear-product-dialog__gallery {
  padding: 14px;
}

.wear-product-dialog__image-wrap {
  border-radius: 22px;
}

.wear-product-dialog__content {
  min-height: auto;
  padding: 28px 20px 30px;
}

.wear-product-dialog__purchase {
  grid-template-columns: 1fr;
}

.wear-quantity {
  justify-content: center;
}

.wear-cart-item {
  grid-template-columns: 80px minmax(0, 1fr);
}

.wear-cart-item > img {
  width: 80px;
  height: 100px;
}
}

/* =========================================================
   DYNAMIC WEAR SHOP
   ========================================================= */

body.wear-overlay-open {
  overflow: hidden;
}

.wear-products-loading,
.wear-products-error,
.wear-products-empty {
  grid-column: 1 / -1;

  display: grid;
  justify-items: center;
  gap: 10px;

  min-height: 280px;
  padding: 48px;

  border: 1px solid var(--border);
  border-radius: 30px;

  text-align: center;

  background: rgba(255, 255, 255, 0.025);
}

.wear-products-loading p,
.wear-products-error p,
.wear-products-empty p {
  margin: 0;

  color: var(--muted);
}

.army-transition__symbol--image {
  padding: 0;
  overflow: hidden;
  background: #0b0613;
}

.army-transition__symbol--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wear-products-loading__spinner {
  width: 38px;
  height: 38px;

  border: 3px solid rgba(198, 165, 255, 0.18);
  border-top-color: var(--purple-light);
  border-radius: 50%;

  animation: wear-spinner 800ms linear infinite;
}

@keyframes wear-spinner {
  to {
    transform: rotate(360deg);
  }
}

.wear-shop-card__visual {
  width: 100%;
  padding: 0;

  color: inherit;
  cursor: pointer;
}

.wear-shop-card__image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 350ms ease;
}

.wear-shop-card:hover .wear-shop-card__image {
  transform: scale(1.035);
}

.wear-shop-card__button {
  width: 100%;
  margin-top: 18px;
}

.wear-modal,
.wear-cart {
  position: fixed;
  inset: 0;
  z-index: 1000;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.wear-modal.is-open,
.wear-cart.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.wear-modal__backdrop,
.wear-cart__backdrop {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(2, 1, 6, 0.82);
  backdrop-filter: blur(14px);
}

.wear-modal__dialog {
  position: relative;
  z-index: 2;

  width: min(1080px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  margin: 16px auto;

  overflow: auto;

  border: 1px solid var(--border);
  border-radius: 34px;

  background: #0a0611;
  box-shadow: 0 45px 130px rgba(0, 0, 0, 0.72);
}

.wear-modal__close {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border: 1px solid var(--border);
  border-radius: 50%;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);

  font-size: 1.45rem;
  cursor: pointer;
}

.wear-product-dialog {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
}

.wear-product-dialog > .wear-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
}

.wear-product-dialog__gallery {
  min-width: 0;
  padding: 24px;

  border-right: 1px solid var(--border);
}

.wear-product-dialog__image-wrap {
  position: relative;

  display: grid;
  place-items: center;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 28px;

  background:
    radial-gradient(
      circle,
      rgba(155, 92, 255, 0.17),
      transparent 58%
    ),
    #08050e;
}

.wear-product-dialog__image-wrap img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.wear-product-dialog__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;

  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border: 1px solid var(--border);
  border-radius: 50%;

  color: #ffffff;
  background: rgba(5, 3, 11, 0.7);
  backdrop-filter: blur(10px);

  cursor: pointer;
  transform: translateY(-50%);
}

.wear-product-dialog__arrow--previous {
  left: 14px;
}

.wear-product-dialog__arrow--next {
  right: 14px;
}

.wear-product-dialog__dots {
  display: flex;
  justify-content: center;
  gap: 8px;

  margin-top: 16px;
}

.wear-product-dialog__dots button {
  width: 8px;
  height: 8px;
  padding: 0;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.wear-product-dialog__dots button.is-active {
  width: 24px;

  border-radius: 999px;
  background: var(--purple-light);
}

.wear-product-dialog__content {
  display: flex;
  flex-direction: column;

  padding: 48px 38px 38px;
}

.wear-product-dialog__collection {
  color: var(--purple-light);

  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wear-product-dialog__content h2 {
  margin: 12px 0 18px;

  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.wear-product-dialog__price {
  margin: 0;

  color: var(--muted);
}

.wear-product-dialog__price strong {
  color: #ffffff;

  font-size: 1.25rem;
}

.wear-product-dialog__tax-note {
  margin: 7px 0 30px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 0.72rem;
}

.wear-product-option {
  margin-top: 22px;
}

.wear-product-option__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 12px;
}

.wear-product-option__heading span {
  color: var(--muted);

  font-size: 0.82rem;
}

.wear-product-option__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wear-option-chip {
  min-height: 42px;
  padding: 0 15px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--muted-light);
  background: rgba(255, 255, 255, 0.035);

  font-weight: 750;
  cursor: pointer;
}

.wear-option-chip:hover,
.wear-option-chip.is-active {
  color: #ffffff;
  border-color: var(--border-strong);
  background: rgba(155, 92, 255, 0.13);
}

.wear-product-dialog__purchase {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;

  margin-top: auto;
  padding-top: 34px;
}

.wear-quantity {
  display: grid;
  grid-template-columns: 42px 42px 42px;

  min-height: 54px;

  border: 1px solid var(--border);
  border-radius: 999px;

  overflow: hidden;
}

.wear-quantity button {
  color: #ffffff;
  background: transparent;

  cursor: pointer;
}

.wear-quantity span {
  display: grid;
  place-items: center;

  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);

  font-weight: 800;
}

.wear-product-dialog__message {
  min-height: 22px;
  margin: 14px 0 0;

  color: #9dffc4;

  font-size: 0.82rem;
  font-weight: 700;
}

.wear-product-dialog__message.is-error {
  color: #ffaaaa;
}

.wear-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;

  width: min(480px, 100%);
  height: 100%;

  border-left: 1px solid var(--border);

  background: #090510;
  box-shadow: -35px 0 100px rgba(0, 0, 0, 0.58);

  transform: translateX(100%);
  transition: transform 240ms ease;
}

.wear-cart.is-open .wear-cart__panel {
  transform: translateX(0);
}

.wear-cart__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;

  padding: 28px;

  border-bottom: 1px solid var(--border);
}

.wear-cart__header h2 {
  margin: 0;

  font-size: 2rem;
}

.wear-cart__items {
  display: grid;
  align-content: start;
  gap: 14px;
  flex: 1;
  min-height: 0;

  padding: 20px 24px;

  overflow-x: hidden;
  overflow-y: auto;
}

.wear-cart__empty {
  display: grid;
  place-items: center;
  align-content: center;
  flex: 1;
  gap: 8px;

  padding: 40px;

  text-align: center;
}

.wear-cart__empty[hidden] {
  display: none !important;
}

.wear-cart__empty p {
  margin: 0;

  color: var(--muted);
}

.wear-showcase {
  position: relative;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;

  min-width: 0;
  min-height: 520px;
  padding: 22px;

  overflow: hidden;

  border-radius: 34px;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(92, 28, 174, 0.18),
      transparent 55%
    ),
    rgba(9, 5, 18, 0.24);
}

.wear-showcase__item {
  position: relative;

  display: grid;
  place-items: center;

  min-width: 0;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(155, 92, 255, 0.22),
      transparent 60%
    ),
    #090512;

  box-shadow:
    0 24px 55px rgba(27, 7, 55, 0.3);

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.wear-showcase__item:hover {
  z-index: 4;

  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);

  box-shadow:
    0 34px 75px rgba(27, 7, 55, 0.48);
}

.wear-showcase__item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 280ms ease;
}

.wear-showcase__item:hover img {
  transform: scale(1.035);
}

.wear-showcase__item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;

  padding: 10px 13px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;

  color: #ffffff;
  background: rgba(5, 3, 11, 0.82);
  backdrop-filter: blur(14px);

  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.wear-showcase__item--shirt {
  grid-row: 1 / 3;
}

.wear-showcase__item--hoodie {
  grid-column: 2;
  grid-row: 1;
}

.wear-showcase__item--hat {
  grid-column: 2;
  grid-row: 2;
}

.wear-showcase__action {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 6;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 48px;
  padding: 0 18px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;

  color: #ffffff;
  background: rgba(5, 3, 11, 0.88);
  backdrop-filter: blur(16px);

  font-size: 0.76rem;
  font-weight: 850;
}

.wear-cart-item {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 15px;

  padding: 12px;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.035);
}

.wear-cart-item > img {
  width: 100px;
  height: 120px;

  border-radius: 14px;

  object-fit: cover;
  background: #06030b;
}

.wear-cart-item__content > span {
  color: var(--purple-light);

  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wear-cart-item h3 {
  margin: 7px 0 5px;

  font-size: 1rem;
}

.wear-cart-item p {
  margin: 0;

  color: var(--muted);

  font-size: 0.78rem;
}

.wear-cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-top: 14px;
}

.wear-cart-item__quantity {
  display: flex;
  align-items: center;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 999px;
}

.wear-cart-item__quantity button,
.wear-cart-item__quantity strong {
  display: grid;
  place-items: center;

  width: 30px;
  height: 30px;
}

.wear-cart-item__quantity button {
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.wear-cart-item__remove {
  margin-top: 10px;
  padding: 0;

  color: rgba(255, 255, 255, 0.48);
  background: transparent;

  font-size: 0.72rem;
  text-decoration: underline;
  cursor: pointer;
}

.wear-cart__footer {
  padding: 24px;

  border-top: 1px solid var(--border);
}

.wear-cart__subtotal {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  font-size: 1.12rem;
}

.wear-cart__footer > p {
  margin: 10px 0 20px;

  color: var(--muted);

  font-size: 0.75rem;
}

.wear-cart__footer .button {
  width: 100%;
}

.wear-cart__footer .button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   HOME MOBILE CARD SLIDERS
   Skins, streaks and games only
   ========================================================= */

@media (max-width: 640px) {
  .skin-grid,
  .streak-timeline,
  .game-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82vw, 340px);
    grid-template-columns: none;
    gap: 16px;

    width: calc(100vw - 18px);
    margin-right: calc(50% - 50vw);
    padding-right: 18px;
    padding-bottom: 14px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
.wear-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 280px 190px;

  min-height: 500px;
  padding: 12px;
  gap: 10px;

  border-radius: 26px;
}

.wear-showcase__item {
  border-radius: 20px;
}

.wear-showcase__item--shirt {
  grid-column: 1 / 3;
  grid-row: 1;
}

.wear-showcase__item--hoodie {
  grid-column: 1;
  grid-row: 2;
}

.wear-showcase__item--hat {
  grid-column: 2;
  grid-row: 2;
}

.wear-showcase__item span {
  right: 8px;
  bottom: 8px;
  left: 8px;

  padding: 8px 10px;

  font-size: 0.58rem;
}

.wear-showcase__action {
  right: 22px;
  bottom: 22px;
  left: 22px;

  min-height: 46px;
}
  .skin-grid::-webkit-scrollbar,
  .streak-timeline::-webkit-scrollbar,
  .game-grid::-webkit-scrollbar {
    display: none;
  }

  .skin-grid > *,
  .streak-timeline > *,
  .game-grid > * {
    width: 100%;
    min-width: 0;

    grid-column: auto;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .skin-card--galaxy,
  .streak-card--ultimate {
    grid-column: auto;
  }

  .skin-card,
  .streak-card,
  .game-card {
    height: 100%;
  }

  .skin-card:hover,
  .streak-card:hover,
  .game-card:hover {
    transform: none;
  }

  .skin-card__visual {
    min-height: 310px;
  }

  .skin-card__visual img,
  .skin-card--galaxy .skin-card__visual img {
    height: 280px;
  }

  .wear-section__visual--official {
    min-height: 360px;
  }

  .wear-section__image-frame {
    inset: 10px;

    border-radius: 24px;

    transform: none;
  }

  .wear-section__visual-action {
    right: 20px;
    bottom: 20px;
    left: 20px;

    justify-content: center;
  }
}
/* =========================================================
   COMPACT MOBILE PRODUCT MODAL
   Keep this at the very end of the stylesheet.
   ========================================================= */

@media (max-width: 640px) {
  .wear-modal {
    padding: 10px;
  }

  .wear-modal__backdrop {
    background: rgba(2, 1, 6, 0.88);
    backdrop-filter: blur(10px);
  }

  .wear-modal__dialog {
    width: 100%;
    max-width: none;
    max-height: calc(100svh - 20px);
    margin: 0 auto;

    overflow-x: hidden;
    overflow-y: auto;

    border: 1px solid var(--border);
    border-radius: 26px;

    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .wear-product-dialog {
    display: grid;
    grid-template-columns: minmax(0, 1fr);

    width: 100%;
    min-width: 0;
  }

  .wear-product-dialog > .wear-modal__close {
    top: 12px;
    right: 12px;

    width: 40px;
    height: 40px;

    background: rgba(7, 4, 12, 0.86);
    backdrop-filter: blur(12px);
  }

  .wear-product-dialog__gallery {
    min-width: 0;
    padding: 10px;

    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .wear-product-dialog__image-wrap {
    width: 100%;
    height: min(34svh, 290px);
    aspect-ratio: auto;

    border-radius: 20px;
  }

  .wear-product-dialog__arrow {
    width: 36px;
    height: 36px;
  }

  .wear-product-dialog__arrow--previous {
    left: 10px;
  }

  .wear-product-dialog__arrow--next {
    right: 10px;
  }

  .wear-product-dialog__dots {
    gap: 6px;
    margin-top: 10px;
  }

  .wear-product-dialog__content {
    min-width: 0;
    min-height: 0;
    padding: 20px 18px 18px;
  }

  .wear-product-dialog__collection {
    padding-right: 48px;

    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .wear-product-dialog__content h2 {
    margin: 8px 0 10px;
    padding-right: 36px;

    font-size: clamp(1.8rem, 9vw, 2.55rem);
    line-height: 0.98;
  }

  .wear-product-dialog__price {
    font-size: 0.9rem;
  }

  .wear-product-dialog__price strong {
    font-size: 1.08rem;
  }

  .wear-product-dialog__tax-note {
    margin: 4px 0 16px;

    font-size: 0.68rem;
    line-height: 1.4;
  }

  .wear-product-option {
    margin-top: 15px;
  }

  .wear-product-option__heading {
    align-items: center;
    margin-bottom: 9px;
  }

  .wear-product-option__heading strong {
    font-size: 0.92rem;
  }

  .wear-product-option__heading span {
    font-size: 0.76rem;
  }

  .wear-product-option__choices {
    gap: 7px;
  }

  .wear-option-chip {
    min-height: 38px;
    padding: 0 13px;

    font-size: 0.82rem;
  }

  .wear-product-dialog__purchase {
    position: sticky;
    bottom: -18px;
    z-index: 5;

    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 9px;

    margin: 20px -18px -18px;
    padding:
      12px
      18px
      calc(12px + env(safe-area-inset-bottom));

    border-top: 1px solid var(--border);

    background: rgba(10, 6, 17, 0.95);
    backdrop-filter: blur(18px);
  }

  .wear-quantity {
    grid-template-columns: repeat(3, 1fr);

    width: 116px;
    min-height: 48px;
  }

  .wear-product-dialog__purchase .button {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;

    font-size: 0.9rem;
  }

  .wear-product-dialog__message {
    min-height: 0;
    margin: 10px 0 0;

    font-size: 0.76rem;
  }
}
/* =========================================================
   MOBILE PRODUCT IMAGE — SHOW COMPLETE MOCKUP
   Keep this as the final rule in styles.css.
   ========================================================= */

@media (max-width: 640px) {
  .wear-product-dialog__gallery {
    padding: 10px;
  }

  .wear-product-dialog__image-wrap {
    width: 100%;
    height: clamp(320px, 46svh, 430px);
    aspect-ratio: auto;

    padding: 8px;

    overflow: hidden;

    background:
      radial-gradient(
        circle at 50% 50%,
        rgba(155, 92, 255, 0.14),
        transparent 68%
      ),
      #090512;
  }

  .wear-product-dialog__image-wrap > img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;

    padding: 0;

    object-fit: contain !important;
    object-position: center center;

    transform: none !important;
  }
}
@media (max-width: 640px) {
  .bnpi-intro__logo--image {
    width: 128px;
    height: 78px;
  }

  .bnpi-mobile-notice__icon--image {
    width: 64px;
    height: 44px;
  }

  .bnpi-section__symbol--logo {
    width: 220px;
    height: 130px;
    padding: 18px;
  }

  .wear-bnpi-banner__symbol--logo {
    width: 128px;
    height: 74px;
  }
}
/* =========================================================
   FLOATING CART BUTTON
   ========================================================= */

.wear-cart-button {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 90;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 132px;
  min-height: 56px;
  padding: 0 18px;

  border: 1px solid rgba(198, 165, 255, 0.42);
  border-radius: 999px;

  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      rgba(28, 15, 45, 0.97),
      rgba(10, 6, 17, 0.97)
    );

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.48),
    0 0 35px rgba(155, 92, 255, 0.2);

  backdrop-filter: blur(18px);

  transform: translateZ(0);

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.wear-cart-button:hover {
  transform: translateY(-4px);

  border-color: rgba(198, 165, 255, 0.72);

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.56),
    0 0 42px rgba(155, 92, 255, 0.3);
}

.wear-cart-button strong {
  min-width: 26px;
  height: 26px;

  font-size: 0.75rem;
}

body.wear-overlay-open .wear-cart-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(12px);
}

@media (max-width: 640px) {
  .wear-cart-button {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));

    min-width: 116px;
    min-height: 52px;
    padding: 0 15px;

    font-size: 0.88rem;
  }
}
/* =========================================================
   PRODUCT CART FEEDBACK
   ========================================================= */

.wear-product-dialog__message {
  display: flex;
  align-items: center;

  min-height: 0;
  margin: 14px 0 0;
  padding: 0;

  overflow: hidden;

  border: 1px solid transparent;
  border-radius: 16px;

  color: #9dffc5;
  background: transparent;

  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.5;

  opacity: 0;
  visibility: hidden;

  transform: translateY(6px);

  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease,
    padding 180ms ease;
}

.wear-product-dialog__message.is-visible {
  min-height: 48px;
  padding: 11px 14px;

  border-color: rgba(124, 255, 178, 0.24);

  background: rgba(45, 175, 101, 0.1);

  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.wear-product-dialog__message.is-error {
  color: #ffb5c1;
}

.wear-product-dialog__message.is-error.is-visible {
  border-color: rgba(255, 103, 128, 0.28);
  background: rgba(255, 73, 103, 0.09);
}

@media (max-width: 640px) {
  .wear-product-dialog__message.is-visible {
    margin-top: 10px;
    padding: 10px 12px;

    font-size: 0.72rem;
  }
}
@media (max-width: 640px) {
  .wear-cart__header {
    padding: 20px;
  }

  .wear-cart__header h2 {
    font-size: 1.65rem;
  }

  .wear-cart__items {
    padding: 16px;
  }

  .wear-cart-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;

    padding: 11px;
  }

  .wear-cart-item > img {
    width: 92px;
    height: 118px;

    object-fit: contain;
    object-position: center;

    background: #06030b;
  }

  .wear-cart-item__bottom {
    flex-wrap: wrap;
  }

  .wear-cart__footer {
    padding:
      18px
      16px
      calc(18px + env(safe-area-inset-bottom));
  }
}
/* =========================================================
   WEAR INVENTORY STATUS
   ========================================================= */

.wear-product-stock {
  display: flex;
  align-items: center;
  gap: 9px;

  margin: 14px 0 4px;
  padding: 11px 13px;

  border: 1px solid rgba(103, 255, 173, 0.22);
  border-radius: 14px;

  color: #a4ffd0;
  background: rgba(58, 194, 119, 0.08);

  font-size: 0.76rem;
  line-height: 1.45;
}

.wear-product-stock__dot {
  flex: 0 0 auto;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #68ffad;

  box-shadow:
    0 0 16px rgba(104, 255, 173, 0.72);
}

.wear-product-stock.is-low-stock {
  color: #ffd48b;

  border-color: rgba(255, 185, 82, 0.28);
  background: rgba(255, 159, 45, 0.09);
}

.wear-product-stock.is-low-stock
.wear-product-stock__dot {
  background: #ffb84f;

  box-shadow:
    0 0 16px rgba(255, 184, 79, 0.65);
}

.wear-product-stock.is-sold-out {
  color: #ff9bad;

  border-color: rgba(255, 99, 127, 0.28);
  background: rgba(255, 75, 108, 0.09);
}

.wear-product-stock.is-sold-out
.wear-product-stock__dot {
  background: #ff637f;

  box-shadow:
    0 0 16px rgba(255, 99, 127, 0.58);
}

.wear-option-chip.is-sold-out,
.wear-option-chip:disabled {
  position: relative;

  cursor: not-allowed;
  opacity: 0.42;
}

.wear-option-chip.is-sold-out::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 8px;
  left: 8px;

  height: 1px;

  background: currentColor;

  transform: rotate(-12deg);
}

.wear-option-chip small {
  display: none;
}

.wear-quantity button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

@media (max-width: 640px) {
  .wear-product-stock {
    margin-top: 10px;
    padding: 9px 11px;

    font-size: 0.7rem;
  }
}
.wear-products-error__code {
  display: block;

  margin-top: 10px;

  color: rgba(255, 255, 255, 0.46);

  font-family: monospace;
  font-size: 0.7rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
/* =========================================================
   WEAR CHECKOUT
   ========================================================= */

.wear-checkout {
  position: fixed;
  inset: 0;
  z-index: 240;

  visibility: hidden;
  pointer-events: none;
}

.wear-checkout.is-open {
  visibility: visible;
  pointer-events: auto;
}

.wear-checkout__backdrop {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(2, 1, 6, 0.82);
  backdrop-filter: blur(18px);

  opacity: 0;

  transition: opacity 220ms ease;
}

.wear-checkout.is-open .wear-checkout__backdrop {
  opacity: 1;
}

.wear-checkout__panel {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;

  display: flex;
  flex-direction: column;

  width: min(760px, calc(100% - 40px));

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(18, 9, 31, 0.99),
      rgba(6, 3, 12, 0.99)
    );

  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.62);

  transform: translateX(40px);
  opacity: 0;

  transition:
    transform 240ms ease,
    opacity 220ms ease;
}

.wear-checkout.is-open .wear-checkout__panel {
  transform: translateX(0);
  opacity: 1;
}

.wear-checkout__header {
  position: relative;

  padding: 30px 76px 24px 30px;

  border-bottom: 1px solid var(--border);
}

.wear-checkout__header h2 {
  margin: 0;

  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
}

.wear-checkout__header > div > p:last-child {
  max-width: 580px;
  margin: 12px 0 0;

  color: var(--muted);
  line-height: 1.6;
}

.wear-checkout__form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;

  overflow-y: auto;
}

.wear-checkout__section {
  padding: 28px 30px;

  border-bottom: 1px solid var(--border);
}

.wear-checkout__section[hidden] {
  display: none;
}

.wear-checkout__section-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  margin-bottom: 22px;
}

.wear-checkout__section-heading > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  width: 38px;
  height: 38px;

  border: 1px solid var(--border-strong);
  border-radius: 12px;

  color: var(--purple-light);
  background: rgba(155, 92, 255, 0.1);

  font-size: 0.72rem;
  font-weight: 850;
}

.wear-checkout__section-heading strong {
  display: block;

  font-size: 1.06rem;
}

.wear-checkout__section-heading p {
  margin: 5px 0 0;

  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

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

.wear-checkout__field {
  display: grid;
  gap: 8px;
}

.wear-checkout__field--full {
  grid-column: 1 / -1;
}

.wear-checkout__field > span {
  color: var(--muted-light);

  font-size: 0.76rem;
  font-weight: 700;
}

.wear-checkout__field input,
.wear-checkout__field select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;

  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);

  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.wear-checkout__field select option {
  color: #111111;
  background: #ffffff;
}

.wear-checkout__field input:focus,
.wear-checkout__field select:focus {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.07);

  box-shadow:
    0 0 0 3px rgba(155, 92, 255, 0.11);
}

.wear-checkout__shipping-options {
  display: grid;
  gap: 12px;
}

.wear-shipping-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;

  padding: 16px;

  border: 1px solid var(--border);
  border-radius: 16px;

  cursor: pointer;

  background: rgba(255, 255, 255, 0.035);
}

.wear-shipping-option.is-active {
  border-color: var(--border-strong);
  background: rgba(155, 92, 255, 0.1);
}

.wear-shipping-option input {
  accent-color: var(--purple);
}

.wear-shipping-option__content {
  display: grid;
  gap: 5px;
}

.wear-shipping-option__content small {
  color: var(--muted);
}

.wear-checkout__message {
  display: none;

  margin: 18px 30px 0;
  padding: 12px 14px;

  border: 1px solid rgba(102, 255, 174, 0.22);
  border-radius: 14px;

  color: #a4ffd0;
  background: rgba(58, 194, 119, 0.08);

  font-size: 0.78rem;
  line-height: 1.5;
}

.wear-checkout__message.is-visible {
  display: block;
}

.wear-checkout__message.is-error {
  color: #ff9bad;
  border-color: rgba(255, 99, 127, 0.28);
  background: rgba(255, 75, 108, 0.09);
}

.wear-checkout__footer {
  margin-top: auto;
  padding: 24px 30px 30px;

  border-top: 1px solid var(--border);

  background: rgba(5, 3, 11, 0.92);
  backdrop-filter: blur(18px);
}

.wear-checkout__summary {
  display: grid;
  gap: 10px;
}

.wear-checkout__summary > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;

  color: var(--muted);
}

.wear-checkout__summary strong {
  color: #ffffff;
}

.wear-checkout__total {
  margin-top: 6px;
  padding-top: 14px;

  border-top: 1px solid var(--border);

  font-size: 1.15rem;
}

.wear-checkout__actions {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr);
  gap: 12px;

  margin-top: 22px;
}

@media (max-width: 640px) {
  .wear-checkout__panel {
    inset: 0;

    width: 100%;

    border: 0;
    border-radius: 0;
  }

  .wear-checkout__header {
    padding:
      22px
      72px
      20px
      20px;
  }

  .wear-checkout__header h2 {
    font-size: 2rem;
  }

  .wear-checkout__section {
    padding: 22px 20px;
  }

  .wear-checkout__fields {
    grid-template-columns: 1fr;
  }

  .wear-checkout__field--full {
    grid-column: auto;
  }

  .wear-checkout__message {
    margin-right: 20px;
    margin-left: 20px;
  }

  .wear-checkout__footer {
    padding:
      18px
      20px
      calc(18px + env(safe-area-inset-bottom));
  }

  .wear-checkout__actions {
    grid-template-columns: 1fr;
  }

  .wear-checkout__actions
  .button--secondary {
    order: 2;
  }
}
.wear-checkout__header > .wear-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  left: auto;
  z-index: 4;
}

@media (max-width: 640px) {
  .wear-checkout__header > .wear-modal__close {
    top: 18px;
    right: 18px;
    left: auto;
  }
}
/* =========================================================
   WEAR PROCESSING & CANCELLATION NOTICE
   ========================================================= */

.wear-checkout__processing-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;

  margin: 20px 30px 0;
  padding: 16px;

  border: 1px solid rgba(188, 137, 255, 0.28);
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(157, 87, 255, 0.12),
      rgba(255, 255, 255, 0.025)
    );
}

.wear-checkout__processing-icon {
  display: grid;
  place-items: center;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(197, 152, 255, 0.38);
  border-radius: 15px;

  color: #d7b6ff;
  background: rgba(157, 87, 255, 0.14);

  font-size: 0.78rem;
  font-weight: 900;
}

.wear-checkout__processing-notice strong {
  color: #ffffff;
}

.wear-checkout__processing-notice p {
  margin: 6px 0 0;

  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.wear-checkout__processing-notice p strong {
  color: var(--purple-light);
}

.wear-checkout__processing-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 11px;

  margin: 14px 30px 22px;
  padding: 14px;

  border: 1px solid var(--border);
  border-radius: 16px;

  cursor: pointer;

  background: rgba(255, 255, 255, 0.025);
}

.wear-checkout__processing-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;

  accent-color: var(--purple);
}

.wear-checkout__processing-consent span {
  color: var(--muted-light);

  font-size: 0.76rem;
  line-height: 1.55;
}

.wear-checkout__processing-consent:has(input:checked) {
  border-color: rgba(111, 255, 174, 0.25);
  background: rgba(55, 201, 124, 0.06);
}

@media (max-width: 640px) {
  .wear-checkout__processing-notice {
    margin-right: 20px;
    margin-left: 20px;
    padding: 14px;
  }

  .wear-checkout__processing-icon {
    width: 42px;
    height: 42px;
  }

  .wear-checkout__processing-consent {
    margin-right: 20px;
    margin-left: 20px;
  }
}

/* =========================================================
   PAYMENT RESULT & MY ORDERS
   ========================================================= */

.site-navigation__orders {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 44px;
  padding: 6px 12px;

  border: 1px solid rgba(198, 165, 255, 0.22);
  border-radius: 14px;

  color: var(--muted-light);
  background:
    linear-gradient(
      135deg,
      rgba(198, 165, 255, 0.08),
      rgba(155, 92, 255, 0.03)
    );

  font-size: 0.92rem;
  font-weight: 650;
  text-align: left;

  cursor: pointer;

  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-navigation__orders:hover {
  color: #ffffff;
  border-color: var(--border-strong);

  background:
    linear-gradient(
      135deg,
      rgba(198, 165, 255, 0.16),
      rgba(155, 92, 255, 0.08)
    );

  transform: translateY(-1px);
}

.site-navigation__orders-icon {
  display: grid;
  place-items: center;

  flex: 0 0 auto;

  width: 30px;
  height: 30px;

  border: 1px solid rgba(198, 165, 255, 0.26);
  border-radius: 10px;

  color: var(--purple-light);
  background: rgba(155, 92, 255, 0.1);

  font-size: 1rem;
  font-weight: 900;
}

.site-navigation__orders-text {
  display: grid;
  gap: 1px;

  min-width: 0;
}

.site-navigation__orders-text small {
  display: none;

  color: var(--muted);

  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-navigation__orders-text strong {
  color: inherit;

  font-size: 0.88rem;
  font-weight: 750;
  white-space: nowrap;
}

.site-navigation__orders-arrow {
  color: var(--purple-light);

  font-size: 0.95rem;

  transition: transform 180ms ease;
}

.site-navigation__orders:hover
.site-navigation__orders-arrow {
  transform: translateX(3px);
}

.wear-order-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;

  display: grid;
  place-items: center;

  padding: 24px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.wear-order-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.wear-order-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(3, 1, 8, 0.82);
  backdrop-filter: blur(15px);

  cursor: pointer;
}

.wear-order-modal__panel {
  position: relative;
  z-index: 1;

  width: min(620px, 100%);
  max-height: min(86vh, 850px);
  padding: 34px;

  overflow-y: auto;

  border: 1px solid var(--border-strong);
  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(29, 16, 45, 0.98),
      rgba(9, 5, 16, 0.98)
    );

  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.55);
}

.wear-order-modal__panel--orders {
  width: min(760px, 100%);
}

.wear-order-modal__panel h2 {
  margin: 0;

  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: -0.045em;
}

.wear-order-modal__panel > p:not(.section-label) {
  color: var(--muted);
  line-height: 1.65;
}

.wear-order-modal__status {
  display: grid;
  place-items: center;

  width: 66px;
  height: 66px;
  margin-bottom: 24px;

  border: 1px solid rgba(111, 255, 174, 0.4);
  border-radius: 50%;

  color: #6fffaa;
  background: rgba(55, 201, 124, 0.1);

  font-size: 1.8rem;
  font-weight: 900;
}

.wear-order-summary {
  display: grid;
  gap: 1px;

  margin: 28px 0;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 18px;
}

.wear-order-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  padding: 14px 16px;

  background: rgba(255, 255, 255, 0.035);
}

.wear-order-summary dt {
  color: var(--muted);
}

.wear-order-summary dd {
  margin: 0;

  font-weight: 800;
  text-align: right;
}

.wear-order-modal__notice {
  padding: 15px 16px;

  border: 1px solid rgba(198, 165, 255, 0.25);
  border-radius: 16px;

  color: var(--muted-light);
  background: rgba(155, 92, 255, 0.08);

  font-size: 0.84rem;
  line-height: 1.6;
}

.wear-order-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 24px;
}

.wear-order-modal__intro {
  margin-bottom: 24px;
}

.wear-orders-list {
  display: grid;
  gap: 16px;
}

.wear-order-card {
  padding: 20px;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.035);
}

.wear-order-card > header {
  display: flex;
  justify-content: space-between;
  gap: 18px;

  padding-bottom: 16px;

  border-bottom: 1px solid var(--border);
}

.wear-order-card > header span {
  color: var(--purple-light);

  font-size: 0.72rem;
  font-weight: 800;
}

.wear-order-card > header h3 {
  margin: 5px 0 0;
}

.wear-order-card__items {
  display: grid;
  gap: 12px;

  padding: 18px 0;
}

.wear-order-card__items > div {
  display: flex;
  gap: 12px;
}

.wear-order-card__items p {
  display: grid;
  gap: 3px;

  margin: 0;
}

.wear-order-card__items small {
  color: var(--muted);
}

.wear-order-card > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding-top: 16px;

  border-top: 1px solid var(--border);
}

.wear-order-card > footer > span {
  max-width: 360px;

  color: var(--muted);

  font-size: 0.78rem;
  line-height: 1.5;
}

.wear-orders-empty,
.wear-orders-loading {
  padding: 32px;

  border: 1px dashed var(--border);
  border-radius: 18px;

  color: var(--muted);
  text-align: center;
}

@media (max-width: 640px) {
  .wear-order-modal {
    align-items: end;
    padding: 0;
  }

  .wear-order-modal__panel {
    width: 100%;
    max-height: 92svh;
    padding:
      26px
      20px
      calc(24px + env(safe-area-inset-bottom));

    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 28px 28px 0 0;
  }

  .wear-order-modal__actions {
    display: grid;
  }

  .wear-order-modal__actions .button {
    width: 100%;
  }

  .wear-order-card > header,
  .wear-order-card > footer {
    align-items: stretch;
    flex-direction: column;
  }

  .wear-order-card > footer .button {
    width: 100%;
  }
}
/* =========================================================
   ORDER CANCELLATION WARNING
   ========================================================= */

.wear-cancel-dialog {
  width: min(650px, 100%);
}

.wear-cancel-dialog__warning {
  display: grid;
  gap: 9px;

  margin: 24px 0;
  padding: 18px;

  border: 1px solid rgba(255, 178, 92, 0.28);
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 152, 70, 0.11),
      rgba(255, 255, 255, 0.025)
    );
}

.wear-cancel-dialog__warning strong {
  color: #ffd4a6;
}

.wear-cancel-dialog__warning p {
  margin: 0;

  color: var(--muted-light);
  font-size: 0.82rem;
  line-height: 1.55;
}

.wear-cancel-dialog__message {
  min-height: 22px;
  margin: 18px 0 0;

  color: var(--purple-light);
  font-size: 0.82rem;
  line-height: 1.55;
}

.wear-cancel-dialog
[data-wear-cancel-confirm] {
  color: #160708;

  background:
    linear-gradient(
      135deg,
      #ffca9b,
      #ff7d7d
    );
}

.wear-cancel-dialog
[data-wear-cancel-confirm]:disabled {
  cursor: wait;
  opacity: 0.6;
}
/* =========================================================
   ORDER SIZE & COLOUR CHANGES
   ========================================================= */

.wear-order-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.wear-change-dialog {
  width: min(720px, 100%);
}

.wear-change-items {
  display: grid;
  gap: 14px;

  margin: 24px 0;
}

.wear-change-item {
  display: grid;
  gap: 14px;

  padding: 18px;

  border: 1px solid var(--border);
  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.035);
}

.wear-change-item header {
  display: grid;
  gap: 5px;
}

.wear-change-item header span {
  color: var(--purple-light);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wear-change-item header strong {
  font-size: 1rem;
}

.wear-change-item p {
  margin: 0;

  color: var(--muted);
  font-size: 0.82rem;
}

.wear-change-item label {
  display: grid;
  gap: 8px;
}

.wear-change-item label > span {
  color: var(--muted-light);

  font-size: 0.76rem;
  font-weight: 750;
}

.wear-change-item select {
  width: 100%;
  min-height: 50px;
  padding: 0 42px 0 14px;

  border: 1px solid var(--border);
  border-radius: 13px;

  color: #ffffff;
  outline: none;
  background: #160c24;

  font: inherit;
}

.wear-change-item select:focus {
  border-color: var(--border-strong);
}

.wear-change-dialog__message {
  min-height: 22px;
  margin: 0;

  color: var(--purple-light);
  font-size: 0.82rem;
  line-height: 1.55;
}

.wear-change-dialog
[data-wear-change-save]:disabled {
  cursor: wait;
  opacity: 0.6;
}

@media (max-width: 640px) {
  .wear-order-card__actions {
    display: grid;
    width: 100%;
  }

  .wear-order-card__actions .button {
    width: 100%;
  }
}
/* =========================================================
   LEGAL LINKS, CHECKOUT CONSENT & MODAL
   ========================================================= */

.site-footer__legal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.site-footer__legal a,
.site-footer__legal button {
  padding: 0;

  border: 0;

  color: rgba(255, 255, 255, 0.58);
  background: transparent;

  font-size: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(198, 165, 255, 0.35);
  text-underline-offset: 4px;

  cursor: pointer;

  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.site-footer__legal a:hover,
.site-footer__legal button:hover {
  color: #ffffff;
  text-decoration-color: var(--purple-light);
}

.wear-checkout__consents {
  display: grid;
  gap: 12px;
}

.wear-checkout__legal-link {
  display: inline;

  margin: 0;
  padding: 0;

  border: 0;

  color: var(--purple-light);
  background: transparent;

  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(198, 165, 255, 0.5);
  text-underline-offset: 3px;

  cursor: pointer;
}

.wear-checkout__legal-link:hover {
  color: #ffffff;
}

.wear-legal-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: grid;
  place-items: center;

  padding: 20px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.wear-legal-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.wear-legal-modal__backdrop {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(2, 1, 6, 0.88);
  backdrop-filter: blur(18px);

  cursor: pointer;
}

.wear-legal-modal__panel {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;

  width: min(980px, 100%);
  height: min(90vh, 920px);

  overflow: hidden;

  border: 1px solid var(--border-strong);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(24, 13, 39, 0.99),
      rgba(7, 4, 13, 0.99)
    );

  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.68);
}

.wear-legal-modal__header {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 22px 72px 18px 24px;

  border-bottom: 1px solid var(--border);
}

.wear-legal-modal__header .section-label {
  margin-bottom: 6px;
}

.wear-legal-modal__header h2 {
  margin: 0;

  font-size: clamp(1.55rem, 4vw, 2.35rem);
  letter-spacing: -0.04em;
}

.wear-legal-modal__frame {
  flex: 1;

  width: 100%;
  min-height: 0;

  border: 0;

  background: var(--background);
}

@media (max-width: 760px) {
  .site-footer__bottom {
    align-items: center;
    text-align: center;
  }

  .site-footer__legal {
    flex-wrap: wrap;
  }

  .wear-legal-modal {
    padding: 8px;
  }

  .wear-legal-modal__panel {
    height: calc(100dvh - 16px);

    border-radius: 20px;
  }

  .wear-legal-modal__header {
    padding: 18px 62px 14px 18px;
  }
}