/* [project]/src/components/layout/Navbar.module.css [app-client] (css) */
.Navbar-module__cRh5nW__navbar {
  z-index: var(--z-sticky);
  height: var(--navbar-height);
  transition: all var(--transition-base);
  -webkit-backdrop-filter: blur(20px);
  background: #ffffffb3;
  border-bottom: 1px solid #0000;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.Navbar-module__cRh5nW__navbar.Navbar-module__cRh5nW__scrolled {
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: #fffffff2;
}

.Navbar-module__cRh5nW__inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--space-6);
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  display: flex;
}

.Navbar-module__cRh5nW__logo {
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text);
  text-decoration: none;
  display: flex;
}

.Navbar-module__cRh5nW__logoMark {
  font-size: var(--text-xl);
  color: var(--color-secondary);
  animation: 3s ease-in-out infinite Navbar-module__cRh5nW__glowPulse;
}

@keyframes Navbar-module__cRh5nW__glowPulse {
  0%, 100% {
    text-shadow: 0 0 5px #2d6a4f4d;
  }

  50% {
    text-shadow: 0 0 15px #2d6a4f80;
  }
}

.Navbar-module__cRh5nW__logoText {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 800;
}

.Navbar-module__cRh5nW__links {
  align-items: center;
  gap: var(--space-8);
  display: flex;
}

.Navbar-module__cRh5nW__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-secondary);
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.Navbar-module__cRh5nW__link:after {
  content: "";
  background: var(--color-secondary);
  width: 0;
  height: 2px;
  transition: width var(--transition-base);
  position: absolute;
  bottom: 0;
  left: 0;
}

.Navbar-module__cRh5nW__link:hover {
  color: var(--color-secondary);
}

.Navbar-module__cRh5nW__link:hover:after {
  width: 100%;
}

.Navbar-module__cRh5nW__adminLink {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  border: 1px solid var(--color-border);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
}

.Navbar-module__cRh5nW__adminLink:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.Navbar-module__cRh5nW__hamburger {
  cursor: pointer;
  padding: var(--space-2);
  z-index: 10;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  display: none;
}

.Navbar-module__cRh5nW__hamburger span {
  background: var(--color-text);
  width: 24px;
  height: 2px;
  transition: all var(--transition-base);
  display: block;
}

.Navbar-module__cRh5nW__hamburger.Navbar-module__cRh5nW__active span:first-child {
  transform: rotate(45deg)translate(5px, 5px);
}

.Navbar-module__cRh5nW__hamburger.Navbar-module__cRh5nW__active span:nth-child(2) {
  opacity: 0;
}

.Navbar-module__cRh5nW__hamburger.Navbar-module__cRh5nW__active span:nth-child(3) {
  transform: rotate(-45deg)translate(5px, -5px);
}

@media (max-width: 768px) {
  .Navbar-module__cRh5nW__hamburger {
    display: flex;
  }

  .Navbar-module__cRh5nW__links {
    background: var(--color-surface);
    width: 280px;
    height: 100vh;
    padding: calc(var(--navbar-height)  + var(--space-8)) var(--space-8);
    align-items: flex-start;
    gap: var(--space-6);
    transition: right var(--transition-slow);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
  }

  .Navbar-module__cRh5nW__links.Navbar-module__cRh5nW__open {
    right: 0;
  }

  .Navbar-module__cRh5nW__link {
    font-size: var(--text-base);
  }
}

/* [project]/src/components/layout/Footer.module.css [app-client] (css) */
.Footer-module__3hUVsW__footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: var(--space-20);
}

.Footer-module__3hUVsW__inner {
  max-width: var(--max-width);
  padding: 0 var(--space-6);
  margin: 0 auto;
}

.Footer-module__3hUVsW__grid {
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-border);
  grid-template-columns: 2fr 1fr 1fr 1fr;
  display: grid;
}

.Footer-module__3hUVsW__logo {
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  display: flex;
}

.Footer-module__3hUVsW__logoMark {
  font-size: var(--text-xl);
  color: var(--color-secondary);
}

