/* ================================
   V2 - BOLD STORYTELLING STYLES
   Apple/Stripe inspired
   ================================ */

:root {
    /* Colors */
    --color-black: #000000;
    --color-dark: #0A0A0A;
    --color-gray-900: #1A1A1A;
    --color-gray-800: #2A2A2A;
    --color-gray-700: #404040;
    --color-gray-500: #737373;
    --color-gray-300: #A3A3A3;
    --color-white: #FFFFFF;
    --color-off-white: #FAFAFA;

    /* Brand */
    --color-orange: #FF9A1F;
    --color-green: #3CD2A5;
    --gradient-brand: linear-gradient(120deg, var(--color-orange) 0%, var(--color-green) 100%);

    /* Shadows */
    --shadow-brutal: 8px 8px 0 rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --glow-orange: 0 0 40px rgba(255, 154, 31, 0.3);
    --glow-green: 0 0 40px rgba(60, 210, 165, 0.3);

    /* Typography */
    --font-family: 'Inter', -apple-system, system-ui, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ================================
   RESET
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--color-black);
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================
   NAVIGATION
   ================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-gray-300);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

.nav-cta .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
}

/* ================================
   BUTTONS
   ================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: var(--glow-orange);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 154, 31, 0.5);
}

.btn-primary-bold {
    background: var(--gradient-brand);
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: var(--glow-orange);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.btn-primary-bold:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 80px rgba(255, 154, 31, 0.6);
}

.btn-xl-bold {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.btn-light-bold {
    background: var(--color-white);
    color: var(--color-black);
    font-weight: 700;
}

.btn-light-bold:hover {
    background: var(--color-off-white);
    transform: translateY(-2px);
}

/* ================================
   HERO BOLD - FULL SCREEN
   ================================ */

.hero-bold {
    position: relative;
    min-height: clamp(600px, 85vh, 900px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 8vh, 6rem) 0 clamp(2.5rem, 5vh, 4rem);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-orange), transparent);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-green), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: -10s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-content-bold {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-bold {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: clamp(1.25rem, 2vh, 1.75rem);
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 var(--color-green);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 20px 8px rgba(60, 210, 165, 0.4);
    }
}

.hero-title-bold {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: clamp(1.25rem, 2.5vh, 2rem);
}

.line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.gradient-line {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-bold {
    font-size: clamp(1.125rem, 1.8vw, 1.5rem);
    line-height: 1.5;
    color: var(--color-gray-300);
    margin-bottom: clamp(2rem, 3vh, 2.5rem);
    opacity: 0;
}

.hero-desc-bold strong {
    color: var(--color-white);
    font-weight: 700;
}

.hero-cta-bold {
    margin-bottom: clamp(0rem, 2vh, 1rem);
    opacity: 0;
}

.hero-proof-bold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-500);
    opacity: 0;
}

.proof-stars {
    color: var(--color-orange);
}

.proof-divider {
    color: var(--color-gray-700);
}

.hero-visual-bold {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    opacity: 0;
}

/* ================================
   PLACEHOLDER BOXES V2
   ================================ */

.placeholder-box-bold {
    background: linear-gradient(135deg, rgba(255, 154, 31, 0.05), rgba(60, 210, 165, 0.05));
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-smooth);
}

.placeholder-box-bold:hover {
    border-color: var(--color-orange);
    background: linear-gradient(135deg, rgba(255, 154, 31, 0.1), rgba(60, 210, 165, 0.1));
    box-shadow: var(--glow-orange);
}

.placeholder-content-bold {
    text-align: center;
    color: var(--color-gray-500);
    padding: 3rem;
}

.placeholder-icon svg {
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.placeholder-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 500;
}

.placeholder-text small {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* ================================
   SCROLL INDICATOR
   ================================ */

.scroll-indicator {
    position: absolute;
    bottom: clamp(20px, 3vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-gray-500);
    border-bottom: 2px solid var(--color-gray-500);
    transform: rotate(45deg);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
    50% { transform: rotate(45deg) translateY(10px); opacity: 1; }
}

/* ================================
   PROBLEM SECTION BOLD
   ================================ */

.problem-bold {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.problem-statement {
    text-align: center;
    margin-bottom: 6rem;
}

.statement-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
}

.statement-line {
    display: block;
    opacity: 0;
}

.problem-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.problem-item-bold {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s var(--ease-smooth);
    opacity: 0;
    transform: translateY(50px);
}

.problem-item-bold:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 154, 31, 0.3);
    transform: translateY(-10px);
}

.problem-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.problem-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-content p {
    color: var(--color-gray-500);
    line-height: 1.7;
}

.problem-impact {
    text-align: center;
}

.impact-stat {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 6rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 154, 31, 0.3);
    border-radius: 24px;
}

.stat-number {
    font-size: 6rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 1.25rem;
    color: var(--color-gray-500);
}

