/* =========================================
   Novalia — Landing
   Apple-minimal · Light · Single-accent
   2026-04-21
   ========================================= */

:root {
    /* Surfaces */
    --nv-bg:           #FFFFFF;
    --nv-bg-soft:      #F5F5F7;
    --nv-bg-card:      #FFFFFF;
    --nv-bg-contrast:  #0A0A0C;

    /* Text */
    --nv-text:         #0A0A0C;
    --nv-text-muted:   #6E6E73;
    --nv-text-subtle:  #86868B;
    --nv-text-inv:     #F5F5F7;

    /* Single accent */
    --nv-accent:       #0066CC;
    --nv-accent-hover: #0051A3;
    --nv-accent-soft:  rgba(0, 102, 204, 0.08);

    /* Borders */
    --nv-border:       rgba(10, 10, 12, 0.08);
    --nv-border-strong: rgba(10, 10, 12, 0.16);

    /* Sizing */
    --nv-radius:       12px;
    --nv-radius-lg:    20px;
    --nv-radius-xl:    28px;
    --nv-max-w:        1200px;

    /* Shadows — very subtle, Apple-style */
    --nv-shadow-xs:    0 1px 2px rgba(0,0,0,0.04);
    --nv-shadow-sm:    0 4px 16px rgba(0,0,0,0.06);
    --nv-shadow-md:    0 12px 40px rgba(0,0,0,0.08);
    --nv-shadow-lg:    0 24px 80px rgba(0,0,0,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    background: var(--nv-bg);
    color: var(--nv-text);
    font-size: 17px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: 'ss01', 'cv11';
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =========================================
   CONTAINER & SECTIONS
   ========================================= */
.nv-container {
    width: 100%;
    max-width: var(--nv-max-w);
    margin: 0 auto;
    padding: 0 32px;
}

.nv-container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 720px) {
    .nv-container, .nv-container-wide { padding: 0 24px; }
}

.nv-section {
    padding: 140px 0;
    position: relative;
}

.nv-section-dark {
    background: var(--nv-bg-contrast);
    color: var(--nv-text-inv);
}

.nv-section-soft {
    background: var(--nv-bg-soft);
}

@media (max-width: 720px) {
    .nv-section { padding: 96px 0; }
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.nv-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nv-accent);
    letter-spacing: -0.005em;
    margin-bottom: 18px;
}

.nv-section-dark .nv-eyebrow { color: #4A9EFF; }

.nv-display {
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: var(--nv-text);
}

.nv-section-dark .nv-display { color: var(--nv-text-inv); }

.nv-h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--nv-text);
}

.nv-section-dark .nv-h2 { color: var(--nv-text-inv); }

.nv-lead {
    font-size: clamp(1.125rem, 1.75vw, 1.375rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--nv-text-muted);
    letter-spacing: -0.005em;
    max-width: 620px;
}

.nv-section-dark .nv-lead { color: rgba(245, 245, 247, 0.72); }

.nv-body {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: var(--nv-text-muted);
}

/* =========================================
   NAV (minimal)
   ========================================= */
.nv-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.nv-nav.scrolled {
    border-bottom-color: var(--nv-border);
    background: rgba(255, 255, 255, 0.88);
}

.nv-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.015em;
    color: var(--nv-text);
}

.nv-logo img {
    width: 22px; height: 22px;
    border-radius: 5px;
}

.nv-nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nv-nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--nv-text);
    letter-spacing: -0.005em;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.nv-nav-link:hover { opacity: 1; }

@media (max-width: 720px) {
    .nv-nav { padding: 0 20px; }
    .nv-nav-actions { gap: 16px; }
    .nv-nav-link:not(:last-child) { display: none; }
}

/* =========================================
   BUTTONS — minimal, Apple-style
   ========================================= */
.nv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 22px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 980px; /* pill */
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: -0.005em;
    line-height: 1.2;
}

.nv-btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.nv-btn-lg { padding: 14px 28px; font-size: 1.0625rem; }

.nv-btn-primary {
    background: var(--nv-accent);
    color: white;
}
.nv-btn-primary:hover {
    background: var(--nv-accent-hover);
}

