/**
 * Drop 001 — Founder's Wall · Landing page styles
 * Scoped to .drop-landing — only loads on /drop-001/ template.
 */

/* ── Design tokens ──────────────────────────────────────────────────────── */
.drop-landing {
  --d-bg:          #07090D;
  --d-surface:     #0D1018;
  --d-surface-2:   #141820;
  --d-surface-3:   #1B2030;
  --d-border:      rgba(255,255,255,0.07);
  --d-border-md:   rgba(255,255,255,0.12);
  --d-glow-orange: rgba(255,61,0,0.18);
  --d-glow-soft:   rgba(255,61,0,0.08);
  --d-orange:      #FF3D00;
  --d-orange-dim:  #CC3100;
  --d-gold:        #C9A253;
  --d-gold-dim:    rgba(201,162,83,0.15);
  --d-text:        #F2F2F2;
  --d-muted:       rgba(242,242,242,0.55);
  --d-subtle:      rgba(242,242,242,0.28);
  --d-r:           8px;
  --d-r-lg:        16px;
  --d-r-xl:        24px;
}

/* ── Reset for landing context ──────────────────────────────────────────── */
.drop-landing {
  background: var(--d-bg);
  color: var(--d-text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Reusable layout */
.drop-landing .drop-container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 24px;
}

.drop-landing section {
  position: relative;
}

.drop-landing .drop-sep {
  height: 1px;
  background: var(--d-border);
  margin: 0;
}

/* ── Typography helpers ─────────────────────────────────────────────────── */
.drop-landing .drop-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d-orange);
  background: rgba(255,61,0,0.1);
  border: 1px solid rgba(255,61,0,0.25);
  padding: 6px 14px;
  border-radius: 999px;
}

.drop-landing .drop-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--d-orange);
  flex-shrink: 0;
  animation: drop-pulse 2s ease-in-out infinite;
}

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

.drop-landing .drop-h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--d-text);
  margin: 0;
}

.drop-landing .drop-h1 em {
  font-style: normal;
  color: var(--d-orange);
}

.drop-landing .drop-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--d-text);
  margin: 0;
}

.drop-landing .drop-h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--d-text);
  margin: 0;
}

.drop-landing .drop-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--d-muted);
  margin: 0;
}

.drop-landing .drop-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--d-muted);
  margin: 0;
}

/* ── Badge pills ────────────────────────────────────────────────────────── */
.drop-landing .drop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.drop-landing .drop-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--d-border-md);
  color: var(--d-muted);
  background: rgba(255,255,255,0.04);
  white-space: nowrap;
}

.drop-landing .drop-badge--gold {
  color: var(--d-gold);
  border-color: rgba(201,162,83,0.3);
  background: rgba(201,162,83,0.07);
}

.drop-landing .drop-badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.drop-landing .drop-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--d-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 16px 32px;
  border-radius: var(--d-r);
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 0 0 0 rgba(255,61,0,0);
  text-decoration: none;
}

.drop-landing .drop-btn-primary:hover {
  background: #e63600;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255,61,0,0.35);
}

.drop-landing .drop-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--d-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--d-r);
  border: 1px solid var(--d-border-md);
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
}

.drop-landing .drop-btn-ghost:hover {
  color: var(--d-text);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
}

/* ── ================================================================== ── */
/* ── SECTION 1: HERO ─────────────────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-hero {
  padding-block: 80px 60px;
  overflow: hidden;
  background: var(--d-bg);
  position: relative;
}

.drop-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255,61,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.drop-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.drop-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.drop-hero__copy .drop-eyebrow { margin-bottom: 4px; }

.drop-hero__microcopy {
  font-size: 13px;
  color: var(--d-subtle);
  margin-top: -8px;
}

.drop-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* Artwork placeholder card */
.drop-artwork {
  position: relative;
}

.drop-artwork__card {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 500px;
  background: var(--d-surface);
  border: 1px solid var(--d-border-md);
  border-radius: var(--d-r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Subtle grid dot texture */
.drop-artwork__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Orange glow on card */
.drop-artwork__card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(255,61,0,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.drop-artwork__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.drop-artwork__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,61,0,0.1);
  border: 1px solid rgba(255,61,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-artwork__icon svg {
  width: 24px;
  height: 24px;
  color: var(--d-orange);
}

.drop-artwork__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--d-subtle);
}

.drop-artwork__caption {
  font-size: 15px;
  font-weight: 600;
  color: var(--d-muted);
  text-align: center;
  line-height: 1.4;
}

.drop-artwork__num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--d-gold);
  background: var(--d-gold-dim);
  border: 1px solid rgba(201,162,83,0.2);
  padding: 5px 10px;
  border-radius: 999px;
}

