*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

:root {
  --shop-purple: #3d1f6e;
  --shop-purple-dark: #1a0a35;
  --shop-teal: #00c8e8;
  --shop-teal-dark: #0088a8;
  --shop-card-top: #0a1628;
  --shop-card-bottom: #00b4d4;
  --shop-white: #ffffff;
  --shop-gray: #b8c4d8;
  --shop-vbucks: #4db8ff;
  --font-shop: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Noto Sans", system-ui, sans-serif;
  --fn-sparks-bg: url("assets/sparks-bg.jpg");
  --card-w: 200px;
  --card-h: 280px;
  --card-wide-w: 320px;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 600;
  background: var(--shop-purple-dark) var(--fn-sparks-bg) center top / cover no-repeat fixed;
  color: var(--shop-white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  background: var(--shop-teal);
  color: var(--shop-card-top);
  font-family: var(--font-shop);
  font-weight: 800;
  text-decoration: none;
  border-radius: 6px;
  outline: 2px solid var(--shop-white);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--shop-teal);
  outline-offset: 2px;
}

.site-section,
.showcase-banner,
.seo-content {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-bg-img {
    animation: none;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(138, 43, 226, 0.35), transparent),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(0, 180, 220, 0.2), transparent),
    linear-gradient(180deg, rgba(15, 5, 35, 0.4) 0%, rgba(10, 5, 25, 0.85) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Hero ── */
.shop-hero {
  position: relative;
  z-index: 2;
  min-height: clamp(580px, 100vh, 1000px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

.hero-bg-accent {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 4, 22, 0.92) 0%, rgba(15, 8, 40, 0.65) 36%, rgba(10, 5, 25, 0.15) 55%, transparent 72%),
    linear-gradient(0deg, rgba(10, 5, 25, 0.95) 0%, transparent 35%),
    linear-gradient(180deg, rgba(10, 5, 25, 0.45) 0%, transparent 28%);
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-end;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(280px, 1fr) minmax(420px, 1.15fr);
    min-height: clamp(580px, 100vh, 1000px);
    align-items: center;
  }
}

.hero-copy {
  max-width: 540px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shop-card-top);
  background: linear-gradient(90deg, var(--shop-teal), #7ef0ff);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0, 200, 232, 0.35);
}

.fn-logo-hero {
  width: min(220px, 55vw);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.75rem, 9vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transform: skewX(-4deg);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--shop-gray);
  line-height: 1.5;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.hero-cta {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

.hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--shop-white);
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.hero-scroll-btn:hover {
  border-color: var(--shop-teal);
  background: rgba(0, 200, 232, 0.12);
  transform: translateY(-2px);
}

.hero-scroll-arrow {
  display: inline-block;
  animation: heroBounce 1.6s ease-in-out infinite;
}

@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.hero-stats {
  display: flex;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat-val {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--shop-teal);
  transform: skewX(-4deg);
  text-shadow: 0 2px 12px rgba(0, 200, 232, 0.4);
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--shop-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  overflow: visible;
}

.hero-video-clip {
  --turntable-width: clamp(760px, 88vw, 1900px);
  position: relative;
  width: var(--turntable-width);
  max-height: clamp(560px, 78vh, 1100px);
  overflow: hidden;
  margin: 0 auto;
  background: transparent;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
}

.hero-turntable {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  mix-blend-mode: screen;
  background: transparent;
}

.hero-video-fade {
  display: none;
}

@media (min-width: 768px) {
  .hero-video-wrap {
    justify-content: flex-end;
    align-self: stretch;
    align-items: flex-end;
    margin-right: clamp(-2rem, -4vw, 0);
  }

  .hero-video-clip {
    --turntable-width: clamp(900px, 68vw, 2200px);
    max-height: clamp(640px, 82vh, 1200px);
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .hero-video-clip {
    --turntable-width: clamp(1000px, 72vw, 2600px);
    max-height: clamp(720px, 88vh, 1320px);
  }
}

/* ── Themed shop sections ── */
.shop-section-themed {
  position: relative;
  padding: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
}

.shop-section-themed::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}

.shop-section-themed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 5, 25, 0.5) 0%, rgba(10, 5, 25, 0.85) 100%);
  z-index: 0;
}

.shop-section-themed > * {
  position: relative;
  z-index: 1;
}


