:root {
    --background: #07111f;
    --background-deep: #040b14;
    --surface: #0c1a2b;
    --surface-raised: #102238;
    --surface-light: #f5f7fb;
    --surface-white: #ffffff;
    --text: #f3f7ff;
    --text-dark: #142137;
    --muted: #9eafc7;
    --muted-dark: #64748b;
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.18);
    --line-dark: #dce4ef;
    --primary: #6475ff;
    --primary-strong: #4d60ef;
    --primary-soft: #aab3ff;
    --accent: #35d5b0;
    --accent-dark: #0c8b70;
    --danger: #ff6b7a;
    --warning: #ffcb67;
    --success: #4bd59f;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 16px 44px rgba(7, 17, 31, 0.12);
    --radius: 20px;
    --radius-small: 13px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 {
    margin-bottom: 24px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 0.99;
    letter-spacing: -0.06em;
}
h2 {
    margin-bottom: 18px;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}
h3 { line-height: 1.2; letter-spacing: -0.02em; }
code { font-size: 0.86em; }

.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 200;
    padding: 10px 14px;
    border-radius: 10px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
}
.skip-link:focus { top: 16px; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 40px)); }
.center { text-align: center; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 17, 31, 0.88);
    backdrop-filter: blur(20px);
}
.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
}
.brand-mark {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.5px;
    box-shadow: 0 10px 28px rgba(100, 117, 255, 0.3);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 17px; }
.brand-copy small { margin-top: 3px; color: var(--muted); font-size: 10px; font-weight: 600; }
.desktop-nav { display: flex; align-items: center; gap: 22px; }
.desktop-nav > a:not(.nav-button) {
    position: relative;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}
.desktop-nav > a:not(.nav-button):hover,
.desktop-nav > a[aria-current="page"] { color: var(--text); }
.desktop-nav > a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 2px;
    border-radius: 99px;
    background: var(--accent);
}
.inline-form { margin: 0; }
.nav-button, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 12px;
    padding: 11px 18px;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}
