@charset "UTF-8";

/* ---------------------------------
   TOKENS
----------------------------------*/
:root {
    --accent: #2f6fed;
    --accent-2: #14b8a6;
    --accent-contrast: #ffffff;

    --bg: #ffffff;
    --bg-alt: #f5f7fb;
    --surface: #ffffff;
    --text: #10141f;
    --text-muted: #5b6272;
    --border: #e6e9f0;

    --header-bg: rgba(255, 255, 255, 0.7);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 1px 2px rgba(16, 20, 31, 0.06);
    --shadow-md: 0 12px 32px rgba(16, 20, 31, 0.08);
    --shadow-lg: 0 24px 60px rgba(16, 20, 31, 0.14);

    --container: 1160px;
    color-scheme: light;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0b0d14;
        --bg-alt: #10131c;
        --surface: #151926;
        --text: #f2f4f8;
        --text-muted: #9aa1b4;
        --border: #232838;
        --header-bg: rgba(11, 13, 20, 0.7);
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
        --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
        color-scheme: dark;
    }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 0.6em;
    font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--text-muted); }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.8em;
}

/* ---------------------------------
   BUTTONS
----------------------------------*/
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-light {
    background: #fff;
    color: #10141f;
    box-shadow: var(--shadow-md);
}

.btn-light:hover { transform: translateY(-2px); }

.btn-small { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* ---------------------------------
   HEADER
----------------------------------*/
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: var(--header-bg);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
}

.brand img { border-radius: 8px; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a:not(.btn) {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.15s ease;
}

.site-nav a:not(.btn):hover { color: var(--text); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 0 8px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
    .nav-toggle { display: flex; }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px 24px 20px;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        display: none;
    }

    .site-nav.is-open { display: flex; }

    .site-nav a:not(.btn) { padding: 10px 0; }

    .site-nav .btn { margin-top: 8px; justify-content: center; }
}

/* ---------------------------------
   HERO
----------------------------------*/
.hero {
    padding: 72px 0 40px;
    background:
        radial-gradient(60% 60% at 85% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent),
        var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-copy .lead {
    font-size: 1.1rem;
    max-width: 42ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 1.8rem;
}

.hero-media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 340px;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin: 2.4rem 0 0;
}

.hero-stats dt {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
}

.hero-stats dd {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .hero-copy .lead { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
}

/* ---------------------------------
   SECTIONS
----------------------------------*/
.section { padding: 88px 0; }

.section.alt { background: var(--bg-alt); }

.section-head {
    max-width: 640px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-sub { font-size: 1.02rem; }

/* ---------------------------------
   FEATURES
----------------------------------*/
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 1rem;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card p { margin-bottom: 0; font-size: 0.94rem; }

@media (max-width: 860px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .feature-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------
   PREVIEW / VIDEO
----------------------------------*/
.preview-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 860px) {
    .preview-grid { grid-template-columns: 1fr; text-align: center; }
}

/* ---------------------------------
   CAROUSELS (screenshots + reviews)
----------------------------------*/
.carousel {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 4px 20px;
    flex: 1;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

#screens-track img {
    scroll-snap-align: center;
    flex: 0 0 auto;
    width: min(78vw, 260px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.carousel-btn {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: background 0.15s ease, color 0.15s ease;
}

.carousel-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.testimonial {
    scroll-snap-align: center;
    flex: 0 0 auto;
    width: min(88vw, 420px);
    margin: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
}

.testimonial img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-sm);
}

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

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ---------------------------------
   CTA
----------------------------------*/
.cta {
    background: linear-gradient(135deg, #1c2a5e, #2f6fed 60%, #14b8a6);
    color: #fff;
    padding: 80px 0;
}

.cta-inner { text-align: center; }

.cta h2 { color: #fff; }

.cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

/* ---------------------------------
   FOOTER
----------------------------------*/
.site-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.footer-location { margin: 0 0 0.3em; font-weight: 600; color: var(--text); }

.footer-email { color: var(--accent); font-weight: 600; }

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}