.fn-logo {
  display: block;
  width: min(280px, 75vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.fn-logo-sm {
  width: 120px;
  margin: 0 auto 0.75rem;
  opacity: 0.85;
}

.shop-title {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.5rem, 10vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--shop-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: skewX(-4deg);
}

.shop-layout {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  padding: 1rem 1rem 2rem;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.shop-rail {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0.5rem;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 999px;
  height: fit-content;
  position: sticky;
  top: 1.5rem;
  backdrop-filter: blur(8px);
}

.rail-filter {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--shop-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rail-dots {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}

.rail-dot.active {
  background: var(--shop-white);
  transform: scale(1.35);
}

@media (min-width: 900px) {
  .shop-rail {
    display: flex;
  }

  .shop-layout {
    padding: 2rem 2rem 3rem;
    gap: 1.5rem;
  }
}

.shop-main {
  flex: 1;
  min-width: 0;
}

.shop-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.shop-header .shop-title {
  font-size: clamp(2rem, 6vw, 3rem);
}

.shop-powered {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--shop-gray);
  margin-top: 0.5rem;
  font-weight: 600;
}

.epic-mark {
  display: none;
}

.vbucks-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #2b7fd4 0%, #5b4fcf 50%, #8b4fd4 100%);
  color: var(--shop-white);
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(43, 127, 212, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.vbucks-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(43, 127, 212, 0.55);
}

.v-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  color: #0c1929;
  font-family: var(--font-shop);
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-style: normal;
}

.v-icon.sm {
  width: 16px;
  height: 16px;
  font-size: 0.6rem;
  border-width: 1px;
}

.shop-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 2rem;
}

.shop-section-title {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  transform: skewX(-4deg);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0.75rem;
  perspective: 900px;
}

.shop-grid .shop-card {
  flex: unset;
  width: 100%;
  height: var(--card-h);
}

.shop-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.shop-card-link .shop-add {
  pointer-events: none;
}

@media (min-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding-top: 1rem;
  }

  .shop-grid .shop-card {
    --card-h: 300px;
  }

  .shop-card-art img.item-cutout {
    height: 112%;
    max-width: 118%;
  }
}

@media (min-width: 1200px) {
  :root {
    --card-w: 100%;
  }
}

.shop-row-wrap {
  position: relative;
}

.shop-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(30, 30, 40, 0.75);
  color: var(--shop-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  pointer-events: none;
}

.shop-row-wrap:hover .scroll-btn {
  opacity: 1;
  pointer-events: auto;
}

.scroll-btn:hover {
  background: rgba(50, 50, 65, 0.9);
}

.scroll-left { left: -8px; }
.scroll-right { right: -8px; }

@media (max-width: 768px) {
  .scroll-btn {
    opacity: 1;
    pointer-events: auto;
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }
  .scroll-left { left: 0; }
  .scroll-right { right: 0; }
}

.shop-card {
  position: relative;
  flex: 0 0 var(--card-w);
  width: var(--card-w);
  height: var(--card-h);
  border-radius: 14px;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.shop-grid .shop-card:hover {
  transform: translateY(-6px) rotateX(2deg);
}

.shop-card-wide {
  flex: 0 0 var(--card-wide-w);
  width: var(--card-wide-w);
}

.shop-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.shop-card-bg {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  z-index: 0;
  background: linear-gradient(
    180deg,
    var(--shop-card-top) 0%,
    #0d2840 35%,
    var(--shop-teal-dark) 75%,
    var(--shop-teal) 100%
  );
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.shop-card-art {
  position: absolute;
  left: -5%;
  right: -5%;
  top: -10%;
  bottom: 52px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.shop-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.shop-card-art img.item-cutout {
  width: auto;
  height: 105%;
  max-width: 112%;
  object-fit: contain;
  object-position: center bottom;
  margin: 0 auto;
  display: block;
  mix-blend-mode: screen;
  background: transparent;
  filter:
    drop-shadow(0 14px 28px rgba(0, 0, 0, 0.55))
    drop-shadow(0 4px 12px rgba(0, 200, 232, 0.2));
  transform: translateY(6px) translateZ(24px);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), filter 0.35s ease;
}

.shop-grid .shop-card:hover .shop-card-art img.item-cutout {
  transform: translateY(-10px) translateZ(48px) scale(1.05);
  filter:
    drop-shadow(0 22px 44px rgba(0, 0, 0, 0.65))
    drop-shadow(0 8px 20px rgba(0, 200, 232, 0.35));
}

.shop-card-wide .shop-card-art img.item-cutout {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
}

.shop-card-art .scene-3d {
  width: 100%;
  height: 100%;
  min-height: 160px;
}

.placeholder-art {
  align-items: center;
  justify-content: center;
}

.card-emoji {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.shop-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  background: var(--shop-teal);
  color: var(--shop-card-top);
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
}

.shop-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.85rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.shop-card-name {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  margin-bottom: 0.1rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.shop-card-desc {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--shop-gray);
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.shop-card-price {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--shop-white);
}

.price-old {
  opacity: 0.55;
  text-decoration: line-through;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.25rem;
}

.shop-add {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--shop-white);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.15s;
}

.shop-add:hover {
  background: rgba(255, 255, 255, 0.35);
}

.shop-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0 1rem;
  font-size: 0.75rem;
  color: var(--shop-gray);
  font-family: var(--font-shop);
  font-style: italic;
  letter-spacing: 0.08em;
}

