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

:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --gold-light: #E5C158;
    --accent: #14B8A6;
    --accent-dark: #0D9488;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --gray-light: #F8F9FA;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--black);
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #FAFAFA;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 80px;
    position: relative;
    scroll-snap-align: start;
    z-index: 1;
}

.container {
    max-width: 1200px;
    width: 100%;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
    position: relative;
    z-index: 2;
}

/* Optional fade-in animation for sections below fold */
.container.animate-in {
    opacity: 0;
    transform: translateY(50px);
}

.container.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero section specific */
.hero .container {
    z-index: 10;
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.sticky-nav.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Section Dividers */
.section-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--gold) 20%,
        var(--accent) 50%,
        var(--gold) 80%,
        transparent 100%
    );
    margin-top: 0;
    opacity: 0.6;
    animation: shimmer 3s infinite;
}

.hero .section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
}

.section:not(.hero) .section-divider {
    margin-top: 80px;
}

@keyframes shimmer {
    0% { opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { opacity: 0.4; }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    color: white;
    text-align: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

/* Hero Image Window - Full Width Parallax Peep */
.hero-image-window {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 80px;
    overflow: hidden;
}

.hero-image-window::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, 
        var(--black-light) 0%,
        rgba(26, 26, 26, 0.8) 30%,
        rgba(26, 26, 26, 0.4) 60%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
    animation: gradientPulse 4s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.hero-image-parallax {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 1;
    will-change: transform;
    opacity: 0;
    animation: heroImageFadeIn 1.5s ease forwards 0.5s;
}

@keyframes heroImageFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.hero-logo {
    height: 110px;
    width: auto;
    opacity: 0;
    animation: fadeInScale 1s ease forwards 0.3s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -2px;
    line-height: 1;
}

.hero .tagline {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0.95;
    letter-spacing: -0.5px;
    color: var(--gold);
}

.hero .subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    opacity: 0.85;
}

.hero .badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero .badge:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.05);
}

/* Section Headers */
h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--black);
    letter-spacing: -2px;
    line-height: 1.2;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* Problem Section */
.problem {
    background: var(--gray-light);
}

.problem-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
}

.three-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.col {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.04),
        0 2px 6px rgba(0,0,0,0.04),
        0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.8);
    border-top: 4px solid transparent;
}

.col-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.2;
    margin-bottom: -10px;
    letter-spacing: -2px;
    line-height: 1;
}

.col:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 0 1px rgba(20, 184, 166, 0.1),
        0 4px 12px rgba(0,0,0,0.08),
        0 16px 40px rgba(0,0,0,0.12),
        0 0 60px rgba(20, 184, 166, 0.08);
    border-top-color: var(--accent);
}

.col h3 {
    margin-bottom: 20px;
    color: var(--black);
    font-size: 1.5rem;
}

.col-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 15px;
    letter-spacing: -2px;
    line-height: 1;
}

.col ul {
    list-style: none;
    line-height: 1.9;
    font-size: 1.05rem;
}

.col li:before {
    content: "→ ";
    color: var(--gold);
    font-weight: bold;
    margin-right: 8px;
}

/* Solution Section */
.solution {
    background: white;
}

.solution-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.four-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.04),
        0 2px 6px rgba(0,0,0,0.04),
        0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.box:hover::before {
    opacity: 1;
}

.box:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 
        0 0 0 1px rgba(20, 184, 166, 0.15),
        0 4px 12px rgba(0,0,0,0.08),
        0 16px 40px rgba(0,0,0,0.12),
        0 0 60px rgba(20, 184, 166, 0.1);
}

.box-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.box h4 {
    margin-bottom: 15px;
    color: var(--black);
}

.box p {
    line-height: 1.7;
    color: #4a4a4a;
    font-size: 1.05rem;
}

/* Why Now Section */
.why-now {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    color: white;
}

.why-now h2 {
    color: white;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.timeline-item {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192,192,192,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(20, 184, 166, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.4),
        0 0 40px rgba(20, 184, 166, 0.15);
}

.timeline-item h4 {
    margin-bottom: 20px;
    color: var(--accent);
}

.timeline-item ul {
    list-style: none;
    line-height: 1.9;
}

.timeline-item li:before {
    content: "✓ ";
    color: var(--gold);
    font-weight: bold;
    margin-right: 8px;
}

/* Accordion Styles */
.accordion-container {
    margin-top: 40px;
}

.accordion-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.04),
        0 2px 6px rgba(0,0,0,0.04),
        0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 
        0 0 0 1px rgba(20, 184, 166, 0.15),
        0 4px 12px rgba(0,0,0,0.08),
        0 16px 40px rgba(0,0,0,0.12);
}

