/* ===========================================================
   KRAVVY — Coming Soon / T-Shirt Builder
   Premium streetwear · dark canvas · electric lime
   =========================================================== */

:root {
  --bg: #0a0a0a;
  --bg-elev: #111113;
  --bg-soft: #161618;
  --line: rgba(245, 245, 245, 0.08);
  --line-strong: rgba(245, 245, 245, 0.18);
  --text: #f5f5f5;
  --text-dim: rgba(245, 245, 245, 0.6);
  --text-mute: rgba(245, 245, 245, 0.4);
  --accent: #c8ff00;
  --accent-soft: rgba(200, 255, 0, 0.18);
  --accent-glow: rgba(200, 255, 0, 0.45);
  --bone: #f5f5f5;
  --danger: #ff3b3b;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-deep: 0 30px 80px -20px rgba(0, 0, 0, 0.8);

  --container: min(1280px, 92vw);

  --font-display: "Bebas Neue", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Share Tech Mono", ui-monospace, "SFMono-Regular", monospace;
  --font-jp: "Noto Sans JP", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}

@media (hover: none), (pointer: coarse) {
  html,
  body {
    cursor: auto;
  }
  .cursor-glow,
  .cursor-dot {
    display: none !important;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: none;
}

@media (hover: none), (pointer: coarse) {
  button {
    cursor: pointer;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Page-wide texture layers === */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9   0 0 0 0 0.9   0 0 0 0 0.9   0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 79;
  opacity: 0.06;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.6) 0,
    rgba(255, 255, 255, 0.6) 1px,
    transparent 1px,
    transparent 4px
  );
  animation: scan-shift 12s linear infinite;
}

@keyframes scan-shift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 4px;
  }
}

/* === Custom cursor === */

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.15s ease, height 0.15s ease, background 0.2s ease;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 70;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(200, 255, 0, 0.18) 0%,
    rgba(200, 255, 0, 0.08) 30%,
    rgba(200, 255, 0, 0) 70%
  );
  mix-blend-mode: screen;
  transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  filter: blur(8px);
}

body.is-hovering-cta .cursor-dot {
  width: 38px;
  height: 38px;
  background: rgba(200, 255, 0, 0.25);
  border: 1px solid var(--accent);
}

body.is-hovering-cta .cursor-glow {
  width: 420px;
  height: 420px;
}

/* === Topbar === */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0) 100%);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
}

.topbar__divider {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
}

.topbar__pulse {
  position: relative;
  color: var(--accent);
}
.topbar__pulse::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent-glow);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: translateY(-50%) scale(0.7);
  }
}

@media (max-width: 720px) {
  .topbar {
    font-size: 10px;
    gap: 10px;
  }
  .topbar__pulse {
    display: none;
  }
}

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

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 110px 24px 80px;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #050505;
  z-index: -3;
  filter: brightness(0.85) contrast(1.05) saturate(1.1);
  transition: transform 0.6s ease;
}

/* On portrait / narrow viewports the wide banner art shrinks to a sliver,
   so swap to cover so the texture still fills the frame. */
@media (max-aspect-ratio: 1/1) {
  .hero__bg {
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) contrast(1.05);
  }
}

.hero__bg-grad {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200, 255, 0, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(123, 63, 228, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.55) 60%, var(--bg) 100%);
}

/* Side rails */
.hero__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 110px 0 60px;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  pointer-events: none;
}
.hero__rail--left {
  left: 0;
  border-right: 1px solid var(--line);
}
.hero__rail--right {
  right: 0;
  border-left: 1px solid var(--line);
}
.hero__rail span:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.05em;
  writing-mode: horizontal-tb;
}
.hero__rail-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__rail--right .hero__rail-text {
  transform: rotate(0deg);
}
.hero__rail-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
}

@media (max-width: 720px) {
  .hero__rail {
    display: none;
  }
}

/* Floaters */
.floaters {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: rgba(245, 245, 245, 0.18);
}

.floater {
  position: absolute;
  opacity: 0.4;
}

.floater--tag {
  top: 18%;
  left: 8%;
  width: 110px;
  animation: drift 18s ease-in-out infinite;
}

.floater--barcode {
  bottom: 14%;
  right: 7%;
  width: 130px;
  color: rgba(245, 245, 245, 0.35);
  animation: drift 22s ease-in-out infinite reverse;
}

