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

:root {
  --navy: #0d1b6e;
  --navy-dark: #080f42;
  --navy-mid: #122090;
  --navy-light: #1a2fa8;
  --white: #ffffff;
  --off-white: #f0f4ff;
  --blue-glow: rgba(13, 27, 110, 0.4);
  --text: #d0d8f5;
  --muted: #6b7cc4;
  --border: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(255, 255, 255, 0.04);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-dark);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

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

/* ---- CURSOR ---- */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    left 0.12s ease,
    top 0.12s ease,
    width 0.3s,
    height 0.3s;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 15, 66, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo-link {
  display: flex;
  align-items: center;
  cursor: none;
}

.nav-logo-img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s;
}
.nav-logo-img:hover {
  border-color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: none;
}
.nav-link:hover {
  color: var(--white);
}

.cart-icon {
  position: relative;
  cursor: none;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--white);
  color: var(--navy-dark);
  font-family: "DM Mono", monospace;
  font-size: 0.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  display: none;
}
.cart-count.show {
  display: flex;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 30%,
      var(--navy-light) 0%,
      var(--navy-dark) 70%
    ),
    radial-gradient(
      ellipse 40% 30% at 80% 80%,
      rgba(13, 27, 110, 0.5) 0%,
      transparent 60%
    );
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  20% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.15;
  }
  100% {
    opacity: 0;
    transform: translateY(-80vh) scale(1.5);
  }
}

.hero-logo-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
  animation: fadeSlideDown 1s 0.1s both;
}

.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 40px rgba(255, 255, 255, 0.1),
    0 0 80px rgba(13, 27, 110, 0.6);
}

.hero-badge {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  animation: fadeSlideDown 1s 0.3s both;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 1s 0.5s both;
}

.hero-title span {
  display: block;
  color: var(--white);
}

.hero-title .outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
  color: transparent;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 300;
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 1s 0.7s both;
}

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  background: var(--white);
  color: var(--navy-dark);
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  cursor: none;
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 1s 0.9s both;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.2s;
}
.hero-cta:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.hero-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  margin: 2rem auto 0;
  position: relative;
  z-index: 2;
  animation: fadeIn 1s 1.2s both;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s 2s both;
}
.scroll-hint span {
  font-family: "DM Mono", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}
.scroll-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.2;
  }
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  background: rgba(255, 255, 255, 0.03);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
.marquee-dot {
  color: var(--white);
  opacity: 0.4;
  margin: 0 0.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---- COUNTDOWN ---- */
.countdown-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--navy-dark);
}

.section-label {
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.countdown-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  min-width: 1.8em;
  text-align: center;
  position: relative;
}
.countdown-num::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}
.countdown-sep {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 6vw, 4rem);
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  align-self: flex-start;
  margin-top: 0.2em;
}
.countdown-label {
  font-family: "DM Mono", monospace;
  font-size: 0.52rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---- MERCH SECTION ---- */
.merch-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.merch-section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.merch-section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
}
.merch-section-header .num {
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.2em;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  padding: 0.5rem 1.2rem;
  cursor: none;
  text-transform: uppercase;
  transition: all 0.25s;
  border-radius: 2px;
}
.filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.filter-btn.active {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

/* ---- MERCH CARD ---- */
.merch-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: none;
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.3s,
    box-shadow 0.3s;
}
.merch-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.merch-card:hover .card-overlay {
  opacity: 1;
}
.merch-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-img-wrap {
  height: 260px;
  overflow: hidden;
  background: #0a1050;
  position: relative;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.card-color-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to top, rgba(8, 15, 66, 0.95), transparent);
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.color-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.color-dot.black {
  background: #111;
}
.color-dot.white {
  background: #fff;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 15, 66, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.card-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--white);
  color: var(--navy-dark);
  font-family: "DM Mono", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.55rem;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
}
.card-body {
  padding: 1.2rem;
}
.card-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.card-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-price {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--white);
}
.card-price span {
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-left: 0.3rem;
}

/* Size selector */
.size-selector {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}
.size-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  padding: 0.28rem 0.55rem;
  cursor: none;
  transition: all 0.2s;
  text-transform: uppercase;
  border-radius: 2px;
}
.size-btn:hover,
.size-btn.active {
  border-color: var(--white);
  color: var(--white);
}