.Footer-module__3hUVsW__logoText {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 800;
}

.Footer-module__3hUVsW__tagline {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  max-width: 280px;
  line-height: 1.6;
}

.Footer-module__3hUVsW__column {
  gap: var(--space-3);
  flex-direction: column;
  display: flex;
}

.Footer-module__3hUVsW__columnTitle {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.Footer-module__3hUVsW__footerLink {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.Footer-module__3hUVsW__footerLink:hover {
  color: var(--color-text);
}

.Footer-module__3hUVsW__bottom {
  padding-top: var(--space-8);
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  display: flex;
}

.Footer-module__3hUVsW__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.Footer-module__3hUVsW__badges {
  gap: var(--space-4);
  display: flex;
}

.Footer-module__3hUVsW__badge {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  padding: var(--space-1) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
}

@media (max-width: 768px) {
  .Footer-module__3hUVsW__grid {
    gap: var(--space-8);
    grid-template-columns: 1fr 1fr;
  }

  .Footer-module__3hUVsW__brand {
    grid-column: 1 / -1;
  }

  .Footer-module__3hUVsW__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .Footer-module__3hUVsW__badges {
    flex-wrap: wrap;
  }
}

/* [project]/src/components/home/Hero.module.css [app-client] (css) */
.Hero-module__s-6kkG__hero {
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 700px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Hero-module__s-6kkG__canvas {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.Hero-module__s-6kkG__overlay {
  z-index: 1;
  background: linear-gradient(#ffffff4d 0%, #ffffff1a 40%, #ffffff80 80%, #fff 100%);
  position: absolute;
  inset: 0;
}

.Hero-module__s-6kkG__content {
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-6);
  animation: 1s .3s both Hero-module__s-6kkG__slideUp;
  position: relative;
}

.Hero-module__s-6kkG__tagBadge {
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-secondary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
  border: 1px solid #2d6a4f66;
  font-weight: 600;
  animation: .6s .5s both Hero-module__s-6kkG__slideDown;
  display: inline-flex;
}

.Hero-module__s-6kkG__dot {
  background: var(--color-secondary);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 2s ease-in-out infinite Hero-module__s-6kkG__pulse;
}

.Hero-module__s-6kkG__title {
  font-family: var(--font-heading);
  font-size: var(--text-7xl);
  text-transform: uppercase;
  letter-spacing: -.03em;
  margin-bottom: var(--space-6);
  font-weight: 900;
  line-height: 1.05;
}

.Hero-module__s-6kkG__titleLine {
  display: block;
}

.Hero-module__s-6kkG__highlight {
  color: var(--color-secondary);
  position: relative;
}

.Hero-module__s-6kkG__highlight:after {
  content: "";
  background: var(--color-secondary);
  opacity: .4;
  height: 4px;
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
}

.Hero-module__s-6kkG__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

.Hero-module__s-6kkG__actions {
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
  display: flex;
}

.Hero-module__s-6kkG__cta {
  text-decoration: none;
}

.Hero-module__s-6kkG__stats {
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  animation: 1s 1s both Hero-module__s-6kkG__fadeIn;
  display: flex;
}

.Hero-module__s-6kkG__stat {
  gap: var(--space-1);
  flex-direction: column;
  display: flex;
}

.Hero-module__s-6kkG__statNumber {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-text);
  font-weight: 800;
}

.Hero-module__s-6kkG__statLabel {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-muted);
}

.Hero-module__s-6kkG__statDivider {
  background: var(--color-border);
  width: 1px;
  height: 40px;
}

.Hero-module__s-6kkG__scrollIndicator {
  bottom: var(--space-8);
  z-index: 2;
  align-items: center;
  gap: var(--space-2);
  flex-direction: column;
  animation: 1s 1.5s both Hero-module__s-6kkG__fadeIn;
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.Hero-module__s-6kkG__scrollIndicator span {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-text-muted);
}

.Hero-module__s-6kkG__scrollLine {
  background: linear-gradient(to bottom, var(--color-secondary), transparent);
  width: 1px;
  height: 40px;
  animation: 2s ease-in-out infinite Hero-module__s-6kkG__pulse;
}

@media (max-width: 768px) {
  .Hero-module__s-6kkG__title {
    font-size: var(--text-4xl);
  }

  .Hero-module__s-6kkG__subtitle {
    font-size: var(--text-base);
  }

  .Hero-module__s-6kkG__actions {
    flex-direction: column;
  }

  .Hero-module__s-6kkG__stats {
    gap: var(--space-4);
  }

  .Hero-module__s-6kkG__statNumber {
    font-size: var(--text-xl);
  }
}

@media (max-width: 480px) {
  .Hero-module__s-6kkG__title {
    font-size: var(--text-3xl);
  }
}

@keyframes Hero-module__s-6kkG__slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes Hero-module__s-6kkG__slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes Hero-module__s-6kkG__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes Hero-module__s-6kkG__pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

/* [project]/src/components/home/LiveTicker.module.css [app-client] (css) */
.LiveTicker-module__vLkhSa__ticker {
  background: var(--color-secondary);
  padding: var(--space-3) 0;
  position: relative;
  overflow: hidden;
}

.LiveTicker-module__vLkhSa__track {
  gap: var(--space-12);
  white-space: nowrap;
  animation: 40s linear infinite LiveTicker-module__vLkhSa__scroll;
  display: flex;
}

.LiveTicker-module__vLkhSa__message {
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-primary);
  flex-shrink: 0;
  font-weight: 700;
  display: inline-flex;
}

.LiveTicker-module__vLkhSa__dot {
  font-size: var(--text-xs);
  opacity: .5;
}

@keyframes LiveTicker-module__vLkhSa__scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

/* [project]/src/components/home/FeaturedDrops.module.css [app-client] (css) */
.FeaturedDrops-module__kvxkoG__section {
  padding: var(--space-20) 0;
}

.FeaturedDrops-module__kvxkoG__container {
  max-width: var(--max-width);
  padding: 0 var(--space-6);
  margin: 0 auto;
}

.FeaturedDrops-module__kvxkoG__header {
  margin-bottom: var(--space-12);
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.FeaturedDrops-module__kvxkoG__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-2);
}

