@import url('https://fonts.googleapis.com/css2?family=Anton&family=Heebo:wght@600;700;800;900&family=Inter:wght@400;600;800;900&family=Permanent+Marker&display=swap');

:root {
  --black: #070707;
  --black-soft: #101010;
  --white: #f5f1ea;
  --paper: #f2eee6;
  --ink: #111111;
  --pink: #ff2f7d;
  --muted: #6e6a63;
  --line: rgba(255, 255, 255, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  overflow-x: clip;
}

main,
.site-footer {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  main,
  .site-footer {
    overflow-x: hidden;
  }
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, #fff 1px, transparent 1px);
  background-size: 18px 18px, 27px 27px;
  mix-blend-mode: screen;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  background: rgba(7, 7, 7, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px clamp(18px, 4vw, 48px);
}

.brand,
.desktop-nav a,
.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.brand-logo {
  width: 92px;
  max-height: 42px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.site-footer a {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle,
.menu-toggle,
.menu-close {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.lang-toggle {
  min-width: 46px;
  padding: 9px 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 9px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.menu-close {
  width: 42px;
  height: 42px;
  font-size: 28px;
  line-height: 1;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(0, 0, 0, 0.72);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(88vw, 380px);
  max-width: 100vw;
  height: 100vh;
  overflow-y: auto;
  padding: 20px;
  background: var(--black);
  border-left: 1px solid var(--line);
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.open {
  display: block;
  visibility: visible;
  pointer-events: auto;
}

[dir='rtl'] .mobile-menu {
  right: auto;
  left: 0;
  border-left: 0;
  border-right: 1px solid var(--line);
}

[dir='rtl'] .mobile-menu.open {
  transform: none;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-menu-logo {
  width: 92px;
}

.mobile-lang-toggle {
  width: 100%;
  margin-bottom: 20px;
  padding: 13px 14px;
  text-align: center;
}

.mobile-menu nav {
  display: grid;
  gap: 10px;
}

.mobile-menu nav a {
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.btn,
.btn-small,
.waitlist-form button {
  border: 0;
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 14px 20px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000;
}

.btn-small {
  padding: 10px 14px;
  font-size: 12px;
}

.waitlist-form button {
  box-shadow: none;
  min-width: 150px;
}

.waitlist-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.section-black {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.hero,
.drop-banner,
.section-light,
.section-black.control,
.final-cta,
.waitlist-strip,
.site-footer {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 4vw, 48px);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-badge {
  position: relative;
  z-index: 2;
  width: min(88%, 430px);
  filter: drop-shadow(14px 18px 0 rgba(255, 47, 125, 0.18));
  transition:
    opacity 0.28s ease,
    filter 0.28s ease,
    transform 0.28s ease;
  transform-origin: center;
}

.hero-visual.is-roulette-active .hero-badge {
  opacity: 0.2;
  transform: scale(0.965);
  filter:
    brightness(0.42)
    contrast(0.9)
    drop-shadow(4px 6px 0 rgba(255, 47, 125, 0.12));
}

.hero-visual.is-brand-snap .hero-badge {
  animation: pigBadgeSnap 0.84s ease-in-out;
}

.poster-grid {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 112px);
  gap: 18px;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.poster-grid span {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0.08;
  transform: scale(0.9);
  transform-origin: center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    filter 0.2s ease;
  will-change: opacity, transform, filter;
}

.hero-visual.is-brand-rest .poster-grid span {
  opacity: 0.06;
}

.poster-grid span.is-active-poster {
  opacity: 1;
  transform: scale(1.16) rotate(1deg);
  filter: brightness(1.35);
}

.poster-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.24));
}

@keyframes pigBadgeSnap {
  0%,
  100% {
    transform: scale(1);
    filter:
      brightness(1)
      contrast(1)
      drop-shadow(14px 18px 0 rgba(255, 47, 125, 0.18));
  }

  22% {
    transform: scale(0.94) rotate(-1.2deg);
    filter:
      brightness(0.75)
      contrast(1.25)
      drop-shadow(5px 7px 0 rgba(255, 47, 125, 0.34));
  }

  52% {
    transform: scale(1.055) rotate(1deg);
    filter:
      brightness(1.28)
      contrast(1.35)
      drop-shadow(20px 23px 0 rgba(255, 47, 125, 0.38));
  }

  72% {
    transform: scale(0.99) rotate(-0.35deg);
    filter:
      brightness(1.08)
      contrast(1.15)
      drop-shadow(10px 13px 0 rgba(255, 47, 125, 0.26));
  }
}

.eyebrow {
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
.drop-banner h2,
.handwritten,
.sticker,
.footer-brand-logo + p {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 0.95;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 760px;
  font-size: clamp(58px, 10vw, 116px);
}

h1 span,
h2 span,
.waitlist-strip h2 span,
.final-cta h2 span {
  color: var(--pink);
}

.hero-sub {
  max-width: 520px;
  margin: 24px 0 28px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.waitlist-form {
  display: flex;
  max-width: 540px;
  border: 2px solid var(--black);
}

.section-black .waitlist-form {
  border-color: rgba(255, 255, 255, 0.22);
}

.waitlist-form input[type='email'] {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 16px;
  font-size: 15px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-help {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.section-light .form-help {
  color: var(--ink);
}

.form-help.error {
  color: var(--pink);
}

.microcopy {
  color: #c8c3ba;
  font-size: 13px;
  margin-top: 14px;
}

.drop-banner {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  padding: 34px clamp(18px, 4vw, 48px);
}

.handwritten {
  color: var(--pink);
  font-family: 'Permanent Marker', Anton, Impact, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 0.9;
  transform: rotate(-5deg);
}

.drop-banner .handwritten {
  animation: dropSoonPulse 2.8s ease-in-out infinite;
}

@keyframes dropSoonPulse {
  0%,
  100% {
    transform: rotate(-5deg) scale(1);
  }

  50% {
    transform: rotate(-4deg) scale(1.04);
  }
}

.section-divider {
  display: block;
  width: 100%;
  height: 6px;
  margin: 0;
  border: 0;
  background: var(--pink);
}

.drop-banner h2 {
  font-size: 32px;
}

.drop-banner p {
  margin-bottom: 0;
  font-weight: 700;
}

.stamp {
  background: var(--black);
  color: var(--white);
  padding: 16px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.section-light,
.section-black.control,
.final-cta,
.waitlist-strip {
  padding: clamp(52px, 7vw, 90px) clamp(18px, 4vw, 48px);
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading h2,
.quality-copy h2,
.control h2,
.final-cta h2,
.waitlist-strip h2 {
  font-size: clamp(38px, 6vw, 72px);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 22px;
}

.step-card,
.vibe-card,
details {
  background: #fffaf2;
  border: 2px solid var(--black);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
  padding: 24px;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.step-icon,
.pig-card-icon {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  min-height: 52px;
  margin-bottom: 16px;
  border: 2px solid currentColor;
  font-family: Anton, Impact, sans-serif;
  font-size: 24px;
}

.step-card h3,
.vibe-card h3 {
  font-family: Anton, Impact, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

.step-card p,
.vibe-card p {
  color: #35322e;
  font-weight: 650;
  line-height: 1.4;
}

.arrow {
  align-self: center;
  color: var(--pink);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.12);
}

.center-note {
  text-align: center;
  margin: 28px 0 0;
  font-weight: 900;
}

.bordered {
  border-top: 2px solid #000;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vibe-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.vibe-card-head {
  position: relative;
  width: 100%;
  min-height: 102px;
  margin-bottom: 14px;
}

.vibe-card-head > div:first-child {
  min-width: 0;
  padding-right: 112px;
}

.vibe-image-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  width: 102px;
  height: 102px;
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
  background: var(--black);
  box-shadow:
    4px 4px 0 var(--pink),
    7px 7px 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transform: rotate(3deg);
}

.vibe-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.vibe-card[data-vibe='loud'] .vibe-image-placeholder {
  transform: rotate(-4deg);
}

.vibe-card[data-vibe='dumb'] .vibe-image-placeholder {
  transform: rotate(2deg);
}

.vibe-card[data-vibe='dark'] .vibe-image-placeholder {
  transform: rotate(-2deg);
}

.vibe-card[data-vibe='weird'] .vibe-image-placeholder {
  transform: rotate(4deg);
}

.vibe-card[data-vibe='random'] .vibe-image-placeholder {
  transform: rotate(-3deg);
}

.vibe-card[data-vibe='control'] .vibe-image-placeholder {
  transform: rotate(3deg);
}

.vibe-card:hover {
  box-shadow:
    6px 6px 0 rgba(0, 0, 0, 0.15),
    0 0 0 2px var(--pink);
  transform: translateY(-3px);
}

.vibe-card.is-vibe-picked {
  box-shadow:
    8px 8px 0 var(--pink),
    0 0 0 2px var(--black);
}

.vibe-card button,
.vibe-pick-btn {
  width: 100%;
  margin-top: auto;
  border: 2px solid currentColor;
  background: transparent;
  padding: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.vibe-pick-btn:hover {
  background: var(--black);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--pink);
}

.vibe-card.is-vibe-picked .vibe-pick-btn {
  background: var(--pink);
  color: #fff;
  border-color: var(--black);
  box-shadow: 3px 3px 0 var(--black);
}

.badge {
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--pink);
  color: #fff;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.waitlist-strip,
.final-cta,
.control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.waitlist-strip .form-help,
.final-cta .form-help {
  grid-column: 2;
}

.waitlist-strip p,
.final-cta p,
.control p {
  font-size: 18px;
  line-height: 1.5;
}

.quality {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.quality-image {
  position: relative;
  min-height: 360px;
}

.mock-shirt {
  position: absolute;
  inset: 20px;
  display: grid;
  place-items: center;
  background: #0d0d0d;
  color: var(--white);
  clip-path: polygon(18% 0, 82% 0, 100% 20%, 84% 40%, 84% 100%, 16% 100%, 16% 40%, 0 20%);
}

.mock-shirt strong {
  font-family: Anton, Impact, sans-serif;
  font-size: 74px;
}

.sticker {
  position: absolute;
  left: 22px;
  bottom: 42px;
  background: var(--pink);
  color: #000;
  padding: 12px 16px;
  font-size: 27px;
  transform: rotate(-8deg);
}

.quality-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.quality-points h3 {
  font-size: 15px;
  text-transform: uppercase;
}

.quality-points p {
  color: var(--muted);
  font-weight: 650;
}

.section-sub {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.size-chart {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.size-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.size-layout .size-warning {
  grid-column: 1 / -1;
}

.size-table-wrap {
  overflow-x: auto;
  border: 2px solid var(--black);
  background: #fffaf2;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.16);
}

.size-fit-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
  border-bottom: 2px solid var(--black);
  background: #fffaf2;
}

.size-fit-selector button {
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  padding: 10px 14px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.12);
}

.size-fit-selector button.active {
  background: var(--black);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--pink);
}

.size-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
}

.size-table th,
.size-table td {
  border-bottom: 2px solid var(--black);
  padding: 18px 16px;
  text-align: left;
  font-weight: 900;
}

.size-table th {
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-table td:first-child {
  font-family: Anton, Impact, sans-serif;
  font-size: 30px;
}

.size-table tr:last-child td {
  border-bottom: 0;
}

.size-notes {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  padding: 26px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.16);
}

.size-notes h3 {
  font-family: Anton, Impact, sans-serif;
  font-size: 34px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.size-notes ul {
  margin: 0;
  padding-left: 20px;
}

.size-notes li {
  margin: 0 0 12px;
  font-weight: 750;
  line-height: 1.45;
}

.size-warning {
  margin-top: 20px;
  background: var(--pink);
  color: #000;
  padding: 14px;
  font-weight: 900;
  transform: rotate(-1deg);
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}

.handwritten.small {
  font-size: 32px;
}

.shirt-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  padding: 18px 0 8px;
}

.sample-card {
  position: relative;
  min-width: 0;
  background: #fffaf2;
  border: 2px solid var(--black);
  padding: 20px 16px 16px;
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.14);
  transform: rotate(-4deg) translateY(18px);
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.sample-card:nth-child(2) {
  transform: rotate(3deg) translateY(4px);
}

.sample-card:nth-child(3) {
  z-index: 2;
  padding: 24px 18px 18px;
  box-shadow:
    9px 11px 0 rgba(0, 0, 0, 0.18),
    -5px -5px 0 rgba(255, 47, 125, 0.16);
  transform: scale(1.08) rotate(-1deg);
}

.sample-card:nth-child(4) {
  transform: rotate(2deg) translateY(8px);
}

.sample-card:nth-child(5) {
  transform: rotate(5deg) translateY(22px);
}

.sample-card:hover {
  box-shadow:
    10px 12px 0 var(--pink),
    14px 16px 0 rgba(0, 0, 0, 0.16);
  transform: rotate(0deg) translateY(-8px);
}

.sample-card.featured:hover {
  transform: scale(1.1) rotate(0deg) translateY(-8px);
}

.sample-card p {
  margin: 14px 0 0;
  color: var(--pink);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 0.95;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  transform: rotate(-4deg);
}

.sample-tape {
  position: absolute;
  top: -13px;
  left: 50%;
  z-index: 2;
  width: 56px;
  height: 18px;
  background: var(--pink);
  opacity: 0.92;
  transform: translateX(-50%) rotate(-5deg);
}

.sample-card:nth-child(even) .sample-tape {
  transform: translateX(-50%) rotate(7deg);
}

.sample-shirt {
  position: relative;
  width: 100%;
  min-height: 190px;
}

.mini-shirt {
  width: 100%;
  min-height: 190px;
  background: var(--black);
  clip-path: polygon(18% 0, 82% 0, 100% 20%, 84% 38%, 84% 100%, 16% 100%, 16% 38%, 0 20%);
}

.mini-shirt.white {
  background: #fff;
  border: 2px solid #000;
}

.sample-shirt img {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 88%;
  max-height: 88%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.rules-box {
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 24px;
}

.rules-box p {
  font-weight: 900;
  margin: 0 0 14px;
}

.rules-box p::before {
  content: '✓ ';
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 16px;
}

details {
  box-shadow: none;
}

summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: '+';
  display: inline-block;
  margin-inline-end: 10px;
  color: var(--pink);
  font-family: Anton, Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
  vertical-align: -2px;
}

details[open] summary::before {
  content: '−';
}

details p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line);
  padding: 44px clamp(18px, 4vw, 48px) 64px;
}

.footer-brand-logo {
  width: 142px;
  margin-bottom: 14px;
}

.site-footer h4 {
  margin: 0 0 14px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  color: #c8c3ba;
  margin: 8px 0;
  text-transform: none;
}

.footer-domain {
  color: #c8c3ba;
  font-weight: 800;
  line-height: 1.45;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  max-width: min(92vw, 560px);
  background: var(--pink);
  color: #fff;
  padding: 14px 20px;
  font-weight: 900;
  text-align: center;
  transform: translateX(-50%) translateY(140%);
  transition: 0.25s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

body.has-sticky-waitlist .toast.show {
  bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

.sticky-waitlist {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  padding: 10px clamp(14px, 4vw, 24px) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 7, 7, 0.96);
  border-top: 2px solid var(--pink);
  backdrop-filter: blur(10px);
  transform: translateY(110%);
  transition: transform 0.28s ease;
}

.sticky-waitlist.is-visible {
  display: block;
  transform: translateY(0);
}

.sticky-waitlist .btn {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: block;
  text-align: center;
}

.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;
}

.simple-page {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
}

.simple-page main {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 20px;
}

.simple-card {
  border: 1px solid var(--line);
  background: var(--black-soft);
  padding: clamp(24px, 5vw, 48px);
}

.simple-card h1 {
  font-size: clamp(44px, 8vw, 92px);
}

.simple-card p,
.simple-card li {
  color: #d9d4ca;
  font-weight: 700;
  line-height: 1.65;
}

.simple-card p a,
.simple-card li a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 47, 125, 0.55);
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.simple-card p a:hover,
.simple-card li a:hover {
  color: var(--pink);
  text-decoration-color: var(--pink);
}

.simple-card p a:focus-visible,
.simple-card li a:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

.simple-logo-link {
  display: inline-block;
  margin: 0 0 24px;
}

.simple-logo-link:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}

.simple-logo {
  display: block;
  width: min(260px, 80%);
}

.simple-lang {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.simple-card h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: clamp(28px, 5vw, 44px);
}

.status-box {
  margin-top: 24px;
  border: 1px solid var(--line);
  padding: 18px;
  font-weight: 900;
}

.status-box.ok {
  border-color: rgba(38, 214, 134, 0.7);
}

.status-box.error {
  border-color: var(--pink);
  color: var(--pink);
}

[dir='rtl'] {
  text-align: right;
}

[dir='rtl'] .site-header-inner,
[dir='rtl'] .header-actions,
[dir='rtl'] .mobile-menu-head {
  direction: rtl;
}

[dir='rtl'] .mobile-menu nav a,
[dir='rtl'] .vibe-card,
[dir='rtl'] .step-card,
[dir='rtl'] details {
  text-align: right;
}

[dir='rtl'] .vibe-card {
  align-items: flex-start;
}

[dir='rtl'] .vibe-card-head > div:first-child {
  padding-right: 0;
  padding-left: 112px;
}

[dir='rtl'] .vibe-image-placeholder {
  right: auto;
  left: 0;
}

[dir='rtl'] .badge {
  right: auto;
  left: 10px;
}

[dir='rtl'] .waitlist-form input[type='email'] {
  direction: ltr;
  text-align: left;
}

[dir='rtl'] .size-table th,
[dir='rtl'] .size-table td {
  text-align: right;
}

[dir='rtl'] .size-notes ul {
  padding-left: 0;
  padding-right: 20px;
}

[dir='rtl'] .split {
  text-align: right;
}

/* Hebrew / RTL typography — match English visual scale */
[dir='rtl'] h1,
[dir='rtl'] h2,
[dir='rtl'] h3,
[dir='rtl'] .drop-banner h2,
[dir='rtl'] .handwritten,
[dir='rtl'] .sticker,
[dir='rtl'] .footer-brand-logo + p,
[dir='rtl'] .section-heading h2,
[dir='rtl'] .quality-copy h2,
[dir='rtl'] .control h2,
[dir='rtl'] .final-cta h2,
[dir='rtl'] .waitlist-strip h2,
[dir='rtl'] .step-card h3,
[dir='rtl'] .vibe-card h3,
[dir='rtl'] .size-notes h3,
[dir='rtl'] .sample-card p,
[dir='rtl'] .mock-shirt strong,
[dir='rtl'] .simple-card h1,
[dir='rtl'] .simple-card h2 {
  font-family: Heebo, Inter, Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

[dir='rtl'] .simple-lang {
  justify-content: flex-start;
}

[dir='rtl'] h1 {
  font-size: clamp(52px, 9vw, 104px);
  line-height: 1.08;
}

[dir='rtl'] h2 {
  line-height: 1.08;
}

[dir='rtl'] .section-heading h2,
[dir='rtl'] .quality-copy h2,
[dir='rtl'] .control h2,
[dir='rtl'] .final-cta h2,
[dir='rtl'] .waitlist-strip h2 {
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.1;
}

[dir='rtl'] .drop-banner h2 {
  font-size: 30px;
  line-height: 1.15;
}

[dir='rtl'] .desktop-nav a {
  font-family: Heebo, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
}

[dir='rtl'] .mobile-menu nav a {
  font-family: Heebo, Inter, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
}

[dir='rtl'] .btn,
[dir='rtl'] .btn-small,
[dir='rtl'] .waitlist-form button,
[dir='rtl'] .vibe-pick-btn,
[dir='rtl'] .size-fit-selector button,
[dir='rtl'] .lang-toggle,
[dir='rtl'] .menu-toggle,
[dir='rtl'] .menu-close {
  font-family: Heebo, Inter, Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
}

[dir='rtl'] .btn-small {
  font-size: 13px;
}

[dir='rtl'] .eyebrow {
  font-family: Heebo, Inter, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

[dir='rtl'] .handwritten {
  font-family: Heebo, Inter, Arial, sans-serif;
  font-size: 36px;
  font-weight: 800;
}

[dir='rtl'] .step-card h3,
[dir='rtl'] .vibe-card h3 {
  font-size: 26px;
  line-height: 1.15;
}

[dir='rtl'] .step-icon,
[dir='rtl'] .pig-card-icon {
  font-family: Heebo, Inter, Arial, sans-serif;
  font-size: 22px;
}

[dir='rtl'] .size-table th {
  font-family: Heebo, Inter, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

[dir='rtl'] .size-table td:first-child {
  font-family: Heebo, Inter, Arial, sans-serif;
  font-size: 28px;
}

[dir='rtl'] .size-notes h3 {
  font-size: 32px;
  line-height: 1.1;
}

[dir='rtl'] .site-footer h4 {
  font-family: Heebo, Inter, Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

[dir='rtl'] .stamp,
[dir='rtl'] .badge {
  font-family: Heebo, Inter, Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

[dir='rtl'] .sample-card p {
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.05;
}

[dir='rtl'] .mock-shirt strong {
  font-size: 68px;
}

[dir='rtl'] .quality-points h3 {
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}

[dir='rtl'] .rules-box p {
  letter-spacing: 0;
}

[dir='rtl'] summary::before {
  font-family: Heebo, Inter, Arial, sans-serif;
}

[dir='rtl'] .simple-card h1 {
  font-size: clamp(40px, 7.5vw, 86px);
  line-height: 1.1;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header-inner {
    padding: 14px 16px;
  }

  .brand-logo {
    width: 80px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 390px;
    margin-top: 10px;
  }

  .hero-badge {
    width: min(86vw, 390px);
  }

  .drop-banner,
  .quality,
  .size-layout,
  .waitlist-strip,
  .final-cta,
  .control {
    grid-template-columns: 1fr;
  }

  .waitlist-strip .form-help,
  .final-cta .form-help {
    grid-column: 1;
  }

  .drop-banner {
    text-align: center;
  }

  [dir='rtl'] .drop-banner,
  [dir='rtl'] .section-heading {
    text-align: center;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  .vibe-grid,
  .faq-grid,
  .quality-points,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .shirt-row {
    display: flex;
    gap: 18px;
    margin-inline: -18px;
    padding: 28px 18px 18px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery {
    overflow: hidden;
  }

  .sample-card,
  .sample-card:nth-child(2),
  .sample-card:nth-child(3),
  .sample-card:nth-child(4),
  .sample-card:nth-child(5) {
    flex: 0 0 min(72vw, 260px);
    scroll-snap-align: center;
    transform: rotate(-2deg);
  }

  .sample-card:nth-child(even) {
    transform: rotate(2deg);
  }

  .sample-card.featured {
    transform: rotate(-1deg);
  }

  .sample-card:hover,
  .sample-card.featured:hover {
    transform: translateY(-6px);
  }

  .sample-shirt,
  .mini-shirt {
    min-height: 180px;
  }

  .size-table-wrap {
    overflow-x: visible;
  }

  .size-fit-selector {
    padding: 12px;
    gap: 8px;
  }

  .size-fit-selector button {
    flex: 1 1 calc(50% - 4px);
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.2;
  }

  [dir='rtl'] .size-fit-selector button {
    font-size: 12px;
    line-height: 1.3;
  }

  .size-table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  .size-table th,
  .size-table td {
    padding: 12px 6px;
    font-size: 12px;
    line-height: 1.25;
    word-break: break-word;
  }

  .size-table th {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  [dir='rtl'] .size-table th {
    font-size: 11px;
    letter-spacing: 0;
  }

  .size-table td:first-child {
    font-size: 22px;
    line-height: 1;
  }

  [dir='rtl'] .size-table td:first-child {
    font-size: 24px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form button {
    width: 100%;
  }

  .split {
    display: block;
  }

  .poster-grid {
    left: 50%;
    top: 50%;
    grid-template-columns: repeat(4, 72px);
    gap: 10px;
    transform: translate(-50%, -50%) rotate(-8deg);
  }

  .poster-grid span {
    width: 72px;
    height: 72px;
  }

  .poster-grid img {
    width: 100%;
    height: 100%;
  }

}

@media (min-width: 901px) {
  .sticky-waitlist {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .drop-banner .handwritten {
    animation: none;
  }

  .vibe-card,
  .vibe-card:hover,
  .sticky-waitlist {
    transition: none;
  }

  .hero-badge,
  .poster-grid span {
    animation: none;
    transition: none;
  }

  .hero-visual.is-roulette-active .hero-badge {
    opacity: 1;
    transform: none;
    filter: drop-shadow(14px 18px 0 rgba(255, 47, 125, 0.18));
  }

  .poster-grid span {
    opacity: 0.18;
    transform: scale(1);
    filter: none;
  }

  .poster-grid span.is-active-poster {
    opacity: 0.32;
    transform: scale(1);
    filter: none;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 54px;
  }

  [dir='rtl'] h1 {
    font-size: 50px;
    line-height: 1.1;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn-small {
    display: none;
  }

  .section-light,
  .section-black.control,
  .final-cta,
  .waitlist-strip,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-visual {
    min-height: 330px;
    margin-bottom: -24px;
  }

  .mobile-menu {
    width: 92vw;
  }

  .drop-banner,
  .hero,
  .section-light,
  .section-black.control,
  .final-cta,
  .waitlist-strip,
  .site-footer {
    overflow: hidden;
  }

  .gallery {
    overflow: hidden;
  }

  .size-table th,
  .size-table td {
    padding: 10px 4px;
  }

  .size-table th {
    font-size: 9px;
  }

  .size-table td:first-child {
    font-size: 20px;
  }

}