.floater--star {
  top: 30%;
  right: 12%;
  width: 30px;
  color: var(--accent);
  opacity: 0.6;
  animation: drift 14s ease-in-out infinite, spin 30s linear infinite;
}

.floater--circle {
  bottom: 22%;
  left: 6%;
  width: 90px;
  animation: drift 26s ease-in-out infinite reverse, spin 60s linear infinite;
}

.floater--cross {
  top: 18%;
  right: 22%;
  width: 24px;
  color: var(--accent);
  opacity: 0.5;
  animation: drift 16s ease-in-out infinite reverse;
}

.floater--jp {
  position: absolute;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 22px;
  color: rgba(245, 245, 245, 0.12);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  animation: drift 20s ease-in-out infinite;
}
.floater--jp {
  top: 25%;
  left: 18%;
}
.floater--jp2 {
  bottom: 18%;
  right: 18%;
  font-size: 14px;
  color: rgba(200, 255, 0, 0.25);
  writing-mode: horizontal-tb;
  animation-duration: 24s;
}

@keyframes drift {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(12px, -10px);
  }
  50% {
    transform: translate(-8px, 14px);
  }
  75% {
    transform: translate(10px, 6px);
  }
}

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

/* Hero content */
.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 880px;
  width: 100%;
  will-change: transform;
}

.crown {
  width: 64px;
  color: var(--accent);
  opacity: 0.95;
  filter: drop-shadow(0 0 8px var(--accent-glow));
  animation: float-soft 4s ease-in-out infinite;
}

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

.hero__logo {
  width: clamp(220px, 32vw, 380px);
  margin: -8px 0 4px;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.6));
}

/* Glitch headline */
.glitch {
  position: relative;
  margin: 4px 0 2px;
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--bone);
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.6);
  cursor: none;
}

.glitch span {
  display: block;
}

.glitch__noise {
  position: absolute;
  inset: 0;
  color: var(--accent);
  mix-blend-mode: screen;
  opacity: 0.85;
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
  transform: translate(-2px, 0);
  animation: glitch-1 4s steps(2, end) infinite;
}

.glitch__noise--2 {
  color: #ff3b8a;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  transform: translate(2px, 0);
  animation: glitch-2 5.5s steps(2, end) infinite;
}

@keyframes glitch-1 {
  0%, 88%, 100% {
    transform: translate(-2px, 0);
    clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
  }
  90% {
    transform: translate(-6px, -2px);
    clip-path: polygon(0 4%, 100% 4%, 100% 28%, 0 28%);
  }
  93% {
    transform: translate(4px, 1px);
    clip-path: polygon(0 50%, 100% 50%, 100% 70%, 0 70%);
  }
  96% {
    transform: translate(-3px, 2px);
    clip-path: polygon(0 10%, 100% 10%, 100% 22%, 0 22%);
  }
}

@keyframes glitch-2 {
  0%, 92%, 100% {
    transform: translate(2px, 0);
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  }
  94% {
    transform: translate(6px, 2px);
    clip-path: polygon(0 70%, 100% 70%, 100% 86%, 0 86%);
  }
  97% {
    transform: translate(-3px, -2px);
    clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%);
  }
}

.glitch:hover {
  animation: flicker 0.4s steps(2, end) infinite;
}
.glitch:hover .glitch__noise {
  animation-duration: 0.8s;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  20% {
    opacity: 0.7;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
  70% {
    opacity: 1;
  }
  85% {
    opacity: 0.6;
  }
}

.hero__sub {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--text);
  text-transform: uppercase;
}
.hero__sub-line {
  display: inline-block;
  width: clamp(28px, 5vw, 60px);
  height: 1px;
  background: var(--text-dim);
}

/* Countdown */
.countdown {
  display: inline-flex;
  align-items: stretch;
  gap: 6px;
  padding: 12px 16px;
  margin-top: 14px;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-deep);
  position: relative;
}
.countdown::before,
.countdown::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--accent);
  opacity: 0.7;
}
.countdown::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.countdown::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.countdown__cell {
  min-width: 70px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.05), rgba(200, 255, 0, 0));
  border-radius: 8px;
  text-align: center;
}
.countdown__digit {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-shadow: 0 0 18px var(--accent-glow);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-mute);
}
.countdown__sep {
  align-self: center;
  font-family: var(--font-mono);
  font-size: clamp(20px, 3vw, 30px);
  color: var(--text-mute);
  padding: 0 2px;
}