.drop-artwork__edition {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--d-subtle);
  text-align: center;
  text-transform: uppercase;
  padding: 10px;
  background: rgba(7,9,13,0.7);
  border: 1px solid var(--d-border);
  border-radius: var(--d-r);
  backdrop-filter: blur(8px);
}

@media (min-width: 860px) {
  .drop-hero__grid {
    grid-template-columns: 1fr 380px;
    gap: 72px;
  }
  .drop-hero__actions {
    flex-direction: row;
    align-items: center;
  }
  .drop-artwork__card {
    max-height: 520px;
  }
}

@media (min-width: 1100px) {
  .drop-hero__grid {
    grid-template-columns: 1fr 420px;
  }
}

/* ── ================================================================== ── */
/* ── SECTION 2: ARTWORK REVEAL ──────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-reveal {
  padding-block: 68px;
  background: var(--d-surface);
}

.drop-reveal__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.drop-reveal__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drop-reveal__frame {
  aspect-ratio: 16/9;
  background: var(--d-surface-2);
  border: 1px solid var(--d-border-md);
  border-radius: var(--d-r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.drop-reveal__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,61,0,0.04) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(255,61,0,0.08) 0%, transparent 60%);
}

.drop-reveal__frame-label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
}

.drop-reveal__frame-label span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--d-subtle);
  margin-bottom: 8px;
}

.drop-reveal__frame-label strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--d-muted);
}

@media (min-width: 860px) {
  .drop-reveal__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .drop-reveal__frame {
    aspect-ratio: 3/4;
  }
}

/* ── ================================================================== ── */
/* ── SECTION 3: SCARCITY ─────────────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-scarcity {
  padding-block: 72px;
  background: var(--d-bg);
  text-align: center;
}

.drop-scarcity__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.drop-scarcity__number {
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #FF3D00, #FF6B35, #FF3D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.drop-scarcity__number::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(255,61,0,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.drop-scarcity__tagline {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--d-muted);
}

.drop-scarcity__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--d-orange), transparent);
}

.drop-scarcity__body {
  max-width: 560px;
  text-align: center;
}

.drop-scarcity__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.drop-scarcity__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--d-muted);
  background: var(--d-surface);
  border: 1px solid var(--d-border);
  padding: 10px 16px;
  border-radius: 999px;
}

.drop-scarcity__list li::before {
  content: '●';
  font-size: 6px;
  color: var(--d-orange);
}

/* ── ================================================================== ── */
/* ── SECTION 4: FOUNDER CIRCLE ──────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-circle {
  padding-block: 72px;
  background: var(--d-surface);
  position: relative;
  overflow: hidden;
}

.drop-circle::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,162,83,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.drop-circle__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

.drop-circle__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drop-circle__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drop-circle__benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--d-surface-2);
  border: 1px solid var(--d-border);
  border-radius: var(--d-r);
  transition: border-color 0.2s;
}

.drop-circle__benefit:hover {
  border-color: var(--d-border-md);
}

.drop-circle__benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--d-gold-dim);
  border: 1px solid rgba(201,162,83,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.drop-circle__benefit-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drop-circle__benefit-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--d-text);
}

.drop-circle__benefit-desc {
  font-size: 13px;
  color: var(--d-subtle);
  line-height: 1.5;
}

@media (min-width: 860px) {
  .drop-circle__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* ── ================================================================== ── */