.nv-btn-ghost {
    background: transparent;
    color: var(--nv-text);
    border-color: var(--nv-border-strong);
}
.nv-btn-ghost:hover {
    background: var(--nv-bg-soft);
    border-color: var(--nv-text-subtle);
}

.nv-section-dark .nv-btn-ghost {
    color: var(--nv-text-inv);
    border-color: rgba(245, 245, 247, 0.3);
}
.nv-section-dark .nv-btn-ghost:hover {
    background: rgba(245, 245, 247, 0.1);
}

/* Text-link CTA (most Apple-esque) */
.nv-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--nv-accent);
    font-size: 1.0625rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    transition: gap 0.2s;
}
.nv-link:hover { gap: 8px; }

.nv-section-dark .nv-link { color: #4A9EFF; }

/* =========================================
   HERO
   ========================================= */
.nv-hero {
    position: relative;
    padding: 160px 32px 80px;
    overflow: hidden;
    isolation: isolate;
}

.nv-hero-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.nv-hero-kicker {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--nv-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.nv-hero-title {
    font-size: clamp(2.75rem, 7.5vw, 6.5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin: 0 auto 20px;
    color: var(--nv-text);
    max-width: 18ch;
}

.nv-hero-title-accent {
    color: var(--nv-accent);
}

.nv-hero-sub {
    font-size: clamp(1.125rem, 1.75vw, 1.5rem);
    font-weight: 400;
    line-height: 1.45;
    color: var(--nv-text-muted);
    letter-spacing: -0.01em;
    max-width: 680px;
    margin: 0 auto 40px;
}

.nv-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.nv-hero-fineprint {
    font-size: 0.875rem;
    color: var(--nv-text-subtle);
    letter-spacing: -0.005em;
}

/* Floating hero product card */
.nv-hero-showcase {
    margin: 80px auto 0;
    max-width: 640px;
    padding: 32px;
    background: var(--nv-bg-card);
    border: 1px solid var(--nv-border);
    border-radius: var(--nv-radius-xl);
    box-shadow: var(--nv-shadow-lg);
    position: relative;
    overflow: hidden;
}

.nv-showcase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.nv-showcase-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--nv-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nv-showcase-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--nv-accent-soft);
    color: var(--nv-accent);
    letter-spacing: -0.005em;
}

.nv-showcase-district {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--nv-text);
    letter-spacing: -0.015em;
}

.nv-showcase-address {
    font-size: 0.875rem;
    color: var(--nv-text-muted);
    margin-bottom: 28px;
}

.nv-showcase-metric {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.nv-showcase-big {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--nv-accent);
    letter-spacing: -0.04em;
}

.nv-showcase-scale {
    font-size: 1.125rem;
    color: var(--nv-text-muted);
    font-weight: 500;
}

.nv-showcase-bar {
    width: 100%;
    height: 6px;
    background: var(--nv-border);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 14px;
}

.nv-showcase-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--nv-accent) 0%, #4A9EFF 100%);
    border-radius: 100px;
    transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nv-showcase-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--nv-text-subtle);
    letter-spacing: -0.005em;
}

/* Subtle hero background map */
#hero-map {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.35;
    background: radial-gradient(ellipse at center, transparent 30%, var(--nv-bg) 85%);
    pointer-events: none;
}

#hero-map .leaflet-container {
    background: transparent !important;
}

/* =========================================
   SECTION — FEATURE SPLIT (Oportunidade)
   ========================================= */
.nv-feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

@media (max-width: 960px) {
    .nv-feature-split { grid-template-columns: 1fr; gap: 56px; }
}

.nv-feature-text .nv-eyebrow { margin-bottom: 20px; }

.nv-feature-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--nv-text);
}

.nv-feature-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--nv-text-muted);
    margin-bottom: 28px;
    max-width: 480px;
}

/* Mock product card — opportunity index */
.nv-mock-card {
    background: var(--nv-bg-card);
    border: 1px solid var(--nv-border);
    border-radius: var(--nv-radius-xl);
    padding: 36px;
    box-shadow: var(--nv-shadow-md);
    position: relative;
    overflow: hidden;
}

.nv-mock-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nv-mock-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 14px 16px;
    border-radius: var(--nv-radius);
    background: var(--nv-bg-soft);
    transition: background 0.2s;
}

.nv-mock-row.is-hot {
    background: var(--nv-accent-soft);
    border: 1px solid rgba(0, 102, 204, 0.15);
}