@media (max-width: 480px) {
  .countdown__cell {
    min-width: 56px;
    padding: 6px;
  }
  .countdown {
    padding: 8px 10px;
  }
}

/* Chips */
.hero__chips {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
}

.hero__scroll {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.hero__scroll svg {
  width: 14px;
  height: 14px;
  animation: float-soft 1.6s ease-in-out infinite;
}
.hero__scroll:hover {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

/* Hero contact strip — pinned bottom-center, always visible above the fold */
.hero__contact {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--text);
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease;
}
.hero__contact-label {
  color: var(--text-mute);
}
.hero__contact-mail {
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-glow);
}
.hero__contact-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
.hero__contact:hover {
  border-color: var(--accent);
  background: rgba(200, 255, 0, 0.08);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 30px -12px var(--accent-glow);
}

@media (max-width: 720px) {
  .hero__contact {
    font-size: 10px;
    letter-spacing: 0.18em;
    padding: 8px 14px;
    bottom: 14px;
  }
  .hero__contact-label {
    display: none;
  }
}

/* ==========================================================
   SECTION TITLES
   ========================================================== */

.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 6px 0 14px;
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 0 22px var(--accent-glow);
}
.section-title__num {
  display: inline-block;
  margin-right: 12px;
  font-family: var(--font-mono);
  font-size: 0.28em;
  vertical-align: middle;
  color: var(--text-mute);
  letter-spacing: 0.3em;
}

.builder__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================
   BUILDER SECTION
   ========================================================== */

.builder {
  position: relative;
  width: 100%;
  padding: 100px 24px 80px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 255, 0, 0.06) 0%, transparent 50%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.builder__head {
  width: var(--container);
  margin: 0 auto 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.builder__intro {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 15px;
}

.builder__grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 1080px) {
  .builder__grid {
    grid-template-columns: 1fr 1fr;
  }
  .builder__controls {
    grid-column: 1 / -1;
    order: 3;
  }
}

@media (max-width: 720px) {
  .builder__grid {
    grid-template-columns: 1fr;
  }
}

/* Shirt card */
.shirt-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
  transform-style: preserve-3d;
  perspective: 900px;
  overflow: hidden;
  isolation: isolate;
}

.shirt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
    radial-gradient(at 80% 100%, rgba(200, 255, 0, 0.08), transparent 50%);
  z-index: 0;
}

.shirt-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft), 0 30px 80px -30px rgba(200, 255, 0, 0.25);
}

.shirt-card__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-mute);
  z-index: 1;
}

.shirt-card__stage {
  position: relative;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200, 255, 0, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #0d0d0f 0%, #050507 100%);
  border: 1px solid var(--line);
  padding: 18px;
  aspect-ratio: 4 / 4.6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.shirt-card__glow {
  position: absolute;
  inset: 8% 12%;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 255, 0, 0.08) 0%,
    transparent 65%
  );
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.shirt-card:hover .shirt-card__glow {
  opacity: 1;
}

.tee {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.6));
  transition: filter 0.4s ease, transform 0.5s ease;
  transform-style: preserve-3d;
}

.shirt-card:hover .tee {
  filter: drop-shadow(0 0 24px var(--accent-glow))
    drop-shadow(0 24px 40px rgba(0, 0, 0, 0.6));
}

/* Print group base */
.tee__print {
  transition: opacity 0.35s ease;
}

.shirt-card__sticker {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-mute);
  pointer-events: none;
}
.shirt-card__sticker--tl {
  top: 12px;
  left: 12px;
  width: 44px;
  color: var(--accent);
  animation: spin 30s linear infinite;
  opacity: 0.85;
}
.shirt-card__sticker--br {
  bottom: 14px;
  right: 14px;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-dim);
  backdrop-filter: blur(4px);
}

.shirt-card__title {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  z-index: 1;
}

.shirt-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text);
  z-index: 1;
}
.shirt-card__price-tag {
  padding: 4px 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.3em;
  background: var(--accent-soft);
}

/* Controls */
.builder__controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 4px 0;
}

