/* Consolidated font loading */
@font-face {
    font-family: 'Axis Std';
    src: local('Axis Std Light'),
         url('fonts/AxisStd-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Andale Mono';
    src: local('Andale Mono'),
         url('fonts/AndaleMono.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    height: 100%;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Axis Std', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: .9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    margin: 0;
}

::selection {
    background: white;
    color: black;
}

::-moz-selection {
    background: white;
    color: black;
}

.tagline {
    text-align: center;
    margin-top: 0rem !important;
    font-size: .8rem !important;
}

#app {
    width: 90%;
    max-width: 50rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    margin: 2rem 0 0;
    color: #ffffff;
    text-align: center;
}

.logo-icon {
    width: 2.025rem;
    height: 2.025rem;
    color: #ffffff;
}



@media (max-width: 768px) {
    .logo-header {
        margin: 0.5rem 0 0;
    }
    
    .logo-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    body {
        font-size: .9rem;
    }
    
    p {
        line-height: 1.7;
    }
    
    #app {
        width: 95%;
        padding: 2rem 0;
    }
    
    .content-container {
        padding: 0 1rem;
    }
}

.content-container {
    max-width: 32rem;
    margin: 0 auto;
}

p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

h1 {
    font-family: 'Andale Mono', monospace;
    font-variant: small-caps;
    font-size: 1.3rem;
    text-transform: lowercase;
    letter-spacing: 0.1em;
    margin: 0.6rem 0 0.4rem;
    word-spacing: -0.4em;
    text-align: center;
}

.beta-text {
    font-size: 0.8em;
}

h2 {
    font-family: 'Andale Mono', monospace;
    text-transform: lowercase;
    font-variant: small-caps;
    letter-spacing: 0.1em;
    margin: 0.25rem 0 0.1rem;
    word-spacing: -0.4em;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #ffffff;
}

h3 {
    font-size: 1rem;
    font-weight: 300;
    margin: 1.5rem 0 0.75rem 0;
    color: #e0e0e0;
}

ul, ol {
    text-align: left;
    line-height: 1.6em;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.content-container a {
    color: #e0e0e0;
    text-decoration: none;
    position: relative;
    display: inline;
    padding: 0 0.1em;
    transition: color 0.3s;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    white-space: nowrap;
}

.content-container a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    transition: height 0.2s, bottom 0.2s;
    z-index: -1;
}

@media (hover: hover) {
    .content-container a:hover {
        color: black;
    }
    
    .content-container a:hover::after {
        height: calc(100% + 4px);
        bottom: -2px;
        background-color: white;
    }
}

.content-container a:not(:hover)::after {
    height: 1px;
    bottom: -2px;
}

.content-container a:not(:hover) {
    color: white;
}

footer a {
    color: inherit;
    text-decoration: none;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin: 2rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #1a1a1a;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.download-btn {
    padding: 24px;
    border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    background: #1e1e1e;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    display: block;
    margin: 4rem auto 1rem;
    text-align: center;
    color: #ffffff;
    width: fit-content;
}

.download-btn-top {
    margin-top: 3rem;
}

.download-btn span {
    position: relative;
}

.download-version {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    margin: -0.6rem 0 2.5rem;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.1) 0%, rgba(156, 163, 175, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    pointer-events: none;
}

.download-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(156, 163, 175, 0.08) 20%,
        rgba(156, 163, 175, 0.12) 50%,
        rgba(156, 163, 175, 0.08) 80%,
        transparent 100%
    );
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.download-btn:hover {
    border-color: #7c7c7c;
    background: #252525;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 6px 16px rgba(124, 124, 124, 0.25);
    animation: materialGlow 0.8s ease-out;
}

.download-btn:hover::before {
    opacity: 1;
}

.download-btn:hover::after {
    left: 100%;
}

.download-btn:focus {
    outline: none;
    border-color: #9ca3af;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(156, 163, 175, 0.3);
}

.download-btn:active {
    transform: translateY(-1px);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes materialGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(156, 163, 175, 0);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(156, 163, 175, 0.15);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(156, 163, 175, 0);
    }
}

.section {
    margin-bottom: 3rem;
}

.disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #888;
    margin: 2.0rem auto 0;
    line-height: 1.5;
}

.how-it-works-image {
    width: 90%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.transparent-learning-image {
    width: 60%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.install-image {
    width: 50%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

code {
    background-color: #1e1e1e;
    padding: 0.125rem 0.375rem;
    border-radius: 0.1875rem;
    font-family: 'Andale Mono', monospace;
    font-size: 0.9em;
}

/* Footer Styles */
footer {
    padding: 1rem 0 3rem 0;
    text-align: center;
    flex-shrink: 0;
}

.logo {
    display: block;
    width: 1.75rem;
    height: 1.9rem;
    margin: 0 auto 1.25rem;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .logo {
        width: 1.25rem;
        height: 1.375rem;
    }
}

.logo:hover {
    opacity: 0.8;
}

.svg {
    width: 100%;
    height: 100%;
    display: block;
}

.mb-path {
    fill: #e0e0e0;
}

.footer-text {
    margin: 0;
    font-size: .65rem;
    color: #aaa;
}

@media (max-width: 768px) {
    .footer-text {
        font-size: .6rem;
    }
} 