.nav-button:hover, .button:hover { transform: translateY(-1px); }
.nav-button-primary, .button-primary { background: var(--primary); color: white; box-shadow: 0 12px 30px rgba(100, 117, 255, 0.22); }
.nav-button-primary:hover, .button-primary:hover { background: var(--primary-strong); }
.nav-button-secondary, .button-secondary { border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.04); color: var(--text); }
.button-large { min-height: 54px; padding: 14px 23px; }
.button-full { width: 100%; }
.button-disabled { background: #334155; color: #94a3b8; cursor: not-allowed; box-shadow: none; }
.button-disabled:hover { transform: none; }
.text-link { color: var(--primary-soft); font-weight: 800; text-decoration: none; }
.text-link:hover { color: white; }

.mobile-nav { display: none; position: relative; }
.mobile-nav summary { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary span { width: 20px; height: 2px; border-radius: 99px; background: white; }
.mobile-nav nav { position: absolute; right: 0; top: 54px; width: min(290px, calc(100vw - 32px)); display: flex; flex-direction: column; gap: 4px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #0b1727; box-shadow: var(--shadow); }
.mobile-nav nav a, .mobile-nav nav button { width: 100%; display: block; padding: 12px 13px; border: 0; border-radius: 10px; background: transparent; text-align: left; text-decoration: none; font-weight: 750; cursor: pointer; }
.mobile-nav nav a:hover, .mobile-nav nav button:hover { background: rgba(255,255,255,0.06); }
.mobile-primary-link { background: var(--primary) !important; }

.messages { padding-top: 18px; }
.message, .processing-banner { margin-bottom: 22px; padding: 15px 18px; border: 1px solid rgba(255, 203, 103, 0.32); border-radius: 12px; background: rgba(255, 203, 103, 0.1); color: #ffe3a8; }
.message-success, .processing-banner-success { border-color: rgba(75, 213, 159, 0.34); background: rgba(75, 213, 159, 0.1); color: #a9f3d6; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 106px 0 92px;
    background:
        radial-gradient(circle at 77% 25%, rgba(100, 117, 255, 0.23), transparent 31%),
        radial-gradient(circle at 15% 15%, rgba(53, 213, 176, 0.11), transparent 27%),
        linear-gradient(180deg, #07111f, #081422);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent); }
.hero-grid { display: grid; grid-template-columns: 1.03fr 0.97fr; align-items: center; gap: 76px; }
.hero-content h1 span { display: block; color: #aeb8ff; }
.hero-badge { width: fit-content; display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; padding: 7px 11px; border: 1px solid rgba(53, 213, 176, 0.28); border-radius: 999px; background: rgba(53, 213, 176, 0.08); color: #c9f9ed; font-size: 12px; font-weight: 750; }
.hero-badge span { padding: 2px 7px; border-radius: 999px; background: var(--accent); color: #06231d; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-badge-centered { margin-left: auto; margin-right: auto; }
.hero-copy, .page-hero p, .section-lead { color: var(--muted); font-size: 19px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 34px 0 20px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 18px; color: var(--muted); font-size: 13px; font-weight: 650; }
.hero-proof span::before { content: "✓"; margin-right: 7px; color: var(--accent); font-weight: 900; }

.product-showcase { position: relative; min-height: 510px; display: grid; place-items: center; }
.showcase-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(100, 117, 255, 0.16); filter: blur(50px); }
.showcase-window { position: relative; z-index: 2; width: 100%; overflow: hidden; border: 1px solid rgba(255,255,255,0.16); border-radius: 23px; background: rgba(8, 18, 31, 0.95); box-shadow: 0 35px 100px rgba(0,0,0,0.42); transform: perspective(1100px) rotateY(-5deg) rotateX(2deg); }
.showcase-titlebar { min-height: 52px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 17px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.showcase-titlebar > strong { color: var(--text); font-size: 12px; }
.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.online-dot { justify-self: end; color: var(--success); }
.online-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--success); }
.showcase-layout { display: grid; grid-template-columns: 116px 1fr; min-height: 345px; }
.showcase-sidebar { display: flex; flex-direction: column; gap: 4px; padding: 19px 11px; border-right: 1px solid var(--line); background: rgba(255,255,255,0.025); }
.showcase-sidebar span { padding: 8px 9px; border-radius: 7px; color: #6f8097; font-size: 10px; }
.showcase-sidebar span.active { background: rgba(100,117,255,0.14); color: #c9ceff; }
.showcase-main { padding: 23px; }
.showcase-file { display: flex; flex-direction: column; padding: 14px 16px; border: 1px dashed rgba(100,117,255,0.4); border-radius: 12px; background: rgba(100,117,255,0.07); }
.showcase-file span, .showcase-file small, .showcase-fields span, .showcase-total span { color: var(--muted); font-size: 9px; }
.showcase-file strong { margin: 3px 0; font-size: 12px; }
.showcase-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 15px; }
.showcase-fields div { display: flex; flex-direction: column; padding: 11px 12px; border-radius: 9px; background: rgba(255,255,255,0.04); }
.showcase-fields strong { margin-top: 3px; font-size: 11px; }
.showcase-total { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; padding: 16px; border-radius: 12px; background: linear-gradient(135deg, rgba(100,117,255,0.2), rgba(53,213,176,0.09)); }
.showcase-total div { display: flex; flex-direction: column; }
.showcase-total strong { font-size: 15px; }
.showcase-check { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #05241d; font-weight: 900; }
.floating-card { position: absolute; z-index: 4; display: flex; flex-direction: column; gap: 2px; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(13, 29, 48, 0.93); box-shadow: 0 16px 50px rgba(0,0,0,0.34); backdrop-filter: blur(14px); }
.floating-card span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; }
.floating-card strong { font-size: 12px; }
.floating-card-area { left: -30px; bottom: 80px; }
.floating-card-local { right: -18px; top: 65px; }

.workflow-strip { border-bottom: 1px solid var(--line); background: #091626; }
.workflow-strip-inner { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: 21px; color: #d9e3f3; font-size: 13px; font-weight: 800; }
.workflow-strip i { color: var(--accent); font-style: normal; }

.section { padding: 96px 0; }
.section-light { background: var(--surface-light); color: var(--text-dark); }
.section-heading { max-width: 730px; margin-bottom: 44px; }
.section-heading-wide { max-width: none; display: grid; grid-template-columns: 1fr 0.72fr; align-items: end; gap: 70px; }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 18px; }
.section-light .section-heading p { color: var(--muted-dark); }
.center-heading { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { margin-bottom: 14px; color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.section-light .eyebrow { color: var(--accent-dark); }

.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.workflow-card { position: relative; min-height: 300px; padding: 27px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.workflow-card::after { content: ""; position: absolute; right: -11px; top: 52px; z-index: 2; width: 20px; height: 20px; border-top: 1px solid #bfc9d8; border-right: 1px solid #bfc9d8; transform: rotate(45deg); background: white; }
.workflow-card:last-child::after { display: none; }
.step-number { color: #9ba8bb; font-size: 11px; font-weight: 900; letter-spacing: 0.1em; }
.step-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 25px 0 20px; border-radius: 15px; background: #eef1ff; color: var(--primary-strong); font-size: 12px; font-weight: 900; }
.workflow-card h3 { margin-bottom: 10px; font-size: 20px; }
.workflow-card p { margin: 0; color: var(--muted-dark); font-size: 14px; }

.split-section { display: grid; grid-template-columns: 1fr 0.84fr; align-items: center; gap: 86px; }
.split-copy > p { max-width: 660px; color: var(--muted); font-size: 18px; }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin: 32px 0 0; padding: 0; list-style: none; }
.benefit-list li { display: flex; flex-direction: column; gap: 5px; padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,0.025); }
.benefit-list strong { font-size: 14px; }
.benefit-list span { color: var(--muted); font-size: 12px; }
.metrics-panel { display: flex; flex-direction: column; gap: 14px; padding: 25px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(155deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)); box-shadow: var(--shadow); }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metric-card { display: flex; flex-direction: column; gap: 4px; min-height: 120px; justify-content: end; padding: 20px; border-radius: 15px; background: rgba(255,255,255,0.05); }
.metric-card-primary { min-height: 175px; background: linear-gradient(135deg, rgba(100,117,255,0.26), rgba(53,213,176,0.11)); }
.metric-card span, .metric-card small { color: var(--muted); font-size: 11px; }
.metric-card strong { font-size: 21px; }

.section-local { background: linear-gradient(180deg, #091728, #07111f); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.local-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: 70px; }
.local-grid h2 { max-width: 560px; }
.section-lead { margin-bottom: 24px; }
.data-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.data-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.data-card-local { border-color: rgba(53,213,176,0.28); background: linear-gradient(155deg, rgba(53,213,176,0.1), rgba(255,255,255,0.025)); }
.data-card-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.data-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; background: rgba(100,117,255,0.15); color: var(--primary-soft); font-size: 11px; font-weight: 900; }
.data-card-local .data-icon { background: rgba(53,213,176,0.14); color: #8ff1d9; }
.data-card-heading div { display: flex; flex-direction: column; }
.data-card-heading small { color: var(--muted); }
.data-card ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.data-card li::before { content: "✓"; margin-right: 8px; color: var(--accent); font-weight: 900; }

.quote-cta { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: 48px; border: 1px solid var(--line-strong); border-radius: 26px; background: linear-gradient(135deg, rgba(100,117,255,0.19), rgba(53,213,176,0.08)); box-shadow: var(--shadow); }
.quote-cta > div:first-child { max-width: 720px; }
.quote-cta h2 { margin-bottom: 12px; }
.quote-cta p { margin-bottom: 0; color: var(--muted); font-size: 17px; }
.cta-actions { min-width: 260px; display: flex; flex-direction: column; gap: 11px; text-align: center; }
.cta-actions span { color: var(--muted); font-size: 11px; }

.page-hero { padding: 88px 0 48px; background: radial-gradient(circle at 50% 0%, rgba(100,117,255,0.14), transparent 34%); }
.page-hero h1 { font-size: clamp(42px, 5.5vw, 64px); }
.page-hero p { margin-bottom: 0; }
.page-hero-split { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 80px; }

.pricing-hero { padding-bottom: 28px; }
.pricing-section { padding-top: 26px; }
.pricing-layout { display: grid; grid-template-columns: 1fr 320px; align-items: start; gap: 20px; }
.pricing-card { overflow: hidden; border: 1px solid var(--line-dark); border-radius: 25px; background: white; color: var(--text-dark); box-shadow: var(--shadow); }
.pricing-card-top { display: flex; justify-content: space-between; gap: 42px; padding: 39px; border-bottom: 1px solid var(--line-dark); }
.pricing-card h2 { margin: 8px 0 10px; font-size: 34px; }
.pricing-card p { color: var(--muted-dark); }
.plan-label, .card-label, .card-kicker { color: var(--primary-strong); font-size: 11px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.price-block { min-width: 205px; text-align: right; }
.price-value { display: block; font-size: 52px; font-weight: 900; line-height: 1; letter-spacing: -0.055em; }
.price-period, .price-note { display: block; color: var(--muted-dark); }
.price-period { margin-top: 4px; font-size: 13px; font-weight: 700; }
.price-note { margin-top: 9px; font-size: 11px; }
.trial-banner { display: flex; align-items: center; gap: 14px; margin: 25px 38px 0; padding: 15px; border: 1px solid #cde9df; border-radius: 14px; background: #f0fbf7; }
.trial-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; background: var(--accent); color: #06251e; font-size: 13px; font-weight: 900; }
.trial-banner div:last-child { display: flex; flex-direction: column; }
.trial-banner span { color: var(--muted-dark); font-size: 12px; }
.pricing-feature-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 30px 38px; }
.pricing-feature-groups h3 { margin-bottom: 16px; font-size: 15px; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 25px; margin: 0; padding: 0; list-style: none; }
.check-list-single { grid-template-columns: 1fr; }
.check-list li { color: #42526a; font-size: 13px; }
.check-list li::before { content: "✓"; margin-right: 9px; color: #10a47b; font-weight: 900; }
.pricing-action { padding: 0 38px 38px; text-align: center; }
.pricing-action p { margin: 13px 0 0; color: var(--muted-dark); font-size: 12px; }
.pricing-sidebar { display: flex; flex-direction: column; gap: 14px; }
.pricing-side-card { padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.pricing-side-card h3 { margin: 9px 0 8px; font-size: 20px; }
.pricing-side-card p { margin: 0; color: var(--muted); font-size: 13px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 30px; margin-top: 25px; color: var(--muted); font-size: 12px; font-weight: 700; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--accent); }
.pricing-faq-section { padding-top: 76px; }

.download-proof { margin-top: 25px; }
.windows-badge { width: 210px; min-height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 25px; background: linear-gradient(145deg, rgba(100,117,255,0.16), rgba(255,255,255,0.03)); box-shadow: var(--shadow); }
.windows-badge strong { margin-top: 16px; font-size: 22px; }
.windows-badge small { color: var(--muted); }
.windows-icon { width: 70px; height: 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; transform: perspective(100px) rotateY(-8deg); }
.windows-icon span { background: linear-gradient(135deg, var(--primary), #8ea0ff); }
.download-section { padding-top: 32px; }
.download-layout { display: grid; grid-template-columns: 1fr 360px; gap: 20px; }
.download-card, .download-side-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.download-card-main { display: flex; flex-direction: column; gap: 27px; padding: 32px; }
.download-card-heading { display: flex; align-items: flex-start; gap: 20px; }
.download-card h2 { margin: 6px 0 6px; font-size: 28px; }
.download-card p { margin-bottom: 0; color: var(--muted); }
.download-icon { width: 58px; height: 58px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 16px; background: rgba(100,117,255,0.17); color: #aeb7ff; font-size: 27px; font-weight: 900; }
.download-meta { text-align: center; font-size: 12px; }
.download-side-card { padding: 27px; }
.download-side-card h3 { margin-bottom: 22px; }
.requirements-list { margin: 0; }
.requirements-list div { padding: 13px 0; border-bottom: 1px solid var(--line); }
.requirements-list div:last-child { border-bottom: 0; }
.requirements-list dt { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.requirements-list dd { margin: 3px 0 0; font-weight: 700; }
.install-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.install-steps article { padding: 28px; border: 1px solid var(--line-dark); border-radius: 18px; background: white; box-shadow: var(--shadow-soft); }
.install-steps article > span { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 23px; border-radius: 11px; background: #eef1ff; color: var(--primary-strong); font-weight: 900; }
.install-steps h3 { margin-bottom: 9px; }
.install-steps p { color: var(--muted-dark); font-size: 14px; }
.install-steps a { color: var(--primary-strong); text-decoration: none; font-size: 13px; font-weight: 800; }
.security-note { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.security-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: rgba(53,213,176,0.13); color: var(--accent); font-size: 22px; font-weight: 900; }
.security-note h2 { margin-bottom: 7px; font-size: 27px; }
.security-note p { margin: 0; color: var(--muted); }

.faq-section { padding-top: 30px; }
.faq-layout { display: grid; grid-template-columns: 220px 1fr; align-items: start; gap: 65px; }
.faq-index { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 8px; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.faq-index strong { margin-bottom: 7px; font-size: 13px; }
.faq-index a { padding: 8px 9px; border-radius: 8px; color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 700; }
.faq-index a:hover { background: rgba(255,255,255,0.05); color: white; }
.faq-group { scroll-margin-top: 110px; margin-bottom: 55px; }
.faq-group-heading { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.faq-group-heading > span { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; background: rgba(100,117,255,0.14); color: var(--primary-soft); font-size: 11px; font-weight: 900; }
.faq-group-heading h2 { margin: 0 0 2px; font-size: 28px; }
.faq-group-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.faq-list details { margin-bottom: 11px; padding: 21px 23px; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--surface); }
.faq-list summary { position: relative; padding-right: 32px; cursor: pointer; font-weight: 780; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: -3px; color: var(--accent); font-size: 22px; font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 14px 0 0; color: var(--muted); }
.compact-faq details { border-color: var(--line-dark); background: white; }
.compact-faq details p { color: var(--muted-dark); }
.support-callout { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 30px; padding: 24px; border: 1px solid var(--line-strong); border-radius: 17px; background: linear-gradient(135deg, rgba(100,117,255,0.13), rgba(53,213,176,0.06)); }
.support-callout > div { display: flex; flex-direction: column; }
.support-callout span { color: var(--muted); font-size: 13px; }
.support-pending { font-style: italic; }

.auth-section { min-height: calc(100vh - 80px); display: grid; place-items: center; padding: 76px 0; background: radial-gradient(circle at 15% 20%, rgba(53,213,176,0.09), transparent 30%), radial-gradient(circle at 80% 10%, rgba(100,117,255,0.16), transparent 34%); }
.auth-layout { display: grid; grid-template-columns: 1fr 500px; align-items: center; gap: 90px; }
.auth-value-panel h1 { font-size: clamp(40px, 5vw, 60px); }
.auth-value-panel > p { max-width: 620px; color: var(--muted); font-size: 18px; }
.auth-benefits { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.auth-benefits li { display: flex; align-items: center; gap: 10px; color: #d9e3f2; font-weight: 700; }
.auth-benefits span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(53,213,176,0.12); color: var(--accent); font-size: 11px; }
.auth-trial-summary { display: grid; gap: 12px; margin-top: 30px; }
.auth-trial-summary div { display: flex; flex-direction: column; padding: 14px 16px; border-left: 2px solid var(--accent); background: rgba(255,255,255,0.03); }
.auth-trial-summary span { color: var(--muted); font-size: 12px; }
.auth-card { padding: 38px; border: 1px solid var(--line); border-radius: 23px; background: rgba(12,26,43,0.95); box-shadow: var(--shadow); }
.auth-card h2 { margin: 8px 0 6px; font-size: 36px; }
.auth-card > p { color: var(--muted); }
.auth-form { margin-top: 26px; }
.form-field { margin-bottom: 17px; }
.form-field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; }
.form-field input { width: 100%; min-height: 50px; border: 1px solid var(--line-strong); border-radius: 11px; outline: none; background: rgba(255,255,255,0.055); color: var(--text); padding: 11px 13px; }
.form-field input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(100,117,255,0.16); }
.help-text { margin-top: 7px; color: var(--muted); font-size: 11px; }
.help-text ul { margin-bottom: 0; padding-left: 18px; }
.field-error, .form-errors { margin-top: 7px; color: #ff96a2; font-size: 12px; }
.form-errors ul { margin: 0; padding-left: 18px; }
.auth-consent { margin: 15px 0 0; color: var(--muted); text-align: center; font-size: 10px; }
.auth-footer { margin: 22px 0 0; text-align: center; font-size: 13px; }

.account-header { padding: 68px 0 32px; background: radial-gradient(circle at 20% 0%, rgba(100,117,255,0.14), transparent 35%); }
.account-header-inner { display: flex; align-items: end; justify-content: space-between; gap: 35px; }
.account-header h1 { margin-bottom: 7px; font-size: clamp(34px, 5vw, 50px); overflow-wrap: anywhere; }
.account-header p { margin: 0; color: var(--muted); }
.account-header-actions { display: flex; gap: 10px; }
.account-section { padding-top: 28px; }
.account-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 17px; }
.summary-card { display: flex; flex-direction: column; min-height: 156px; justify-content: end; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.summary-label { margin-bottom: auto; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; }
.summary-value { font-size: 30px; font-weight: 900; letter-spacing: -0.04em; }
.summary-date { font-size: 25px; }
.summary-note { color: var(--muted); font-size: 11px; }
.status-value-active, .status-value-trialing, .status-value-grace { color: var(--success); }
.account-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 17px; }
.account-card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 12px 38px rgba(0,0,0,0.11); }
.account-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.account-card h2 { margin: 8px 0 0; font-size: 28px; }
.status-badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 5px 9px; background: rgba(148,163,184,0.12); color: #cbd5e1; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.status-active, .status-trialing, .status-grace { background: rgba(75,213,159,0.13); color: #95edce; }
.status-paused, .status-past_due { background: rgba(255,203,103,0.13); color: #ffe0a0; }
.status-expired, .status-canceled, .status-suspended, .status-revoked { background: rgba(255,107,122,0.13); color: #ffacb5; }
.data-list { margin: 0 0 22px; }
.data-list > div { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.data-list dt { color: var(--muted); }
.data-list dd { margin: 0; text-align: right; font-weight: 750; overflow-wrap: anywhere; }
.device-list { display: grid; gap: 10px; }
.device-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,0.025); }
.device-icon, .empty-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(100,117,255,0.13); color: var(--primary-soft); font-size: 10px; font-weight: 900; }
.device-copy { min-width: 0; display: flex; flex-direction: column; }
.device-copy strong { overflow: hidden; text-overflow: ellipsis; }
.device-copy span, .device-copy small { color: var(--muted); font-size: 11px; }
.subscriptions-card { margin-top: 17px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
th { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; }
td { font-size: 13px; }
.empty-state { display: flex; flex-direction: column; align-items: center; padding: 26px 15px; text-align: center; }
.empty-state strong { margin-top: 12px; }
.empty-state p { max-width: 420px; margin: 6px 0 8px; color: var(--muted); font-size: 13px; }
.empty-state a { color: var(--primary-soft); text-decoration: none; font-size: 12px; font-weight: 800; }
.empty-state-horizontal { flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; text-align: left; }
.empty-state-horizontal strong { margin: 0; }
.empty-state-horizontal p { margin-bottom: 0; }
.account-help { display: flex; align-items: center; gap: 15px; margin-top: 17px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 14px; color: var(--muted); font-size: 12px; }
.account-help strong { color: var(--text); }
.account-help a { margin-left: auto; color: var(--primary-soft); text-decoration: none; font-weight: 800; }

.legal-hero { padding: 78px 0 44px; background: radial-gradient(circle at 30% 0%, rgba(100,117,255,0.13), transparent 38%); }
.legal-container { max-width: 850px; }
.legal-hero h1 { margin-bottom: 14px; font-size: clamp(42px, 5vw, 62px); }
.legal-hero p { max-width: 740px; color: var(--muted); font-size: 18px; }
.legal-updated { color: #6f8199; font-size: 11px; }
.legal-section { padding: 42px 0 100px; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 790px); justify-content: center; align-items: start; gap: 65px; }
.legal-nav { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 7px; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.legal-nav strong { margin-bottom: 8px; font-size: 13px; }
.legal-nav a { padding: 7px 8px; border-radius: 7px; color: var(--muted); text-decoration: none; font-size: 12px; }
.legal-nav a:hover { background: rgba(255,255,255,0.05); color: white; }
.legal-nav small { margin-top: 12px; color: #71839b; }
.legal-content { padding: 38px 42px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.legal-content h2 { margin-top: 38px; font-size: 24px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #afbed1; }
.legal-content li { margin-bottom: 7px; }
.legal-notice { margin-bottom: 28px; padding: 15px 17px; border: 1px solid rgba(255,203,103,0.3); border-radius: 12px; background: rgba(255,203,103,0.08); color: #ffe0a2; font-size: 13px; }

.site-footer { padding: 64px 0 24px; border-top: 1px solid var(--line); background: var(--background-deep); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 0.55fr); gap: 50px; }
.footer-intro p { max-width: 420px; margin: 20px 0; color: var(--muted); font-size: 13px; }
.footer-status { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 11px; }
.footer-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--warning); }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column strong { margin-bottom: 5px; font-size: 12px; }
.footer-column a { color: var(--muted); text-decoration: none; font-size: 12px; }
.footer-column a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); color: #64758d; font-size: 10px; }

@media (max-width: 1060px) {
    .hero-grid { gap: 42px; }
    .product-showcase { min-height: 450px; }
    .workflow-grid { grid-template-columns: 1fr 1fr; }
    .workflow-card:nth-child(2)::after { display: none; }
    .split-section, .local-grid { gap: 45px; }
    .pricing-layout { grid-template-columns: 1fr; }
    .pricing-sidebar { display: grid; grid-template-columns: repeat(3, 1fr); }
    .auth-layout { grid-template-columns: 1fr 460px; gap: 50px; }
}

@media (max-width: 860px) {
    .desktop-nav { display: none; }
    .mobile-nav { display: block; }
    .hero { padding-top: 76px; }
    .hero-grid, .split-section, .local-grid, .page-hero-split, .auth-layout, .legal-layout { grid-template-columns: 1fr; }
    .hero-grid { gap: 45px; }
    .product-showcase { max-width: 620px; width: 100%; margin: 0 auto; }
    .section-heading-wide { grid-template-columns: 1fr; gap: 15px; }
    .split-section { gap: 45px; }
    .local-grid { gap: 35px; }
    .quote-cta { flex-direction: column; align-items: flex-start; }
    .cta-actions { width: 100%; }
    .pricing-sidebar { grid-template-columns: 1fr; }
    .download-layout { grid-template-columns: 1fr; }
    .windows-badge { display: none; }
    .faq-layout { grid-template-columns: 1fr; gap: 25px; }
    .faq-index, .legal-nav { position: static; }
    .faq-index { display: none; }
    .account-header-inner { align-items: flex-start; flex-direction: column; }
    .account-summary { grid-template-columns: 1fr 1fr; }
    .account-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 650px) {
    .container, .narrow { width: min(100% - 28px, 1180px); }
    .brand-copy small { display: none; }
    h1 { font-size: 43px; }
    h2 { font-size: 31px; }
    .hero { padding: 62px 0 65px; }
    .hero-badge { align-items: flex-start; border-radius: 13px; }
    .hero-actions, .hero-actions .button { width: 100%; }
    .hero-proof { flex-direction: column; gap: 6px; }
    .product-showcase { min-height: 360px; }
    .showcase-window { transform: none; }
    .showcase-layout { grid-template-columns: 80px 1fr; min-height: 290px; }
    .showcase-main { padding: 14px; }
    .showcase-fields { grid-template-columns: 1fr; gap: 6px; }
    .showcase-fields div:nth-child(n+3) { display: none; }
    .floating-card { display: none; }
    .workflow-strip-inner { min-height: 64px; gap: 9px; font-size: 10px; overflow-x: auto; justify-content: flex-start; }
    .section { padding: 70px 0; }
    .workflow-grid, .benefit-list, .data-comparison, .install-steps, .pricing-feature-groups, .account-summary { grid-template-columns: 1fr; }
    .workflow-card::after { display: none; }
    .metric-row { grid-template-columns: 1fr; }
    .quote-cta { padding: 28px; }
    .pricing-card-top { flex-direction: column; padding: 27px; }
    .price-block { text-align: left; }
    .trial-banner { margin: 20px 24px 0; }
    .pricing-feature-groups { padding: 25px 24px; }
    .pricing-action { padding: 0 24px 28px; }
    .download-card-heading { flex-direction: column; }
    .security-note { grid-template-columns: 1fr; }
    .support-callout { flex-direction: column; align-items: flex-start; }
    .auth-section { padding: 48px 0; }
    .auth-value-panel { display: none; }
    .auth-card { padding: 27px 22px; }
    .account-header-actions, .account-header-actions .button { width: 100%; }
    .account-header-actions { flex-direction: column; }
    .data-list > div { grid-template-columns: 1fr; gap: 4px; }
    .data-list dd { text-align: left; }
    .device-item { grid-template-columns: auto 1fr; }
    .device-item .status-badge { grid-column: 2; justify-self: start; }
    .empty-state-horizontal { flex-direction: column; align-items: flex-start; }
    .account-help { align-items: flex-start; flex-direction: column; }
    .account-help a { margin-left: 0; }
    .legal-content { padding: 27px 22px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
    .footer-intro { grid-column: 1 / -1; }
    .footer-column:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
}
