/* Siembro — página de venta */
:root {
  --paper: #f6f7f2;
  --paper-2: #eef1e8;
  --paper-3: #e3e8dc;
  --white: #ffffff;
  --ink: #0e1512;
  --ink-2: #3a463f;
  --ink-3: #6b776f;
  --forest: #0b2e22;
  --forest-2: #124532;
  --forest-3: #1b5c43;
  --lime: #b4f04a;
  --lime-2: #d6ff7a;
  --mint: #5eead4;
  --sky: #7dd3fc;
  --line: rgba(14, 21, 18, 0.1);
  --line-strong: rgba(14, 21, 18, 0.18);
  --shadow-sm: 0 1px 2px rgba(14, 21, 18, 0.06), 0 6px 18px rgba(14, 21, 18, 0.06);
  --shadow-lg: 0 30px 80px rgba(11, 46, 34, 0.28);
  --r: 20px;
  --r-lg: 28px;
  --display: 'Sora', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body.landing { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
button { font: inherit; color: inherit; }
code { font-family: var(--mono); }

/* ---------- utilidades ---------- */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--lime), var(--mint), var(--sky)); transform-origin: left; transform: scaleX(0); z-index: 200; }
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
.kicker { display: inline-block; font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest-3); margin-bottom: 14px; }
.section { padding: 110px 24px; max-width: 1240px; margin: 0 auto; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-head.left { text-align: left; margin: 0 0 40px; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); line-height: 1.06; font-weight: 700; }
.section-head p { color: var(--ink-2); font-size: 1.12rem; margin-top: 18px; }
.mono { font-family: var(--mono); }

/* ---------- botones ---------- */
.btn { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 600; font-size: 15px; cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s; white-space: nowrap; }
.btn .arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-lime { background: var(--lime); color: var(--forest); box-shadow: 0 10px 30px rgba(180, 240, 74, 0.35); }
.btn-lime:hover { background: var(--lime-2); box-shadow: 0 14px 40px rgba(180, 240, 74, 0.45); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-2); }
.btn-glass { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.28); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255, 255, 255, 0.2); }
.btn-ghost { background: transparent; }
.btn-outline { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-outline:hover { background: var(--white); border-color: var(--ink); }
.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-xl { padding: 17px 28px; font-size: 17px; }
.ripple { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.45); transform: scale(0); animation: ripple 0.65s var(--ease) forwards; pointer-events: none; }
.btn-lime .ripple, .btn-outline .ripple { background: rgba(11, 46, 34, 0.18); }
@keyframes ripple { to { transform: scale(1); opacity: 0; } }