/* ── SECTION 5: WAITLIST COUNTER ────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-counter {
  padding-block: 72px;
  background: var(--d-bg);
}

.drop-counter__card {
  background: var(--d-surface);
  border: 1px solid var(--d-border-md);
  border-radius: var(--d-r-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.drop-counter__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--d-orange), transparent);
}

.drop-counter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.drop-counter__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d-subtle);
}

.drop-counter__status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  padding: 6px 14px;
  border-radius: 999px;
}

.drop-counter__status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: drop-pulse 2s ease-in-out infinite;
}

.drop-counter__headline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--d-text);
  max-width: 560px;
}

.drop-counter__body {
  font-size: 15px;
  color: var(--d-muted);
  line-height: 1.65;
  max-width: 500px;
}

.drop-counter__progress-wrap {
  width: 100%;
  max-width: 500px;
}

.drop-counter__progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.drop-counter__progress-meta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--d-subtle);
}

.drop-counter__progress-meta span strong {
  color: var(--d-text);
  font-weight: 700;
}

.drop-counter__bar {
  height: 4px;
  background: var(--d-surface-3);
  border-radius: 999px;
  overflow: hidden;
}

.drop-counter__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--d-orange), #FF6B35);
  border-radius: 999px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.drop-counter__units {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--d-muted);
}

.drop-counter__units strong {
  color: var(--d-text);
}

/* ── ================================================================== ── */
/* ── SECTION 6: WHY THIS EXISTS ─────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-manifesto {
  padding-block: 72px;
  background: var(--d-surface);
}

.drop-manifesto__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.drop-manifesto__quote {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--d-text);
  font-style: italic;
  position: relative;
  padding-inline: 24px;
}

.drop-manifesto__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 60px;
  line-height: 1;
  color: var(--d-orange);
  font-style: normal;
  font-family: Georgia, serif;
  opacity: 0.5;
}

.drop-manifesto__points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  text-align: left;
}

.drop-manifesto__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--d-surface-2);
  border: 1px solid var(--d-border);
  border-radius: var(--d-r);
}

.drop-manifesto__point-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--d-orange);
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 24px;
}

.drop-manifesto__point-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--d-muted);
  line-height: 1.55;
}

@media (min-width: 680px) {
  .drop-manifesto__points {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── ================================================================== ── */
/* ── SECTION 7: FORM ─────────────────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-form-section {
  padding-block: 72px;
  background: var(--d-bg);
  position: relative;
}

.drop-form-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at bottom, rgba(255,61,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.drop-form-section__inner {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.drop-form-section__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

/* Waitlist form */
.drop-waitlist-form {
  background: var(--d-surface);
  border: 1px solid var(--d-border-md);
  border-radius: var(--d-r-xl);
  padding: 36px;
  text-align: left;
}

.drop-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 520px) {
  .drop-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.drop-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drop-form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--d-subtle);
}

.drop-form-field input {
  width: 100%;
  background: var(--d-surface-2);
  border: 1px solid var(--d-border-md);
  border-radius: var(--d-r);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--d-text);
  font-family: inherit;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  box-sizing: border-box;
}

.drop-form-field input::placeholder {
  color: var(--d-subtle);
}

.drop-form-field input:focus {
  border-color: var(--d-orange);
  box-shadow: 0 0 0 3px rgba(255,61,0,0.1);
}

.drop-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 20px;
}

.drop-form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  accent-color: var(--d-orange);
  cursor: pointer;
}

.drop-form-consent span {
  font-size: 12px;
  color: var(--d-subtle);
  line-height: 1.55;
}

.drop-form-submit {
  width: 100%;
  background: var(--d-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 16px;
  border-radius: var(--d-r);
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  font-family: inherit;
  margin-bottom: 16px;
}

.drop-form-submit:hover {
  background: #e63600;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255,61,0,0.35);
}

.drop-form-note {
  font-size: 12px;
  color: var(--d-subtle);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* ── ================================================================== ── */
/* ── SECTION 8: FAQ ──────────────────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-faq {
  padding-block: 72px;
  background: var(--d-surface);
}

.drop-faq__inner {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.drop-faq__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.drop-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--d-border);
  border-radius: var(--d-r-lg);
  overflow: hidden;
}

.drop-faq__item {
  border-bottom: 1px solid var(--d-border);
}

.drop-faq__item:last-child {
  border-bottom: none;
}

.drop-faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--d-text);
  cursor: pointer;
  transition: background 0.15s;
  background: var(--d-surface);
}

.drop-faq__item summary::-webkit-details-marker { display: none; }

.drop-faq__item summary:hover {
  background: var(--d-surface-2);
}

.drop-faq__item[open] summary {
  background: var(--d-surface-2);
  color: var(--d-text);
}

.drop-faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--d-subtle);
  transition: transform 0.25s;
}

.drop-faq__item[open] .drop-faq__chevron {
  transform: rotate(180deg);
  color: var(--d-orange);
}

.drop-faq__answer {
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--d-muted);
  background: var(--d-surface-2);
}

/* ── ================================================================== ── */
/* ── FOOTER STRIP ────────────────────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-footer-strip {
  padding-block: 48px;
  background: var(--d-bg);
  text-align: center;
  border-top: 1px solid var(--d-border);
}

.drop-footer-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.drop-footer-strip__logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--d-text);
}

.drop-footer-strip__logo span {
  color: var(--d-orange);
}

.drop-footer-strip__copy {
  font-size: 13px;
  color: var(--d-subtle);
}

/* Header dropdown and sizing are in main.css (loads on all pages) */

/* ── ================================================================== ── */
/* ── ARTWORK IMAGE (real product photo) ──────────────────────────────── */
/* ── ================================================================== ── */

/* Fills the artwork card; pseudo-elements stay on top for premium framing */
.drop-artwork__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 0;
}

/* Suppress dot-pattern overlay now that a real image fills the card */
.drop-artwork__card::before { display: none; }

/* Keep overlays above the image */
.drop-artwork__num,
.drop-artwork__edition { z-index: 2; }

/* Soften the orange glow over the real image */
.drop-artwork__card::after { opacity: 0.4; }

/* ── Mobile hero artwork ─────────────────────────────────────────────── */
/* Shown between h1 and badges on mobile; desktop uses the right-column card */
.drop-hero__artwork-mobile {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(255,61,0,0.25), 0 0 0 1px rgba(255,255,255,0.08);
  margin-block: 8px 4px;
}
.drop-hero__artwork-mobile img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 860px) {
  .drop-hero__artwork-mobile { display: none; }
}

