@charset "UTF-8";
:root {
  color-scheme: dark;
  --bg: #0a1115;
  --surface: #111d23;
  --line: #26343a;
  --text: #f1f6f5;
  --muted: #a0afb5;
  --accent: #b6ef79;
  --cyan: #68d5c2;
  font-family: "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
img {
  display: block;
  max-width: 100%;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--bg);
  z-index: 20;
}
.skip-link:focus {
  top: 10px;
}
.header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -1px;
}
.brand img {
  border-radius: 10px;
}
.brand-light {
  font-weight: 400;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
}
.desktop-nav a:hover {
  color: var(--text);
}
.header-download {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  border: 1px solid #475448;
  border-radius: 8px;
  padding: 10px 17px;
  color: var(--accent);
}
.header-download svg {
  width: 17px;
  height: 17px;
}
.header-download:hover {
  background: #18251a;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  align-items: center;
  gap: 30px;
  padding-top: 82px;
  padding-bottom: 85px;
  min-height: 740px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.release-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 1.3px;
}
.release-label > span:first-child {
  color: var(--accent);
  font-weight: 650;
}
.release-version {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  letter-spacing: 0;
  font-size: 13px;
  border-left: 1px solid #465052;
  padding-left: 16px;
}
.release-version svg {
  width: 15px;
  height: 15px;
}
h1 {
  font-size: clamp(52px, 5.3vw, 76px);
  line-height: 1.08;
  letter-spacing: -3.7px;
  font-weight: 650;
  margin: 30px 0 27px;
}
h1 > span {
  color: var(--accent);
}
.hero-description {
  max-width: 445px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 31px;
}
.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 19px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 23px;
  min-height: 58px;
  border-radius: 9px;
  font-weight: 650;
  font-size: 16px;
  transition:
    background 0.2s,
    transform 0.2s;
  line-height: 1.4;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--accent);
  color: #142017;
  box-shadow: 0 4px 24px #b6ef790a;
}
.primary:hover {
  background: #cafa94;
}
.button svg {
  width: 21px;
  height: 21px;
}
.button-end {
  margin-left: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #d7e1df;
}
.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.text-link:hover {
  color: var(--accent);
}
.text-link:hover svg {
  transform: translateX(3px);
}
.platform-note {
  color: #829397;
  font-size: 12px;
  margin-top: 21px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-visual {
  position: relative;
  isolation: isolate;
  padding: 18px 0 25px 5px;
}
.visual-aura {
  position: absolute;
  inset: -12% -2% -5% -25%;
  background: radial-gradient(ellipse, #244b4870, transparent 68%);
  z-index: -1;
  pointer-events: none;
}
.orbit-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: #81a198;
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px 28px;
}
.orbit-line {
  width: 42px;
  height: 1px;
  background: #719088;
}
.app-window {
  margin: 0;
  border: 1px solid #496264;
  border-radius: 14px;
  overflow: hidden;
  background: #0b151b;
  box-shadow: 0 36px 80px #0007;
  transform: perspective(1500px) rotateY(-8deg) rotateX(3deg);
  transform-origin: center;
  position: relative;
}
.window-title {
  padding: 13px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(95deg, #1b2d36, #17242c);
  font-size: 12px;
  color: #b9c8cc;
  border-bottom: 1px solid #34434c;
}
.window-title > span:first-child {
  display: flex;
  gap: 8px;
  align-items: center;
}
.window-controls {
  display: flex;
  gap: 23px;
  color: #819399;
  font-size: 16px;
}
.window-controls i {
  font-style: normal;
  font-size: 13px;
}
.app-screenshot {
  width: 100%;
  height: auto;
  aspect-ratio: 1278/980;
  object-fit: cover;
}
.app-window figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 19px;
  border-top: 1px solid #24353e;
  color: #bbc7ca;
  font-size: 12px;
  background: #111e25;
}
.app-window figcaption span:last-child {
  color: #759593;
}
.core-label {
  position: absolute;
  bottom: 0;
  left: -21px;
  background: #1a2b2bef;
  border: 1px solid #405a52;
  border-radius: 11px;
  backdrop-filter: blur(15px);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 12px 40px #0005;
}
.core-label > svg {
  color: var(--accent);
}
.core-label div {
  display: flex;
  flex-direction: column;
  line-height: 1.65;
}
.core-label div span {
  font-size: 12px;
  color: #a2b6b1;
}
.core-label strong {
  font-size: 14px;
  font-weight: 550;
}
.core-label .core-check {
  height: 20px;
  width: 20px;
  margin-left: 20px;
  padding: 3px;
  background: #b6ef7920;
  border-radius: 50%;
}
.feature-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 31px;
}
.feature-strip > div {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-inline: 28px;
  border-right: 1px solid var(--line);
}
.feature-strip > div:first-child {
  padding-left: 0;
}
.feature-strip > div:last-child {
  border-right: 0;
}
.feature-strip svg {
  color: var(--cyan);
  height: 25px;
  width: 25px;
}
.feature-strip p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-strip strong {
  font-size: 15px;
  font-weight: 550;
}
.feature-strip span {
  font-size: 13px;
  color: var(--muted);
}
.section {
  padding-block: 100px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--cyan);
  font-weight: 650;
  margin: 0 0 19px;
}
h2 {
  font-size: 46px;
  font-weight: 550;
  letter-spacing: -1.6px;
  line-height: 1.16;
  margin: 0;
}
h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 42px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 14px 4px 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  padding: 32px;
  border: 1px solid #26363b;
  border-radius: 12px;
  background: linear-gradient(130deg, #14202688, #0e171d);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.step-number {
  position: absolute;
  right: 26px;
  top: 19px;
  font-size: 46px;
  font-weight: 350;
  color: #34434a;
  letter-spacing: -2px;
}
.step > svg {
  height: 30px;
  width: 30px;
  margin-bottom: 33px;
  color: var(--cyan);
}
.step p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 13px 0 25px;
}
.step > a,
.step-finish {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--accent);
}
.step > a:hover {
  text-decoration: underline;
}
.step a svg,
.step-finish svg {
  width: 18px;
  height: 18px;
}
.step-finish {
  color: #80998a;
}
.download-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  border: 1px solid #385048;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 15% 110%, #20453a88, transparent 60%), #14211f;
  padding: 57px 62px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.download-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/world-map.svg") center/cover no-repeat;
  opacity: 0.12;
  z-index: -1;
}
.download-copy h2 {
  font-size: 54px;
  color: #f2f8ed;
}
.download-copy > p:not(.eyebrow) {
  color: #afc0b8;
  margin-top: 23px;
  line-height: 1.8;
}
.download-specs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.download-specs span {
  border: 1px solid #3a5147;
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 12px;
  color: #bac8bd;
}
.download-options {
  align-self: center;
}
.installer {
  background: #0c1715cc;
  border: 1px solid #3c5446;
  padding: 26px;
  border-radius: 12px;
}
.installer-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.windows-tile {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: #23362d;
  display: grid;
  place-items: center;
  color: var(--accent);
}
.installer-heading h3 {
  font-size: 18px;
}
.installer-heading p {
  font-size: 12px;
  margin: 3px 0 0;
  color: var(--muted);
}
.recommended {
  font-size: 12px;
  border: 1px solid #48623c;
  border-radius: 4px;
  padding: 3px 7px;
  color: #bddda6;
  margin-left: auto;
}
.installer .button {
  width: 100%;
  justify-content: space-between;
}
.download-caption {
  font-size: 12px;
  text-align: center;
  color: #81948c;
  margin: 12px 0 0;
}
.portable {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 22px 3px 0;
}
.portable strong {
  font-weight: 500;
  font-size: 14px;
  display: block;
}
.portable span {
  font-size: 12px;
  color: #8eaa9a;
  display: block;
  margin-top: 5px;
}
.portable > svg {
  width: 20px;
  color: #aac99b;
}
.portable:hover strong {
  color: var(--accent);
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 70px;
}
.faq-section .text-link {
  margin-top: 26px;
  color: var(--cyan);
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 23px 0;
  list-style: none;
  font-size: 17px;
  font-weight: 500;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--cyan);
  transition: transform 0.2s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  margin: 0 35px 24px 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
