/* Sales page components — depends on tokens.css */

/* Top alert bar */
.opsec-bar {
  background: var(--red);
  text-align: center;
  padding: 12px 20px;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

/* Anchor nav */
.anchor-bar {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.anchor-bar::-webkit-scrollbar { display: none; }
.anchor-bar a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-weight: 500;
}
.anchor-bar a:hover { color: var(--off-white); border-bottom-color: var(--amber); }

/* Hero */
.hero {
  background: var(--dark);
  border-bottom: 3px solid var(--red);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px);
  pointer-events: none;
}
.hero-kicker {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--amber-light); display: block; }
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 600;
  color: #fffdc3;
  letter-spacing: 1px;
  max-width: 640px;
  margin: 0 auto 36px;
  text-transform: uppercase;
  line-height: 1.1;
}
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-meta span::before { content: '▸'; color: var(--olive-light); }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-label);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 48px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  position: relative;
}
.btn-primary:hover { background: var(--red-bright); transform: translateY(-1px); }
.btn-primary::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 4px;
  right: -4px;
  top: 4px;
  background: #5a0f08;
  z-index: -1;
}
.btn-wrapper { text-align: center; margin: 40px 0; }
.btn-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-label);
  margin-top: 10px;
}

/* Sections */
.section { padding: 72px 0; }
.section-dark { background: var(--dark); }
.section-panel { background: var(--panel); }
.section-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.0;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.section-title .accent { color: var(--amber-light); }
.section-title .danger { color: var(--red-bright); }
.section-break {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px 0 40px;
}
.section-break::before, .section-break::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-break span {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* Disruption / problem area */
.disruption { background: var(--dark); padding: 72px 0; border-bottom: 1px solid var(--border); }
.lead {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.5;
  color: var(--off-white);
  margin-bottom: 32px;
}
.anger { color: var(--red-bright); font-weight: 600; }
.win { color: var(--olive-light); font-weight: 600; }

/* Pullquote */
.pullquote {
  border-left: 4px solid var(--red-bright);
  padding: 20px 28px;
  margin: 36px 0;
  background: rgba(192,40,26,0.06);
}
.pullquote p {
  font-family: var(--font-mono);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--off-white);
  line-height: 1.5;
  margin: 0;
}

/* Fail list */
.fail-list { list-style: none; padding: 0; margin: 28px 0; line-height: 1.35; }
.fail-list li {
  padding: 16px 20px 16px 56px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  color: var(--text);
}
.fail-list li::before {
  content: '✗';
  position: absolute;
  left: 20px;
  top: 16px;
  color: var(--red-bright);
  font-size: 18px;
  font-weight: 700;
}
.fail-list li:first-child { border-top: 1px solid var(--border); }
.fail-list li strong { color: var(--amber-light); }

/* Mechanism box */
.mechanism-box {
  border: 1px solid var(--olive);
  background: rgba(107,122,46,0.07);
  padding: 40px 36px;
  margin: 40px 0;
  position: relative;
}
.mechanism-box::before {
  content: attr(data-label);
  position: absolute;
  top: -1px;
  left: 32px;
  background: var(--olive);
  color: #fff;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 3px;
  padding: 4px 12px;
  font-weight: 600;
}
.mechanism-box h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 16px 0 12px;
}
.mechanism-box p { font-size: 17px; }

/* Tactics grid */
.tactics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  margin: 36px 0;
}
@media (max-width: 600px) { .tactics-grid { grid-template-columns: 1fr; } }
.tactic-cell { background: var(--panel); padding: 24px 22px; }
.tactic-cell .tc-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 6px;
}
.tactic-cell h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 8px;
}
.tactic-cell p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* Content section (what's inside) */
.content-section {
  border-left: 3px solid var(--amber);
  padding: 24px 28px;
  margin: 24px 0;
  background: rgba(212,134,10,0.06);
}
.content-section .cs-title {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber-light);
  font-weight: 700;
  margin-bottom: 8px;
}
.content-section h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 12px;
}

/* Benefit list */
.benefit-list { list-style: none; padding: 0; margin: 12px 0; }
.benefit-list li {
  padding: 10px 20px 10px 44px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.benefit-list li::before {
  content: '▸';
  position: absolute;
  left: 16px;
  top: 11px;
  color: var(--olive-light);
}
.benefit-list li:first-child { border-top: 1px solid var(--border); }

/* Companion box */
.companion-box {
  border: 1px solid rgba(107,122,46,0.4);
  background: rgba(107,122,46,0.06);
  padding: 40px 36px;
  margin: 36px 0;
  position: relative;
}
.companion-box::before {
  content: 'INCLUDED FREE';
  position: absolute;
  top: -1px;
  left: 32px;
  background: var(--olive);
  color: #fff;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 3px;
  padding: 4px 12px;
  font-weight: 600;
}
.companion-box h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 16px 0 8px;
}
.companion-box .cb-sub {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 20px;
}
.companion-box p { font-size: 17px; margin-bottom: 24px; }

/* Price section */
.price-section {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  margin: 0 0 2px;
}
@media (max-width: 600px) { .price-section { padding: 40px 24px; } }
.price-was {
  font-family: var(--font-label);
  font-size: 18px;
  text-decoration: line-through;
  color: var(--muted);
  letter-spacing: 1px;
}
.price-now {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 900;
  color: var(--off-white);
  line-height: 1;
}
.price-now sup { font-size: 40px; vertical-align: super; color: var(--amber-light); }
.price-note {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-label);
  margin-top: 8px;
}
.savings-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Guarantee box */
.guarantee-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-top: 3px solid var(--olive);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  margin: 40px 0;
}
@media (max-width: 560px) { .guarantee-box { grid-template-columns: 1fr; } }
.guarantee-seal {
  width: 80px;
  height: 80px;
  border: 3px solid var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  flex-shrink: 0;
}
.guarantee-seal span:first-child {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--olive-light);
  line-height: 1;
}
.guarantee-seal span:last-child {
  font-family: var(--font-label);
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}
.guarantee-text h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 10px;
}
.guarantee-text p { font-size: 16px; margin-bottom: 8px; }

/* Scarcity bar */
.scarcity-bar {
  background: linear-gradient(135deg, #1a0a05, #2a0f08);
  border: 1px solid rgba(192,40,26,0.4);
  padding: 24px 32px;
  text-align: center;
  margin: 36px 0;
}
.scarcity-bar p {
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 0;
}
.scarcity-bar strong { color: var(--red-bright); }

/* Closing */
.closing-section { background: var(--dark); padding: 72px 0; border-top: 3px solid var(--red); }
.identity-close {
  font-family: var(--font-mono);
  font-size: clamp(20px, 3vw, 26px);
  color: var(--off-white);
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}
.ps-block {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  padding: 28px 32px;
  margin-top: 40px;
}
.ps-block p { font-size: 16px; margin-bottom: 10px; }
.ps-block p:last-child { margin-bottom: 0; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-in { opacity: 0; animation: fadeInUp 0.6s ease forwards; }
.anim-in.d1 { animation-delay: 0.1s; }
.anim-in.d2 { animation-delay: 0.2s; }
.anim-in.d3 { animation-delay: 0.3s; }