/* Roxtoria — interface moderna orientada à conversão */
:root {
    --rx-bg: #070907;
    --rx-surface: #111410;
    --rx-surface-2: #181c16;
    --rx-lime: #c6ff3d;
    --rx-lime-2: #8ddd18;
    --rx-coral: #ff6b45;
    --rx-white: #f8faf4;
    --rx-muted: #9da496;
    --rx-line: rgba(255, 255, 255, .1);
    --font-family: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }

body {
    color: var(--rx-white);
    background: var(--rx-bg);
    font-family: var(--font-family);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
}

.landing-shell,
.section-container {
    width: min(100%, 1240px);
    margin-inline: auto;
}

/* Barra promocional (editável no admin/landing) */
.lm-announce {
    --lm-bg: #c6ff3d;
    --lm-fg: #101409;
    --lm-active: #101409;
    --lm-font-size: 13px;
    position: relative;
    z-index: 40;
    background: var(--lm-bg) !important;
    color: var(--lm-fg) !important;
}

.lm-announce-inner {
    width: min(100%, 1240px);
    margin-inline: auto;
    padding: 8px 20px;
    text-align: center;
}

.lm-announce-text,
.lm-announce p.lm-announce-text {
    margin: 0 !important;
    font-family: 'Manrope', sans-serif;
    font-size: var(--lm-font-size, 13px);
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.3;
    color: var(--lm-fg) !important;
    -webkit-text-fill-color: var(--lm-fg) !important;
}

.lm-announce .caption-layer {
    width: 100%;
    min-height: calc(var(--lm-font-size, 13px) * 1.35);
}

.lm-announce .caption-line {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: .32em;
    line-height: 1;
    max-width: 100%;
}

.lm-announce .caption-word {
    display: inline-block;
    margin: 0 !important;
    font-family: 'Manrope', sans-serif;
    font-size: var(--lm-font-size, 13px);
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.2;
    color: var(--lm-fg) !important;
    -webkit-text-fill-color: var(--lm-fg) !important;
    text-transform: none;
    white-space: nowrap;
    opacity: 1;
    transform: scale(1);
    transition: opacity .16s ease, transform .22s ease, color .12s ease, -webkit-text-fill-color .12s ease;
}

.lm-announce-animated .caption-word:not(.is-spoken):not(.is-active) {
    opacity: 0;
    transform: scale(.88);
    visibility: hidden;
    pointer-events: none;
    max-width: 0;
    overflow: hidden;
}

.lm-announce .caption-word.is-spoken,
.lm-announce .caption-word.is-active {
    visibility: visible;
    max-width: none;
    overflow: visible;
    color: var(--lm-fg) !important;
    -webkit-text-fill-color: var(--lm-fg) !important;
}

.lm-announce .caption-word.is-spoken {
    opacity: .72;
    transform: scale(1);
}

.lm-announce .caption-word.is-active {
    opacity: 1;
    transform: scale(1.06);
    color: var(--lm-active, var(--lm-fg)) !important;
    -webkit-text-fill-color: var(--lm-active, var(--lm-fg)) !important;
}

@keyframes lm-word-pop {
    0% { transform: scale(.9); }
    55% { transform: scale(1.1); }
    100% { transform: scale(1.06); }
}

.lm-announce-animated .caption-word.is-active {
    animation: lm-word-pop .34s ease;
}

