:root {
  --ink: #1a232b;
  --ink-soft: #33414d;
  --muted: #64707a;
  --paper: #f1efe6;
  --paper-cool: #e7edeb;
  --surface: #fffdf7;
  --surface-soft: #f7f4eb;
  --line: #d8d1c2;
  --line-strong: #a8aaa2;
  --blue: #2a596d;
  --blue-dark: #1f4d61;
  --green: #5d766c;
  --green-soft: #e5ede8;
  --red: #e95535;
  --red-dark: #bc3f27;
  --yellow: #d2a34b;
  --yellow-soft: #f7e6b4;
  --steel: #dfe5e2;
  --shadow: 0 20px 44px rgba(26, 35, 43, 0.13);
  --shadow-soft: 0 9px 24px rgba(26, 35, 43, 0.08);
  --radius-lg: 8px;
  --radius-md: 7px;
  --radius-sm: 6px;
  --max: 1160px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: linear-gradient(180deg, #faf8ef 0%, var(--paper) 430px, #e7ebe7 100%);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.5;
}

body.tuesdrop-has-sticky {
  padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.28rem;
  line-height: 1.16;
}

p {
  color: var(--muted);
}

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

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

.section-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-shell[id],
.next-drop[id],
.current-detail[id],
.past-drops[id],
.how-it-works[id],
.faq-section[id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.top-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 44px;
  padding: 0.42rem 1rem;
  color: #fff;
  background: #183d4d;
  font-size: 0.88rem;
}

.top-notice p {
  margin: 0;
  color: inherit;
  font-weight: 700;
}

.notice-action {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.22rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(var(--max) + 48px), 100%);
  min-height: var(--header-h);
  margin: 0 auto;
  padding: 0.74rem 1.5rem;
  background: rgba(241, 239, 230, 0.98);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 22px rgba(31, 41, 51, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 12px 1fr;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 9px;
  overflow: hidden;
}

.brand-mark strong {
  display: block;
  align-self: center;
  color: var(--ink);
  font-size: 1.62rem;
  font-weight: 900;
  line-height: 1;
}

.brand-mark small {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fffdf8;
  background: var(--blue-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-copy strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1;
}

.brand-copy small {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav a {
  padding: 0.4rem 0;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.mobile-quick-nav {
  display: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.icon-button,
.nav-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--surface);
  border-radius: 999px;
  text-decoration: none;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  right: -3px;
  top: -4px;
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--surface);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.82rem 1.16rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(238, 91, 62, 0.22);
}

.button.text-button {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button.mini {
  min-height: 38px;
  padding: 0.52rem 0.82rem;
  font-size: 0.84rem;
}

.button.disabled {
  cursor: not-allowed;
  color: var(--muted);
  background: #eef1ed;
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: 1.8rem 0 2.8rem;
}

.product-gallery,
.buy-panel,
.early-card,
.past-card,
.step-card,
.faq-list details,
.page-content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.product-gallery,
.buy-panel {
  padding: 0.72rem;
}

.buy-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  align-self: start;
  padding: clamp(1rem, 2.2vw, 1.35rem);
}

.product-kicker,
.eyebrow,
.soft-label,
.price-block span,
.product-facts span,
.status-pill {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-kicker,
.eyebrow {
  margin-bottom: 0.78rem;
  color: var(--blue);
}

.product-intro-mobile,
.mobile-deal-strip {
  display: none;
}

.product-media-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(135deg, #eef3f0 0%, #dfe6e1 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
}

.photo-frame {
  background: #f4f4ef;
}

.placeholder-product-visual {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.88), rgba(231, 237, 235, 0.72)),
    repeating-linear-gradient(45deg, rgba(26, 35, 43, 0.04) 0 8px, transparent 8px 18px);
}

.placeholder-product-visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px dashed rgba(26, 35, 43, 0.24);
  border-radius: 8px;
}

.placeholder-product-visual strong,
.placeholder-product-visual small,
.placeholder-product-visual .placeholder-tag {
  position: relative;
  z-index: 1;
}

.placeholder-product-visual strong {
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1;
}

.placeholder-product-visual small {
  color: var(--muted);
  font-weight: 800;
}

.placeholder-tag {
  padding: 0.26rem 0.58rem;
  color: var(--blue-dark);
  background: var(--green-soft);
  border: 1px solid rgba(42, 89, 109, 0.22);
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.placeholder-object {
  position: relative;
  z-index: 1;
  display: block;
  width: min(58%, 270px);
  aspect-ratio: 1.55;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), transparent 48%),
    #dfe5e2;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(26, 35, 43, 0.12);
}

