:root {
  --bg: #0b0e11;
  --bg-soft: #11161b;
  --surface: #151b21;
  --surface-2: #1a2128;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f2f1ec;
  --muted: #9aa3ab;
  --muted-2: #8b949d;
  --amber: #e8a62a;
  --amber-bright: #ffc451;
  --amber-dark: #a76d09;
  --green: #67cf86;
  --danger: #ef806e;
  --container: 1180px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(232, 166, 42, 0.055), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

::selection {
  color: #13100a;
  background: var(--amber-bright);
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #111;
  background: var(--amber-bright);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(7, 9, 11, 0.82), rgba(7, 9, 11, 0));
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 11, 14, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 210px 1fr 150px;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(232, 166, 42, 0.46);
  background: rgba(232, 166, 42, 0.08);
  clip-path: polygon(14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 14%);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i::before,
.brand-mark i::after {
  position: absolute;
  content: "";
  background: var(--amber);
}

.brand-mark::before {
  width: 16px;
  height: 2px;
}

.brand-mark::after {
  width: 2px;
  height: 16px;
}

.brand-mark i::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(232, 166, 42, 0.8);
}

.brand-copy {
  display: grid;
  line-height: 1.02;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #c6ccd1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

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

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

.header-cta {
  justify-self: end;
  min-width: 132px;
  padding: 10px 18px;
  color: #161108;
  background: var(--amber);
  border: 1px solid var(--amber);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 7px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background-color: #090c0f;
  background-image:
    linear-gradient(90deg, rgba(7, 9, 11, .98) 0%, rgba(7, 9, 11, .90) 32%, rgba(7, 9, 11, .34) 66%, rgba(7, 9, 11, .58) 100%),
    linear-gradient(0deg, #0b0e11 0%, transparent 24%),
    url("../img/hero.webp");
  background-position: center, center, center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 70% 42%, transparent 0, transparent 22%, rgba(5, 7, 9, 0.24) 55%),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(8.333% - 1px), rgba(255,255,255,.018) 8.333%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 82%;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(232, 166, 42, 0.33), transparent);
  transform: skewX(-17deg);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  min-height: 700px;
  padding-top: 150px;
  padding-bottom: 112px;
}

.hero-copy {
  align-self: center;
  min-width: 0;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--amber-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .17em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(64px, 7.2vw, 80px);
  font-weight: 950;
  line-height: .93;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-wrap: balance;
  font-family: 'Inter', Arial, sans-serif;
}

.hero h1 em {
  color: var(--amber);
  font-style: normal;
  text-shadow: 0 0 50px rgba(232, 166, 42, .16);
}

.hero-subtitle {
  margin: 20px 0 0;
  color: #d6d9dc;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: #b3bbc2;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: transform .2s var(--ease), background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #161108;
  background: linear-gradient(135deg, var(--amber-bright), var(--amber));
  border-color: var(--amber);
  box-shadow: 0 12px 34px rgba(232, 166, 42, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--amber-bright);
  box-shadow: 0 16px 44px rgba(232, 166, 42, 0.3);
}

.button-ghost {
  color: #e4e7e9;
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-large {
  min-height: 62px;
  padding-inline: 30px;
}

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
  color: #89939b;
  font-size: 12px;
}

.hero-proof span {
  position: relative;
  padding-left: 14px;
}

.hero-proof span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(103, 207, 134, .8);
  transform: translateY(-50%);
}

.hero-proof b {
  color: #e7e9ea;
  font-weight: 900;
}

.virus-card {
  display: flex;
  width: min(100%, 430px);
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(103, 207, 134, .58);
  border-radius: 6px;
  color: #dff7e6;
  background: linear-gradient(110deg, rgba(37, 104, 60, .24), rgba(14, 32, 23, .58));
  box-shadow: inset 0 0 0 1px rgba(103, 207, 134, .05);
  gap: 14px;
}

.virus-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(103, 207, 134, .32);
  border-radius: 50%;
  background: rgba(103, 207, 134, .08);
}

.virus-card-copy,
.virus-card-copy strong,
.virus-card-copy b,
.virus-card-copy small {
  display: block;
}

.virus-card-copy {
  min-width: 0;
}

.virus-card-copy strong {
  margin-bottom: 3px;
  color: #f1f7f3;
  font-size: 13px;
  font-weight: 900;
}

.virus-card-copy b {
  color: #83dc9e;
  font-size: 11px;
  font-weight: 800;
}

