/* ================================================================
   EVERVAULT-STYLE SECTIONS
   Below-hero sections matching Evervault's visual patterns
   adapted for Matrix Mastery Group brand
   ================================================================ */

/* --- Widen page container to match Evervault's 1200px --- */
.ev-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ln-page-padding);
}

/* --- Section base --- */
.ev-sect {
    padding: 120px 0;
    position: relative;
}
.ev-sect + .ev-sect { padding-top: 0; }

/* --- Section header (centered) --- */
.ev-sect-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}
.ev-sect-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: var(--ln-weight-medium);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ln-accent-teal);
    margin-bottom: 20px;
}
.ev-sect-eyebrow--green { color: #22B285; }
.ev-sect-title {
    font-size: 56px;
    font-weight: var(--ln-weight-book);
    line-height: 1.1;
    letter-spacing: var(--ln-tracking-tight);
    color: var(--ln-text-primary);
}
.ev-sect-desc {
    font-size: 18px;
    font-weight: var(--ln-weight-book);
    color: var(--ln-text-secondary);
    max-width: 640px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* --- Gradient divider --- */
.ev-divider {
    height: 1px;
    border: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    margin: 0;
}

/* --- Evervault-style cards (inset border, no CSS border) --- */
/* Scoped to .ev-page to avoid overriding hero .ev-card variants */
.ev-page .ev-card {
    background: rgba(255,255,255,0.03);
    border: none;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
    transition: box-shadow 0.25s ease;
}
.ev-page .ev-card:hover {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
/* Top shine on hover */
.ev-page .ev-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ev-page .ev-card:hover::before { opacity: 1; }

.ev-page .ev-card-title {
    font-size: 24px;
    font-weight: var(--ln-weight-medium);
    color: var(--ln-text-primary);
    margin-bottom: 12px;
    letter-spacing: var(--ln-tracking-tight);
}
.ev-page .ev-card-desc {
    font-size: 15px;
    font-weight: var(--ln-weight-regular);
    line-height: 1.6;
    color: var(--ln-text-secondary);
}
.ev-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: var(--ln-weight-medium);
    color: var(--ln-text-tertiary);
    margin-top: 20px;
    transition: color 0.15s ease;
}
.ev-card-link:hover { color: var(--ln-text-primary); }
.ev-card-link svg {
    width: 14px; height: 14px;
    transition: transform 0.2s ease;
}
.ev-card-link:hover svg { transform: translateX(3px); }

/* --- Logo bar (social proof) --- */
.ev-logo-bar {
    padding: 80px 0;
    text-align: center;
    position: relative;
}
.ev-logo-bar-heading {
    font-size: 16px;
    font-weight: var(--ln-weight-book);
    color: var(--ln-text-tertiary);
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.5;
}
.ev-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
}
.ev-logo-item {
    font-family: var(--ln-font-family);
    font-size: 15px;
    font-weight: var(--ln-weight-semibold);
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.ev-logo-item:hover { color: rgba(255,255,255,0.7); }

/* --- 8-tile solutions grid (4x2) --- */
.ev-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.ev-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 16px;
    background: rgba(255,255,255,0.02);
    text-align: center;
    transition: background 0.2s ease;
    cursor: default;
}
.ev-tile:hover { background: rgba(255,255,255,0.05); }
.ev-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--ln-text-secondary);
    font-size: 18px;
}
.ev-tile-label {
    font-size: 13px;
    font-weight: var(--ln-weight-medium);
    color: var(--ln-text-secondary);
}

/* --- 3-column feature row --- */
.ev-features-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
    z-index: 1;
}
.ev-feature {
    position: relative;
}
.ev-feature-eyebrow {
    font-size: 13px;
    font-weight: var(--ln-weight-medium);
    color: #22B285;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.ev-feature-title {
    font-size: 28px;
    font-weight: var(--ln-weight-book);
    line-height: 1.3;
    color: var(--ln-text-primary);
    letter-spacing: var(--ln-tracking-tight);
    margin-bottom: 16px;
}
.ev-feature-desc {
    font-size: 15px;
    font-weight: var(--ln-weight-regular);
    line-height: 1.6;
    color: var(--ln-text-secondary);
    margin-bottom: 20px;
}
.ev-feature-visual {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
    margin-bottom: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Core value prop (3 numbered items) --- */
.ev-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
    z-index: 1;
    margin-top: 64px;
}
.ev-pillar-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(34, 178, 133, 0.12);
    color: #22B285;
    font-size: 14px;
    font-weight: var(--ln-weight-semibold);
    margin-bottom: 16px;
}
.ev-pillar-title {
    font-size: 18px;
    font-weight: var(--ln-weight-medium);
    color: var(--ln-text-primary);
    margin-bottom: 12px;
}
.ev-pillar-desc {
    font-size: 15px;
    font-weight: var(--ln-weight-regular);
    line-height: 1.6;
    color: var(--ln-text-secondary);
}

