/* Incy for Windows landing page */
:root {
  --bg: #080b18;
  --bg-2: #0b1024;
  --bg-3: #0d142b;
  --surface: #11162c;
  --surface-2: #161c36;
  --surface-3: #1a2242;
  --text: #f7f8ff;
  --muted: #a8aec7;
  --muted-2: #737b9c;
  --line: rgba(172, 191, 255, .13);
  --line-strong: rgba(172, 191, 255, .24);
  --blue: #5e8bff;
  --blue-2: #6d64ff;
  --cyan: #65e7ef;
  --hot: #ff744b;
  --hot-2: #ffad58;
  --dark: #080b18;
  --white: #fff;
  --container: 1200px;
  --header-h: 82px;
  --radius-sm: 14px;
  --radius-md: 23px;
  --radius-lg: 38px;
  --shadow: 0 35px 90px rgba(0, 0, 0, .42);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 4%, rgba(87, 117, 255, .17), transparent 30rem),
    radial-gradient(circle at 8% 32%, rgba(126, 82, 255, .10), transparent 31rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

code {
  padding: .16em .38em;
  color: #dce5ff;
  border: 1px solid rgba(127, 157, 255, .15);
  border-radius: 6px;
  background: rgba(70, 94, 171, .13);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: .88em;
}

::selection {
  color: #fff;
  background: #4b71e6;
}

:focus-visible {
  outline: 3px solid rgba(255, 137, 75, .86);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 11, 24, .84);
  border-color: var(--line);
  box-shadow: 0 16px 55px rgba(0, 0, 0, .23);
  backdrop-filter: blur(24px) saturate(140%);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand > img {
  border-radius: 13px;
  box-shadow: 0 12px 34px rgba(79, 117, 255, .22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.05em;
}

.brand-copy small {
  margin-top: 5px;
  color: #8d96b6;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  margin-inline: auto;
}

.site-nav a {
  position: relative;
  color: #b7bdd5;
  font-size: 13px;
  font-weight: 650;
  transition: color .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  border-radius: 13px;
  font-size: 12px;
}

.button-large {
  min-height: 61px;
  padding-inline: 25px;
  border-radius: 17px;
}

.button-wide {
  width: 100%;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #4d78ec, var(--blue) 54%, #7166ff);
  box-shadow: 0 16px 40px rgba(77, 120, 236, .24), inset 0 1px rgba(255, 255, 255, .25);
}

.button-primary:hover {
  box-shadow: 0 20px 48px rgba(77, 120, 236, .36), inset 0 1px rgba(255, 255, 255, .25);
}

.button-hot {
  color: #190b07;
  background: linear-gradient(135deg, var(--hot), #ff8b4f 54%, var(--hot-2));
  box-shadow: 0 16px 40px rgba(255, 116, 75, .22), inset 0 1px rgba(255, 255, 255, .35);
}

.button-hot:hover {
  box-shadow: 0 21px 49px rgba(255, 116, 75, .35), inset 0 1px rgba(255, 255, 255, .35);
}

.button-ghost {
  color: #eef1ff;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
}

.button-ghost:hover {
  border-color: rgba(107, 139, 255, .43);
  background: rgba(91, 123, 221, .09);
}

.button-dark {
  color: #fff;
  background: #080b18;
  box-shadow: 0 17px 42px rgba(0, 0, 0, .24);
}

.button-dark:hover {
  background: #11162b;
}

.button-light {
  color: #111429;
  background: rgba(255, 255, 255, .92);
  border-color: rgba(255, 255, 255, .6);
}

.button-light:hover {
  background: #fff;
}

.button-arrow {
  font-size: 18px;
  line-height: 1;
}

.button-glint {
  position: absolute;
  inset: 0 auto 0 -70%;
  z-index: -1;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-20deg);
  animation: glint 4.5s ease-in-out infinite;
}

@keyframes glint {
  0%, 68% { left: -70%; }
  92%, 100% { left: 130%; }
}

.hero {
  position: relative;
  min-height: 940px;
  padding: 156px 0 38px;
  overflow: clip;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(103, 132, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 132, 255, .06) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at 67% 36%, #000, transparent 66%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(24px);
}

.hero-orb-one {
  top: 28px;
  right: -210px;
  width: 720px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(80, 119, 255, .21), transparent 67%);
}

.hero-orb-two {
  bottom: -70px;
  left: -260px;
  width: 610px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(125, 82, 255, .13), transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(450px, .97fr);
  align-items: center;
  gap: 64px;
}

.hero-layout > * {
  min-width: 0;
}

.hero-copy {
  width: 100%;
  max-width: 720px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  color: #b6bfdc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
}

.windows-mini {
  display: grid;
  grid-template-columns: repeat(2, 6px);
  grid-template-rows: repeat(2, 6px);
  gap: 2px;
  flex: 0 0 auto;
}

.windows-mini i {
  display: block;
  border-radius: 1px;
  background: var(--blue);
}

.windows-mini i:nth-child(2) { background: #746cff; }
.windows-mini i:nth-child(3) { background: var(--cyan); }
.windows-mini i:nth-child(4) { background: #8aa8ff; }

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 6vw, 89px);
  line-height: .98;
  letter-spacing: -.074em;
}

.mobile-break {
  display: none;
}

.hero h1 > span {
  color: transparent;
  background: linear-gradient(105deg, #fff 0%, #8eb2ff 34%, #7b74ff 67%, #edf3ff 120%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: headline-shift 8s linear infinite;
}

@keyframes headline-shift {
  to { background-position: -200% 0; }
}

.hero-lead {
  max-width: 665px;
  margin-bottom: 33px;
  color: #aeb5cf;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 690px;
  margin-top: 42px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 5px;
  color: #f0f3ff;
  font-size: 15px;
  letter-spacing: -.02em;
}

.hero-facts span {
  color: #707999;
  font-size: 10px;
  font-weight: 700;
}

.hero-note {
  margin: 17px 0 0;
  color: #737d9d;
  font-size: 10px;
  font-weight: 700;
}

.hero-note.is-windows {
  color: #9eb7ff;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  perspective: 1200px;
}

.monitor {
  position: absolute;
  top: 87px;
  left: 50%;
  z-index: 3;
  width: 610px;
  transform: translateX(-50%) rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.monitor-frame {
  padding: 11px;
  border: 1px solid rgba(193, 205, 255, .28);
  border-radius: 28px;
  background: linear-gradient(145deg, #27304f, #0d1122 45%, #202844);
  box-shadow: 0 60px 120px rgba(0, 0, 0, .58), inset 0 1px rgba(255, 255, 255, .08);
}

.app-window {
  height: 390px;
  overflow: hidden;
  border-radius: 19px;
  background: #0d1225;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 43px;
  padding: 0 13px 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
  background: #11172c;
}

.window-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bfc7df;
  font-size: 9px;
  font-weight: 750;
}

.window-title img {
  border-radius: 6px;
}

.window-controls {
  display: flex;
  gap: 17px;
}

.window-controls i {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
}

.window-controls i::before {
  content: "";
  position: absolute;
  inset: 3px 0;
  background: #67708c;
}

.window-controls i:nth-child(2) {
  border: 1px solid #67708c;
}

.window-controls i:nth-child(3)::before,
.window-controls i:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 3px;
  left: -1px;
  width: 10px;
  height: 1px;
  background: #7c859d;
  transform: rotate(45deg);
}

.window-controls i:nth-child(3)::after {
  transform: rotate(-45deg);
}

.window-content {
  display: grid;
  grid-template-columns: 59px 1fr;
  height: calc(100% - 43px);
}

.app-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
  border-right: 1px solid rgba(255, 255, 255, .055);
  background: #0b1020;
}

.side-logo {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  margin-bottom: 4px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-size: 8px;
  font-weight: 950;
}

.side-item {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
}

.side-item i {
  width: 13px;
  height: 13px;
  border: 1px solid #59617c;
  border-radius: 4px;
}

.side-item.active {
  background: rgba(89, 127, 255, .13);
}

.side-item.active i {
  border-color: #7fa2ff;
  background: rgba(91, 133, 255, .15);
}

.side-item.bottom {
  margin-top: auto;
}

.app-main {
  padding: 21px;
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

.app-head small,
.app-head strong {
  display: block;
}

.app-head small {
  color: #68708a;
  font-size: 7px;
}

.app-head strong {
  margin-top: 2px;
  font-size: 12px;
}

.app-badge {
  padding: 5px 8px;
  color: #a6f0e8;
  border: 1px solid rgba(101, 231, 239, .18);
  border-radius: 999px;
  background: rgba(101, 231, 239, .06);
  font-size: 7px;
  font-weight: 850;
}

.connection-panel {
  display: grid;
  grid-template-columns: 1fr 170px;
  align-items: center;
  min-height: 150px;
  padding: 18px 22px;
  overflow: hidden;
  border: 1px solid rgba(103, 138, 255, .14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 83% 48%, rgba(92, 136, 255, .18), transparent 105px),
    linear-gradient(135deg, rgba(65, 86, 160, .16), rgba(15, 21, 42, .5));
}

.connection-copy span,
.connection-copy strong,
.connection-copy small {
  display: block;
}

.connection-copy span {
  color: #68728f;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.connection-copy strong {
  margin: 7px 0 3px;
  font-size: 15px;
  letter-spacing: -.03em;
}

.connection-copy small {
  color: #79829c;
  font-size: 8px;
}

.power-control {
  position: relative;
  display: grid;
  width: 140px;
  height: 140px;
  place-items: center;
  justify-self: end;
}

.power-wave {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(98, 144, 255, .17);
  border-radius: 50%;
}

.wave-one {
  animation: power-wave 3.2s ease-out infinite;
}

.wave-two {
  inset: 15px;
  animation: power-wave 3.2s 1.6s ease-out infinite;
}

@keyframes power-wave {
  0% { opacity: .25; transform: scale(.82); }
  52% { opacity: .82; }
  100% { opacity: 0; transform: scale(1.15); }
}

.power-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 81px;
  height: 81px;
  place-items: center;
  border: 1px solid rgba(180, 204, 255, .44);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 29%, #9fc0ff, #5d88ff 58%, #584cd8);
  box-shadow: 0 0 0 13px rgba(91, 132, 255, .05), 0 0 45px rgba(75, 119, 255, .26), inset 0 2px rgba(255, 255, 255, .42);
}

.power-core svg {
  width: 29px;
  fill: #10183a;
}

.app-bottom-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10px;
  margin-top: 10px;
}