.FeaturedDrops-module__kvxkoG__subtitle {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
}

.FeaturedDrops-module__kvxkoG__grid {
  gap: var(--space-6);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.FeaturedDrops-module__kvxkoG__card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: all var(--transition-base);
  text-decoration: none;
  animation: .6s both FeaturedDrops-module__kvxkoG__slideUp;
  position: relative;
  overflow: hidden;
}

.FeaturedDrops-module__kvxkoG__card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px #2d6a4f14;
}

.FeaturedDrops-module__kvxkoG__card:hover .FeaturedDrops-module__kvxkoG__imageFront {
  opacity: 0;
  transform: rotateY(180deg);
}

.FeaturedDrops-module__kvxkoG__card:hover .FeaturedDrops-module__kvxkoG__imageBack {
  opacity: 1;
  transform: rotateY(0);
}

.FeaturedDrops-module__kvxkoG__imageWrap {
  aspect-ratio: 4 / 3;
  perspective: 1000px;
  position: relative;
  overflow: hidden;
}

.FeaturedDrops-module__kvxkoG__imageFront, .FeaturedDrops-module__kvxkoG__imageBack {
  backface-visibility: hidden;
  justify-content: center;
  align-items: center;
  transition: all .6s;
  display: flex;
  position: absolute;
  inset: 0;
}

.FeaturedDrops-module__kvxkoG__imageFront {
  z-index: 2;
}

.FeaturedDrops-module__kvxkoG__imageBack {
  opacity: 0;
  gap: var(--space-2);
  flex-direction: column;
  transform: rotateY(-180deg);
}

.FeaturedDrops-module__kvxkoG__fakeBag {
  border-radius: var(--radius-sm);
  border: 2px solid #00000026;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 90px;
  display: flex;
  position: relative;
}