.nv-mock-row-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--nv-text);
    letter-spacing: -0.01em;
}

.nv-mock-row-score {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nv-mock-row-bar {
    width: 80px;
    height: 4px;
    background: var(--nv-border);
    border-radius: 100px;
    overflow: hidden;
}

.nv-mock-row-bar-fill {
    height: 100%;
    background: var(--nv-text-subtle);
    border-radius: 100px;
}

.nv-mock-row.is-hot .nv-mock-row-bar-fill {
    background: var(--nv-accent);
}

.nv-mock-row-val {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--nv-text);
    letter-spacing: -0.005em;
    min-width: 36px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.nv-mock-row.is-hot .nv-mock-row-val {
    color: var(--nv-accent);
}

/* =========================================
   SECTION — 6 ISCAS (the hooks)
   ========================================= */
.nv-section-head {
    max-width: 780px;
    margin: 0 auto 72px;
    text-align: center;
}

.nv-iscas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 960px) {
    .nv-iscas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .nv-iscas-grid { grid-template-columns: 1fr; }
}

.nv-isca {
    position: relative;
    background: var(--nv-bg-card);
    border: 1px solid var(--nv-border);
    border-radius: var(--nv-radius-lg);
    padding: 32px 28px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.nv-isca:hover {
    transform: translateY(-3px);
    border-color: var(--nv-border-strong);
    box-shadow: var(--nv-shadow-md);
}

.nv-isca-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.nv-isca-name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--nv-text);
    letter-spacing: -0.01em;
    flex: 1;
}

.nv-isca-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    letter-spacing: -0.005em;
    white-space: nowrap;
}

.nv-isca-badge-free {
    background: rgba(52, 199, 89, 0.1);
    color: #248A3D;
}

.nv-isca-badge-premium {
    background: var(--nv-bg-contrast);
    color: var(--nv-text-inv);
}

.nv-isca-benefit {
    font-size: 0.9375rem;
    color: var(--nv-text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
    flex: 1;
}

.nv-isca-preview {
    position: relative;
    padding: 16px;
    background: var(--nv-bg-soft);
    border-radius: var(--nv-radius);
    min-height: 72px;
    display: flex;
    align-items: center;
}

.nv-isca-preview-value {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--nv-text);
    line-height: 1;
}
.nv-isca-preview-unit {
    font-size: 0.9375rem;
    color: var(--nv-text-muted);
    margin-left: 6px;
    font-weight: 500;
}
.nv-isca-preview-label {
    font-size: 0.75rem;
    color: var(--nv-text-subtle);
    letter-spacing: -0.005em;
    margin-top: 4px;
}

/* Landing iscas — valores mostrados abertamente (chamariz/FOMO).
   O bloqueio visual real dos Premium acontece no dashboard (Fase B), não aqui.
   O badge "Premium" no card head já sinaliza que o indicador é pago. */
.nv-isca-lock {
    display: none;  /* overlay cadeado desligado na landing */
}

/* =========================================
   SECTION — PROPERTY PROFILE DEMO (dark)
   ========================================= */
.nv-demo-wrap {
    max-width: 860px;
    margin: 56px auto 0;
}

.nv-demo-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(245, 245, 247, 0.08);
    border: 1px solid rgba(245, 245, 247, 0.18);
    border-radius: 14px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.nv-demo-search:focus-within { border-color: rgba(245, 245, 247, 0.35); }

.nv-demo-search svg {
    width: 18px; height: 18px;
    color: rgba(245, 245, 247, 0.5);
    flex-shrink: 0;
}

.nv-demo-input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--nv-text-inv);
    font-family: inherit;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.nv-demo-input::placeholder { color: rgba(245, 245, 247, 0.4); }

.nv-demo-result {
    background: rgba(245, 245, 247, 0.04);
    border: 1px solid rgba(245, 245, 247, 0.12);
    border-radius: var(--nv-radius-lg);
    padding: 28px;
}

.nv-demo-address {
    font-size: 0.875rem;
    color: rgba(245, 245, 247, 0.6);
    letter-spacing: -0.005em;
    margin-bottom: 6px;
}

.nv-demo-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nv-text-inv);
    letter-spacing: -0.015em;
    margin-bottom: 24px;
}

