/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Minimalist Color Palette */
    --primary-black: #000000;
    --primary-white: #ffffff;
    --primary-gray: #f8f9fa;
    --secondary-gray: #e9ecef;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    
    /* Accent Colors */
    --accent-blue: #007bff;
    --accent-green: #28a745;
    --accent-orange: #fd7e14;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Section-specific Stickmen */
.stickmen-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.stickmen-section.active {
    opacity: 1;
}

/* Sports Carousel */
.hero-carousel-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    pointer-events: none;
    opacity: 1;
}

.sports-carousel {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 200px;
    overflow: hidden;
}

.left-carousel {
    left: 0;
}

.right-carousel {
    right: 0;
}

.carousel-content {
    display: flex;
    flex-direction: column;
    height: 200%;
    animation: scroll-up 20s linear infinite;
}

.right-carousel .carousel-content {
    animation: scroll-down 20s linear infinite;
}

.sport-item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    margin: 8px 6px;
    padding: 0 12px;
    min-width: fit-content;
    width: auto;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.sport-item:hover {
    color: var(--accent-blue);
    background: rgba(0, 123, 255, 0.1);
    border-color: var(--accent-blue);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    /* Stack carousel above hero content */
    .hero {
        display: flex;
        flex-direction: column; /* put carousel above hero text */
        align-items: stretch; /* make children full width */
        justify-content: flex-start;
        gap: 12px;
    }

    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Hero text wrapping fixes */
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 90%;
        margin: 0 auto var(--space-xl);
        word-wrap: break-word;
    }
    
    /* Email signup mobile fixes - stacked with individual containers */
    .email-signup {
        flex-direction: column;
        gap: var(--space-md);
        padding: 0;
        max-width: 350px;
        width: 100%;
        background: none;
        border: none;
        box-shadow: none;
    }
    
    .email-input {
        width: 100%;
        font-size: 16px;
        padding: 16px 24px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: var(--radius-lg);
        outline: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        text-align: center;
    }
    
    .email-signup .btn-primary {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        white-space: nowrap;
        border-radius: var(--radius-lg);
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    }
    
    .hero-carousel-container {
        position: relative !important;
        top: 0;
        left: 0;
        right: 0;
        height: 72px; /* slightly slimmer on mobile */
        width: 100% !important;
        z-index: 1000;
        pointer-events: none;
        opacity: 1;
        margin: 0 auto 16px;
        overflow: hidden !important; /* ensure nothing overflows horizontally */
        text-align: center;
    }
    
    .sports-carousel {
        position: absolute !important;
        top: 0;
        height: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .left-carousel {
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto;
    }
    
    .right-carousel {
        display: none !important; /* Hide right carousel on mobile */
    }
    
    .carousel-content {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        height: 100% !important;
        width: max(200%, 100vw) !important; /* wide enough for seamless loop */
        animation: scroll-horizontal 15s linear infinite !important;
        will-change: transform;
    }
    
    .sport-item {
        height: 44px;
        min-width: auto;
        width: auto;
        margin: 14px 6px;
        font-size: 11px;
        padding: 0 10px;
        white-space: nowrap;
        max-width: 90vw; /* defensive cap */
        flex: 0 0 auto; /* prevent flex from stretching */
    }
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Defensive: prevent any accidental horizontal scroll caused by carousel */
.hero,
.hero-container,
.hero-carousel-container,
.sports-carousel,
.carousel-content {
    max-width: 100%;
}

.stickman {
    position: absolute;
    opacity: 0.3;
    animation: float 20s infinite linear;
    user-select: none;
}

.stickman img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Size Classes */
.stickman.extra-large { width: 120px; height: 120px; }
.stickman.large { width: 100px; height: 100px; }
.stickman.medium { width: 80px; height: 80px; }
.stickman.small { width: 60px; height: 60px; }
.stickman.tiny { width: 40px; height: 40px; }
.stickman.extra-small { width: 30px; height: 30px; }

/* Mirrored Effect */
.stickman.mirrored img {
    transform: scaleX(-1);
}

/* Hero Section Stickmen */
.hero-stickmen .stickman.archery {
    top: 12%;
    left: 3%;
    animation-delay: 0s;
    animation-duration: 28s;
}

.hero-stickmen .stickman.boxing {
    top: 70%;
    right: 3%;
    animation-delay: 3s;
    animation-duration: 32s;
}

.hero-stickmen .stickman.golf-hero {
    bottom: 15%;
    left: 12%;
    animation-delay: 6s;
    animation-duration: 24s;
}

.hero-stickmen .stickman.tennis-hero {
    bottom: 25%;
    left: 18%;
    animation-delay: 9s;
    animation-duration: 22s;
}

.hero-stickmen .stickman.football-hero {
    top: 15%;
    right: 25%;
    animation-delay: 12s;
    animation-duration: 30s;
}

.hero-stickmen .stickman.cycling-hero {
    bottom: 35%;
    right: 15%;
    animation-delay: 15s;
    animation-duration: 28s;
}

.hero-stickmen .stickman.hockey-hero {
    top: 45%;
    left: 25%;
    animation-delay: 18s;
    animation-duration: 26s;
}

.hero-stickmen .stickman.sled-hero {
    top: 60%;
    left: -10%;
    animation: sled-carousel 8s linear infinite;
}

/* Features Section Stickmen */
.features-stickmen .stickman.cycling {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
    animation-duration: 34s;
}

.features-stickmen .stickman.football {
    top: 8%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 30s;
}

.features-stickmen .stickman.hockey {
    top: 50%;
    right: 40%;
    animation-delay: 6s;
    animation-duration: 29s;
}

/* How It Works Section Stickmen */
.how-it-works-stickmen .stickman.jogging {
    bottom: 10%;
    left: 30%;
    animation-delay: 0s;
    animation-duration: 31s;
}

.how-it-works-stickmen .stickman.sled {
    top: 20%;
    left: 60%;
    animation: sledding 45s linear infinite;
}

.how-it-works-stickmen .stickman.surfing {
    bottom: 60%;
    right: 8%;
    animation-delay: 3s;
    animation-duration: 33s;
}

/* Pricing Section Stickmen */
.pricing-stickmen .stickman.chilling {
    top: 30%;
    left: 8%;
    animation-delay: 0s;
    animation-duration: 26s;
}

.pricing-stickmen .stickman.yoga {
    bottom: 5%;
    right: 55%;
    animation-delay: 3s;
    animation-duration: 35s;
}

@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(-3deg);
    }
    75% {
        transform: translateY(-25px) translateX(8px) rotate(4deg);
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

@keyframes sledding {
    0% {
        transform: translateX(0%) translateY(0%) rotate(0deg);
    }
    12.5% {
        transform: translateX(25%) translateY(-15%) rotate(15deg);
    }
    25% {
        transform: translateX(50%) translateY(-10%) rotate(30deg);
    }
    37.5% {
        transform: translateX(75%) translateY(5%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(20%) rotate(60deg);
    }
    62.5% {
        transform: translateX(75%) translateY(40%) rotate(75deg);
    }
    75% {
        transform: translateX(50%) translateY(60%) rotate(90deg);
    }
    87.5% {
        transform: translateX(25%) translateY(40%) rotate(105deg);
    }
    100% {
        transform: translateX(0%) translateY(0%) rotate(120deg);
    }
}

@keyframes sled-carousel {
    0% {
        transform: translateX(0%) rotate(0deg);
    }
    25% {
        transform: translateX(25%) rotate(5deg);
    }
    50% {
        transform: translateX(50%) rotate(0deg);
    }
    75% {
        transform: translateX(75%) rotate(-5deg);
    }
    100% {
        transform: translateX(120%) rotate(0deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--secondary-gray);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.logo-mark {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    color: var(--primary-white);
    background: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-link i,
.social-link svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Hamburger (mobile only) */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--secondary-gray);
    background: var(--primary-gray);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* stack bars vertically */
    gap: 4px; /* spacing between bars */
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--text-primary);
    margin: 0;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-in menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 82%;
    max-width: 360px;
    height: 100vh;
    background: var(--primary-white);
    box-shadow: -12px 0 30px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--secondary-gray);
}

.close-menu {
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    gap: 8px;
}

.mobile-link {
    padding: 12px 10px;
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
}

.mobile-link:hover {
    background: var(--primary-gray);
}

.nav-cta {
    background: var(--text-primary);
    color: var(--primary-white);
    border: none;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--text-secondary);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    background: var(--primary-white);
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.typing-text {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-bottom: 20px;
}

.typing-line {
    display: block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    border-right: 3px solid var(--accent-blue);
    margin: 0 auto;
}

.typing-line:nth-child(1) {
    animation: typing1 1s steps(9, end) 0.3s forwards, blink-caret 0.5s step-end 1.8s, hide-caret 0.1s 2s forwards;
}

.typing-line:nth-child(2) {
    animation: typing2 0.8s steps(5, end) 2.2s forwards, blink-caret 0.5s step-end 3.5s, hide-caret 0.1s 3.7s forwards;
}

.typing-line:nth-child(3) {
    animation: typing3 1.2s steps(7, end) 4s forwards, blink-caret 0.5s step-end 5.7s, hide-caret 0.1s 6s forwards;
}

@keyframes typing1 {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes typing2 {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes typing3 {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent-blue); }
}

@keyframes hide-caret {
    from { border-color: var(--accent-blue); }
    to { border-color: transparent; }
}

.typing-line .blue-dot {
    color: var(--text-primary);
}

.highlight {
    color: var(--accent-blue);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    align-items: center;
}

.email-signup {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    transform: none;
    box-shadow: none;
}

.email-signup::before {
    display: none;
}

.email-signup:hover::before {
    display: none;
}

.email-signup:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.email-input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 12px 24px; /* match button horizontal padding */
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    min-width: 250px;
    transition: all 0.3s ease;
    opacity: 1;
    border-radius: 25px; /* match button radius */
}