details p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.key-banner {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #111e24;
  padding: 32px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.key-banner-title {
  display: flex;
  align-items: center;
  gap: 22px;
}
.key-banner-title > svg {
  height: 30px;
  width: 30px;
  color: var(--cyan);
}
.key-banner h2 {
  font-size: 22px;
  letter-spacing: -0.5px;
}
.key-banner p {
  font-size: 14px;
  color: var(--muted);
  margin: 8px 0 0;
}
.key-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.secondary {
  background: #20363e;
  color: #e1f0ec;
  border: 1px solid #37515a;
  font-size: 14px;
  min-height: 50px;
  padding: 12px 16px;
}
.secondary:hover {
  background: #2a4650;
}
.secondary > svg {
  width: 19px;
  height: 19px;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 45px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}
.footer .brand {
  font-size: 21px;
}
.footer p,
.footer > span {
  font-size: 12px;
  color: #829298;
}
.download-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, calc(100% - 32px));
  background: #22332b;
  border: 1px solid #627d52;
  border-radius: 12px;
  padding: 18px 20px;
  z-index: 10;
  box-shadow: 0 10px 50px #000a;
  align-items: center;
  gap: 15px;
  color: #e6eddf;
  font-size: 14px;
}
.download-notice:not([hidden]) {
  display: flex;
}
.download-notice > svg {
  color: var(--accent);
}
.download-notice a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.download-notice button {
  border: 0;
  background: none;
  color: inherit;
  font-size: 25px;
  cursor: pointer;
  padding: 0 4px;
  margin-left: auto;
}
@media (min-width: 1450px) {
  .hero {
    gap: 55px;
  }
  .hero-copy {
    padding-bottom: 10px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 20px;
    min-height: 660px;
    padding-top: 65px;
    padding-bottom: 68px;
  }
  h1 {
    font-size: 60px;
    letter-spacing: -3px;
  }
  .hero-description {
    font-size: 16px;
  }
  .app-window figcaption {
    font-size: 12px;
    padding-inline: 12px;
  }
  .app-window figcaption span:last-child {
    display: none;
  }
  .step {
    padding: 26px;
  }
  h3 {
    font-size: 18px;
  }
  .download-section {
    padding: 40px;
    gap: 35px;
  }
  .recommended {
    display: none;
  }
  .key-banner {
    padding: 28px;
  }
  .key-actions {
    gap: 15px;
  }
  .key-banner-title > svg {
    display: none;
  }
  .feature-strip > div {
    padding-inline: 20px;
    gap: 13px;
  }
  .feature-strip strong {
    font-size: 14px;
  }
  .feature-strip span {
    font-size: 12px;
  }
  .faq-section {
    gap: 45px;
  }
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 850px) {
  .desktop-nav {
    gap: 18px;
    font-size: 13px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 55px;
    padding-bottom: 65px;
    text-align: center;
  }
  .hero-copy {
    max-width: 650px;
    margin: auto;
  }
  .hero-description {
    margin: 0 auto 27px;
    max-width: 510px;
    font-size: 18px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero-actions {
    align-items: center;
  }
  .platform-note {
    justify-content: center;
  }
  .hero-visual {
    width: min(620px, 95%);
    margin: 0 auto;
    padding-left: 0;
  }
  .app-window {
    transform: none;
  }
  .app-window figcaption span:last-child {
    display: block;
  }
  .app-window figcaption {
    font-size: 12px;
  }
  .orbit-label {
    display: none;
  }
  .core-label {
    left: -12px;
  }
  .feature-strip {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .feature-strip > div {
    padding: 22px 0 !important;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-strip > div:last-child {
    border-bottom: 0;
  }
  .feature-strip strong {
    font-size: 16px;
  }
  .feature-strip span {
    font-size: 14px;
  }
  .section {
    padding-block: 70px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 30px;
  }
  .steps {
    gap: 12px;
  }
  .step {
    padding: 23px 20px;
  }
  .step h3 {
    font-size: 18px;
  }
  .step p {
    font-size: 14px;
  }
  .step-number {
    right: 15px;
    font-size: 38px;
  }
  .download-section {
    padding: 35px;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .download-copy h2 {
    font-size: 42px;
  }
  .download-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .installer {
    padding: 20px;
  }
  .installer-heading h3 {
    font-size: 16px;
  }
  .windows-tile {
    width: 35px;
    height: 35px;
  }
  .installer .button {
    padding: 15px;
    font-size: 15px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .key-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer p {
    display: none;
  }
}
@media (max-width: 580px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 82px;
    gap: 15px;
  }
  .brand {
    font-size: 22px;
    gap: 9px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .desktop-nav {
    display: none;
  }
  .header-download {
    padding: 8px 12px;
    gap: 12px;
    font-size: 13px;
  }
  .header-download svg {
    width: 16px;
  }
  .hero {
    padding-top: 37px;
    gap: 29px;
    padding-bottom: 48px;
  }
  .release-label {
    font-size: 12px;
    gap: 11px;
    letter-spacing: 1px;
  }
  .release-version {
    font-size: 12px;
    padding-left: 11px;
  }
  .hero h1 {
    font-size: clamp(43px, 11vw, 60px);
    letter-spacing: -2.2px;
    line-height: 1.09;
    margin: 24px 0;
  }
  .hero-description {
    font-size: 16px;
    line-height: 1.7;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    padding: 16px 19px;
    gap: 10px;
    font-size: 15px;
    width: 100%;
  }
  .button-end {
    margin-left: auto;
  }
  .platform-note {
    font-size: 12px;
    gap: 7px;
    margin-top: 18px;
  }
  .hero-visual {
    width: 100%;
    padding-bottom: 25px;
  }
  .app-window {
    border-radius: 9px;
  }
  .window-title {
    padding: 9px 12px;
    font-size: 12px;
  }
  .window-title img {
    width: 14px;
    height: 14px;
  }
  .window-controls {
    gap: 16px;
    font-size: 13px;
  }
  .window-controls i {
    font-size: 12px;
  }
  .app-window figcaption {
    padding: 10px 12px;
    font-size: 12px;
  }
  .app-window figcaption span:last-child {
    display: none;
  }
  .core-label {
    padding: 9px 14px;
    left: 12px;
    bottom: 0;
    gap: 10px;
    border-radius: 8px;
  }
  .core-label > svg {
    width: 18px;
    height: 18px;
  }
  .core-label div span {
    font-size: 12px;
  }
  .core-label strong {
    font-size: 12px;
  }
  .core-label .core-check {
    margin-left: 5px;
    width: 17px;
    height: 17px;
  }
  .feature-strip > div {
    padding-block: 20px !important;
    gap: 18px;
  }
  .feature-strip svg {
    height: 25px;
    width: 25px;
  }
  .feature-strip strong {
    font-size: 15px;
  }
  .feature-strip span {
    font-size: 13px;
  }
  .section {
    padding-block: 56px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 1.8px;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 35px;
    letter-spacing: -1.2px;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading > p {
    margin-top: 22px;
    font-size: 15px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .step {
    padding: 27px;
  }
  .step > svg {
    margin-bottom: 23px;
  }
  .step-number {
    top: 15px;
    right: 24px;
    font-size: 45px;
  }
  .step h3 {
    font-size: 20px;
  }
  .step p {
    font-size: 15px;
    max-width: 330px;
  }
  .download-section {
    padding: 28px 22px;
    grid-template-columns: 1fr;
    gap: 30px;
    border-radius: 13px;
  }
  .download-copy h2 {
    font-size: 43px;
  }
  .download-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .download-specs {
    margin-top: 22px;
  }
  .installer {
    padding: 22px;
  }
  .installer-heading h3 {
    font-size: 18px;
  }
  .windows-tile {
    width: 39px;
    height: 39px;
  }
  .installer .button {
    font-size: 16px;
  }
  .download-caption {
    font-size: 12px;
  }
  .portable {
    padding-top: 23px;
  }
  .portable strong {
    font-size: 14px;
  }
  .faq-section {
    gap: 30px;
  }
  summary {
    font-size: 16px;
    padding-block: 20px;
    gap: 20px;
  }
  details p {
    font-size: 15px;
    margin-right: 12px;
  }
  .key-banner {
    padding: 27px 23px;
  }
  .key-banner h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .key-banner p {
    font-size: 14px;
  }
  .key-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .footer {
    margin-top: 32px;
    padding-block: 30px;
    gap: 10px;
  }
  .footer .brand {
    font-size: 19px;
  }
  .footer > span {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