.nv-demo-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(245, 245, 247, 0.1);
}

.nv-demo-tx {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(245, 245, 247, 0.08);
    font-size: 0.9375rem;
    letter-spacing: -0.005em;
}

.nv-demo-tx-year {
    font-weight: 600;
    color: var(--nv-text-inv);
    font-variant-numeric: tabular-nums;
}

.nv-demo-tx-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(245, 245, 247, 0.1);
    color: rgba(245, 245, 247, 0.8);
}

.nv-demo-tx-value {
    color: var(--nv-text-inv);
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}

.nv-demo-tx-delta {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #30D158;
    font-variant-numeric: tabular-nums;
}

.nv-demo-tx-delta.is-neg { color: #FF6961; }

@media (max-width: 560px) {
    .nv-demo-tx { grid-template-columns: 60px 1fr auto; gap: 12px; font-size: 0.875rem; }
    .nv-demo-tx-tag { display: none; }
}

/* =========================================
   SECTION — PRICING
   ========================================= */
.nv-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .nv-pricing-grid { grid-template-columns: 1fr; }
}

.nv-plan {
    position: relative;
    background: var(--nv-bg-card);
    border: 1px solid var(--nv-border);
    border-radius: var(--nv-radius-xl);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
}

.nv-plan-featured {
    border-color: var(--nv-text);
    box-shadow: 0 0 0 2px var(--nv-text);
}

.nv-plan-tag {
    position: absolute;
    top: -12px;
    left: 36px;
    padding: 4px 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    background: var(--nv-text);
    color: var(--nv-text-inv);
    border-radius: 100px;
    letter-spacing: -0.005em;
}

.nv-plan-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nv-text-muted);
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.nv-plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.nv-plan-price-big {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--nv-text);
    line-height: 1;
}

.nv-plan-price-period {
    font-size: 1rem;
    color: var(--nv-text-muted);
}

.nv-plan-pitch {
    font-size: 0.9375rem;
    color: var(--nv-text-muted);
    margin-bottom: 28px;
    min-height: 40px;
}

.nv-plan-cta {
    margin-bottom: 28px;
    width: 100%;
    justify-content: center;
}

.nv-plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nv-plan-features li {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--nv-text);
    letter-spacing: -0.005em;
    line-height: 1.45;
}

.nv-plan-features li svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--nv-text);
}

.nv-plan-features li.is-muted {
    color: var(--nv-text-subtle);
}
.nv-plan-features li.is-muted svg {
    color: var(--nv-text-subtle);
}

/* =========================================
   FINAL CTA
   ========================================= */
.nv-final-cta {
    text-align: center;
    padding: 140px 32px;
}

.nv-final-cta .nv-display {
    max-width: 900px;
    margin: 0 auto 28px;
}

.nv-final-cta .nv-lead {
    margin: 0 auto 36px;
}

.nv-final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================================
   FOOTER
   ========================================= */
.nv-footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--nv-border);
    background: var(--nv-bg);
}

.nv-footer .nv-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.nv-footer-left {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    color: var(--nv-text-subtle);
    font-size: 0.8125rem;
    letter-spacing: -0.005em;
}

.nv-footer-left .nv-logo { color: var(--nv-text); font-size: 0.875rem; }
.nv-footer-left .nv-logo img { width: 18px; height: 18px; }

.nv-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.nv-footer-links a {
    font-size: 0.8125rem;
    color: var(--nv-text-muted);
    letter-spacing: -0.005em;
}
.nv-footer-links a:hover { color: var(--nv-text); }

.nv-footer-fine {
    margin: 28px auto 0;
    max-width: var(--nv-max-w);
    padding: 20px 32px 0;
    border-top: 1px solid var(--nv-border);
    font-size: 0.75rem;
    color: var(--nv-text-subtle);
    line-height: 1.55;
    letter-spacing: -0.005em;
}

/* =========================================
   REVEAL / ANIMATIONS
   ========================================= */
@keyframes nvFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nv-hero-inner > * {
    animation: nvFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.nv-hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.nv-hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
.nv-hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
.nv-hero-inner > *:nth-child(4) { animation-delay: 0.35s; }
.nv-hero-inner > *:nth-child(5) { animation-delay: 0.45s; }

.nv-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
