/* css/main.css*/
.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    color: #24292f;
    text-decoration: none;
    background: #fff;
}

.social-btn:hover {
    background: #f6f8fa;
}

@media (prefers-color-scheme: dark) {
    .social-btn {
        background: #0d1117;
        color: #c9d1d9;
        border-color: #30363d;
    }

    .social-btn:hover {
        background: #161b22;
    }
}

/* ===== Notify Modal (CSS-only via :target) ===== */

.notify-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.notify-modal:target {
    display: block;
}

.notify-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

/* Modal box */
.notify-modal-content {
    position: relative;
    width: min(720px, 92vw);
    margin: 10vh auto 0;
    background: rgba(15, 15, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

/* Header area inside modal */
.notify-modal-head {
    padding: 16px 16px 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notify-modal-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent);
}

.notify-modal-sub {
    margin: 8px 0 0 0;
    color: var(--muted-2);
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Body area for iframe */
.notify-modal-body {
    padding: 12px 16px 16px 16px;
}

.notify-modal-body iframe {
    display: block;
    width: 100%;
    height: 170px; /* adjust to your form */
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

/* Close button */
.notify-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.notify-modal-close:hover {
    border-color: rgba(0, 255, 225, 0.35);
    color: #00ffe1;
}

.gt-quote {
    font-size: 1.25rem;
    margin: 16px 0;
    padding-left: 14px;
    border-left: 3px solid var(--accent);
    color: var(--muted-2);
}
.big {
    font-size: 1.8em; /* relative to surrounding text */
    font-weight: 700;
    line-height: 1;
}
/*
.notify-inline {
    padding: 8px 10px;
    margin-top: 15px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}
.notify-inline iframe {
    display: block;
    width: 100%;
    height: 50px;
}*/
/* FAQ accordion (no JS) */
.faq-accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
}

.faq-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.faq-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px;
    cursor: pointer;
    user-select: none;
    font-weight: 900;
    color: #ffffff;
}

.faq-q i {
    transition: transform 0.18s ease;
    color: rgba(255, 255, 255, 0.75);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    transition:
        max-height 0.25s ease,
        padding 0.2s ease;
    color: #d1d1d1;
}

.faq-a p {
    margin: 0 0 12px 0;
    color: #d1d1d1;
}

.faq-a p:last-child {
    margin-bottom: 16px;
}

/* Open state */
.faq-toggle:checked + .faq-q + .faq-a {
    max-height: 800px; /* big enough for your content */
    padding: 0 16px 16px 16px;
}

.faq-toggle:checked + .faq-q i {
    transform: rotate(180deg);
}

/* Hover polish */
.faq-row:hover {
    border-color: rgba(0, 255, 225, 0.24);
    background: rgba(0, 255, 225, 0.05);
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 0;
}

.platform {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d1d1;
}
/* Clickable screenshots */

.shot-link {
    display: block;
    cursor: zoom-in;
}

/* Lightbox (CSS-only via :target) */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.lightbox:target {
    display: block;
}

.lightbox-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

/* Modal box */
.lightbox-content {
    position: relative;
    width: min(1100px, 92vw);
    height: min(86vh, 900px);
    margin: 6vh auto 0;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: zoom-out;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.lightbox-close:hover {
    border-color: rgba(0, 255, 225, 0.35);
    color: #00ffe1;
}

:root {
    --bg: #0f0f0f;
    --panel: rgba(255, 255, 255, 0.05);
    --panel-2: rgba(255, 255, 255, 0.035);
    --border: rgba(255, 255, 255, 0.12);
    --border-2: rgba(255, 255, 255, 0.18);
    --text: #ffffff;
    --muted: #b0b0b0;
    --muted-2: #d0d0d0;
    --accent: #00ffe1;
    --accent-2: #00cdbf;

    --radius: 16px;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg)
        url("https://www.transparenttextures.com/patterns/cubes.png") repeat;
    color: var(--text);
    scroll-behavior: smooth;
}

.content-wrapper {
    background-color: var(--bg);
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 0 20px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background-color: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
    font-size: 2.7em;
    font-weight: 900;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.logo-icon {
    height: 55px;
    width: auto;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 26px;
    font-size: 0.98rem;
    transition:
        color 0.25s,
        background-color 0.25s,
        border-color 0.25s;
    padding: 10px 10px;
    border-radius: 12px;
}

nav a:hover {
    color: var(--accent);
    background-color: rgba(0, 255, 225, 0.06);
}

.nav-cta {
    color: var(--bg);
    background-color: var(--accent);
    font-weight: 800;
    padding: 10px 14px;
}

.nav-cta:hover {
    background-color: var(--accent-2);
    color: var(--bg);
}

/* Sections */
/*section {
    max-width: 980px;
    margin: 70px auto;
    padding: 0 10px;
}*/
section {
    max-width: 100%;
    margin: 70px auto;
    padding: 0 10px;
}
section h2 {
    font-size: 2.05rem;
    margin: 0 0 14px 0;
    color: var(--accent);
    letter-spacing: 0.2px;
}

section p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--muted-2);
    margin-top: 10px;
}