.server-list,
.speed-card {
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 13px;
  background: rgba(255, 255, 255, .018);
}

.server-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 6px 7px;
  border-radius: 8px;
}

.server-row.active {
  background: rgba(92, 135, 255, .09);
}

.server-row span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #9db5ff;
  border-radius: 7px;
  background: #171f3a;
  font-size: 6px;
  font-weight: 900;
}

.server-row b {
  font-size: 7px;
}

.server-row em {
  color: #616b89;
  font-size: 6px;
  font-style: normal;
}

.speed-card > span,
.speed-card strong,
.speed-card small {
  display: block;
}

.speed-card > span {
  color: #68718d;
  font-size: 7px;
}

.speed-card strong {
  margin-top: 7px;
  font-size: 22px;
  line-height: 1;
}

.speed-card small {
  color: #68718d;
  font-size: 6px;
}

.speed-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 38px;
  margin-top: 8px;
}

.speed-bars i {
  flex: 1;
  min-height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(79, 118, 235, .28), #6b93ff);
}

.monitor-neck {
  width: 70px;
  height: 42px;
  margin: -1px auto 0;
  border-inline: 1px solid rgba(190, 203, 255, .15);
  background: linear-gradient(90deg, #171d32, #343d5d 50%, #141a2e);
}

.monitor-base {
  width: 180px;
  height: 15px;
  margin: 0 auto;
  border: 1px solid rgba(190, 203, 255, .16);
  border-radius: 50% 50% 8px 8px;
  background: linear-gradient(180deg, #343c59, #14192b);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .32);
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: #c8d2ee;
  border: 1px solid rgba(180, 196, 255, .17);
  border-radius: 13px;
  background: rgba(17, 23, 46, .84);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .32);
  font-size: 9px;
  font-weight: 850;
  backdrop-filter: blur(16px);
  animation: floating 5s ease-in-out infinite;
}

.chip-win {
  top: 42px;
  left: 8px;
}

.chip-arch {
  top: 112px;
  right: -18px;
  animation-delay: 1.4s;
}

@keyframes floating {
  50% { transform: translateY(-9px); }
}

.tray-card {
  position: absolute;
  right: -10px;
  bottom: 40px;
  z-index: 5;
  display: grid;
  grid-template-columns: 34px 1fr 8px;
  align-items: center;
  gap: 10px;
  min-width: 245px;
  padding: 13px 14px;
  border: 1px solid rgba(180, 196, 255, .17);
  border-radius: 15px;
  background: rgba(15, 21, 42, .88);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .36);
  backdrop-filter: blur(18px);
  animation: floating 5s .7s ease-in-out infinite;
}

