/* Import fonts - using web-safe alternatives to SF Mono and Roboto Mono with swap for better performance */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Courier+Prime:wght@400;700&display=swap');
/* CSS Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
  text-decoration: none;
}
body {
    font-family: 'Courier Prime', 'Courier New', monospace;
    background-color: #d38e31;
    min-height: 100vh;
    overflow: hidden;
}
/* Container - Mobile First */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 16px;
    gap: 16px;
}
/* Device Mockup - Mobile */
.device-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    min-height: 0;
}
.device-frame {
    width: min(275px, 100%);
    height: auto;
    max-height: min(600px, 80vh, 80dvh);
    aspect-ratio: 300 / 800;
    border: 10px solid #000000;
    border-radius: 45px;
    overflow: hidden;
    background-color: #090909;
    position: relative;
}
/* DESKTOP FRAME HIDDEN - COMMENTED OUT */
/* .device-frame.desktop {
    display: none;
} */
.device-frame.mobile {
    display: block;
}
.device-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
/* Content Section */
.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    width: 100%;
    flex-shrink: 0;
    margin-top: 16px;
}
/* Branding */
.branding {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}
.brand-text {
    color: white;
    line-height: 1.2;
}
.brand-text h1 {
    font-family: 'Courier Prime', monospace;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}
.brand-text p {
    font-family: 'Courier Prime', monospace;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.7;
}
/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #000000;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 130px;
    text-wrap: nowrap;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.cta-button:active {
    transform: translateY(0);
}
.cta-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}
.apple-icon {
    width: 16px;
    height: 22px;
    flex-shrink: 0;
}
/* DESKTOP LAYOUT COMMENTED OUT - Desktop Layout - 1024px and up */
/* @media (min-width: 1024px) {
    .container {
        flex-direction: row;
        gap: 16px;
        padding: 40px;
    }
    .device-mockup {
        flex: 1;
        max-height: 100%;
    }
    .device-frame.mobile {
        display: none;
    }
    .device-frame.desktop {
        display: block;
        max-width: 1000px;
        max-height: 100%;
        width: 100%;
        height: 100%;
        aspect-ratio: 800 / 560;
        border: 24px solid #000000;
        border-radius: 48px;
    }
    .content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        max-width: 187px;
        margin: 0 40px 0 40px;
    }
    .cta-button {
        width: 100%;
    }
} */
/* LARGE DESKTOP COMMENTED OUT - Large Desktop - 1440px and up */
/* @media (min-width: 1440px) {
    .container {
        gap: 16px;
    }
} */