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

:root {
    --bg-primary: #0a0e14;
    --bg-secondary: #111820;
    --bg-card: #171f2a;
    --border: #1e2d3d;
    --accent-blue: #38bdf8;
    --accent-cyan: #22d3ee;
    --accent-green: #00d4aa;
    --accent-purple: #a78bfa;
    --text-primary: #e2f0ff;
    --text-secondary: #7a9bba;
    --text-muted: #3a5068;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 60px;
    background: rgba(10, 14, 20, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.hero__icon {
    width: 128px;
    height: 128px;
    object-fit: contain;
}

.nav__logo {
    font-size: 22px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav__name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav__links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav__links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.nav__links a:hover {
    color: var(--text-primary);
}

.nav__cta {
    background: var(--accent-blue);
    color: #000 !important;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 6px;
    font-size: 13px !important;
    transition: opacity 0.2s !important;
}
.nav__cta:hover {
    opacity: 0.85;
    color: #000 !important;
}

/* ── HERO ── */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 24px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 40%, transparent 85%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 85%);
}

.hero > *:not(#network-canvas) {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(
        ellipse at center top,
        rgba(56, 189, 248, 0.09) 0%,
        rgba(34, 211, 238, 0.04) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero__title {
    font-size: clamp(32px, 5.5vw, 64px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin-bottom: 18px;
}

.hero__title span {
    background: linear-gradient(
        135deg,
        var(--accent-blue) 0%,
        var(--accent-cyan) 50%,
        var(--accent-green) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub {
    font-size: clamp(14px, 1.8vw, 17px);
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 30px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #000;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.btn-primary--mac {
    background: var(--accent-green);
}
.btn-primary--linux {
    background: var(--accent-purple);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
    border-color: var(--accent-blue);
    background: rgba(56, 189, 248, 0.05);
}

.hero__meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 44px;
}
.hero__meta-sep {
    display: inline-block;
    width: 24px;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 4px;
}

.price-now {
    color: var(--accent-green);
    font-weight: 700;
}

/* hero preview */
.hero__preview {
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.hero__preview::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(56, 189, 248, 0.25),
        rgba(34, 211, 238, 0.12),
        transparent 60%
    );
    z-index: 0;
}

.hero__preview-inner {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
}

.hero__preview-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 14px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
}
.hero__preview-tabs::-webkit-scrollbar {
    display: none;
}
.preview-tab {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.18s;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .hero__preview-tabs {
        justify-content: flex-start;
        padding: 10px 16px;
    }
    .preview-tab {
        padding: 6px 14px;
        font-size: 11px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
}
.preview-tab:first-child {
    border-radius: 6px 0 0 6px;
    border-right: none;
}
.preview-tab:last-child {
    border-radius: 0 6px 6px 0;
    border-left: none;
}
.preview-tab:not(:first-child):not(:last-child) {
    border-radius: 0;
}
.preview-tab:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}
.preview-tab.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #000;
    font-weight: 800;
}

.preview-panes {
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
}

.preview-pane {
    display: none;
    position: absolute;
    inset: 0;
}
.preview-pane.active {
    display: block;
}

.preview-pane img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top left;
}

/* ── DATASOURCE SLIDER ── */
.ds-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bg-primary);
}

.ds-slide {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
}
.ds-slide.active {
    display: flex;
}

