@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css');

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FBF7F2;
  --ink: #1C1410;
  --border: rgba(0,0,0,0.1);
  --border-light: rgba(0,0,0,0.06);
  --surface: #F7F4F0;
  --text-secondary: #6B6560;
  --radius-md: 8px;
  --radius-lg: 14px;
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
}

/* ========== NAV ========== */
.atl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 0.5px solid var(--border-light);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}
.atl-nav-back {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.atl-nav-back:hover { color: var(--ink); }
.atl-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.atl-nav-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 20px;
  border: 0.5px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========== HERO ========== */
.atl-hero {
  padding: 36px 22px 28px;
  position: relative;
  overflow: hidden;
}
.atl-hero-blob {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  opacity: 0.10;
  pointer-events: none;
}
.atl-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.atl-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.atl-h1 em { font-style: italic; font-weight: 300; }
.atl-h1 strong { font-weight: 600; }
.atl-lead {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 340px;
}

/* ========== BUTTONS ========== */
.atl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s;
  width: 100%;
}
.atl-btn:hover { opacity: 0.86; transform: translateY(-1px); }
.atl-btn:active { transform: scale(0.97); }
.atl-btn .ti { font-size: 18px; }

/* ========== BODY SECTION ========== */
.atl-body { padding: 6px 22px 32px; }

.atl-section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 26px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.atl-section-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border-light);
}

/* ========== SCARCITY BAR ========== */
.atl-scarcity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 4px;
}
.atl-dots { display: flex; gap: 5px; flex-shrink: 0; }
.atl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E0DADA;
}
.atl-dot.taken { background: #E24B4A; }
.atl-scarcity-text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.atl-scarcity-text strong { color: var(--ink); }

/* ========== PAIN LIST ========== */
.atl-pain-list { display: flex; flex-direction: column; gap: 7px; }
.atl-pain-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  animation: fadeUp 0.4s ease both;
}
.atl-pain-item .ti { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.atl-pain-text { font-size: 14px; font-weight: 300; line-height: 1.65; }
.atl-pain-item:nth-child(1) { animation-delay: 0.05s; }
.atl-pain-item:nth-child(2) { animation-delay: 0.10s; }
.atl-pain-item:nth-child(3) { animation-delay: 0.15s; }
.atl-pain-item:nth-child(4) { animation-delay: 0.20s; }

/* ========== DELIVERABLE GRID ========== */
.atl-del-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.atl-del {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px 14px;
}
.atl-del .ti { font-size: 22px; color: var(--text-secondary); display: block; margin-bottom: 8px; }
.atl-del-title { font-size: 13px; font-weight: 500; margin-bottom: 3px; }
.atl-del-sub { font-size: 12px; color: var(--text-secondary); font-weight: 300; line-height: 1.45; }

/* ========== QUOTE ========== */
.atl-quote {
  margin: 18px 0;
  padding: 18px 20px;
  border-left: 2px solid var(--border);
  background: var(--surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.atl-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
}
.atl-quote-by {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 9px;
  letter-spacing: 0.04em;
}

/* ========== CTA FOOTER ========== */
.atl-cta-footer {
  padding: 24px 22px 32px;
  border-top: 0.5px solid var(--border-light);
  text-align: center;
}
.atl-cta-footer p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* ========== STEPS (cómo funciona) ========== */
.atl-step {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--border-light);
}
.atl-step:last-child { border-bottom: none; }
.atl-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.atl-step-title { font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.atl-step-desc { font-size: 13px; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }

/* ========== FAQ ========== */
.atl-faq-item { border-bottom: 0.5px solid var(--border-light); }
.atl-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  gap: 10px;
}
.atl-faq-icon { font-size: 16px; color: var(--text-secondary); transition: transform 0.25s; flex-shrink: 0; }
.atl-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}
.atl-faq-item.open .atl-faq-icon { transform: rotate(45deg); }
.atl-faq-item.open .atl-faq-a { max-height: 200px; padding-bottom: 16px; }

/* ========== TRUST ITEMS ========== */
.atl-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--border-light);
}
.atl-trust-item:last-child { border-bottom: none; }
.atl-trust-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.atl-trust-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.atl-trust-desc { font-size: 13px; font-weight: 300; color: var(--text-secondary); line-height: 1.65; }

/* ========== TESTIMONIALS ========== */
.atl-testimonial {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 10px;
}
.atl-test-stars { font-size: 13px; color: #EF9F27; letter-spacing: 2px; margin-bottom: 9px; }
.atl-test-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.atl-test-by { display: flex; align-items: center; gap: 9px; }
.atl-test-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
}
.atl-test-name { font-size: 12px; color: var(--text-secondary); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== FAQ JS ========== */
