/*
Theme Name: Growth Engine
Theme URI: https://growth-engine-agency.com/
Author: Antigravity AI
Author URI: https://google.com/
Description: A high-performance, standalone marketing landing page theme with premium animations and modern aesthetics.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: growth-engine
*/

/* Basic Reset for the theme fallback */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Premium Animations */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating-anim-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-subtle {
    animation: floating-anim-subtle 6s ease-in-out infinite;
}

.draw-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease-out forwards;
}

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

/* Methodology Scroll Progress Utility */
.methodology-line-progress {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--ge-accent, #f97316), transparent);
    transform: translateX(-50%);
    transform-origin: top;
    scale: 1 0;
    transition: scale 0.1s linear;
}
