/* Strelok Pro — tactical / technical / dark HUD */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --strk-bg:          #0A0C13;
    --strk-bg-2:        #0F1220;
    --strk-panel:       #141826;
    --strk-panel-2:     #1B2033;
    --strk-line:        #222838;
    --strk-line-strong: #2A3045;
    --strk-text:        #E8EBF2;
    --strk-text-muted:  #8C93A8;
    --strk-text-dim:    #5C6278;
    --strk-accent:      #3B82F6;
    --strk-accent-hi:   #5AA0FF;
    --strk-accent-glow: rgba(59, 130, 246, 0.35);
    --strk-green:       #10B981;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

    --max-w: 1440px;
    --gutter: 48px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--strk-bg);
    color: var(--strk-text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.005em;
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 12% -10%, rgba(59, 130, 246, 0.08), transparent 45%),
        radial-gradient(circle at 95% 20%, rgba(16, 185, 129, 0.05), transparent 40%);
}

/* ─── Topbar ─────────────────────────────────────────────── */
.strk-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--gutter);
    background: rgba(10, 12, 19, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--strk-line);
}
.strk-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--strk-text);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 14px;
    text-transform: uppercase;
}
.strk-reticle {
    width: 22px;
    height: 22px;
    color: var(--strk-accent);
    flex-shrink: 0;
}
.strk-brand-mark {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}
.strk-nav { display: flex; gap: 28px; }
.strk-nav a {
    color: var(--strk-text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
.strk-nav a:hover { color: var(--strk-text); }

/* ─── Hero ───────────────────────────────────────────────── */
.strk-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 120px var(--gutter) 80px;
    overflow: hidden;
    isolation: isolate;
}
.strk-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}
.strk-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.85;
    filter: grayscale(0.35) contrast(1.05) brightness(0.55) saturate(0.85);
    will-change: transform;
    transform: translate3d(0, 0, 0) scale(1);
    transition: transform 0.1s linear;
}
.strk-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 45%, transparent 0%, rgba(10,12,19,0.35) 55%, rgba(10,12,19,0.85) 100%),
        linear-gradient(180deg, rgba(10,12,19,0.85) 0%, rgba(10,12,19,0.45) 30%, rgba(10,12,19,0.55) 60%, rgba(10,12,19,0.95) 90%, var(--strk-bg) 100%),
        linear-gradient(90deg, rgba(10,12,19,0.7) 0%, transparent 30%, transparent 70%, rgba(10,12,19,0.7) 100%);
}

.strk-hero-inner {
    position: relative;
    max-width: 780px;
    width: 100%;
    z-index: 1;
}
.strk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--strk-accent);
    padding: 6px 12px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 2px;
    background: rgba(59, 130, 246, 0.08);
    margin-bottom: 28px;
}
.strk-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--strk-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--strk-accent-glow);
    animation: strk-pulse 2s ease-in-out infinite;
}
@keyframes strk-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.strk-hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 112px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 24px;
}
.strk-accent {
    background: linear-gradient(135deg, var(--strk-accent), var(--strk-accent-hi));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.strk-hero-sub {
    font-size: clamp(17px, 1.4vw, 20px);
    color: #DCE0EC;
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}
.strk-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.strk-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
}
.strk-btn-primary {
    background: var(--strk-accent);
    color: #fff;
    box-shadow: 0 10px 30px -10px var(--strk-accent-glow);
}
.strk-btn-primary:hover {
    background: var(--strk-accent-hi);
    transform: translateY(-1px);
    box-shadow: 0 14px 36px -10px rgba(59, 130, 246, 0.55);
}
.strk-btn-ghost {
    background: transparent;
    color: var(--strk-text);
    border-color: var(--strk-line-strong);
}
.strk-btn-ghost:hover {
    border-color: var(--strk-text-muted);
    background: rgba(255, 255, 255, 0.03);
}

.strk-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 640px;
    border: 1px solid var(--strk-line);
    border-radius: 4px;
    background: rgba(10, 12, 19, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.strk-hero-stats > div {
    padding: 18px 20px;
    border-right: 1px solid var(--strk-line);
}
.strk-hero-stats > div:last-child { border-right: none; }
.strk-hero-stats dt {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--strk-text-dim);
    margin-bottom: 6px;
}
.strk-hero-stats dd {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--strk-text);
    letter-spacing: -0.01em;
}

/* ─── Spec strip ─────────────────────────────────────────── */
.strk-specstrip {
    position: relative;
    padding: 0 var(--gutter);
    max-width: var(--max-w);
    margin: -48px auto 0;
    z-index: 3;
}
.strk-specstrip ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid var(--strk-line-strong);
    background: linear-gradient(180deg, var(--strk-panel), var(--strk-bg-2));
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.strk-specstrip li {
    padding: 24px 20px;
    border-right: 1px solid var(--strk-line);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}
