:root {
  color-scheme: dark;
  --ink: #07111f;
  --ink-soft: #0b1728;
  --panel: #0f1d30;
  --panel-2: #13243a;
  --line: rgba(144, 173, 205, .17);
  --line-strong: rgba(144, 173, 205, .29);
  --text: #eef5fc;
  --muted: #95a8bc;
  --muted-2: #70849b;
  --blue: #3a9cff;
  --blue-bright: #65b5ff;
  --blue-deep: #1263cc;
  --mint: #65dfba;
  --violet: #a38bff;
  --amber: #f6be62;
  --rose: #ff7e9f;
  --cyan: #5cd8e8;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, .34);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgba(38, 126, 222, .12), transparent 27rem),
    radial-gradient(circle at 8% 24%, rgba(44, 173, 152, .07), transparent 24rem),
    radial-gradient(circle at 88% 48%, rgba(152, 104, 255, .065), transparent 24rem),
    radial-gradient(circle at 12% 76%, rgba(255, 105, 143, .045), transparent 22rem),
    var(--ink);
  color: var(--text);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

main, header, footer, section { min-width: 0; max-width: 100%; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 9px;
  background: white;
  color: #07111f;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(141, 169, 200, .1);
  background: rgba(7, 17, 31, .78);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(54, 158, 255, .72) 32%, rgba(94, 224, 187, .64) 55%, rgba(165, 114, 255, .55) 77%, transparent 95%);
}

.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  font-size: 1.14rem;
  font-weight: 720;
  letter-spacing: -.035em;
}

.brand > span > span { color: var(--blue-bright); }

.brand-mark {
  width: 35px;
  height: 35px;
  padding: 6px;
  border: 1px solid rgba(83, 169, 255, .28);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(47, 145, 243, .18), rgba(35, 94, 158, .06));
  fill: none;
  stroke: var(--blue-bright);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: inset 0 0 20px rgba(63, 155, 255, .07);
}

.brand-mark .brand-arrow { stroke: var(--mint); }