.tray-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(89, 128, 255, .09);
}

.tray-icon img {
  border-radius: 7px;
}

.tray-card strong,
.tray-card small {
  display: block;
}

.tray-card strong {
  font-size: 9px;
}

.tray-card small {
  margin-top: 2px;
  color: #717b98;
  font-size: 7px;
}

.tray-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(101, 231, 239, .8);
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  padding: 20px 24px;
  color: #737d9d;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .018);
  font-size: 11px;
  font-weight: 800;
}

.hero-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #536081;
}

.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -.06em;
}

.section-heading > p {
  max-width: 675px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.centered {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-kicker {
  color: #85a5ff;
}

.section-kicker::before {
  content: "";
  width: 27px;
  height: 1px;
  background: currentColor;
}

.section-kicker.light {
  color: #172142;
}

.download-section {
  background: #0a0f20;
  border-block: 1px solid rgba(255, 255, 255, .04);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.download-card {
  position: relative;
  min-height: 475px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 45%),
    var(--surface);
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}

.download-card.recommended {
  border-color: rgba(96, 140, 255, .32);
  background:
    radial-gradient(circle at 88% 5%, rgba(91, 133, 255, .16), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 45%),
    #11182f;
  box-shadow: inset 4px 0 #5d89ff, 0 28px 70px rgba(36, 62, 137, .16);
}

.recommend-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  color: #bcd0ff;
  border: 1px solid rgba(105, 145, 255, .2);
  border-radius: 999px;
  background: rgba(82, 120, 228, .1);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.download-card-head {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 20px 0 29px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, .065);
}

.download-icon {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  color: #d9e4ff;
  border: 1px solid rgba(112, 151, 255, .25);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(82, 126, 245, .24), rgba(103, 90, 255, .12));
}