/* ---------- iconos de trazo ---------- */
.ico { display: inline-block; width: 18px; height: 18px; vertical-align: -3px; background: currentColor; -webkit-mask: no-repeat center / contain; mask: no-repeat center / contain; }
.ico-check { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); color: var(--lime); }
.ico-pin { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s7-6.2 7-12a7 7 0 1 0-14 0c0 5.8 7 12 7 12z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s7-6.2 7-12a7 7 0 1 0-14 0c0 5.8 7 12 7 12z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E"); }

/* ---------- navegación ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; gap: 28px; padding: 14px 28px; color: #fff; transition: background 0.35s, color 0.35s, box-shadow 0.35s, padding 0.35s; }
.nav.scrolled { background: rgba(246, 247, 242, 0.78); color: var(--ink); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); box-shadow: 0 1px 0 var(--line); padding: 10px 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.mark { position: relative; width: 30px; height: 30px; border-radius: 9px; background: var(--forest); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); flex: none; }
.nav:not(.scrolled) .mark { background: rgba(255, 255, 255, 0.14); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25); }
.mark i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.mark i:nth-child(1) { left: 6px; top: 7px; }
.mark i:nth-child(2) { right: 6px; top: 7px; }
.mark i:nth-child(3) { left: 12px; top: 12px; background: var(--mint); }
.mark i:nth-child(4) { left: 6px; bottom: 7px; }
.mark i:nth-child(5) { right: 6px; bottom: 7px; }
.nav-links { display: flex; gap: 6px; margin-left: 12px; }
.nav-links a { padding: 8px 12px; border-radius: 999px; font-weight: 500; font-size: 14.5px; opacity: 0.85; transition: background 0.2s, opacity 0.2s; white-space: nowrap; }
.nav-links a:hover { opacity: 1; background: rgba(255, 255, 255, 0.12); }
.nav.scrolled .nav-links a:hover { background: rgba(14, 21, 18, 0.06); }
.nav-cta { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.nav-cta .btn-ghost { color: inherit; }
.nav-cta .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.nav.scrolled .nav-cta .btn-ghost:hover { background: rgba(14, 21, 18, 0.06); }
.nav-burger { display: none; margin-left: auto; width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.25); background: transparent; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; }
.nav-burger span { width: 18px; height: 2px; background: currentColor; transition: transform 0.25s; }
.nav.scrolled .nav-burger { border-color: var(--line-strong); }

/* ---------- héroe ---------- */
.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: center; gap: 40px; padding: 140px 24px 90px; max-width: 1280px; margin: 0 auto; }
.hero-bg { position: absolute; inset: 0; left: 50%; width: 100vw; transform: translateX(-50%); overflow: hidden; z-index: -1; background: var(--forest); }
.hero-bg img { position: absolute; inset: -6% 0; width: 100%; height: 112%; object-fit: cover; opacity: 0.55; filter: saturate(1.1); color: transparent; font-size: 0; }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 46, 34, 0.55) 0%, rgba(11, 46, 34, 0.82) 55%, var(--paper) 100%), radial-gradient(60% 50% at 20% 30%, rgba(180, 240, 74, 0.22), transparent 70%), radial-gradient(40% 40% at 85% 20%, rgba(94, 234, 212, 0.18), transparent 70%); }
#heroField { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6; mix-blend-mode: screen; pointer-events: none; }
.hero-inner { color: #fff; max-width: 660px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); font-size: 13px; font-weight: 500; backdrop-filter: blur(8px); margin-bottom: 26px; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(180, 240, 74, 0.7); animation: live 1.8s infinite; }
@keyframes live { 70% { box-shadow: 0 0 0 9px rgba(180, 240, 74, 0); } 100% { box-shadow: 0 0 0 0 rgba(180, 240, 74, 0); } }
.hero h1 { font-size: clamp(2.7rem, 5.6vw, 4.8rem); line-height: 1.04; font-weight: 800; letter-spacing: -0.035em; text-wrap: balance; }
.section-head h2, .final h2 { text-wrap: balance; }
.grad { background: linear-gradient(90deg, var(--lime) 0%, var(--mint) 45%, var(--sky) 80%, var(--lime) 100%); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 7s linear infinite; }
@keyframes shimmer { to { background-position: 220% 0; } }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: rgba(255, 255, 255, 0.82); margin-top: 22px; max-width: 560px; }
.lead b { color: #fff; font-weight: 600; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-proof { list-style: none; padding: 0; margin: 30px 0 0; display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; color: rgba(255, 255, 255, 0.78); }
.hero-proof li { display: inline-flex; align-items: center; gap: 8px; }

.hero-stage { position: relative; width: 100%; min-width: 0; }
.device { position: relative; border-radius: 22px; background: linear-gradient(180deg, #17352a, #0b2e22); padding: 10px; box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, 0.08); transition: transform 0.4s var(--ease); }
.device-bar { display: flex; align-items: center; gap: 6px; padding: 4px 6px 10px; }
.device-bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.device-bar span:first-child { background: #ff7b72; }
.device-bar span:nth-child(2) { background: #ffd166; }
.device-bar span:nth-child(3) { background: var(--lime); }
.device-bar em { margin-left: auto; margin-right: auto; font-style: normal; font-family: var(--mono); font-size: 11px; color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.06); padding: 3px 12px; border-radius: 6px; }
.device-screen { position: relative; aspect-ratio: 16 / 10.4; border-radius: 12px; overflow: hidden; background: #0f2119; }
.device-screen iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #0f2119; }
.device-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.device-hint { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); font-family: var(--mono); font-size: 11px; color: rgba(255, 255, 255, 0.6); background: rgba(0, 0, 0, 0.35); padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(6px); transition: opacity 0.4s; white-space: nowrap; max-width: 92%; overflow: hidden; text-overflow: ellipsis; }
.float-chip { position: absolute; padding: 10px 14px; border-radius: 14px; background: rgba(255, 255, 255, 0.9); color: var(--ink); font-size: 13px; font-weight: 500; box-shadow: 0 12px 34px rgba(11, 46, 34, 0.25); backdrop-filter: blur(10px); animation: floaty 6s ease-in-out infinite; }
.float-chip b { font-family: var(--display); font-weight: 800; color: var(--forest); font-size: 15px; }
.float-chip.c1 { top: -18px; left: -22px; animation-delay: -1s; }
.float-chip.c2 { right: -18px; top: 38%; animation-delay: -3s; }
.float-chip.c3 { left: 8%; bottom: -20px; animation-delay: -5s; display: inline-flex; align-items: center; gap: 8px; }
.float-chip .ico-pin { color: var(--forest-3); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- franja de cultivos ---------- */
.strip { background: var(--paper); padding: 10px 0 0; }
.strip-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); font-weight: 600; white-space: nowrap; padding: 18px 0; }
.marquee { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 44px; width: max-content; padding: 18px 0; animation: marquee 34s linear infinite; font-family: var(--display); font-weight: 600; color: var(--ink-2); font-size: 15px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(250px, auto); gap: 16px; }
.span-2 { grid-column: span 2; }
.bento > .card:last-child { grid-column: 1 / -1; }
.row-2 { grid-row: span 2; }
.card { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: flex-end; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s; isolation: isolate; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(11, 46, 34, 0.14); border-color: var(--line-strong); }
.card[data-spot]::before { content: ''; position: absolute; inset: 0; background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(180, 240, 74, 0.22), transparent 60%); opacity: 0; transition: opacity 0.35s; pointer-events: none; z-index: 1; }
.card[data-spot]:hover::before { opacity: 1; }
.card-body { position: relative; z-index: 2; padding: 24px; }
.card h3 { font-size: 1.3rem; line-height: 1.2; font-weight: 700; margin: 10px 0 8px; }
.card p { color: var(--ink-2); font-size: 14.5px; }
.card-photo { background: var(--forest-2); }
.card-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); color: transparent; font-size: 0; }
.card-photo:hover img { transform: scale(1.05); }
.card-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 46, 34, 0) 30%, rgba(11, 46, 34, 0.92) 100%); }
.card-photo .card-body, .card-photo h3 { color: #fff; }
.card-photo p { color: rgba(255, 255, 255, 0.82); }
.card-dark { background: var(--forest); color: #fff; border-color: rgba(255, 255, 255, 0.08); }
.card-dark p { color: rgba(255, 255, 255, 0.78); }
.card-dark b { color: var(--lime); }
.card-dark[data-spot]::before { background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(94, 234, 212, 0.22), transparent 60%); }
.badge { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: var(--paper-2); color: var(--forest-3); }
.card-photo .badge { background: rgba(255, 255, 255, 0.18); color: #fff; backdrop-filter: blur(6px); }
.badge-lime { background: var(--lime); color: var(--forest); }
.big-num { display: block; font-size: 3.2rem; font-weight: 800; color: var(--lime); line-height: 1; margin-bottom: 4px; letter-spacing: -0.04em; }
.pattern-canvas { position: relative; display: block; height: 132px; width: 100%; flex: none; }
.pattern-switch { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.pattern-switch button { padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; font-size: 12.5px; font-weight: 600; cursor: pointer; transition: background 0.2s, color 0.2s; }
.pattern-switch button.active, .pattern-switch button:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.mono-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.mono-row code { font-size: 12.5px; background: var(--paper-2); padding: 6px 10px; border-radius: 8px; color: var(--forest); font-weight: 600; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.pill { display: inline-flex; gap: 6px; align-items: baseline; padding: 8px 12px; border-radius: 12px; background: var(--paper-2); font-size: 13px; color: var(--ink-2); transition: background 0.2s, transform 0.2s; }
.pill b { color: var(--forest); font-family: var(--display); }
.pill:hover { background: var(--lime); color: var(--forest); transform: translateY(-2px); }

/* ---------- pasos ---------- */
.steps-section { padding-top: 60px; }
.steps-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: start; }
.steps { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 6px; }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.step-n { font-family: var(--mono); font-weight: 600; font-size: 13px; color: var(--forest); width: 44px; height: 44px; border-radius: 12px; background: var(--lime); display: grid; place-items: center; }
.steps h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.steps p { color: var(--ink-2); font-size: 15px; }
.steps-visual { position: sticky; top: 110px; }
.visual-card { border-radius: var(--r-lg); background: var(--forest); padding: 14px; box-shadow: var(--shadow-lg); transition: transform 0.4s var(--ease); }
.visual-card canvas { width: 100%; aspect-ratio: 4 / 3.4; border-radius: 18px; display: block; background: #0f2119; }
.visual-legend { display: flex; gap: 16px; align-items: center; color: rgba(255, 255, 255, 0.75); font-size: 12.5px; padding: 12px 6px 2px; }
.visual-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 6px; }
.visual-legend .mono { margin-left: auto; color: var(--lime); }

/* ---------- antes / ahora ---------- */
.compare { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); }
.compare-head, .compare-row { display: grid; grid-template-columns: 1.1fr 1.4fr 1.6fr; }
.compare-head { background: var(--paper-2); font-family: var(--display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.compare-head span, .compare-row span { padding: 16px 20px; }
.compare-head .old { color: var(--ink-3); }
.compare-head .new { color: var(--forest); background: rgba(180, 240, 74, 0.25); }
.compare-row { border-top: 1px solid var(--line); font-size: 14.5px; }
.compare-row span:first-child { font-weight: 600; }
.compare-row .old { color: var(--ink-3); }
.compare-row .new { color: var(--forest); font-weight: 500; background: rgba(180, 240, 74, 0.07); position: relative; padding-left: 44px; }
.compare-row .new::before { content: ''; position: absolute; left: 18px; top: 19px; width: 16px; height: 16px; border-radius: 50%; background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2e22' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat; }

/* ---------- precios ---------- */
.billing-toggle { display: inline-flex; margin-top: 26px; padding: 4px; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line); }
.billing-toggle button { padding: 9px 18px; border-radius: 999px; border: 0; background: transparent; font-weight: 600; cursor: pointer; display: inline-flex; gap: 8px; align-items: center; transition: background 0.25s, color 0.25s; }
.billing-toggle button.active { background: var(--forest); color: #fff; }
.billing-toggle .save { font-size: 11px; padding: 2px 8px; border-radius: 999px; background: var(--lime); color: var(--forest); font-weight: 700; }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.plan { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); isolation: isolate; overflow: hidden; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(11, 46, 34, 0.12); }
.plan[data-spot]::before { content: ''; position: absolute; inset: 0; background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(180, 240, 74, 0.18), transparent 60%); opacity: 0; transition: opacity 0.35s; pointer-events: none; }
.plan[data-spot]:hover::before { opacity: 1; }
.plan h3 { font-size: 1.25rem; font-weight: 700; }
.price { display: flex; align-items: baseline; gap: 4px; margin-top: 14px; }
.price .cur { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--ink-3); }
.price .amount { font-family: var(--display); font-size: clamp(2.3rem, 3.2vw, 3rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price .amount.small { font-size: 2rem; }
.price .per { color: var(--ink-3); font-size: 14px; margin-left: 6px; white-space: nowrap; }
.price-usd { color: var(--ink-3); font-size: 13.5px; margin-top: 6px; }
.plan-desc { color: var(--ink-2); margin: 16px 0 8px; font-size: 15px; min-height: 46px; }
.plan-list { list-style: none; padding: 0; margin: 12px 0 26px; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; flex: 1; }
.plan-list li { position: relative; padding-left: 28px; }
.plan-list li::before { content: ''; position: absolute; left: 0; top: 3px; width: 17px; height: 17px; border-radius: 50%; background: var(--paper-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2e22' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat; }
.plan small { display: block; text-align: center; color: var(--ink-3); font-size: 12.5px; margin-top: 12px; }
.plan-pro { background: var(--forest); color: #fff; border-color: rgba(255, 255, 255, 0.1); transform: scale(1.03); box-shadow: var(--shadow-lg); }
.plan-pro:hover { transform: scale(1.03) translateY(-4px); }
.plan-pro .price .cur, .plan-pro .price .per, .plan-pro .price-usd, .plan-pro .plan-desc, .plan-pro small { color: rgba(255, 255, 255, 0.72); }
.plan-pro .plan-list li::before { background-color: var(--lime); }
.plan-pro .plan-list b { color: var(--lime); }
.plan-tag { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--lime); color: var(--forest); padding: 5px 10px; border-radius: 999px; }
.pricing-note { text-align: center; color: var(--ink-3); font-size: 13.5px; margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 0 22px; transition: border-color 0.2s, box-shadow 0.2s; }
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--display); font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--forest-3); transition: transform 0.3s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 20px; color: var(--ink-2); animation: faqIn 0.35s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- soporte y contacto ---------- */
.anchor { position: relative; top: -90px; display: block; height: 0; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1000px; margin: 0 auto; }
.support-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); isolation: isolate; }
.support-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(11, 46, 34, 0.12); }
.support-card[data-spot]::before { content: ''; position: absolute; inset: 0; background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(180, 240, 74, 0.18), transparent 60%); opacity: 0; transition: opacity 0.35s; pointer-events: none; z-index: -1; }
.support-card[data-spot]:hover::before { opacity: 1; }
.support-ico { width: 46px; height: 46px; border-radius: 14px; background: var(--forest); display: grid; place-items: center; color: var(--lime); }
.support-ico .ico { width: 22px; height: 22px; }
.support-card h3 { font-size: 1.35rem; font-weight: 700; }
.support-card p { color: var(--ink-2); font-size: 15px; }
.support-card code { background: var(--paper-2); padding: 1px 6px; border-radius: 6px; font-size: 13px; }
.support-card .email { font-family: var(--mono); font-weight: 600; font-size: 1.05rem; color: var(--forest); text-decoration: underline; text-decoration-color: rgba(11, 46, 34, 0.25); text-underline-offset: 4px; word-break: break-all; }
.support-card .row { display: flex; gap: 8px; flex-wrap: wrap; }
.support-list { list-style: none; padding: 14px 0 0; margin: 4px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--ink-2); }
.support-list li { position: relative; padding-left: 22px; }
.support-list li::before { content: ''; position: absolute; left: 0; top: 5px; width: 13px; height: 13px; border-radius: 50%; background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2e22' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 8px no-repeat; }
.ico-life { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Cpath d='M5.6 5.6l3.9 3.9M14.5 14.5l3.9 3.9M18.4 5.6l-3.9 3.9M9.5 14.5l-3.9 3.9'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Cpath d='M5.6 5.6l3.9 3.9M14.5 14.5l3.9 3.9M18.4 5.6l-3.9 3.9M9.5 14.5l-3.9 3.9'/%3E%3C/svg%3E"); }
.ico-mail { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='3'/%3E%3Cpath d='M3.5 7.5 12 13l8.5-5.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='3'/%3E%3Cpath d='M3.5 7.5 12 13l8.5-5.5'/%3E%3C/svg%3E"); }
.support-form { max-width: 1000px; margin: 18px auto 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.support-form-head h3 { font-size: 1.15rem; font-weight: 700; }
.support-form-head p { color: var(--ink-3); font-size: 14px; margin-top: 4px; }
.support-form-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 16px; }
.support-form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.support-form-grid label.wide { grid-column: 1 / -1; }
.support-form-grid input, .support-form-grid select, .support-form-grid textarea { font: inherit; font-size: 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--line-strong); border-radius: 12px; padding: 11px 12px; width: 100%; resize: vertical; }
.support-form-grid input:focus, .support-form-grid select:focus, .support-form-grid textarea:focus { outline: none; border-color: var(--forest-3); box-shadow: 0 0 0 3px rgba(180, 240, 74, 0.35); }
.support-form-actions { display: flex; align-items: center; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.support-form-note { font-size: 13px; color: var(--forest-3); font-weight: 600; }

/* ---------- CTA final ---------- */
.final { position: relative; overflow: hidden; background: var(--forest); color: #fff; padding: 120px 24px; text-align: center; }
#finalField { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
.final-inner { position: relative; max-width: 760px; margin: 0 auto; }
.final h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; }
.final p { color: rgba(255, 255, 255, 0.78); font-size: 1.15rem; margin-top: 16px; }
.final .hero-cta { justify-content: center; }

/* ---------- footer ---------- */
.footer { background: var(--paper-2); border-top: 1px solid var(--line); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 56px 24px 30px; display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; }
.footer-brand p { color: var(--ink-3); margin-top: 12px; max-width: 320px; font-size: 14.5px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin-bottom: 12px; }
.footer-cols a { display: block; padding: 5px 0; color: var(--ink-2); font-size: 14.5px; }
.footer-cols a:hover { color: var(--forest); }
.footer-credits { max-width: 1240px; margin: 0 auto; padding: 18px 24px 34px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; color: var(--ink-3); border-top: 1px solid var(--line); }
.footer-credits a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- diálogo ---------- */
.dialog { border: 1px solid var(--line-strong); border-radius: 22px; padding: 28px 30px; max-width: 640px; width: min(92vw, 640px); background: var(--white); color: var(--ink); box-shadow: var(--shadow-lg); }
.dialog::backdrop { background: rgba(11, 46, 34, 0.55); backdrop-filter: blur(4px); }
.dialog h3 { font-size: 1.4rem; margin-bottom: 12px; }
.dialog p { color: var(--ink-2); margin-bottom: 10px; font-size: 15px; }
.dialog-actions { display: flex; justify-content: flex-end; margin-top: 18px; }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .nav-links { gap: 0; margin-left: 4px; }
  .nav-links a { padding: 8px 9px; font-size: 13.5px; }
}
@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(240px, auto); }
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-stage { max-width: 720px; margin: 20px auto 0; }
  .float-chip.c1 { left: 6px; }
  .float-chip.c2 { right: 6px; }
}
@media (max-width: 1040px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 12px; right: 12px; flex-direction: column; background: var(--white); color: var(--ink); border-radius: 18px; padding: 10px; box-shadow: var(--shadow-lg); }
}
@media (max-width: 860px) {
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 12px; right: 12px; flex-direction: column; background: var(--white); color: var(--ink); border-radius: 18px; padding: 10px; box-shadow: var(--shadow-lg); }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-visual { position: static; }
  .compare-head { display: none; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row span:first-child { background: var(--paper-2); font-family: var(--display); }
  .compare-row .old::before { content: 'Antes: '; font-weight: 600; }
  .plans { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .support-form-grid { grid-template-columns: 1fr; }
  .plan-pro { transform: none; }
  .plan-pro:hover { transform: translateY(-4px); }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 80px 20px; }
  .section-head h2 br, .final h2 br { display: none; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .card { min-height: 220px; }
  .card-photo { min-height: 280px; }
  .span-2, .row-2 { grid-column: auto; grid-row: auto; }
  .hero { padding-top: 110px; }
  .hero-cta .btn { width: 100%; }
  #heroField { opacity: 0.3; }
  .float-chip { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .float-chip, .grad, .dot-live { animation: none; }
  [data-reveal] { transition: none; }
}