/* ── Price tag ───────────────────────────────────────────────────────── */
.drop-price-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 24px;
  background: var(--d-surface-2);
  border: 1px solid var(--d-border-md);
  border-radius: var(--d-r);
  margin-block: 28px 0;
}
.drop-price-tag__label {
  font-size: 13px;
  color: var(--d-muted);
}
.drop-price-tag__value {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--d-text);
  line-height: 1;
}

/* ── ================================================================== ── */
/* ── STICKY CTA (mobile only) ────────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(7,9,13,0.96);
  border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.drop-sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.drop-sticky-cta__text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.drop-sticky-cta__text span { color: var(--d-orange); }
.drop-sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  background: var(--d-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.15s;
  flex-shrink: 0;
}
.drop-sticky-cta__btn:hover { background: #e63600; }

/* Bottom padding so sticky bar never covers last-mile content */
@media (max-width: 767px) {
  .drop-landing { padding-bottom: 70px; }
}

/* Desktop: sticky bar hidden — scroll CTAs throughout the page are enough */
@media (min-width: 768px) {
  .drop-sticky-cta { display: none; }
}

/* ── ================================================================== ── */
/* ── OVERFLOW FIX ────────────────────────────────────────────────────── */
/* ── ================================================================== ── */

/* clip (not hidden) — does not affect position:fixed children */
.drop-landing { overflow-x: clip; }

/* form section has a 600px centered pseudo-element */
.drop-form-section { overflow: hidden; }

/* ── ================================================================== ── */
/* ── FOMO DEMAND BLOCK ───────────────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-demand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.drop-demand__row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.drop-demand__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.drop-demand__num {
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}

.drop-demand__num--main {
  font-size: clamp(68px, 14vw, 108px);
  background: linear-gradient(135deg, #FF6B35 0%, #FF3D00 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.drop-demand__num--cap {
  font-size: clamp(42px, 8vw, 68px);
  color: var(--d-subtle);
}

.drop-demand__divider {
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 300;
  color: var(--d-border-md);
  line-height: 1;
  padding-bottom: 24px;
}

.drop-demand__sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--d-subtle);
}

/* Status tag */
.drop-demand__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--d-orange);
  background: rgba(255,61,0,0.08);
  border: 1px solid rgba(255,61,0,0.22);
  padding: 9px 18px;
  border-radius: 999px;
}

.drop-demand__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--d-orange);
  animation: drop-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Overcapacity bar */
.drop-demand__bar-wrap {
  width: 100%;
  max-width: 440px;
}

.drop-demand__bar-track {
  height: 5px;
  border-radius: 999px;
  background: var(--d-surface-3);
  position: relative;
  overflow: hidden;
}

.drop-demand__bar-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #FF3D00 0%, #FF6B35 100%);
  border-radius: 999px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.drop-demand__bar-fill.is-animated {
  transform: scaleX(1);
}

.drop-demand__bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 9px;
}

.drop-demand__bar-meta span {
  font-size: 11px;
  color: var(--d-subtle);
  font-weight: 500;
}

.drop-demand__bar-over {
  font-size: 11px;
  font-weight: 700;
  color: var(--d-orange) !important;
}

/* ── ================================================================== ── */
/* ── MICRO-ANIMATIONS ────────────────────────────────────────────────── */
/* ── ================================================================== ── */