/* Presets de legenda (admin + landing) */
.lm-announce[data-preset="tiktok"] .caption-word {
    font-family: 'Bricolage Grotesque', sans-serif;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.lm-announce[data-preset="tiktok"] .caption-word.is-active {
    text-shadow: 0 0 10px rgba(0, 229, 255, .35), 1px 1px 0 rgba(255, 0, 120, .35);
}

.lm-announce[data-preset="hormozi"] .caption-word {
    font-family: 'Bricolage Grotesque', sans-serif;
    text-transform: uppercase;
    letter-spacing: .02em;
    text-shadow:
        -1px -1px 0 rgba(0, 0, 0, .85),
        1px -1px 0 rgba(0, 0, 0, .85),
        -1px 1px 0 rgba(0, 0, 0, .85),
        1px 1px 0 rgba(0, 0, 0, .85);
}

.lm-announce[data-preset="hormozi"] .caption-word.is-active {
    text-shadow:
        -1px -1px 0 rgba(0, 0, 0, .9),
        1px -1px 0 rgba(0, 0, 0, .9),
        -1px 1px 0 rgba(0, 0, 0, .9),
        1px 1px 0 rgba(0, 0, 0, .9),
        0 0 14px rgba(255, 230, 0, .45);
}

.lm-announce[data-preset="anime"] .caption-word {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: .01em;
}

.lm-announce[data-preset="anime"] .caption-word.is-active {
    text-shadow: 0 0 12px rgba(255, 105, 180, .65), -1px 0 #ff69b4, 1px 0 #00e5ff;
}

.lm-announce[data-preset="gaming"] .caption-word {
    font-family: 'Bricolage Grotesque', sans-serif;
    text-transform: uppercase;
    letter-spacing: .025em;
}

.lm-announce[data-preset="gaming"] .caption-word.is-active {
    text-shadow: 0 0 14px rgba(0, 255, 0, .45), 0 2px 0 rgba(0, 0, 0, .85);
}

.lm-announce[data-preset="neon"] .caption-word {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.lm-announce[data-preset="neon"] .caption-word.is-active {
    text-shadow: 0 0 14px var(--lm-active), 0 0 24px rgba(0, 255, 255, .45);
    animation: lm-neon-pulse .55s ease;
}

@keyframes lm-neon-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

body.has-lm-announce .hero-header {
    top: 20px;
}

/* Header + Hero */
.hero-section {
    position: relative;
    min-height: 820px !important;
    padding: 128px 28px 84px !important;
    display: block !important;
    overflow: hidden;
    background:
        radial-gradient(circle at 79% 39%, rgba(198,255,61,.14), transparent 25%),
        radial-gradient(circle at 9% 86%, rgba(255,107,69,.08), transparent 23%),
        var(--rx-bg) !important;
    border-bottom: 1px solid var(--rx-line);
}

.hero-section::before {
    content: '' !important;
    position: absolute;
    inset: 0;
    opacity: .7 !important;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px) !important;
    background-size: 72px 72px !important;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    top: 5%;
    right: -190px;
    border: 1px solid rgba(198,255,61,.18);
    border-radius: 50%;
    background: transparent !important;
    box-shadow: 0 0 0 55px rgba(198,255,61,.025), 0 0 0 110px rgba(198,255,61,.018);
    animation: none !important;
    pointer-events: none;
}

.hero-header {
    position: absolute;
    z-index: 30;
    top: 20px;
    left: 28px;
    right: 28px;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-logo {
    position: static !important;
    transform: none !important;
    display: flex !important;
    align-items: center;
    gap: 11px;
    color: #fff !important;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -.055em;
    animation: none !important;
}

.brand-accent { color: var(--rx-lime); }

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #10140a;
    background: var(--rx-lime);
    font-size: 16px;
    transform: rotate(-4deg);
}

.hero-nav {
    position: static !important;
    display: flex;
    align-items: center;
    gap: 5px !important;
    animation: none !important;
}

.hero-nav-link {
    padding: 11px 14px !important;
    color: #b6bcb0 !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.hero-nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,.06) !important;
}

.hero-nav .btn {
    margin-left: 7px;
    min-height: 44px;
    padding: 0 17px;
    border-radius: 12px;
    font-size: 13px;
    white-space: nowrap;
}

.hero-proof-marquee {
    position: relative;
    z-index: 4;
    margin-top: 36px;
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(450px, .88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: 54px;
}

.hero-copy {
    max-width: 610px;
    padding-top: 16px;
}

.hero-eyebrow {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 8px 12px 8px 9px;
    color: #d4dccb;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.eyebrow-pulse {
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
    border-radius: 50%;
    background: rgba(198,255,61,.11);
}

.eyebrow-pulse::after {
    content: '';
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: var(--rx-lime);
    box-shadow: 0 0 12px var(--rx-lime);
}

.hero-title {
    margin: 0 0 24px !important;
    color: #fff !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(68px, 7vw, 106px) !important;
    font-weight: 800 !important;
    line-height: .94 !important;
    letter-spacing: -.06em !important;
    text-align: left;
}

.title-highlight {
    display: inline-block;
    position: relative;
    color: var(--rx-lime);
    margin-top: .04em;
    letter-spacing: -.045em;
    transform: translateX(34px);
}

.title-highlight::after {
    content: '';
    position: absolute;
    left: -22px;
    right: -8px;
    bottom: -9px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='500' height='15' viewBox='0 0 500 15' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 11C104 2 217 4 498 3' fill='none' stroke='%23c6ff3d' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    opacity: .65;
}

/* Hero caption-layer (editável no admin/landing) */
.hero-caption-animated,
.hero-subtitle-animated {
    --hero-caption-fg: #fff;
    --hero-caption-active: var(--rx-lime);
}

.hero-caption-animated .hero-caption-layer,
.hero-subtitle-animated .hero-caption-layer {
    width: 100%;
}

.hero-caption-animated .hero-caption-line,
.hero-subtitle-animated .hero-caption-line {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
    gap: .22em .28em;
    line-height: .94;
    max-width: 100%;
    text-align: left;
}

.hero-caption-animated .caption-word {
    display: inline-block;
    margin: 0 !important;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(68px, 7vw, 106px) !important;
    font-weight: 800 !important;
    letter-spacing: -.06em;
    line-height: .94;
    color: var(--hero-caption-fg) !important;
    -webkit-text-fill-color: var(--hero-caption-fg) !important;
    white-space: nowrap;
    opacity: 1;
    transform: scale(1);
    transition: opacity .16s ease, transform .22s ease, color .12s ease, -webkit-text-fill-color .12s ease;
}

.hero-subtitle-animated .caption-word {
    font-family: 'Manrope', sans-serif;
    font-size: 18px !important;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.7;
    color: #aeb5a8 !important;
    -webkit-text-fill-color: #aeb5a8 !important;
}

.hero-caption-animated .caption-word.hero-caption-highlight,
.hero-caption-animated .caption-word.hero-caption-highlight.is-spoken,
.hero-caption-animated .caption-word.hero-caption-highlight.is-active {
    color: var(--rx-lime) !important;
    -webkit-text-fill-color: var(--rx-lime) !important;
    letter-spacing: -.045em;
}

.hero-caption-highlight-line {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .22em .28em;
    position: relative;
    margin-top: .04em;
    transform: translateX(34px);
}

.hero-caption-highlight-line::after {
    content: '';
    position: absolute;
    left: -22px;
    right: -8px;
    bottom: -9px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='500' height='15' viewBox='0 0 500 15' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 11C104 2 217 4 498 3' fill='none' stroke='%23c6ff3d' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    opacity: .65;
    pointer-events: none;
}

.hero-caption-highlight-line .caption-word.hero-caption-highlight.is-active,
.hero-caption-highlight-line .caption-word.hero-caption-highlight.is-spoken {
    transform: none;
}

.hero-caption-break {
    flex-basis: 100%;
    width: 0;
    height: 0;
    overflow: hidden;
}

.hero-caption-animated .caption-word:not(.is-spoken):not(.is-active),
.hero-subtitle-animated .caption-word:not(.is-spoken):not(.is-active) {
    opacity: 0;
    transform: scale(.9);
    visibility: hidden;
    pointer-events: none;
    max-width: 0;
    overflow: hidden;
}

.hero-caption-animated .caption-word.is-spoken,
.hero-caption-animated .caption-word.is-active,
.hero-subtitle-animated .caption-word.is-spoken,
.hero-subtitle-animated .caption-word.is-active {
    visibility: visible;
    max-width: none;
    overflow: visible;
}

.hero-caption-animated .caption-word.is-spoken,
.hero-subtitle-animated .caption-word.is-spoken {
    opacity: .72;
    transform: scale(1);
}

.hero-caption-animated .caption-word.is-active,
.hero-subtitle-animated .caption-word.is-active {
    opacity: 1;
    color: var(--hero-caption-active, var(--hero-caption-fg)) !important;
    -webkit-text-fill-color: var(--hero-caption-active, var(--hero-caption-fg)) !important;
}

.hero-caption-animated .caption-word.is-active:not(.hero-caption-highlight) {
    transform: scale(1.04);
}

.hero-caption-animated .caption-word.is-active {
    animation: lm-word-pop .34s ease;
}

.hero-subtitle-animated .caption-word.is-active {
    animation: lm-word-pop .34s ease;
    transform: scale(1.02);
}

/* Hero: animação palavra a palavra — presets só no destaque ativo, sem mudar tipografia */
.hero-caption-animated[data-preset] .caption-word {
    font-family: 'Bricolage Grotesque', sans-serif !important;
    text-transform: none !important;
    letter-spacing: -.06em !important;
}

.hero-subtitle-animated[data-preset] .caption-word {
    font-family: 'Manrope', sans-serif !important;
    text-transform: none !important;
    letter-spacing: -.01em !important;
}

.hero-caption-animated[data-preset="tiktok"] .caption-word.is-active,
.hero-subtitle-animated[data-preset="tiktok"] .caption-word.is-active {
    text-shadow: 0 0 10px rgba(0, 229, 255, .35), 1px 1px 0 rgba(255, 0, 120, .35);
}

.hero-caption-animated[data-preset="hormozi"] .caption-word.is-active,
.hero-subtitle-animated[data-preset="hormozi"] .caption-word.is-active {
    text-shadow:
        -1px -1px 0 rgba(0, 0, 0, .9),
        1px -1px 0 rgba(0, 0, 0, .9),
        -1px 1px 0 rgba(0, 0, 0, .9),
        1px 1px 0 rgba(0, 0, 0, .9),
        0 0 14px rgba(255, 230, 0, .45);
}

.hero-caption-animated[data-preset="anime"] .caption-word.is-active,
.hero-subtitle-animated[data-preset="anime"] .caption-word.is-active {
    text-shadow: 0 0 12px rgba(255, 105, 180, .65), -1px 0 #ff69b4, 1px 0 #00e5ff;
}

.hero-caption-animated[data-preset="gaming"] .caption-word.is-active,
.hero-subtitle-animated[data-preset="gaming"] .caption-word.is-active {
    text-shadow: 0 0 14px rgba(0, 255, 0, .45), 0 2px 0 rgba(0, 0, 0, .85);
}

.hero-caption-animated[data-preset="neon"] .caption-word.is-active,
.hero-subtitle-animated[data-preset="neon"] .caption-word.is-active {
    text-shadow: 0 0 14px var(--hero-caption-active), 0 0 24px rgba(0, 255, 255, .45);
    animation: lm-neon-pulse .55s ease, lm-word-pop .34s ease;
}

/* Preencher cor — texto fixo, faixa de destaque passa sem reescrever */
.hero-text-fill,
.lm-text-fill {
    --fill-accent: var(--rx-lime);
}

.hero-text-fill[data-preset="tiktok"],
.lm-text-fill[data-preset="tiktok"] { --fill-accent: #00e5ff; }
.hero-text-fill[data-preset="hormozi"],
.lm-text-fill[data-preset="hormozi"] { --fill-accent: #ffe600; }
.hero-text-fill[data-preset="anime"],
.lm-text-fill[data-preset="anime"] { --fill-accent: #fff200; }
.hero-text-fill[data-preset="gaming"],
.lm-text-fill[data-preset="gaming"] { --fill-accent: #00ff55; }
.hero-text-fill[data-preset="neon"],
.lm-text-fill[data-preset="neon"] { --fill-accent: #ff00ff; }

.hero-text-fill .hero-fill-target,
.hero-text-fill.hero-text-fill-sub,
.lm-text-fill {
    background-image: linear-gradient(
        110deg,
        var(--fill-base, #ffffff) 0%,
        var(--fill-base, #ffffff) 38%,
        var(--fill-accent, var(--rx-lime)) 50%,
        var(--fill-base, #ffffff) 62%,
        var(--fill-base, #ffffff) 100%
    );
    background-size: 220% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: lm-text-fill-sweep 5s ease-in-out infinite;
}

.hero-text-fill.hero-text-fill-sub,
.hero-text-fill .hero-fill-target {
    --fill-base: #ffffff;
}

.hero-text-fill.hero-text-fill-sub {
    --fill-base: #aeb5a8;
}

.lm-text-fill {
    --fill-base: var(--lm-fg, #101409);
    --fill-accent: var(--lm-active, var(--lm-fg, #101409));
}

@keyframes lm-text-fill-sweep {
    0%, 20% { background-position: 100% 0; }
    48%, 72% { background-position: 0% 0; }
    100% { background-position: 0% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-text-fill .hero-fill-target,
    .hero-text-fill.hero-text-fill-sub,
    .lm-text-fill {
        animation: none;
        background-position: 0 0;
    }
}

.hero-subtitle {
    max-width: 555px !important;
    margin: 0 0 30px !important;
    color: #aeb5a8 !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    text-align: left;
}

.hero-cta {
    margin: 0 0 26px !important;
    display: flex;
    justify-content: flex-start !important;
    gap: 11px !important;
}

.hero-cta .btn {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
}

.btn-primary,
.hero-cta .btn-primary {
    color: #101409 !important;
    background: var(--rx-lime) !important;
    box-shadow: 0 12px 38px rgba(198,255,61,.14);
}

.btn-primary:hover {
    color: #101409 !important;
    background: #d1ff5f !important;
    box-shadow: 0 16px 44px rgba(198,255,61,.24) !important;
}

.hero-cta .btn-secondary {
    color: #edf0e9;
    background: rgba(255,255,255,.055);
    border-color: rgba(255,255,255,.12);
}

.hero-assurance {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 17px;
    flex-wrap: wrap;
    color: #8e9689;
    font-size: 11px;
    font-weight: 700;
}

.hero-assurance > span:not(.hero-price) {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-assurance i { color: var(--rx-lime); }

.hero-price {
    display: flex;
    flex-direction: column;
    padding-right: 18px;
    border-right: 1px solid var(--rx-line);
    line-height: 1.2;
}

.hero-price small { color: #80887b; font-size: 9px; text-transform: uppercase; }
.hero-price strong { color: #fff; font-size: 16px; }

/* Product stage */
.product-stage {
    position: relative;
    min-height: 580px;
    display: grid;
    place-items: center;
    perspective: 1400px;
}

.stage-orbit {
    position: absolute;
    border: 1px solid rgba(198,255,61,.13);
    border-radius: 50%;
}

.orbit-one { width: 530px; height: 530px; }
.orbit-two { width: 400px; height: 400px; border-style: dashed; transform: rotate(35deg); }

.app-window {
    position: relative;
    z-index: 3;
    width: min(100%, 610px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    background: #0d100c;
    box-shadow: 0 40px 100px rgba(0,0,0,.58), 0 0 0 9px rgba(255,255,255,.018);
    transform: rotateY(-6deg) rotateX(2deg);
    animation: stage-enter .9s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes stage-enter {
    from { opacity: 0; transform: translateY(24px) rotateY(-6deg) rotateX(2deg) scale(.96); }
    to { opacity: 1; transform: translateY(0) rotateY(-6deg) rotateX(2deg) scale(1); }
}

.app-topbar {
    height: 62px;
    display: grid;
    grid-template-columns: 38px 1fr 34px;
    align-items: center;
    gap: 14px;
    padding: 0 17px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: #121511;
}

.mini-brand {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #101409;
    background: var(--rx-lime);
    font-size: 12px;
}

.app-search {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 9px;
    max-width: 300px;
    padding: 0 12px;
    color: #71786d;
    background: #0a0c09;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 9px;
    font-size: 9px;
}

.app-avatar {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #ff6b45, #c33d1c);
    font-size: 11px;
    font-weight: 800;
}

.app-body {
    min-height: 410px;
    display: grid;
    grid-template-columns: 58px 1fr;
}

.app-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-top: 25px;
    color: #555c51;
    border-right: 1px solid rgba(255,255,255,.06);
    background: #0a0c09;
    font-size: 12px;
}

.app-sidebar i.active {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--rx-lime);
    background: rgba(198,255,61,.09);
    border-radius: 9px;
}

.app-content { padding: 28px 0 25px 25px; overflow: hidden; }

.app-content-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-right: 25px;
}

.app-content-head small {
    color: var(--rx-lime);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .13em;
}

.app-content-head h3 {
    margin: 4px 0 0;
    color: #fff;
    font-size: 23px;
    font-weight: 700;
}

.app-drag-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7f867a;
    font-size: 9px;
    font-weight: 700;
}

.app-books-wrap {
    position: relative;
}

.app-books-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 36px;
    background: linear-gradient(90deg, transparent, #0d100c 90%);
    pointer-events: none;
    z-index: 2;
}

.app-books {
    display: flex;
    gap: 11px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 25px 10px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
    user-select: none;
}

.app-books::-webkit-scrollbar { display: none; }

.app-books.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.app-book {
    position: relative;
    flex: 0 0 108px;
    width: 108px;
    aspect-ratio: 2/3;
    overflow: hidden;
    border-radius: 10px;
    background: #1c2119;
    box-shadow: 0 12px 24px rgba(0,0,0,.32);
    scroll-snap-align: start;
    pointer-events: none;
}

.app-book img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
}

.mock-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 10px;
    color: #161a10;
    background: var(--rx-lime);
}

.app-book-mock-2 .mock-cover { color: #fff; background: #e34e2b; }
.app-book-mock-3 .mock-cover { color: #fff; background: #304bd8; }
.app-book-mock-4 .mock-cover { color: #181512; background: #f0d2a0; }
.mock-cover span { font-size: 8px; font-weight: 800; }
.mock-cover strong { font-family: 'Bricolage Grotesque'; font-size: clamp(12px, 1.2vw, 18px); line-height: .92; }

.reading-progress-card {
    margin-top: 18px;
    margin-right: 25px;
    min-height: 76px;
    display: grid;
    grid-template-columns: 42px 1fr 34px;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 13px;
    background: #151914;
}

.progress-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--rx-lime);
    background: rgba(198,255,61,.08);
    font-size: 12px;
}

.progress-copy { display: grid; gap: 3px; }
.progress-copy small { color: #697063; font-size: 6px; font-weight: 800; letter-spacing: .1em; }
.progress-copy strong { color: #e4e8df; font-size: 10px; }
.progress-track { width: 100%; height: 3px; margin-top: 6px; overflow: hidden; border-radius: 9px; background: #272c25; }
.progress-track span { display: block; width: 63%; height: 100%; background: var(--rx-lime); }
.reading-progress-card button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    color: #111409;
    background: var(--rx-lime);
    font-size: 9px;
}

/* Proof strip — marquee infinito */
.proof-strip {
    position: relative;
    z-index: 4;
    padding: 18px 0;
    border-top: 1px solid var(--rx-line);
    border-bottom: 1px solid var(--rx-line);
    background: #0d100c;
    overflow: hidden;
}

.proof-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.proof-marquee-track {
    display: flex;
    width: max-content;
    align-items: stretch;
    animation: proof-marquee 38s linear infinite;
    will-change: transform;
}

.proof-marquee:hover .proof-marquee-track {
    animation-play-state: paused;
}

@keyframes proof-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.proof-item {
    min-height: 68px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 28px;
    border-right: 1px solid var(--rx-line);
    flex: 0 0 auto;
}

.proof-intro {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    min-width: 280px;
}

.proof-intro strong {
    color: #fff;
    font-family: 'Bricolage Grotesque';
    font-size: 17px;
    line-height: 1.15;
}

.proof-bolt {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #111409;
    background: var(--rx-lime);
    flex-shrink: 0;
}

.proof-number {
    color: #fff !important;
    font-family: 'Bricolage Grotesque';
    font-size: 20px !important;
    font-weight: 800;
}

.proof-item > span:last-child {
    color: #7d8578;
    font-size: 10px;
}

@media (prefers-reduced-motion: reduce) {
    .proof-marquee-track {
        animation: none;
        transform: none;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1240px;
        margin: 0 auto;
        justify-content: center;
    }
}

/* Shared sections */
.books-slider-section,
.features-section,
.pricing-section,
.faq-section,
.cta-section {
    padding: 106px 28px !important;
}

.books-slider-section,
.features-section,
.pricing-section,
.faq-section,
.cta-section { background: #0d100c !important; }

.section-header {
    max-width: 760px;
    margin: 0 auto 52px !important;
}

.section-title,
.cta-title {
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(42px, 5vw, 64px) !important;
    font-weight: 800 !important;
    line-height: .98 !important;
    letter-spacing: -.055em !important;
}

.section-subtitle {
    max-width: 630px !important;
    color: var(--rx-muted) !important;
    line-height: 1.7;
}

.section-badge {
    color: var(--rx-lime) !important;
    background: rgba(198,255,61,.07) !important;
    border-color: rgba(198,255,61,.16) !important;
    box-shadow: none !important;
    animation: none !important;
}

/* Books */
.books-3d-grid {
    grid-template-columns: repeat(5, minmax(140px, 1fr)) !important;
    gap: 20px !important;
    padding: 0 !important;
}

.book-3d-card {
    height: auto !important;
    aspect-ratio: 2/3;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 18px 38px rgba(0,0,0,.3) !important;
    transform: none !important;
}

.book-3d-card:hover { transform: translateY(-12px) scale(1.025) !important; }
.book-3d-card img { border-radius: 12px !important; }

.book-badge {
    top: 9px !important;
    right: auto !important;
    left: 9px;
    padding: 6px 9px !important;
    color: #12150d !important;
    background: var(--rx-lime) !important;
    box-shadow: none !important;
    animation: none !important;
}

.netflix-slider-container { margin-top: 52px; }
.slider-header, .netflix-slider { padding-inline: 0 !important; }
.slider-book-card { border: 0 !important; box-shadow: none !important; }

.netflix-slider-marquee {
    padding-inline: 0 !important;
}

.slider-content-marquee {
    overflow: hidden !important;
    cursor: default;
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}

.slider-marquee-track {
    display: flex;
    width: max-content;
    gap: 16px;
    padding: 16px 0;
    animation: slider-books-marquee var(--marquee-duration, 36s) linear infinite;
    will-change: transform;
}

.slider-content-marquee:hover .slider-marquee-track {
    animation-play-state: paused;
}

@keyframes slider-books-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .slider-marquee-track {
        animation: none;
        transform: none;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .slider-marquee-track::-webkit-scrollbar { display: none; }

    .slider-content-marquee {
        mask-image: none;
        -webkit-mask-image: none;
        overflow-x: auto !important;
    }
}

/* Features and benefits */
.features-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 15px !important; }

.feature-card,
.pricing-card,
.faq-item {
    border: 1px solid var(--rx-line) !important;
    background: var(--rx-surface) !important;
    box-shadow: none !important;
}

.feature-card {
    padding: 32px !important;
    border-radius: 20px !important;
}

.feature-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(198,255,61,.32) !important;
}

.feature-card::before,
.feature-glow { display: none !important; }
.feature-icon { font-size: 39px !important; filter: none !important; animation: none !important; }

.feature-title {
    color: #fff !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    font-weight: 700 !important;
}

.feature-visual {
    border-color: rgba(198,255,61,.13) !important;
    background: rgba(198,255,61,.035) !important;
}

/* Reading tools showcase */
.reading-tools-heading {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 46px;
}

.reading-tools-heading .section-badge {
    margin-bottom: 17px;
}

.reading-tools-heading .section-title,
.reading-tools-heading .section-subtitle {
    margin: 0 !important;
    text-align: left !important;
}

.reading-tools-heading .section-title {
    max-width: 720px;
}

.reading-tools-heading .section-subtitle {
    padding-bottom: 5px;
    font-size: 15px;
}

.reading-tools-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}

.reading-tools-benefits {
    display: grid;
    gap: 8px;
}

.reading-tool-benefit {
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 12px;
    padding: 18px 16px;
    border: 1px solid transparent;
    border-radius: 14px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.reading-tool-benefit:hover,
.reading-tool-benefit.is-active {
    background: rgba(255,255,255,.035);
    border-color: var(--rx-line);
    transform: translateX(4px);
}

.reading-tool-benefit.is-active {
    background: linear-gradient(90deg, rgba(198,255,61,.08), rgba(198,255,61,.015));
    border-color: rgba(198,255,61,.18);
}

.reading-tool-number {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    color: #747c6e;
    background: rgba(255,255,255,.045);
    border-radius: 8px;
    font-size: 8px;
    font-weight: 900;
}

.reading-tool-benefit.is-active .reading-tool-number {
    color: #101409;
    background: var(--rx-lime);
}

.reading-tool-benefit h3 {
    margin: 2px 0 6px;
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: -.02em;
}

.reading-tool-benefit p {
    margin: 0;
    color: #828a7d;
    font-size: 12px;
    line-height: 1.65;
}

.reading-tool-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #b6bdb0;
    font-size: 10px;
    font-weight: 700;
}

.reading-tool-meta i {
    color: var(--rx-lime);
}

.reading-tools-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 8px;
    padding: 0 16px;
    color: #101409;
    background: var(--rx-lime);
    border-radius: 11px;
    font-size: 10px;
    font-weight: 850;
    text-decoration: none;
}

.reading-tools-cta:hover {
    color: #101409;
    background: #d4ff6b;
}

.reader-tools-demo {
    position: relative;
    min-width: 0;
}

.reader-demo-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: #10130f;
    box-shadow: 0 35px 90px rgba(0,0,0,.38);
}

.reader-demo-shell::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 12%;
    z-index: 0;
    width: 420px;
    height: 260px;
    background: rgba(198,255,61,.08);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.reader-demo-topbar {
    position: relative;
    z-index: 2;
    min-height: 62px;
    display: grid;
    grid-template-columns: 92px 1fr 170px;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    background: rgba(13,15,12,.96);
    border-bottom: 1px solid var(--rx-line);
}

.reader-demo-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.demo-dot {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    flex: 0 0 auto;
}

.demo-dot-red { background: #ff6b5f; }
.demo-dot-yellow { background: #f1bd4a; }
.demo-dot-green { background: #55c85a; }

.reader-demo-book {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 3px;
}

.reader-demo-book strong {
    max-width: 100%;
    overflow: hidden;
    color: #eef1ea;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reader-demo-book span {
    color: #6f776a;
    font-size: 10px;
}

.reader-demo-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.reader-demo-tools-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 12px;
    color: #11140d;
    background: var(--rx-lime);
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
}

.reader-demo-close {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #c8cec2;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--rx-line);
    border-radius: 9px;
    font-size: 12px;
}

.reader-demo-body {
    position: relative;
    z-index: 1;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
}

.reader-demo-canvas {
    min-width: 0;
    display: grid;
    place-items: center;
    padding: 36px 28px;
    background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,.055), transparent 48%),
        #111410;
}

.reader-demo-page {
    position: relative;
    width: min(100%, 390px);
    min-height: 430px;
    padding: 42px 40px 34px;
    color: #31372d;
    background: linear-gradient(180deg, #fff 0%, #f4f6ef 100%);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 4px;
    box-shadow: 0 24px 55px rgba(0,0,0,.35);
    overflow: hidden;
    --demo-text-scale: 1;
}

.demo-chapter {
    display: block;
    color: #8a9084;
    font-size: calc(10px * var(--demo-text-scale, 1));
    font-weight: 800;
    letter-spacing: .16em;
    transition: font-size .22s ease;
}

.reader-demo-page h3 {
    max-width: 260px;
    margin: 12px 0 22px;
    color: #1c211a;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: calc(34px * var(--demo-text-scale, 1));
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.03em;
    transition: font-size .22s ease;
}

.reader-demo-page p {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    color: #272c26;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: calc(13px * var(--demo-text-scale, 1));
    line-height: 1.75;
    transition: font-size .22s ease, color .18s ease;
}

.reader-demo-page .demo-highlighted {
    z-index: 2;
    padding: 1px 0;
    color: #272c26;
    cursor: pointer;
    background: linear-gradient(180deg, transparent 16%, var(--demo-highlight, rgba(255,222,58,.58)) 16%, var(--demo-highlight, rgba(255,222,58,.58)) 88%, transparent 88%);
    transition: background .18s ease, box-shadow .18s ease;
}

.reader-demo-page .demo-highlighted.is-flash {
    box-shadow: inset 0 0 0 2px rgba(28, 33, 26, .12);
}

.demo-note-pin {
    position: absolute;
    z-index: 3;
    top: 248px;
    right: 22px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #101409;
    background: var(--rx-lime);
    border: 3px solid #f5f6f1;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    font-size: 12px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.demo-note-pin:hover {
    transform: scale(1.06);
}

.demo-note-pin.is-active {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(198,255,61,.35), 0 8px 20px rgba(0,0,0,.18);
}

.reader-demo-shell.is-note-mode .demo-note-pin {
    animation: demo-note-pulse 1.4s ease-in-out infinite;
}

@keyframes demo-note-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(198,255,61,.35), 0 8px 20px rgba(0,0,0,.18); }
    50% { box-shadow: 0 0 0 8px rgba(198,255,61,0), 0 8px 20px rgba(0,0,0,.18); }
}

.demo-note-popover {
    position: absolute;
    z-index: 4;
    top: 228px;
    right: 58px;
    width: 168px;
    display: grid;
    gap: 6px;
    padding: 12px;
    color: #e9ede5;
    background: #1a1e18;
    border: 1px solid rgba(198,255,61,.22);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: none;
}

.demo-note-popover.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.demo-note-popover > span {
    color: var(--rx-lime);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.demo-note-popover strong {
    font-size: 11px;
    line-height: 1.45;
}

.demo-page-number {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    color: #999f94;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: calc(11px * var(--demo-text-scale, 1));
    text-align: center;
    transition: font-size .22s ease;
}

.reader-demo-panel {
    min-width: 0;
    padding: 18px 16px;
    background: rgba(20,23,18,.98);
    border-left: 1px solid var(--rx-line);
}

.demo-panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rx-line);
}

.demo-panel-title > div {
    display: grid;
    gap: 4px;
}

.demo-panel-title small,
.demo-panel-label {
    color: #697164;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.demo-panel-title strong {
    color: #f1f3ed;
    font-size: 14px;
}

.demo-panel-section {
    padding-top: 16px;
}

.demo-panel-label {
    display: block;
    margin-bottom: 9px;
}

.demo-view-controls {
    display: grid;
    grid-template-columns: 42px 1fr 42px 42px;
    gap: 6px;
}

.demo-control,
.demo-zoom {
    min-height: 42px;
    display: grid;
    place-items: center;
    color: #c8cec2;
    background: #1c2019;
    border: 1px solid var(--rx-line);
    border-radius: 10px;
}

.demo-control {
    padding: 0;
    font: inherit;
    cursor: pointer;
    transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.demo-control:hover:not(:disabled) {
    color: #fff;
    background: #242920;
    border-color: rgba(198,255,61,.22);
}

.demo-control:active:not(:disabled) {
    transform: scale(.96);
}

.demo-control:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.demo-zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
}

.demo-zoom small {
    color: #6f776a;
    font-size: 9px;
    font-weight: 600;
}

.demo-quick-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.demo-tool {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    color: #9ea69a;
    background: #1b1f19;
    border: 1px solid var(--rx-line);
    border-radius: 10px;
    font-size: 11px;
    font-family: inherit;
    cursor: pointer;
    transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.demo-tool:hover {
    color: #d5dbd0;
    border-color: rgba(255,255,255,.16);
}

.demo-tool:active {
    transform: scale(.98);
}

.demo-tool.is-selected {
    color: #f0f3eb;
    background: rgba(198,255,61,.08);
    border-color: rgba(198,255,61,.26);
}

.demo-tool i {
    color: var(--rx-lime);
}

.demo-tool b {
    font-weight: 700;
}

.demo-colors {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px;
    margin-top: 10px;
    transition: opacity .18s ease;
}

.demo-colors.is-disabled {
    opacity: .35;
    pointer-events: none;
}

.demo-swatch {
    width: 100%;
    aspect-ratio: 1;
    display: block;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.demo-swatch:hover {
    transform: scale(1.08);
}

.demo-swatch:active {
    transform: scale(.94);
}

.demo-swatch-yellow { background: #ffe15c; }
.demo-swatch-green { background: #84ea72; }
.demo-swatch-cyan { background: #72d8ea; }
.demo-swatch-pink { background: #e783df; }
.demo-swatch-orange { background: #ff9e54; }
.demo-swatch-red { background: #ef6a6a; }
.demo-swatch-blue { background: #7289ed; }
.demo-swatch-lime { background: var(--rx-lime); }
.demo-swatch.is-active { border-color: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,.12); }

.demo-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
    background: #10130f;
    border: 1px solid var(--rx-line);
    border-radius: 10px;
}

.demo-tabs span,
.demo-tabs button {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #6f776a;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 700;
}

.demo-tabs button {
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
    transition: background .16s ease, color .16s ease;
}

.demo-tabs button:hover {
    color: #b4bab0;
}

.demo-tabs span.active,
.demo-tabs button.active {
    color: #eef1ea;
    background: #1d211a;
}

.demo-tabs b {
    min-width: 18px;
    padding: 2px 5px;
    background: rgba(255,255,255,.06);
    border-radius: 99px;
    font-size: 9px;
    text-align: center;
}

.demo-saved-item {
    display: grid;
    grid-template-columns: 6px 1fr;
    gap: 9px;
    align-items: stretch;
    margin-top: 8px;
    padding: 10px;
    color: #c4cbbf;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 9px;
    font-size: 10px;
    line-height: 1.5;
    cursor: pointer;
    transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.demo-saved-item:hover {
    background: rgba(255,255,255,.045);
    border-color: rgba(198,255,61,.18);
}

.demo-saved-item:active {
    transform: scale(.99);
}

.demo-saved-item[hidden] {
    display: none !important;
}

.demo-saved-mark {
    display: block;
    width: 6px;
    min-height: 100%;
    border-radius: 99px;
}

.demo-saved-mark-yellow { background: #ffe15c; }
.demo-saved-mark-green { background: #84ea72; }
.demo-saved-mark-cyan { background: #72d8ea; }
.demo-saved-mark-pink { background: #e783df; }
.demo-saved-mark-orange { background: #ff9e54; }
.demo-saved-mark-red { background: #ef6a6a; }
.demo-saved-mark-blue { background: #7289ed; }
.demo-saved-mark-lime { background: var(--rx-lime); }
.demo-saved-mark-note { background: var(--rx-lime); }

.reader-demo-progress {
    height: 4px;
    background: rgba(255,255,255,.07);
}

.reader-demo-progress-fill {
    width: 29%;
    height: 100%;
    display: block;
    background: var(--rx-lime);
}

/* Pricing */
.pricing-stack {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    padding: 26px 24px 22px !important;
    border-radius: 18px !important;
    text-align: left !important;
    overflow: hidden;
}

.pricing-card-head {
    margin-bottom: 18px;
}

.pricing-card-quote {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.pricing-card.featured {
    border-color: rgba(198, 255, 61, .34) !important;
    background: linear-gradient(180deg, rgba(198, 255, 61, .05), rgba(17, 20, 16, .98) 42%) !important;
    transform: none !important;
}

.pricing-card.featured::before {
    content: 'Recomendado';
    top: 16px !important;
    right: 16px;
    left: auto !important;
    transform: none !important;
    padding: 5px 10px !important;
    color: #101409 !important;
    background: var(--rx-lime) !important;
    border-radius: 999px;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .04em;
}

.pricing-card:hover,
.pricing-card.featured:hover { transform: translateY(-4px) !important; }

.pricing-name {
    margin: 0 0 6px !important;
    padding-right: 92px;
    color: #fff;
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.15;
}

.pricing-description {
    min-height: 0;
    margin: 0;
    color: var(--rx-muted);
    font-size: 13px;
    line-height: 1.55;
}

.pricing-old-price {
    color: #747b70;
    font-size: 14px;
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.pricing-price-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-bottom: 8px;
}

.pricing-save {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(198, 255, 61, .12);
    color: var(--rx-lime);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .01em;
}

.pricing-urgency-timer {
    margin: 0 0 12px;
    padding: 0;
}

.pricing-urgency-timer .plan-timer-text {
    display: block;
    width: 100%;
    line-height: 1.45;
}

.plan-timer-label,
.plan-timer-suffix {
    display: inline;
    color: var(--rx-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .01em;
}

.plan-timer-digits {
    display: inline;
    margin-left: 5px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
    color: #eef2e8;
}

.pricing-card.featured .plan-timer-digits {
    color: #ffffff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .35);
}

.pricing-card.featured .plan-timer-label,
.pricing-card.featured .plan-timer-suffix {
    color: #a8b09a;
}

.pricing-price {
    margin: 0 0 2px !important;
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(34px, 4vw, 42px) !important;
    font-weight: 800 !important;
    line-height: 1;
    letter-spacing: -.03em;
}

.pricing-period {
    margin: 0;
    color: #7f877a;
    font-size: 12px;
    font-weight: 600;
}

.pricing-features {
    flex: 1 1 auto;
    margin: 0 0 18px !important;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #b4bab0;
    font-size: 13px;
    line-height: 1.45;
}

.pricing-features li + li {
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.pricing-feature-tool {
    color: #d8ddd2 !important;
    font-weight: 600;
}

.pricing-feature-tool i {
    width: 16px;
    margin-top: 2px;
    color: var(--rx-lime);
    text-align: center;
    flex-shrink: 0;
}

.pricing-features li::before {
    content: '✓';
    flex-shrink: 0;
    color: var(--rx-lime) !important;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

.pricing-feature-tool::before {
    content: none !important;
}

.pricing-card .btn {
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.conversion-note {
    max-width: 760px;
    margin: 33px auto 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: #858d80;
    font-size: 12px;
}
.conversion-note i { margin-right: 6px; color: var(--rx-lime); }

/* FAQ / CTA */
.faq-list { max-width: 850px !important; }
.faq-item { border-radius: 14px !important; }
.faq-item.active { border-color: rgba(198,255,61,.28) !important; }
.faq-question { padding: 22px 24px !important; }
.faq-answer-content { padding: 0 24px 24px !important; }

.cta-section::before { display: none !important; }
.cta-title { background: none !important; -webkit-text-fill-color: currentColor !important; }
.cta-section .btn { border-radius: 14px; }

.sticky-mobile-cta { display: none; }

@media (max-width: 1050px) {
    .hero-grid { grid-template-columns: .85fr 1.15fr; gap: 30px; }
    .hero-title { font-size: clamp(64px, 8vw, 88px) !important; }
    .app-window { width: 100%; }
    .reading-tools-heading { gap: 30px; }
    .reading-tools-layout { grid-template-columns: 1fr; }
    .reading-tools-benefits { grid-template-columns: repeat(3, 1fr); }
    .reading-tool-benefit { align-content: start; }
    .reading-tools-cta { grid-column: 1 / -1; width: fit-content; justify-self: center; padding-inline: 24px; }
    .features-grid { grid-template-columns: 1fr !important; }
    .books-3d-grid { grid-template-columns: repeat(4, 1fr) !important; }
    .books-3d-grid .book-3d-card:nth-child(n+9) { display: none; }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100svh !important;
        height: auto !important;
        padding: 0 !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column;
        background:
            radial-gradient(circle at 79% 39%, rgba(198,255,61,.14), transparent 25%),
            radial-gradient(circle at 9% 86%, rgba(255,107,69,.08), transparent 23%),
            var(--rx-bg) !important;
    }

    body.has-lm-announce .hero-section {
        min-height: calc(100svh - 36px) !important;
        height: auto !important;
        padding-top: 0 !important;
    }

    .hero-header {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        z-index: 2;
        width: 100%;
        min-height: 58px;
        padding: 10px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-shrink: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        background: rgba(7, 9, 7, .92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    body.has-lm-announce .hero-header { top: auto; }

    .lm-announce-inner { padding: 7px 14px; }

    .hero-logo {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 170px);
        font-size: 18px;
        text-decoration: none;
        white-space: nowrap;
    }

    .brand-mark { width: 32px; height: 32px; font-size: 13px; flex-shrink: 0; }

    .hero-nav {
        position: static !important;
        top: auto !important;
        right: auto !important;
        gap: 6px !important;
        margin-left: auto;
        flex: 0 0 auto;
        flex-shrink: 0;
    }

    .hero-nav-link:not(.hero-nav-auth) { display: none !important; }

    .hero-nav-link.hero-nav-auth {
        display: inline-flex !important;
        align-items: center;
        padding: 8px 12px !important;
        font-size: 12px !important;
        color: #e8ece3 !important;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .05);
    }

    .hero-nav .btn.hero-nav-auth {
        display: inline-flex !important;
        align-items: center;
        min-height: 36px;
        margin-left: 0;
        padding: 0 13px !important;
        font-size: 12px !important;
    }

    .landing-shell.hero-grid {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px 28px;
        min-height: 0;
    }

    .hero-grid { grid-template-columns: 1fr; gap: 0; width: 100%; }
    .hero-copy {
        padding: 0;
        text-align: center;
        width: 100%;
        max-width: 420px;
        margin-inline: auto;
    }
    .hero-section .hero-copy { padding-top: 0; padding-bottom: 0; }
    .hero-eyebrow { margin-inline: auto; }
    .hero-title {
        margin-bottom: 18px !important;
        font-size: clamp(56px, 18vw, 76px) !important;
        text-align: center;
        line-height: .96 !important;
        letter-spacing: -.05em !important;
    }
    .hero-caption-animated .hero-caption-line {
        justify-content: center;
        text-align: center;
    }
    .hero-caption-animated .caption-word {
        font-size: clamp(56px, 18vw, 76px) !important;
    }
    .title-highlight { transform: none; }
    .hero-caption-highlight-line { transform: none; }
    .hero-subtitle {
        font-size: 16px !important;
        text-align: center;
        margin-bottom: 22px !important;
        max-width: 340px;
        margin-inline: auto;
    }
    .hero-subtitle-animated .hero-caption-line {
        justify-content: center;
        text-align: center;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 12px;
        margin-bottom: 0;
    }
    .hero-cta .btn {
        width: auto;
        min-width: min(100%, 260px);
    }
    .hero-assurance { justify-content: center; }
    .hero-price { width: 100%; align-items: center; padding: 0 0 12px; border-right: 0; border-bottom: 1px solid var(--rx-line); }

    .product-stage { display: none !important; }

    .hero-proof-marquee {
        position: relative;
        margin-top: auto;
        flex-shrink: 0;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        border-top: 1px solid var(--rx-line);
        border-bottom: 1px solid var(--rx-line);
    }

    .proof-strip { padding: 14px 0; }
    .proof-item { min-height: 58px; min-width: 180px; padding: 0 18px; }
    .proof-intro { min-width: 230px; gap: 10px; }
    .proof-intro strong { font-size: 14px; }
    .proof-bolt { width: 34px; height: 34px; border-radius: 10px; }
    .proof-number { font-size: 17px !important; }
    .proof-marquee-track { animation-duration: 28s; }
    .proof-bolt { width: 35px; height: 35px; }

    .books-slider-section,
    .features-section,
    .pricing-section,
    .faq-section,
    .cta-section { padding: 78px 18px !important; }

    .features-section { padding-top: 48px !important; }

    .section-title, .cta-title { font-size: clamp(39px, 12vw, 52px) !important; }
    .reading-tools-heading {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 24px;
        justify-items: center;
        text-align: center;
    }
    .reading-tools-heading .section-title {
        font-size: clamp(38px, 11vw, 50px) !important;
        text-align: center !important;
        max-width: 18ch;
        margin-inline: auto !important;
    }
    .reading-tools-heading .section-subtitle {
        font-size: 13px;
        text-align: center !important;
        max-width: 34ch;
        margin-inline: auto !important;
    }
    .reading-tools-benefits {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(250px, 82vw);
        gap: 9px;
        margin-inline: -18px;
        padding: 0 18px 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .reading-tools-benefits::-webkit-scrollbar { display: none; }
    .reading-tool-benefit { scroll-snap-align: start; background: rgba(255,255,255,.025); border-color: var(--rx-line); }
    .reading-tool-benefit:hover,
    .reading-tool-benefit.is-active { transform: none; }
    .reading-tools-cta { display: none; }
    .reader-tools-demo { margin-inline: -5px; }
    .reader-demo-shell { border-radius: 16px; }
    .reader-demo-topbar { grid-template-columns: 56px 1fr 42px; min-height: 54px; padding-inline: 12px; }
    .reader-demo-tools-btn { display: none; }
    .reader-demo-body { min-height: 0; grid-template-columns: 1fr; }
    .reader-demo-canvas { min-height: 360px; padding: 22px 16px; }
    .reader-demo-page { width: min(100%, 320px); min-height: 340px; padding: 32px 28px 26px; }
    .reader-demo-page h3 { margin-bottom: 16px; font-size: calc(28px * var(--demo-text-scale, 1)); }
    .reader-demo-page p { margin-bottom: 12px; font-size: calc(12px * var(--demo-text-scale, 1)); }
    .demo-note-pin { top: 205px; right: 14px; }
    .demo-note-popover {
        top: 186px;
        right: 46px;
        width: min(168px, 52vw);
    }
    .demo-note-popover.is-visible {
        display: grid !important;
    }
    .reader-demo-panel { padding: 16px; border-top: 1px solid var(--rx-line); border-left: 0; }
    .demo-view-controls { grid-template-columns: 38px 1fr 38px 38px; }
    .demo-saved-item { font-size: 11px; }
    .books-3d-container { display: none !important; }

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .features-grid { grid-template-columns: 1fr !important; }
    .pricing-card.featured { transform: none !important; }

    .sticky-mobile-cta { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    .app-window { animation: none !important; }
}
