@font-face {
    font-family: 'Montserrat';
    src: url('https://sub.zymplio.com/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://sub.zymplio.com/fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #e6007e;
    --primary-dark: #c2006a;
    --bg: #020617;
    --card-bg: #0f172a;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --border: #1e293b;
    --font-sans: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: lowercase;
}

.logo span {
    color: var(--primary);
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--text-muted) !important;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero */
.hero {
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.badge {
    background: rgba(230, 0, 126, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(230, 0, 126, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 0.95; /* Further reduced line-height */
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Quiz Card */
.quiz-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    width: 100%;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.5);
}

.quiz-header {
    margin-bottom: 1.5rem;
}

.step {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
}

.quiz-card h2 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.options {
    display: grid;
    gap: 0.75rem;
}

.option {
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.option:hover, .option.selected {
    background: rgba(230, 0, 126, 0.05);
    border-color: var(--primary);
}

.quiz-footer {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1.5rem;
}

/* Gallery */
.gallery {
    padding: 6rem 0;
    background: #010409;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-item {
    text-align: center;
}

.screenshot-item img {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.screenshot-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* How it works */
.how-it-works {
    padding: 6rem 0;
    background: #010409;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(230, 0, 126, 0.3);
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Features */
.features {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: #010409;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong {
    color: var(--primary);
}

.author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 6rem 0 4rem;
    border-top: 1px solid var(--border);
    background: #010409;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Utils */
.w-full { width: 100%; }
.mt-6 { margin-top: 1.5rem; }

.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content { text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 2rem 0; }
    .how-it-works { padding: 2rem 0; }
    .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery { padding: 2rem 0; }
    .features { padding: 3rem 0; }
    .testimonials { padding: 2rem 0; }
    .footer { padding: 2rem 0 1.5rem; }
    .screenshot-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .testimonial-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links { display: none; }
}