.accordion-header {
    width: 100%;
    background: white;
    border: none;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.accordion-header:hover {
    background: var(--gray-light);
    border-left-color: var(--accent);
}

.accordion-header h4 {
    margin: 0;
    color: var(--black);
    text-align: left;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    transition: max-height 0.5s ease;
}

.accordion-content ul {
    list-style: none;
    padding: 0 30px 30px;
    line-height: 1.9;
}

.accordion-content li:before {
    content: "• ";
    color: var(--gold);
    font-weight: bold;
    margin-right: 8px;
}

.accordion-content p {
    padding: 0 30px 30px;
}

/* Market Section */
.market {
    background: white;
}

.market-stat {
    text-align: center;
    font-size: 1.4rem;
    margin-top: 50px;
    padding: 35px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 
        0 4px 12px rgba(212, 175, 55, 0.25),
        0 16px 40px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
}

.market-stat:hover {
    transform: scale(1.02);
}

/* Technology Section */
.technology {
    background: var(--gray-light);
}

.tech-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.tech-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-image-container {
    position: sticky;
    top: 120px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.04),
        0 2px 6px rgba(0,0,0,0.04),
        0 8px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 
        0 0 0 1px rgba(20, 184, 166, 0.1),
        0 4px 12px rgba(0,0,0,0.08),
        0 16px 40px rgba(0,0,0,0.12),
        0 0 60px rgba(20, 184, 166, 0.08);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -2px;
    line-height: 1;
}

.step-content h4 {
    color: var(--black);
    margin: 0;
}

.step-content p {
    line-height: 1.7;
    color: #4a4a4a;
    font-size: 1.05rem;
    margin-top: 10px;
}

.tech-advantages {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.2),
        0 0 60px rgba(20, 184, 166, 0.1);
}

.tech-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--accent) 50%,
        transparent 100%
    );
}

.tech-advantages h4 {
    margin-bottom: 25px;
    color: var(--accent);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.tech-advantages ul {
    list-style: none;
    line-height: 2;
    font-size: 1.05rem;
}

.tech-advantages li:before {
    content: "✓ ";
    color: var(--gold);
    font-weight: bold;
    margin-right: 10px;
}

/* Business Model Section */
.business-model {
    background: linear-gradient(to bottom, #F5F5F5 0%, #E8E8E8 100%);
}

.revenue-stream-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.revenue-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.08),
        0 12px 40px rgba(0,0,0,0.12);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.revenue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0.4) 0%,
        var(--accent) 50%,
        rgba(0,0,0,0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.revenue-card:hover::before {
    opacity: 1;
}

.revenue-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.15),
        0 24px 60px rgba(0,0,0,0.2),
        0 0 80px rgba(20, 184, 166, 0.2);
}

.revenue-card-header {
    background: linear-gradient(135deg, 
        var(--gold-dark) 0%,
        var(--gold) 50%,
        var(--gold-dark) 100%
    );
    color: white;
    padding: 40px 35px 35px;
    text-align: center;
    position: relative;
}

.revenue-card-header h4 {
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.revenue-card-header .timeline {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.revenue-card-body {
    padding: 40px 35px;
}

.revenue-card-body ul {
    list-style: none;
    line-height: 2.2;
    margin-bottom: 25px;
}

.revenue-card-body li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #2A2A2A;
}

.revenue-card-body li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.3rem;
}

.revenue-highlight {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid var(--gold);
    box-shadow: 
        inset 0 1px 3px rgba(255,255,255,0.05),
        0 4px 12px rgba(0,0,0,0.15);
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    line-height: 1.6;
}

.revenue-highlight strong {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.financial-summary {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    padding: 45px;
    border-radius: 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.2),
        0 0 60px rgba(20, 184, 166, 0.1);
}

.financial-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--gold) 0%,
        var(--accent) 50%,
        var(--gold) 100%
    );
}

.financial-summary h4 {
    margin-bottom: 30px;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.financial-summary ul {
    list-style: none;
    line-height: 2.2;
    font-size: 1.1rem;
}

.financial-summary li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.financial-summary li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.3rem;
}

.financial-summary strong {
    color: var(--gold);
    font-weight: 700;
}

/* Team Section */
.team {
    background: var(--gray-light);
}