/* Add button */
.add-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.9rem;
  cursor: none;
  text-transform: uppercase;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.add-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}
.add-btn:hover::before {
  transform: translateX(0);
}
.add-btn:hover {
  color: var(--navy-dark);
  border-color: var(--white);
}
.add-btn span {
  position: relative;
  z-index: 1;
}
.add-btn.added {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}

/* Hidden card */
.merch-card.hidden {
  display: none;
}

/* ---- FORM SECTION ---- */
.form-section {
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.form-inner {
  max-width: 680px;
  margin: 0 auto;
}
.form-header {
  text-align: center;
  margin-bottom: 3rem;
}
.form-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}
.form-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.form-header p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Payment box */
.payment-box {
  background: rgba(13, 27, 110, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 2.5rem;
}
.payment-label {
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  opacity: 0.7;
}
.payment-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.payment-row:last-of-type {
  border-bottom: none;
}
.payment-key {
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  min-width: 120px;
}
.payment-val {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  flex: 1;
}
.copy-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  cursor: none;
  text-transform: uppercase;
  transition: background 0.2s;
  border-radius: 2px;
  white-space: nowrap;
}
.copy-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.payment-note {
  margin-top: 0.9rem;
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-align: center;
}

/* Cart summary */
.cart-summary {
  background: rgba(13, 27, 110, 0.3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
  display: none;
}
.cart-summary.visible {
  display: block;
}
.cart-title {
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-name {
  color: var(--white);
}
.cart-item-price {
  color: rgba(255, 255, 255, 0.7);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
}
.cart-remove {
  color: var(--muted);
  cursor: none;
  font-size: 0.65rem;
  margin-left: 0.5rem;
}
.cart-remove:hover {
  color: var(--white);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  font-family: "Playfair Display", serif;
  color: var(--white);
}
.cart-total-price {
  font-size: 1.2rem;
}

/* Form inputs */
.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  cursor: none;
  border-radius: 4px;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.form-group select option {
  background: var(--navy-dark);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---- RECEIPT UPLOAD ---- */
.required-star {
  color: rgba(255, 100, 100, 0.9);
  margin-left: 2px;
}
.upload-wrap {
  border: 2px dashed rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.2s;
  background: rgba(13, 27, 110, 0.35);
  position: relative;
}
.upload-wrap:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(13, 27, 110, 0.55);
  transform: translateY(-1px);
}
.upload-wrap.has-file {
  border-color: #ffffff;
  border-style: solid;
  background: rgba(13, 27, 110, 0.5);
}
.upload-icon {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
  transition:
    color 0.3s,
    transform 0.3s;
}
.upload-wrap:hover .upload-icon {
  color: #ffffff;
  transform: translateY(-3px);
}
.upload-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.4rem;
}
.upload-hint {
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.upload-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}
.upload-preview img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.upload-preview span {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  word-break: break-all;
}
.upload-success-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-family: "DM Mono", monospace;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-top: 0.5rem;
}

/* Submit */
.submit-btn {
  width: 100%;
  background: var(--white);
  border: none;
  color: var(--navy-dark);
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1.1rem;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    transform 0.2s;
  border-radius: 4px;
  margin-top: 0.5rem;
}
.submit-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 110, 0.12);
  transform: translateX(-100%) skew(-15deg);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.submit-btn:hover::after {
  transform: translateX(120%) skew(-15deg);
}
.submit-btn:active {
  transform: scale(0.99);
}

/* ---- FOOTER ---- */
footer {
  padding: 3.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--navy-dark);
}
.footer-logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
  font-family: "DM Mono", monospace;
}

/* ---- SUCCESS OVERLAY ---- */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 66, 0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.success-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.success-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}
.success-overlay h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--white);
  text-align: center;
}
.success-overlay p {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
  max-width: 360px;
  line-height: 1.8;
}
.success-close {
  background: var(--white);
  border: none;
  color: var(--navy-dark);
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  padding: 0.75rem 2.2rem;
  cursor: none;
  text-transform: uppercase;
  transition: background 0.2s;
  border-radius: 2px;
  margin-top: 0.5rem;
}
.success-close:hover {
  background: var(--off-white);
}

/* ---- UTILITIES ---- */
.divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  margin: 0 auto 1.5rem;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- KEYFRAMES ---- */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .hero-logo {
    width: 85px;
    height: 85px;
  }
  .merch-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