.strk-specstrip li::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--strk-accent);
    border-left: 1px solid var(--strk-accent);
}
.strk-specstrip li:last-child { border-right: none; }
.strk-spec-key {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 600;
    color: var(--strk-text);
    letter-spacing: -0.005em;
    padding-left: 16px;
}
.strk-spec-val {
    font-size: 12px;
    color: var(--strk-text-muted);
    letter-spacing: 0.01em;
    padding-left: 16px;
}

/* ─── Headline section ──────────────────────────────────── */
.strk-headline {
    padding: 140px var(--gutter) 80px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.strk-headline h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
    max-width: 18ch;
}

/* ─── Feature rows ───────────────────────────────────────── */
.strk-features {
    padding: 0 var(--gutter) 80px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.strk-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-top: 1px solid var(--strk-line);
    position: relative;
}
.strk-feature::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--strk-accent);
}
.strk-feature-reverse .strk-feature-copy { order: 2; }
.strk-feature-reverse .strk-feature-media { order: 1; }

.strk-feature-copy { max-width: 520px; }
.strk-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--strk-accent);
    padding: 5px 10px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 2px;
    margin-bottom: 24px;
}
.strk-feature h3 {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.6vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 20px;
}
.strk-feature-copy p {
    font-size: 17px;
    color: var(--strk-text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}
.strk-feature-copy em {
    font-style: normal;
    color: var(--strk-text);
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 6px;
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: 0.95em;
}
.strk-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    padding: 0;
}
.strk-bullets li {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--strk-text);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.strk-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 1px;
    background: var(--strk-accent);
}

.strk-feature-media {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.strk-feature-media::before,
.strk-feature-media::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--strk-accent);
    border-style: solid;
    pointer-events: none;
    z-index: 2;
}
.strk-feature-media::before {
    top: 12px;
    left: 12px;
    border-width: 1px 0 0 1px;
}
.strk-feature-media::after {
    bottom: 12px;
    right: 12px;
    border-width: 0 1px 1px 0;
}
.strk-feature-media img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    border: 1px solid var(--strk-line-strong);
    background: var(--strk-panel);
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
}

/* ─── Data band ──────────────────────────────────────────── */
.strk-databand {
    position: relative;
    padding: 100px var(--gutter);
    max-width: var(--max-w);
    margin: 40px auto 0;
    border-top: 1px solid var(--strk-line);
    border-bottom: 1px solid var(--strk-line);
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(59, 130, 246, 0.03) 60px,
            rgba(59, 130, 246, 0.03) 61px
        );
}
.strk-databand-inner {
    max-width: 860px;
    margin: 0 auto;
}
.strk-databand h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 16px 0 24px;
}
.strk-databand-body {
    font-size: 18px;
    color: var(--strk-text-muted);
    line-height: 1.65;
    max-width: 620px;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.strk-faq {
    padding: 120px var(--gutter);
    max-width: 960px;
    margin: 0 auto;
}
.strk-faq h2 {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--strk-accent);
    margin-bottom: 40px;
}
.strk-faq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--strk-line);
    cursor: pointer;
    transition: padding-left 0.2s ease;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    letter-spacing: -0.015em;
    outline: none;
}
.strk-faq-item:last-of-type { border-bottom: 1px solid var(--strk-line); }
.strk-faq-item:hover { padding-left: 8px; }
.strk-faq-item:focus-visible { padding-left: 8px; }
.strk-faq-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--strk-text-muted);
    transition: transform 0.3s ease, color 0.2s ease;
}
.strk-faq-item.open svg {
    transform: rotate(180deg);
    color: var(--strk-accent);
}
.strk-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.25s ease, padding 0.3s ease;
    padding: 0 0 0 0;
}
.strk-faq-answer.open {
    max-height: 400px;
    opacity: 1;
    padding: 0 0 24px 0;
}
.strk-faq-answer p {
    font-size: 16px;
    color: var(--strk-text-muted);
    line-height: 1.65;
    max-width: 70ch;
}

