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

body {
    font-family: system-ui, sans-serif;
    background-color: #0b0c10;
    color: #cfd8dc;
    line-height: 1.6;
    padding-bottom: 4rem;
}

html {
    scroll-behavior: smooth;
}

main {
    padding: 2rem;
}

header {
    background-color: #11141b;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #61dafb;
}

nav a {
    color: #cfd8dc;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
}

    nav a:hover {
        color: #61dafb;
    }

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #888;
}

/* Sections */
.section {
    margin-bottom: 3rem;
}

    .section h1,
    .section h2,
    .section h3 {
        margin-bottom: 1rem;
        color: #ffffff;
    }

    .section p {
        margin-bottom: 1rem;
    }

/* Cards */
.card {
    background-color: #1c1f26;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 0 1px #222633;
    margin-bottom: 1.5rem;
}

    .card h3 {
        margin-bottom: 0.5rem;
    }

.card-link-heading {
    color: #61dafb;
    text-decoration: none;
}

    .card-link-heading:hover {
        text-decoration: underline;
    }

/* Grid Layout */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Hero Section */
.hero-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-points {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 2rem;
}

    .hero-points li {
        margin-bottom: 0.5rem;
    }

/* CTA Buttons */
.cta-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #61dafb;
    color: #0b0c10;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary:hover {
        background: #4ac3e4;
    }

.btn-secondary {
    border: 1px solid #61dafb;
    color: #61dafb;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

    .btn-secondary:hover {
        background: #61dafb;
        color: #0b0c10;
    }

/* Document List */
.doc-list {
    list-style: none;
    padding-left: 0;
}

    .doc-list li {
        margin-bottom: 0.75rem;
    }

    .doc-list a {
        color: #61dafb;
        text-decoration: none;
        font-size: 1.05rem;
    }

        .doc-list a:hover {
            text-decoration: underline;
        }

/* Comparison Table */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid #222633;
    border-radius: 8px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid #222633;
}

    .comparison-row.header {
        background: #11141b;
        font-weight: 700;
    }

    .comparison-row:last-child {
        border-bottom: none;
    }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    nav a {
        margin-left: 0.75rem;
        font-size: 0.9rem;
    }

    .cta-row {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }
}
.hero-screenshot {
    margin-top: 2rem;
    text-align: center;
}

    .hero-screenshot img {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 0 0 1px #222633;
    }
.screenshot-preview {
  margin: 2rem auto;
  text-align: center;
}

.screenshot-preview img {
  width: 900px;        /* Adjust this to match the size you showed */
  max-width: 100%;     /* Responsive fallback */
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
}
