/* ============================
   Noctra - Narrative Landing
   ============================ */

.narrative-landing {
    --n-max: 1100px;
    --n-accent: #7C5CFF;
    --n-accent-dim: #5A3EDC;
    --n-accent-glow: #9B7CFF;
    --n-line: rgba(255, 255, 255, 0.06);
    --n-line-strong: rgba(255, 255, 255, 0.1);
    padding-bottom: 72px;
}

/* narrative-landing inherits atmosphere + nav from .public-shell */

.narrative-landing .button-primary {
    box-shadow: none;
}

/* Section base - altura natural, sem lock de viewport */
.narrative-section {
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 96px 24px 72px;
    scroll-margin-top: 84px;
}

.narrative-section.is-breath {
    min-height: auto;
    padding: 72px 24px;
}

.narrative-section.is-climax {
    min-height: auto;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
}

.narrative-inner {
    width: 100%;
    max-width: var(--n-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.narrative-scene-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.narrative-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.narrative-atmosphere {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.025) 0%, transparent 55%);
    pointer-events: none;
}

.n-radial-grid {
    position: absolute;
    inset: 0;
    background:
        repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 39px, rgba(255, 255, 255, 0.018) 40px, transparent 41px);
    mask-image: radial-gradient(circle at 50% 50%, black 10%, transparent 72%);
    pointer-events: none;
}

/* Hero - ocupa a viewport inteira */
.n-hero-section {
    min-height: 100svh;
    min-height: 100dvh;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: clamp(96px, 11vh, 128px) 24px clamp(72px, 8vh, 96px);
}

.n-hero-copy {
    max-width: 640px;
    position: relative;
}

.n-hero-title {
    max-width: 15ch;
}

.n-trust-row-inline {
    border-top: none;
    padding-top: 0;
    margin-top: 20px;
}

/* Typography */
.n-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-variant-numeric: tabular-nums;
}

.n-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    max-width: 14ch;
}

.n-title-wide {
    max-width: 18ch;
}

.n-subtitle {
    margin-top: 20px;
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 48ch;
}

.n-body {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Owl gaze */
.owl-gaze {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: clamp(24px, 5vw, 48px);
    z-index: 2;
    pointer-events: none;
}

.owl-eye {
    width: clamp(28px, 4vw, 44px);
    height: clamp(28px, 4vw, 44px);
    border-radius: 50%;
    border: 1px solid rgba(124, 92, 255, 0.35);
    background: radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.2) 0%, rgba(124, 92, 255, 0.04) 45%, transparent 70%);
    box-shadow: 0 0 20px rgba(124, 92, 255, 0.15);
    position: relative;
}

.owl-eye::after {
    content: "";
    position: absolute;
    inset: 30%;
    border-radius: 50%;
    background: var(--n-accent);
    box-shadow: 0 0 12px rgba(124, 92, 255, 0.6);
    opacity: 0.9;
}

/* Hero layout - legado removido, hero usa coluna única */
.n-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.n-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--n-line);
}

.n-trust-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.n-trust-chip {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-secondary);
    padding: 4px 10px;
    border: 1px solid var(--n-line);
    border-radius: 2px;
}

.n-trust-chip-muted {
    color: var(--text-tertiary, var(--text-secondary));
    border-style: dashed;
    opacity: 0.85;
}

/* Hero benefit bullets */
.n-hero-bullets {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    max-width: 560px;
}

.n-hero-bullets li {
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.n-hero-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--n-accent);
    opacity: 0.85;
}

/* Integration logo marquee band */
.n-integrations-band {
    width: 100%;
    border-top: 1px solid var(--n-line);
    border-bottom: 1px solid var(--n-line);
    padding: 18px 0;
    overflow: hidden;
    background: rgba(11, 14, 20, 0.35);
    position: relative;
    z-index: 2;
}

.n-logo-strip {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.n-integrations-band .n-logo-strip {
    width: 100%;
    align-items: center;
    gap: 12px;
}

.n-integrations-band .n-logo-marquee {
    width: 100%;
}

.n-integrations-band .n-logo-marquee__viewport {
    mask-image: none;
    -webkit-mask-image: none;
}

.n-logo-marquee__viewport {
    width: 100%;
    overflow: hidden;
    outline: none;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 4%,
        #000 96%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 4%,
        #000 96%,
        transparent
    );
}