.virus-card-copy small {
  margin-top: 5px;
  color: #899d90;
  font-size: 9px;
}

.hero-aside {
  position: relative;
  min-width: 0;
}

.hero-badge {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: flex;
  align-items: center;
  max-width: 275px;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 13, 16, .72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  gap: 12px;
}

.hero-badge .pulse {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(103, 207, 134, .12), 0 0 20px rgba(103, 207, 134, .5);
}

.hero-badge small,
.hero-badge strong {
  display: block;
}

.hero-badge small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-badge strong {
  font-size: 13px;
}

.metrics-wrap {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(12, 16, 19, 0.9);
  box-shadow: 0 -22px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.metric {
  position: relative;
  min-width: 0;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric span,
.metric strong {
  display: block;
}

.metric span {
  margin-bottom: 6px;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.metric strong {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.15;
}

.metric-accent::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--amber);
}

.metric-accent strong {
  color: var(--amber-bright);
}

.section {
  position: relative;
  padding: clamp(84px, 10vw, 140px) 0;
}

.downloads-section {
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    #101419;
  background-size: 56px 56px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.compatibility-inner h2,
.file-copy h2,
.final-inner h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 45px);
  font-weight: 920;
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
  font-family: 'Inter', Arial, sans-serif;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.compatibility-inner > div > p:last-child,
.final-inner > div > p:last-child {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading-center > p:last-child {
  margin-inline: auto;
}

.link-notice {
  max-width: 860px;
  margin: -20px auto 28px;
  padding: 14px 18px;
  border: 1px solid rgba(232, 166, 42, .3);
  color: #ddcba8;
  background: rgba(232, 166, 42, .08);
  border-radius: 8px;
  text-align: center;
}

.download-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 14px;
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 24px;
  min-width: 0;
  min-height: 132px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, .025);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  gap: 16px;
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}

.download-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  content: "";
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
}

.download-card:hover,
.download-card:focus-visible {
  z-index: 2;
  border-color: rgba(232, 166, 42, .55);
  background: rgba(232, 166, 42, .055);
  transform: translateY(-5px);
}

.download-card-main {
  border-color: rgba(232, 166, 42, .34);
  background: linear-gradient(135deg, rgba(232, 166, 42, .12), rgba(255,255,255,.025));
}

.download-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(232, 166, 42, .32);
  color: var(--amber-bright);
  background: rgba(232, 166, 42, .09);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
}

.download-icon svg {
  width: 25px;
  height: 25px;
}

.download-icon-yandex {
  color: #ff7272;
  border-color: rgba(255, 114, 114, .24);
  background: rgba(255, 114, 114, .07);
}

.download-icon-google {
  color: #89b4ff;
  border-color: rgba(137, 180, 255, .24);
  background: rgba(137, 180, 255, .07);
}

.download-card small,
.download-card strong,
.download-card em {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.download-card small {
  margin-bottom: 4px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.download-card strong {
  font-size: 17px;
  line-height: 1.3;
}

.download-card em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.download-card > i {
  color: var(--amber);
  font-size: 22px;
  font-style: normal;
  transition: transform .2s ease;
}

.download-card:hover > i,
.download-card:focus-visible > i {
  transform: translateX(4px);
}

.download-note {
  display: flex;
  max-width: 820px;
  align-items: flex-start;
  justify-content: center;
  margin: 28px auto 0;
  color: var(--muted-2);
  font-size: 12px;
  text-align: center;
  gap: 9px;
}

.download-note svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--green);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d1115;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  gap: 14px;
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid article > span {
  color: rgba(232, 166, 42, .45);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.trust-grid strong,
.trust-grid p {
  display: block;
  overflow-wrap: anywhere;
}

.trust-grid strong {
  font-size: 13px;
}

.trust-grid p {
  margin: 3px 0 0;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.4;
}

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 50%, rgba(232,166,42,.08), transparent 28rem),
    #0b0e11;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.split-media {
  position: relative;
  min-width: 0;
}

.split-media::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  content: "";
  border-top: 1px solid rgba(232,166,42,.35);
  border-left: 1px solid rgba(232,166,42,.35);
}

.split-media::after {
  position: absolute;
  z-index: 0;
  right: -22px;
  bottom: -22px;
  width: 45%;
  height: 38%;
  content: "";
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 8px);
  opacity: .26;
}

.split-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(520px, 62vw, 690px);
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line-strong);
  filter: saturate(.84) contrast(1.04);
}

