/* chamuyo · styles
   dark + acento magenta, más restrained que v1 */

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --border: #262626;
  --text: #f0f0f0;
  --muted: #8a8a8a;
  --muted-2: #5a5a5a;
  --accent: #ff2d92;
  --accent-2: #b026ff;
  --accent-soft: rgba(255, 45, 146, 0.10);

  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-w: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* fondo sutil */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(255, 45, 146, 0.10), transparent 70%),
    radial-gradient(ellipse 40% 35% at 10% 30%, rgba(176, 38, 255, 0.06), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ════════ NAV ════════ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}
.logo:hover { opacity: 0.85; }

/* Botón "probá la demo" en el nav */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-demo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 45, 146, 0.10);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 45, 146, 0.35);
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  white-space: nowrap;
}
.nav-demo:hover {
  background: rgba(255, 45, 146, 0.18);
  border-color: var(--accent);
  transform: translateY(-1px);
}
@media (max-width: 540px) {
  .nav-demo { font-size: 12px; padding: 7px 12px; }
  .nav-brand { gap: 10px; }
}
.logo.small {
  font-size: 20px;
  gap: 7px;
}
.logo-mark {
  width: 28px;
  height: 28px;
  display: block;
}
.logo.small .logo-mark {
  width: 22px;
  height: 22px;
}
.badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  text-transform: lowercase;
}

/* ════════ HERO ════════ */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 32px 80px;
}
.hero-content {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}
.subhead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.subhead strong {
  color: var(--text);
  font-weight: 700;
}

/* USP tag prominente en hero */
.usp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 45, 146, 0.14), rgba(176, 38, 255, 0.10));
  border: 1px solid rgba(255, 45, 146, 0.4);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--text);
  margin: 0 auto 28px;
  max-width: 100%;
  line-height: 1.4;
}
.usp-tag strong {
  color: var(--accent);
  font-weight: 700;
}
.usp-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* ════════ CTA PRIMARIO (Probar la demo) ════════ */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 800;
  font-size: clamp(16px, 1.8vw, 19px);
  padding: 18px 36px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 45, 146, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  margin: 8px auto 18px;
  letter-spacing: -0.01em;
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 45, 146, 0.50);
}
.cta-primary:active {
  transform: translateY(0);
}
.cta-divider {
  font-size: 13px;
  color: var(--muted);
  margin: 6px auto 14px;
  letter-spacing: 0.01em;
}

/* ════════ FORMULARIO ════════ */
.waitlist {
  display: flex;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 100px;
  max-width: 460px;
  margin: 0 auto 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.waitlist input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font: inherit;
  padding: 12px 16px;
  font-size: 15px;
}
.waitlist input::placeholder { color: var(--muted); }
.waitlist button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 100px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.waitlist button:hover { background: #e6207f; transform: translateY(-1px); }
.waitlist button:active { transform: translateY(0); }
.waitlist.big { max-width: 520px; }
.waitlist.big input, .waitlist.big button { padding: 15px 22px; font-size: 16px; }

.perk {
  font-size: 14px;
  color: var(--muted);
}
.privacy-note {
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 10px;
}

/* ════════ MOCKUP (STORIE + CHAMU) ════════ */
.mockup { display: flex; justify-content: center; }
.storie-card {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 760px) {
  .storie-card {
    max-width: 820px;
    flex-direction: row;
    align-items: stretch;
    gap: 28px;
  }
  .storie, .chat-phone {
    flex: 0 0 320px;
    align-self: flex-start;
  }
  .chamu-response {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}

/* ───── Storie ───── */
.storie {
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  line-height: 0;
}
.storie-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ───── Respuesta de Chamu ───── */
.chamu-response {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 20px;
}
.chamu-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.chamu-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.chamu-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.chamu-intro {
  font-size: 14.5px;
  margin-bottom: 14px;
  color: var(--text);
}
.option {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
  background: var(--bg);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.option-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.option p {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
}
.chamu-tip {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
}

/* ════════ WHY WOMEN ════════ */
.why-women {
  padding: 90px 32px 70px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255, 45, 146, 0.09), transparent 70%),
    linear-gradient(180deg, transparent, rgba(176, 38, 255, 0.04) 50%, transparent);
  position: relative;
}
.why-women-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.why-badge {
  display: inline-block;
  background: rgba(255, 45, 146, 0.16);
  border: 1px solid rgba(255, 45, 146, 0.45);
  color: var(--accent);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.why-women h2 {
  margin-bottom: 36px;
  text-align: center;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}
.why-women-text {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.why-women-text strong {
  color: var(--text);
  font-weight: 700;
}
.why-women-text em {
  font-style: italic;
  color: var(--text);
}
.why-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  padding: 20px 32px;
  background: var(--surface);
  border: 1px solid rgba(255, 45, 146, 0.3);
  border-radius: 18px;
}
.why-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.03em;
}
.why-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  max-width: 300px;
  text-align: center;
  line-height: 1.5;
}