.n-logo-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: n-logo-marquee-scroll 36s linear infinite;
}

.n-logo-marquee__viewport:hover .n-logo-marquee__track,
.n-logo-marquee__viewport:focus-visible .n-logo-marquee__track {
    animation-play-state: paused;
}

.n-logo-marquee__viewport:hover .n-logo-item,
.n-logo-marquee__viewport:focus-visible .n-logo-item {
    opacity: 1;
}

.n-logo-marquee__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    min-height: 48px;
}

.n-logo-marquee__group .n-trust-chip {
    flex-shrink: 0;
    white-space: nowrap;
}

@keyframes n-logo-marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.n-logo-item {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    height: 48px;
    opacity: 0.78;
    transition: opacity 0.2s ease;
}

.n-logo-item img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.n-logo-item--buygoods {
    width: auto;
    min-width: 72px;
    max-width: 120px;
    height: 28px;
}

.n-logo-item--buygoods img {
    max-height: 28px;
}

.n-logo-item--clickbank {
    width: auto;
    min-width: 72px;
    max-width: 100px;
    height: 28px;
}

.n-logo-item--clickbank img {
    max-height: 28px;
}

.n-logo-item--gurumedia {
    width: auto;
    min-width: 72px;
    max-width: 96px;
    height: 24px;
}

.n-logo-item--gurumedia img {
    max-height: 24px;
}

.n-logo-item--smartadv {
    width: auto;
    min-width: 72px;
    max-width: 108px;
    height: 20px;
}

.n-logo-item--smartadv img {
    max-height: 20px;
}

.n-logo-item--mediascalers {
    width: auto;
    min-width: 88px;
    max-width: 120px;
    height: 24px;
}

.n-logo-item--mediascalers img {
    max-height: 24px;
}

.n-logo-item--smashloud {
    width: auto;
    min-width: 80px;
    max-width: 112px;
    height: 40px;
}

.n-logo-item--smashloud img {
    max-height: 40px;
}

.n-logo-item--google {
    width: 32px;
    height: 40px;
}

.n-logo-item--google img {
    max-height: 40px;
    max-width: 32px;
}

/* Testimonials */
.n-testimonials-section {
    border-bottom: 1px solid var(--n-line);
    background: rgba(11, 14, 20, 0.35);
}

.n-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.n-testimonial-card {
    margin: 0;
    padding: 22px 20px;
    border: 1px solid var(--n-line);
    background: rgba(11, 14, 20, 0.55);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
}

.n-testimonial-quote {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.n-testimonial-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.n-testimonial-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-primary);
}

.n-testimonial-role {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.85;
}

/* Split narrative sections */
.n-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.n-split-reverse {
    direction: rtl;
}

.n-split-reverse > * {
    direction: ltr;
}

.n-scene-panel {
    position: relative;
    min-height: 360px;
    border: 1px solid var(--n-line);
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        rgba(11, 14, 20, 0.72);
    background-size: 20px 20px, 20px 20px, auto;
    overflow: hidden;
}

.n-scene-panel::before,
.n-scene-panel::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: rgba(255, 255, 255, 0.12);
    border-style: solid;
    pointer-events: none;
    z-index: 2;
}

.n-scene-panel::before {
    top: 10px;
    left: 10px;
    border-width: 1px 0 0 1px;
}

.n-scene-panel::after {
    bottom: 10px;
    right: 10px;
    border-width: 0 1px 1px 0;
}

.n-scene-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    pointer-events: none;
    z-index: 1;
}

.n-scene-svg {
    width: 100%;
    max-width: 420px;
    height: auto;
    overflow: visible;
}

.n-scene-svg path {
    fill: none;
}