.team-member {
    background: white;
    padding: 40px;
    margin: 30px 0;
    border-radius: 20px;
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.04),
        0 4px 12px rgba(0,0,0,0.06),
        0 16px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid transparent;
    display: flex;
    gap: 30px;
    align-items: start;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 0 1px rgba(20, 184, 166, 0.15),
        0 8px 24px rgba(0,0,0,0.12),
        0 24px 60px rgba(0,0,0,0.15),
        0 0 60px rgba(20, 184, 166, 0.1);
    border-top-color: var(--accent);
}

.team-photo-container {
    flex-shrink: 0;
}

.team-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.team-info {
    flex: 1;
}

.team-member h4 {
    margin-bottom: 10px;
    color: var(--black);
}

.team-member .role {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.ceo-summary {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
    border-left: 4px solid var(--gold);
}

.team-member ul {
    list-style: none;
    line-height: 1.9;
}

.team-member li:before {
    content: "• ";
    color: var(--gold);
    font-weight: bold;
    margin-right: 8px;
}

.team-advisory {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
    border-top: 3px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.team-advisory h4 {
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.advisory-description {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Competition Section */
.competition {
    background: white;
}

.moat {
    background: white;
    padding: 35px;
    margin: 20px 0;
    border-radius: 20px;
    border-left: 4px solid var(--gold);
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.04),
        0 2px 6px rgba(0,0,0,0.04),
        0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.moat:hover {
    transform: translateX(8px);
    box-shadow: 
        0 0 0 1px rgba(20, 184, 166, 0.15),
        0 4px 12px rgba(0,0,0,0.08),
        0 16px 40px rgba(0,0,0,0.12),
        0 0 60px rgba(20, 184, 166, 0.1);
}

.moat h4 {
    margin-bottom: 15px;
    color: var(--black);
}

.moat p {
    line-height: 1.8;
    color: #4a4a4a;
}

.competition-quote {
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.2),
        0 0 60px rgba(20, 184, 166, 0.1);
    border-top: 3px solid var(--accent);
}

/* Financials Section */
.financials {
    background: var(--gray-light);
}

.milestones {
    background: linear-gradient(to bottom, 
        #8B7355 0%,
        #A0826D 15%,
        #C9A961 30%,
        #B8941F 50%,
        #8B7355 70%,
        #5A5A5A 100%
    );
    padding: 60px 40px;
    border-radius: 24px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 4px 20px rgba(0,0,0,0.2),
        0 8px 32px rgba(0,0,0,0.15);
}

.milestones h4 {
    margin-bottom: 60px;
    color: white;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.timeline-container {
    position: relative;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, 
        #4A4A4A 0%,
        #3A3A3A 50%,
        #2A2A2A 100%
    );
    transform: translateX(-50%);
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.5),
        0 0 20px rgba(0,0,0,0.3);
    border-radius: 3px;
}

.milestone-item {
    display: flex;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
}

.milestone-item:nth-child(odd) {
    flex-direction: row;
}

.milestone-item:nth-child(even) {
    flex-direction: row-reverse;
}

.milestone-content {
    width: 42%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.15),
        0 16px 40px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
}

.milestone-content:hover {
    transform: scale(1.05);
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.2),
        0 20px 50px rgba(0,0,0,0.25),
        0 0 40px rgba(20, 184, 166, 0.15);
}

.milestone-month {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.milestone-text {
    font-size: 1.05rem;
    color: var(--black-light);
    line-height: 1.6;
    font-weight: 500;
}

.milestone-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: 4px solid rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: 
        0 0 0 4px rgba(212, 175, 55, 0.2),
        0 4px 12px rgba(0,0,0,0.3);
    z-index: 3;
    transition: all 0.3s ease;
}

.milestone-item:hover .milestone-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 
        0 0 0 6px rgba(20, 184, 166, 0.3),
        0 6px 16px rgba(0,0,0,0.4),
        0 0 30px rgba(20, 184, 166, 0.4);
}

.projections {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.2),
        0 0 60px rgba(20, 184, 166, 0.1);
}

.projections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--gold) 0%,
        var(--accent) 50%,
        var(--gold) 100%
    );
}

.projections h4 {
    margin-bottom: 30px;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.scenario {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(192,192,192,0.2);
}

.scenario:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.scenario h5 {
    margin-bottom: 15px;
    color: var(--accent);
}

.scenario ul {
    list-style: none;
    line-height: 2;
}

.scenario li:before {
    content: "✓ ";
    color: var(--gold);
    font-weight: bold;
    margin-right: 8px;
}

.investment-terms {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.3),
        0 0 60px rgba(212, 175, 55, 0.2);
}