/* ════════ MODOS ════════ */
.modes {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  line-height: 1.1;
}
.modes h2 { text-align: center; }
.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.mode {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 20px;
  transition: border-color 0.2s;
}
.mode:hover { border-color: var(--accent); }
.mode-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mode h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.mode-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.mode p:last-child {
  color: var(--muted);
  font-size: 15px;
}

/* ════════ WHY ════════ */
.why {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(255,45,146,0.025) 50%, transparent);
}
.why-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.why-text {
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.why-text strong { color: var(--text); font-weight: 600; }

/* ════════ CTA ════════ */
.cta {
  max-width: 640px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
}
.cta h2 { margin-bottom: 16px; }
.cta p { color: var(--muted); margin-bottom: 28px; font-size: 17px; }
.cta p strong { color: var(--text); }
.cta .waitlist { margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.micro { font-size: 12.5px; color: var(--muted-2); }

/* ════════ FOOTER ════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 32px;
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.social { display: flex; gap: 20px; }
.social a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}
.social a:hover { color: var(--text); }

/* ════════ ESTADO DEL FORM ════════ */
.form-success {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 14px 20px;
  border-radius: 100px;
  max-width: 460px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 500;
}
.form-success.big { max-width: 520px; }

/* ════════ DESKTOP ════════ */
@media (min-width: 900px) {
  .hero {
    padding-top: 64px;
    padding-bottom: 120px;
  }
  .hero-content {
    margin-bottom: 72px;
  }
}

/* ════════ CHAT DEMO (modo 2) ════════ */
.chat-demo {
  padding: 60px 32px 40px;
  background: linear-gradient(180deg, transparent, rgba(255,45,146,0.03) 50%, transparent);
}
.chat-demo-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.chat-demo h2,
.faq h2 {
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: -32px auto 48px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
}

/* Phone con chat */
.chat-phone {
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid #1a1a1a;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d, #b026ff);
}
.chat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.chat-name {
  color: white;
  font-weight: 600;
  font-size: 15px;
}
.chat-status {
  color: #888;
  font-size: 12px;
}
.chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 360px;
}
.chat-msg {
  max-width: 78%;
  padding: 8px 13px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  color: white;
}
.chat-msg.sent {
  align-self: flex-end;
  background: linear-gradient(135deg, #ff2d92, #b026ff);
  border-bottom-right-radius: 6px;
}
.chat-msg.received {
  align-self: flex-start;
  background: #262626;
  border-bottom-left-radius: 6px;
}
.chat-msg span {
  display: block;
  font-size: 10px;
  opacity: 0.65;
  margin-top: 3px;
}
.chat-seen {
  align-self: flex-end;
  font-size: 11px;
  color: #777;
  margin-top: 2px;
  font-style: italic;
}
.chat-gap {
  align-self: center;
  font-size: 11px;
  color: #666;
  margin: 14px 0;
  letter-spacing: 0.3px;
}

/* ════════ FAQ ════════ */
.faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px 40px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq details:hover {
  border-color: #383838;
}
.faq details[open] {
  border-color: var(--accent);
}
.faq summary {
  padding: 18px 56px 18px 22px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s;
  line-height: 1;
}
.faq details[open] summary::after {
  content: '−';
}
.faq details p {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq details p strong {
  color: var(--text);
  font-weight: 600;
}

/* ════════ MOBILE ════════ */
@media (max-width: 540px) {
  .waitlist {
    flex-direction: column;
    border-radius: 24px;
    padding: 8px;
  }
  .waitlist button { width: 100%; }
  .nav { padding: 20px; }
  .hero, .modes, .cta { padding-left: 20px; padding-right: 20px; }
  .why-inner { padding-left: 20px; padding-right: 20px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; margin-bottom: 32px; }
}