.n-scene-grid {
    fill: url(#n-scene-grid-pattern);
    opacity: 0;
}

.n-scene-panel .n-scene-svg .n-scene-grid {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 0.5;
    opacity: 1;
}

.n-scene-draw {
    stroke: rgba(124, 92, 255, 0.55);
    stroke-width: 1.2;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    vector-effect: non-scaling-stroke;
}

.n-scene-flow-path {
    stroke-dasharray: 6 8;
}

.n-scene-bridge {
    stroke: rgba(124, 92, 255, 0.35);
    stroke-width: 1;
    fill: none;
}

.n-scene-node {
    fill: rgba(230, 232, 238, 0.75);
}

.n-scene-node-accent {
    fill: var(--n-accent);
}

.n-scene-node-dim {
    fill: rgba(124, 92, 255, 0.55);
}

.n-scene-cluster {
    fill: rgba(124, 92, 255, 0.06);
    stroke: rgba(124, 92, 255, 0.35);
    stroke-width: 1;
    opacity: 0;
    transform-origin: 248px 128px;
}

.n-scene-label {
    fill: rgba(230, 232, 238, 0.45);
    font-family: var(--font-mono, "IBM Plex Mono", monospace);
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: lowercase;
}

.n-scene-label-accent {
    fill: rgba(155, 124, 255, 0.85);
}

.n-scene-grid-dot {
    fill: rgba(230, 232, 238, 0.14);
}

.n-scene-pulse-ring {
    fill: none;
    stroke: rgba(124, 92, 255, 0.65);
    stroke-width: 1;
    transform-origin: center;
    transform-box: fill-box;
    animation: n-scene-pulse 2.4s ease-out infinite;
}

.n-scene-pulse-ring-alt {
    animation-delay: 1.1s;
}

.n-scene-panel.visible .n-scene-draw {
    animation: n-scene-draw 1.8s ease forwards;
}

.n-scene-panel.visible .n-scene-draw-d1 { animation-delay: 0.15s; }

.n-scene-panel.visible .n-scene-draw-d2 { animation-delay: 0.3s; }

.n-scene-panel.visible .n-scene-draw-d3 { animation-delay: 0.45s; }

.n-scene-panel.visible .n-scene-draw-d4 { animation-delay: 0.6s; }

.n-scene-panel.visible .n-scene-draw-d5 { animation-delay: 0.75s; }

.n-scene-panel.visible .n-scene-cluster {
    animation: n-scene-cluster-in 0.5s ease 1.1s forwards;
}

.n-scene-panel.visible .n-scene-flow-step {
    animation: n-scene-step-in 0.45s ease forwards;
}

.n-scene-panel.visible .n-scene-flow-step.n-scene-draw-d1 { animation-delay: 0.35s; }

.n-scene-panel.visible .n-scene-flow-step.n-scene-draw-d2 { animation-delay: 0.65s; }

.n-scene-panel.visible .n-scene-flow-step.n-scene-draw-d3 { animation-delay: 0.95s; }

.n-scene-panel.visible .n-scene-cluster-group {
    animation: n-scene-step-in 0.5s ease forwards;
}

.n-scene-panel.visible .n-scene-cluster-group.n-scene-draw-d1 { animation-delay: 0.2s; }

.n-scene-panel.visible .n-scene-cluster-group.n-scene-draw-d2 { animation-delay: 0.4s; }

.n-scene-panel.visible .n-scene-cluster-group.n-scene-draw-d3 { animation-delay: 0.6s; }

@keyframes n-scene-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes n-scene-cluster-in {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes n-scene-step-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}

@keyframes n-scene-pulse {
    0% { transform: scale(1); opacity: 0.75; }
    70% { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(2.2); opacity: 0; }
}

.n-scene-panel canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.45;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Quote breather */
.n-quote-section {
    text-align: center;
    padding: 100px 24px;
}

.n-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--text-primary);
    max-width: 22ch;
    margin: 0 auto;
}

.n-quote em {
    font-style: normal;
    color: var(--text-secondary);
    display: block;
    margin-top: 12px;
}

/* Social proof breather */
.n-trust-section {
    border-top: 1px solid var(--n-line);
    background: rgba(11, 14, 20, 0.4);
}

.n-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.n-outcomes-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.n-outcomes-list li {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid var(--n-line);
    line-height: 1.5;
}

.n-outcomes-list li::before {
    content: "→ ";
    color: var(--n-accent);
    opacity: 0.7;
}

/* Journey steps inline */
.n-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.n-flow-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--n-line);
    opacity: 0.45;
    transition: opacity 0.4s ease;
}

.n-flow-step.is-active {
    opacity: 1;
}

.n-flow-num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--n-accent);
    letter-spacing: 0.08em;
    min-width: 24px;
    padding-top: 2px;
}

.n-flow-step strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.n-flow-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pricing terminal */
.n-pricing-section {
    min-height: auto;
    padding: 100px 24px;
}

