/* PLANNER · Landing page
 * Tokens tomados de la app (Planner_movil/src/constants/theme.ts y accents.ts).
 */
:root {
    --pl-blue: #2563EB;
    --pl-blue-dark: #1D4ED8;
    --pl-brand: #0245AE;
    --pl-brand-light: #1E6FF0;
    --pl-ink: #0B1220;
    --pl-text: #17202A;
    --pl-muted: #5E6B7A;
    --pl-border: #DCE2EA;
    --pl-neutral: #E7EBF0;
    --pl-soft: #F3F5F8;
    --pl-bg: #F7F8FA;
    --pl-selected: #E8EEF7;
    --pl-success: #21865B;
    --pl-danger: #C0392B;
    --pl-warning: #A16207;

    --pl-r-xs: 8px;
    --pl-r-sm: 12px;
    --pl-r-md: 16px;
    --pl-r-lg: 24px;
    --pl-r-xl: 32px;

    --pl-shadow-soft: 0 1px 3px rgba(15, 23, 42, .08);
    --pl-shadow-card: 0 12px 32px -12px rgba(15, 23, 42, .18);
    --pl-shadow-phone: 0 50px 80px -30px rgba(2, 24, 72, .55), 0 18px 36px -18px rgba(2, 24, 72, .35);

    --pl-ease: cubic-bezier(0.05, 0.7, 0.1, 1);
    --pl-font: 'Urbanist', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --pl-gutter: 24px;

    /* Tokens por tema. --pl-ink es siempre oscuro (fondos de botones, banda y pie);
       --pl-heading es el color de los títulos y cambia con el tema. */
    --pl-heading: #0B1220;
    --pl-body: #3B4655;
    --pl-page: #ffffff;
    --pl-surface: #ffffff;
    --pl-control: #EAF0F8;
    --pl-input: #ffffff;
    --pl-placeholder: #98A2B3;
    --pl-contrast-bg: #0B1220;
    --pl-contrast-fg: #ffffff;
    --pl-nav-glass: rgba(255, 255, 255, .86);
    --pl-link: #2563EB;
    --pl-auth-bg: #F5F8FD;
    --pl-blob-1: rgba(2, 69, 174, .08);
    --pl-blob-2: rgba(2, 69, 174, .05);
    --pl-danger-bg: #FBE9E7;
    --pl-success-bg: #E4F5EC;
    --pl-footer-bg: #0B1220;
    /* Azul de marca por tema: gradiente del icono de la app en claro; azul marino con brillo en oscuro. */
    --pl-hero-bg: linear-gradient(140deg, var(--pl-brand-light) 0%, var(--pl-blue) 38%, var(--pl-brand) 100%);
    --pl-hero-wave: rgba(4, 30, 100, .28);
    --pl-featured-bg: linear-gradient(150deg, var(--pl-brand-light), var(--pl-blue) 45%, var(--pl-brand));
    --pl-orb: radial-gradient(circle at 35% 35%, var(--pl-brand-light), var(--pl-blue) 45%, var(--pl-brand));
    --pl-blue-surface: var(--pl-blue);
    color-scheme: light;
}

/* Modo oscuro: paleta dark de la app (theme.ts). Se activa con el botón (data-theme)
   o, sin JavaScript, con la preferencia del sistema. */
