:root {
  --ink: #0b0e14;
  --ink2: rgba(22, 27, 36, 0.7);
  --ink3: rgba(30, 37, 48, 0.8);
  --line: rgba(38, 48, 64, 0.5);
  --line2: rgba(47, 61, 82, 0.6);
  --gold: #f0b429;
  --gold-glow: rgba(240, 180, 41, 0.4);
  --gold-dim: rgba(240, 180, 41, .12);
  --slate: #7a8fa8;
  --slate2: #a0b4c8;
  --bright: #dce8f0;
  --white: #f0f6fc;
  --red: #e05252;
  --green: #3ecf8e;
  --r: 12px;
  --r2: 18px;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--ink);
  color: var(--slate2);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 80px
}

@media(min-width:768px) {
  body {
    padding-bottom: 0
  }
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(240, 180, 41, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(240, 180, 41, .03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bg-glow {
  position: fixed;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.07) 0%, transparent 70%);
  top: -10vw;
  right: -10vw;
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
}

.bg-glow-2 {
  position: fixed;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  bottom: -10vw;
  left: -10vw;
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes throb {

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

  50% {
    transform: scale(.6);
    opacity: .5
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(240, 180, 41, 0.4));
  }

  50% {
    filter: drop-shadow(0 0 15px rgba(240, 180, 41, 0.7));
  }
}

/* Navbar */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer
}

.logo-img {
  height: 32px;
  width: auto;
  border-radius: 6px
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 5px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 7px;
  color: var(--slate);
  text-decoration: none;
  transition: all .18s;
  cursor: pointer
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--white);
  background: var(--ink3)
}

@media(max-width:640px) {
  .nav-links {
    display: none
  }
}

/* Bottom nav */
.bnav {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 420px;
  height: 54px;
  background: rgba(22, 27, 36, .97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line2);
  border-radius: 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 199;
  padding: 0 10px
}

.bni {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  color: var(--slate);
  cursor: pointer;
  transition: color .18s;
  text-decoration: none
}

.bni.active {
  color: var(--gold)
}

.bni svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.bni span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase
}

@media(min-width:768px) {
  .bnav {
    display: none
  }
}

/* Pages */
.page {
  display: none;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  position: relative;
  z-index: 1
}

.page.active {
  display: block;
  animation: fadeUp .32s ease
}

.sh {
  margin-bottom: 28px
}

.sh-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px
}

.sh-line {
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px
}

.sh-eye {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold)
}

.sh-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.05
}

.sh-sub {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
  margin-top: 8px;
  max-width: 520px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  line-height: 1
}

.btn-gold {
  background: var(--gold);
  color: var(--ink)
}

.btn-gold:hover {
  background: #ffc94a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(240, 180, 41, .25)
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--slate2);
  border: 1px solid var(--line2);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(240, 180, 41, 0.05);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 11px
}

.card {
  background: var(--ink2);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.card:hover {
  border-color: rgba(240, 180, 41, 0.4);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(240, 180, 41, 0.1);
}

/* Hero */
.hero {
  padding: 56px 0 64px
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(240, 180, 41, .2);
  padding: 5px 13px;
  border-radius: 99px;
  margin-bottom: 20px
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: throb 2s ease infinite
}

.hero-kicker-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold)
}

.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 15vw, 140px);
  line-height: 0.82;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: floating 6s ease-in-out infinite;
}

.hero-h1 .hi {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240, 180, 41, 0.6);
  text-shadow: none;
}

.hero-h1 .hg {
  background: linear-gradient(135deg, var(--gold) 0%, #ffdd70 60%, #ffa040 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow-pulse 4s ease-in-out infinite;
}

.hero-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate2);
  max-width: 440px;
  margin-bottom: 32px
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  margin-top: 8px
}

.hstat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(240, 180, 41, 0.2);
}

.hstat-val span {
  color: var(--gold)
}

.hstat-label {
  font-size: 11px;
  color: var(--slate);
  font-weight: 700;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Price table */
.price-table-wrap {
  overflow-x: auto
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px
}

.price-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
}

.price-table th:last-child {
  text-align: right
}

.price-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--slate2);
  vertical-align: middle;
  transition: all 0.2s;
}

.price-table td:last-child {
  text-align: right
}

.price-table tr:last-child td {
  border-bottom: none
}

.price-table tr:hover td {
  background: rgba(240, 180, 41, 0.03);
  color: var(--white);
}

