/* Global Resets & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #0a0a0a url('img.png') center center no-repeat fixed;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    color: #e5e5e5;
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background overlay for better content readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.3);
    pointer-events: none;
    z-index: -1;
}

/* High DPI / Retina display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        background-size: cover;
        background-position: center center;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Smooth transitions for background on resize */
body {
    transition: background-position 0.3s ease;
}

/* Prevent background flicker on mobile scroll */
@supports (-webkit-overflow-scrolling: touch) {
    body {
        background-attachment: scroll;
    }
}

.main-container {
    width: 100%;
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
}

.content-wrapper {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

/* Logo Section */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 5px;
}

.main-logo {
    width: 200px;
    height: auto;
    display: block;
}

.hero-logo {
    width: 94px;
    height: 87px;
    margin: 0 auto;
    display: block;
    position: relative;
    top: 20px;
}

.hero-text {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 0 20px;
}

.title-container {
    align-self: stretch;
    height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.title {
    align-self: stretch;
    text-align: center;
    color: white;
    font-size: 48px;
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    line-height: 60px;
    word-wrap: break-word;
}

.subtitle-container {
    align-self: stretch;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.subtitle {
    align-self: stretch;
    text-align: center;
    color: white;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
}

/* Email Signup */
.email-signup {
    width: 100%;
    max-width: 480px;
    height: 64px;
    margin: 40px auto 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.email-container {
    align-self: stretch;
    flex: 1 1 0;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.email-left {
    width: 15px;
    align-self: stretch;
    padding-left: 15px;
    background: #1A2633;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-left: 1px #334A66 solid;
    border-top: 1px #334A66 solid;
    border-bottom: 1px #334A66 solid;
}

.email-input-wrapper {
    flex: 1 1 0;
    align-self: stretch;
    padding: 8px;
    background: #1A2633;
    overflow: hidden;
    border-top: 1px #334A66 solid;
    border-bottom: 1px #334A66 solid;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.email-input {
    width: 100%;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 0;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-button-wrapper {
    align-self: stretch;
    padding-right: 7px;
    background: #1A2633;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top: 1px #334A66 solid;
    border-right: 1px #334A66 solid;
    border-bottom: 1px #334A66 solid;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-button {
    width: 120px;
    height: 48px;
    max-width: 480px;
    min-width: 84px;
    padding-left: 20px;
    padding-right: 20px;
    background: #005A5B;
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-button:hover {
    background: #006d6e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 90, 91, 0.3);
}

.button-text {
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    text-align: center;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 45px;
    word-wrap: break-word;
}

/* Countdown Section */
.countdown-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    gap: 16px;
}

/* Days */
.days-container {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.days-box {
    width: 180px;
    height: 56px;
    padding: 0;
    background: #005A5B;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.days-value {
    align-self: stretch;
    color: white;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 50px;
    word-wrap: break-word;
    text-align: center;
}

.days-label {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.label-text {
    align-self: stretch;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 45px;
    word-wrap: break-word;
}

/* Hours */
.hours-container {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.hours-box {
    width: 180px;
    height: 56px;
    padding: 0;
    background: #005A5B;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hours-value {
    align-self: stretch;
    color: white;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 50px;
    word-wrap: break-word;
    text-align: center;
}

.hours-label {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Minutes */
.minutes-container {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.minutes-box {
    width: 180px;
    height: 56px;
    padding: 0;
    background: #005A5B;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.minutes-value {
    align-self: stretch;
    color: white;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 50px;
    word-wrap: break-word;
    text-align: center;
}

.minutes-label {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Seconds */
.seconds-container {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.seconds-box {
    width: 180px;
    height: 56px;
    padding: 0;
    background: #005A5B;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seconds-value {
    align-self: stretch;
    color: white;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 50px;
    word-wrap: break-word;
    text-align: center;
}

.seconds-label {
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Top Logo Section */
.top-logo-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin-left: 40px;
    margin-top: -60px;
}

.top-logo {
    width: 300px;
    height: auto;
    display: block;
}

/* Manifesto Section */
.manifesto-title {
    width: 100%;
    max-width: 800px;
    text-align: left;
    color: #ffffff;
    font-size: 48px;
    font-family: 'Work Sans', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.2;
    word-wrap: break-word;
    margin: -30px 0 10px 40px;
    letter-spacing: 1px;
}

.manifesto-container {
    width: 100%;
    max-width: 800px;
    height: auto;
    padding: 0 40px 60px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    margin: 0;
    background: transparent;
}

.manifesto-text {
    width: 100%;
    max-width: 800px;
    height: auto;
    text-align: left;
    margin: 0;
}

.manifesto-text p {
    color: #ffffff;
    font-size: 18px;
    font-family: 'Work Sans', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    word-wrap: break-word;
    margin-bottom: 1.2em;
}

.text-normal {
    color: #ffffff;
    font-size: 18px;
    font-family: 'Work Sans', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    word-wrap: break-word;
}

.text-highlight {
    color: #ffffff;
    font-size: 24px;
    font-family: 'Work Sans', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.4;
    word-wrap: break-word;
    font-style: italic;
}

.key-word {
    color: #a8a8a8;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #666;
}

.emphasis-word {
    color: #ffffff;
    font-weight: 600;
}

.product-name {
    color: #e8e8e8;
    font-weight: 600;
    font-style: italic;
}

.mike-link {
    color: #4a90e2;
    font-weight: 600;
    font-style: italic;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.mike-link:hover {
    color: #5ba0f2;
    border-bottom: 1px solid #4a90e2;
    text-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
}

.bottom-logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    margin-top: 5px;
}

.bottom-logo {
    width: 200px;
    height: auto;
    display: block;
}

/* Ultra-wide and large screen optimizations */
@media (min-width: 1920px) {
    body {
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }
    
    .main-container {
        max-width: 1400px;
    }
}

/* Very large screens (4K and beyond) */
@media (min-width: 2560px) {
    body {
        background-size: cover;
        background-position: center center;
    }
    
    .main-container {
        max-width: 1600px;
    }
}

/* Landscape orientation specific adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    body {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    
    .manifesto-container {
        padding: 0 20px 30px;
    }
    
    .manifesto-title {
        font-size: 32px;
        margin: 0 0 10px 20px;
    }
}

/* Portrait orientation for tablets */
@media (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
    body {
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }
    
    .manifesto-title {
        font-size: 40px;
    }
    
    .top-logo {
        width: 280px;
    }
}

/* Responsive Design */
@media (max-width: 1280px) {
    .main-container {
        width: 100%;
    }
    
    .content-wrapper {
        padding: 20px;
    }
    
    /* Responsive background adjustments */
    body {
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 960px) {
    .hero-text {
        width: 90%;
        left: 5%;
    }
    
    .email-signup {
        width: 90%;
    }
    
    .countdown-section {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Responsive background for medium screens */
    body {
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }
    
    /* Adjust manifesto section for better mobile readability */
    .manifesto-title {
        font-size: 42px;
        margin: -20px 0 10px 20px;
    }
    
    .manifesto-container {
        padding: 0 20px 60px;
    }
    
    .top-logo-container {
        margin-left: 20px;
    }
    
    .top-logo {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .days-container, .hours-container, .minutes-container, .seconds-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 10px;
        flex: 0 0 auto;
        margin-bottom: 16px;
    }
    
    .days-box, .hours-box, .minutes-box, .seconds-box {
        width: 160px;
        height: 160px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #2A2A2A;
        border-radius: 12px;
        margin: 0 5px 15px;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        position: relative;
        overflow: hidden;
    }
    
    .hours-label, .minutes-label, .seconds-label {
        width: 100%;
    }
    
    .days-value, .hours-value, .minutes-value, .seconds-value {
        font-size: 72px;
        font-weight: 700;
        color: #005A5B;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-family: 'Inter', sans-serif;
    }
    
    /* Mobile background optimizations */
    body {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    /* Mobile layout adjustments */
    .manifesto-title {
        font-size: 36px;
        margin: -10px 0 10px 15px;
        text-align: center;
        width: calc(100% - 30px);
    }
    
    .manifesto-container {
        padding: 0 15px 40px;
    }
    
    .top-logo-container {
        margin-left: 15px;
        justify-content: center;
        width: calc(100% - 30px);
    }
    
    .top-logo {
        width: 200px;
    }
    
    .manifesto-text p {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 36px;
        line-height: 48px;
    }
    
    .days-container, .hours-container, .minutes-container, .seconds-container {
        width: 10%;
    }

    .days-box, .hours-box, .minutes-box, .seconds-box {
        width: 60px;
        height: 60px;
    }

    .days-value, .hours-value, .minutes-value, .seconds-value {
        font-size: 30px;
    }
    
    /* Small mobile background optimizations */
    body {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }
    
    /* Enhanced background overlay for small screens */
    body::before {
        background: rgba(10, 10, 10, 0.4);
    }
    
    /* Small mobile layout adjustments */
    .manifesto-title {
        font-size: 28px;
        margin: 0 0 10px 0;
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }
    
    .manifesto-container {
        padding: 0 10px 30px;
    }
    
    .top-logo-container {
        margin: 0;
        justify-content: center;
        width: 100%;
        padding: 0 10px;
    }
    
    .top-logo {
        width: 180px;
    }
    
    .manifesto-text p {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }
}

.cta-button {
    display: inline-block;
    background-color: #005A5B;
    color: #FFFFFF;
    padding: 18px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.25);
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #006d6e;
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.35);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 48px;
    border: 2px solid #005A5B;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
    opacity: 0.7;
}

.scroll-down-indicator span {
    display: block;
    width: 3px;
    height: 10px;
    background-color: #005A5B;
    border-radius: 1.5px;
    animation: scroll-anim 2.2s infinite ease-in-out;
}

@keyframes scroll-anim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

.content-section {
    padding: 50px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.alt-bg {
    background-color: #fff;
}

.full-screen-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    position: relative;
}

.manifesto-text p {
    font-size: 18px;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 1.5em;
    font-weight: 300;
    color: #ffffff;
    font-family: 'Work Sans', 'Helvetica Neue Light', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
}

.manifesto-text .highlight {
    font-size: 20px;
    font-weight: 400;
}

.manifesto-text .highlight.mike-link {
    text-decoration: underline;
    color: #ffffff;
    font-style: normal;
}

.manifesto-text .highlight.mike-link:hover {
    color: #cccccc;
}

.manifesto-text .emphasis {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #005A5B;
}

/* Footer Section */
.footer {
    width: 100%;
    margin-top: 60px;
    padding: 20px 40px;
    text-align: left;
}

.footer p {
    color: #ffffff;
    font-size: 12px;
    font-family: 'Work Sans', 'Helvetica Neue Light', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    opacity: 0.5;
    margin: 1.5em 0;
}

.statement-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.statement-item h3 {
    color: #005A5B;
    font-size: 1.5rem;
    margin-bottom: 1em;
    font-family: 'Crimson Text', serif;
}

.statement-item p {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

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

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: #005A5B;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #005A5B;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Crimson Text', serif;
}

.feature-card p {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.countdown-container {
    text-align: center;
    margin-bottom: 35px;
    background-color: #fff;
}

.countdown-title {
    font-size: 2rem;
    color: #005A5B;
    margin-bottom: 20px;
    font-family: 'Crimson Text', serif;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 5px 0;
}

.timer-box {
    background-color: transparent;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    min-width: 100px;
    border: 2px solid #005A5B;
    /* box-shadow: 0 0 15px rgba(0, 90, 91, 0.4); */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.timer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 90, 91, 0.6);
}

.timer-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Crimson Text', serif;
}

.launch-date-info {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-style: italic;
}

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

.pricing-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover, .pricing-card.featured-plan {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured-plan {
    border: 2px solid #005A5B;
}

.pricing-card h3 {
    color: #005A5B;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Crimson Text', serif;
}

.pricing-card .price {
    font-size: 3rem;
    color: #005A5B;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Crimson Text', serif;
}

.pricing-card .price-period {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: '✓';
    color: #005A5B;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-cta {
    margin-top: 30px;
}

.site-footer {
    background-color: #005A5B;
    color: #FFFFFF;
    padding: 40px 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 1rem;
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .main-headline {
        font-size: 1.8rem;
    }
    .tagline {
        font-size: 1.4rem;
    }
    .section-title, .countdown-title {
        font-size: 2.5rem;
    }
    .pricing-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .logo {
        font-size: 1.8rem;
    }
    .main-headline {
        font-size: 1.6rem;
    }
    .tagline {
        font-size: 1.2rem;
    }
    #countdown {
        flex-wrap: wrap;
    }
    .timer-box {
        min-width: 80px;
    }
    .timer-box span {
        font-size: 2rem;
    }
    .statement-item {
        padding: 20px;
    }
    .statement-item h3 {
        font-size: 1.3rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 1.4rem;
    }
    .tagline {
        font-size: 1.1rem;
    }
    .section-title, .countdown-title {
        font-size: 2rem;
    }
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    .timer-box span {
        font-size: 1.8rem;
    }
    .feature-icon {
        font-size: 2rem;
    }
    .pricing-card .price {
        font-size: 2.5rem;
    }
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5em;
}

.hero-logo {
    width: 115px;
    height: 95px;
    display: block;
}

/* Early Adopter Section */
.early-adopter-section {
    width: 100%;
    max-width: 480px;
    height: 64px;
    margin: 24px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.early-adopter-button {
    width: 100%;
    height: 48px;
    background: #005A5B;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 90, 91, 0.3);
}

.early-adopter-button:hover {
    background: #006d6e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 90, 91, 0.3);
}

.early-adopter-button .button-text {
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 45px;
    text-align: center;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: #1A2633;
    border-radius: 16px;
    border: 1px solid #334A66;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #334A66;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.modal-header h2 {
    color: white;
    font-size: 24px;
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.modal-content {
    padding: 0 24px 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    background: #1A1A1A;
    border: 1px solid #334A66;
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #1A1A1A;
    color: white;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #334A66;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #334A66;
    border-radius: 8px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.btn-primary {
    background: #005A5B;
    border: 1px solid rgba(0, 90, 91, 0.3);
    border-radius: 8px;
    padding: 12px 24px;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-primary:hover:not(:disabled) {
    background: #006d6e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 90, 91, 0.3);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .modal-header {
        padding: 20px 20px 0;
    }
    
    .modal-content {
        padding: 0 20px 20px;
    }
    
    .modal-actions {
        flex-direction: column-reverse;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .early-adopter-section {
        max-width: 100%;
        margin: 20px auto 0;
        padding: 0 20px;
    }
} 