.media-caption {
  position: absolute;
  z-index: 2;
  right: -26px;
  bottom: 38px;
  min-width: 235px;
  padding: 18px 20px;
  border-left: 3px solid var(--amber);
  background: rgba(10, 13, 16, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.media-caption span,
.media-caption strong {
  display: block;
}

.media-caption span {
  color: var(--amber);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.media-caption strong {
  margin-top: 4px;
  font-size: 14px;
}

.split-copy {
  min-width: 0;
}

.section-lead {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  gap: 14px;
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--green);
  background: rgba(103,207,134,.08);
  border: 1px solid rgba(103,207,134,.2);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.check-list strong {
  font-size: 14px;
}

.check-list p {
  margin: 4px 0 0;
  color: var(--muted-2);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--amber-bright);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  gap: 10px;
}

.text-link span {
  font-size: 18px;
  transition: transform .2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.features-section {
  background: #11161b;
}

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

.feature-card {
  position: relative;
  min-width: 0;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  transition: border-color .25s ease, transform .25s var(--ease);
}

.feature-card:hover {
  border-color: rgba(232,166,42,.34);
  transform: translateY(-4px);
}

.feature-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  content: "";
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 50%;
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-card-accent {
  background:
    linear-gradient(145deg, rgba(232,166,42,.11), rgba(232,166,42,.02)),
    var(--surface);
}

.feature-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255,255,255,.16);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 62px;
  place-items: center;
  border: 1px solid rgba(232,166,42,.24);
  color: var(--amber);
  background: rgba(232,166,42,.07);
  border-radius: 12px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.feature-card p {
  max-width: 440px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.gallery-section {
  overflow: hidden;
  background: #0b0e11;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading-row > p {
  max-width: 440px;
  margin-bottom: 4px !important;
}

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

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.gallery-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  color: inherit;
  background: #0f1418;
}

.gallery-link:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: -2px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(.8) contrast(1.05);
  transition: transform .65s var(--ease), filter .4s ease;
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0 0 94px;
  content: "";
  background: linear-gradient(to top, rgba(8,10,12,.74), transparent 44%);
  pointer-events: none;
}

.gallery-grid figure:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 36px 1fr;
  min-height: 94px;
  align-content: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-top: 0;
}

.gallery-grid figcaption span {
  grid-row: span 2;
  align-self: center;
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
}

.gallery-grid figcaption strong,
.gallery-grid figcaption small {
  overflow-wrap: anywhere;
}

.gallery-grid figcaption strong {
  font-size: 14px;
}

.gallery-grid figcaption small {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 11px;
}

.gallery-dialog {
  width: min(calc(100% - 32px), 1080px);
  max-width: none;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  background: #0b0e11;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .72);
}

.gallery-dialog::backdrop {
  background: rgba(2, 4, 6, .86);
  backdrop-filter: blur(5px);
}

.gallery-dialog figure {
  margin: 0;
}

.gallery-dialog img {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #07090b;
}

.gallery-dialog figcaption {
  padding: 16px 20px;
  color: #d8dddf;
  font-size: 13px;
  font-weight: 800;
}

.gallery-dialog-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(7, 9, 11, .82);
  font: inherit;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.gallery-dialog-close:hover,
.gallery-dialog-close:focus-visible {
  border-color: var(--amber-bright);
  outline: none;
}

.compatibility-section {
  padding: clamp(78px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 30%, rgba(232,166,42,.08), transparent 28rem),
    #11161b;
}

.compatibility-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 76px;
}

.compatibility-inner h2 {
  font-size: clamp(36px, 4.6vw, 62px);
}

.windows-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.windows-list span {
  display: grid;
  min-width: 0;
  min-height: 110px;
  place-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.022);
  text-align: center;
}

.windows-list span.current {
  border-color: rgba(103,207,134,.32);
  background: rgba(103,207,134,.06);
}

.windows-list b,
.windows-list small {
  display: block;
  overflow-wrap: anywhere;
}

.windows-list b {
  font-size: 20px;
  line-height: 1.15;
}

.windows-list small {
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.install-section {
  background: #0b0e11;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 18px;
}

.steps-grid::before {
  position: absolute;
  top: 56px;
  right: 16.5%;
  left: 16.5%;
  height: 1px;
  content: "";
  background: linear-gradient(to right, var(--line), rgba(232,166,42,.45), var(--line));
}

.steps-grid li {
  position: relative;
  min-width: 0;
  padding: 0 28px;
  text-align: center;
}

.steps-grid li > span {
  position: absolute;
  top: 4px;
  right: 26px;
  color: rgba(255,255,255,.16);
  font-size: 10px;
  font-weight: 900;
}

.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 74px;
  height: 74px;
  margin: 20px auto 30px;
  place-items: center;
  border: 1px solid rgba(232,166,42,.35);
  color: var(--amber-bright);
  background: #101419;
  box-shadow: 0 0 0 10px #0b0e11;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
}

