/* Import Fonts from your main site's assets */
@font-face { font-family: 'RubikScribble'; src: url('/assets/fonts/RubikScribble.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'SpecialElite'; src: url('/assets/fonts/SpecialElite.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Stint Ultra Expanded'; src: url('/assets/fonts/StintUltraExpanded.ttf') format('truetype'); font-display: swap; }

/* --- Base & Resets --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: #111;
    color: #e0e0e0;
    font-family: 'Stint Ultra Expanded', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-wrapper { max-width: 1100px; margin: 0 auto; padding: 2rem; }
a { color: #8ab4f8; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #a7c5f9; }
h1, h2, h3 { font-family: 'SpecialElite', serif; line-height: 1.3; color: #fff; }

/* --- Hero Section --- */
.hero {
    min-height: 80vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 0;
    text-align: center;
}
.hero-content { flex: 1; min-width: 300px; }
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    opacity: 0.95;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    opacity: 0.7;
    max-width: 550px;
    margin: 0 auto 2.5rem auto;
}
.hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.button {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-family: 'SpecialElite', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.button-primary { background-color: #61afef; color: #111; }
.button-primary:hover { background-color: #79c3ff; }
.button-secondary { background-color: transparent; color: #e0e0e0; border-color: rgba(255,255,255,0.3); }
.button-secondary:hover { background-color: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* --- App Mockup --- */
.hero-image-container { flex: 1; min-width: 300px; display: flex; justify-content: center; }
.app-mockup {
    background-color: #282c34;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: 'Consolas', monospace;
}
.mockup-header {
    font-family: 'RubikScribble', cursive;
    font-size: 2rem;
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.mockup-body { display: flex; flex-direction: column; gap: 1.25rem; }
.mockup-field { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; }
.mockup-field label { color: #abb2bf; width: 80px; text-align: right; }
.mockup-input, .mockup-radios {
    flex-grow: 1;
    background-color: #3b4048;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    color: #e0e0e0;
}
.mockup-radios { background: none; padding: 0.5rem 0; }
.mockup-radios span {
    display: inline-block;
    width: 12px; height: 12px;
    border: 1px solid #61afef;
    border-radius: 50%;
    margin-right: 5px;
    position: relative; top: 1px;
}
.mockup-radios span:first-child { background-color: #61afef; }
.mockup-button {
    background-color: #61afef;
    color: #fff;
    text-align: center;
    padding: 0.8rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    font-weight: bold;
}

/* --- Features Section --- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 6rem 0;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}
.feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.feature-card p { opacity: 0.7; }

/* --- How It Works Section --- */
.how-it-works { padding: 4rem 0; text-align: center; }
.how-it-works h2 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 4rem; }
.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}
.step { max-width: 300px; }
.step-number {
    width: 50px; height: 50px;
    border: 2px solid #61afef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-family: 'SpecialElite', serif;
    font-size: 1.5rem;
    color: #61afef;
}
.step h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.step p { opacity: 0.7; }

/* --- Footer --- */
.site-footer {
    text-align: center;
    padding: 4rem 0 2rem 0;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .page-wrapper { padding: 1rem; }
    .hero { text-align: center; }
    .hero-actions { justify-content: center; }
}