/* Hero */
.hero {
    padding-top: 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
}

.hero-copy h1 {
    margin: 10px 0 6px 0;
    font-size: 3.2rem;
    color: var(--accent);
    letter-spacing: 0.6px;
}

.tagline {
    font-size: 1.45rem;
    font-weight: 350;
    color: var(--muted);
    margin-top: 6px;
}

.lead {
    margin-top: 16px;
    font-size: 1.12rem;
    color: #d7d7d7;
    line-height: 1.8;
}

.eyebrow {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d7d7d7;
    font-size: 0.92rem;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 800;
    letter-spacing: 0.2px;
    transition:
        transform 0.15s,
        background-color 0.2s,
        border-color 0.2s,
        color 0.2s;
    user-select: none;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg);
    border-color: rgba(0, 255, 225, 0.55);
}

.btn-primary:hover {
    background-color: var(--accent-2);
}

.btn-ghost {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: rgba(0, 255, 225, 0.35);
    background-color: rgba(0, 255, 225, 0.06);
    color: var(--accent);
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 16px;
    margin-top: 18px;
    color: #cfcfcf;
    font-size: 0.98rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.hero-note {
    margin-top: 12px;
}

.muted {
    color: var(--muted);
}

code {
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    font-size: 0.92em;
    padding: 2px 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero window mock */
.window-card {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.9;
}

.dot.red {
    background: #ff5f57;
}
.dot.yellow {
    background: #febc2e;
}
.dot.green {
    background: #28c840;
}

.window-title {
    margin-left: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.window-card {
    height: 420px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-media .window-card {
    height: 450px;
}
.hero-media .hero-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transform: scale(1);
    transform-origin: center;
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.stat {
    background: var(--panel-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 16px 16px;
}

.stat-k {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 800;
    letter-spacing: 0.25px;
    margin-bottom: 10px;
}

.stat-v {
    color: var(--accent);
    font-size: 1.15rem;
    font-weight: 900;
}

.stat-s {
    margin-top: 6px;
    color: #cfcfcf;
    opacity: 0.9;
}

/* Screenshots */
.section-head {
    margin-bottom: 18px;
}

.shots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
    align-items: start;
}

.shot {
    overflow: hidden;
    margin: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}
.shot {
    height: 360px; /* controls card height */
}

.shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shot figcaption {
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.98rem;
}

.center {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

/* Features */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 18px 18px;
    transition:
        background-color 0.2s,
        border-color 0.2s,
        transform 0.15s;
}

.feature-item:hover {
    background-color: rgba(0, 255, 225, 0.075);
    border-color: rgba(0, 255, 225, 0.24);
    transform: translateY(-1px);
}

.feature-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.18rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item p {
    margin: 0;
    color: #d1d1d1;
}

/* Privacy */
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 18px;
}

.privacy-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 225, 0.1);
    border: 1px solid rgba(0, 255, 225, 0.24);
    color: var(--accent);
    margin-bottom: 10px;
}

.privacy-card h3 {
    margin: 6px 0 8px 0;
    color: var(--text);
}
.privacy-list {
    margin: 14px 0 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.privacy-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.callout {
    margin-top: 18px;
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 255, 225, 0.2);
    background: rgba(0, 255, 225, 0.06);
}

.callout-title {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.callout-body {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.75;
}

/* FAQ */
.faq {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 16px 16px;
}

.faq-item h3 {
    margin: 0 0 10px 0;
    color: var(--text);
    font-size: 1.18rem;
}

.faq-item p {
    margin: 0;
    color: #d1d1d1;
}

/* Final CTA */
.final-cta {
    margin-top: 80px;
    margin-bottom: 60px;
}

.final-cta-inner {
    padding: 22px;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(
        180deg,
        rgba(0, 255, 225, 0.08),
        rgba(255, 255, 255, 0.02)
    );
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 80px;
    font-size: 0.92rem;
    color: #777;
    padding-bottom: 40px;
}

/* Responsive */
@media screen and (max-width: 980px) {
    header {
        padding: 16px 20px;
    }
    nav a {
        margin-left: 10px;
        padding: 8px 10px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: 1fr;
    }
    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .shot img {
        height: 420px;
    }
}

@media screen and (max-width: 768px) {
    .notify-modal-content {
        margin: 6vh auto 0;
        width: min(92vw, 720px);
    }
    .notify-modal-body iframe {
        height: 210px; /* mobile usually needs more height */
    }
    .content-wrapper {
        padding: 0 16px;
    }
    .logo {
        font-size: 1.5rem;
    }
    .hero-copy h1 {
        font-size: 2.7rem;
    }
    .tagline {
        font-size: 1.25rem;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        margin-top: 10px;
    }
    nav a {
        margin: 8px 10px 0 0;
        display: inline-block;
    }

    .shots {
        grid-template-columns: 1fr;
    }

    .shot img {
        height: 380px;
    }

    .hero-shot {
        max-height: 560px;
    }
}
