* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8d7e3;
  min-height: 100vh;
  color: #2D2A26;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px;
}

/* OPTIN PAGE */
.optin-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.optin-page.hidden { 
  display: none; 
}

.badge {
  display: inline-block;
  background: #f98daf;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.optin-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.optin-page h1 span {
  color: #e75a88;
}

.subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-image {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #f98daf 0%, #e75a88 100%);
  border-radius: 16px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.optin-form {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.optin-form input[type="email"] {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #f8d7e3;
  border-radius: 12px;
  font-size: 16px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}

.optin-form input[type="email"]:focus {
  outline: none;
  border-color: #f98daf;
}

.cta-button {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #f98daf 0%, #e75a88 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 141, 175, 0.4);
}

.cta-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.privacy-note {
  font-size: 12px;
  color: #999;
  margin-top: 16px;
}

/* PRESELL PAGE */
.presell-page {
  display: none;
  padding: 30px 20px 60px;
}

.presell-page.visible { 
  display: block; 
}

.presell-header {
  text-align: center;
  margin-bottom: 40px;
}

.presell-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.presell-header p {
  color: #666;
  font-size: 1rem;
}

.hack-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hack-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f98daf 0%, #e75a88 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.hack-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.hack-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.product-box {
  background: #f8d7e3;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-image {
  width: 70px;
  height: 70px;
  background: #f98daf;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.product-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-info .price {
  color: #f98daf;
  font-weight: 700;
  font-size: 1.1rem;
}

.product-info .price span {
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
  font-size: 0.9rem;
  margin-left: 6px;
}

.shop-btn {
  display: inline-block;
  background: #2D2A26;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  transition: background 0.3s;
}

.shop-btn:hover { 
  background: #f98daf; 
}

.video-btn {
  display: inline-block;
  background: #f98daf;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  margin-right: 10px;
  transition: background 0.3s;
}

.video-btn:hover { 
  background: #e75a88; 
}

.bundle-cta {
  background: linear-gradient(135deg, #2D2A26 0%, #1a1a1a 100%);
  color: white;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  margin-top: 30px;
}

.bundle-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.bundle-cta p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.bundle-cta .cta-button {
  background: linear-gradient(135deg, #f98daf 0%, #e75a88 100%);
}

.bundle-price {
  font-size: 2rem;
  font-weight: 700;
  margin: 16px 0;
}

.bundle-price span {
  color: #888;
  text-decoration: line-through;
  font-size: 1.2rem;
  font-weight: 400;
}