/* A. Hero load animations */
@keyframes drop-hero-copy-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes drop-artwork-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.drop-hero__copy {
  animation: drop-hero-copy-in 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both;
}

.drop-artwork {
  animation: drop-artwork-in 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.drop-hero__artwork-mobile {
  animation: drop-artwork-in 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

/* C. CTA shimmer — elegant light sweep every 5 s */
.drop-landing .drop-btn-primary {
  position: relative;
  overflow: hidden;
}

.drop-landing .drop-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,0.22) 50%,
    transparent 65%
  );
  background-size: 300% 100%;
  background-position: -300% center;
  animation: drop-sheen 5s ease-in-out 3s infinite;
  pointer-events: none;
}

@keyframes drop-sheen {
  0%, 65% { background-position: -300% center; }
  80%      { background-position: 300% center; }
  100%     { background-position: 300% center; }
}

/* D. Scroll reveal — triggered by JS adding .is-visible */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* B. Demand block independent reveal (inside a data-reveal section) */
[data-demand-block] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

[data-demand-block].is-visible {
  opacity: 1;
  transform: none;
}

/* E. Staggered scarcity pills */
.drop-scarcity__list li {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.drop-scarcity__list.is-staggered li:nth-child(1) { transition-delay: 0s;      opacity: 1; transform: none; }
.drop-scarcity__list.is-staggered li:nth-child(2) { transition-delay: 0.07s;   opacity: 1; transform: none; }
.drop-scarcity__list.is-staggered li:nth-child(3) { transition-delay: 0.14s;   opacity: 1; transform: none; }
.drop-scarcity__list.is-staggered li:nth-child(4) { transition-delay: 0.21s;   opacity: 1; transform: none; }

/* ── prefers-reduced-motion — all animations disabled ────────────────── */
@media (prefers-reduced-motion: reduce) {
  .drop-hero__copy,
  .drop-artwork,
  .drop-hero__artwork-mobile {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  [data-reveal],
  [data-demand-block] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .drop-scarcity__list li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .drop-demand__bar-fill {
    transform: scaleX(1) !important;
    transition: none !important;
  }

  .drop-landing .drop-btn-primary::after {
    animation: none !important;
  }

  .drop-demand__tag-dot,
  .drop-counter__status::before,
  .drop-eyebrow::before {
    animation: none !important;
  }

  .drop-hero__demand-fill {
    transform: scaleX(1) !important;
    transition: none !important;
  }
}

/* ── ================================================================== ── */
/* ── HERO COMPACT DEMAND BAR ─────────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-hero__demand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255,61,0,0.05);
  border: 1px solid rgba(255,61,0,0.16);
  border-radius: var(--d-r-lg);
  max-width: 400px;
}

.drop-hero__demand-nums {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}

.drop-hero__count-num {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--d-orange);
}

.drop-hero__demand-sep,
.drop-hero__demand-cap {
  font-size: 13px;
  font-weight: 600;
  color: var(--d-subtle);
}

.drop-hero__demand-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drop-hero__demand-bar {
  height: 3px;
  border-radius: 999px;
  background: var(--d-surface-3);
  overflow: hidden;
}

.drop-hero__demand-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #FF3D00, #FF6B35);
  border-radius: 999px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}

.drop-hero__demand-fill.is-animated {
  transform: scaleX(1);
}

.drop-hero__demand-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--d-orange);
  margin: 0;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── ================================================================== ── */
/* ── INLINE FORM FEEDBACK ────────────────────────────────────────────── */
/* ── ================================================================== ── */

.drop-form-feedback {
  display: none;
  border-radius: var(--d-r);
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  margin-top: 16px;
}

.drop-form-feedback.is-shown { display: block; }

.drop-form-feedback--success {
  background: rgba(74,222,128,0.07);
  border: 1px solid rgba(74,222,128,0.22);
  color: #4ade80;
}

.drop-form-feedback--error {
  background: rgba(255,61,0,0.07);
  border: 1px solid rgba(255,61,0,0.22);
  color: var(--d-orange);
}

/* ── ================================================================== ── */
/* ── MOBILE SPACING TIGHTENING ───────────────────────────────────────── */
/* ── ================================================================== ── */

@media (max-width: 767px) {
  .drop-hero { padding-block: 52px 40px; }

  .drop-reveal,
  .drop-scarcity,
  .drop-circle,
  .drop-counter,
  .drop-manifesto,
  .drop-form-section,
  .drop-faq { padding-block: 52px; }

  .drop-footer-strip { padding-block: 40px; }

  .drop-hero__demand { max-width: 100%; }
}