.n-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
    border: 1px solid var(--n-line);
}

.n-pricing-row {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 24px;
    align-items: start;
    padding: 28px 24px;
    border-bottom: 1px solid var(--n-line);
    background: rgba(11, 14, 20, 0.3);
    transition: background 0.2s ease;
}

.n-pricing-row:last-child {
    border-bottom: none;
}

.n-pricing-row.is-featured {
    border-left: 2px solid var(--n-accent);
    background: rgba(18, 24, 38, 0.5);
}

.n-pricing-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.n-pricing-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.n-pricing-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--n-accent);
}

.n-pricing-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
}

.n-pricing-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.n-pricing-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.n-pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.n-pricing-features li {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.n-pricing-features li::before {
    content: "→ ";
    color: rgba(124, 92, 255, 0.6);
}

.n-pricing-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 160px;
}

.n-pricing-action .button {
    white-space: nowrap;
}

.feature-soon {
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-left: 6px;
    opacity: 0.7;
}

/* FAQ terminal */
.n-faq-section {
    min-height: auto;
    padding: 80px 24px 100px;
}

.n-faq-list {
    margin-top: 40px;
    border-top: 1px solid var(--n-line);
}

.n-faq-item {
    border-bottom: 1px solid var(--n-line);
}

.n-faq-item summary {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 18px 32px 18px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    line-height: 1.4;
}

.n-faq-item summary::-webkit-details-marker {
    display: none;
}

.n-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-secondary);
}

.n-faq-item[open] summary::after {
    content: "−";
}

.n-faq-item p {
    padding: 0 0 18px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 68ch;
}

/* CTA climax */
.n-cta-inner {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.n-cta-signal {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--n-accent);
    box-shadow: 0 0 24px rgba(124, 92, 255, 0.8), 0 0 48px rgba(124, 92, 255, 0.3);
    margin: 0 auto 32px;
    animation: n-signal-pulse 3s ease-in-out infinite;
}