.price-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--gold)
}

.price-tier {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle
}

.tier-std {
  background: rgba(122, 143, 168, .12);
  color: var(--slate2)
}

.tier-pro {
  background: rgba(240, 180, 41, .12);
  color: var(--gold)
}

/* Store */
.store-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.store-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1
}

.store-h em {
  font-style: normal;
  color: var(--gold)
}

.store-live {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px
}

.live-pip {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite
}

.live-txt {
  font-size: 11px;
  color: var(--slate);
  font-weight: 500
}

.filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px
}

.pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid var(--line);
  color: var(--slate);
  background: transparent;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap
}

.pill.active,
.pill:hover {
  background: var(--gold-dim);
  border-color: rgba(240, 180, 41, .3);
  color: var(--gold)
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  gap: 10px
}

@media(min-width:480px) {
  .items-grid {
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr))
  }
}

@media(min-width:768px) {
  .items-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px
  }
}

.item-card {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%
}

.item-card:hover {
  border-color: rgba(240, 180, 41, .28);
  transform: translateY(-3px)
}

.item-thumb {
  position: relative;
  aspect-ratio: 1;
  background: var(--ink);
  overflow: hidden
}

.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s, transform .3s
}

.item-thumb img.loaded {
  opacity: 1
}

.item-card:hover .item-thumb img {
  transform: scale(1.04)
}

.item-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.item-ring {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(240, 180, 41, .15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .7s linear infinite
}

.item-info {
  padding: 12px 11px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-start
}

.item-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  height: 32px;
  width: 100%
}

.item-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
  height: 14px;
  line-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  opacity: 0.8
}

.item-btn {
  display: block;
  margin-top: auto;
  padding: 8px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, #ffdd70 100%);
  color: var(--ink);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s cubic-bezier(.34, .1, .64, 1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(240, 180, 41, .2);
  position: relative;
  overflow: hidden
}

.item-btn:hover {
  background: linear-gradient(135deg, #ffc94a 0%, #ffeb99 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 180, 41, .35)
}

.skel {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden
}

.skel-sq {
  aspect-ratio: 1;
  background: linear-gradient(90deg, var(--ink2) 25%, var(--ink3) 50%, var(--ink2) 75%);
  background-size: 200%;
  animation: shimmer 1.2s linear infinite
}

.skel-line {
  height: 7px;
  border-radius: 4px;
  margin: 10px 11px 5px;
  background: linear-gradient(90deg, var(--ink2) 25%, var(--ink3) 50%, var(--ink2) 75%);
  background-size: 200%;
  animation: shimmer 1.2s linear infinite
}

.skel-line.s {
  width: 48%;
  margin-top: 0
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  flex-wrap: wrap
}

.pge {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  justify-content: center
}

.pge.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink)
}

.pge:hover:not(.active):not(:disabled) {
  border-color: rgba(240, 180, 41, .3);
  color: var(--bright)
}

.pge:disabled {
  opacity: .3;
  cursor: not-allowed
}

.store-cta {
  margin-top: 40px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.store-cta-ey {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px
}

.store-cta-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.1;
  margin-bottom: 6px
}

.store-cta-p {
  font-size: 13px;
  color: var(--slate)
}

/* Model preview */
.model-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

@media(max-width:580px) {
  .model-preview-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.model-card {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .18s, transform .18s;
  text-decoration: none;
  display: block
}

.model-card:hover {
  border-color: rgba(240, 180, 41, .3);
  transform: translateY(-3px)
}

.model-thumb {
  aspect-ratio: 1;
  position: relative;
  background: var(--ink);
  overflow: hidden
}

.model-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s
}

.model-thumb img.loaded {
  opacity: 1
}

.model-skel {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink2) 25%, var(--ink3) 50%, var(--ink2) 75%);
  background-size: 200%;
  animation: shimmer 1.2s linear infinite
}

.model-meta {
  padding: 8px 10px
}

.model-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px
}

.model-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--bright);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

/* FAQ */
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.faq-item {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .18s
}

.faq-item.open {
  border-color: rgba(240, 180, 41, .25)
}

.faq-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px
}

.faq-n {
  font-family: 'Barlow Condensed', sans-serif;
  width: 24px;
  height: 24px;
  background: var(--gold-dim);
  border: 1px solid rgba(240, 180, 41, .2);
  color: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0
}