.investment-terms h4 {
    margin-bottom: 30px;
}

.investment-terms ul {
    list-style: none;
    line-height: 2.2;
    font-size: 1.1rem;
}

.investment-terms li:before {
    content: "• ";
    font-weight: bold;
    margin-right: 10px;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.04),
        0 2px 6px rgba(0,0,0,0.04),
        0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 
        0 0 0 1px rgba(20, 184, 166, 0.15),
        0 4px 12px rgba(0,0,0,0.08),
        0 16px 40px rgba(0,0,0,0.12);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: var(--gray-light);
    border-left-color: var(--accent);
}

.faq-question h4 {
    margin: 0;
    color: var(--black);
    text-align: left;
    font-size: 1.2rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 30px;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--black-light) 0%, #2D2D2D 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.contact-info h4 {
    margin-bottom: 30px;
    color: var(--gold);
}

.contact-info p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 15px;
}

.cta-link {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.cta-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.cta-link:hover::after {
    width: 100%;
}

.next-steps {
    max-width: 800px;
    margin: 60px auto 0;
}

.next-steps h4 {
    margin-bottom: 30px;
    color: var(--gold);
}

.next-steps ol {
    text-align: left;
    line-height: 2.2;
    font-size: 1.1rem;
}

.next-steps li {
    margin-bottom: 15px;
}

.cta {
    margin-top: 60px;
    font-size: 1.25rem;
    font-style: italic;
    opacity: 0.9;
    max-width: 800px;
    margin: 60px auto 0;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.8);
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
    padding: 20px;
    text-align: center;
    border: 2px dashed #CCC;
    margin: 30px 0;
}

.image-placeholder.hero-image {
    height: 400px;
    font-size: 1.2rem;
}

.image-placeholder.section-image {
    height: 300px;
    font-size: 1rem;
}

/* Actual Images */
img.section-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: block;
}

/* Image error handling - show gray box if image fails to load */
img.section-image:not([src]), 
img.section-image[src=""],
img.section-image[src*="placeholder"] {
    background: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 100%);
    border: 2px dashed #CCC;
    display: block;
    min-height: 300px;
}

/* Hero image error handling */
.hero-image-parallax {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
}

.hero-image-parallax[src=""],
.hero-image-parallax:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
    display: block;
}

.lazy-load {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.lazy-load.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator::after {
    content: "↓";
    font-size: 2rem;
    color: rgba(255,255,255,0.7);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section {
        padding: 70px 15px 50px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 25px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title {
        flex-direction: column;
        gap: 20px;
    }

    .hero-logo {
        height: 80px;
    }

    .hero-image-window {
        height: 300px;
        margin-top: 50px;
    }

    .scroll-indicator {
        bottom: 80px;
    }

    .hero h1 {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }
    
    .hero .tagline {
        font-size: 1.5rem;
    }

    .hero .subtitle {
        font-size: 1.05rem;
    }

    .image-placeholder.section-image,
    img.section-image {
        height: 250px;
    }
    
    h2 {
        font-size: 2.5rem;
        margin-bottom: 35px;
    }

    h3 {
        font-size: 1.4rem;
    }

    h4 {
        font-size: 1.2rem;
    }
    
    .three-col,
    .four-box,
    .timeline {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .col,
    .box {
        padding: 30px;
    }

    .tech-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tech-image-container {
        position: relative;
        top: 0;
        order: -1;
    }

    .tech-image-container .image-placeholder,
    .tech-image-container img {
        height: 500px !important;
    }

    .revenue-stream-visual {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .team-photo-container {
        margin: 0 auto;
    }

    .timeline-line {
        left: 30px;
    }

    .milestone-item,
    .milestone-item:nth-child(even) {
        flex-direction: row;
        padding-left: 70px;
    }

    .milestone-content,
    .milestone-item:nth-child(odd) .milestone-content,
    .milestone-item:nth-child(even) .milestone-content {
        width: 100%;
        margin: 0;
    }

    .milestone-dot {
        left: 30px;
    }

    .milestone-item:hover .milestone-dot {
        transform: translateX(0) scale(1.3);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .section {
        padding: 90px 30px 70px;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 3rem;
    }

    .three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-layout {
        gap: 40px;
    }
}