/* ================================
   PARETO LAW SECTION
   ================================ */

.pareto-law-bold {
    padding: var(--section-padding) 0;
    background: var(--color-black);
}

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

.law-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
}

.law-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 4rem;
}

.law-visual {
    margin: 4rem 0;
}

.law-bars {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-end;
}

.bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bar-80 {
    height: 300px;
    width: 150px;
    background: linear-gradient(180deg, var(--color-orange), rgba(255, 154, 31, 0.3));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 2rem;
    box-shadow: var(--glow-orange);
}

.bar-20 {
    height: 150px;
    width: 150px;
    background: linear-gradient(180deg, var(--color-green), rgba(60, 210, 165, 0.3));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 2rem;
    box-shadow: var(--glow-green);
}

.bar-label {
    font-size: 3rem;
    font-weight: 900;
    color: white;
}

.bar-desc {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.law-explanation {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 3rem 0;
    line-height: 1.5;
}

.law-explanation strong {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.law-application {
    margin: 3rem 0;
    font-size: 1.25rem;
    color: var(--color-gray-300);
    line-height: 1.8;
}

.highlight-bold {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.law-tagline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-top: 3rem;
}

.tagline-icon {
    font-size: 2rem;
}

.law-tagline h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

/* ================================
   HOW IT WORKS BOLD
   ================================ */

.how-bold {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.section-header-bold {
    text-align: center;
    margin-bottom: 6rem;
}

.section-label-bold {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-green);
    margin-bottom: 1rem;
}

.section-label-bold.light {
    color: var(--color-orange);
}

.section-title-bold {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.steps-bold {
    display: grid;
    gap: 4rem;
}

.step-bold {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
}

.step-bold:nth-child(even) .step-visual-bold {
    order: 2;
}

.step-visual-bold {
    height: 400px;
}

.step-num {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.step-text-bold h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.step-text-bold p {
    font-size: 1.25rem;
    color: var(--color-gray-300);
    line-height: 1.7;
}

/* ================================
   FEATURES BOLD
   ================================ */

.features-bold {
    padding: var(--section-padding) 0;
    background: var(--color-black);
}

.features-grid-bold {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-bold {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s var(--ease-smooth);
    opacity: 0;
}

.feature-bold:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(60, 210, 165, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--glow-green);
}

.feature-icon-bold {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-bold h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-bold p {
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ================================
   TESTIMONIALS BOLD
   ================================ */

.testimonials-bold {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.testimonials-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 5rem;
}

.testimonials-grid-bold {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-bold {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s var(--ease-smooth);
    opacity: 0;
}

.testimonial-bold:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--color-orange);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-bold {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar-bold {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: white;
    font-weight: 800;
    border-radius: 50%;
    font-size: 1.25rem;
}

.author-name-bold {
    font-weight: 700;
}

.author-role-bold {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

/* ================================
   VISION BOLD
   ================================ */

.vision-bold {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-gray-900), var(--color-black));
    position: relative;
    overflow: hidden;
}

.vision-bold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 154, 31, 0.1), transparent 70%);
}

.vision-content-bold {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-title-bold {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.vision-text-bold {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-gray-300);
    margin-bottom: 3rem;
}

.vision-text-bold strong {
    color: white;
    font-weight: 800;
}

/* ================================
   FINAL CTA BOLD
   ================================ */

.final-cta-bold {
    padding: calc(var(--section-padding) * 1.5) 0;
    background: var(--color-black);
    text-align: center;
}

.final-content-bold {
    max-width: 900px;
    margin: 0 auto;
}

.final-title-bold {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.final-line {
    display: block;
}

.final-trust-bold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

/* ================================
   FOOTER BOLD
   ================================ */

.footer-bold {
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-content-bold {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-tagline-bold {
    color: var(--color-gray-500);
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

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

.footer-links-bold a {
    color: var(--color-gray-500);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

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

.footer-bottom-bold {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-gray-700);
    font-size: 0.875rem;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .hero-title-bold {
        font-size: 3.5rem;
    }

    .section-title-bold,
    .final-title-bold {
        font-size: 3rem;
    }

    .problem-visual-grid,
    .features-grid-bold,
    .testimonials-grid-bold {
        grid-template-columns: 1fr;
    }

    .step-bold {
        grid-template-columns: 1fr;
    }

    .step-bold:nth-child(even) .step-visual-bold {
        order: 1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
    }

    .hero-title-bold {
        font-size: 2.5rem;
    }

    .statement-title,
    .law-title,
    .vision-title-bold {
        font-size: 2.5rem;
    }

    .section-title-bold,
    .final-title-bold {
        font-size: 2rem;
    }

    .footer-content-bold {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links-bold {
        flex-wrap: wrap;
        justify-content: center;
    }
}
