:root {
    color-scheme: light;
    --blue: #0866ff;
    --blue-dark: #0053d8;
    --blue-soft: #edf5ff;
    --blue-pale: #f5f9ff;
    --ink: #0b1019;
    --muted: #606b7b;
    --subtle: #8b94a2;
    --line: #dce2ea;
    --line-strong: #c8d0db;
    --surface: #f6f8fb;
    --white: #ffffff;
    --success: #15b96b;
    --danger: #ff5c5c;
    --container: 1536px;
    --pad: clamp(20px, 3vw, 48px);
    --section: clamp(96px, 10vw, 156px);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --shadow-window: 0 28px 70px rgba(25, 38, 58, 0.12), 0 4px 14px rgba(25, 38, 58, 0.06);
    --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
    margin: 0;
    min-width: 320px;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }

::selection { background: #cfe2ff; color: var(--ink); }

:focus-visible { outline: 3px solid rgba(8, 102, 255, .32); outline-offset: 3px; }

.container { width: min(100%, var(--container)); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section); }
.section-compact { padding-block: clamp(72px, 8vw, 120px); }

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    padding: 10px 14px;
    transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(18px);
    transition: border-color .25s, box-shadow .25s;
}

.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(19,34,56,.04); }

.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 750; letter-spacing: -.035em; white-space: nowrap; }
.brand__mark { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 5px 14px rgba(0,87,216,.2); }

.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 44px); margin-left: auto; }
.desktop-nav a { position: relative; color: #303947; font-size: 14px; font-weight: 560; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1.5px; background: var(--blue); transition: right .22s var(--ease); }
.desktop-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.language-switcher { position: relative; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 9px; padding: 3px; }
.language-button { min-width: 42px; height: 28px; border: 0; border-radius: 6px; background: transparent; color: var(--subtle); font-size: 11px; font-weight: 700; cursor: pointer; }
.language-button.is-active { background: var(--surface); color: var(--ink); }
.language-menu { position: absolute; top: calc(100% + 8px); right: 0; z-index: 30; width: 172px; display: none; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 8px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 18px 40px rgba(23,33,50,.16); }
.language-switcher.is-open .language-menu { display: grid; }
.language-menu button { min-height: 32px; border: 0; border-radius: 8px; background: transparent; color: var(--muted); font-size: 11px; font-weight: 760; cursor: pointer; }
.language-menu button:hover, .language-menu button.is-active { background: var(--surface); color: var(--ink); }

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 650;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s var(--ease), background .2s, border-color .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button--primary { background: var(--blue); color: var(--white); box-shadow: 0 8px 24px rgba(8,102,255,.2); }
.button--primary:hover { background: var(--blue-dark); box-shadow: 0 11px 30px rgba(8,102,255,.28); }
.button--outline { border-color: var(--blue); background: var(--white); color: var(--blue); }
.button--outline:hover { background: var(--blue-soft); }
.button--small { min-height: 42px; padding-inline: 20px; font-size: 14px; }
.button--large { min-height: 58px; padding-inline: 26px; }
.button--full { width: 100%; }
.button--white { min-height: 70px; background: var(--white); color: var(--blue); border: 0; padding-inline: 28px; font-size: 16px; }

.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-button span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .2s; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { overflow: hidden; padding: clamp(70px, 7vw, 112px) 0 0; }
.hero__grid { display: grid; grid-template-columns: minmax(500px, .82fr) minmax(0, 1.35fr); align-items: center; gap: clamp(40px, 5vw, 72px); }
.hero__content { position: relative; z-index: 2; padding-top: 40px; }
.hero h1 { max-width: 680px; font-size: clamp(54px, 5.15vw, 80px); line-height: .98; letter-spacing: -.064em; font-weight: 760; }
.hero h1 span { display: block; }
.hero__lead { max-width: 590px; margin-top: 30px; color: var(--muted); font-size: clamp(18px, 1.45vw, 23px); line-height: 1.48; letter-spacing: -.025em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 9px 24px; margin-top: 28px; color: var(--muted); font-size: 13px; }
.hero__trust li { position: relative; padding-left: 17px; }
.hero__trust li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }

