/* ============================================
   BEANSOCKS.CO - Espresso Aesthetic
   Premium Pilates Grip Socks Landing Page
   ============================================ */

/* CSS Variables - The Espresso Palette */
:root {
    /* Core Colors */
    --espresso: #1a1410;
    --crema: #d4a574;
    --oat-milk: #f5f0e8;
    --latte: #c4a77d;
    --matcha: #8b9a6d;
    --matte-black: #0d0d0d;
    
    /* Neutrals */
    --warm-white: #faf8f5;
    --warm-gray: #8a8279;
    --dark-roast: #2d2420;
    
    /* Accents */
    --foam: #ebe5dc;
    --steam: rgba(212, 165, 116, 0.1);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1200px;
    
    /* Transitions */
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--warm-white);
    color: var(--espresso);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background-color: var(--crema);
    color: var(--espresso);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 20, 16, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--espresso);
}

.logo-icon {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--espresso);
    color: var(--warm-white);
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background: var(--dark-roast);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    max-width: 600px;
}

.hero-tagline {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--steam);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--crema);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--espresso);
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--warm-gray);
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--crema);
    color: var(--espresso);
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-cta:hover {
    background: var(--latte);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.3);
}

.hero-cta svg {
    transition: var(--transition-smooth);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(0.95);
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(26, 20, 16, 0.25),
        0 0 0 1px rgba(26, 20, 16, 0.05);
    transition: var(--transition-smooth);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.02);
    box-shadow: 
        0 35px 60px -15px rgba(26, 20, 16, 0.3),
        0 0 0 1px rgba(26, 20, 16, 0.05);
}

.hero-image-accent {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--crema) 0%, var(--latte) 100%);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(40px);
    animation: accentPulse 4s ease-in-out infinite;
}

@keyframes accentPulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.3;
        transform: scale(1.05);
    }
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
    padding: var(--section-padding) 2rem;
    background: var(--oat-milk);
}

.menu-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--warm-white);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--crema);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--warm-gray);
    max-width: 500px;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.roast-card {
    background: var(--warm-white);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.roast-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(26, 20, 16, 0.1);
}

.roast-image {
    height: 360px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

/* Decorative grip pattern only for cards without product images (e.g. Matcha) */
.roast-image:not(:has(.roast-card-img))::after {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 20px;
    background-image: radial-gradient(circle at center, currentColor 6px, transparent 6px);
    background-size: 30px 30px;
    opacity: 0.4;
}

.roast-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(0.92);
    border-radius: 24px 24px 0 0;
}

.roast-hidden {
    display: none !important;
}

.matcha-img {
    background: linear-gradient(145deg, var(--matcha) 0%, #7a8a5f 100%);
    color: var(--warm-white);
}

.roast-badge {
    position: absolute;
    top: 1.35rem;
    right: 1.35rem;
    padding: 0.4rem 0.8rem;
    background: var(--warm-white);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--espresso);
    z-index: 1;
}

.roast-details {
    padding: 2rem;
}

.roast-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.roast-description {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.roast-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.spec {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--crema);
}

/* ============================================
   HOOK SECTION
   ============================================ */
.hook {
    padding: var(--section-padding) 2rem;
    background: var(--espresso);
    color: var(--warm-white);
}

.hook-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hook-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--crema);
    margin-bottom: 2rem;
}

.hook-badge .divider {
    opacity: 0.4;
}

.hook-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hook-text {
    max-width: 500px;
}

.hook-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(250, 248, 245, 0.8);
    margin-bottom: 1.25rem;
}

.hook-text strong {
    color: var(--crema);
}

.hook-visual {
    display: flex;
    justify-content: center;
}

.quote-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    max-width: 400px;
    position: relative;
}

.quote-icon {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--crema);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 2rem;
    line-height: 1;
}

.quote-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 0.875rem;
    color: var(--crema);
    font-weight: 500;
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features {
    background: var(--dark-roast);
    padding: 1.5rem 2rem;
    overflow: hidden;
}

.features-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--oat-milk);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.feature-icon {
    color: var(--crema);
    font-size: 0.6rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding) 2rem;
    background: var(--warm-white);
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--steam);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--crema);
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--espresso);
    color: var(--warm-white);
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cta-button:hover {
    background: var(--matte-black);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(26, 20, 16, 0.2);
}

