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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('Images/image1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    cursor: none; /* Hide default cursor only on the first (hero) section */
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(245, 245, 220, 0.7) 0%,
        rgba(245, 245, 220, 0.5) 50%,
        rgba(245, 245, 220, 0.7) 100%
    );
    z-index: 0;
}

.container > * {
    position: relative;
    z-index: 1;
}

.header {
    align-self: flex-start;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(800%) hue-rotate(120deg) brightness(0.5) contrast(1.1);
}

.logo-text {
    color: #0d3525;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.top-box {
    border-radius: 999px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    border: none;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
    margin-top: 80px;
}

.top-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

.box-text {
    color: #0d3525;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes letterSpacing {
    0%, 100% {
        letter-spacing: 1px;
    }
    50% {
        letter-spacing: 3px;
    }
}

.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
    max-width: 1200px;
    align-self: center;
    margin-top: 100px;
    animation: float 6s ease-in-out infinite;
}

.main-title {
    font-size: 64px;
    font-weight: 600;
    color: #672a2d;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    width: 100%;
    text-align: center;
    animation: letterSpacing 3s ease-in-out infinite;
    font-family: Georgia, serif;
}

.subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #672a2d;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.4;
    width: 100%;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.cta-button {
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 180px;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.button-text {
    color: #0d3525;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 48px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .container {
        padding: 30px 40px;
    }
    
    .logo {
        height: 32px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .container {
        padding: 20px;
    }
    
    .top-box,
    .cta-button {
        padding: 10px 18px;
    }
    
    .box-text,
    .button-text {
        font-size: 14px;
    }
    
    .logo {
        height: 28px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .content {
        max-width: 100%;
    }
}

/* Paint Trail Effect */
.paint-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Continuous brush stroke line */
.paint-stroke {
    position: absolute;
    pointer-events: none;
    animation: paintFade 5s ease-out forwards;
    overflow: visible;
}

/* Main brush stroke body with irregular edges */
.paint-stroke::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(13, 53, 37, 0.9);
    /* Irregular edges using clip-path */
    clip-path: var(--stroke-clip, polygon(0% 15%, 100% 20%, 100% 80%, 0% 85%));
}

/* Add texture overlay for brush bristle marks */
.paint-stroke::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        /* Horizontal brush marks/striations */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 1px,
            rgba(13, 53, 37, 0.2) 1px,
            rgba(13, 53, 37, 0.2) 2px,
            transparent 2px,
            transparent 3.5px
        ),
        /* Vertical texture variations */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 2px,
            rgba(13, 53, 37, 0.1) 2px,
            rgba(13, 53, 37, 0.1) 3px
        );
    opacity: 0.7;
    mix-blend-mode: multiply;
    clip-path: var(--stroke-clip, polygon(0% 15%, 100% 20%, 100% 80%, 0% 85%));
}

@keyframes paintFade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Static Header */
.static-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 60px;
    z-index: 1000;
}

.static-header .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.static-header .logo {
    height: 40px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(800%) hue-rotate(120deg) brightness(0.5) contrast(1.1);
}

.static-header .logo-text {
    color: #0d3525;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Special Gothic Expanded One', sans-serif;
}