.download-icon.alternate {
  color: #c4d1ef;
  border-color: var(--line);
  background: rgba(255, 255, 255, .035);
}

.download-icon svg {
  width: 30px;
  fill: currentColor;
}

.download-icon.alternate svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-card h3,
.download-card p {
  margin-bottom: 0;
}

.download-card h3 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.download-card p {
  margin-top: 5px;
  color: #7e88a7;
  font-size: 11px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #a8b0c9;
  font-size: 13px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #95adff;
  border-radius: 50%;
  background: rgba(90, 132, 255, .1);
  font-size: 9px;
  font-weight: 900;
}

.source-note {
  display: block;
  margin-top: 13px;
  color: #69738f;
  font-size: 9px;
  text-align: center;
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.download-meta > div,
.download-meta > a {
  min-height: 78px;
  padding: 17px 20px;
  background: #0e1428;
}

.download-meta span,
.download-meta strong {
  display: block;
}

.download-meta span {
  color: #66708d;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.download-meta strong {
  margin-top: 4px;
  font-size: 12px;
}

.download-meta > a {
  display: flex;
  align-items: center;
  color: #8eabff;
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.features-section {
  padding-top: 125px;
}

.features-section > .container > .section-heading {
  max-width: 790px;
  margin-bottom: 53px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 48%),
    var(--surface);
  transition: transform .25s ease, border-color .25s ease;
}

.feature-card:hover {
  border-color: rgba(100, 141, 255, .28);
  transform: translateY(-5px);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 126, 255, .10), transparent 68%);
  pointer-events: none;
}

.feature-wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  min-height: 410px;
}

.feature-dark {
  background:
    radial-gradient(circle at 84% 40%, rgba(102, 229, 239, .09), transparent 36%),
    #0b1123;
}