@keyframes n-signal-pulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.n-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.n-cta-sub {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.n-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.n-cta-ghost {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.n-cta-ghost:hover {
    color: var(--text-primary);
}

/* Mobile sticky CTA - terminal bar */
.narrative-landing .mobile-sticky-cta {
    background: rgba(5, 5, 7, 0.96);
    border-top: 1px solid var(--n-line);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    backdrop-filter: blur(12px);
}

.narrative-landing .mobile-sticky-cta .button {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

/* Scroll reveal */
.narrative-landing .animate-on-scroll,
.narrative-landing .n-reveal-stagger > * {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.98);
    filter: blur(6px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.65s ease;
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform, filter;
}

.narrative-landing .animate-on-scroll[data-reveal="left"] {
    transform: translate3d(-36px, 16px, 0) scale(0.98);
}

.narrative-landing .animate-on-scroll[data-reveal="right"] {
    transform: translate3d(36px, 16px, 0) scale(0.98);
}

.narrative-landing .animate-on-scroll[data-reveal="scale"] {
    transform: translate3d(0, 12px, 0) scale(0.94);
    filter: blur(10px);
}

.narrative-landing .animate-on-scroll[data-reveal="fade"] {
    transform: translate3d(0, 20px, 0) scale(1);
    filter: blur(8px);
}

.narrative-landing .animate-on-scroll.visible,
.narrative-landing .n-reveal-stagger.visible > * {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.narrative-landing .n-scene-panel.animate-on-scroll.visible {
    transition-duration: 0.85s;
}

.narrative-landing .n-flow-steps .n-flow-step {
    opacity: 0;
    transform: translate3d(-14px, 0, 0);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(0.12s + var(--step-i, 0) * 0.08s);
}

.narrative-landing .animate-on-scroll.visible .n-flow-step {
    opacity: 1;
    transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .narrative-landing .animate-on-scroll,
    .narrative-landing .n-reveal-stagger > *,
    .narrative-canvas {
        transition: none !important;
        animation: none !important;
    }

    .narrative-landing .animate-on-scroll,
    .narrative-landing .n-reveal-stagger > *,
    .narrative-landing .n-flow-steps .n-flow-step {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .owl-eye::after,
    .n-cta-signal,
    .n-scene-pulse-ring {
        animation: none;
    }

    .n-scene-panel .n-scene-draw {
        stroke-dashoffset: 0;
    }

    .n-scene-cluster,
    .n-scene-flow-step,
    .n-scene-cluster-group {
        opacity: 1;
        transform: none;
    }

    .n-logo-marquee__track {
        animation: none;
        will-change: auto;
    }

    .n-logo-marquee__viewport {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
        scrollbar-width: none;
    }

    .n-logo-marquee__viewport::-webkit-scrollbar {
        display: none;
    }

    .n-logo-marquee__group[aria-hidden="true"] {
        display: none;
    }

    .n-logo-marquee__group {
        padding-right: 0;
    }
}

/* Responsive */
@media (max-width: 980px) {
    .n-split,
    .n-trust-grid,
    .n-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .n-split-reverse {
        direction: ltr;
    }

    .n-hero-copy {
        max-width: none;
    }

    .n-hero-title {
        max-width: none;
    }

    .n-scene-panel {
        min-height: 240px;
    }

    .n-pricing-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .n-pricing-action {
        align-items: flex-start;
    }

    .narrative-section {
        min-height: auto;
        padding: 100px 20px 64px;
    }

    .n-hero-section {
        min-height: 100svh;
        min-height: 100dvh;
        padding: clamp(88px, 10vh, 112px) 20px clamp(56px, 6vh, 72px);
    }
}

@media (max-width: 768px) {
    body.home-nav-open {
        overflow: hidden;
    }

    body.home-nav-open .public-shell > *:not(.home-nav):not(.n-cursor) {
        pointer-events: none;
    }

    .narrative-landing {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }

    .narrative-landing:has(.nav-links.mobile-open) .mobile-sticky-cta,
    body.home-nav-open .narrative-landing .mobile-sticky-cta {
        display: none;
    }

    #top .narrative-canvas {
        display: none;
    }

    .n-scene-panel .narrative-canvas {
        display: none;
    }

    .n-scene-panel.visible .n-scene-draw {
        animation-duration: 1.4s;
    }

    .n-hero-section {
        min-height: 100svh;
        min-height: 100dvh;
        padding: calc(80px + env(safe-area-inset-top, 0px)) 18px clamp(48px, 6vh, 64px);
    }

    .narrative-section {
        padding: 72px 18px 48px;
        scroll-margin-top: 76px;
    }

    .narrative-section.is-breath {
        padding: 56px 18px;
    }

    .n-quote-section {
        padding: 64px 18px;
    }

    .n-pricing-section {
        padding: 72px 18px;
    }

    .n-faq-section {
        padding: 64px 18px 88px;
    }

    .n-hero-title,
    .n-title,
    .n-title-wide {
        max-width: none;
    }

    .n-subtitle,
    .n-faq-item p {
        max-width: none;
    }

    .n-quote {
        max-width: none;
        font-size: clamp(1.25rem, 5.5vw, 1.65rem);
    }

    .n-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .n-actions .button {
        width: 100%;
        justify-content: center;
    }

    .n-pricing-action .button {
        width: 100%;
    }

    .n-cta-actions .button-primary {
        width: 100%;
        max-width: 320px;
    }

    .n-cta-ghost {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 8px 12px;
    }

    .n-faq-item summary {
        padding: 14px 28px 14px 0;
        font-size: 0.92rem;
    }

    /* Reveal mais leve — menos blur/jank em telas pequenas */
    .narrative-landing .animate-on-scroll,
    .narrative-landing .n-reveal-stagger > * {
        filter: none;
        transform: translate3d(0, 16px, 0);
    }

    .narrative-landing .animate-on-scroll[data-reveal="left"],
    .narrative-landing .animate-on-scroll[data-reveal="right"],
    .narrative-landing .animate-on-scroll[data-reveal="scale"],
    .narrative-landing .animate-on-scroll[data-reveal="fade"] {
        transform: translate3d(0, 16px, 0);
    }

    .n-scene-panel {
        min-height: 200px;
    }

    .n-scene-art {
        padding: 20px 16px;
    }
}

@media (max-width: 420px) {
    .n-title {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }

    .n-hero-title {
        font-size: clamp(2.1rem, 10vw, 2.65rem);
    }

    .n-trust-row {
        gap: 6px 8px;
    }

    .n-trust-chip {
        font-size: 0.68rem;
        padding: 3px 8px;
    }

    .n-outcomes-list li {
        font-size: 0.74rem;
    }
}