/* Second Section Styles */
.second-section {
    width: 100%;
    min-height: 100vh;
    background: #faf8f5;
    padding: 60px 80px;
    padding-top: 120px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-headline {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 80px;
    font-family: Georgia, serif;
    line-height: 1.2;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.problems-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.bullet-red {
    background: #ef4444;
}

.bullet-orange {
    background: #f97316;
}

.bullet-yellow {
    background: #eab308;
}

.bullet-purple {
    background: #a855f7;
}

.problem-content {
    flex: 1;
}

.problem-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.problem-description {
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.5;
}

.examples-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.example-box {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e5e5e5;
}

.example-header {
    font-size: 12px;
    font-weight: 600;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.example-question {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
}

.sound-familiar {
    font-size: 15px;
    color: #9b9b9b;
    font-style: italic;
    margin-top: 20px;
    margin-left: 20px;
}

/* Responsive Design for Second Section */
@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .second-section {
        padding: 40px 30px;
        padding-top: 100px;
    }
    
    .section-headline {
        font-size: 36px;
        margin-bottom: 60px;
    }
    
    .static-header {
        padding: 15px 30px;
    }
    
    .static-header .logo {
        height: 32px;
    }
    
    .static-header .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .second-section {
        padding: 30px 20px;
        padding-top: 90px;
    }
    
    .section-headline {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .problem-title {
        font-size: 16px;
    }
    
    .problem-description {
        font-size: 14px;
    }
    
    .static-header {
        padding: 12px 20px;
    }
    
    .static-header .logo {
        height: 28px;
    }
    
    .static-header .logo-text {
        font-size: 18px;
    }
}

/* Third Section Styles */
.third-section {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    padding: 120px 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.third-section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.third-section-heading {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 24px;
    font-family: Georgia, serif;
    line-height: 1.2;
}

.third-section-description {
    font-size: 18px;
    color: #4a4a4a;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    line-height: 1.6;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-blue {
    background: #e0f2fe;
}

.icon-green {
    background: #dcfce7;
}

.icon-purple {
    background: #f3e8ff;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.feature-description {
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Third Section */
@media (max-width: 1024px) {
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .third-section {
        padding: 100px 60px;
    }
}

@media (max-width: 768px) {
    .third-section {
        padding: 80px 30px;
    }
    
    .third-section-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .third-section-description {
        font-size: 16px;
        margin-bottom: 48px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .third-section {
        padding: 60px 20px;
    }
    
    .third-section-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .third-section-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Fourth Section - Roadmap Styles */
.fourth-section {
    width: 100%;
    min-height: 100vh;
    background: #faf8f5;
    padding: 120px 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.fourth-section-content {
    max-width: 1400px;
    margin: 0 auto;
}

.roadmap-title {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 16px;
    font-family: Georgia, serif;
    line-height: 1.2;
}

.roadmap-subtitle {
    font-size: 18px;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 64px;
    line-height: 1.6;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.phase-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.3s ease;
}

.phase-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 8px;
}

.phase-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.status-badge svg {
    width: 14px;
    height: 14px;
}

.status-available {
    background: #dcfce7;
    color: #166534;
}

.status-available svg {
    color: #166534;
}

.status-in-progress {
    background: #dbeafe;
    color: #1e40af;
}

.status-in-progress svg {
    color: #1e40af;
}

.status-coming-soon {
    background: #dbeafe;
    color: #1e40af;
}

.status-coming-soon svg {
    color: #1e40af;
}

.status-beyond {
    background: #dbeafe;
    color: #1e40af;
}

.status-beyond svg {
    color: #1e40af;
}

.phase-description {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

.phase-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phase-features li {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.phase-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9b9b9b;
    font-size: 18px;
    line-height: 1;
}

/* Responsive Design for Fourth Section */
@media (max-width: 1024px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .fourth-section {
        padding: 100px 60px;
    }
}

@media (max-width: 768px) {
    .fourth-section {
        padding: 80px 30px;
    }
    
    .roadmap-title {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .roadmap-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }
    
    .phase-card {
        padding: 24px;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .phase-title {
        font-size: 18px;
    }
    
    .phase-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .fourth-section {
        padding: 60px 20px;
    }
    
    .roadmap-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .roadmap-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .phase-card {
        padding: 20px;
    }
    
    .phase-title {
        font-size: 16px;
    }
    
    .phase-features li {
        font-size: 13px;
    }
}

/* Fifth Section - CTA with Video Background */
.fifth-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.fifth-section .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.fifth-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.fifth-section-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.fifth-section-headline {
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    font-family: Georgia, serif;
    line-height: 1.2;
    margin: 0;
}

.fifth-section-description {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-primary {
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fifth-section-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.footer-copyright {
    color: #ffffff;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Responsive Design for Fifth Section */
@media (max-width: 768px) {
    .fifth-section-headline {
        font-size: 42px;
    }
    
    .fifth-section-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
    
    .fifth-section-footer {
        padding: 24px 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fifth-section-headline {
        font-size: 32px;
    }
    
    .fifth-section-description {
        font-size: 15px;
    }
    
    .fifth-section-content {
        padding: 0 20px;
    }
    
    .fifth-section-footer {
        padding: 20px;
    }
}