.cta-button-icon {
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.cta-button:hover .cta-button-icon {
    transform: translateX(4px);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--warm-gray);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--oat-milk);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 4rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(26, 20, 16, 0.1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--espresso);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-icon {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    margin-top: 0.5rem;
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--espresso);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--crema);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--espresso);
    color: var(--warm-white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--crema);
    color: var(--espresso);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--warm-gray);
}

/* ============================================
   INNER PAGES (About, Privacy)
   ============================================ */
.page {
    padding: 8rem 2rem 4rem;
    max-width: 720px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header .section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--steam);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 1rem;
}

.page-lead {
    font-size: 1.125rem;
    color: var(--warm-gray);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

.page-meta {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--warm-gray);
}

.page-content {
    margin-top: 2rem;
}

.prose {
    font-size: 1rem;
    line-height: 1.75;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--espresso);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p {
    margin-bottom: 1.25rem;
    color: var(--dark-roast);
}

.prose ul {
    margin: 1rem 0 1.25rem 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose a,
.inline-link {
    color: var(--espresso);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transition: color var(--transition-smooth);
}

.prose a:hover,
.inline-link:hover {
    color: var(--crema);
}

.prose-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--foam);
}

.prose-cta .inline-link {
    font-weight: 500;
}

/* ============================================
   WAITLIST OVERLAY
   ============================================ */
.waitlist-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.waitlist-overlay.active {
    opacity: 1;
    visibility: visible;
}

.waitlist-modal {
    background: var(--warm-white);
    border-radius: 32px;
    padding: 3rem;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-bounce);
}

.waitlist-overlay.active .waitlist-modal {
    transform: translateY(0) scale(1);
}

.waitlist-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--oat-milk);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--espresso);
    transition: var(--transition-smooth);
}

.waitlist-close:hover {
    background: var(--foam);
    transform: rotate(90deg);
}

.waitlist-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.waitlist-icon {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 1.5rem;
}

.waitlist-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.waitlist-subtitle {
    color: var(--warm-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.waitlist-form-embed {
    flex: 1;
    min-height: 0;
    overflow: auto;
    border-radius: 16px;
    background: var(--oat-milk);
    border: 1px solid rgba(26, 20, 16, 0.06);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.waitlist-form-embed iframe {
    display: block;
    width: 100%;
    min-height: 500px;
    border: none;
    touch-action: pan-y;
}

/* Mobile: link to open form in new tab (iframe hidden via media query) */
.waitlist-form-open-mobile {
    display: none;
}

.waitlist-form-open-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--espresso);
    color: var(--warm-white);
    text-decoration: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.waitlist-form-open-link:hover {
    background: var(--matte-black);
    transform: translateY(-2px);
    box-shadow: 0 15px 20px rgba(26, 20, 16, 0.2);
}

.waitlist-form-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--espresso);
    color: var(--warm-white);
    text-decoration: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.waitlist-form-link:hover {
    background: var(--matte-black);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(26, 20, 16, 0.2);
}

.waitlist-form-link svg {
    transition: var(--transition-smooth);
}

.waitlist-form-link:hover svg {
    transform: translate(3px, -3px);
}

.waitlist-note {
    margin-top: 1rem;
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--warm-gray);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtext {
        max-width: 100%;
    }
    
    .hook-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hook-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hook-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .page {
        padding: 6rem 1.5rem 3rem;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .prose h2 {
        font-size: 1.35rem;
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }
    
    .hero-image-container {
        max-width: 400px;
    }
    
    .menu {
        padding: 4rem 1.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .hook {
        padding: 4rem 1.5rem;
    }
    
    .features-strip {
        gap: 1.5rem;
    }
    
    .feature {
        font-size: 0.75rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .waitlist-overlay {
        padding: 0.75rem;
    }
    
    .waitlist-modal {
        padding: 1.25rem;
        border-radius: 24px;
        max-width: none;
    }
    
    /* Mobile: hide iframe, show link to open form in new tab */
    .waitlist-form-embed {
        display: none;
    }
    
    .waitlist-form-open-mobile {
        display: block;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        max-width: 100%;
        aspect-ratio: 1;
    }
    
    .hero-image-accent {
        inset: -10px;
    }
    
    .roast-image {
        height: 320px;
    }
    
    .quote-card {
        padding: 2rem;
    }
    
    .quote-text {
        font-size: 1.25rem;
    }
    
    .features-strip {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline,
.hero-headline,
.hero-subtext,
.hero-cta {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-tagline { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.2s; }
.hero-subtext { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.4s; }