.feature-index {
  display: block;
  margin-bottom: 37px;
  color: #596482;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.feature-card p {
  max-width: 500px;
  margin-bottom: 0;
  color: #8f98b5;
  line-height: 1.72;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.feature-pills span {
  padding: 7px 10px;
  color: #91a4d9;
  border: 1px solid rgba(111, 145, 238, .13);
  border-radius: 999px;
  background: rgba(77, 105, 190, .06);
  font-size: 9px;
  font-weight: 850;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 27px;
  color: #87a7ff;
  border: 1px solid rgba(99, 140, 255, .2);
  border-radius: 16px;
  background: rgba(84, 125, 239, .08);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link-visual {
  position: relative;
  min-height: 270px;
  padding: 44px 18px 18px;
}

.link-visual::before,
.link-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(93, 137, 255, .14);
  border-radius: 50%;
}

.link-visual::before {
  inset: 10px 25px;
}

.link-visual::after {
  inset: 43px 59px;
  border-style: dashed;
}

.link-dot {
  position: relative;
  z-index: 2;
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  border: 1px solid rgba(165, 190, 255, .3);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, #a9c3ff, #5c85f8 62%, #5749ce);
  box-shadow: 0 0 0 13px rgba(83, 125, 244, .05), 0 0 45px rgba(84, 126, 250, .25);
}

.link-field {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 11px;
  border: 1px solid rgba(115, 151, 255, .19);
  border-radius: 13px;
  background: rgba(9, 15, 33, .82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

.link-field i {
  width: 26px;
  height: 26px;
  border: 1px solid #697899;
  border-radius: 8px;
}

.link-field b {
  overflow: hidden;
  color: #8995b5;
  font-family: Consolas, monospace;
  font-size: 7px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-field em {
  padding: 7px 9px;
  color: #fff;
  border-radius: 8px;
  background: #567ff1;
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
}

.link-success {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 10px auto 0;
  padding: 8px 10px;
  color: #99e8e8;
  border: 1px solid rgba(101, 231, 239, .13);
  border-radius: 9px;
  background: rgba(101, 231, 239, .055);
  font-size: 7px;
  font-weight: 800;
}

.privacy-visual {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
}

.shield {
  position: relative;
  z-index: 2;
  display: grid;
  width: 118px;
  height: 140px;
  place-items: center;
  clip-path: polygon(50% 0, 93% 16%, 88% 70%, 50% 100%, 12% 70%, 7% 16%);
  background: linear-gradient(145deg, #6be3ec, #4d83ef 54%, #6d53da);
  filter: drop-shadow(0 24px 35px rgba(54, 107, 213, .3));
}

.shield::before {
  content: "";
  position: absolute;
  inset: 7px;
  clip-path: inherit;
  background: #111a36;
}

.shield span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: #10172e;
  border-radius: 50%;
  background: #81e4ed;
  font-size: 21px;
  font-weight: 950;
}

.privacy-lines {
  position: absolute;
  inset: 30px 10px;
}

.privacy-lines i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(102, 172, 255, .14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.privacy-lines i:nth-child(1) { width: 180px; height: 180px; }
.privacy-lines i:nth-child(2) { width: 230px; height: 230px; border-style: dashed; }
.privacy-lines i:nth-child(3) { width: 280px; height: 280px; }

.privacy-visual strong {
  position: absolute;
  bottom: 5px;
  color: #596680;
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: .2em;
}

.compatibility-section {
  overflow: hidden;
  background: #0a1022;
  border-block: 1px solid rgba(255, 255, 255, .04);
}

.compatibility-layout {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 85px;
}

.compatibility-copy h2 {
  margin-bottom: 23px;
  font-size: clamp(43px, 5.1vw, 70px);
  line-height: 1.03;
  letter-spacing: -.065em;
}

.compatibility-copy > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.compatibility-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 35px;
}

.compatibility-cards article {
  display: grid;
  grid-template-columns: 57px 1fr;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
}

.windows-version {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(129, 164, 255, .25);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(75, 115, 232, .32), rgba(105, 87, 232, .18));
  font-size: 19px;
  font-weight: 950;
}

.compatibility-cards h3,
.compatibility-cards p {
  margin-bottom: 0;
}

.compatibility-cards h3 {
  font-size: 15px;
}

.compatibility-cards p {
  color: #747e9c;
  font-size: 9px;
}

.compatibility-cards article > i {
  grid-column: 1 / -1;
  display: block;
  padding-top: 10px;
  color: #78d6df;
  border-top: 1px solid rgba(255, 255, 255, .055);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  text-align: right;
}

.system-requirements {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .018);
}

.system-requirements h3 {
  margin-bottom: 13px;
  font-size: 14px;
}

.system-requirements ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-requirements li {
  position: relative;
  padding-left: 20px;
  color: #8993ae;
  font-size: 11px;
}

.system-requirements li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 0 0 9px rgba(94, 139, 255, .6);
}

.compatibility-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 48%, rgba(75, 116, 242, .20), transparent 190px),
    rgba(255, 255, 255, .015);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(98, 130, 232, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 130, 232, .08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.windows-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 230px;
  height: 230px;
  place-items: center;
  border: 1px solid rgba(138, 165, 255, .22);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, #283c83, #101936 64%, #0a1023);
  box-shadow: 0 0 0 23px rgba(76, 116, 239, .035), 0 0 80px rgba(69, 111, 238, .25), inset 0 1px rgba(255, 255, 255, .08);
  transform: translate(-50%, -50%);
}

.windows-emblem > span {
  display: grid;
  grid-template-columns: repeat(2, 66px);
  grid-template-rows: repeat(2, 66px);
  gap: 8px;
  transform: perspective(300px) rotateY(-8deg);
}