.scene-3d {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Page sections ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--shop-teal);
  margin-bottom: 0.5rem;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-sub {
  color: var(--shop-gray);
  font-size: 0.92rem;
  margin-top: 0.35rem;
  max-width: 520px;
  line-height: 1.5;
}

.glass-card,
.glass-panel {
  background: rgba(8, 12, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-panel {
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.site-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 5rem;
}

.site-section-themed {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  overflow: hidden;
}

.site-section-themed::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 0;
}

.site-section-themed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(10, 5, 25, 0.5) 0%, rgba(10, 5, 25, 0.92) 100%);
  z-index: 0;
}

.site-section-themed > * {
  position: relative;
  z-index: 1;
}

.showcase-banner {
  position: relative;
  height: clamp(140px, 22vw, 220px);
  margin-bottom: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.showcase-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 5, 25, 0.85) 0%, transparent 60%);
}

.showcase-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.5rem, 3vw, 2rem);
  padding: 0 1rem;
}

.showcase-char {
  height: 115%;
  width: auto;
  max-width: 32%;
  object-fit: contain;
  object-position: bottom center;
  mix-blend-mode: screen;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
  transform: translateY(8%);
}

.showcase-char-center {
  max-width: 38%;
  z-index: 2;
  transform: translateY(4%) scale(1.08);
}

.showcase-char-left,
.showcase-char-right {
  opacity: 0.9;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-nav-sticky {
  position: sticky;
  top: 0.75rem;
  z-index: 50;
}

.page-nav a {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--shop-gray);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.page-nav a:hover,
.page-nav a.is-active {
  color: var(--shop-white);
  background: rgba(0, 200, 232, 0.18);
  box-shadow: 0 0 20px rgba(0, 200, 232, 0.15);
}

#features.site-section-themed {
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  perspective: 1200px;
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}

.feature-card {
  border-radius: 16px;
  padding: 1.15rem 1rem 1.25rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 232, 0.4);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(0, 200, 232, 0.12);
}

.feature-art {
  height: 130px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.feature-art img {
  max-height: 100%;
  max-width: 95%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.55));
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-art img {
  transform: translateY(-6px) scale(1.05);
}

.feature-card.feature-card-pop {
  overflow: visible;
  transform-style: preserve-3d;
  padding-top: 0.35rem;
}

.feature-card-pop .feature-art {
  height: 200px;
  margin: -1.5rem -0.75rem 0.35rem;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.feature-card-pop .feature-art img.feature-cutout {
  width: auto;
  height: 150%;
  max-width: 135%;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: screen;
  background: transparent;
  transform: translateY(22px) translateZ(36px);
  filter:
    drop-shadow(0 16px 32px rgba(0, 0, 0, 0.6))
    drop-shadow(0 6px 16px rgba(0, 200, 232, 0.25));
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), filter 0.35s ease;
}

.feature-card-pop:hover {
  transform: translateY(-8px) rotateX(2deg);
}

.feature-card-pop:hover .feature-art img.feature-cutout {
  transform: translateY(-2px) translateZ(60px) scale(1.1);
  filter:
    drop-shadow(0 24px 48px rgba(0, 0, 0, 0.7))
    drop-shadow(0 10px 24px rgba(0, 200, 232, 0.4));
}