.ds-slide__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 10px 18px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.ds-slide__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ds-slide__badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.ds-slide__badge--pg    { background: rgba(56,189,248,0.15); color: #38bdf8; border: 1px solid rgba(56,189,248,0.3); }
.ds-slide__badge--mysql { background: rgba(234,179,8,0.15);  color: #eab308; border: 1px solid rgba(234,179,8,0.3); }
.ds-slide__badge--mariadb{background: rgba(192,118,90,0.15); color: #c0765a; border: 1px solid rgba(192,118,90,0.3); }
.ds-slide__badge--sqlite{ background: rgba(167,139,250,0.15);color: #a78bfa; border: 1px solid rgba(167,139,250,0.3); }
.ds-slide__badge--mongo { background: rgba(71,162,72,0.15);  color: #47a248; border: 1px solid rgba(71,162,72,0.3); }
.ds-slide__badge--redis { background: rgba(220,56,45,0.15);  color: #dc382d; border: 1px solid rgba(220,56,45,0.3); }
.ds-slide__badge--csv   { background: rgba(0,212,170,0.15);  color: #00d4aa; border: 1px solid rgba(0,212,170,0.3); }
.ds-slide__badge--mqtt  { background: rgba(192,38,211,0.15); color: #c026d3; border: 1px solid rgba(192,38,211,0.3); }

.ds-slide__desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}
.ds-slide__desc code {
    background: rgba(56,189,248,0.1);
    color: var(--accent-cyan);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 11px;
}

.ds-slide img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    object-position: top left;
    display: block;
    min-height: 0;
}

/* ── FEATURES ── */
.features {
    padding: 100px 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.section-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 56px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.feature-card__icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.feature-card__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card__desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── DATABASE BADGES ── */
.db-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.db-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: border-color 0.2s, color 0.2s;
}
.db-badge:hover {
    border-color: var(--accent-blue);
    color: var(--text-primary);
}
.db-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.db-badge--pg .db-badge__dot { background: #336791; }
.db-badge--mysql .db-badge__dot { background: #f29111; }
.db-badge--sqlite .db-badge__dot { background: #44a1e2; }
.db-badge--mongo .db-badge__dot { background: #47a248; }
.db-badge--redis .db-badge__dot { background: #dc382d; }
.db-badge--csv .db-badge__dot { background: #00d4aa; }
.db-badge--mqtt .db-badge__dot { background: #c026d3; }

/* ── SCREENSHOTS ── */
.screenshots-section {
    padding: 80px 24px;
    text-align: center;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 48px auto 0;
}

.screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: zoom-in;
}

.screenshot-item--full {
    grid-column: 1 / -1;
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 12px 16px;
    border-top: 1px solid var(--border);
}

/* ── LIGHTBOX ── */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: lb-fade 0.2s ease;
}
#lightbox.active {
    display: flex;
}
#lightbox img {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    cursor: default;
}
.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.25);
}
@keyframes lb-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── SPECS ── */
.specs {
    padding: 80px 24px;
    background: var(--bg-primary);
}

.specs__inner {
    max-width: 960px;
    margin: 0 auto;
}

.specs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.spec-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.spec-item__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.specs__built-with {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 28px;
}

.spec-item__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-cyan);
    font-family: "JetBrains Mono", "Fira Code", monospace;
}

/* ── DOWNLOAD ── */
.download {
    padding: 100px 24px;
    text-align: center;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.download__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.download__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
}

.download__card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    object-fit: contain;
}
.download__card-icon--emoji {
    font-size: 52px;
    line-height: 1;
}

.download__card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.download__card-badge {
    background: rgba(56, 189, 248, 0.15);
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.download__card-meta {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 26px;
}

.download__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #000;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    width: 100%;
    justify-content: center;
}
.download__card-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.download__card-btn--mac {
    background: var(--accent-green);
}

.download__card-btn--linux {
    background: var(--accent-purple);
}

.download__card-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

.download__card-note a {
    color: var(--accent-purple);
    text-decoration: none;
}
.download__card-note a:hover {
    text-decoration: underline;
}

.linux-install__trigger {
    display: inline-block;
    margin-top: 14px;
    background: transparent;
    border: none;
    color: var(--accent-purple);
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}
.linux-install__trigger:hover {
    text-decoration: underline;
}

/* ── Linux Install Modal ── */
.install-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: lb-fade 0.2s ease;
}
.install-modal.active {
    display: flex;
}

.install-modal__panel {
    position: relative;
    max-width: 860px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    text-align: left;
}

.install-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.install-modal__close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.linux-install__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.linux-install__grid {
    display: grid;
    gap: 14px;
}

.linux-install__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.linux-install__format {
    flex: 0 0 170px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.linux-install__item code {
    flex: 1;
    min-width: 0;
    font-family: "JetBrains Mono", "Fira Code", monospace;
    font-size: 13px;
    color: var(--text-secondary);
    overflow-x: auto;
    white-space: nowrap;
}

.linux-install__copy {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.linux-install__copy:hover {
    border-color: var(--accent-purple);
    color: var(--text-primary);
}
.linux-install__copy.copied {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

@media (max-width: 640px) {
    .download__cards {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
    .install-modal__panel {
        padding: 24px 20px;
    }
    .linux-install__item {
        flex-direction: column;
        align-items: flex-start;
    }
    .linux-install__format {
        flex: none;
    }
    .linux-install__item code {
        width: 100%;
    }
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__brand {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__contact {
    font-size: 13px;
    color: var(--text-muted);
}

.footer__contact a {
    color: var(--accent-blue);
    text-decoration: none;
}
.footer__contact a:hover {
    text-decoration: underline;
}

.footer__copy {
    font-size: 12px;
    color: var(--text-muted);
}

/* ── ALSO FROM ── */
.also-from {
    padding: 100px 24px;
    text-align: center;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}
.also-from__cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1440px;
    margin: 0 auto;
}
.also-from__card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 48px;
    max-width: 680px;
    flex: 1 1 400px;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}
.also-from__card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 32px rgba(79, 195, 247, 0.12);
}
.also-from__icon {
    font-size: 52px;
    line-height: 1;
    flex-shrink: 0;
}
.also-from__body { flex: 1; }
.also-from__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 6px;
}
.also-from__name {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.also-from__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}
.also-from__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
}
.also-from__cta:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .also-from { padding: 64px 24px; }
    .also-from__cards { flex-direction: column; align-items: stretch; }
    .also-from__card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
        max-width: 100%;
    }
    .also-from__cta { justify-content: center; }
}
@media (max-width: 600px) {
    nav {
        padding: 0 20px;
    }
    .nav__links {
        display: none;
    }
    footer {
        flex-direction: column;
        text-align: center;
    }
    .download__card-single {
        padding: 36px 24px;
    }
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}