/* --- Split layout (2 cols: text + visual) --- */
.ev-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ev-split-eyebrow {
    font-size: 13px;
    font-weight: var(--ln-weight-medium);
    color: #22B285;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.ev-split-title {
    font-size: 48px;
    font-weight: var(--ln-weight-book);
    line-height: 1.1;
    letter-spacing: var(--ln-tracking-tight);
    color: var(--ln-text-primary);
    margin-bottom: 20px;
}
.ev-split-desc {
    font-size: 16px;
    font-weight: var(--ln-weight-book);
    line-height: 1.6;
    color: var(--ln-text-secondary);
    margin-bottom: 40px;
}
.ev-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.ev-split-item-title {
    font-size: 15px;
    font-weight: var(--ln-weight-medium);
    color: var(--ln-text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ev-split-item-title svg {
    width: 16px; height: 16px;
    color: #22B285;
    flex-shrink: 0;
}
.ev-split-item-desc {
    font-size: 14px;
    font-weight: var(--ln-weight-regular);
    line-height: 1.5;
    color: var(--ln-text-tertiary);
}

/* Browser mockup */
.ev-browser {
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.06),
        0 20px 60px rgba(0,0,0,0.4);
    background: #0a0a14;
}
.ev-browser-bar {
    height: 36px;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ev-browser-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.ev-browser-body {
    padding: 32px;
    min-height: 280px;
}

/* --- Bento grid (asymmetric 6-cell) --- */
.ev-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.ev-bento-cell {
    padding: 40px;
    background: rgba(255,255,255,0.02);
    transition: background 0.2s ease;
}
.ev-bento-cell:hover { background: rgba(255,255,255,0.04); }
.ev-bento-icon {
    display: block;
    margin-bottom: 12px;
    opacity: 0.9;
}
.ev-bento-cell-title {
    font-size: 18px;
    font-weight: var(--ln-weight-medium);
    color: var(--ln-text-primary);
    margin-bottom: 8px;
}
.ev-bento-cell-desc {
    font-size: 14px;
    font-weight: var(--ln-weight-regular);
    line-height: 1.5;
    color: var(--ln-text-secondary);
}
.ev-bento-cell-visual {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
/* Wide cell spans 2 cols */
.ev-bento-wide { grid-column: span 2; }

/* --- Trust section --- */
.ev-trust {
    text-align: center;
    padding: 120px 0;
    position: relative;
}
.ev-trust-title {
    font-size: 56px;
    font-weight: var(--ln-weight-book);
    line-height: 1.1;
    letter-spacing: var(--ln-tracking-tight);
    color: var(--ln-text-primary);
    margin-bottom: 20px;
}
.ev-trust-desc {
    font-size: 18px;
    font-weight: var(--ln-weight-book);
    color: var(--ln-text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}
.ev-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}
.ev-trust-badge {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ln-text-secondary);
    font-size: 13px;
    font-weight: var(--ln-weight-semibold);
}
/* Testimonial card within trust */
.ev-trust-quote {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.ev-trust-quote-text {
    font-size: 16px;
    font-weight: var(--ln-weight-book);
    line-height: 1.6;
    color: var(--ln-text-secondary);
    font-style: italic;
    margin-bottom: 16px;
}
.ev-trust-quote-author {
    font-size: 14px;
    font-weight: var(--ln-weight-medium);
    color: var(--ln-text-tertiary);
}

/* --- Final CTA (Evervault-style with gradient glow) --- */
.ev-final-cta {
    text-align: center;
    padding: 120px 0;
    position: relative;
}
.ev-final-cta::before {
    content: '';
    position: absolute;
    bottom: -100px; left: 50%;
    transform: translateX(-50%);
    width: 120%;
    max-width: 1200px;
    height: 500px;
    background: radial-gradient(ellipse at 50% 80%, rgba(34, 178, 133, 0.3) 0%, rgba(34, 178, 133, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}
.ev-final-cta-title {
    font-size: 56px;
    font-weight: var(--ln-weight-book);
    line-height: 1.1;
    letter-spacing: var(--ln-tracking-tight);
    color: var(--ln-text-primary);
    max-width: 720px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}
.ev-final-cta-desc {
    font-size: 18px;
    font-weight: var(--ln-weight-book);
    color: var(--ln-text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.ev-final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.ev-cta-btn {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: var(--ln-weight-medium);
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}
.ev-cta-btn:hover { opacity: 0.85; }
.ev-cta-btn:active { transform: scale(0.97); }
.ev-cta-btn--primary {
    background: #22B285;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.ev-cta-btn--secondary {
    background: rgba(255,255,255,0.06);
    color: var(--ln-text-primary);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

/* --- Section accent glow (green, matching Evervault's purple) --- */
.ev-glow {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    max-width: 1600px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(ellipse 70% 60% at 50% 40%,
        rgba(34, 178, 133, 0.35) 0%,
        rgba(34, 178, 133, 0.15) 30%,
        rgba(34, 178, 133, 0.05) 55%,
        transparent 75%);
    pointer-events: none;
    z-index: 0;
}
/* Stronger glow variant */
.ev-glow--strong {
    height: 1000px;
    background: radial-gradient(ellipse 70% 60% at 50% 40%,
        rgba(34, 178, 133, 0.45) 0%,
        rgba(34, 178, 133, 0.2) 30%,
        rgba(34, 178, 133, 0.06) 55%,
        transparent 75%);
}

/* --- Stats row (Evervault-style) --- */
.ev-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 64px 0;
}
.ev-stat-number {
    font-size: 56px;
    font-weight: var(--ln-weight-book);
    letter-spacing: var(--ln-tracking-tight);
    font-family: var(--ln-font-mono);
    margin-bottom: 8px;
}
.ev-stat-label {
    font-size: 16px;
    font-weight: var(--ln-weight-book);
    color: var(--ln-text-secondary);
    line-height: 1.5;
}

/* ================================================================
   SECTION ANIMATIONS
   ================================================================ */

/* --- Pulsing credit card --- */
.ev-pulse-card-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ev-pulse-card {
    width: 260px;
    height: 160px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.1),
        0 10px 40px rgba(0,0,0,0.5),
        0 0 60px rgba(34,178,133,0.08);
    padding: 20px;
    position: relative;
    z-index: 2;
    animation: ev-card-float 4s ease-in-out infinite;
}
.ev-pulse-card-chip {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    background: linear-gradient(135deg, #c9a84c 0%, #f0d078 50%, #c9a84c 100%);
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}
.ev-pulse-card-number {
    font-size: 14px;
    font-family: var(--ln-font-mono, monospace);
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.ev-pulse-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ev-pulse-card-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ev-pulse-card-exp {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-family: var(--ln-font-mono, monospace);
}

/* Pulse rings emanating from card */
.ev-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 160px;
    border-radius: 14px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(34, 178, 133, 0.3);
    z-index: 1;
}
.ev-pulse-ring--1 {
    animation: ev-pulse-expand 3s ease-out infinite;
}
.ev-pulse-ring--2 {
    animation: ev-pulse-expand 3s ease-out infinite 1s;
}
.ev-pulse-ring--3 {
    animation: ev-pulse-expand 3s ease-out infinite 2s;
}

@keyframes ev-pulse-expand {
    0% {
        width: 260px; height: 160px;
        opacity: 0.5;
        border-color: rgba(34, 178, 133, 0.35);
    }
    100% {
        width: 420px; height: 300px;
        opacity: 0;
        border-color: rgba(34, 178, 133, 0);
    }
}
@keyframes ev-card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- Gyroscope / Orbit Ring --- */
.ev-gyro-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}
.ev-gyro-ring {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: ev-gyro-spin 12s linear infinite;
    transform-style: preserve-3d;
}
.ev-gyro-ring--1 {
    border: 1px solid rgba(34, 178, 133, 0.12);
    animation: ev-gyro-spin 12s linear infinite;
}
.ev-gyro-ring--2 {
    border: 1px solid rgba(34, 178, 133, 0.06);
    animation: ev-gyro-spin-reverse 16s linear infinite;
    transform: rotateX(60deg);
}
.ev-gyro-orb {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #22B285 0%, rgba(34, 178, 133, 0.4) 60%, transparent 100%);
    box-shadow: 0 0 12px rgba(34, 178, 133, 0.5), 0 0 24px rgba(34, 178, 133, 0.2);
    top: 50%;
    left: 50%;
    transform: rotate(var(--orb-angle)) translateX(138px) translateY(-50%);
}
.ev-gyro-orb--dim {
    width: 6px;
    height: 6px;
    opacity: 0.5;
    background: radial-gradient(circle, rgba(34, 178, 133, 0.8) 0%, rgba(34, 178, 133, 0.2) 60%, transparent 100%);
    box-shadow: 0 0 8px rgba(34, 178, 133, 0.3);
}
.ev-gyro-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 178, 133, 0.3) 0%, transparent 70%);
    box-shadow: 0 0 40px rgba(34, 178, 133, 0.2);
}

@keyframes ev-gyro-spin {
    from { transform: rotateX(70deg) rotateZ(0deg); }
    to { transform: rotateX(70deg) rotateZ(360deg); }
}
@keyframes ev-gyro-spin-reverse {
    from { transform: rotateX(70deg) rotateY(60deg) rotateZ(360deg); }
    to { transform: rotateX(70deg) rotateY(60deg) rotateZ(0deg); }
}

/* --- Terminal animation (bento) --- */
.ev-terminal {
    border-radius: 10px;
    overflow: hidden;
    background: #0c0c16;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
    font-family: var(--ln-font-mono, 'SF Mono', monospace);
    font-size: 12px;
}
.ev-terminal-bar {
    height: 28px;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ev-terminal-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.ev-terminal-body {
    padding: 16px;
    min-height: 140px;
    position: relative;
}
.ev-terminal-line {
    line-height: 1.8;
    opacity: 0;
    animation: ev-terminal-type 0.3s ease forwards;
    animation-delay: var(--line-delay);
}
.ev-terminal-cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    background: #22B285;
    animation: ev-cursor-blink 1s steps(1) infinite;
    margin-top: 4px;
    opacity: 0;
    animation: ev-terminal-type 0.1s ease forwards 2.8s, ev-cursor-blink 1s steps(1) infinite 2.8s;
}

@keyframes ev-terminal-type {
    to { opacity: 1; }
}
@keyframes ev-cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* --- Floating metrics (bento) --- */
.ev-metrics-wrap {
    position: relative;
    height: 120px;
    overflow: hidden;
}
.ev-metric-float {
    position: absolute;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
}
.ev-metric-float--1 {
    top: 8px; left: 12px;
    animation: ev-float-1 5s ease-in-out infinite;
}
.ev-metric-float--2 {
    top: 16px; right: 12px;
    animation: ev-float-2 6s ease-in-out infinite 0.5s;
}
.ev-metric-float--3 {
    bottom: 8px; left: 50%;
    transform: translateX(-50%);
    animation: ev-float-3 5.5s ease-in-out infinite 1s;
}
.ev-metric-val {
    font-size: 18px;
    font-weight: 500;
    color: #22B285;
    font-family: var(--ln-font-mono, monospace);
}
.ev-metric-label {
    font-size: 11px;
    color: var(--ln-text-tertiary);
    margin-top: 2px;
}

@keyframes ev-float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes ev-float-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes ev-float-3 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* --- Pillar orb pulse --- */
.ev-pillar-orb {
    position: relative;
}
.ev-pillar-orb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 20px rgba(34, 178, 133, 0.4), 0 0 40px rgba(34, 178, 133, 0.15);
    animation: ev-orb-pulse 3s ease-in-out infinite;
    animation-delay: var(--orb-delay, 0s);
    pointer-events: none;
}
@keyframes ev-orb-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.5); }
}