.faq-q {
  font-size: 13px;
  font-weight: 600;
  color: var(--bright);
  flex: 1
}

.faq-icon {
  width: 15px;
  height: 15px;
  stroke: var(--slate);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s, stroke .25s;
  flex-shrink: 0
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  stroke: var(--gold)
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease
}

.faq-item.open .faq-body {
  max-height: 240px
}

.faq-body p {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.7;
  padding: 0 16px 14px 52px
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px
}

.testi-card {
  padding: 16px 18px
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px
}

.testi-av {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  flex-shrink: 0
}

.testi-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--bright)
}

.testi-check {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 700;
  color: var(--green);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.testi-card blockquote {
  font-size: 13px;
  color: var(--slate2);
  line-height: 1.55;
  font-style: italic
}

/* ── QUEUE CHECK ── */
.queue-box {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  padding: 24px;
  margin-bottom: 24px
}

.queue-inp-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-wrap: wrap
}

.queue-inp {
  flex: 1;
  min-width: 180px;
  background: var(--ink3);
  border: 1px solid var(--line2);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--bright);
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color .18s
}

.queue-inp:focus {
  border-color: rgba(240, 180, 41, .5)
}

.queue-inp::placeholder {
  color: var(--slate)
}

.queue-result {
  margin-top: 18px
}

.queue-order {
  background: var(--ink3);
  border: 1px solid var(--line2);
  border-radius: var(--r);
  padding: 16px;
  margin-top: 10px
}

.queue-order:first-child {
  margin-top: 0
}

.queue-summary {
  margin-top: 18px;
  background: rgba(240, 180, 41, .06);
  border: 1px solid rgba(240, 180, 41, .18);
  border-radius: var(--r);
  padding: 14px 16px;
  color: var(--gold);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.queue-summary strong {
  font-weight: 900;
  color: var(--bright);
}

.queue-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  gap: 10px;
  font-size: 13px
}

.queue-row:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.queue-label {
  color: var(--slate);
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0
}

.queue-val {
  color: var(--bright);
  font-weight: 500;
  text-align: right;
  word-break: break-word
}

.queue-pos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 900;
  border-radius: 7px;
  flex-shrink: 0
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 99px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase
}

.status-done {
  background: rgba(62, 207, 142, .12);
  color: var(--green);
  border: 1px solid rgba(62, 207, 142, .25)
}

.status-proses {
  background: rgba(59, 130, 246, .1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, .22)
}

.status-acc {
  background: rgba(240, 180, 41, .12);
  color: var(--gold);
  border: 1px solid rgba(240, 180, 41, .25)
}

.status-def {
  background: rgba(122, 143, 168, .08);
  color: var(--slate);
  border: 1px solid var(--line2)
}

.sisa-lunas {
  color: var(--green);
  font-weight: 700
}

.sisa-ada {
  color: var(--red);
  font-weight: 700
}

/* ── ORDER TRACKER ── */
@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 180, 41, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(240, 180, 41, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(240, 180, 41, 0);
  }
}

.tracker-wrap {
  margin: 16px 0 0;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.tracker {
  display: flex;
  justify-content: space-between;
  position: relative
}

.tracker::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 10%;
  right: 10%;
  height: 6px;
  background: var(--ink);
  z-index: 1;
  border-radius: 3px;
  border: 1px solid var(--line)
}

.tracker-fill {
  position: absolute;
  top: 14px;
  left: 10%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  z-index: 1;
  border-radius: 3px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1)
}

.tr-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1
}

.tr-dot {
  width: 32px;
  height: 32px;
  background: var(--ink3);
  border: 2px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--slate);
  transition: all .3s ease;
  font-family: 'Barlow Condensed', sans-serif;
}

.tr-step.active .tr-dot {
  background: var(--ink2);
  border-color: var(--gold);
  color: var(--gold);
  animation: pulse-gold 2s infinite;
}

.tr-step.completed .tr-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 10px rgba(240, 180, 41, 0.3)
}

.tr-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--slate);
  text-align: center;
  line-height: 1.3
}

.tr-step.active .tr-label {
  color: var(--gold);
  font-weight: 700;
}

.tr-step.completed .tr-label {
  color: var(--bright)
}

/* ── TESTIMONI FORM ── */
.testi-form-box {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  padding: 24px;
  margin-bottom: 24px
}