.product-window { position: relative; top: -40px; min-width: 0; border: 1px solid var(--line-strong); border-radius: 20px; overflow: hidden; background: var(--white); box-shadow: var(--shadow-window); }
.product-window__bar { min-height: 54px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); padding: 0 16px; font-size: 12px; }
.product-window__bar > strong { font-size: 13px; font-weight: 680; }
.traffic-lights { display: flex; gap: 7px; }
.traffic-lights i { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.traffic-lights i:nth-child(2) { background: #febc2e; }
.traffic-lights i:nth-child(3) { background: #28c840; }
.product-status { justify-self: end; display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 8px; padding: 6px 9px; color: #354152; }
.product-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.product-window__body { min-height: 575px; display: grid; grid-template-columns: 190px 1fr; }

.workspace-nav { position: relative; z-index: 4; display: flex; flex-direction: column; gap: 6px; border-right: 1px solid var(--line); padding: 20px 12px 12px; background: #fbfcfe; }
.workspace-nav__label { margin: 2px 9px 10px; color: var(--subtle); font-size: 10px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.workspace-button, .workspace-add { width: 100%; min-height: 47px; display: flex; align-items: center; gap: 10px; border: 1px solid transparent; border-radius: 9px; background: transparent; padding: 7px 9px; text-align: left; font-size: 12px; font-weight: 590; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.workspace-button:hover { background: var(--surface); }
.workspace-button.is-active { border-color: #bad4ff; background: #eaf3ff; color: var(--blue-dark); }
.workspace-icon { width: 29px; height: 29px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 7px; background: var(--white); color: #334155; font-size: 11px; font-weight: 800; }
.workspace-button.is-active .workspace-icon { border-color: var(--blue); background: var(--blue); color: var(--white); }
.workspace-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.workspace-add { margin-top: auto; color: var(--muted); }
.workspace-add svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.workspace-stage { min-width: 0; display: flex; flex-direction: column; }
.workspace-stage__header { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding: 15px 18px 15px 26px; }
.workspace-stage__header > div > span { display: block; margin-bottom: 4px; color: var(--subtle); font-size: 10px; font-weight: 680; text-transform: uppercase; letter-spacing: .07em; }
.workspace-stage__header h2 { font-size: clamp(20px, 2vw, 29px); line-height: 1.1; letter-spacing: -.04em; }
.restore-button { min-height: 43px; display: inline-flex; align-items: center; gap: 8px; border: 0; border-radius: 9px; background: var(--blue); color: var(--white); padding: 0 15px; font-size: 12px; font-weight: 680; cursor: pointer; box-shadow: 0 8px 18px rgba(8,102,255,.18); transition: transform .2s, background .2s; }
.restore-button:hover { transform: translateY(-1px); background: var(--blue-dark); }
.restore-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.restore-button.is-restoring svg { animation: spin .8s linear infinite; }

.desktop { position: relative; flex: 1; min-height: 480px; overflow: hidden; background: #dbeaff; isolation: isolate; }
.desktop__wallpaper { position: absolute; inset: 0; z-index: -3; background: linear-gradient(153deg, #d9efff 0 35%, #94c4ff 35.2% 52%, #176fe3 52.2% 70%, #0c4cba 70.2%); transition: filter .3s, background .3s; }
.app-row { position: absolute; z-index: 3; top: 20px; left: 50%; display: flex; gap: 14px; transform: translateX(-50%); }
.app-icon { width: 42px; height: 42px; display: inline-grid; place-items: center; border-radius: 10px; border: 1px solid rgba(255,255,255,.8); color: white; font-size: 15px; font-weight: 760; box-shadow: 0 8px 18px rgba(14,32,60,.18); }
.app-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.app-icon .app-glyph-fill { fill: #ff5263; stroke: none; }
.app-icon .terminal-glyph { font: 700 15px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: -.12em; }
.app-icon .slack-blue { stroke: #36c5f0; }.app-icon .slack-green { stroke: #2eb67d; }.app-icon .slack-yellow { stroke: #ecb22e; }.app-icon .slack-red { stroke: #e01e5a; }
.app-icon--xcode { background: linear-gradient(145deg, #26adff, #0866ff); }
.app-icon--safari { background: linear-gradient(145deg, #24c9ff, #087de8); }
.app-icon--terminal { background: linear-gradient(145deg, #333944, #080a0d); font-family: ui-monospace, monospace; }
.app-icon--finder { background: linear-gradient(90deg, #4dbdff 50%, #fff 50%); color: #0a63a7; }
.app-icon--slack { background: #ffffff; }

.mini-window { position: absolute; z-index: 1; overflow: hidden; border: 1px solid rgba(16,39,72,.16); border-radius: 10px; background: rgba(255,255,255,.97); box-shadow: 0 20px 40px rgba(6,39,93,.19); transition: transform .45s var(--ease), opacity .3s; }
.mini-window__bar { height: 27px; display: flex; align-items: center; gap: 4px; border-bottom: 1px solid var(--line); padding: 0 8px; color: var(--muted); font-size: 9px; }
.mini-window__bar span { margin-right: auto; font-weight: 650; color: var(--ink); }
.mini-window__bar i { width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong); }
.mini-window--code { left: 7%; top: 25%; width: 55%; height: 57%; background: #151923; color: #c9d4e6; }
.mini-window--code .mini-window__bar { border-color: rgba(255,255,255,.08); color: #c9d4e6; }
.mini-window--code .mini-window__bar span { color: #e8eef7; }
.code-editor { padding: 24px 19px; font: 10px/1.8 ui-monospace, SFMono-Regular, Menlo, monospace; }
.code-editor b { color: #f08adc; }.code-editor em { color: #73c7ff; font-style: normal; }
.mini-window--finder { right: 3%; bottom: 10%; z-index: 2; width: 56%; height: 55%; }
.mini-window--finder ul { display: grid; gap: 11px; padding: 19px; color: #4e5a6b; font-size: 10px; }
.mini-window--finder li { display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #eff2f6; padding-bottom: 8px; }
.mini-window--finder li span { width: 15px; height: 11px; border-radius: 2px; background: #42adf5; }
.restore-path { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.restore-path path { fill: none; stroke: var(--blue); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 11 9; animation: dash 8s linear infinite; }
.restore-path circle { fill: var(--blue); }
.restore-toast, .save-confirmation { display: flex; align-items: center; gap: 10px; border: 1px solid rgba(25,52,86,.12); border-radius: 10px; background: rgba(255,255,255,.96); box-shadow: 0 10px 28px rgba(31,48,73,.13); }
.restore-toast { position: absolute; z-index: 5; left: 18px; bottom: 17px; min-width: 230px; padding: 11px 13px; opacity: 0; transform: translateY(12px); transition: opacity .25s, transform .25s; }
.restore-toast.is-visible { opacity: 1; transform: translateY(0); }
.restore-toast > span, .save-confirmation > span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: white; font-size: 11px; }
.restore-toast div, .save-confirmation div { display: grid; }
.restore-toast strong, .save-confirmation strong { font-size: 10px; }
.restore-toast small, .save-confirmation small { color: var(--muted); font-size: 9px; }
.desktop.is-restoring .mini-window--code { transform: translate(-12px, 7px) scale(.98); }
.desktop.is-restoring .mini-window--finder { transform: translate(12px, -6px) scale(.98); }

.apps-strip { display: grid; grid-template-columns: minmax(230px, .7fr) 1.3fr; align-items: center; gap: 40px; margin-top: clamp(70px, 7vw, 105px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: 24px; color: var(--muted); }
.apps-strip > span { font-size: 13px; }
.apps-strip > div { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 15px 24px; }
.apps-strip b { color: #8a93a1; font-size: 14px; letter-spacing: -.02em; }

.statement { background: var(--blue-pale); }
.statement__inner { display: grid; grid-template-columns: 70px 180px 1fr; align-items: center; gap: 28px; }
.statement__line { height: 2px; background: var(--blue); }
.statement p { color: var(--blue); font-size: 13px; font-weight: 700; }
.statement h2 { font-size: clamp(36px, 5vw, 70px); line-height: 1.06; letter-spacing: -.055em; }
.statement h2 span:last-child { color: #8a94a3; }

.section-intro { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: clamp(40px, 8vw, 130px); }
.section-intro h2, .automation__intro h2, .pricing__intro h2, .faq__intro h2 { font-size: clamp(42px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -.058em; }
.section-intro p, .automation__intro > p, .faq__intro > p { color: var(--muted); font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; letter-spacing: -.02em; }

.workflow { display: grid; grid-template-columns: 1fr 90px 1fr; gap: 0; margin-top: 80px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.workflow-step { min-width: 0; padding: 34px 0 45px; }
.feature-copy { display: grid; grid-template-columns: 40px 1fr; gap: 16px; }
.feature-copy > span { color: var(--blue); font-size: 16px; font-weight: 700; }
.feature-copy h3 { font-size: clamp(20px, 1.7vw, 26px); line-height: 1.15; letter-spacing: -.035em; }
.feature-copy p { max-width: 520px; margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.workflow-step:first-child { padding-right: 22px; }
.workflow-step:last-child { padding-left: 22px; }
.workflow-connector { display: grid; place-items: center; position: relative; }
.workflow-connector::before { content: ""; position: absolute; inset: 0 50%; width: 1px; background: var(--line); }
.workflow-connector span { position: absolute; left: -60px; right: -60px; top: 56%; height: 2px; background: var(--blue); }
.workflow-connector i { position: relative; z-index: 1; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: white; font-style: normal; box-shadow: 0 0 0 8px var(--white); }

.window-cluster, .laptop-visual { position: relative; height: 360px; margin-top: 32px; }
.cluster-window { position: absolute; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--white); box-shadow: 0 12px 26px rgba(24,43,69,.09); padding: 35px 14px 12px; }
.cluster-window::before { content: ""; position: absolute; inset: 0 0 auto; height: 27px; border-bottom: 1px solid var(--line); background: #fafbfc; }
.cluster-window > i { position: absolute; z-index: 1; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: #cfd5de; }
.cluster-window > i:nth-child(1) { left: 9px; }.cluster-window > i:nth-child(2) { left: 18px; }.cluster-window > i:nth-child(3) { left: 27px; }
.cluster-window > span { display: block; height: 7px; margin: 9px 0; border-radius: 5px; background: #dfe7f1; }
.cluster-window--browser { left: 4%; top: 6%; width: 52%; height: 48%; }
.cluster-window--editor { right: 2%; top: 14%; width: 53%; height: 52%; }
.cluster-window--editor > span { background: #a4c9ff; }
.cluster-window--terminal { left: 18%; top: 43%; z-index: 2; width: 53%; height: 38%; background: #171c25; color: #cfe1ff; font: 11px/1.7 ui-monospace, monospace; padding-top: 48px; }
.cluster-window--terminal::before { background: #222a36; border-color: rgba(255,255,255,.06); }
.cluster-window--terminal b, .cluster-window--terminal em { display: block; font-style: normal; }
.cluster-window--terminal em { color: #6f829e; }
.save-confirmation { position: absolute; left: 3%; bottom: 0; z-index: 3; min-width: 240px; padding: 12px; }

.laptop-visual { display: grid; place-items: center; }
.laptop-screen { width: 76%; aspect-ratio: 1.55; display: grid; place-items: center; border: 9px solid #18202c; border-radius: 14px 14px 5px 5px; background: #eaf3ff; box-shadow: 0 20px 35px rgba(25,43,67,.12); }
.tiny-layout { width: 88%; height: 82%; display: grid; grid-template-columns: 1fr 1.2fr; grid-template-rows: 1fr 1fr; gap: 7px; }
.tiny-layout span { border: 1px solid #b9cae0; border-radius: 5px; background: var(--white); }
.tiny-layout span:nth-child(2) { grid-row: span 2; background: #17202c; }
.laptop-base { position: absolute; top: 67%; width: 86%; height: 15px; border-radius: 2px 2px 20px 20px; background: linear-gradient(#d9dde3, #929aa7); }
.laptop-visual .save-confirmation { left: 8%; bottom: 0; }

.feature-details { display: grid; grid-template-columns: .9fr 1.2fr; gap: 0; }
.privacy-feature, .modes-feature { min-width: 0; padding-top: 44px; }
.privacy-feature { padding-right: clamp(28px, 5vw, 72px); }
.modes-feature { border-left: 1px solid var(--line); padding-left: clamp(28px, 5vw, 72px); }
.privacy-panel { min-height: 230px; display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 32px; margin-top: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; }
.privacy-lock { display: grid; place-items: center; border-right: 1px solid var(--line); height: 100%; }
.privacy-lock svg { width: 70px; height: 70px; fill: none; stroke: var(--blue); stroke-width: 1.3; }
.privacy-panel ul { display: grid; gap: 17px; color: var(--muted); font-size: 13px; }
.privacy-panel li::before { content: "✓"; margin-right: 9px; color: var(--blue); font-weight: 800; }
.mode-rail { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.mode-rail button { min-height: 150px; display: grid; place-items: center; align-content: center; gap: 14px; border: 0; border-right: 1px solid var(--line); background: var(--white); color: var(--muted); font-size: 11px; cursor: pointer; transition: color .2s, background .2s; }
.mode-rail button:last-child { border-right: 0; }
.mode-rail button span { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; font-size: 16px; }
.mode-rail button b { font-size: 11px; font-weight: 610; }
.mode-rail button:hover, .mode-rail button.is-active { background: var(--blue-pale); color: var(--blue); }
.mode-rail button.is-active { box-shadow: inset 0 -3px 0 var(--blue); }

.automation { overflow: hidden; background: var(--blue-pale); }
.automation__intro { max-width: 850px; }
.section-label { display: block; margin-bottom: 24px; color: var(--blue); font-size: 14px; font-weight: 730; letter-spacing: -.01em; }
.automation__intro > p { max-width: 680px; margin-top: 26px; }
.automation-demo { display: grid; grid-template-columns: 255px 1fr; gap: 48px; margin-top: 74px; }
.demo-label { display: block; margin-bottom: 13px; color: var(--subtle); font-size: 10px; font-weight: 760; text-transform: uppercase; letter-spacing: .08em; }
.trigger-panel { padding-right: 30px; border-right: 1px solid var(--line); }
.trigger-panel button { width: 100%; min-height: 52px; display: grid; grid-template-columns: 28px 1fr 20px; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); padding: 0 12px; margin-bottom: 8px; text-align: left; cursor: pointer; transition: border-color .2s, color .2s, background .2s; }
.trigger-panel button:hover, .trigger-panel button.is-active { border-color: #8db9ff; background: #f7fbff; color: var(--blue); }
.trigger-panel button span { font-size: 17px; }
.trigger-panel button b { font-size: 12px; font-weight: 600; }
.trigger-panel button i { justify-self: end; font-size: 11px; font-style: normal; font-weight: 800; }
.automation-flow { position: relative; min-width: 0; display: grid; grid-template-columns: .8fr 1.05fr 1.25fr; grid-template-rows: auto 340px auto; gap: 20px 34px; align-items: center; }
.flow-labels { grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1.05fr 1.25fr; gap: 34px; color: var(--subtle); font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.flow-track { position: absolute; z-index: 0; top: 46%; left: -14px; right: -5vw; height: 2px; background: var(--blue); }
.flow-track span { position: absolute; inset: -2px 0; background: repeating-linear-gradient(90deg, var(--blue) 0 8px, transparent 8px 15px); animation: dash-bg 3s linear infinite; }
.flow-track i { position: absolute; top: 50%; width: 11px; height: 11px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px #dceaff; transform: translate(-50%,-50%); }
.flow-track i:nth-child(2) { left: 25%; }.flow-track i:nth-child(3) { left: 55%; }.flow-track i:nth-child(4) { left: 100%; }
.event-panel, .action-panel { position: relative; z-index: 1; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.96); box-shadow: 0 13px 26px rgba(30,47,70,.07); }
.event-panel { min-height: 165px; display: grid; grid-template-columns: auto 1fr; align-content: center; gap: 6px 13px; padding: 24px; }
.event-panel > span { grid-row: span 2; color: var(--blue); font-size: 21px; font-weight: 650; }
.event-panel strong { font-size: 13px; line-height: 1.35; }
.event-panel small { color: var(--muted); font-size: 10px; }
.action-panel { min-height: 260px; overflow: hidden; }
.action-panel > div { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); padding: 15px; }
.action-panel img { border-radius: 9px; }
.action-panel h3 { font-size: 18px; letter-spacing: -.03em; }
.action-panel > div > span { border-radius: 20px; background: var(--blue-soft); color: var(--blue); padding: 5px 8px; font-size: 9px; }
.action-panel ul { display: grid; gap: 13px; padding: 18px; font-size: 11px; }
.action-panel li::before { content: "✓"; display: inline-grid; place-items: center; width: 17px; height: 17px; margin-right: 9px; border-radius: 50%; background: var(--blue); color: white; font-size: 8px; }
.action-panel li.is-running::before { content: ""; border: 2px solid #9fc0f7; border-top-color: var(--blue); background: transparent; animation: spin .8s linear infinite; }
.launch-panel { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.launch-app { display: grid; justify-items: center; gap: 9px; opacity: .45; transform: translateY(5px); animation: app-launch 2.8s infinite; }
.launch-app:nth-child(2) { animation-delay: .25s; }.launch-app:nth-child(3) { animation-delay: .5s; }.launch-app:nth-child(4) { animation-delay: .75s; }.launch-app:nth-child(5) { animation-delay: 1s; }
.launch-app small { color: var(--muted); font-size: 10px; }
.previous-workspace { grid-column: 1 / -1; min-height: 72px; display: grid; grid-template-columns: 200px 120px 1fr; align-items: center; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.previous-workspace > span { text-transform: uppercase; letter-spacing: .06em; }.previous-workspace strong { color: var(--ink); font-size: 14px; }.previous-workspace small { justify-self: end; }

.pricing__intro { max-width: 1060px; margin: 0 auto; text-align: center; }
.pricing__intro h2 { font-size: clamp(40px, 4.7vw, 68px); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; max-width: 1040px; min-width: 0; margin: 70px auto 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan { display: flex; flex-direction: column; min-width: 0; min-height: 650px; padding: 42px clamp(30px, 5vw, 70px) 34px; }
.plan + .plan { border-left: 1px solid var(--line); }
.plan--featured { background: linear-gradient(180deg, var(--blue-soft), #f9fbff); }
.plan header > strong { font-size: 34px; letter-spacing: -.045em; }
.plan header > p { margin-top: 2px; color: var(--muted); font-size: 15px; }
.plan header > div { display: flex; align-items: baseline; gap: 10px; margin-top: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.plan header b { font-size: 56px; line-height: 1; letter-spacing: -.05em; }
.plan header span { color: var(--muted); font-size: 13px; }
.plan header > .license-options { display: grid; gap: 10px; align-items: stretch; margin-top: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.license-options span { min-width: 0; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(10,132,255,.06); }
.license-options b { font-size: clamp(28px, 3.2vw, 42px); line-height: 1; letter-spacing: -.05em; }
.license-options em { color: var(--muted); font-size: 13px; font-style: normal; font-weight: 700; text-align: right; }
.license-options i { color: var(--subtle); font-size: 15px; font-style: normal; font-weight: 750; text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: rgba(239,68,68,.72); }
.plan header > .license-options > .license-option--deal { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto; align-items: center; gap: 3px 12px; background: linear-gradient(135deg, rgba(10,132,255,.13), rgba(48,209,88,.09)); border-color: rgba(10,132,255,.28); }
.license-option--deal i { position: relative; display: inline-block; color: var(--ink); font-size: clamp(30px, 3.2vw, 44px); line-height: 1; letter-spacing: -.055em; font-weight: 850; text-decoration: none; }
.license-option--deal i::after { content: ""; position: absolute; left: 0; right: 0; top: 52%; height: 3px; border-radius: 999px; background: rgba(239,68,68,.78); transform: translateY(-50%) rotate(-10deg); pointer-events: none; }
.plan header > .license-options > .license-option--deal i { grid-column: 1; grid-row: 1; justify-self: start; }
.plan header > .license-options > .license-option--deal b { grid-column: 2; grid-row: 1 / 3; align-self: center; justify-self: end; color: var(--blue); font-size: clamp(22px, 2.4vw, 30px); }
.plan header > .license-options > .license-option--deal em { grid-column: 1; grid-row: 2; justify-self: start; font-size: 11px; line-height: 1.2; letter-spacing: .01em; text-align: left; opacity: .82; }
.plan ul { display: grid; gap: 15px; margin: 26px 0 38px; color: #2f3948; font-size: 14px; }
.plan li { position: relative; padding-left: 28px; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.plan .button { margin-top: auto; }
.pro-feature-groups { gap: 13px; }
.pro-feature-groups li { padding-left: 0; }
.pro-feature-groups li::before { display: none; }
.pro-feature-groups strong { display: block; color: var(--ink); font-size: 15px; line-height: 1.25; }
.pro-feature-groups span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.vpn-bonus { max-width: 1040px; margin: 24px auto 0; display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 16px; padding: 18px 22px; border: 1px solid var(--line); background: rgba(10,132,255,.07); }
.vpn-bonus__icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--blue); color: #fff; font-size: 18px; font-weight: 800; }
.vpn-bonus p { color: #233044; font-size: 14px; line-height: 1.55; text-align: left; }
.vpn-bonus--hero { max-width: 760px; margin: 28px 0 0; grid-template-columns: 54px 1fr; gap: 20px; padding: 20px 24px; border-radius: 18px; cursor: pointer; transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease); }
.vpn-bonus--hero .vpn-bonus__icon { width: 54px; height: 54px; border-radius: 14px; font-size: 24px; }
.vpn-bonus--hero p { font-size: clamp(14px, 1.05vw, 15px); line-height: 1.55; }
.vpn-bonus--hero:hover { transform: translateY(-1px); }
.pricing-note { margin-top: 20px; color: var(--subtle); text-align: center; font-size: 12px; }

.faq { padding-top: 0; background: linear-gradient(180deg, var(--white), var(--blue-pale)); }
.faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.faq__intro h2 { font-size: clamp(40px, 4.4vw, 64px); }
.faq__intro p { max-width: 360px; margin-top: 22px; }
.accordion { border-top: 1px solid var(--line-strong); }
.accordion-item { border-bottom: 1px solid var(--line-strong); }
.accordion-item > button { width: 100%; min-height: 76px; display: grid; grid-template-columns: 1fr 24px; align-items: center; gap: 30px; border: 0; background: transparent; padding: 18px 0; text-align: left; font-size: 16px; font-weight: 640; cursor: pointer; }
.accordion-item > button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; transition: transform .25s; }
.accordion-item.is-open > button svg { transform: rotate(180deg); }
.accordion-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.accordion-content > p { min-height: 0; overflow: hidden; color: var(--muted); font-size: 14px; line-height: 1.65; }
.accordion-content a { color: var(--blue); font-weight: 720; text-decoration: none; }
.accordion-content a:hover { text-decoration: underline; text-underline-offset: 3px; }
.accordion-item.is-open .accordion-content { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-content > p { padding: 0 50px 24px 0; }


.site-footer { padding-block: 66px; }
.footer__inner { display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: clamp(50px, 8vw, 120px); }
.footer__brand .brand { font-size: 26px; }
.footer__brand .brand__mark { width: 48px; height: 48px; border-radius: 12px; }
.footer__brand p { margin-top: 11px; color: var(--muted); font-size: 13px; }
.site-footer nav { display: flex; gap: 36px; font-size: 13px; font-weight: 580; }
.site-footer nav a:hover { color: var(--blue); }
.footer__inner > span { color: var(--subtle); font-size: 12px; white-space: nowrap; }

.legal-page { background: var(--blue-pale); }
.legal-page .site-header { background: rgba(255,255,255,.96); }
.legal-back { color: var(--muted); font-size: 13px; font-weight: 620; }
.legal-back:hover { color: var(--blue); }
.legal-content { max-width: 900px; padding-top: clamp(80px, 9vw, 130px); padding-bottom: 120px; }
.legal-kicker { margin-bottom: 18px; color: var(--blue); font-size: 13px; font-weight: 700; }
.legal-content h1 { max-width: 760px; font-size: clamp(48px, 7vw, 84px); line-height: 1; letter-spacing: -.06em; }
.legal-lead { max-width: 720px; margin-top: 26px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.legal-content section { padding: 34px 0; border-bottom: 1px solid var(--line); }
.legal-content section:first-of-type { margin-top: 60px; border-top: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 11px; font-size: 22px; letter-spacing: -.035em; }
.legal-content section p { color: var(--muted); line-height: 1.7; }
.legal-content section a { color: var(--blue); font-weight: 650; }
.legal-updated { margin-top: 30px; color: var(--subtle); font-size: 12px; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal--delay { transition-delay: .12s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes dash { to { stroke-dashoffset: -80; } }
@keyframes dash-bg { to { background-position: 60px 0; } }
@keyframes app-launch { 0%, 15% { opacity: .4; transform: translateY(6px); } 35%, 80% { opacity: 1; transform: translateY(0); } 100% { opacity: .4; transform: translateY(6px); } }

@media (max-width: 1180px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__content { max-width: 850px; padding-top: 0; }
    .hero h1 { max-width: 900px; }
    .product-window { top: 0; width: 100%; }
    .apps-strip { grid-template-columns: 1fr; }
    .apps-strip > div { justify-content: flex-start; }
    .automation-demo { grid-template-columns: 220px 1fr; gap: 28px; }
    .automation-flow { grid-template-columns: 1fr 1fr; }
    .flow-labels { grid-template-columns: 1fr 1fr; }.flow-labels span:last-child { display: none; }
    .launch-panel { grid-column: 1 / -1; padding-inline: 8%; }
    .flow-track { display: none; }
    .previous-workspace { grid-template-columns: 160px 100px 1fr; }
}

@media (max-width: 900px) {
    .desktop-nav { display: none; }
    .menu-button { display: flex; }
    .mobile-nav { position: fixed; inset: 76px 0 auto; z-index: 99; display: grid; gap: 0; border-bottom: 1px solid var(--line); background: var(--white); padding: 16px var(--pad) 22px; opacity: 0; transform: translateY(-12px); pointer-events: none; transition: opacity .2s, transform .2s; }
    .mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .mobile-nav a { border-bottom: 1px solid var(--line); padding: 16px 0; font-weight: 620; }
    .hero { padding-top: 58px; }
    .section-intro { grid-template-columns: 1fr; gap: 24px; }
    .workflow { grid-template-columns: 1fr; }
    .workflow-step:first-child, .workflow-step:last-child { padding-inline: 0; }
    .workflow-connector { min-height: 76px; }
    .workflow-connector::before { inset: 0 50%; }
    .workflow-connector span { display: none; }
    .workflow-connector i { transform: rotate(90deg); }
    .feature-details { grid-template-columns: 1fr; }
    .privacy-feature { padding-right: 0; }
    .modes-feature { border-left: 0; border-top: 1px solid var(--line); margin-top: 44px; padding-left: 0; }
    .automation-demo { grid-template-columns: 1fr; }
    .trigger-panel { display: flex; gap: 8px; overflow-x: auto; border-right: 0; padding: 0 0 6px; scrollbar-width: none; }
    .trigger-panel::-webkit-scrollbar { display: none; }
    .trigger-panel .demo-label { display: none; }
    .trigger-panel button { min-width: 178px; margin: 0; }
    .faq__grid { grid-template-columns: 1fr; }
    .pricing-grid { max-width: 680px; grid-template-columns: 1fr; }
    .plan + .plan { border-left: 0; border-top: 1px solid var(--line); }
    .plan { min-height: 600px; }
    .vpn-bonus { max-width: 680px; }
    .footer__inner { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 700px) {
    :root { --pad: 18px; --section: 82px; }
    .header-inner { min-height: 68px; }
    .site-header .brand { font-size: 17px; }
    .brand__mark { width: 34px; height: 34px; border-radius: 9px; }
    .language-button { min-width: 38px; }
    .language-menu { right: -52px; }
    .mobile-nav { inset: 68px 0 auto; }
    .hero h1 { font-size: clamp(44px, 13.3vw, 64px); line-height: 1.01; }
    .hero__lead { margin-top: 23px; font-size: 18px; }
    .hero__actions { display: grid; }
    .button--large { width: 100%; }
    .hero__trust { display: grid; gap: 9px; }
    .vpn-bonus--hero { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 20px; }
    .vpn-bonus--hero p { text-align: center; }
    .product-window { border-radius: 14px; }
    .product-window__bar { min-height: 45px; }
    .product-window__body { min-height: 510px; grid-template-columns: 1fr; }
    .workspace-nav { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); padding: 10px; scrollbar-width: none; }
    .workspace-nav::-webkit-scrollbar { display: none; }
    .workspace-nav__label, .workspace-add { display: none; }
    .workspace-button { min-width: 128px; }
    .workspace-stage__header { min-height: 80px; padding: 12px; }
    .workspace-stage__header h2 { font-size: 20px; }
    .restore-button { min-height: 40px; padding-inline: 11px; }
    .restore-button span { display: none; }
    .desktop { min-height: 390px; }
    .app-row { gap: 8px; }.app-icon { width: 34px; height: 34px; border-radius: 8px; font-size: 12px; }
    .mini-window--code { left: 4%; width: 63%; }.mini-window--finder { right: 2%; width: 65%; }
    .apps-strip { margin-top: 64px; }
    .apps-strip > div { display: grid; grid-template-columns: repeat(3, 1fr); }
    .statement__inner { grid-template-columns: 42px 1fr; gap: 18px; }
    .statement p { grid-column: 2; }.statement h2 { grid-column: 1 / -1; font-size: 42px; }
    .section-intro h2, .automation__intro h2, .pricing__intro h2, .faq__intro h2 { font-size: clamp(40px, 11vw, 56px); }
    .workflow { margin-top: 55px; }
    .feature-copy { grid-template-columns: 34px 1fr; }
    .window-cluster, .laptop-visual { height: 300px; }
    .save-confirmation { min-width: 210px; }
    .privacy-panel { grid-template-columns: 1fr; }
    .privacy-lock { min-height: 100px; border-right: 0; border-bottom: 1px solid var(--line); }
    .mode-rail { grid-template-columns: 1fr 1fr; }
    .mode-rail button { min-height: 105px; border-bottom: 1px solid var(--line); }
    .mode-rail button:nth-child(even) { border-right: 0; }
    .mode-rail button:last-child { grid-column: 1 / -1; }
    .automation-flow { grid-template-columns: 1fr; grid-template-rows: auto; }
    .flow-labels { display: none; }
    .event-panel, .action-panel, .launch-panel, .previous-workspace { grid-column: 1; }
    .launch-panel { padding: 10px 0; gap: 7px; }
    .launch-panel .app-icon { width: 38px; height: 38px; }
    .previous-workspace { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
    .previous-workspace small { justify-self: start; }
    .pricing-grid, .plan, .plan header, .license-options { min-width: 0; max-width: 100%; }
    .plan { min-height: auto; padding: 34px 22px; }
    .plan header > .license-options > span { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: baseline; gap: 5px 12px; }
    .plan header > .license-options > span em { min-width: 0; overflow-wrap: anywhere; }
    .plan .button { margin-top: 12px; }
    .vpn-bonus { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 20px; }
    .vpn-bonus p { text-align: center; }
    .faq__grid { gap: 48px; }
    .accordion-item > button { font-size: 15px; }
    .site-footer nav { flex-direction: column; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}