.feature-card h3 {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  transform: skewX(-3deg);
}

.feature-card p {
  font-size: 0.78rem;
  color: var(--shop-gray);
  line-height: 1.5;
}

.site-section-split {
  display: grid;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 3.5rem;
  padding: 2rem 1.5rem;
  border-radius: 20px;
}

.split-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.35rem 0 1rem;
}

.split-text {
  color: var(--shop-gray);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.split-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.split-stats li {
  font-size: 0.8rem;
  color: var(--shop-gray);
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 100px;
}

.split-stats strong {
  display: block;
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 900;
  font-size: 1.65rem;
  color: var(--shop-teal);
  transform: skewX(-4deg);
  text-shadow: 0 0 20px rgba(0, 200, 232, 0.3);
}

@media (min-width: 900px) {
  .site-section-split {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
}

.split-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--shop-card-top) 0%, var(--shop-teal-dark) 100%);
}

.split-visual-duo {
  min-height: 380px;
}

.split-visual-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.split-img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.55));
}

.split-img-main {
  max-height: 340px;
  width: auto;
  max-width: 75%;
}

.split-img-accent {
  position: absolute;
  right: 5%;
  bottom: 8%;
  max-height: 180px;
  width: auto;
  max-width: 45%;
  z-index: 2;
  opacity: 0.95;
}

.steps-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.step-card {
  position: relative;
  border-radius: 16px;
  padding: 1.5rem 1.15rem 1.25rem;
  text-align: center;
  transition: transform 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--shop-teal), transparent);
  opacity: 0.6;
}

.step-num {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--shop-teal);
  opacity: 0.45;
  display: block;
  margin-bottom: 0.5rem;
  transform: skewX(-4deg);
}

.step-art {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.step-art img {
  width: auto;
  height: 120px;
  max-width: 90%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.step-card h3 {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  transform: skewX(-3deg);
}

.step-card p {
  font-size: 0.8rem;
  color: var(--shop-gray);
  line-height: 1.5;
}

.faq-section {
  margin-bottom: 3.5rem;
}

.faq-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.faq-item {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(8, 12, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(0, 200, 232, 0.35);
}

.faq-item summary {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 1.05rem 1.2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--shop-teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--shop-teal);
}

.faq-item p {
  padding: 0 1.2rem 1.1rem;
  font-size: 0.88rem;
  color: var(--shop-gray);
  line-height: 1.6;
}

.review-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.review-card {
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.25s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-stars {
  color: #ffd54f;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 12px rgba(255, 213, 79, 0.4);
}

.review-avatar {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 0.85rem;
  mix-blend-mode: screen;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.review-text {
  font-size: 0.9rem;
  color: var(--shop-gray);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.review-author {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--shop-teal);
  letter-spacing: 0.06em;
}

.site-cta {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  border-radius: 20px;
}

.site-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(105deg, rgba(10, 5, 25, 0.94) 0%, rgba(10, 5, 25, 0.65) 45%, rgba(0, 136, 168, 0.3) 100%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 1.5rem;
  min-height: 220px;
}

@media (min-width: 768px) {
  .cta-inner {
    grid-template-columns: minmax(160px, 220px) 1fr;
    padding: 2.5rem 2.5rem;
    gap: 2rem;
    align-items: center;
  }
}

.cta-character-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  max-height: 200px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.5) 0%, rgba(0, 136, 168, 0.15) 100%);
}

.cta-character {
  width: auto;
  height: 100%;
  max-height: 200px;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: screen;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.cta-copy p {
  color: var(--shop-gray);
  margin: 0.5rem 0 1.35rem;
  max-width: 440px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.hero-tagline {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--shop-teal);
  margin-bottom: 0.65rem;
  transform: skewX(-4deg);
  text-shadow: 0 0 24px rgba(0, 200, 232, 0.35);
}

.hero-sub strong {
  color: var(--shop-white);
  font-weight: 700;
}

.seo-content {
  padding: 2rem 1.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.seo-content-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .seo-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.seo-content-grid h3 {
  font-family: var(--font-shop);
  font-style: italic;
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--shop-teal);
  transform: skewX(-3deg);
}

.seo-content-grid p {
  font-size: 0.9rem;
  color: var(--shop-gray);
  line-height: 1.65;
}

.seo-content-grid strong {
  color: var(--shop-white);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