/* ─── CTA band ───────────────────────────────────────────── */
.strk-cta {
    position: relative;
    padding: 120px var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
    overflow: hidden;
    isolation: isolate;
}
.strk-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, var(--strk-bg-2), var(--strk-bg));
    border-top: 1px solid var(--strk-line);
    border-bottom: 1px solid var(--strk-line);
    border-radius: 0;
}
.strk-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.strk-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: 20px;
}
.strk-cta p {
    font-size: 18px;
    color: var(--strk-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}
.strk-downloads {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.strk-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-sans);
    transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
    border: 1px solid var(--strk-line-strong);
    min-width: 220px;
    background: var(--strk-panel);
}
.strk-store svg { flex-shrink: 0; }
.strk-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
    text-align: left;
}
.strk-store-small {
    font-size: 10px;
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--strk-text-muted);
}
.strk-store-big {
    font-size: 18px;
    font-weight: 600;
    margin-top: 4px;
    color: var(--strk-text);
    letter-spacing: -0.01em;
}
.strk-store-apple {
    background: var(--strk-accent);
    border-color: var(--strk-accent);
    color: #fff;
    box-shadow: 0 10px 30px -10px var(--strk-accent-glow);
}
.strk-store-apple .strk-store-small { color: rgba(255, 255, 255, 0.8); }
.strk-store-apple .strk-store-big { color: #fff; }
.strk-store-apple:hover {
    transform: translateY(-1px);
    background: var(--strk-accent-hi);
    border-color: var(--strk-accent-hi);
}
.strk-store-android .strk-store-small { color: rgba(255, 255, 255, 0.8); }
.strk-store-android .strk-store-big { color: #fff; }
.strk-store-android:hover {
    transform: translateY(-1px);
    background: var(--strk-accent-hi);
    border-color: var(--strk-accent-hi);
}

/* ─── Footer ─────────────────────────────────────────────── */
.strk-footer {
    padding: 48px var(--gutter) 80px;
    max-width: var(--max-w);
    margin: 0 auto;
    border-top: 1px solid var(--strk-line);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}
.strk-footer-copyright {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--strk-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.strk-footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.strk-footer-links a {
    color: var(--strk-text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}
.strk-footer-links a:hover { color: var(--strk-text); }
.strk-footer-links span { color: var(--strk-text-dim); font-size: 12px; }
.strk-footer-disclaimer {
    max-width: 680px;
    font-size: 12px;
    color: var(--strk-text-dim);
    line-height: 1.55;
    font-family: var(--font-mono);
}

/* ─── Legal pages (privacy / terms / support) ────────────── */
.suite-legal-page {
    min-height: 100vh;
    background: var(--strk-bg);
    padding: 120px 24px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.suite-legal-container { max-width: 760px; width: 100%; }
.suite-legal-container .suite-header {
    margin-bottom: 40px;
}
.suite-legal-container .suite-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--strk-text);
    text-decoration: none;
}
.suite-legal-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--strk-text);
    margin-bottom: 12px;
}
.suite-legal-updated {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--strk-text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.suite-legal-content {
    background: var(--strk-panel);
    border: 1px solid var(--strk-line);
    border-radius: 6px;
    padding: 48px;
}
.suite-legal-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--strk-text);
    letter-spacing: -0.01em;
}
.suite-legal-content h2:first-child { margin-top: 0; }
.suite-legal-content p,
.suite-legal-content li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--strk-text-muted);
    margin-bottom: 14px;
}
.suite-legal-content strong { color: var(--strk-text); }
.suite-legal-content a { color: var(--strk-accent); text-decoration: none; }
.suite-legal-content a:hover { text-decoration: underline; }
.suite-legal-content ul { padding-left: 24px; margin: 16px 0; }
.suite-legal-content li { margin-bottom: 8px; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    :root { --gutter: 32px; }
    .strk-hero-stats { grid-template-columns: repeat(4, 1fr); }
    .strk-specstrip ul { grid-template-columns: repeat(3, 1fr); }
    .strk-specstrip li:nth-child(3) { border-right: none; }
    .strk-specstrip li:nth-child(n+4) { border-top: 1px solid var(--strk-line); }
}

@media (max-width: 860px) {
    :root { --gutter: 24px; }
    .strk-nav { display: none; }

    .strk-hero {
        padding: 120px var(--gutter) 64px;
        min-height: auto;
    }
    .strk-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .strk-hero-stats > div:nth-child(2) { border-right: none; }
    .strk-hero-stats > div:nth-child(n+3) { border-top: 1px solid var(--strk-line); }

    .strk-specstrip { margin-top: -32px; }
    .strk-specstrip ul { grid-template-columns: 1fr 1fr; }
    .strk-specstrip li:nth-child(2n) { border-right: none; }
    .strk-specstrip li:nth-child(n+3) { border-top: 1px solid var(--strk-line); }

    .strk-headline { padding: 80px var(--gutter) 48px; }
    .strk-features { padding: 0 var(--gutter) 48px; }
    .strk-feature {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 0;
    }
    .strk-feature-reverse .strk-feature-copy { order: 1; }
    .strk-feature-reverse .strk-feature-media { order: 2; }
    .strk-bullets { grid-template-columns: 1fr; }
    .strk-databand { padding: 72px var(--gutter); }
    .strk-faq { padding: 80px var(--gutter); }
    .strk-cta { padding: 80px var(--gutter); }

    .suite-legal-content { padding: 32px 24px; }
}

@media (max-width: 520px) {
    .strk-hero-stats { grid-template-columns: 1fr 1fr; }
    .strk-store { min-width: 0; flex: 1 0 calc(50% - 7px); justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .strk-hero-bg img { transform: none !important; }
    .strk-eyebrow::before { animation: none; }
    * { transition-duration: 0.01ms !important; }
}