.windows-emblem i {
  display: block;
  border-radius: 5px;
  background: linear-gradient(145deg, #7cadff, #4d72e3);
  box-shadow: inset 0 1px rgba(255, 255, 255, .28), 0 10px 25px rgba(42, 80, 186, .23);
}

.windows-emblem i:nth-child(2) { background: linear-gradient(145deg, #8d86ff, #6655da); }
.windows-emblem i:nth-child(3) { background: linear-gradient(145deg, #71e4ee, #4799d8); }
.windows-emblem i:nth-child(4) { background: linear-gradient(145deg, #9eb9ff, #637ce0); }

.compat-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(92, 137, 255, .13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 350px;
  height: 350px;
  animation: compat-spin 19s linear infinite;
}

.ring-b {
  width: 455px;
  height: 455px;
  border-style: dashed;
  animation: compat-spin 25s linear reverse infinite;
}

@keyframes compat-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.spec-card {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(168, 190, 255, .17);
  border-radius: 14px;
  background: rgba(15, 22, 46, .86);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .3);
  backdrop-filter: blur(17px);
}

.spec-card small,
.spec-card strong {
  display: block;
}

.spec-card small {
  color: #687391;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.spec-card strong {
  margin-top: 4px;
  font-size: 10px;
}

.spec-one { top: 76px; left: 36px; animation: floating 5s ease-in-out infinite; }
.spec-two { top: 180px; right: 28px; animation: floating 5s 1.2s ease-in-out infinite; }
.spec-three { bottom: 63px; left: 60px; animation: floating 5s .5s ease-in-out infinite; }

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 60px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 138, 255, .32), transparent);
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 355px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.step-number {
  display: inline-grid;
  width: 65px;
  height: 65px;
  place-items: center;
  margin-bottom: 35px;
  color: #fff;
  border: 7px solid var(--bg);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 0 1px rgba(114, 153, 255, .32);
  font-size: 11px;
  font-weight: 950;
}

.step-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  color: #8aa8ff;
  border: 1px solid rgba(100, 142, 255, .17);
  border-radius: 13px;
  background: rgba(80, 119, 226, .075);
}

.step-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  margin-bottom: 11px;
  font-size: 20px;
  letter-spacing: -.035em;
}

.step-card p {
  color: #8791ad;
  font-size: 13px;
}

.step-card > a {
  position: absolute;
  bottom: 26px;
  left: 28px;
  color: #ff9568;
  font-size: 11px;
  font-weight: 850;
}

.setup-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 130, 78, .15);
  border-radius: 18px;
  background: rgba(255, 116, 75, .035);
}

.setup-callout > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.setup-callout > div > span {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #24100a;
  border-radius: 7px;
  background: var(--hot);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.setup-callout p {
  max-width: 830px;
  margin-bottom: 0;
  color: #9ea7c1;
  font-size: 12px;
}

.setup-callout > a {
  color: #ff9970;
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.locations-section {
  overflow: hidden;
  background: #090f20;
  border-block: 1px solid rgba(255, 255, 255, .04);
}

.locations-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 45px;
}

.locations-head .section-heading {
  max-width: 760px;
}

.location-stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 65% 45%, rgba(78, 123, 247, .13), transparent 240px),
    radial-gradient(circle at 20% 48%, rgba(255, 116, 75, .07), transparent 180px),
    rgba(255, 255, 255, .012);
}

.location-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(100, 136, 239, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 136, 239, .065) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.location-globe {
  position: absolute;
  top: 50%;
  left: 66%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(108, 147, 255, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 23px rgba(81, 122, 239, .025), 0 0 70px rgba(63, 103, 218, .2);
  transform: translate(-50%, -50%);
}

.location-globe > span {
  position: absolute;
  inset: 47px;
  border: 1px solid rgba(101, 141, 255, .18);
  border-radius: 50%;
}

.globe-line {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(111, 149, 255, .18);
  border-radius: 50%;
}

.line-one { width: 100%; height: 34%; transform: translate(-50%, -50%); }
.line-two { width: 34%; height: 100%; transform: translate(-50%, -50%); }
.line-three { width: 73%; height: 100%; transform: translate(-50%, -50%) rotate(48deg); }

.location-route {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 126, 78, .35), rgba(91, 135, 255, .5), transparent);
  transform-origin: left center;
}

.route-one { top: 46%; left: 18%; width: 45%; transform: rotate(-7deg); }
.route-two { top: 52%; left: 18%; width: 43%; transform: rotate(4deg); }
.route-three { top: 58%; left: 18%; width: 41%; transform: rotate(13deg); }

.location-pin {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(178, 195, 255, .16);
  border-radius: 999px;
  background: rgba(15, 21, 43, .86);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
  font-size: 9px;
  font-weight: 850;
  backdrop-filter: blur(15px);
}

.location-pin i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 12px rgba(255, 116, 75, .7);
}

.pin-us { top: 44%; left: 15%; }
.pin-eu { top: 43%; right: 16%; }
.pin-eu i { background: var(--cyan); box-shadow: 0 0 12px rgba(101, 231, 239, .7); }