/* --- Gradient blob (animated) --- */
.ev-gradient-blob {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    max-width: 1600px;
    height: 1000px;
    pointer-events: none;
    z-index: 0;
    will-change: background;
}

/* --- Browser calc score transition --- */
#evCalcScore,
#evCalcRange {
    transition: opacity 0.4s ease;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .ev-sect-title { font-size: 44px; }
    .ev-split-title { font-size: 40px; }
    .ev-final-cta-title { font-size: 44px; }
    .ev-trust-title { font-size: 44px; }
    .ev-features-3 { gap: 32px; }
    .ev-feature-title { font-size: 24px; }
}

@media (max-width: 768px) {
    .ev-sect { padding: 80px 0; }
    .ev-sect-header { margin-bottom: 40px; }
    .ev-sect-title { font-size: 36px; }
    .ev-sect-desc { font-size: 16px; }

    .ev-grid-8 { grid-template-columns: repeat(2, 1fr); }
    .ev-features-3 { grid-template-columns: 1fr !important; gap: 48px !important; border-radius: 0 !important; box-shadow: none !important; overflow: visible !important; }
    .ev-pillars { grid-template-columns: 1fr !important; gap: 32px; }
    .ev-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ev-split-title { font-size: 32px; }
    .ev-split-grid { gap: 20px; }
    .ev-bento { grid-template-columns: 1fr; }
    .ev-bento-wide { grid-column: auto; }
    .ev-stats { grid-template-columns: 1fr; gap: 32px; }
    .ev-stat-number { font-size: 40px; }

    .ev-trust-title { font-size: 36px; }
    .ev-final-cta-title { font-size: 36px; }
    .ev-final-cta { padding: 80px 0; }
    .ev-final-cta-buttons { flex-direction: column; }
    .ev-cta-btn { width: 100%; justify-content: center; }

    .ev-card { padding: 28px; }
    .ev-bento-cell { padding: 28px; }

    .ev-logo-row { gap: 24px 32px; }
}