.control {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.control__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.control__num {
  color: var(--accent);
}
.control__hint {
  margin-left: auto;
  color: var(--text);
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.25em;
}

.swatches {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.swatch {
  --c: #fff;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  outline: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.swatch::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.swatch:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06), 0 0 18px rgba(200, 255, 0, 0.4);
}
.swatch.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft), 0 0 18px var(--accent-glow);
}
.swatch.is-active::after {
  opacity: 1;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid var(--accent);
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.1), rgba(200, 255, 0, 0));
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  isolation: isolate;
}
.btn:hover {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 0 0 4px rgba(200, 255, 0, 0.15), 0 12px 30px -10px var(--accent-glow);
}
.btn:active {
  transform: translateY(1px);
}

.btn__label {
  position: relative;
  display: inline-block;
}
.btn:hover .btn__label::before,
.btn:hover .btn__label::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.btn:hover .btn__label::before {
  color: #ff3b8a;
  transform: translate(-1px, 0);
  mix-blend-mode: difference;
  animation: glitch-1 0.6s steps(2) infinite;
}
.btn:hover .btn__label::after {
  color: #00e0ff;
  transform: translate(1px, 0);
  mix-blend-mode: difference;
  animation: glitch-2 0.7s steps(2) infinite;
}

.btn__arrow {
  display: inline-flex;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}
.btn__arrow svg {
  width: 100%;
  height: 100%;
}

.btn__ripple {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
  z-index: -1;
}
.btn__ripple::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  top: var(--ry, 50%);
  left: var(--rx, 50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.8s ease;
  opacity: 0;
}
.btn.is-rippling .btn__ripple::before {
  width: 600px;
  height: 600px;
  opacity: 1;
  transition: width 0.6s ease, height 0.6s ease, opacity 0.8s ease;
}

.btn--randomize {
  width: 100%;
  justify-content: space-between;
}

/* Meta grid */
.control--meta {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-elev));
}
.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
}
.meta-grid > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.meta-grid > div:first-child,
.meta-grid > div:nth-child(2) {
  border-top: none;
  padding-top: 0;
}
.meta-grid span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-mute);
}
.meta-grid strong {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text);
}

/* ==========================================================
   CONTACT
   ========================================================== */

.contact {
  position: relative;
  padding: 100px 24px 80px;
  isolation: isolate;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(200, 255, 0, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(123, 63, 228, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #0d0d10 100%);
}

.contact__head {
  width: var(--container);
  margin: 0 auto 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__intro {
  max-width: 540px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 15px;
}

.contact__card {
  position: relative;
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  isolation: isolate;
}

.contact__card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background: conic-gradient(
    from 180deg,
    transparent 0deg,
    var(--accent-soft) 45deg,
    transparent 120deg,
    rgba(123, 63, 228, 0.25) 220deg,
    transparent 320deg,
    var(--accent-soft) 360deg
  );
  filter: blur(18px);
  opacity: 0.55;
  animation: spin 18s linear infinite;
}

@media (max-width: 720px) {
  .contact__card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--text-mute);
}

.field input,
.field textarea,
.select select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-mute);
  font-style: italic;
}

.field input:focus,
.field textarea:focus,
.select select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  background: rgba(0, 0, 0, 0.55);
}

.select {
  position: relative;
}
.select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  cursor: none;
}
.select__chev {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  color: var(--text-dim);
}
.select select option {
  background: #0a0a0a;
  color: var(--text);
}

.contact__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.btn--cta {
  padding: 16px 28px;
}
.contact__status {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}
.contact__status.is-success {
  color: var(--accent);
}
.contact__status.is-error {
  color: var(--danger);
}

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

.footer {
  position: relative;
  text-align: center;
  padding: 60px 24px 80px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__mark img {
  width: 80px;
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(200, 255, 0, 0.2));
}

.footer__mail {
  position: relative;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--text);
  padding: 4px 0;
}
.footer__mail span {
  position: relative;
}
.footer__mail span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  transition: right 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.footer__mail:hover span::after {
  right: 0;
}
.footer__mail:hover {
  color: var(--accent);
}

.footer__tag {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-mute);
  margin-top: 6px;
}
.footer__divider {
  width: 4px;
  height: 4px;
  background: var(--text-mute);
  border-radius: 50%;
}

/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

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