.location-count {
  position: absolute;
  bottom: 38px;
  left: 42px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.location-count strong {
  font-size: 75px;
  line-height: .9;
  letter-spacing: -.07em;
}

.location-count span {
  color: #7b86a3;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.country-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .021);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.country-card:hover {
  border-color: rgba(100, 141, 255, .24);
  background: rgba(82, 121, 231, .045);
  transform: translateY(-3px);
}

.country-card > span {
  font-size: 23px;
}

.country-card h3 {
  overflow: hidden;
  margin-bottom: 0;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-card em {
  color: #59637f;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.locations-note {
  margin: 21px auto 0;
  color: #67718c;
  font-size: 10px;
  text-align: center;
}

.impressions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.impression-card {
  position: relative;
  min-height: 330px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .035), transparent 55%),
    var(--surface);
}

.impression-card.featured {
  border-color: rgba(105, 145, 255, .25);
  background:
    radial-gradient(circle at 85% 12%, rgba(94, 139, 255, .13), transparent 37%),
    var(--surface-2);
  transform: translateY(-15px);
}

.quote-symbol {
  display: block;
  margin-bottom: 45px;
  color: #64708d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.impression-card h3 {
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.045em;
}

.impression-card p {
  color: #929bb6;
  font-size: 14px;
  line-height: 1.75;
}

.impression-tag {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  padding-top: 17px;
  color: #86a6ff;
  border-top: 1px solid rgba(255, 255, 255, .065);
  font-size: 9px;
  font-weight: 850;
}

.faq-section {
  background: #090f20;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.faq-layout {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 88px;
  align-items: start;
}

.faq-layout > .section-heading {
  position: sticky;
  top: calc(var(--header-h) + 48px);
}

.faq-layout .section-heading .button {
  margin-top: 30px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .019);
  transition: border-color .2s ease, background .2s ease;
}

.faq-item[open] {
  border-color: rgba(102, 143, 255, .24);
  background: rgba(82, 121, 229, .04);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 24px;
  list-style: none;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  position: relative;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #a4abc2;
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%);
}

.faq-item p {
  max-width: 720px;
  padding: 0 66px 25px 24px;
  color: #8993ae;
  line-height: 1.76;
}

.final-cta-section {
  padding: 80px 0 110px;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  min-height: 490px;
  padding: 68px;
  overflow: hidden;
  color: #11152c;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #91b3ff, #7588ff 48%, #8171ff 73%, #ff9b6d 145%);
  box-shadow: 0 38px 100px rgba(62, 91, 201, .18), inset 0 1px rgba(255, 255, 255, .5);
}

.final-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(#14224a 1px, transparent 1px),
    linear-gradient(90deg, #14224a 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.final-cta::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -100px;
  width: 600px;
  aspect-ratio: 1;
  border: 1px solid rgba(12, 24, 62, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(12, 24, 62, .035), 0 0 0 140px rgba(12, 24, 62, .025);
}

.final-copy,
.final-actions {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(44px, 5.1vw, 72px);
  line-height: 1;
  letter-spacing: -.07em;
}

.final-cta p {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(19, 26, 59, .7);
  font-size: 16px;
  font-weight: 650;
}

.final-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  min-width: 330px;
}

.site-footer {
  padding: 70px 0 110px;
  border-top: 1px solid var(--line);
  background: #070a16;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 350px;
  margin: 22px 0 0;
  color: #727c98;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.footer-links h3 {
  margin-bottom: 16px;
  color: #626d89;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: #adb5ce;
  font-size: 11px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #88a8ff;
}

.footer-bottom {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
  padding-top: 25px;
  color: #545e79;
  border-top: 1px solid rgba(255, 255, 255, .055);
  font-size: 9px;
}

.footer-bottom p {
  max-width: 680px;
  margin-bottom: 0;
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 12px; }
  .header-cta { padding-inline: 13px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(405px, .86fr); gap: 35px; }
  .hero h1 { font-size: clamp(51px, 6.1vw, 76px); }
  .hero-visual { transform: scale(.9); transform-origin: center; }
  .monitor { width: 590px; }
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
  .download-meta { grid-template-columns: repeat(4, 1fr); }
  .download-meta > a { grid-column: 1 / -1; justify-content: center; min-height: 55px; }
  .final-cta { padding: 55px; }
}