.email-input::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.email-input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
}

.email-input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
}

.email-input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
}

.email-input:focus {
    transform: scale(1.02);
}

.email-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.cta .email-input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.email-signup .btn-primary {
    margin: 0;
    padding: 12px 24px;
    border-radius: 25px;
    white-space: nowrap;
    transition: all 0.3s ease;
    height: 44px; /* explicit height to align with input */
}

.email-signup .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.email-signup.has-content {
    border-color: rgba(0, 123, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
}

.email-signup.error {
    border-color: #dc3545;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.email-signup .btn-primary {
    position: relative;
    overflow: hidden;
}

.email-signup .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.email-signup .btn-primary:hover::before {
    left: 100%;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--primary-white);
}

.btn-primary:hover {
    background: var(--accent-blue-dark, #0066cc);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-gray);
}

.btn-secondary:hover {
    background: var(--primary-gray);
    border-color: var(--text-secondary);
}


/* Features Section */
.features {
    padding: var(--space-2xl) 0;
    background: var(--primary-gray);
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: var(--primary-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    background: var(--accent-blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: var(--space-2xl) 0;
    background: var(--primary-white);
    position: relative;
    z-index: 10;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--primary-gray);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.step:hover {
    background: var(--secondary-gray);
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--text-primary);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: var(--space-2xl) 0;
    background: var(--primary-gray);
    position: relative;
    z-index: 10;
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: var(--primary-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    margin-bottom: var(--space-xl);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.pricing-features {
    margin-bottom: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.pricing-cta {
    width: 100%;
    background: var(--text-primary);
    color: var(--primary-white);
    border: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
}

/* CTA Section */
.cta {
    padding: var(--space-2xl) 0;
    background: var(--text-primary);
    color: var(--primary-white);
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary.large, .btn-secondary.large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
}

.btn-secondary.large {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-secondary.large:hover {
    background: var(--primary-white);
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--primary-gray);
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    max-width: 400px;
}

.footer .logo {
    margin-bottom: var(--space-md);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--secondary-gray);
    color: var(--text-secondary);
}

/* Additional Mobile Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .social-links {
        gap: var(--space-xs);
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link i,
    .social-link svg {
        font-size: 14px;
        width: 14px;
        height: 14px;
    }
    .hamburger { display: inline-flex; }
    
    .hero-container {
        padding: 0 var(--space-md);
        width: 100%;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step:hover {
        transform: translateY(-5px);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary.large, .btn-secondary.large {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    /* CTA section mobile fixes - stacked with individual containers */
    .cta .email-signup {
        flex-direction: column;
        gap: var(--space-md);
        padding: 0;
        max-width: 350px;
        width: 100%;
        background: none;
        border: none;
        box-shadow: none;
    }
    
    .cta .email-input {
        width: 100%;
        font-size: 16px;
        padding: 16px 24px;
        background: rgba(255, 255, 255, 0.15);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: var(--radius-lg);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        text-align: center;
    }
    
    .cta .email-input::placeholder {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .cta .btn-primary {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: var(--radius-lg);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-container {
        padding: 0 var(--space-md);
    }
    
    .email-input {
        width: 100%;
        max-width: none; /* ensure matches button width */
        min-width: 0; /* prevent smaller fixed width */
        font-size: 16px;
        padding: 16px 24px; /* match mobile button padding */
        border-radius: var(--radius-lg);
        box-sizing: border-box;
    }
    
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    /* Reduce stickmen on mobile for better performance */
    .stickman {
        opacity: 0.2;
    }
    
    /* Reduce sizes on mobile */
    .stickman.extra-large { width: 60px; height: 60px; }
    .stickman.large { width: 50px; height: 50px; }
    .stickman.medium { width: 40px; height: 40px; }
    .stickman.small { width: 30px; height: 30px; }
    .stickman.tiny { width: 25px; height: 25px; }
    .stickman.extra-small { width: 20px; height: 20px; }
    
    /* Hide some stickmen on mobile for performance */
    .stickman.hockey,
    .stickman.jogging,
    .stickman.sled,
    .stickman.surfing,
    .stickman.tennis,
    .stickman.yoga {
        display: none;
    }
}

/* Blog Page Styles */
.blog-header {
    padding: 140px 0 80px;
    background: var(--primary-white);
    text-align: center;
}

.blog-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.blog-content {
    padding: 80px 0;
    background: var(--primary-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--secondary-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.blog-card.coming-soon {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue));
    color: var(--primary-white);
    border: none;
}

.blog-card.coming-soon .blog-card-title,
.blog-card.coming-soon .blog-card-description {
    color: var(--primary-white);
}

.blog-card.placeholder {
    opacity: 0.7;
}

.blog-card.placeholder:hover {
    opacity: 1;
}

.blog-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.blog-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-card.coming-soon .blog-card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.blog-card-icon i {
    font-size: 20px;
    color: var(--accent-blue);
}

.blog-card.coming-soon .blog-card-icon i {
    color: var(--primary-white);
}

.blog-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card.coming-soon .blog-date {
    color: rgba(255, 255, 255, 0.8);
}

.blog-category {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card.coming-soon .blog-category {
    color: rgba(255, 255, 255, 0.9);
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.blog-card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--text-primary);
    gap: 12px;
}

.blog-card.coming-soon .read-more {
    color: var(--primary-white);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--primary-gray);
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.newsletter-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--accent-blue);
    font-weight: 600;
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .blog-card {
        padding: var(--space-lg);
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-header {
        padding: 120px 0 60px;
    }
    
    .blog-content {
        padding: 60px 0;
    }
}