.FeaturedDrops-module__kvxkoG__fakeFlap {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: 2px solid #0000001a;
  height: 30px;
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
}

.FeaturedDrops-module__kvxkoG__fakeLabel {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  color: #0006;
  letter-spacing: .1em;
  margin-top: var(--space-4);
}

.FeaturedDrops-module__kvxkoG__tarpLabel {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #000000b3;
  font-weight: 700;
}

.FeaturedDrops-module__kvxkoG__originLabel {
  font-size: var(--text-sm);
  color: #00000080;
}

.FeaturedDrops-module__kvxkoG__gradeBadge {
  top: var(--space-3);
  right: var(--space-3);
  z-index: 3;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-weight: 800;
  display: flex;
  position: absolute;
}

.FeaturedDrops-module__kvxkoG__info {
  padding: var(--space-4);
}

.FeaturedDrops-module__kvxkoG__name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.FeaturedDrops-module__kvxkoG__meta {
  margin-bottom: var(--space-3);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.FeaturedDrops-module__kvxkoG__type {
  font-size: var(--text-xs);
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: .08em;
}

.FeaturedDrops-module__kvxkoG__price {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 700;
}

.FeaturedDrops-module__kvxkoG__colors {
  border-radius: 2px;
  gap: 2px;
  height: 4px;
  display: flex;
  overflow: hidden;
}

.FeaturedDrops-module__kvxkoG__colorDot {
  border-radius: 0;
  min-width: 4px;
  height: 100%;
}

.FeaturedDrops-module__kvxkoG__unique {
  padding: var(--space-2) var(--space-4);
  border-top: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-muted);
  text-align: center;
  background: #2d6a4f0a;
}

@keyframes FeaturedDrops-module__kvxkoG__slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@media (max-width: 768px) {
  .FeaturedDrops-module__kvxkoG__header {
    align-items: flex-start;
    gap: var(--space-4);
    flex-direction: column;
  }

  .FeaturedDrops-module__kvxkoG__grid {
    gap: var(--space-4);
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* [project]/src/components/home/ProcessSection.module.css [app-client] (css) */
.ProcessSection-module__MMp8aW__section {
  padding: var(--space-20) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.ProcessSection-module__MMp8aW__container {
  max-width: var(--max-width);
  padding: 0 var(--space-6);
  margin: 0 auto;
}

.ProcessSection-module__MMp8aW__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.ProcessSection-module__MMp8aW__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3);
}

.ProcessSection-module__MMp8aW__subtitle {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  max-width: 500px;
  margin: 0 auto;
}

.ProcessSection-module__MMp8aW__steps {
  gap: var(--space-8);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  position: relative;
}

.ProcessSection-module__MMp8aW__step {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  position: relative;
}

.ProcessSection-module__MMp8aW__stepNumber {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  color: var(--color-secondary);
  letter-spacing: .15em;
  margin-bottom: var(--space-4);
  font-weight: 700;
}

.ProcessSection-module__MMp8aW__stepIcon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  display: block;
}

.ProcessSection-module__MMp8aW__stepTitle {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  font-weight: 800;
}

.ProcessSection-module__MMp8aW__stepDesc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.ProcessSection-module__MMp8aW__connector {
  display: none;
}

@media (min-width: 769px) {
  .ProcessSection-module__MMp8aW__step:after {
    content: "→";
    right: calc(-1 * var(--space-4)  - 8px);
    font-size: var(--text-xl);
    color: var(--color-text-muted);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .ProcessSection-module__MMp8aW__step:last-child:after {
    display: none;
  }
}

@media (max-width: 768px) {
  .ProcessSection-module__MMp8aW__steps {
    gap: var(--space-6);
    grid-template-columns: 1fr 1fr;
  }

  .ProcessSection-module__MMp8aW__step:after {
    display: none;
  }
}

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

/*# sourceMappingURL=src_components_50c0d2e2._.css.map*/