/* ============================================================
   SECTION 2 — Feature Cards: Cinematic Vignettes
   ============================================================ */
.feature-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.demo-mini-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25,0.1,0.25,1);
}
.demo-mini-card:hover {
    transform: none !important;
    border-color: var(--border) !important;
}
.demo-mini-card:hover .mini-scene {
    transform: none !important;
}
.demo-mini-card {
    cursor: default;
}
.demo-mini-visual {
    padding: 16px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.demo-mini-title {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0 20px;
    margin: 0;
    color: var(--text-primary);
}
.demo-mini-desc {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    padding: 6px 20px 14px;
    margin: 0;
    line-height: 1.4;
}

/* Vignette: Script */
.vignette-script {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vignette-script-input {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.8rem;
    color: var(--text-primary);
    min-height: 20px;
    display: flex;
    align-items: center;
}
.vignette-cursor-char {
    animation: blink 1s step-end infinite;
    color: var(--accent);
}
.vignette-typed-text { color: var(--text-primary); }
.vignette-script-output {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.vignette-script-output.revealed { opacity: 1; }
.vignette-script-line {
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.vignette-script-line:nth-child(1) { width: 100%; }
.vignette-script-line:nth-child(2) { width: 85%; }
.vignette-script-line:nth-child(3) { width: 60%; }
.vignette-line-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(184,151,46,0.4), transparent);
    transform: translateX(-100%);
}
.vignette-script-line.sweep .vignette-line-glow {
    animation: golden-sweep 0.8s ease forwards;
}
@keyframes golden-sweep {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

/* Vignette: Cinema */
.vignette-cinema {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a0e08 0%, #2a1a0a 50%, #0d0d1a 100%);
}
.vignette-cinema-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.2) brightness(0.4);
    transition: filter 1.5s ease;
}
.vignette-cinema.sweep .vignette-cinema-img {
    filter: saturate(1) brightness(1);
}
.vignette-cinema-reveal {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(184,151,46,0.2), rgba(212,136,42,0.15), transparent);
    transform: translateX(-100%);
    opacity: 0;
}
.vignette-cinema.sweep .vignette-cinema-reveal {
    animation: cinema-light-sweep 1.5s ease forwards;
}
@keyframes cinema-light-sweep {
    0% { transform: translateX(-100%); opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* Vignette: Voice */
.vignette-voice {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    position: relative;
}
.vignette-voice-speaker {
    flex-shrink: 0;
    animation: speaker-breathe 2s ease-in-out infinite;
}
@keyframes speaker-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.vignette-sound-wave {
    opacity: 0.3;
    transform-origin: center;
}
.vignette-sw-1 { animation: voice-wave 1.5s ease-in-out infinite; }
.vignette-sw-2 { animation: voice-wave 1.5s ease-in-out infinite 0.3s; }
@keyframes voice-wave {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.7; }
}
.vignette-wave-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    height: 40px;
}
.vignette-wave-bars span {
    flex: 1;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.6;
    min-height: 4px;
    animation: voice-bar 1.2s ease-in-out infinite;
}
.vignette-wave-bars span:nth-child(1) { animation-delay: 0s; height: 30%; }
.vignette-wave-bars span:nth-child(2) { animation-delay: 0.1s; height: 50%; }
.vignette-wave-bars span:nth-child(3) { animation-delay: 0.2s; height: 70%; }
.vignette-wave-bars span:nth-child(4) { animation-delay: 0.15s; height: 90%; }
.vignette-wave-bars span:nth-child(5) { animation-delay: 0.05s; height: 60%; }
.vignette-wave-bars span:nth-child(6) { animation-delay: 0.25s; height: 80%; }
.vignette-wave-bars span:nth-child(7) { animation-delay: 0.1s; height: 45%; }
.vignette-wave-bars span:nth-child(8) { animation-delay: 0.3s; height: 95%; }
.vignette-wave-bars span:nth-child(9) { animation-delay: 0.18s; height: 55%; }
.vignette-wave-bars span:nth-child(10) { animation-delay: 0.08s; height: 75%; }
.vignette-wave-bars span:nth-child(11) { animation-delay: 0.22s; height: 40%; }
.vignette-wave-bars span:nth-child(12) { animation-delay: 0.12s; height: 65%; }
.vignette-wave-bars span:nth-child(13) { animation-delay: 0.28s; height: 50%; }
.vignette-wave-bars span:nth-child(14) { animation-delay: 0.06s; height: 85%; }
.vignette-wave-bars span:nth-child(15) { animation-delay: 0.2s; height: 35%; }
.vignette-wave-bars span:nth-child(16) { animation-delay: 0.14s; height: 60%; }
@keyframes voice-bar {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}
.vignette-voice-glow {
    position: absolute;
    left: -10px; top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 30px;
    background: radial-gradient(ellipse at left center, rgba(184,151,46,0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* Vignette: Music */
.vignette-music {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100px;
}
.vignette-music-notes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.vignette-note {
    position: absolute;
    opacity: 0;
}
.vignette-note.n1 { left: 20%; bottom: 10%; animation: note-float 3s ease-out infinite; }
.vignette-note.n2 { left: 55%; bottom: 5%; animation: note-float 3.5s ease-out infinite 0.5s; }
.vignette-note.n3 { left: 75%; bottom: 15%; animation: note-float 4s ease-out infinite 1s; }
@keyframes note-float {
    0% { opacity: 0; transform: translateY(0) rotate(0deg); }
    20% { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(-80px) rotate(15deg); }
}
.vignette-music-eq {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 50px;
    z-index: 1;
}
.vignette-music-eq span {
    width: 6px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.7;
    animation: music-crescendo 2s ease-in-out infinite;
}
.vignette-music-eq span:nth-child(1) { height: 15%; animation-delay: 0s; }
.vignette-music-eq span:nth-child(2) { height: 25%; animation-delay: 0.1s; }
.vignette-music-eq span:nth-child(3) { height: 35%; animation-delay: 0.2s; }
.vignette-music-eq span:nth-child(4) { height: 50%; animation-delay: 0.3s; }
.vignette-music-eq span:nth-child(5) { height: 65%; animation-delay: 0.4s; }
.vignette-music-eq span:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.vignette-music-eq span:nth-child(7) { height: 95%; animation-delay: 0.6s; }
.vignette-music-eq span:nth-child(8) { height: 80%; animation-delay: 0.7s; }
.vignette-music-eq span:nth-child(9) { height: 60%; animation-delay: 0.8s; }
.vignette-music-eq span:nth-child(10) { height: 40%; animation-delay: 0.9s; }
.vignette-music-eq span:nth-child(11) { height: 25%; animation-delay: 1s; }
.vignette-music-eq span:nth-child(12) { height: 15%; animation-delay: 1.1s; }
@keyframes music-crescendo {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* Vignette: Control */
.vignette-control {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    perspective: 600px;
}
.vignette-scene-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: transform 0.8s cubic-bezier(0.25,0.1,0.25,1);
}
.vc-num {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(184,151,46,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 600;
}

/* Vignette: Platform */
.vignette-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.vignette-ratio-frame {
    border: 2px solid var(--accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 1.2s cubic-bezier(0.25,0.1,0.25,1);
    width: 120px;
    height: 68px;
    position: relative;
}
.vignette-ratio-inner {
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, rgba(184,151,46,0.1), rgba(184,151,46,0.05));
    border-radius: 4px;
}
.vignette-platform-name {
    font-size: 0.72rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: opacity 0.4s;
}

/* ── Pipeline optional boxes (Assets / Brand Kit) ── */
.pipeline-input {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pipeline-optional-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border: 1px dashed var(--color-gold-faint);
    border-radius: var(--radius-md);
    background: rgba(184, 151, 46, 0.03);
}
.pipeline-optional-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.pipeline-optional-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 500;
}
.pipeline-vconnector {
    width: 1px;
    height: 12px;
    background: var(--color-gold-faint);
}
.pipeline-idea-box {
    width: 100%;
}

/* ── Feature grid 8-card responsive ── */
@media (max-width: 1024px) { .feature-grid-8 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feature-grid-8 { grid-template-columns: 1fr; } }

/* ── Vignette: Asset Libraries ── */
.vignette-assets {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vignette-asset-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.vignette-asset-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.vignette-asset-item.visible { opacity: 1; transform: translateY(0); }
.vignette-asset-item span {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Vignette: Brand Kits ── */
.vignette-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.vignette-brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(184, 151, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vignette-brand-colors {
    display: flex;
    gap: 6px;
}
.vb-swatch {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.vb-swatch.visible { opacity: 1; transform: scale(1); }
.vignette-brand-font {
    display: flex;
    align-items: center;
    gap: 6px;
}
.vb-font-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
}
.vb-font-name {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ── Vignette: Export for Pro Editing ── */
.vignette-export {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vignette-export-tracks {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ve-track {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 16px;
}
.ve-clip {
    flex: 1;
    height: 100%;
    background: rgba(184, 151, 46, 0.2);
    border: 1px solid rgba(184, 151, 46, 0.3);
    border-radius: 3px;
    font-size: 0.55rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.ve-wave {
    flex: 1;
    height: 8px;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.15) 0px, rgba(255,255,255,0.05) 2px, rgba(255,255,255,0.15) 4px);
    border-radius: 2px;
}
.ve-wave-music {
    background: repeating-linear-gradient(90deg, rgba(184,151,46,0.15) 0px, rgba(184,151,46,0.05) 2px, rgba(184,151,46,0.15) 4px);
}
.vignette-export-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.ve-editor-name {
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 600;
    transition: opacity 0.3s;
}

/* ── Power Features Section ── */
.power-section .tool-showcase {
    margin-bottom: var(--space-4xl);
}
.power-section .tool-showcase:last-child {
    margin-bottom: 0;
}
.power-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(184, 151, 46, 0.08);
    border: 1px solid var(--color-gold-faint);
    border-radius: 20px;
    margin-bottom: var(--space-lg);
}
.power-mock {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    overflow: hidden;
}

/* Power: Asset Libraries mock */
.power-assets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: var(--space-md);
}
.power-asset-file {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pa-thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pa-name {
    font-size: 0.7rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.power-assets-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: var(--space-md) 0;
}
.power-assets-engine {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 500;
}

/* Power: Brand Kit mock */
.power-brand-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-md);
}
.power-brand-logo-circle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), #9a7a26);
}
.power-brand-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}
.power-brand-section {
    margin-bottom: var(--space-sm);
}
.power-brand-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}
.power-brand-colors {
    display: flex;
    gap: 6px;
}
.pb-swatch {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}
.pb-swatch:hover { transform: scale(1.15); }
.power-brand-fonts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pb-font {
    font-size: 0.78rem;
    color: var(--text-secondary);
    padding: 4px 8px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
}
.power-brand-media {
    display: flex;
    gap: 8px;
}
.pb-media-slot {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    color: var(--text-secondary);
}
.power-brand-voice {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* Power: Export mock */
.power-export-timeline {
    margin-bottom: var(--space-md);
}
.pe-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.pe-tracks {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pe-track {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 22px;
    position: relative;
}
.pe-clip {
    flex: 1;
    height: 100%;
    background: rgba(184, 151, 46, 0.15);
    border: 1px solid rgba(184, 151, 46, 0.25);
    border-radius: 4px;
    font-size: 0.6rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.pe-clip.pc-1 { flex: 1.2; }
.pe-clip.pc-2 { flex: 0.8; }
.pe-clip.pc-3 { flex: 1; }
.pe-waveform {
    flex: 1;
    height: 10px;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0px, rgba(255,255,255,0.04) 2px, rgba(255,255,255,0.12) 4px);
    border-radius: 3px;
}
.pe-waveform-music {
    background: repeating-linear-gradient(90deg, rgba(184,151,46,0.12) 0px, rgba(184,151,46,0.04) 2px, rgba(184,151,46,0.12) 4px);
}
.pe-track-label {
    position: absolute;
    right: 6px;
    font-size: 0.55rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.power-export-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}
.power-export-dl {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
}
.power-export-editors {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: var(--text-muted);
}
.pe-editor-name {
    color: var(--text-secondary);
    font-weight: 500;
}
.pe-editor-sep { opacity: 0.4; }

/* ============================================================
   SECTION 3 — Transformation: The Light Switch
   ============================================================ */
.transform-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}
.transform-col {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.transform-col.visible {
    opacity: 1;
    transform: translateX(0);
}
.transform-after {
    transform: translateX(40px);
}
.transform-after.visible {
    transform: translateX(0);
}
.transform-before {
    border-color: rgba(255,82,82,0.15);
}
.transform-after {
    border-color: rgba(184,151,46,0.2);
}
.transform-label {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,82,82,0.7);
    margin-bottom: 20px;
}
.after-label {
    color: var(--accent);
}
.transform-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.transform-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-primary);
}
.transform-list li strong {
    display: block;
    font-weight: 500;
}
.transform-icon-wrap {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.before-icon-wrap {
    background: rgba(255,82,82,0.08);
    color: rgba(255,82,82,0.6);
}
.before-icon-wrap .transform-svg-icon {
    stroke: rgba(255,82,82,0.6);
}
.after-icon-wrap {
    background: rgba(184,151,46,0.1);
    color: var(--accent);
}
.after-icon-wrap .transform-svg-icon {
    stroke: var(--accent);
}

/* Animated SVG icons */
.before-icon-wrap .transform-svg-icon {
    animation: icon-stress 1.5s ease-in-out infinite;
}
@keyframes icon-stress {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(8deg); }
    75% { transform: rotate(-8deg); }
}
.after-icon-wrap .transform-svg-icon {
    animation: icon-calm 2s ease-in-out infinite;
}
@keyframes icon-calm {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 4px rgba(184,151,46,0.4)); }
}