nav { display: flex; gap: 34px; }
nav a { color: #a8b8c8; font-size: .9rem; font-weight: 560; transition: color .18s ease; }
nav a:hover { color: white; }

.mobile-nav { display: none; position: relative; }
.mobile-nav summary { list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 690;
  letter-spacing: -.01em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 40px; justify-self: end; padding-inline: 17px; font-size: .84rem; }
.button-quiet { border-color: var(--line-strong); background: rgba(255, 255, 255, .025); color: #d8e4f0; }
.button-quiet:hover { border-color: rgba(72, 158, 246, .55); background: rgba(48, 137, 228, .08); }

.button-primary {
  border-color: rgba(111, 188, 255, .27);
  background: linear-gradient(125deg, #319cf2 0%, #256fe2 58%, #7453dc 115%);
  color: white;
  box-shadow: 0 13px 34px rgba(16, 92, 184, .3), inset 0 1px rgba(255, 255, 255, .17);
}

.button-primary:hover { box-shadow: 0 17px 42px rgba(16, 92, 184, .42), inset 0 1px rgba(255, 255, 255, .2); }

.hero {
  min-height: 850px;
  padding-top: 105px;
  display: grid;
  grid-template-columns: .86fr 1.44fr;
  column-gap: 62px;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 30%;
  width: 780px;
  height: 780px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 131, 224, .13), transparent 65%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 34px;
  right: -280px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(89, 175, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(72, 139, 226, .025), 0 0 0 140px rgba(86, 218, 180, .018);
}

.hero-copy { position: relative; z-index: 3; align-self: start; padding-top: 76px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #69b6ff;
  font-size: .73rem;
  font-weight: 740;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow > span { width: 19px; height: 2px; border-radius: 3px; background: currentColor; }
.eyebrow.light { color: #b8ddff; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

h1 {
  margin-bottom: 25px;
  font-size: clamp(3.5rem, 5.3vw, 5.75rem);
  line-height: .94;
  letter-spacing: -.067em;
  font-weight: 740;
}

h1 em {
  font-style: normal;
  background: linear-gradient(95deg, #77bfff 8%, #60dfc1 90%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lede { max-width: 525px; margin-bottom: 34px; color: #a8b9ca; font-size: clamp(1.04rem, 1.5vw, 1.18rem); line-height: 1.67; }
.hero-actions { display: flex; align-items: center; gap: 28px; }

.text-link { color: #c7d6e5; font-size: .91rem; font-weight: 640; }
.text-link span { margin-left: 5px; color: var(--blue-bright); transition: margin .15s ease; }
.text-link:hover span { margin-left: 9px; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 0; margin-top: 27px; color: #71869b; font-size: .74rem; }
.hero-meta span { display: flex; align-items: center; }
.hero-meta span:not(:last-child)::after { content: ""; width: 3px; height: 3px; margin: 0 11px; border-radius: 50%; background: #3a4e64; }
.hero-meta b { color: #8fa3b7; font-weight: 600; margin-left: 4px; }
.hero-meta .download-stat { color: #75dcbc; }
.hero-meta .download-stat b { color: #8ce8cc; }

.hero-art { position: relative; z-index: 2; min-width: 760px; transform: perspective(1600px) rotateY(-3deg) rotateX(1.5deg); transform-origin: left center; }
.glow { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(5px); }
.glow-one { width: 370px; height: 370px; top: -85px; right: 2%; background: rgba(38, 123, 219, .13); }
.glow-two { width: 300px; height: 300px; bottom: -95px; left: 15%; background: rgba(31, 181, 143, .09); }

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 182, 219, .23);
  border-radius: 13px;
  background: #101d2e;
  box-shadow: 0 50px 105px rgba(0, 0, 0, .52), 0 0 0 1px rgba(255, 255, 255, .025) inset;
  font-size: 10px;
}

.window-titlebar { height: 34px; display: flex; align-items: center; border-bottom: 1px solid #29374a; background: #142235; color: #d9e6f2; font-size: 10.5px; font-weight: 620; }
.app-mini-mark { width: 17px; height: 17px; margin: 0 8px 0 10px; padding-top: 4px; border-radius: 4px; background: #267ee0; }
.app-mini-mark i { display: block; width: 9px; height: 1px; margin: 0 0 2px 4px; background: white; }
.window-controls { margin-left: auto; height: 100%; display: flex; }
.window-controls i { width: 38px; position: relative; }
.window-controls i::after { content: ""; position: absolute; inset: 13px 15px; border-top: 1px solid #8392a3; }
.window-controls i:nth-child(2)::after { inset: 11px 15px 12px; border: 1px solid #8392a3; }
.window-controls i:nth-child(3)::after { inset: 12px 15px; border: 0; background: linear-gradient(45deg, transparent 46%, #8392a3 47%, #8392a3 53%, transparent 54%), linear-gradient(-45deg, transparent 46%, #8392a3 47%, #8392a3 53%, transparent 54%); }

.app-menu { height: 27px; display: flex; align-items: center; padding: 0 11px; border-bottom: 1px solid #29374a; background: #111e30; color: #91a2b5; font-size: 8.5px; }
.browser-grid { display: grid; grid-template-columns: 1fr 1fr; height: 310px; }
.browser-pane { position: relative; border-right: 1px solid #2d3a4c; background: #0d1928; }
.browser-pane:last-child { border-right: 0; }
.pane-toolbar { height: 38px; display: flex; align-items: center; gap: 10px; padding: 0 9px; border-bottom: 1px solid #293748; background: #122033; }
.mode-chip { height: 25px; display: inline-flex; align-items: center; gap: 5px; padding: 0 8px; border: 1px solid #344a63; border-radius: 5px; background: #182a40; color: #c6d4e2; font-size: 8px; font-weight: 620; }
.mode-chip svg { width: 13px; height: 13px; fill: none; stroke: #e3b84f; stroke-width: 1.5; stroke-linejoin: round; }
.mode-chip.remote svg { stroke: #55b1ff; }
.tool-icons { color: #869ab0; font-size: 14px; word-spacing: 4px; }
.connected { display: inline-flex; align-items: center; gap: 5px; margin-left: auto; color: #87a1b8; font-size: 7.8px; }
.connected i { width: 6px; height: 6px; border-radius: 50%; background: #51d2a3; box-shadow: 0 0 7px rgba(81, 210, 163, .6); }

.pathbar { height: 30px; display: flex; align-items: center; gap: 7px; margin: 5px 7px; padding: 0 8px; border: 1px solid #34465b; border-radius: 4px; background: #101c2b; color: #adbdcc; font-size: 8.5px; }
.pathbar svg { width: 12px; height: 12px; fill: none; stroke: #e3b84f; stroke-width: 1.5; }
.remote-pane .pathbar svg { stroke: #55b1ff; }
.pathbar span { min-width: 0; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pathbar b { color: #73879a; font-size: 9px; }
.list-head, .file-row { display: grid; grid-template-columns: 1fr 50px 80px; align-items: center; }
.list-head { height: 22px; padding: 0 9px; border-top: 1px solid #243244; border-bottom: 1px solid #2b394b; background: #152337; color: #718499; font-size: 7px; text-transform: uppercase; }
.list-head span:not(:first-child), .file-row > span:not(:first-child) { border-left: 1px solid rgba(55, 73, 93, .7); padding-left: 7px; }
.file-row { height: 27px; padding: 0 9px; color: #aebdcc; font-size: 8px; }
.file-row.selected { background: rgba(45, 126, 218, .25); color: #e1edf8; }
.file-row > span:first-child { display: flex; align-items: center; gap: 6px; }
.file-row > span:not(:first-child) { color: #718497; }
.file-row i { width: 10px; height: 9px; border-radius: 1px; background: #e5bd57; position: relative; }
.file-row.folder i::before { content: ""; position: absolute; left: 0; top: -2px; width: 5px; height: 3px; border-radius: 1px 1px 0 0; background: #f1cd6e; }
.file-row.file-html i, .file-row.file-code i, .file-row.file-css i { width: 8px; height: 11px; border-radius: 1px; background: #70879f; }
.file-row.file-html i { background: #e98258; }
.file-row.file-code i { background: #e7c45f; }
.file-row.file-css i { background: #579be6; }
.pane-status { position: absolute; inset: auto 0 0; height: 23px; display: flex; align-items: center; justify-content: space-between; padding: 0 9px; border-top: 1px solid #273547; background: #142237; color: #718498; font-size: 7.5px; }
.pane-status.online span:first-child { display: flex; align-items: center; gap: 5px; color: #6dc9a8; }
.pane-status.online i { width: 5px; height: 5px; border-radius: 50%; background: #4fd39e; }

.lower-grid { display: grid; grid-template-columns: 1.55fr 1fr; height: 112px; border-top: 1px solid #2c394b; background: #0f1c2c; }
.queue-preview { border-right: 1px solid #2c394b; }
.section-label { height: 25px; display: flex; align-items: center; padding: 0 10px; border-bottom: 1px solid #283648; background: #142237; color: #71869a; font-size: 7.2px; font-weight: 730; letter-spacing: .07em; }
.section-label span { margin-left: auto; color: #5fc9a2; letter-spacing: 0; font-weight: 560; text-transform: none; }
.transfer-row { height: 64px; display: grid; grid-template-columns: 1.15fr .9fr 78px; gap: 10px; align-items: center; padding: 0 11px; }
.transfer-file { display: flex; align-items: center; gap: 8px; }
.transfer-file > i { width: 17px; height: 20px; border-radius: 2px; background: #e6bf59; }
.transfer-file span { min-width: 0; display: grid; }
.transfer-file b { color: #bdcad7; font-size: 8px; }
.transfer-file small { color: #64778b; font-size: 6.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.progress-wrap { height: 5px; overflow: hidden; border-radius: 5px; background: #26364a; }
.progress-wrap span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #2d89e6, #5ecdb3); }
.transfer-stat { display: grid; line-height: 1.3; }
.transfer-stat b { color: #b9c9d7; font-size: 8px; }
.transfer-stat span { color: #60758a; font-size: 6.4px; }
.log-preview p { height: 25px; display: grid; grid-template-columns: 44px 30px 1fr; align-items: center; margin: 0; padding: 0 9px; color: #8ca0b3; font-size: 7px; }
.log-preview time { color: #576b80; }
.log-preview b { font-size: 6px; }
.log-info { color: #63aaf2; }.log-ok { color: #56cda2; }
.global-status { height: 25px; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; border-top: 1px solid #29384a; background: #152439; color: #7f93a7; font-size: 7.4px; }
.global-status span:last-child { display: flex; align-items: center; }
.global-status b { display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: #4fd39e; }

.trust-strip {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 72px;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip > span { display: flex; align-items: center; justify-content: center; gap: 10px; color: #8095aa; font-size: .77rem; font-weight: 590; }
.trust-strip > span:not(:last-child) { border-right: 1px solid var(--line); }
.trust-strip svg { width: 18px; height: 18px; fill: none; stroke: #55abf8; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.trust-strip > span:nth-child(2) svg { stroke: var(--violet); }
.trust-strip > span:nth-child(3) svg { stroke: var(--mint); }
.trust-strip > span:nth-child(4) svg { stroke: var(--amber); }

.section { padding-top: 128px; padding-bottom: 12px; scroll-margin-top: 30px; }
.section-heading { max-width: 680px; margin-bottom: 50px; }
.section-heading.centred { margin-inline: auto; text-align: center; }
.section-heading.centred .eyebrow { justify-content: center; }
.section-heading.narrow { max-width: 560px; }
.section-heading h2, .security-copy h2, .download-copy h2 { margin-bottom: 20px; font-size: clamp(2.25rem, 4.4vw, 4rem); line-height: 1.04; letter-spacing: -.055em; }
.section-heading h2 strong, .security-copy h2 strong {
  font-weight: inherit;
  background: linear-gradient(100deg, #68b8ff, #67dfbd 56%, #ac91ff);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.section-heading p:not(.eyebrow), .security-copy > p:not(.eyebrow), .download-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  min-height: 320px;
  padding: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 34, 54, .84), rgba(10, 24, 40, .9));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}
.feature-card:nth-child(1) { background: radial-gradient(circle at 92% 15%, rgba(57, 151, 247, .16), transparent 16rem), linear-gradient(145deg, rgba(18, 34, 54, .9), rgba(10, 24, 40, .94)); }
.feature-card:nth-child(2) { background: radial-gradient(circle at 92% 10%, rgba(83, 218, 174, .14), transparent 13rem), linear-gradient(145deg, rgba(18, 34, 54, .9), rgba(10, 24, 40, .94)); }
.feature-card:nth-child(3) { background: radial-gradient(circle at 92% 10%, rgba(158, 126, 255, .15), transparent 13rem), linear-gradient(145deg, rgba(18, 34, 54, .9), rgba(10, 24, 40, .94)); }
.feature-card:nth-child(4) { background: radial-gradient(circle at 92% 10%, rgba(246, 190, 98, .12), transparent 13rem), linear-gradient(145deg, rgba(18, 34, 54, .9), rgba(10, 24, 40, .94)); }
.feature-card:nth-child(5) { background: radial-gradient(circle at 92% 10%, rgba(255, 126, 159, .13), transparent 13rem), linear-gradient(145deg, rgba(18, 34, 54, .9), rgba(10, 24, 40, .94)); }
.feature-card:nth-child(6) { background: radial-gradient(circle at 92% 10%, rgba(92, 216, 232, .13), transparent 13rem), linear-gradient(145deg, rgba(18, 34, 54, .9), rgba(10, 24, 40, .94)); }
.feature-card::before { content: ""; position: absolute; inset: 0 24px auto; height: 1px; opacity: .8; background: linear-gradient(90deg, transparent, #3d9ef6, transparent); }
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, transparent, var(--mint), transparent); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, transparent, var(--violet), transparent); }
.feature-card:nth-child(4)::before { background: linear-gradient(90deg, transparent, var(--amber), transparent); }
.feature-card:nth-child(5)::before { background: linear-gradient(90deg, transparent, var(--rose), transparent); }
.feature-card:nth-child(6)::before { background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.feature-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; bottom: -100px; border-radius: 50%; background: rgba(56, 145, 236, .045); }
.feature-large { grid-column: span 2; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 13px; }
.feature-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.feature-icon.blue { background: linear-gradient(145deg, rgba(70, 167, 255, .24), rgba(50, 118, 224, .1)); color: #6cb9ff; box-shadow: 0 10px 24px rgba(40, 128, 219, .11); }
.feature-icon.green { background: linear-gradient(145deg, rgba(89, 215, 175, .23), rgba(39, 148, 118, .08)); color: #70e4c0; box-shadow: 0 10px 24px rgba(58, 188, 147, .1); }
.feature-icon.violet { background: linear-gradient(145deg, rgba(162, 136, 255, .24), rgba(103, 72, 196, .08)); color: #b09cff; box-shadow: 0 10px 24px rgba(126, 87, 221, .1); }
.feature-icon.amber { background: linear-gradient(145deg, rgba(246, 190, 98, .23), rgba(178, 112, 30, .08)); color: #f7c877; box-shadow: 0 10px 24px rgba(218, 143, 45, .09); }
.feature-icon.rose { background: linear-gradient(145deg, rgba(255, 126, 159, .24), rgba(190, 63, 102, .08)); color: #ff92ad; box-shadow: 0 10px 24px rgba(221, 75, 116, .09); }
.feature-icon.cyan { background: linear-gradient(145deg, rgba(92, 216, 232, .23), rgba(38, 142, 161, .08)); color: #6cdeed; box-shadow: 0 10px 24px rgba(56, 174, 193, .09); }
.feature-card h3 { margin-bottom: 11px; font-size: 1.25rem; letter-spacing: -.035em; }
.feature-card p { max-width: 500px; margin-bottom: 0; color: #8ea2b6; font-size: .89rem; line-height: 1.68; }
.mini-panes { height: 72px; display: grid; grid-template-columns: 1fr 35px 1fr; align-items: center; gap: 8px; margin-top: 26px; padding: 9px; border: 1px solid #273c54; border-radius: 10px; background: rgba(5, 15, 27, .5); }
.mini-panes span { height: 50px; display: grid; align-content: center; padding: 0 13px; border: 1px solid #2f465f; border-radius: 7px; background: #102238; color: #8499ad; font-size: .74rem; }
.mini-panes b { color: #62aff9; font-size: .58rem; letter-spacing: .08em; }
.mini-panes i { color: #4fd2ab; text-align: center; font-style: normal; }
.micro-progress { height: 7px; margin: 34px 0 9px; overflow: hidden; border-radius: 8px; background: #22344a; }
.micro-progress span { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #318ee8, #59d1ae); }
.feature-card small { color: #607990; font-size: .69rem; }
.code-lines { display: grid; gap: 8px; width: 72%; margin-top: 28px; }
.code-lines i { height: 6px; border-radius: 5px; background: #273e57; }
.code-lines i:nth-child(1) { width: 80%; }.code-lines i:nth-child(2) { width: 55%; background: #574d7d; }.code-lines i:nth-child(3) { width: 93%; }.code-lines i:nth-child(4) { width: 64%; background: #275e70; }

.workflow-section { margin-top: 128px; padding-bottom: 125px; position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(19, 39, 62, .45), rgba(8, 21, 36, .5)); }
.workflow-section::before { content: ""; position: absolute; inset: 0; opacity: .15; pointer-events: none; background-image: linear-gradient(rgba(107, 150, 193, .13) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 150, 193, .13) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent); }
.workflow-section .shell { position: relative; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.steps::before { content: ""; position: absolute; top: 67px; left: 16.6%; right: 16.6%; border-top: 1px dashed rgba(91, 164, 232, .32); }
.steps article { position: relative; padding: 0 42px; text-align: center; }
.steps article > b { position: absolute; top: -3px; right: 38px; color: rgba(130, 159, 190, .13); font-size: 3rem; line-height: 1; letter-spacing: -.05em; }
.step-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 28px; position: relative; z-index: 2; border: 1px solid rgba(80, 164, 242, .28); border-radius: 50%; background: #0d2136; box-shadow: 0 0 0 9px rgba(8, 24, 41, .85); color: #62aff5; }
.step-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.steps h3 { margin-bottom: 10px; font-size: 1.22rem; }
.steps p { color: #8398ad; font-size: .85rem; line-height: 1.67; }

.security-section { padding-top: 150px; }
.security-panel { min-height: 590px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; overflow: hidden; position: relative; padding: 65px 70px; border: 1px solid rgba(75, 159, 239, .19); border-radius: 28px; background: linear-gradient(135deg, #10243a, #0a192b); }
.security-panel::before { content: ""; position: absolute; width: 460px; height: 460px; right: -60px; top: 50%; border-radius: 50%; background: radial-gradient(circle, rgba(48, 146, 233, .17), transparent 67%); transform: translateY(-50%); }
.security-copy { position: relative; z-index: 2; max-width: 660px; }
.check-list { display: grid; gap: 16px; margin: 35px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: #93a7ba; font-size: .88rem; }
.check-list svg { flex: 0 0 21px; width: 21px; height: 21px; padding: 4px; border-radius: 50%; background: rgba(82, 208, 169, .11); fill: none; stroke: #62d7b3; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.check-list b { color: #dce8f3; font-weight: 620; }
.shield-art { width: 310px; height: 310px; display: grid; place-items: center; justify-self: end; position: relative; }
.shield-art > svg { position: relative; z-index: 3; width: 125px; height: 155px; fill: rgba(30, 111, 187, .17); stroke: #56aef9; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 14px 28px rgba(25, 112, 191, .3)); }
.shield-art > svg path:last-child { stroke: #66dcba; stroke-width: 7; }
.orbit { position: absolute; inset: 0; border: 1px solid rgba(91, 170, 239, .16); border-radius: 50%; }
.orbit::before, .orbit::after { content: ""; position: absolute; border: 1px solid rgba(91, 170, 239, .14); border-radius: 50%; }
.orbit::before { inset: 40px; }.orbit::after { inset: 80px; }
.orbit i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #58b2ff; box-shadow: 0 0 13px #318ee9; }
.orbit i:nth-child(1) { top: 42px; right: 49px; }.orbit i:nth-child(2) { bottom: 39px; left: 64px; background: #58dab3; }.orbit i:nth-child(3) { top: 146px; left: -3px; }

.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; cursor: pointer; list-style: none; color: #dce7f1; font-size: 1rem; font-weight: 620; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 24px; width: 24px; height: 24px; position: relative; border: 1px solid #334a61; border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; background: #82a0bb; }
.faq-list summary span::before { width: 8px; height: 1px; top: 11px; left: 7px; }.faq-list summary span::after { width: 1px; height: 8px; top: 7px; left: 11px; transition: transform .18s ease; }
.faq-list details[open] summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary { color: white; }
.faq-list details p { max-width: 760px; margin: -2px 0 26px; color: #899eb2; font-size: .91rem; line-height: 1.75; }
.faq-list code { padding: 2px 6px; border: 1px solid #2e4358; border-radius: 5px; background: #102237; color: #a9c3da; font-size: .83em; }

.download-section { padding-top: 150px; padding-bottom: 90px; }
.download-panel { min-height: 495px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: center; padding: 68px 75px; overflow: hidden; position: relative; border: 1px solid rgba(127, 194, 255, .22); border-radius: 28px; background: linear-gradient(135deg, #1e7edf 0%, #1056af 62%, #0c438e 100%); box-shadow: 0 35px 80px rgba(4, 53, 112, .29); }
.download-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 4% 0%, rgba(255, 255, 255, .14), transparent 30rem), radial-gradient(circle at 100% 100%, rgba(58, 226, 184, .15), transparent 28rem); }
.download-copy, .release-card { position: relative; z-index: 2; }
.download-copy h2 { max-width: 560px; }
.download-copy > p:not(.eyebrow) { max-width: 575px; color: rgba(232, 244, 255, .78); }
.download-actions { display: flex; align-items: center; gap: 22px; margin-top: 33px; }
.button-white { background: white; color: #1057ad; box-shadow: 0 12px 25px rgba(0, 43, 99, .22); }
.download-actions > span { display: grid; color: white; line-height: 1.3; }
.download-actions > span b { font-size: .83rem; }.download-actions > span small { color: rgba(226, 241, 255, .7); font-size: .71rem; }
.release-card { min-width: 0; padding: 30px; border: 1px solid rgba(255, 255, 255, .19); border-radius: 18px; background: rgba(5, 36, 76, .35); box-shadow: inset 0 1px rgba(255, 255, 255, .06); backdrop-filter: blur(9px); }
.release-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, .13); }
.release-head span { color: #bce0ff; font-size: .64rem; font-weight: 760; letter-spacing: .1em; }.release-head b { padding: 4px 9px; border-radius: 20px; background: rgba(255, 255, 255, .12); font-size: .72rem; }
.release-downloads { display: flex; align-items: baseline; gap: 9px; margin: 19px 0 -5px; color: rgba(218, 238, 255, .72); }
.release-downloads strong { color: #8ff0d0; font-size: 1.8rem; line-height: 1; letter-spacing: -.05em; }
.release-downloads span { font-size: .7rem; }
.release-card h3 { margin: 22px 0 14px; font-size: 1.04rem; }
.release-card ul { display: grid; gap: 8px; margin: 0 0 24px; padding: 0; list-style: none; color: rgba(225, 241, 255, .78); font-size: .78rem; }
.release-card li::before { content: "✓"; margin-right: 9px; color: #83e8c9; font-weight: 740; }
.checksum { min-width: 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; padding: 11px 12px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 8px; background: rgba(3, 27, 57, .35); }
.checksum > span { color: #9fc8eb; font-size: .57rem; font-weight: 760; letter-spacing: .07em; }
.checksum code { overflow: hidden; color: #d6eaff; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .62rem; text-overflow: ellipsis; white-space: nowrap; }
.checksum button { padding: 3px 7px; border: 0; border-radius: 4px; background: rgba(255, 255, 255, .12); color: #deefff; cursor: pointer; font-size: .6rem; }
.checksum-link { display: inline-block; margin-top: 9px; color: #b9ddff; font-size: .66rem; text-decoration: underline; text-underline-offset: 3px; }
.preview-note { margin-top: 18px; color: #677d93; font-size: .74rem; text-align: center; }

.site-footer { padding: 72px 0 28px; border-top: 1px solid var(--line); background: #050e1a; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 80px; padding-bottom: 55px; }
.footer-brand { margin-bottom: 14px; }
.footer-grid > div:first-child p { color: #657a90; font-size: .83rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, 130px); gap: 60px; }
.footer-links div { display: grid; align-content: start; gap: 9px; }
.footer-links b { margin-bottom: 5px; color: #d5e0eb; font-size: .78rem; }
.footer-links a { color: #71869a; font-size: .75rem; }
.footer-links a:hover { color: #bcd0e2; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line); color: #53697e; font-size: .68rem; }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .hero-copy { max-width: 760px; padding-top: 0; text-align: center; justify-self: center; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .hero-meta { justify-content: center; }
  .hero-art { width: 950px; min-width: 0; margin: 70px 0 0 50%; transform: translateX(-50%); }
  .trust-strip { margin-top: 70px; }
  .security-panel { padding-inline: 50px; }
  .download-panel { gap: 45px; padding-inline: 50px; }
}

@media (max-width: 900px) {
  .nav-wrap { grid-template-columns: 1fr auto auto; gap: 12px; }
  nav { display: none; }
  .mobile-nav { display: block; justify-self: end; }
  .mobile-nav summary {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background: rgba(255, 255, 255, .025);
    cursor: pointer;
  }
  .mobile-nav summary span { width: 16px; height: 1.5px; display: block; border-radius: 2px; background: #b6c8d9; transition: transform .18s ease, opacity .18s ease; }
  .mobile-nav[open] summary span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .mobile-nav[open] summary span:nth-child(2) { opacity: 0; }
  .mobile-nav[open] summary span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .mobile-nav > div {
    width: min(330px, calc(100vw - 28px));
    display: grid;
    position: absolute;
    top: calc(100% + 13px);
    right: 0;
    padding: 10px;
    border: 1px solid rgba(123, 167, 208, .26);
    border-radius: 15px;
    background: rgba(10, 25, 42, .98);
    box-shadow: 0 25px 65px rgba(0, 0, 0, .5);
    backdrop-filter: blur(20px);
  }
  .mobile-nav > div > a { min-height: 49px; display: flex; align-items: center; gap: 12px; padding: 0 13px; border-radius: 9px; color: #c0cedb; font-size: .88rem; font-weight: 600; }
  .mobile-nav > div > a:hover { background: rgba(72, 153, 236, .09); color: white; }
  .mobile-nav > div > a b { color: #56718b; font-size: .65rem; }
  .mobile-nav > div > .mobile-download { justify-content: space-between; margin-top: 6px; background: linear-gradient(125deg, #319cf2, #256bd7 65%, #704fd3); color: white; }
  .mobile-download span { font-size: 1.1rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-large { grid-column: span 2; }
  .steps article { padding-inline: 18px; }
  .security-panel { grid-template-columns: 1fr; }
  .shield-art { display: none; }
  .download-panel { grid-template-columns: 1fr; }
  .download-copy { text-align: center; }
  .download-copy .eyebrow, .download-actions { justify-content: center; }
  .download-copy > p { margin-inline: auto; }
  .release-card { max-width: 520px; width: 100%; justify-self: center; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { padding-bottom: env(safe-area-inset-bottom); }
  .site-header { padding-top: env(safe-area-inset-top); }
  .nav-wrap { min-height: 68px; }
  .button-small { min-height: 42px; padding-inline: 14px; }
  .hero { padding-top: 65px; overflow-x: hidden; overflow-x: clip; }
  .hero .glow { display: none; }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-meta { max-width: 360px; margin-inline: auto; justify-content: center; }
  .hero-art { width: 100%; max-width: 100%; min-width: 0; margin: 52px 0 0; transform: none; }
  .app-window { width: 100%; max-width: 100%; }
  .browser-pane, .queue-preview, .log-preview { min-width: 0; overflow: hidden; }
  .file-row > span, .list-head > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip > span { min-height: 60px; }
  .trust-strip > span:nth-child(2) { border-right: 0; }
  .trust-strip > span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding-top: 95px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: auto; }
  .workflow-section { margin-top: 95px; padding-bottom: 90px; }
  .steps { grid-template-columns: 1fr; gap: 58px; }
  .steps::before { display: none; }
  .steps article { max-width: 420px; margin-inline: auto; }
  .security-section { padding-top: 100px; }
  .security-panel { min-height: 0; padding: 45px 26px; }
  .download-section { padding-top: 105px; }
  .download-panel { padding: 48px 24px; }
  .download-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 680px) {
  .hero-art { width: 100%; margin-bottom: 0; transform: none; }
}

@media (max-width: 600px) {
  .hero-art { transform: none; margin-bottom: 0; }
  .app-window { font-size: 9px; }
  .window-controls i { width: 29px; }
  .app-menu { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .browser-grid { height: 286px; }
  .pane-toolbar { gap: 5px; padding-inline: 6px; }
  .tool-icons { display: none; }
  .connected { max-width: 82px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .pathbar { margin-inline: 5px; padding-inline: 6px; }
  .list-head, .file-row { grid-template-columns: minmax(0, 1fr) 43px; }
  .list-head > span:nth-child(3), .file-row > span:nth-child(3) { display: none; }
  .lower-grid { height: 102px; grid-template-columns: 1fr; }
  .queue-preview { border-right: 0; }
  .log-preview { display: none; }
  .transfer-row { grid-template-columns: minmax(0, 1fr) minmax(70px, .8fr) 70px; gap: 7px; padding-inline: 8px; }
  .global-status { justify-content: flex-end; }
  .global-status > span:first-child { display: none; }
}

@media (max-width: 480px) {
  .brand { gap: 8px; font-size: 1rem; }
  .brand-mark { width: 32px; height: 32px; }
  .nav-wrap { gap: 8px; }
  .button-small { min-height: 40px; padding-inline: 11px; font-size: .76rem; }
  .mobile-nav summary { width: 40px; height: 40px; }
  .mode-chip { min-width: 0; padding-inline: 6px; white-space: nowrap; }
  .connected { flex: 0 0 12px; width: 12px; font-size: 0; }
  .connected i { flex: 0 0 6px; }
  .pathbar { gap: 4px; padding-inline: 5px; }
  .transfer-file small { display: none; }
  .transfer-stat span { display: none; }
  .hero { padding-top: 50px; }
  .hero-actions .button { width: 100%; max-width: 330px; }
  .hero-art { width: 100%; margin-top: 42px; margin-bottom: 0; transform: none; }
  .trust-strip > span { padding-inline: 6px; font-size: .68rem; }
  .feature-card { min-height: 295px; padding: 25px; }
  .feature-icon { margin-bottom: 38px; }
  .mini-panes { grid-template-columns: 1fr; height: auto; }
  .mini-panes i { display: none; }
  .section-heading h2, .security-copy h2, .download-copy h2 { font-size: clamp(2.05rem, 11vw, 2.45rem); }
  .faq-list summary { min-height: 72px; font-size: .9rem; }
  .release-card { padding: 22px; }
  .checksum { grid-template-columns: auto 1fr; }
  .checksum button { grid-column: 1 / -1; }
  .footer-links { gap: 30px; }
}

@media (max-width: 350px) {
  :root { --shell: min(100% - 20px, 1180px); }
  .brand > span { font-size: .92rem; }
  .button-small { display: none; }
  .hero-art { transform: none; margin-bottom: 0; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > span { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .trust-strip > span:last-child { border-bottom: 0; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