.steps-grid h3 {
  margin: 0;
  font-size: 19px;
}

.steps-grid p {
  max-width: 270px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.file-section {
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(255,255,255,.035) 50%, transparent 50.05%),
    #11161b;
}

.file-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 90px;
}

.file-copy > p:not(.kicker) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.verified-stamp {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding: 15px 18px;
  border: 1px solid rgba(103,207,134,.26);
  background: rgba(103,207,134,.06);
  gap: 12px;
}

.verified-stamp > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #07110a;
  background: var(--green);
  border-radius: 50%;
  font-weight: 950;
}

.verified-stamp small,
.verified-stamp strong {
  display: block;
}

.verified-stamp small {
  color: var(--muted-2);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.verified-stamp strong {
  margin-top: 3px;
  color: #dff6e6;
  font-size: 13px;
}

.file-table {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.file-table div {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-width: 0;
  padding: 19px 4px;
  border-bottom: 1px solid var(--line);
  gap: 22px;
}

.file-table dt,
.file-table dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.file-table dt {
  color: var(--muted-2);
  font-size: 12px;
}

.file-table dd {
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.faq-section {
  background: #0b0e11;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 84px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  content: "";
  background: var(--amber);
}

.faq-list summary span {
  top: 50%;
  right: 8px;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-list summary span::after {
  top: -7px;
  left: 7px;
  width: 2px;
  height: 16px;
  transition: transform .2s ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary {
  color: var(--amber-bright);
}

.faq-list details p {
  max-width: 670px;
  margin: -4px 0 24px;
  padding-right: 48px;
  color: var(--muted);
  font-size: 14px;
}

.final-download {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) 0;
  border-top: 1px solid rgba(232,166,42,.25);
  background:
    radial-gradient(circle at 88% 30%, rgba(232,166,42,.2), transparent 26rem),
    linear-gradient(135deg, #171308, #0d1115 58%);
}

.final-grid {
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(600px) rotateX(54deg) scale(1.3) translateY(20%);
  transform-origin: bottom;
}

.final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
}

.final-inner > div {
  max-width: 690px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #080a0c;
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr 100px;
  align-items: center;
  gap: 26px;
}

.brand-footer {
  opacity: .78;
}

.footer-inner p {
  margin: 0;
  color: var(--muted-2);
  font-size: 10px;
  text-align: center;
}

.back-top {
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 4px;
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: 180px 1fr 120px;
  }

  .site-nav {
    gap: 18px;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    min-height: 112px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(90deg, rgba(7,9,11,.96), rgba(7,9,11,.72)),
      linear-gradient(0deg, #0b0e11 0, transparent 26%),
      url("../img/hero.webp");
    background-position: center, center, 62% center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 720px;
    padding-top: 138px;
    padding-bottom: 190px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-aside {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split-layout,
  .compatibility-inner,
  .file-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .split-media {
    width: min(82%, 590px);
    margin-inline: auto;
  }

  .split-media img {
    height: min(116vw, 680px);
  }

  .media-caption {
    right: -18px;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p {
    margin-top: 20px !important;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-grid figure:nth-child(2) {
    transform: none;
  }

  .compatibility-inner {
    gap: 42px;
  }

  .file-layout {
    gap: 44px;
  }

  .faq-layout .section-heading {
    margin-bottom: 0;
  }

  .final-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-header.is-scrolled {
    background: #080b0e;
    backdrop-filter: none;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    padding: 26px 24px;
    background: rgba(8, 11, 14, .98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  html:not(.js) .site-header {
    position: relative;
    background: #080b0e;
    backdrop-filter: none;
  }

  html:not(.js) .header-inner {
    grid-template-columns: 1fr;
  }

  html:not(.js) .menu-toggle {
    display: none;
  }

  html:not(.js) .site-nav {
    position: static;
    z-index: auto;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    visibility: visible;
    padding: 0 0 16px;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  html:not(.js) .site-nav a {
    padding: 12px 4px;
  }

  html:not(.js) .hero-inner {
    padding-top: 64px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    background-position: center, center, 68% center;
  }

  .hero-inner {
    min-height: 680px;
    padding-top: 120px;
    padding-bottom: 194px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(54px, 13vw, 82px);
    line-height: .88;
  }

  .hero-subtitle {
    font-size: 15px;
    letter-spacing: .14em;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-grid figure {
    display: block;
  }

  .gallery-grid img {
    aspect-ratio: 16 / 9;
  }

  .gallery-grid figcaption {
    grid-template-columns: 1fr;
    align-content: end;
    padding: 18px;
    border-top: 0;
  }

  .gallery-grid figcaption span {
    grid-row: auto;
    margin-bottom: 20px;
  }

  .gallery-grid figure::after {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .steps-grid::before {
    top: 70px;
    bottom: 70px;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, var(--line), rgba(232,166,42,.45), var(--line));
  }

  .steps-grid li {
    padding: 0 16px 12px;
  }

  .step-icon {
    box-shadow: 0 0 0 10px #0b0e11;
  }

  .windows-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .back-top {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .site-nav {
    top: 68px;
  }

  .section {
    padding: 78px 0;
  }

  .eyebrow,
  .kicker {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: .14em;
  }

  .hero {
    background-image:
      linear-gradient(90deg, rgba(7,9,11,.96), rgba(7,9,11,.72)),
      linear-gradient(0deg, #0b0e11 0, transparent 26%),
      url("../img/hero.webp");
    background-position: center, center, 64% center;
  }

  .hero-inner {
    min-height: 712px;
    padding-top: 108px;
    padding-bottom: 206px;
  }

  .hero h1 {
    font-size: clamp(49px, 16vw, 72px);
    letter-spacing: -.065em;
  }

  .hero-subtitle {
    max-width: 320px;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-lead {
    max-width: 460px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric {
    min-height: 78px;
    padding: 15px 16px;
  }

  .metric span {
    font-size: 8px;
  }

  .metric strong {
    font-size: clamp(15px, 4.8vw, 20px);
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .split-copy h2,
  .compatibility-inner h2,
  .file-copy h2,
  .final-inner h2 {
    /*font-size: clamp(34px, 11vw, 48px);*/
    line-height: 1.02;
  }

  .section-heading > p:last-child,
  .compatibility-inner > div > p:last-child,
  .final-inner > div > p:last-child {
    margin-top: 16px;
    font-size: 15px;
  }

  .download-card {
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    min-height: 104px;
    padding: 18px 15px;
    gap: 12px;
  }

  .download-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .download-card strong {
    font-size: 15px;
  }

  .download-card em {
    font-size: 11px;
  }

  .split-layout,
  .compatibility-inner,
  .file-layout,
  .faq-layout {
    gap: 42px;
  }

  .split-media {
    width: calc(100% - 18px);
  }

  .split-media::before {
    top: -14px;
    left: -14px;
    width: 100px;
    height: 100px;
  }

  .split-media img {
    height: min(126vw, 590px);
  }

  .media-caption {
    right: -9px;
    bottom: 22px;
    min-width: 205px;
  }

  .section-lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .feature-bento {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: 260px;
  }

  .feature-icon {
    margin-bottom: 46px;
  }

  .gallery-grid figure {
    display: block;
  }

  .gallery-grid figcaption strong {
    font-size: 12px;
  }

  .gallery-grid figcaption small {
    font-size: 9px;
  }

  .windows-list span {
    min-height: 92px;
  }

  .file-table div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .file-table dd {
    text-align: left;
  }

  .faq-list summary {
    padding: 20px 42px 20px 0;
    font-size: 14px;
  }

  .faq-list details p {
    padding-right: 24px;
    font-size: 13px;
  }

  .final-inner {
    gap: 34px;
  }

  .button-large {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .brand-copy small {
    letter-spacing: .15em;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .metric {
    padding-inline: 12px;
  }

  .download-card {
    grid-template-columns: 40px minmax(0, 1fr) 14px;
    padding-inline: 12px;
    gap: 10px;
  }

  .download-icon {
    width: 40px;
    height: 40px;
  }

  .download-card strong {
    font-size: 14px;
  }

  .download-card small {
    letter-spacing: .08em;
  }

  .gallery-grid figure {
    display: block;
  }

  .gallery-grid img {
    aspect-ratio: 16 / 9;
  }

  .gallery-grid figcaption {
    min-height: 88px;
  }

  .gallery-grid figcaption span {
    margin-bottom: 8px;
  }

  .windows-list {
    gap: 7px;
  }

  .windows-list span {
    padding-inline: 8px;
  }
}

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