:root {
  --bg: #0b0b0d;
  --panel: #141418;
  --panel-2: #1c1c22;
  --ink: #f4f1ea;
  --muted: #9a978f;
  --accent: #ff2d55;
  --accent-2: #f4c430;
  --line: #26262e;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Beta bar */
.beta-bar {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  padding: 8px 14px; font-size: 13px;
  background: var(--accent-2); color: #000;
}
.beta-bar strong { font-weight: 900; }
.share-btn {
  background: #000; color: var(--accent-2); border: 0; border-radius: 999px;
  padding: 5px 13px; font-size: 12px; font-weight: 800; cursor: pointer;
}
.share-btn:active { transform: scale(.97); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px;
  background: rgba(11,11,13,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; text-decoration: none; }
/* Founder spec 2026-07-20 v2: horizontal one-line lockup at 3x the original
   wordmark block (~40px -> 120px). Wide image, so height drives the scale. */
.brand-logo { height: 120px; width: auto; display: block; }
@media (max-width: 720px) { .brand-logo { height: 88px; } }
@media (max-width: 460px) { .brand-logo { height: 64px; } }
.brand-mark {
  font-weight: 900; font-size: 26px; font-style: italic;
  color: var(--ink); text-transform: uppercase;
}
.brand-mark.alt { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.filters { display: flex; gap: 6px; }
.chip {
  background: var(--panel); color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: 13px; font-weight: 700; cursor: pointer;
  transition: .15s;
}
.chip:hover { color: var(--ink); }
.chip.is-active { background: var(--ink); color: #000; border-color: var(--ink); }
.cart-btn {
  background: var(--accent); color: #fff; border: 0; border-radius: 999px;
  padding: 8px 15px; font-size: 15px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
}
.cart-count {
  background: #fff; color: var(--accent); border-radius: 999px;
  min-width: 20px; height: 20px; padding: 0 5px; font-size: 12px;
  display: grid; place-items: center;
}

/* Hero */
.hero {
  text-align: center; padding: 70px 20px 40px;
  background: radial-gradient(1200px 400px at 50% -100px, #23131a, transparent);
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px); font-weight: 900; font-style: italic;
  line-height: 1.02; margin: 0 auto 16px; max-width: 900px; text-transform: uppercase;
}
.hero p { color: var(--muted); font-size: 17px; max-width: 560px; margin: 0 auto 24px; }
.hero p strong { color: var(--accent-2); }
.hero-cta {
  display: inline-block; background: var(--ink); color: #000;
  text-decoration: none; font-weight: 800; padding: 12px 26px; border-radius: 999px;
}

/* How the drops work */
.how { max-width: 1100px; margin: 0 auto; padding: 24px 20px 8px; text-align: center; }
.how h2 {
  font-size: clamp(22px, 4vw, 34px); font-weight: 900; font-style: italic;
  text-transform: uppercase; margin: 0 0 8px;
}
.how-sub { color: var(--muted); font-size: 15px; margin: 0 auto 26px; max-width: 520px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 720px) { .how-steps { grid-template-columns: 1fr; } }
.how-step {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; text-align: left;
}
.how-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--accent); color: #fff; font-weight: 900; font-style: italic; font-size: 15px;
  margin-bottom: 12px;
}
.how-step h3 {
  font-size: 17px; font-weight: 900; font-style: italic; text-transform: uppercase;
  margin: 0 0 8px; line-height: 1.1;
}
.how-step p { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0; }
.how-step strong { color: var(--accent-2); }

/* Tabs */
.tabs {
  display: flex; justify-content: center; gap: 10px;
  padding: 8px 20px 0; max-width: 1240px; margin: 0 auto;
}
.tab {
  background: var(--panel); color: var(--muted);
  border: 1px solid var(--line); border-radius: 12px 12px 0 0; border-bottom: 0;
  padding: 12px 22px; font-size: 15px; font-weight: 900; font-style: italic;
  text-transform: uppercase; letter-spacing: .3px; cursor: pointer; transition: .15s;
}
.tab:hover { color: var(--ink); }
.tab.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Grid */
.grid {
  display: grid; gap: 20px; padding: 30px 20px 70px;
  max-width: 1240px; margin: 0 auto;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
/* Offensive tab: Standard | Pattaya POV split (founder spec: 2 cols + 2 cols) */
.grid.split-mode { display: block; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.split .grid-sub { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.split-head {
  margin: 0 0 14px; padding-bottom: 8px;
  font-size: 18px; font-weight: 900; font-style: italic; text-transform: uppercase;
  letter-spacing: .4px; border-bottom: 2px solid var(--ink);
}
.split-head.pov { border-bottom-color: var(--accent); color: var(--accent); }
/* Mobile (founder spec): keep BOTH lanes side by side, one card wide each. */
@media (max-width: 900px) {
  .split { gap: 12px; }
  .split .grid-sub { grid-template-columns: 1fr; gap: 12px; }
  .split-head { font-size: 14px; }
}
@media (max-width: 640px) {
  .grid { padding: 20px 10px 50px; }
  .btn-row { flex-direction: column; gap: 6px; }
  .card-body { padding: 10px 10px 12px; }
  .card-name { font-size: 14px; }
  .card-ref { font-size: 11px; }
  .card-price { font-size: 15px; }
}

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: .18s;
}
.card:hover { transform: translateY(-4px); border-color: #3a3a44; }
.card-img { position: relative; aspect-ratio: 1; background: #000; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.badge-spicy {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,.6); color: #ffb3b3; border: 1px solid #ff2d5555;
  font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.badge-filthy {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 900; padding: 4px 9px; border-radius: 999px;
}
.badge-soon {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,.65); color: var(--accent-2); border: 1px solid #f4c43055;
  font-size: 11px; font-weight: 900; padding: 4px 9px; border-radius: 999px;
  letter-spacing: .6px; backdrop-filter: blur(4px);
}
.card.is-soon .card-img img, .card.is-soon .ph-tile { opacity: .82; }
.soon-price { opacity: .6; }
.on-list { color: var(--accent-2); font-weight: 800; font-size: 13px; }
.interest-form { display: flex; gap: 6px; width: 100%; }
.interest-form input {
  flex: 1; min-width: 0; background: var(--bg); color: var(--ink);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; font-size: 13px;
}
.interest-form input:focus { outline: none; border-color: var(--accent-2); }
.interest-form button {
  background: var(--accent-2); color: #000; border: 0; border-radius: 999px;
  padding: 8px 14px; font-weight: 900; font-size: 13px; cursor: pointer;
}
.btn-row { display: flex; gap: 8px; margin-top: 10px; }
.btn-row .add-btn { flex: 1; padding: 10px 8px; font-size: 13px; }
.btn-row .on-list { flex: 1; display: grid; place-items: center; }
.vote-btn {
  flex: 1; background: var(--panel-2); color: var(--accent-2);
  border: 1px solid #f4c43066; border-radius: 999px;
  padding: 10px 8px; font-size: 13px; font-weight: 900; cursor: pointer; transition: .15s;
  white-space: nowrap;
}
.vote-btn:hover { background: #f4c43022; border-color: var(--accent-2); }
.vote-btn.voted { background: var(--accent-2); color: #000; border-color: var(--accent-2); cursor: default; }
.vote-n { opacity: .85; }
.badge-new {
  position: absolute; top: 10px; right: 10px;
  background: var(--accent-2); color: #000;
  font-size: 11px; font-weight: 900; padding: 4px 9px; border-radius: 999px;
  letter-spacing: .5px;
}
.ph-tile {
  width: 100%; height: 100%;
  display: grid; place-items: center; align-content: center; gap: 8px;
  text-align: center; padding: 18px;
  font-weight: 900; font-style: italic; text-transform: uppercase;
  font-size: clamp(15px, 1.6vw, 19px); line-height: 1.15;
}
.ph-tile small { font-size: 10px; font-weight: 700; font-style: normal; opacity: .55; letter-spacing: 1px; text-transform: uppercase; }
.cart-line .ph-tile { width: 56px; height: 56px; flex: 0 0 56px; border-radius: 8px; font-size: 6px; padding: 4px; gap: 2px; }
.cart-line .ph-tile small { display: none; }
.card-body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card-name { font-weight: 800; font-size: 16px; }
.card-ref { color: var(--muted); font-size: 12.5px; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.card-price { font-weight: 900; font-size: 18px; }
.add-btn {
  background: var(--panel-2); color: var(--ink); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 15px; font-weight: 800; font-size: 13px; cursor: pointer;
  transition: .15s;
}
.add-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.add-btn.added { background: var(--accent-2); color: #000; border-color: var(--accent-2); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 30px 20px; text-align: center; }
.site-footer p { color: var(--muted); font-size: 13px; max-width: 640px; margin: 0 auto; }

/* Cart drawer */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 50; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(400px, 100%);
  background: var(--panel); border-left: 1px solid var(--line); z-index: 60;
  transform: translateX(100%); transition: transform .25s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.cart-head h2 { margin: 0; font-size: 20px; font-weight: 900; font-style: italic; text-transform: uppercase; }
.cart-close { background: none; border: 0; color: var(--muted); font-size: 20px; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 20px; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { color: var(--muted); text-align: center; padding: 40px 0; }
.cart-line { display: flex; gap: 12px; align-items: center; }
.cart-line img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; background: #000; }
.cart-line-info { flex: 1; }
.cart-line-name { font-weight: 700; font-size: 14px; }
.cart-line-price { color: var(--muted); font-size: 13px; }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line); background: var(--panel-2); color: var(--ink); cursor: pointer; font-weight: 800; }
.qty span { min-width: 18px; text-align: center; font-weight: 700; }
.cart-foot { border-top: 1px solid var(--line); padding: 18px 20px; }
.cart-total { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 6px; }
.cart-total strong { font-size: 22px; }
.cart-note { color: var(--muted); font-size: 12px; margin: 0 0 14px; }
.checkout-btn { width: 100%; background: var(--accent); color: #fff; border: 0; border-radius: 12px; padding: 14px; font-weight: 900; font-size: 16px; cursor: pointer; }
.checkout-btn:disabled { opacity: .4; cursor: not-allowed; }

/* Pre-order form */
.field {
  width: 100%; background: var(--bg); color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 13px; font-size: 14px; font-family: inherit; margin-bottom: 10px;
}
.field:focus { outline: none; border-color: var(--accent); }
.form-error { color: #ff8a8a; font-size: 13px; margin: 0 0 10px; }
.modal-dismiss {
  width: 100%; background: none; border: 0; color: var(--muted);
  font-size: 13px; font-weight: 700; padding: 10px; cursor: pointer; margin-top: 4px;
}
.po-ref {
  font-size: 26px; font-weight: 900; font-style: italic; letter-spacing: 2px;
  color: var(--accent-2); margin: 6px 0 14px;
}
.size-select {
  background: var(--panel-2); color: var(--ink); border: 1px solid var(--line);
  border-radius: 7px; padding: 4px 6px; font-size: 12px; font-weight: 700; margin-right: 8px;
}

/* Modal */
.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; background: rgba(0,0,0,.7); padding: 20px; }
.modal-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 26px; max-width: 420px; width: 100%; }
.modal-card h2 { margin: 0 0 8px; font-style: italic; text-transform: uppercase; }
.modal-card p { color: var(--muted); font-size: 14px; }
.order-summary { background: var(--bg); border-radius: 10px; padding: 14px; margin: 14px 0; font-size: 14px; }
.order-summary .row { display: flex; justify-content: space-between; padding: 3px 0; }
.order-summary .row.total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 8px; font-weight: 900; }

[hidden] { display: none !important; }
