* { margin: 0; padding: 0; box-sizing: border-box; }

/* ───── TAPTYPE TAG ───── */
.taptype-tag {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 8px;
  -webkit-text-fill-color: var(--muted);
  background: none;
}

/* ───── MUSCLE MEMORY BLOCK ───── */
.muscle-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
}

.muscle-quote {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  text-align: left;
  margin-bottom: 20px;
}

.muscle-quote em {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

/* ───── PAIN BLOCK ───── */
.pain-section {
  padding: 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.pain-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 48px;
}

.pain-col { display: flex; flex-direction: column; gap: 16px; }

.pain-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.without .pain-label { color: #FF6584; }
.with .pain-label { color: #00D4AA; }

.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.pain-list li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.without .pain-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #FF6584;
  font-weight: 700;
}

.with .pain-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D4AA;
  font-weight: 700;
}

.with .pain-list li { color: var(--text); }

.pain-vs {
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  padding: 0 8px;
}

.pain-price {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 12px;
  font-size: 0.88rem;
  color: #00D4AA;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pain-section { padding: 40px 24px; }
  .pain-inner { grid-template-columns: 1fr; padding: 28px; gap: 32px; }
  .pain-vs { text-align: center; }
}

:root {
  --accent: #6C63FF;
  --accent2: #FF6584;
  --dark: #0D0D0D;
  --card: #161616;
  --text: #F0F0F0;
  --muted: #888;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* ───── NAV ───── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(13,13,13,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--text);
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.nav-active { color: var(--text); }

.burger {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
}

/* ───── BUTTONS ───── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108,99,255,0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  box-shadow: none;
}

/* ───── HERO ───── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content { max-width: 760px; }

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

h1 em, h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───── PLACEHOLDERS ───── */
.img-placeholder {
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
  min-height: 180px;
  transition: border-color 0.2s;
}

.img-placeholder:hover { border-color: rgba(255,255,255,0.25); }

.placeholder-icon { font-size: 2rem; opacity: 0.4; }

.placeholder-text {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  max-width: 280px;
  line-height: 1.5;
}

.video-placeholder {
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255,255,255,0.02);
  max-width: 600px;
  margin: 0 auto;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.video-placeholder:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

.play-btn {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text);
}

/* ───── PROOF ───── */
.proof {
  text-align: center;
  padding: 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.proof strong { color: var(--text); }

/* ───── SECTIONS ───── */
section {
  padding: 100px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0 60px;
}

/* ───── STEPS ───── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover {
  border-color: rgba(108,99,255,0.3);
  transform: translateY(-4px);
}

.step-icon { font-size: 2rem; margin-bottom: 12px; }

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }

.step p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ───── SCIENCE ───── */
.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.science-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.science-card:hover {
  border-color: rgba(108,99,255,0.3);
  transform: translateY(-4px);
}

.science-num {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.science-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.science-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 12px; }
.source { font-size: 0.75rem; color: rgba(255,255,255,0.2); font-style: italic; }

/* ───── FEATURES ───── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.3s;
}

.feature:hover { border-color: rgba(108,99,255,0.3); }

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.feature h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* ───── PRODUCTS GRID ───── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.3s, transform 0.3s;
  display: block;
}

.product-card:hover {
  border-color: rgba(108,99,255,0.4);
  transform: translateY(-4px);
}

.product-icon { font-size: 2.5rem; margin-bottom: 16px; }
.product-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.product-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.product-link { color: var(--accent); font-size: 0.88rem; font-weight: 600; }

/* ───── PRICING ───── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}

.price-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  transition: transform 0.3s;
}

.price-card.featured {
  border-color: var(--accent);
  background: rgba(108,99,255,0.07);
}

.price-card:hover { transform: translateY(-4px); }

.price-tag {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; }

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.price-period { color: var(--muted); font-size: 0.85rem; margin-bottom: 24px; }

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ───── CTA ───── */
.cta-section {
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; }
.cta-section > p { color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; }

.email-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  color: white;
  font-size: 0.95rem;
  outline: none;
  min-width: 220px;
}

.email-form input:focus {
  border-color: rgba(255,255,255,0.25);
}

/* ───── FOOTER ───── */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.2s;
}

footer a:hover { color: var(--text); }

/* ───── ANIMATIONS ───── */
.vibration-rings {
  position: relative;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  margin: 40px auto 8px;
}

.ring {
  position: absolute;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: expand 2s ease-out infinite;
}

.ring:nth-child(1) { width: 36px; height: 36px; }
.ring:nth-child(2) { width: 58px; height: 58px; animation-delay: 0.4s; }
.ring:nth-child(3) { width: 78px; height: 78px; animation-delay: 0.8s; }

@keyframes expand {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(1); opacity: 0; }
}

.finger-core {
  width: 20px; height: 20px;
  border-radius: 50%;
  z-index: 1;
  background: var(--accent);
}

/* ───── RESPONSIVE ───── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(13,13,13,0.98); padding: 20px 24px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  section { padding: 60px 24px; }
  .divider { margin: 0 24px; }
  footer { padding: 24px; flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