.inp {
  background: var(--ink3);
  border: 1px solid var(--line2);
  border-radius: 8px;
  padding: 10px 13px;
  width: 100%;
  color: var(--bright);
  font-size: 13px;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color .18s;
  appearance: none;
  -webkit-appearance: none
}

.inp:focus {
  border-color: rgba(240, 180, 41, .5)
}

.inp::placeholder {
  color: var(--slate)
}

textarea.inp {
  resize: vertical;
  min-height: 80px;
  line-height: 1.65
}

.fl {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 5px
}

/* Brief */
.step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 14px
}

.step-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 12px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.step-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bright)
}

.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px
}

@media(max-width:620px) {
  .fg {
    grid-template-columns: 1fr
  }
}

.pg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

@media(max-width:480px) {
  .pg {
    grid-template-columns: 1fr
  }
}

.pbox {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px
}

.pbox-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bright);
  display: block;
  margin-bottom: 10px
}

select.inp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a8fa8' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 32px
}

select.inp option {
  background: var(--ink2);
  color: var(--bright)
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px dashed var(--line2);
  border-radius: 8px;
  padding: 11px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate);
  transition: all .18s
}

.file-label:hover {
  border-color: rgba(240, 180, 41, .4);
  color: var(--gold)
}

.prevs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px
}

.pv {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--line2)
}

.pv img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pv-del {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  background: rgba(220, 40, 40, .9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  cursor: pointer;
  font-weight: 900
}

.divr {
  height: 1px;
  background: var(--line);
  margin: 24px 0
}

.submit-btn {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .18s
}

.submit-btn:hover {
  background: #ffc94a;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(240, 180, 41, .2)
}

.color-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px
}

.color-input-wrap {
  display: flex;
  align-items: center;
  gap: 6px
}

.color-swatch {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid var(--line2);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0
}

.color-swatch input[type=color] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 2
}

.color-swatch-preview {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  pointer-events: none
}

.color-hex {
  background: var(--ink3);
  border: 1px solid var(--line2);
  border-radius: 6px;
  padding: 6px 9px;
  color: var(--bright);
  font-size: 12px;
  font-family: monospace;
  width: 86px;
  outline: none;
  transition: border-color .18s
}

.color-hex:focus {
  border-color: rgba(240, 180, 41, .5)
}

.add-color-btn {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(240, 180, 41, .2);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  transition: background .15s
}

.add-color-btn:hover {
  background: rgba(240, 180, 41, .2)
}

.rm-color {
  font-size: 14px;
  color: var(--slate);
  cursor: pointer;
  margin-left: 2px;
  line-height: 1;
  padding: 4px;
  border-radius: 4px;
  transition: color .15s, background .15s
}

.rm-color:hover {
  color: var(--red);
  background: rgba(224, 82, 82, .1)
}

/* Terms */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

@media(max-width:580px) {
  .terms-grid {
    grid-template-columns: 1fr
  }
}

.tbox {
  padding: 20px
}

.tbox-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold)
}

.tbox-title svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0
}

.tlist {
  list-style: none
}

.tlist li {
  position: relative;
  padding-left: 13px;
  font-size: 13px;
  color: var(--slate2);
  margin-bottom: 8px;
  line-height: 1.55
}

.tlist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%
}

.robux-table {
  border-collapse: collapse;
  width: 100%
}

.robux-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px
}

.robux-table tr:last-child td {
  border: none
}

.robux-table td:first-child {
  color: var(--slate)
}

.robux-table td:last-child {
  text-align: right;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--gold)
}

.warn-box {
  background: rgba(224, 82, 82, .06);
  border: 1px solid rgba(224, 82, 82, .18);
  border-radius: var(--r);
  padding: 16px
}

.warn-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px
}

.warn-box p {
  font-size: 12px;
  color: rgba(220, 232, 240, .55);
  line-height: 1.55
}

.wa-btn {
  position: fixed;
  bottom: 76px;
  right: 18px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 190;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(240, 180, 41, .25);
  transition: transform .18s, background .18s
}

.wa-btn:hover {
  transform: scale(1.08);
  background: #ffc94a
}

@media(min-width:768px) {
  .wa-btn {
    bottom: 22px;
    right: 22px
  }
}

#upload-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--r);
  border: 1px solid var(--line2);
  background: var(--ink3)
}

@media(max-width:768px) {
  #voucher-steps {
    grid-template-columns: 1fr !important
  }
}