:root[data-theme="dark"] {
    --pl-heading: #F4F7FB;
    --pl-text: #E6EBF2;
    --pl-body: #C3CCD8;
    --pl-muted: #AEB8C5;
    --pl-border: #303846;
    --pl-neutral: #273449;
    --pl-soft: #1B2028;
    --pl-bg: #101318;
    --pl-selected: #22304A;
    --pl-page: #101318;
    --pl-surface: #1B2028;
    --pl-control: #273449;
    --pl-input: #151A21;
    --pl-placeholder: #6B7686;
    --pl-contrast-bg: #F4F7FB;
    --pl-contrast-fg: #0B1220;
    --pl-nav-glass: rgba(16, 19, 24, .82);
    --pl-link: #8FB8FF;
    --pl-auth-bg: #101318;
    --pl-blob-1: rgba(110, 168, 254, .14);
    --pl-blob-2: rgba(2, 69, 174, .22);
    --pl-danger: #FF8D86;
    --pl-success: #65D6A4;
    --pl-danger-bg: rgba(255, 141, 134, .12);
    --pl-success-bg: rgba(101, 214, 164, .12);
    --pl-footer-bg: #0A0D12;
    --pl-shadow-soft: 0 1px 3px rgba(0, 0, 0, .4);
    --pl-shadow-card: 0 12px 32px -12px rgba(0, 0, 0, .7);
    --pl-hero-bg: radial-gradient(90% 80% at 88% 0%, rgba(110, 168, 254, .30), transparent 60%), linear-gradient(145deg, #1B3F95 0%, #132E70 45%, #0A1A42 100%);
    --pl-hero-wave: rgba(0, 0, 0, .28);
    --pl-featured-bg: radial-gradient(90% 70% at 90% 0%, rgba(110, 168, 254, .30), transparent 60%), linear-gradient(150deg, #1B3F95, #132E70 55%, #0A1A42);
    --pl-orb: radial-gradient(circle at 35% 35%, #3B6FD8, #173A8A 50%, #0A1A42);
    --pl-blue-surface: #1B3F95;
    color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) {
        --pl-heading: #F4F7FB; --pl-text: #E6EBF2; --pl-body: #C3CCD8; --pl-muted: #AEB8C5;
        --pl-border: #303846; --pl-neutral: #273449; --pl-soft: #1B2028; --pl-bg: #101318;
        --pl-selected: #22304A; --pl-page: #101318; --pl-surface: #1B2028; --pl-control: #273449;
        --pl-input: #151A21; --pl-placeholder: #6B7686; --pl-contrast-bg: #F4F7FB; --pl-contrast-fg: #0B1220;
        --pl-nav-glass: rgba(16, 19, 24, .82); --pl-link: #8FB8FF; --pl-auth-bg: #101318;
        --pl-blob-1: rgba(110, 168, 254, .14); --pl-blob-2: rgba(2, 69, 174, .22);
        --pl-danger: #FF8D86; --pl-success: #65D6A4; --pl-danger-bg: rgba(255, 141, 134, .12);
        --pl-success-bg: rgba(101, 214, 164, .12); --pl-footer-bg: #0A0D12;
        --pl-shadow-soft: 0 1px 3px rgba(0, 0, 0, .4); --pl-shadow-card: 0 12px 32px -12px rgba(0, 0, 0, .7);
        --pl-hero-bg: radial-gradient(90% 80% at 88% 0%, rgba(110, 168, 254, .30), transparent 60%), linear-gradient(145deg, #1B3F95 0%, #132E70 45%, #0A1A42 100%);
        --pl-hero-wave: rgba(0, 0, 0, .28);
        --pl-featured-bg: radial-gradient(90% 70% at 90% 0%, rgba(110, 168, 254, .30), transparent 60%), linear-gradient(150deg, #1B3F95, #132E70 55%, #0A1A42);
        --pl-orb: radial-gradient(circle at 35% 35%, #3B6FD8, #173A8A 50%, #0A1A42); --pl-blue-surface: #1B3F95;
        color-scheme: dark;
    }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.pl-body {
    margin: 0;
    font-family: var(--pl-font);
    font-size: 17px;
    line-height: 1.55;
    color: var(--pl-text);
    background: var(--pl-page);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
/* :where() deja el reset sin especificidad, para que las clases de cada componente manden. */
.pl-body :where(img) { max-width: 100%; display: block; }
.pl-body :where(a) { color: inherit; text-decoration: none; }
.pl-body :where(h1, h2, h3, h4, p) { margin: 0; }
.pl-body :where(ul) { margin: 0; padding: 0; list-style: none; }
.pl-body :where(button) { font: inherit; cursor: pointer; }
.pl-body :focus-visible { outline: 3px solid var(--pl-blue); outline-offset: 3px; border-radius: 6px; }
section[id], footer[id] { scroll-margin-top: 88px; }

.pl-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--pl-gutter); }
.pl-center { text-align: center; }
.pl-nowrap { white-space: nowrap; }
.pl-sr, .pl-hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.pl-skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--pl-ink); color: #fff !important; padding: 10px 16px; border-radius: var(--pl-r-sm); }
.pl-skip:focus { top: 12px; }

.pl-ico { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pl-ico--fill { fill: currentColor; stroke: none; }
.pl-ico--brand { stroke: none; }

.pl-section { padding: 120px 0; position: relative; }
.pl-h2 { font-size: clamp(34px, 4.2vw, 52px); line-height: 1.08; letter-spacing: -0.025em; font-weight: 700; color: var(--pl-heading); }
.pl-sub { margin-top: 16px; font-size: 19px; color: var(--pl-muted); max-width: 560px; margin-left: auto; margin-right: auto; }

.pl-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; letter-spacing: .02em; padding: 6px 14px 6px 10px; border-radius: 999px; background: var(--pl-selected); color: var(--pl-blue); }
.pl-eyebrow--light { background: rgba(255, 255, 255, .14); color: #fff; backdrop-filter: blur(6px); }

/* ---------- Buttons ---------- */
.pl-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    height: 48px; padding: 0 22px; border-radius: var(--pl-r-sm); border: 0;
    font-weight: 700; font-size: 15px; white-space: nowrap;
    transition: transform .2s var(--pl-ease), box-shadow .2s var(--pl-ease), background-color .2s;
}
.pl-btn:hover { transform: translateY(-2px); }
.pl-btn:active { transform: translateY(0); }
.pl-btn--sm { height: 40px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.pl-btn--lg { height: 58px; padding: 0 28px; font-size: 17px; border-radius: 14px; }
.pl-btn--block { width: 100%; }
.pl-btn--dark { background: var(--pl-contrast-bg); color: var(--pl-contrast-fg) !important; }
.pl-btn--dark:hover { box-shadow: 0 12px 24px -10px rgba(11, 18, 32, .6); }
.pl-btn--light { background: #fff; color: var(--pl-ink) !important; }
.pl-hero .pl-btn--dark { background: var(--pl-ink); color: #fff !important; }
.pl-btn--light:hover { box-shadow: 0 12px 24px -10px rgba(0, 0, 0, .35); }
.pl-btn--ghost { background: var(--pl-soft); color: var(--pl-heading) !important; }
.pl-btn--ghost:hover { background: var(--pl-selected); }

.pl-chip-btn { display: inline-flex; align-items: center; height: 36px; padding: 0 16px; border-radius: 10px; background: var(--pl-soft); font-size: 14px; font-weight: 600; color: var(--pl-heading); transition: background-color .2s, color .2s; }
.pl-chip-btn:hover { background: color-mix(in srgb, var(--a, var(--pl-blue)) 12%, var(--pl-surface)); color: var(--a, var(--pl-blue)); }

.pl-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; color: var(--pl-heading); }
.pl-link .pl-ico { transition: transform .2s var(--pl-ease); }
.pl-link:hover .pl-ico { transform: translateX(4px); }

/* ---------- Nav ---------- */
.pl-nav { position: sticky; top: 0; z-index: 50; transition: background-color .25s, box-shadow .25s, backdrop-filter .25s; }
.pl-nav.is-scrolled { background: var(--pl-nav-glass); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 1px 0 var(--pl-border); }
.pl-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 80px; max-width: 1392px; }
.pl-nav__logo img { height: 42px; width: auto; }
.pl-nav__links { display: flex; align-items: center; gap: 36px; font-weight: 600; font-size: 15px; }
.pl-nav__links > a { position: relative; padding: 6px 0; color: var(--pl-text); }
.pl-nav__links > a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px; background: var(--pl-blue); transform: scaleX(0); transition: transform .25s var(--pl-ease); }
.pl-nav__links > a:hover::after { transform: scaleX(1); }
.pl-nav__mobile-actions { display: none; }
.pl-nav__actions { display: flex; align-items: center; gap: 10px; }
.pl-nav__toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: var(--pl-r-sm); background: var(--pl-soft); color: var(--pl-heading); align-items: center; justify-content: center; }
.pl-nav__toggle .pl-ico { width: 22px; height: 22px; }
.pl-nav__toggle .pl-ico--close { display: none; }

/* ---------- Hero ---------- */
.pl-hero { padding: 32px var(--pl-gutter) 0; margin-bottom: 56px; }
.pl-hero__panel {
    position: relative; max-width: 1392px; margin: 0 auto;
    display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: 24px;
    min-height: 620px; padding: 88px 0 88px 80px;
    border-radius: var(--pl-r-xl); color: #fff;
    /* Zoom out al hacer scroll (landing.js): empieza ampliado y vuelve a su tamaño, anclado arriba. */
    transform-origin: 50% 0; will-change: transform;
    background: var(--pl-hero-bg);
}
/* Escala inicial antes de que cargue el JS (que luego calcula la exacta), para evitar un salto. */
.pl-js .pl-hero__panel { transform: scale(1.03); }
.pl-hero__bg { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; pointer-events: none; }
/* Curva del icono de la app (la ola de la esquina inferior derecha). */
.pl-hero__bg span:first-child { position: absolute; right: -18%; bottom: -55%; width: 90%; height: 110%; border-radius: 50%; background: var(--pl-hero-wave); transform: rotate(-12deg); }
.pl-hero__bg span:last-child { position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(115deg, #000 0%, transparent 55%); -webkit-mask-image: linear-gradient(115deg, #000 0%, transparent 55%); }

.pl-hero__copy { position: relative; z-index: 2; align-self: center; }
.pl-hero__title { margin-top: 22px; font-size: clamp(46px, 6.2vw, 88px); line-height: 1; letter-spacing: -0.035em; font-weight: 700; color: #fff; }
.pl-spark { display: inline-block; width: .42em; height: .42em; margin-left: .18em; vertical-align: .55em; fill: #fff; animation: pl-twinkle 3.2s ease-in-out infinite; }
.pl-hero__lead { margin-top: 26px; max-width: 470px; font-size: 19px; line-height: 1.55; color: rgba(255, 255, 255, .88); }
.pl-hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.pl-hero__note { font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, .78); }
.pl-hero__more { margin-top: 44px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: #fff !important; }
.pl-hero__more .pl-ico { animation: pl-bob 2s ease-in-out infinite; }
.pl-hero__arrow { position: absolute; right: -40px; top: 44%; width: 200px; height: 200px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; opacity: .95; }

.pl-hero__phones { position: relative; z-index: 3; min-height: 560px; }

/* ---------- Phone mockups ---------- */
.pl-phone {
    --ph-bg: #F7F8FA; --ph-surface: #fff; --ph-text: #17202A; --ph-muted: #5E6B7A; --ph-border: #DCE2EA; --ph-primary: #2563EB; --ph-neutral: #E7EBF0;
    position: absolute; width: 292px; height: 612px; border-radius: 40px; padding: 8px;
    background: #0B1220; box-shadow: var(--pl-shadow-phone);
    will-change: transform;
}
.pl-phone.pl-dark { --ph-bg: #101318; --ph-surface: #1B2028; --ph-text: #F4F7FB; --ph-muted: #AEB8C5; --ph-border: #303846; --ph-primary: #6EA8FE; --ph-neutral: #273449; background: #262c36; }
.pl-screen { position: relative; height: 100%; border-radius: 32px; overflow: hidden; background: var(--ph-bg); color: var(--ph-text); padding: 12px 14px 0; font-size: 12px; line-height: 1.35; display: flex; flex-direction: column; gap: 10px; }
.pl-screen b { font-weight: 700; }
.pl-screen small { display: block; color: var(--ph-muted); font-size: 10.5px; }
.pl-status { display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 700; padding: 2px 6px 0; }
.pl-status__icons { display: inline-flex; gap: 4px; align-items: flex-end; }
.pl-status__icons i { display: block; width: 4px; border-radius: 1px; background: currentColor; }
.pl-status__icons i:nth-child(1) { height: 6px; } .pl-status__icons i:nth-child(2) { height: 8px; } .pl-status__icons i:nth-child(3) { width: 18px; height: 9px; border-radius: 3px; }
.pl-screen__logo { width: 116px; height: auto; margin: 2px 0 0 -2px; }
.pl-screen__bar { display: flex; align-items: center; gap: 6px; font-size: 14px; padding-top: 4px; }
.pl-screen__bar .pl-ico { width: 18px; height: 18px; }
.pl-screen__title b { font-size: 18px; letter-spacing: -.01em; }
.pl-screen__title small { font-size: 11px; }

.pl-sec-head { display: flex; align-items: center; justify-content: space-between; margin-top: 2px; }
.pl-sec-head b { font-size: 13px; }
.pl-sec-head small { font-size: 10px; }
.pl-sec-head__btn { width: 26px; height: 26px; border-radius: 8px; background: var(--ph-surface); border: 1px solid var(--ph-border); display: grid; place-items: center; }
.pl-sec-head__btn .pl-ico { width: 13px; height: 13px; }
.pl-stack { display: flex; flex-direction: column; gap: 7px; }

/* AccentCard: tarjeta con borde de color a la izquierda (firma visual de la app). */
.pl-acard { position: relative; background: var(--ph-surface); border: 1px solid var(--ph-border); border-radius: 12px; padding: 9px 10px 9px 13px; box-shadow: var(--pl-shadow-soft); overflow: hidden; display: flex; flex-direction: column; gap: 7px; }
.pl-acard::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--a); }
.pl-acard p { font-size: 10.5px; color: var(--ph-muted); line-height: 1.4; }
.pl-metric { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 8px; }
.pl-metric b { display: block; font-size: 11.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pl-metric strong { font-size: 17px; font-variant-numeric: tabular-nums; }
.pl-bubble { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; color: var(--a); background: color-mix(in srgb, var(--a) 12%, transparent); flex: none; }
.pl-bubble .pl-ico { width: 15px; height: 15px; }
.pl-bubble--solid { background: var(--a); color: #fff; }
.pl-meter { display: block; height: 3px; border-radius: 3px; background: var(--ph-neutral, var(--pl-neutral)); position: relative; overflow: hidden; }
.pl-meter::after { content: ''; position: absolute; inset: 0; width: var(--v); background: var(--a); border-radius: inherit; transform-origin: left; }
.pl-js .pl-reveal .pl-meter::after, .pl-js .pl-hero .pl-meter::after { animation: pl-fill 1.1s .35s var(--pl-ease) both; }
.pl-js .pl-reveal:not(.is-in) .pl-meter::after { animation: none; transform: scaleX(0); }
.pl-quota { gap: 6px; }
.pl-quota__row { display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; }
.pl-quota__row small { font-size: 10.5px; font-weight: 500; }

.pl-tabbar { margin-top: auto; margin-left: -14px; margin-right: -14px; display: grid; grid-template-columns: repeat(5, 1fr); padding: 8px 4px 14px; background: var(--ph-surface); border-top: 1px solid var(--ph-border); }
.pl-tabbar span { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 7.5px; font-weight: 600; color: var(--ph-muted); }
.pl-tabbar .pl-ico { width: 17px; height: 17px; }
.pl-tabbar .is-active { color: var(--ph-primary); }

.pl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.pl-steps i { height: 4px; border-radius: 4px; background: var(--ph-border); }
.pl-steps i.is-done, .pl-steps i.is-on { background: var(--ph-primary); }
.pl-steps i.is-on { animation: pl-pulse 1.6s ease-in-out infinite; }
.pl-steps__label { margin-top: -4px; }
.pl-dcard { background: var(--ph-surface); border: 1px solid var(--ph-border); border-radius: 14px; padding: 11px 12px; }
.pl-dcard b { font-size: 13px; }
.pl-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }
.pl-chips span { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 999px; background: color-mix(in srgb, var(--ph-primary) 18%, transparent); color: var(--ph-primary); }
.pl-moment { display: flex; justify-content: space-between; align-items: center; }
.pl-moment b { font-size: 11.5px; color: var(--a); }
.pl-moment em { font-style: normal; font-size: 10px; font-weight: 700; color: var(--ph-muted); }
.pl-sheet { margin: auto -14px 0; padding: 12px 14px 18px; background: #fff; border-radius: 20px 20px 0 0; display: grid; grid-template-columns: 1fr 1.25fr; gap: 8px; }
.pl-sheet__btn { height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; font-weight: 700; background: #E8EEF7; color: #17202A; }
.pl-sheet__btn .pl-ico { width: 14px; height: 14px; }
.pl-sheet__btn.is-primary { background: var(--pl-blue); color: #fff; }

.pl-session { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 14px; border: 1px solid var(--a); background: color-mix(in srgb, var(--a) 9%, #fff); }
.pl-session .pl-bubble { width: 34px; height: 34px; border-radius: 11px; }
.pl-session b { font-size: 12px; color: var(--a); }
.pl-att-sum { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.pl-att-sum div { background: #fff; border: 1px solid var(--ph-border); border-radius: 12px; padding: 8px; text-align: center; }
.pl-att-sum strong { display: block; font-size: 17px; color: var(--a); }
.pl-att-sum small { font-size: 9.5px; }
.pl-roll { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--ph-border); border-radius: 14px; padding: 2px 10px; }
.pl-roll li { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; font-size: 11.5px; font-weight: 600; }
.pl-roll li + li { border-top: 1px solid var(--ph-neutral); }
.pl-pat { display: inline-flex; gap: 3px; font-style: normal; }
.pl-pat i { width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; font-style: normal; font-size: 9.5px; font-weight: 700; color: var(--ph-muted); background: var(--ph-neutral); }
.pl-pat i.is-p { background: #21865B; color: #fff; }
.pl-pat i.is-a { background: #C0392B; color: #fff; }
.pl-pat i.is-t { background: #A16207; color: #fff; }

/* Posiciones en el hero */
.pl-phone--a { left: 2%; top: 0; z-index: 2; }
.pl-phone--b { left: calc(2% + 222px); top: 64px; z-index: 1; height: 580px; }
.pl-hero__phones .pl-phone { animation: pl-rise .9s var(--pl-ease) both; }
.pl-hero__phones .pl-phone--b { animation-delay: .12s; }

/* ---------- Funciones (tarjetas) ---------- */
.pl-most { padding-top: 40px; }
.pl-most__grid { margin-top: 48px; display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.1fr); gap: 24px; }
.pl-fcard { position: relative; overflow: hidden; min-height: 290px; padding: 40px 44px; border-radius: 28px; background: var(--pl-soft); display: flex; flex-direction: column; align-items: flex-start; transition: transform .3s var(--pl-ease), box-shadow .3s var(--pl-ease); }
.pl-fcard:hover { transform: translateY(-4px); box-shadow: var(--pl-shadow-card); }
.pl-fcard h3 { position: relative; z-index: 1; font-size: 24px; line-height: 1.2; font-weight: 700; color: var(--pl-heading); max-width: 340px; }
.pl-fcard p { position: relative; z-index: 1; margin-top: 12px; font-size: 17px; color: var(--pl-muted); max-width: 330px; }
.pl-fcard .pl-link { position: relative; z-index: 1; margin-top: auto; padding-top: 28px; }
.pl-fcard__art { position: absolute; right: -6px; bottom: -6px; width: 190px; height: 170px; }
.pl-fcard__art--ring { right: -40px; bottom: -40px; width: 250px; height: 250px; }
.pl-fill-blue { fill: var(--pl-blue); }
.pl-fill-ink { fill: var(--pl-heading); }
.pl-stroke { fill: none; stroke: var(--pl-heading); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.pl-ring { fill: none; stroke-width: 18; stroke-linecap: round; }
.pl-ring--a { stroke: var(--pl-heading); }
.pl-ring--b { stroke: var(--pl-blue); }
.pl-ring--c { stroke: #7C3AED; }

/* ---------- Ventajas ---------- */
.pl-adv { padding-top: 40px; }
.pl-adv__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 2fr); gap: 56px; }
.pl-adv__intro p { margin-top: 18px; font-size: 18px; color: var(--pl-muted); max-width: 340px; }
.pl-adv__intro a { color: var(--pl-link); font-weight: 600; }
.pl-adv__items { display: grid; grid-template-columns: 1fr 1fr; }
.pl-adv__item { padding: 30px 36px 34px; display: flex; flex-direction: column; align-items: flex-start; }
.pl-adv__item:nth-child(odd) { border-right: 1px solid var(--pl-border); padding-left: 0; }
.pl-adv__item:nth-child(-n+2) { border-bottom: 1px solid var(--pl-border); }
.pl-adv__item:nth-child(even) { padding-right: 0; }
.pl-adv__item h3 { display: inline; font-size: 20px; font-weight: 700; color: var(--pl-heading); }
.pl-adv__item p { margin-top: 10px; margin-bottom: 20px; font-size: 16.5px; color: var(--pl-muted); max-width: 320px; }
.pl-adv__item .pl-chip-btn { margin-top: auto; }
.pl-dot { width: 34px; height: 34px; border-radius: 50%; display: inline-grid; place-items: center; margin-bottom: 14px; color: var(--a); background: color-mix(in srgb, var(--a) 14%, var(--pl-surface)); transition: transform .3s var(--pl-ease); }
.pl-dot .pl-ico { width: 17px; height: 17px; }
.pl-adv__item:hover .pl-dot { transform: rotate(-10deg) scale(1.1); }

/* ---------- Herramientas ---------- */
.pl-tools { padding-top: 60px; padding-bottom: 60px; }
.pl-tools__list { margin-top: 48px; display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 34px; }
.pl-tools__list li { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 92px; font-size: 14px; font-weight: 600; color: var(--pl-text); text-align: center; line-height: 1.25; }
.pl-tools__list span { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; background: var(--pl-soft); color: var(--pl-heading); transition: background-color .25s, color .25s, transform .3s var(--pl-ease); }
.pl-tools__list .pl-ico { width: 28px; height: 28px; }
.pl-tools__list li:hover span { background: color-mix(in srgb, var(--a) 14%, var(--pl-surface)); color: var(--a); transform: translateY(-4px); }

/* ---------- Banda oscura ---------- */
.pl-band-wrap { padding-top: 150px; padding-bottom: 140px; }
.pl-band {
    position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    min-height: 330px; padding: 76px 84px; border-radius: 28px; color: #fff;
    background:
        radial-gradient(120% 140% at 85% 50%, rgba(37, 99, 235, .28), transparent 55%),
        repeating-conic-gradient(from 0deg at 78% 50%, rgba(255, 255, 255, .045) 0deg 1.2deg, transparent 1.2deg 7deg),
        var(--pl-ink);
}
.pl-band__wave { position: absolute; left: 22px; top: 70px; width: 150px; height: 86px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; }
.pl-band__copy { position: relative; z-index: 1; padding-left: 92px; align-self: center; }
.pl-band .pl-h2 { color: #fff; font-size: clamp(30px, 3.4vw, 44px); }
.pl-band__copy p { margin: 16px 0 30px; font-size: 17px; color: rgba(255, 255, 255, .72); max-width: 440px; }
.pl-phone--c { right: 96px; top: -118px; height: 590px; transform: rotate(3deg); }

/* ---------- Split (IA / niveles) ---------- */
.pl-split { padding-top: 60px; }
.pl-split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pl-split__copy p { margin-top: 20px; font-size: 18px; color: var(--pl-muted); max-width: 500px; }
.pl-checks { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.pl-checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; font-weight: 600; color: var(--pl-text); }
.pl-checks .pl-ico { margin-top: 3px; width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: var(--pl-selected); color: var(--pl-blue); stroke-width: 3; }

.pl-aiart { position: relative; width: 100%; height: 340px; max-width: 480px; margin-left: auto; margin-right: 12px; }
.pl-aiart__back { position: absolute; left: -18px; top: -28px; width: 88%; height: 78%; border-radius: 26px; background: var(--pl-blue-surface); transform: rotate(-4deg); }
.pl-aiart__card { position: absolute; left: 20px; right: 0; top: 16px; padding: 22px; border-radius: 22px; background: #101318; color: #F4F7FB; transform: rotate(2.5deg); box-shadow: 0 40px 60px -30px rgba(11, 18, 32, .7); display: flex; flex-direction: column; gap: 16px; transition: transform .5s var(--pl-ease); }
.pl-aiart:hover .pl-aiart__card { transform: rotate(0deg) translateY(-4px); }
.pl-aiart__head { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; }
.pl-aiart__head b { display: block; font-size: 15px; }
.pl-aiart__head small { color: #AEB8C5; font-size: 12.5px; }
.pl-aiart__head em { font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .08em; padding: 4px 9px; border-radius: 999px; background: rgba(110, 168, 254, .18); color: #6EA8FE; }
.pl-aiart__head .pl-bubble { width: 36px; height: 36px; border-radius: 11px; color: #0B1220; }
.pl-skel { display: flex; flex-direction: column; gap: 9px; }
.pl-skel i { display: block; height: 9px; width: var(--w); border-radius: 6px; background: linear-gradient(90deg, #273449 0%, #3a4a63 45%, #273449 90%); background-size: 200% 100%; animation: pl-shimmer 1.8s linear infinite; }
.pl-aiart__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pl-aiart__cols span { position: relative; padding: 10px 10px 10px 13px; border-radius: 10px; background: #1B2028; border: 1px solid #303846; font-size: 12.5px; font-weight: 700; color: var(--a); overflow: hidden; }
.pl-aiart__cols span::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--a); }
.pl-aiart__progress { height: 4px; border-radius: 4px; background: #273449; overflow: hidden; }
.pl-aiart__progress i { display: block; height: 100%; width: 40%; border-radius: inherit; background: #6EA8FE; animation: pl-load 2.4s var(--pl-ease) infinite; }
.pl-aiart__msg { font-size: 12.5px; color: #AEB8C5; }

.pl-levels { overflow: hidden; padding-bottom: 140px; }
.pl-levels__art { position: relative; height: 440px; }
.pl-levels__circle { position: absolute; right: -200px; top: 20px; width: 440px; height: 440px; border-radius: 50%; background: var(--pl-orb); }
.pl-levels__line { position: absolute; left: 36%; top: -10px; width: 240px; height: 460px; fill: none; stroke: var(--pl-heading); stroke-width: 2.4; stroke-linecap: round; }
.pl-row-card { position: absolute; display: grid; grid-template-columns: auto minmax(0, 1fr) 70px auto; align-items: center; gap: 14px; width: min(400px, 92%); padding: 14px 18px; border-radius: 16px; background: var(--pl-surface); border: 1px solid var(--pl-border); box-shadow: var(--pl-shadow-card); font-size: 14px; transition: transform .35s var(--pl-ease); }
.pl-row-card:hover { transform: translateY(-4px) rotate(-1deg) !important; }
.pl-row-card b { display: block; font-weight: 700; }
.pl-row-card small { display: block; color: var(--pl-muted); font-size: 12.5px; }
.pl-row-card .pl-bubble { width: 36px; height: 36px; border-radius: 11px; }
.pl-row-card .pl-bubble .pl-ico { width: 18px; height: 18px; }
.pl-row-card__meter .pl-meter { height: 4px; }
.pl-row-card__val { text-align: right; }
.pl-row-card__val .is-up { color: var(--pl-success); font-weight: 600; }
.pl-row-card:nth-of-type(1) { left: 4%; top: 36px; transform: rotate(2deg); }
.pl-row-card:nth-of-type(2) { left: 12%; top: 170px; transform: rotate(-1.5deg); }
.pl-row-card:nth-of-type(3) { left: 20%; top: 300px; transform: rotate(1deg); }

/* ---------- Planes ---------- */
.pl-plans { padding-top: 40px; }
.pl-plans__grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.pl-plan { position: relative; display: flex; flex-direction: column; padding: 36px 32px 32px; border-radius: 28px; background: var(--pl-soft); border: 1px solid transparent; transition: transform .3s var(--pl-ease), box-shadow .3s var(--pl-ease); }
.pl-plan:hover { transform: translateY(-4px); box-shadow: var(--pl-shadow-card); }
.pl-plan h3 { font-size: 22px; font-weight: 700; color: var(--pl-heading); }
.pl-plan__tag { margin-top: 6px; font-size: 15.5px; color: var(--pl-muted); }
.pl-plan__price { margin: 24px 0 22px; display: flex; align-items: baseline; gap: 6px; }
.pl-plan__price strong { font-size: 52px; line-height: 1; letter-spacing: -0.03em; font-weight: 800; color: var(--pl-heading); }
.pl-plan__price span { font-size: 16px; font-weight: 600; color: var(--pl-muted); }
.pl-plan ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.pl-plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; }
.pl-plan li .pl-ico { margin-top: 2px; width: 18px; height: 18px; color: var(--pl-blue); stroke-width: 2.6; }
.pl-plan .pl-btn { margin-top: auto; }
.pl-plan.is-featured { color: #fff; background: var(--pl-featured-bg); box-shadow: 0 30px 60px -28px rgba(2, 69, 174, .7); }
.pl-plan.is-featured h3, .pl-plan.is-featured .pl-plan__price strong { color: #fff; }
.pl-plan.is-featured .pl-plan__tag, .pl-plan.is-featured .pl-plan__price span { color: rgba(255, 255, 255, .8); }
.pl-plan.is-featured li .pl-ico { color: #fff; }
.pl-plan__badge { position: absolute; top: 22px; right: 22px; font-size: 12px; font-weight: 700; letter-spacing: .03em; padding: 5px 12px; border-radius: 999px; background: rgba(255, 255, 255, .18); }
.pl-plans__note { margin: 28px auto 0; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 15px; color: var(--pl-muted); text-align: center; max-width: 720px; }
.pl-plans__note .pl-ico { color: var(--pl-success); }

/* ---------- Qué es (ficha de referencia, mismo lenguaje visual) ---------- */
.pl-about { padding-top: 40px; }
.pl-about__grid { display: grid; grid-template-columns: minmax(220px, 340px) minmax(0, 1fr); gap: 48px 72px; align-items: start; }
.pl-about__copy { display: flex; flex-direction: column; gap: 18px; max-width: 760px; }
.pl-about__copy p { font-size: 18px; line-height: 1.7; color: var(--pl-body); }
.pl-about__intro .pl-link { margin-top: 18px; display: inline-flex; }

/* ---------- FAQ ---------- */
.pl-faq { padding-top: 40px; }
.pl-faq__list { display: flex; flex-direction: column; }
.pl-faq details { border-bottom: 1px solid var(--pl-border); }
.pl-faq details:first-child { border-top: 1px solid var(--pl-border); }
.pl-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-size: 19px; font-weight: 700; color: var(--pl-heading); }
.pl-faq summary::-webkit-details-marker { display: none; }
.pl-faq summary .pl-ico { width: 34px; height: 34px; padding: 8px; border-radius: 50%; background: var(--pl-soft); transition: transform .3s var(--pl-ease), background-color .2s, color .2s; }
.pl-faq summary:hover .pl-ico { background: var(--pl-selected); color: var(--pl-blue); }
.pl-faq details[open] summary .pl-ico { transform: rotate(45deg); background: var(--pl-blue); color: #fff; }
.pl-faq details p { padding: 0 60px 24px 0; font-size: 17px; color: var(--pl-muted); }
.pl-faq details p a { color: var(--pl-link); font-weight: 600; }

/* ---------- CTA final ---------- */
.pl-final { padding-top: 150px; padding-bottom: 130px; }
.pl-final__line { position: absolute; left: 50%; top: 0; width: 180px; height: 150px; transform: translateX(-10%); fill: none; stroke: var(--pl-heading); stroke-width: 2.4; stroke-linecap: round; }
.pl-final__icon { width: 84px; height: 84px; margin: 0 auto 26px; border-radius: 22px; box-shadow: 0 20px 40px -18px rgba(2, 69, 174, .6); }
.pl-final__stores { margin-top: 36px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.pl-store { display: inline-flex; align-items: center; gap: 12px; height: 62px; padding: 0 26px 0 20px; border-radius: 14px; background: var(--pl-contrast-bg); color: var(--pl-contrast-fg) !important; text-align: left; transition: transform .2s var(--pl-ease), box-shadow .2s var(--pl-ease); }
.pl-store:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(11, 18, 32, .6); }
.pl-store .pl-ico { width: 26px; height: 26px; }
.pl-store span { display: flex; flex-direction: column; font-size: 19px; font-weight: 700; line-height: 1.1; }
.pl-store small { font-size: 11.5px; font-weight: 500; opacity: .75; letter-spacing: .02em; }

/* ---------- Footer ---------- */
.pl-footer { background: var(--pl-footer-bg); color: rgba(255, 255, 255, .62); padding: 80px 0 32px; }
.pl-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.6fr; gap: 40px; }
.pl-footer__brand img { width: 150px; height: auto; }
.pl-footer__brand p { margin-top: 16px; max-width: 260px; font-size: 15px; }
.pl-footer h4 { margin-bottom: 18px; font-size: 15px; font-weight: 700; color: #fff; }
.pl-footer__grid > div > a { display: block; margin-bottom: 12px; font-size: 15px; transition: color .2s; }
.pl-footer__grid > div > a:hover { color: #fff; }
.pl-news { position: relative; display: flex; align-items: center; height: 54px; padding: 0 6px 0 16px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, .18); transition: border-color .2s; }
.pl-news:focus-within { border-color: #6EA8FE; }
.pl-news input[type=email] { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; background: transparent; color: #fff; font: inherit; font-size: 15px; }
.pl-news input::placeholder { color: rgba(255, 255, 255, .45); }
.pl-news button { width: 40px; height: 40px; border: 0; border-radius: 10px; background: var(--pl-blue); color: #fff; display: grid; place-items: center; transition: background-color .2s, transform .2s var(--pl-ease); }
.pl-news button:hover { background: var(--pl-brand-light); transform: translateX(2px); }
.pl-news button[disabled] { opacity: .6; cursor: progress; }
.pl-news__msg { min-height: 22px; margin: 10px 0 6px; font-size: 14px; color: #65D6A4; }
.pl-news__msg.is-error { color: #FF8D86; }
.pl-footer__mail { display: inline-flex !important; align-items: center; gap: 8px; }
.pl-footer__bottom { position: relative; margin-top: 56px; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 14px; }

.pl-footer__bottom::before { content: ''; position: absolute; top: 0; left: var(--pl-gutter); right: var(--pl-gutter); border-top: 1px solid rgba(255, 255, 255, .1); }


/* ---------- Selector segmentado (modeSwitch de la app): login y páginas legales ---------- */
.pl-seg { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; border-radius: var(--pl-r-sm); background: var(--pl-control); }
.pl-body .pl-seg a { height: 42px; padding: 0 14px; display: grid; place-items: center; border-radius: var(--pl-r-xs); font-size: 14px; font-weight: 700; color: var(--pl-muted); text-decoration: none; white-space: nowrap; transition: background-color .2s, color .2s; }
.pl-body .pl-seg a:hover { color: var(--pl-heading); }
.pl-body .pl-seg a.is-active { background: var(--pl-blue); color: #fff; box-shadow: 0 4px 12px -4px rgba(37, 99, 235, .6); }
.pl-seg--light { background: rgba(255, 255, 255, .14); backdrop-filter: blur(6px); }
.pl-body .pl-seg--light a { color: rgba(255, 255, 255, .85); }
.pl-body .pl-seg--light a:hover { color: #fff; }
.pl-body .pl-seg--light a.is-active { background: #fff; color: var(--pl-blue); box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .4); }

/* ---------- Páginas legales (/terminos, /privacidad) ---------- */
.pl-legal-hero { padding: 32px var(--pl-gutter) 0; }
.pl-legal-hero__panel { position: relative; overflow: hidden; max-width: 1392px; margin: 0 auto; padding: 72px 80px 64px; border-radius: var(--pl-r-xl); color: #fff; background: var(--pl-hero-bg); }
.pl-legal-hero__copy { position: relative; z-index: 1; max-width: 780px; }
.pl-legal-hero h1 { margin-top: 20px; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 700; color: #fff; }
.pl-legal-hero__date { margin-top: 14px; font-size: 16px; font-weight: 600; color: rgba(255, 255, 255, .8); }
.pl-legal-hero .pl-seg { margin-top: 30px; width: max-content; max-width: 100%; }

.pl-legal { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 64px; align-items: start; padding-top: 64px; padding-bottom: 120px; }
.pl-toc { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 14px; }
.pl-toc__box { padding: 20px 16px 14px; border-radius: 20px; background: var(--pl-soft); }
.pl-toc__box summary { list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; font-size: 12.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--pl-muted); cursor: pointer; }
.pl-toc__box summary::-webkit-details-marker { display: none; }
.pl-toc__box summary .pl-ico { display: none; }
.pl-toc ol { margin: 12px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 2px; }
.pl-body .pl-toc a { display: flex; gap: 10px; align-items: baseline; padding: 8px 10px; border-radius: 10px; font-size: 14.5px; font-weight: 600; line-height: 1.35; color: var(--pl-text); text-decoration: none; transition: background-color .2s, color .2s; }
.pl-toc a span { min-width: 20px; font-variant-numeric: tabular-nums; color: var(--pl-muted); }
.pl-body .pl-toc a:hover { background: var(--pl-surface); }
.pl-body .pl-toc a.is-active { background: var(--pl-surface); color: var(--pl-link); box-shadow: var(--pl-shadow-soft); }
.pl-toc a.is-active span { color: var(--pl-link); }
.pl-toc__print { align-self: flex-start; gap: 8px; border: 0; }

.pl-legal__doc { max-width: 780px; }
.pl-legal__intro { padding-bottom: 32px; border-bottom: 1px solid var(--pl-border); font-size: 19px; line-height: 1.7; color: var(--pl-text); }
.pl-legal__sec { padding-top: 36px; scroll-margin-top: 100px; }
.pl-legal__sec h2 { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; font-size: 24px; line-height: 1.25; letter-spacing: -0.01em; font-weight: 700; color: var(--pl-heading); }
.pl-legal__num { flex: none; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: var(--pl-selected); color: var(--pl-blue); font-size: 15px; font-weight: 800; }
.pl-legal__sec p { margin: 0 0 14px; padding-left: 50px; font-size: 17px; line-height: 1.75; color: var(--pl-body); }
.pl-legal__doc a { color: var(--pl-link); font-weight: 600; }
.pl-legal__contact { display: flex; gap: 18px; align-items: flex-start; margin-top: 48px; padding: 28px; border-radius: var(--pl-r-lg); background: var(--pl-soft); }
.pl-legal__contact .pl-dot { margin: 0; flex: none; }
.pl-legal__contact h3 { font-size: 20px; font-weight: 700; color: var(--pl-heading); }
.pl-legal__contact p { margin-top: 6px; font-size: 16px; color: var(--pl-muted); }

.pl-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.pl-footer__legal a { transition: color .2s; }
.pl-footer__legal a:hover { color: #fff; }

@media print {
    .pl-nav, .pl-footer, .pl-toc, .pl-skip, .pl-seg, .pl-eyebrow, .pl-hero__bg, .pl-legal__contact { display: none !important; }
    .pl-legal-hero { padding: 0; }
    .pl-legal-hero__panel { padding: 0; background: none; color: #000; }
    .pl-legal-hero h1 { font-size: 30px; color: #000; }
    .pl-legal-hero__date { color: #444; }
    .pl-legal { display: block; padding: 16px 0 0; }
    .pl-legal__sec { break-inside: avoid-page; padding-top: 18px; }
    .pl-legal__sec p { padding-left: 0; font-size: 12pt; color: #000; }
}


/* ---------- Tema: botón, logotipos y ajustes del modo oscuro ---------- */
.pl-theme-btn { flex: none; width: 40px; height: 40px; border: 0; border-radius: 50%; display: inline-grid; place-items: center; background: var(--pl-soft); color: var(--pl-heading); cursor: pointer; transition: background-color .2s, transform .3s var(--pl-ease); }
.pl-theme-btn:hover { background: var(--pl-selected); transform: rotate(-15deg); }
.pl-theme-btn .pl-ico { width: 19px; height: 19px; }
.pl-theme-btn__sun { display: none; }
:root[data-theme="dark"] .pl-theme-btn__sun { display: block; }
:root[data-theme="dark"] .pl-theme-btn__moon { display: none; }
.pl-logo-dark { display: none !important; }
:root[data-theme="dark"] .pl-logo-dark { display: block !important; }
:root[data-theme="dark"] .pl-logo-light { display: none !important; }
@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) .pl-logo-dark { display: block !important; }
    :root:not([data-theme]) .pl-logo-light { display: none !important; }
}
/* Cambio de tema con View Transitions (theme.js): el navegador anima una captura de la página en
   la GPU (un círculo que crece desde el botón) en lugar de transicionar los colores de cada
   elemento, que es lo que hacía lento el cambio. */
::view-transition-old(root), ::view-transition-new(root) { animation: none; mix-blend-mode: normal; }
::view-transition-old(root) { z-index: 1; }
::view-transition-new(root) { z-index: 2; }
.pl-theme-btn .pl-ico { transition: transform .45s var(--pl-ease), opacity .3s ease; }
:root.pl-theme-switched[data-theme="dark"] .pl-theme-btn__sun, :root.pl-theme-switched:not([data-theme="dark"]) .pl-theme-btn__moon { animation: pl-theme-icon .45s var(--pl-ease); }
@keyframes pl-theme-icon { from { transform: rotate(-90deg) scale(.4); opacity: 0; } to { transform: none; opacity: 1; } }
:root[data-theme="dark"] .pl-eyebrow:not(.pl-eyebrow--light),
:root[data-theme="dark"] .pl-legal__num,
:root[data-theme="dark"] .pl-checks .pl-ico,
:root[data-theme="dark"] .pl-plan:not(.is-featured) li .pl-ico,
:root[data-theme="dark"] .pl-nav__links > a:hover { color: var(--pl-link); }
:root[data-theme="dark"] .pl-band { box-shadow: inset 0 0 0 1px #232B38; }
:root[data-theme="dark"] .pl-footer { border-top: 1px solid #1C232E; }
:root[data-theme="dark"] .pl-phone { box-shadow: 0 50px 80px -30px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .06); }
:root[data-theme="dark"] .pl-fcard__art .pl-fill-blue + .pl-fill-ink + .pl-stroke { stroke: var(--pl-page); }

/* ---------- Página del docente: descarga la app (/planner/bienvenida) ---------- */
.pl-dl { margin-bottom: 40px; }
.pl-dl__title { font-size: clamp(40px, 5.4vw, 76px); }
.pl-dl__stores { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.pl-store--light { background: #fff; color: var(--pl-ink) !important; }
.pl-store--light:hover { box-shadow: 0 12px 24px -10px rgba(0, 0, 0, .35); }
.pl-dl__qr { margin-top: 26px; display: flex; align-items: center; gap: 16px; max-width: 440px; padding: 12px 16px 12px 12px; border-radius: 18px; background: rgba(255, 255, 255, .12); backdrop-filter: blur(6px); }
.pl-dl__qr img { flex: none; width: 96px; height: 96px; padding: 6px; border-radius: 12px; background: #fff; image-rendering: pixelated; }
.pl-dl__qr p { font-size: 14.5px; line-height: 1.45; color: rgba(255, 255, 255, .9); }
.pl-dl__qr b { color: #fff; }
.pl-dl__phones { min-height: 640px; }
.pl-dl__phone { left: 50%; margin-left: -146px; }
.pl-dl .pl-dl__float { grid-template-columns: auto minmax(0, 1fr); width: max-content; max-width: 90%; color: var(--pl-text); right: auto; left: 0; top: 500px; z-index: 4; transform: rotate(-3deg); animation: pl-rise .9s .25s var(--pl-ease) both; }
.pl-dl__float small { max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.pl-dl-steps { padding-top: 70px; }
.pl-dl-steps__list { margin: 48px auto 0; max-width: 980px; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.pl-step { position: relative; overflow: hidden; display: flex; gap: 16px; align-items: flex-start; padding: 22px 22px 22px 25px; border-radius: 16px; background: var(--pl-surface); border: 1px solid var(--pl-border); box-shadow: var(--pl-shadow-soft); }
.pl-step::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--a); }
.pl-step__num { flex: none; width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; font-weight: 800; font-size: 15px; color: var(--a); background: color-mix(in srgb, var(--a) 14%, var(--pl-surface)); }
.pl-step__num .pl-ico { width: 18px; height: 18px; stroke-width: 3; }
.pl-step.is-done .pl-step__num { background: var(--a); color: #fff; }
.pl-step h3 { font-size: 17.5px; font-weight: 700; color: var(--pl-heading); }
.pl-step p { margin-top: 6px; font-size: 15px; line-height: 1.5; color: var(--pl-muted); }
.pl-step a { color: var(--pl-link); font-weight: 700; }
.pl-step b { color: var(--pl-text); }
.pl-dl-account { margin: 36px auto 0; max-width: 980px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-radius: 16px; background: var(--pl-soft); font-size: 15px; color: var(--pl-muted); }
.pl-dl-account b { color: var(--pl-heading); }
.pl-dl-account .pl-chip-btn { gap: 8px; background: var(--pl-surface); }

@media (max-width: 980px) {
    .pl-dl__copy { text-align: center; }
    .pl-dl__stores { justify-content: center; }
    .pl-dl__qr { display: none; }
    .pl-dl__phones { min-height: 612px; }
    .pl-dl .pl-dl__float { left: 50%; top: 420px; transform: translateX(-50%) rotate(-3deg); }
}
@media (max-width: 640px) {
    .pl-dl .pl-dl__float { top: 440px; }
}

/* ---------- Menú fusionado con el cuadro azul (landing, legales, bienvenida) ----------
   El menú flota sobre el cuadro con colores claros; al hacer scroll (o abrir el menú móvil)
   vuelve a la versión de vidrio con los colores normales. */
.pl-nav--hero { position: fixed; top: 0; left: 0; right: 0; padding-top: 12px; transition: background-color .25s, box-shadow .25s, backdrop-filter .25s, padding-top .25s; }
.pl-nav--hero.is-scrolled, .pl-nav--hero.is-open { padding-top: 0; }
.pl-nav--hero .pl-nav__inner { transition: padding .25s var(--pl-ease); }
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__inner { padding-left: calc(var(--pl-gutter) + 36px); padding-right: calc(var(--pl-gutter) + 24px); }
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-logo-light { display: none !important; }
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-logo-dark { display: block !important; }
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__links > a { color: rgba(255, 255, 255, .92); }
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__links > a:hover { color: #fff; }
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__links > a::after { background: #fff; }
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-theme-btn,
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__actions .pl-btn--ghost,
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__toggle { background: rgba(255, 255, 255, .14); color: #fff !important; }
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-theme-btn:hover,
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__actions .pl-btn--ghost:hover,
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__toggle:hover { background: rgba(255, 255, 255, .24); }
.pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__actions .pl-btn--dark { background: var(--pl-ink); color: #fff !important; }
/* El cuadro sube hasta arriba y deja sitio al menú en su interior. */
.pl-nav--hero ~ main .pl-hero, .pl-nav--hero ~ main .pl-legal-hero { padding-top: 12px; }
.pl-nav--hero ~ main .pl-hero__panel { padding-top: 168px; }
.pl-nav--hero ~ main .pl-legal-hero__panel { padding-top: 152px; }
@media (max-width: 980px) {
    .pl-nav--hero ~ main .pl-hero__panel { padding-top: 144px; }
    .pl-nav--hero ~ main .pl-legal-hero__panel { padding-top: 132px; }
    .pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__inner { padding-left: calc(var(--pl-gutter) + 20px); padding-right: calc(var(--pl-gutter) + 12px); }
}
@media (max-width: 640px) {
    .pl-nav--hero { padding-top: 10px; }
    .pl-nav--hero ~ main .pl-hero, .pl-nav--hero ~ main .pl-legal-hero { padding-top: 10px; }
    .pl-nav--hero ~ main .pl-hero__panel { padding-top: 112px; }
    .pl-nav--hero ~ main .pl-legal-hero__panel { padding-top: 104px; }
    .pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__inner { padding-left: 26px; padding-right: 20px; }
}

/* Escritorio: cuadro azul más ancho (margen lateral igual al superior y hasta 1680px). */
@media (min-width: 981px) {
    .pl-nav--hero ~ main .pl-hero, .pl-nav--hero ~ main .pl-legal-hero { padding-left: 12px; padding-right: 12px; }
    .pl-hero__panel, .pl-legal-hero__panel { max-width: 1680px; }
    /* Mismo ancho que el cuadro + sus márgenes de 12px, para que el logo quede siempre a 56px del borde. */
    .pl-nav--hero .pl-nav__inner { max-width: 1704px; }
    .pl-nav--hero:not(.is-scrolled):not(.is-open) .pl-nav__inner { padding-left: 68px; padding-right: 56px; }
}
@media (min-width: 1181px) {
    .pl-nav--hero ~ main .pl-hero__panel, .pl-nav--hero ~ main .pl-legal-hero__panel { padding-left: 96px; }
}

/* "Descargar app" del menú: aparece según el cuadro principal desaparece bajo el menú.
   landing.js pone --p (0 = cuadro visible, 1 = cuadro oculto). Sin JS, --p vale 1 (visible). */
.pl-nav__dl {
    --p: 1;
    max-width: calc(var(--p) * 200px);
    padding-left: calc(var(--p) * 16px); padding-right: calc(var(--p) * 16px);
    margin-left: calc((var(--p) - 1) * 10px);
    opacity: var(--p);
    transform: translateY(calc((1 - var(--p)) * -8px)) scale(calc(.9 + var(--p) * .1));
    overflow: hidden;
    transition: none;
}
.pl-js .pl-nav__dl { --p: 0; }
.pl-nav__dl[data-hidden] { pointer-events: none; }

/* ---------- Eliminar cuenta (/legal/eliminar-cuenta) ---------- */
.pl-del { padding-top: 56px; padding-bottom: 110px; }
.pl-del__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.pl-del__card, .pl-del__result { padding: 36px; border-radius: 24px; background: var(--pl-surface); border: 1px solid var(--pl-border); box-shadow: var(--pl-shadow-card); }
.pl-del__card h2, .pl-del__result h2 { font-size: 26px; line-height: 1.2; letter-spacing: -0.01em; font-weight: 700; color: var(--pl-heading); }
.pl-del__card > p, .pl-del__result > p { margin-top: 10px; font-size: 16.5px; line-height: 1.6; color: var(--pl-muted); }
.pl-del__card b, .pl-del__result b { color: var(--pl-heading); }
.pl-del__form { margin-top: 24px; display: flex; flex-direction: column; }
.pl-del__form label { margin-bottom: 6px; font-size: 13.5px; font-weight: 700; color: var(--pl-text); }
.pl-del__form input[type=email] { height: 52px; padding: 0 16px; border-radius: 12px; border: 1px solid var(--pl-border); background: var(--pl-input); color: var(--pl-text); font: inherit; font-size: 15.5px; outline: 0; transition: border-color .2s, box-shadow .2s; }
.pl-del__form input[type=email]::placeholder { color: var(--pl-placeholder); }
.pl-del__form input[type=email]:focus { border-color: var(--pl-blue); box-shadow: 0 0 0 4px rgba(37, 99, 235, .16); }
.pl-del__error { margin-top: 10px; padding: 10px 12px; border-radius: 10px; background: var(--pl-danger-bg); color: var(--pl-danger); font-size: 14px; font-weight: 600; }
.pl-del__submit { margin-top: 16px; height: 52px; border-radius: 14px; background: #C0392B; color: #fff !important; }
.pl-del__submit:hover { background: #A93226; box-shadow: 0 12px 24px -12px rgba(192, 57, 43, .7); }
.pl-del__alt { margin-top: 24px; display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 14px; background: var(--pl-soft); font-size: 14.5px; line-height: 1.5; color: var(--pl-muted); }
.pl-del__alt .pl-ico { flex: none; margin-top: 2px; width: 20px; height: 20px; color: var(--pl-link); }
.pl-del__result-icon { width: 52px; height: 52px; margin-bottom: 18px; border-radius: 16px; display: grid; place-items: center; background: var(--pl-success-bg); color: var(--pl-success); }
.pl-del__result-icon .pl-ico { width: 24px; height: 24px; stroke-width: 2.4; }
.pl-del__result { max-width: 640px; margin: 0 auto; text-align: center; padding: 44px 40px; }
.pl-del__result .pl-del__result-icon { margin-left: auto; margin-right: auto; }
.pl-del__result.is-warn .pl-del__result-icon { background: var(--pl-danger-bg); color: var(--pl-danger); }
.pl-del__actions { margin-top: 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pl-del__fine { margin-top: 16px; font-size: 13.5px; line-height: 1.55; color: var(--pl-muted); }
.pl-del__fine a, .pl-del__card a { color: var(--pl-link); font-weight: 600; }
.pl-del__info { padding-top: 6px; }
.pl-del__info h3 { margin: 0 0 12px; font-size: 13px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--pl-muted); }
.pl-del__info h3:not(:first-child) { margin-top: 30px; }
.pl-del__list li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--pl-border); font-size: 15.5px; color: var(--pl-text); }
.pl-del__list .pl-ico { flex: none; width: 34px; height: 34px; padding: 8px; border-radius: 10px; color: var(--a); background: color-mix(in srgb, var(--a) 12%, var(--pl-surface)); }
.pl-del__steps { margin: 0; padding: 0; list-style: none; }
.pl-del__steps li { display: flex; align-items: center; gap: 12px; padding: 7px 0; font-size: 15.5px; color: var(--pl-text); }
.pl-del__steps span { flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--pl-selected); color: var(--pl-link); font-size: 13px; font-weight: 800; }
.pl-del__note { margin-top: 28px; display: flex; gap: 12px; padding: 16px 18px; border-radius: 16px; background: var(--pl-danger-bg); font-size: 14.5px; line-height: 1.55; color: var(--pl-text); }
.pl-del__note .pl-ico { flex: none; margin-top: 2px; width: 20px; height: 20px; color: var(--pl-danger); }
.pl-del__note b { color: var(--pl-heading); }
@media (max-width: 980px) {
    .pl-del { padding-top: 32px; }
    .pl-del__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
}
@media (max-width: 640px) {
    .pl-del__card { padding: 26px 20px; }
    .pl-del__result { padding: 34px 20px; }
    .pl-del__card h2, .pl-del__result h2 { font-size: 22px; }
    .pl-del__submit { width: 100%; }
}

/* ---------- Animaciones ---------- */
.pl-js .pl-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--pl-ease), transform .8s var(--pl-ease); }
.pl-js .pl-reveal.is-in { opacity: 1; transform: none; }
.pl-js .pl-reveal[data-delay="1"] { transition-delay: .1s; }
.pl-js .pl-reveal[data-delay="2"] { transition-delay: .2s; }
.pl-js .pl-tools__list .pl-reveal:nth-child(2) { transition-delay: .05s; }
.pl-js .pl-tools__list .pl-reveal:nth-child(3) { transition-delay: .1s; }
.pl-js .pl-tools__list .pl-reveal:nth-child(4) { transition-delay: .15s; }
.pl-js .pl-tools__list .pl-reveal:nth-child(5) { transition-delay: .2s; }
.pl-js .pl-tools__list .pl-reveal:nth-child(6) { transition-delay: .25s; }
.pl-js .pl-tools__list .pl-reveal:nth-child(7) { transition-delay: .3s; }
.pl-js .pl-tools__list .pl-reveal:nth-child(8) { transition-delay: .35s; }
/* Trazos "a mano": se dibujan al entrar en pantalla (el JS pone la longitud en --len). */
.pl-js .pl-draw path { stroke-dasharray: var(--len, 1200); stroke-dashoffset: var(--len, 1200); transition: stroke-dashoffset 1.6s var(--pl-ease); }
.pl-js .pl-draw.is-drawn path { stroke-dashoffset: 0; }
.pl-js .pl-draw .pl-fill-blue, .pl-js .pl-draw .pl-fill-ink { stroke-dasharray: none; stroke-dashoffset: 0; }

@keyframes pl-rise { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: none; } }
@keyframes pl-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes pl-twinkle { 0%, 100% { transform: scale(1) rotate(0); } 50% { transform: scale(.82) rotate(45deg); } }
@keyframes pl-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@keyframes pl-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
@keyframes pl-shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes pl-load { 0% { transform: translateX(-100%); } 100% { transform: translateX(260%); } }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .pl-js .pl-reveal { opacity: 1; transform: none; }
    .pl-js .pl-hero__panel { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
    .pl-hero__panel { padding-left: 56px; }
    .pl-hero__arrow { display: none; }
    .pl-phone--b { left: calc(2% + 190px); }
    .pl-band { padding: 64px 56px; }
    .pl-band__copy { padding-left: 64px; }
    .pl-phone--c { right: 40px; }
}

@media (max-width: 980px) {
    .pl-nav__links { position: fixed; inset: 80px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--pl-gutter) 24px; background: var(--pl-page); box-shadow: 0 20px 30px -20px rgba(15, 23, 42, .25); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .25s var(--pl-ease), visibility .2s; }
    .pl-nav__links > a { padding: 16px 0; font-size: 18px; border-bottom: 1px solid var(--pl-neutral); }
    .pl-nav__links > a::after { display: none; }
    .pl-nav__mobile-actions { padding-top: 20px; }
    .pl-nav__mobile-actions { display: flex; flex-direction: column; gap: 10px; }
    .pl-nav__mobile-actions .pl-btn { width: 100%; }
    .pl-nav.is-open { background: var(--pl-page); }
    .pl-nav.is-open .pl-nav__links { opacity: 1; visibility: visible; transform: none; }
    .pl-nav.is-open .pl-nav__toggle .pl-ico--open { display: none; }
    .pl-nav.is-open .pl-nav__toggle .pl-ico--close { display: block; }
    .pl-nav__toggle { display: inline-flex; }
    .pl-hide-sm { display: none !important; }

    .pl-hero { margin-bottom: 110px; }
    .pl-hero__panel { grid-template-columns: minmax(0, 1fr); padding: 64px 40px 0; min-height: 0; gap: 48px; }
    .pl-hero__copy { text-align: center; }
    .pl-hero__lead { margin-left: auto; margin-right: auto; }
    .pl-hero__cta { justify-content: center; }
    /* Alto = teléfono más bajo (B: top 64 + 580); el margen negativo lo deja salir del panel como en desktop. */
    .pl-hero__phones { min-height: 644px; width: 520px; max-width: 100%; margin: 0 auto -90px; }
    .pl-phone--a { left: 0; }
    .pl-phone--b { left: auto; right: 0; }

    .pl-section { padding: 90px 0; }
    .pl-most { padding-top: 32px; }
    .pl-most__grid, .pl-adv__grid, .pl-split__grid, .pl-about__grid { grid-template-columns: 1fr; }
    .pl-adv__grid { gap: 32px; }
    .pl-split__grid { gap: 56px; }
    .pl-aiart { margin: 20px auto 0; width: 100%; }
    .pl-band { grid-template-columns: 1fr; padding: 56px 40px 0; }
    .pl-band__copy { padding-left: 0; text-align: center; }
    .pl-band__copy p { margin-left: auto; margin-right: auto; }
    .pl-band__wave { display: none; }
    .pl-phone--c { position: relative; right: auto; top: auto; margin: 48px auto -80px; transform: none; }
    .pl-band-wrap { padding-top: 80px; }
    .pl-plans__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .pl-footer__grid { grid-template-columns: 1fr 1fr; }
    .pl-footer__brand, .pl-footer__news { grid-column: 1 / -1; }
    .pl-legal-hero__panel { padding: 52px 36px 44px; }
    .pl-legal { grid-template-columns: minmax(0, 1fr); gap: 28px; padding-top: 32px; }
    .pl-toc { position: static; }
    .pl-toc__box summary .pl-ico { display: block; width: 26px; height: 26px; padding: 5px; border-radius: 50%; background: var(--pl-surface); color: var(--pl-heading); transition: transform .3s var(--pl-ease); }
    .pl-toc__box[open] summary .pl-ico { transform: rotate(45deg); }
    .pl-toc__box:not([open]) { padding-bottom: 20px; }
}

@media (max-width: 640px) {
    :root { --pl-gutter: 16px; }
    body.pl-body { font-size: 16px; }
    .pl-nav__inner { height: 68px; gap: 12px; }
    .pl-nav__logo img { height: 34px; }
    .pl-nav__links { inset: 68px 0 auto 0; }
    .pl-nav__actions .pl-btn--ghost { padding: 0 12px; font-size: 13.5px; }
    section[id], footer[id] { scroll-margin-top: 72px; }

    .pl-hero { padding: 20px 10px 0; }
    .pl-hero__panel { padding: 44px 20px 0; border-radius: 26px; }
    .pl-hero__lead { font-size: 17px; }
    /* Botones grandes más compactos en móvil: ancho de su contenido, no de la pantalla. */
    .pl-btn--lg { height: 50px; padding: 0 22px; font-size: 15.5px; border-radius: 12px; gap: 9px; }
    .pl-btn--lg .pl-ico { width: 1.05em; height: 1.05em; }
    .pl-hero__more { margin-top: 28px; }
    .pl-hero { margin-bottom: 100px; }
    .pl-hero__phones { min-height: 612px; margin-bottom: -80px; }
    .pl-hero__phones .pl-phone { transform-origin: top center; }
    .pl-phone--a { left: 50%; margin-left: -146px; }
    .pl-phone--b { display: none; }

    .pl-section { padding: 72px 0; }
    .pl-most { padding-top: 32px; }
    .pl-fcard { padding: 30px 26px 150px; min-height: 0; }
    .pl-fcard .pl-link { margin-top: 0; }
    .pl-fcard__art { width: 150px; height: 134px; }
    .pl-fcard__art--ring { width: 200px; height: 200px; }
    .pl-adv__items { grid-template-columns: 1fr; }
    .pl-adv__item, .pl-adv__item:nth-child(odd), .pl-adv__item:nth-child(even) { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--pl-border); }
    .pl-adv__item:last-child { border-bottom: 0; }
    .pl-tools__list { gap: 22px 12px; }
    .pl-tools__list li { width: 76px; font-size: 13px; }
    .pl-tools__list span { width: 64px; height: 64px; }
    .pl-band { padding: 44px 20px 0; border-radius: 24px; }
    .pl-aiart { height: 330px; }
    .pl-aiart__back { left: -6px; }
    .pl-aiart__card { left: 8px; padding: 18px; }
    .pl-levels__art { height: 420px; }
    .pl-levels__circle { width: 320px; height: 320px; right: -140px; }
    .pl-row-card { grid-template-columns: auto minmax(0, 1fr) auto; width: 100%; padding: 12px 14px; }
    .pl-row-card__meter { display: none; }
    .pl-row-card:nth-of-type(1), .pl-row-card:nth-of-type(2), .pl-row-card:nth-of-type(3) { left: 0; }
    .pl-plan { padding: 30px 24px 26px; }
    .pl-about__grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
    .pl-about__copy p { font-size: 16.5px; }
    .pl-faq summary { font-size: 17px; }
    .pl-faq details p { padding-right: 0; }
    .pl-final { padding-top: 130px; padding-bottom: 90px; }
    .pl-store { height: 54px; padding: 0 22px 0 16px; border-radius: 12px; }
    .pl-store .pl-ico { width: 22px; height: 22px; }
    .pl-store span { font-size: 17px; }
    .pl-footer__grid { gap: 32px; }
    .pl-footer__bottom { flex-direction: column; }
    .pl-legal-hero { padding: 20px 10px 0; }
    .pl-legal-hero__panel { padding: 40px 20px 28px; border-radius: 26px; }
    .pl-legal-hero .pl-seg { width: 100%; }
    .pl-body .pl-legal-hero .pl-seg a { padding: 0 8px; font-size: 13px; }
    .pl-legal__sec h2 { font-size: 20px; gap: 12px; align-items: flex-start; }
    .pl-legal__num { width: 32px; height: 32px; font-size: 14px; }
    .pl-legal__sec p { padding-left: 0; font-size: 16px; }
    .pl-legal__intro { font-size: 17px; }
    .pl-legal__contact { flex-direction: column; padding: 22px; }
}