/* Transform beam divider */
.transform-beam {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    position: relative;
}
.transform-beam-line {
    width: 2px;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    opacity: 0.3;
}
.transform-beam-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,151,46,0.4), transparent);
    animation: beam-pulse 2s ease-in-out infinite;
}
@keyframes beam-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.8; }
}

/* Pull quote — word-by-word reveal */
.pull-quote {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-top: 48px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.pull-quote .word {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease, filter 0.4s ease;
    margin-right: 0.3em;
}
.pull-quote .word.visible {
    opacity: 1;
    filter: blur(0);
}
.pull-quote .word.glow {
    background: linear-gradient(135deg, var(--accent), #D4882A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   SECTION 4 — Social Proof: The Constellation
   ============================================================ */
.proof-constellation {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}
.constellation-line {
    stroke: rgba(184,151,46,0.15);
    stroke-width: 1;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1.5s ease;
}
.constellation-line.drawn {
    stroke-dashoffset: 0;
}
.proof-bar {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.proof-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.proof-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    gap: 8px;
    position: relative;
}

/* Split-flap counter */
.proof-counter {
    display: flex;
    align-items: center;
    gap: 2px;
}
.flip-digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    position: relative;
    overflow: hidden;
}
.flip-digit.flipping {
    animation: digit-flip 0.3s ease;
}
@keyframes digit-flip {
    0% { transform: rotateX(0); }
    50% { transform: rotateX(-90deg); }
    100% { transform: rotateX(0); }
}
.flip-comma {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-tertiary);
    padding: 0 1px;
}
.flip-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-left: 2px;
}

/* Proof ring */
.proof-ring-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.proof-ring {
    position: absolute;
    inset: 0;
}
.proof-ring-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}
.proof-ring-pct {
    font-size: 0.8rem;
    color: var(--accent);
}

.proof-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin-top: var(--space-xs);
}
.proof-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}
.proof-glow-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,151,46,0.3), transparent);
    opacity: 0;
    pointer-events: none;
}
.proof-glow-burst.burst {
    animation: glow-flash 0.6s ease forwards;
}
@keyframes glow-flash {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Platform marquee with icons */
.platform-strip-label {
    text-align: center;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    margin-top: 36px;
    margin-bottom: 12px;
}
.platform-strip {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.platform-marquee {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
    white-space: nowrap;
}
.platform-marquee span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    white-space: nowrap;
    flex-shrink: 0;
}
.platform-icon {
    opacity: 0.5;
    color: var(--accent);
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