@media (max-width: 940px) {
  :root { --header-h: 72px; }
  .section { padding: 90px 0; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    position: fixed;
    top: calc(var(--header-h) - 1px);
    right: 15px;
    left: 15px;
    display: grid;
    gap: 0;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(10, 14, 30, .98);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a { padding: 13px 14px; border-radius: 10px; }
  .site-nav a:hover { background: rgba(255, 255, 255, .04); }
  .site-nav a::after { display: none; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 800px; }
  .hero h1 { font-size: clamp(58px, 10vw, 88px); }
  .hero-visual { width: min(100%, 720px); min-height: 650px; margin: 5px auto 0; transform: none; }
  .download-grid,
  .compatibility-layout,
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .feature-card { grid-column: span 6; }
  .feature-wide { grid-column: span 12; }
  .compatibility-visual { min-height: 520px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .impressions-grid { grid-template-columns: 1fr; }
  .impression-card.featured { transform: none; }
  .faq-layout > .section-heading { position: static; }
  .final-cta { display: grid; }
  .final-actions { width: min(100%, 440px); min-width: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 75px 0; }
  .header-inner { gap: 10px; }
  .brand-copy strong { font-size: 16px; }
  .header-cta { display: none; }
  .hero { padding-top: 113px; }
  .eyebrow { font-size: 8px; }
  .hero h1 { font-size: clamp(47px, 14.5vw, 68px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; padding-inline: 14px; gap: 8px; font-size: 13px; }
  .hero-actions .button svg { width: 18px; height: 18px; }
  .mobile-break { display: block; }
  .hero-facts { gap: 8px; }
  .hero-facts strong { font-size: 12px; }
  .hero-facts span { font-size: 8px; }
  .hero-visual {
    left: 50%;
    width: 720px;
    min-height: 590px;
    margin-top: -8px;
    transform: translateX(-50%) scale(.75);
    transform-origin: top center;
  }
  .hero-strip { margin-top: -120px; gap: 12px; padding: 17px 15px; }
  .hero-strip i { display: none; }
  .hero-strip span { font-size: 9px; }
  .section-heading h2,
  .compatibility-copy h2 { font-size: clamp(39px, 12vw, 56px); }
  .section-heading > p,
  .compatibility-copy > p { font-size: 16px; }
  .section-heading.centered { margin-bottom: 40px; text-align: left; }
  .section-heading.centered .section-kicker { justify-content: flex-start; }
  .download-card { min-height: auto; padding: 25px; }
  .recommend-label { position: static; width: fit-content; margin-bottom: 9px; }
  .download-card-head { margin-top: 0; }
  .download-meta { grid-template-columns: repeat(2, 1fr); }
  .feature-card,
  .feature-wide { grid-column: 1 / -1; min-height: 285px; padding: 25px; }
  .feature-wide { grid-template-columns: 1fr; min-height: 610px; }
  .link-visual { min-height: 280px; }
  .privacy-visual { min-height: 300px; }
  .compatibility-cards { grid-template-columns: 1fr; }
  .system-requirements ul { grid-template-columns: 1fr; }
  .compatibility-visual { min-height: 460px; }
  .windows-emblem { width: 180px; height: 180px; }
  .windows-emblem > span { grid-template-columns: repeat(2, 51px); grid-template-rows: repeat(2, 51px); }
  .ring-a { width: 280px; height: 280px; }
  .ring-b { width: 360px; height: 360px; }
  .spec-one { top: 32px; left: 18px; }
  .spec-two { top: 115px; right: 14px; }
  .spec-three { bottom: 33px; left: 25px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 335px; }
  .setup-callout { align-items: stretch; flex-direction: column; gap: 16px; padding: 22px; }
  .setup-callout > div { flex-direction: column; }
  .locations-head { display: grid; gap: 24px; }
  .locations-head .button { width: 100%; }
  .location-stage { min-height: 360px; }
  .location-globe { left: 69%; width: 245px; height: 245px; }
  .location-count { bottom: 25px; left: 24px; }
  .location-count strong { font-size: 58px; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .country-card { grid-template-columns: auto 1fr; }
  .country-card em { display: none; }
  .impression-card { min-height: 340px; padding: 27px; }
  .faq-layout { gap: 35px; }
  .faq-layout .section-heading .button { width: 100%; }
  .faq-item summary { padding: 20px; font-size: 14px; }
  .faq-item p { padding: 0 50px 22px 20px; font-size: 14px; }
  .final-cta { min-height: 610px; align-content: space-between; padding: 34px 24px; border-radius: 28px; }
  .final-cta h2 { font-size: clamp(42px, 13vw, 58px); }
  .final-actions { width: 100%; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { display: grid; gap: 15px; }
  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 900;
    display: block;
    padding: 7px;
    border: 1px solid rgba(255, 173, 108, .25);
    border-radius: 17px;
    background: rgba(8, 11, 24, .86);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .5);
    backdrop-filter: blur(19px);
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 50px;
    padding: 0 17px;
    color: #1b0b06;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--hot), var(--hot-2));
    font-size: 12px;
    font-weight: 900;
  }
  .mobile-cta b { display: grid; width: 38px; height: 30px; place-items: center; border-radius: 9px; background: rgba(22, 8, 4, .12); }
  .site-footer { padding-bottom: 130px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 44px; }
  .hero-visual { transform: translateX(-50%) scale(.68); }
  .hero-strip { margin-top: -170px; }
  .download-meta { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}

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