.placeholder-object.wide {
  width: min(70%, 340px);
  aspect-ratio: 2.15;
}

.placeholder-object.tall {
  width: min(42%, 190px);
  aspect-ratio: 0.65;
}

.placeholder-use {
  background: linear-gradient(135deg, #e5ede8, #fffdf7);
}

.placeholder-detail {
  background: linear-gradient(135deg, #f7e6b4, #fffdf7);
}

.placeholder-scale {
  background: linear-gradient(135deg, #d9e5e2, #f7f4eb);
}

.placeholder-package,
.placeholder-next {
  background: linear-gradient(135deg, #eef3f0, #f1e8c9);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
  gap: 0.76rem;
  margin-top: 0.76rem;
}

.thumb {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fbfaf5;
  border-radius: var(--radius-sm);
  padding: 0.42rem;
}

.thumb.is-active {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}

.thumb-art {
  display: block;
  aspect-ratio: 1.22;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: var(--steel);
}

.placeholder-thumb.one { background: #e8dfd0; }
.placeholder-thumb.two { background: #e5eee8; }
.placeholder-thumb.three { background: #f1e8c9; }
.placeholder-thumb.four { background: #d9e5e2; }
.placeholder-thumb.five { background: #eee3dc; }

.thumb strong {
  display: block;
  margin-top: 0.34rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.gallery-scroll-indicator {
  display: none;
}

.hero-summary {
  max-width: 42rem;
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.price-block {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  margin: 1rem 0 0.72rem;
  padding: 0.9rem 1rem;
  background: var(--yellow-soft);
  border: 1px solid #e6c45d;
  border-radius: var(--radius-md);
}

.price-block span {
  display: block;
  color: var(--ink-soft);
}

.price-block strong {
  display: block;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 4.25rem);
  line-height: 0.9;
}

.price-block p {
  max-width: 13rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.purchase-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.inline-like {
  min-height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.18rem 0.66rem;
  color: var(--ink);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0 0 0.82rem;
}

.product-facts div {
  padding: 0.62rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.product-facts span {
  display: block;
  margin-bottom: 0.16rem;
  color: var(--muted);
  font-size: 0.66rem;
}

.product-facts strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.25;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 0.7rem;
  margin-bottom: 0.82rem;
}

.hero-actions.single-action {
  grid-template-columns: 1fr;
}

.details-link-row {
  margin-top: 0.9rem;
}

.details-link-row .button {
  width: 100%;
}

.current-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.86fr);
  gap: 1rem;
  align-items: start;
  padding: 0 0 3.2rem;
}

.proof-card {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.proof-intro {
  padding-bottom: 0.72rem;
  margin-bottom: 0.72rem;
  border-bottom: 1px solid var(--line);
}

.proof-card h2 {
  margin-bottom: 0.54rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.proof-intro > p:last-of-type {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.decision-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.48rem;
}

.decision-checks p {
  margin: 0;
  min-height: 74px;
  padding: 0.62rem 0.55rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.decision-checks strong,
.decision-checks span {
  display: block;
}

.decision-checks strong {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.08;
}

.decision-checks span {
  width: fit-content;
  padding: 0.16rem 0.42rem;
  color: var(--blue-dark);
  background: var(--green-soft);
  border: 1px solid rgba(42, 89, 109, 0.2);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.selection-result-card {
  display: grid;
  align-content: center;
  gap: 0.7rem;
  min-height: 100%;
  padding: 1rem;
  color: var(--surface);
  background: var(--ink);
  border: 1px solid rgba(26, 35, 43, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.selection-result-card .eyebrow {
  margin-bottom: 0;
  color: var(--yellow-soft);
}

.selection-result-card > strong {
  color: var(--surface);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 0.98;
}

.selection-result-card > p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.76);
  font-size: 0.95rem;
}

.catch-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem;
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(255, 253, 247, 0.24);
  border-radius: var(--radius-sm);
}

.catch-strip span {
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.catch-strip strong {
  color: var(--yellow-soft);
  font-size: 0.95rem;
  line-height: 1.12;
  text-align: right;
}

.next-drop,
.current-detail,
.past-drops,
.how-it-works,
.faq-section,
.subscribe-section {
  padding: 3.8rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.45rem;
}

.section-heading p:last-child {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 1rem;
  align-items: start;
}

.detail-media-card,
.detail-copy-grid article,
.batch-accordion {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.detail-media-card {
  padding: 0.9rem;
}

.detail-frame {
  margin-bottom: 0.75rem;
}

.detail-note {
  display: grid;
  gap: 0.26rem;
  padding: 0.75rem;
  color: var(--ink-soft);
  background: var(--green-soft);
  border: 1px solid #c5d9ce;
  border-radius: var(--radius-sm);
}

.detail-note span {
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.detail-copy-grid article.detail-accordion {
  padding: 0;
}

.detail-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 54px;
  border: 0;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 900;
}

.detail-toggle i {
  position: relative;
  display: none;
  width: 16px;
  height: 16px;
}

.detail-toggle i::before,
.detail-toggle i::after {
  content: "";
  position: absolute;
  inset: 7px 0 auto;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.detail-toggle i::after {
  transform: rotate(90deg);
}

.detail-accordion.is-open .detail-toggle i::after {
  transform: rotate(0deg);
}

.detail-panel {
  padding: 0 0.9rem 0.9rem;
}

.detail-panel ul {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.batch-clarity {
  margin-top: 1rem;
}

.batch-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.batch-steps p {
  margin: 0;
  padding: 0.75rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.batch-steps strong,
.batch-steps span {
  display: block;
}

.batch-steps strong {
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.early-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1rem;
  padding: 0.72rem;
}

.early-info {
  align-self: center;
  padding: 1rem;
}

.early-info h3 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.early-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}

.early-status-row span {
  padding: 0.3rem 0.6rem;
  color: var(--blue-dark);
  background: var(--green-soft);
  border: 1px solid #c3d8cb;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.preview-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.42rem;
  margin: 1rem 0 0.4rem;
  padding: 0.34rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.preview-price-grid div {
  min-height: 86px;
  padding: 0.62rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.preview-price-grid .is-now {
  background: var(--yellow-soft);
  border-color: #e6c45d;
}

.preview-price-grid span {
  display: block;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-price-grid strong {
  display: block;
  margin-top: 0.18rem;
  font-size: 2rem;
  line-height: 1;
}

.price-strip-note {
  font-size: 0.86rem;
  font-weight: 800;
}

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.82rem;
}

.highlight-cards article {
  min-height: 86px;
  padding: 0.74rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.highlight-cards strong,
.highlight-cards span {
  display: block;
}

.highlight-cards strong {
  margin-bottom: 0.25rem;
}

.highlight-cards span {
  color: var(--muted);
  font-size: 0.86rem;
}

.shelf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  padding: 0.78rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
}

.shelf-header span {
  color: var(--yellow-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.past-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.past-card {
  overflow: hidden;
}

.past-visual {
  min-height: 180px;
  background: linear-gradient(135deg, #e7edeb, #fffdf7);
  border-bottom: 1px solid var(--line);
}

.placeholder-past {
  position: relative;
}

.placeholder-past::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44%;
  aspect-ratio: 1;
  background: #fffdf7;
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  transform: translate(-50%, -50%);
}

.past-copy {
  display: grid;
  gap: 0.6rem;
  padding: 0.9rem;
}

.status-pill {
  width: fit-content;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
}

.status-pill.available {
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid #c3d8cb;
}

.status-pill.returning {
  color: #7a5b12;
  background: var(--yellow-soft);
  border: 1px solid #e6c45d;
}

.status-pill.retired {
  color: var(--muted);
  background: #eef1ed;
  border: 1px solid var(--line);
}

.past-copy p {
  min-height: 70px;
  margin-bottom: 0;
}

.past-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.past-bottom strong {
  font-size: 1.55rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  min-height: 220px;
  padding: 1rem;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0.75rem 0 0;
}

.subscribe-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 1.2rem;
  align-items: end;
  padding: 1.4rem;
  color: #fff;
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
}

.subscribe-panel p,
.subscribe-panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.subscribe-panel h2 {
  color: #fff;
}

.email-form {
  display: flex;
  gap: 0.6rem;
}

.email-form input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 1rem;
}

.email-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(140px, 0.45fr) minmax(160px, 0.55fr);
  gap: 2rem;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 2.3rem 0 2.6rem;
  border-top: 1px solid var(--line);
}

.footer-main p {
  max-width: 620px;
}

.footer-brand {
  margin-bottom: 1rem;
}

.support-line a {
  font-weight: 800;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.9rem;
}

.payment-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.62rem;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: var(--ink-soft);
  background: var(--surface);
  font-size: 0.72rem;
  font-weight: 900;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.42rem;
}

.footer-links h2 {
  margin-bottom: 0.2rem;
  font-size: 0.86rem;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(0.85rem + env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0.48rem;
  width: min(660px, calc(100% - 28px));
  padding: 0.42rem;
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.sticky-card {
  min-width: 0;
  min-height: 64px;
  display: grid;
  align-content: center;
  gap: 0.12rem;
  padding: 0.58rem 0.68rem;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.sticky-current {
  color: #fff;
  background: var(--red);
  border-color: var(--red-dark);
}

.sticky-next {
  background: #fffdf7;
  border-color: var(--line-strong);
}

.sticky-label {
  color: inherit;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.74;
}

.sticky-card strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.08;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sticky-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
}

.sticky-current .sticky-meta {
  color: #fff;
}

.sticky-next .sticky-meta {
  color: var(--blue-dark);
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  max-width: min(360px, calc(100% - 2rem));
  padding: 0.8rem 0.95rem;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-shell,
.commerce-shell {
  padding: 4rem 0;
}

.page-content-card,
.commerce-shell {
  padding: clamp(1rem, 3vw, 1.8rem);
}

.page-heading h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-content > *:last-child {
  margin-bottom: 0;
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-block-button__link {
  border-radius: 999px;
  font-weight: 800;
}

.woocommerce table.shop_table,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.wc-block-cart,
.wc-block-checkout {
  border-radius: var(--radius-lg);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: var(--radius-md);
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  font-family: "Manrope", Arial, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-h) + 0.75rem);
    justify-self: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: calc(100vw - 2rem);
    max-width: none;
    padding: 0.9rem;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.76rem 0.2rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-flex;
    border-color: var(--line-strong);
    background: #fbfaf5;
  }

  .hero,
  .current-proof,
  .early-card,
  .detail-layout,
  .subscribe-panel {
    grid-template-columns: 1fr;
  }

  .buy-panel {
    position: static;
  }

  .past-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 56px;
  }

  body.tuesdrop-has-sticky {
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: 2.24rem;
  }

  h2 {
    font-size: 2rem;
  }

  .top-notice {
    justify-content: space-between;
    min-height: 38px;
    padding: 0.25rem 0.75rem;
    font-size: 0.74rem;
  }

  .top-notice p {
    max-width: 230px;
    line-height: 1.22;
  }

  .notice-action {
    white-space: nowrap;
    min-height: 28px;
    padding: 0.18rem 0.58rem;
  }

  .site-header {
    min-height: var(--header-h);
    padding: 0.42rem 0.82rem;
  }

  .mobile-quick-nav {
    position: sticky;
    top: var(--header-h);
    z-index: 64;
    display: flex;
    justify-content: center;
    gap: clamp(0.42rem, 2.7vw, 0.82rem);
    overflow-x: auto;
    max-width: 100%;
    padding: 0.46rem 0.76rem;
    background: rgba(255, 253, 247, 0.96);
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-quick-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-quick-nav a {
    flex: 0 0 auto;
    padding: 0.38rem 0.7rem;
    color: var(--ink-soft);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .icon-button,
  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .section-shell {
    width: min(100% - 20px, var(--max));
  }

  .section-shell[id],
  .next-drop[id],
  .current-detail[id],
  .past-drops[id],
  .how-it-works[id],
  .faq-section[id] {
    scroll-margin-top: calc(var(--header-h) + 58px);
  }

  .hero {
    gap: 0.68rem;
    padding: 0.65rem 0 2rem;
  }

  .product-intro-mobile {
    display: block;
    margin-bottom: 0.55rem;
  }

  .product-intro-mobile h1 {
    margin-bottom: 0.32rem;
    font-size: 2rem;
  }

  .product-intro-mobile p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .buy-panel > h1,
  .buy-panel > .hero-summary {
    display: none;
  }

  .product-gallery,
  .buy-panel,
  .early-card {
    padding: 0.54rem;
  }

  .thumb-row {
    grid-auto-flow: column;
    grid-auto-columns: 31%;
    grid-template-columns: none;
    overflow-x: auto;
    justify-content: start;
    gap: 0.5rem;
    margin-top: 0.54rem;
    padding-bottom: 0.2rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .thumb-row::-webkit-scrollbar {
    display: none;
  }

  .gallery-scroll-indicator {
    position: relative;
    display: block;
    width: min(112px, 34%);
    height: 3px;
    margin: 0.42rem auto 0;
    overflow: hidden;
    background: #d3d1c8;
    border-radius: 999px;
  }

  .gallery-scroll-indicator span {
    position: absolute;
    left: 0;
    top: 0;
    width: 42%;
    height: 100%;
    background: #9d9c94;
    border-radius: inherit;
    transform: translateX(0);
    transition: width 160ms ease, transform 120ms ease;
  }

  .thumb {
    padding: 0.28rem;
    scroll-snap-align: start;
  }

  .thumb strong {
    display: none;
  }

  .price-block {
    grid-template-columns: 1fr auto;
    margin: 0.46rem 0 0.38rem;
    padding: 0.54rem 0.64rem;
  }

  .price-block strong {
    font-size: 2.48rem;
  }

  .price-block p {
    max-width: 118px;
    font-size: 0.72rem;
  }

  .purchase-note {
    margin-bottom: 0.58rem;
    font-size: 0.82rem;
  }

  .product-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.34rem;
    margin-bottom: 0.46rem;
  }

  .product-facts div {
    padding: 0.34rem 0.38rem;
  }

  .product-facts span {
    margin-bottom: 0.1rem;
    font-size: 0.56rem;
    line-height: 1.12;
  }

  .product-facts strong {
    font-size: 0.64rem;
    line-height: 1.15;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 0.42rem;
    margin-bottom: 0.58rem;
  }

  .button {
    min-height: 44px;
    padding: 0.72rem 1rem;
  }

  .next-drop,
  .current-proof,
  .current-detail,
  .past-drops,
  .how-it-works,
  .faq-section,
  .subscribe-section {
    padding: 2.5rem 0;
  }

  .current-proof {
    gap: 0.72rem;
    padding-top: 0;
  }

  .proof-card {
    padding: 0.78rem;
  }

  .proof-card h2 {
    font-size: 1.46rem;
  }

  .decision-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .decision-checks p {
    min-height: 66px;
    padding: 0.5rem;
  }

  .selection-result-card {
    gap: 0.58rem;
    padding: 0.82rem;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .early-info {
    padding: 0.2rem;
  }

  .early-info h3 {
    font-size: 1.95rem;
  }

  .early-status-row {
    gap: 0.34rem;
    margin-top: 0.62rem;
  }

  .preview-price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.28rem;
    padding: 0.22rem;
  }

  .preview-price-grid div {
    min-height: 70px;
    padding: 0.48rem 0.42rem;
  }

  .preview-price-grid span {
    font-size: 0.56rem;
  }

  .preview-price-grid strong {
    font-size: 1.55rem;
  }

  .batch-steps,
  .steps,
  .highlight-cards,
  .detail-copy-grid {
    grid-template-columns: 1fr;
  }

  .detail-toggle i {
    display: block;
  }

  .detail-accordion:not(.is-open) .detail-panel {
    display: none;
  }

  .past-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 78vw);
    grid-template-columns: none;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.1rem 0 1.35rem;
    scroll-snap-type: x mandatory;
  }

  .past-card {
    scroll-snap-align: start;
  }

  .step-card {
    min-height: auto;
  }

  .subscribe-panel,
  .email-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .email-form {
    display: grid;
  }

  .site-footer {
    gap: 1.25rem;
  }

  .page-shell,
  .commerce-shell {
    padding: 2rem 0;
  }

  .sticky-cta {
    bottom: calc(0.64rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.92rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .top-notice p {
    max-width: 208px;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .header-actions {
    gap: 0.32rem;
  }

  .price-block strong {
    font-size: 2.34rem;
  }

  .preview-price-grid strong {
    font-size: 1.65rem;
  }

  .sticky-cta {
    width: calc(100% - 18px);
    gap: 0.38rem;
    padding: 0.36rem;
  }

  .sticky-card {
    min-height: 66px;
    padding: 0.5rem 0.5rem;
  }

  .sticky-label {
    font-size: 0.56rem;
  }

  .sticky-card strong {
    font-size: 0.78rem;
  }

  .sticky-meta {
    font-size: 0.72rem;
  }
}

