@font-face{
  font-family: "Instrument Sans";
  src: url("fonts/InstrumentSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Instrument Sans";
  src: url("fonts/InstrumentSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Instrument Sans";
  src: url("fonts/InstrumentSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Instrument Sans";
  src: url("fonts/InstrumentSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #0b1020;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --border: rgba(255,255,255,.14);
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  color: var(--text);
  background: var(--bg);
}
a{ color: inherit; text-decoration: none; }

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

:root{
  --font-sans: "Instrument Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
body{
  font-family: var(--font-sans);
  font-feature-settings:
    "liga" 1,
    "kern" 1;
}

html, body{ overflow-x: clip; }
@supports not (overflow: clip){
  html, body{ overflow-x: hidden; }
}



.header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.header.scrolled{
  background: rgba(11,16,32,.72);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,.10);
}

.header__inner{
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand__mark{
  width: 34px; height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(135deg, rgba(110,231,183,.9), rgba(96,165,250,.9));
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.nav{
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}
.nav a,
.nav__btn{
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 18px;
  transition: background .2s ease, color .2s ease;
  line-height: 1.2;
}
.nav a:hover,
.nav__btn:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.nav__item{
  position: relative;
  display: flex;
  align-items: center;
}
.nav__btn{
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font: inherit;
}
.nav__chevron{
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: .7;
  transition: transform .18s ease, opacity .18s ease;
}
.nav__menu{
  position: absolute;
  top: calc(100% + 6px); 
  left: 0;
  min-width: 220px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(11,16,32,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 48px rgba(0,0,0,.35);
  display: grid;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 40;
}
.nav__menu::before{
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}
.nav__menu a{
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid transparent;
}
.nav__menu a:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  color: var(--text);
}
.nav__menuLabel{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav__menuSub{
  font-size: 14px;
  color: rgba(255,255,255,.74);
  line-height: 1.45;
}
.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__menu:hover{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__item:hover .nav__chevron,
.nav__item:focus-within .nav__chevron{
  transform: translateY(2px);
  opacity: 1;
}

.brand__text{
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}


.brand__text span:first-child{
  font-size: 14px;
}

.brand__text span:last-child{
  font-size: 14px;
  opacity: .70;
}

.brand__text{ letter-spacing: 0.12em; }

.brand__mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;

  background: url("/public/logo.webp") no-repeat center / cover;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  
}

.header__actions{
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
}


.btn.primary{
  border-color: transparent;
    padding: 17px 30px;
  background: linear-gradient(135deg, rgba(110,231,183,.95), rgba(96,165,250,.95));
  color: #081022;
  font-weight: 600;
  font-size: 19px;
}

.btn.primary-header {
  border-color: transparent;
    padding: 11px 20px;
  background: linear-gradient(135deg, rgba(110,231,183,.95), rgba(96,165,250,.95));
  color: #081022;
}





.burger{
  display: none; 
  width: 59px;
  height: 35px;
  padding: 7px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(8,16,32,.52);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,.4);

  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;

  cursor: pointer;
  transition:
    background .25s ease,
    border-color .25s ease,
    transform .16s ease,
    box-shadow .25s ease;
}

.burger span{
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 10px rgba(110,231,183,.4);
  transition: transform .25s ease, opacity .2s ease, width .2s ease;
}


.burger span:nth-child(1){ width: 60%; }
.burger span:nth-child(2){ width: 100%; }
.burger span:nth-child(3){ width: 80%; }

@media (hover: hover){
  .burger:hover{
    background: rgba(12,22,44,.9);
    border-color: rgba(255,255,255,.28);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0,0,0,.55);
  }
}


.burger.active{
  justify-content: center;
}

.burger.active span:nth-child(1){
  width: 100%;
  transform: translateY(2px) rotate(45deg);
}
.burger.active span:nth-child(2){
  opacity: 0;
}
.burger.active span:nth-child(3){
  width: 100%;
  transform: translateY(-2px) rotate(-45deg);
}




@media (max-width: 900px){
  .header__inner{
    justify-content: space-between;
  }

  
  .nav,
  .header__actions{
    display: none !important;
  }

  .burger{
    display: flex;
  }

  
  .brand--mobile{
    gap: 8px;
  }
}




.mobileMenu{
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity .3s ease, transform .3s ease;

  
  background: #050814;
}

.mobileMenu.active{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobileMenu__inner{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 20px 18px;
}

.mobileMenu__top{
  margin-bottom: 12px;
}

.mobileMenu__topRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobileMenu__title{
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}


.mobileMenu__close{
  width: 59px;
  height: 35px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(8,16,32,.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  transition:
    background .2s ease,
    border-color .2s ease,
    transform .16s ease,
    box-shadow .2s ease;
}

.mobileMenu__close span{
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
}

.mobileMenu__close span:first-child{
  transform: rotate(45deg);
}
.mobileMenu__close span:last-child{
  transform: rotate(-45deg);
}

@media (hover: hover){
  .mobileMenu__close:hover{
    background: rgba(14,26,52,.96);
    border-color: rgba(255,255,255,.4);
    box-shadow: 0 8px 24px rgba(0,0,0,.5);
    transform: translateY(-1px);
  }
}




.mobileNav{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 10px;
}


.mobileNav__item{
  display: flex;
  align-items: center;
  justify-content: flex-start;

  flex: 1 1 0;
  min-height: 50px;

  padding: 14px 14px;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;

  background: rgba(8,18,40,.94);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,.45);

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .16s ease;
}

.mobileNav__item:hover{
  background: rgba(16,30,60,.98);
  border-color: rgba(255,255,255,.20);
  transform: translateY(-1px);
}

@media (max-height: 640px){
  .mobileNav{
    overflow-y: auto;
    padding-bottom: 12px;
  }

  .mobileNav__item{
    flex: 0 0 auto;
    font-size: 16px;
    padding: 10px 12px;
  }
}



.mobileMenu__footer{
  margin-top: 16px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.mobileMenu__link{
  font-size: 14px;
  opacity: .8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.mobileMenu__link:hover{
  border-bottom-color: rgba(255,255,255,.7);
}




body.menu-open{
  overflow: hidden;
  overscroll-behavior: contain;
}










.hero{
  min-height: clamp(560px, 70vh, 820px); 
  position: relative;
  display: flex;
  align-items: center;
  padding: 118px 0 64px; 
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/public/er_8.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  filter: saturate(1.1) contrast(1.05);
}
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 460px at 50% 30%, rgba(255,255,255,.11), transparent 70%),
    linear-gradient(to bottom, rgba(11,16,32,.35), rgba(11,16,32,.90));
}

.hero__content{
  position: relative;
  z-index: 2;
  text-align: center;
  display: grid;
  place-items: center;
  gap: 22px;
}

@media (max-width: 1024px){
  .hero{
    min-height: clamp(480px, 72vh, 720px);
    padding: 104px 0 54px;
  }
  .hero__content{ gap: 20px; }
  .headline{
    font-size: clamp(30px, 5.6vw, 58px);
    line-height: 1.07;
  }
  .subtitle{
    font-size: clamp(15.5px, 2.6vw, 18px);
    line-height: 1.6;
  }
}

@media (max-width: 720px){
  .hero{
    min-height: auto;
    padding: 86px 0 34px;
  }
  .hero__content{ gap: 18px; }
  .headline{
    font-size: clamp(28px, 8vw, 46px);
    line-height: 1.1;
  }
  .subtitle{
    font-size: 15.5px;
    line-height: 1.65;
  }
}

.btn{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before{
  content:"";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.18) 40%,
    transparent 75%
  );

  transform: translateX(-55%);
  opacity: 0;
  transition: opacity .25s ease, transform .55s ease;
  mix-blend-mode: overlay;
}

.btn:hover::before{
  opacity: .28;
  transform: translateX(55%);
}

@media (prefers-reduced-motion: reduce){
  .btn::before{
    transition: none;
  }
  .btn:hover::before{
    transform: none;
  }
}

.btn.primary:hover::before,
.btn.primary-header:hover::before{
  opacity: .98;
}


.pill{
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  padding-left: 12px;
  border-radius: 16px;
  border: 0;

  
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.14) 46%,
      transparent 78%
    ) 0 0 / 240% 100% no-repeat,

    radial-gradient(140px 44px at 22% 35%, rgba(110,231,183,.14), transparent 72%),
    radial-gradient(170px 52px at 78% 65%, rgba(96,165,250,.14), transparent 74%),

    rgba(9, 54, 99, 0.58);

  backdrop-filter: blur(12px) saturate(1.15);
  box-shadow: 0 16px 44px rgba(0,0,0,.32);

  clip-path: polygon(
    14px 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    14px 100%,
    0 calc(100% - 14px),
    0 14px
  );

  color: rgba(255,255,255,.82);
  font-weight: 600;

  text-shadow:
    0 0 14px rgba(96,165,250,.12),
    0 0 26px rgba(110,231,183,.08);

  
  transition: transform .2s ease;

  
  animation: pillFlow 14s ease-in-out infinite;
}



.pill:hover{
  transform: translateY(-1px);
}


.pill::before,
.pill::after{
  font-weight: 800;
  opacity: .92;
  padding-bottom: 1px;
  flex: 0 0 auto;
  color: rgba(110,231,183,.88);
  text-shadow:
    0 0 16px rgba(110,231,183,.22),
    0 0 26px rgba(96,165,250,.10);
}

.pill::before{
  content: "⟪";
  margin-right: 3px;
}

.pill::after{
  content: "⟫";
  margin-left: 3px;
}

.pill-name{
  color: rgba(255,255,255,.92);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  text-shadow:
    0 0 14px rgba(96,165,250,.16),
    0 0 24px rgba(110,231,183,.10);
}



@keyframes pillFlow {
  0% {
    background-position:
      0% 0,
      22% 35%,
      78% 65%,
      0 0;
  }
  25% {
    background-position:
      50% 0,
      28% 40%,
      72% 60%,
      0 0;
  }
  50% {
    background-position:
      100% 0,
      25% 38%,
      79% 70%,
      0 0;
  }
  75% {
    background-position:
      50% 0,
      20% 32%,
      83% 58%,
      0 0;
  }
  100% {
    background-position:
      0% 0,
      22% 35%,
      78% 65%,
      0 0;
  }
}


@media (prefers-reduced-motion: reduce){
  .pill{
    animation: none;
    transition: none;
  }
}




.pill::before{
  content: "⟪";
  font-weight: 800;
  opacity: .92;
  padding-bottom: 1px;
  margin-right: 3px;

  color: rgba(110,231,183,.88);
  text-shadow:
    0 0 16px rgba(110,231,183,.22),
    0 0 26px rgba(96,165,250,.10);

  flex: 0 0 auto;
}

.pill::after{
  content: "⟫";
  font-weight: 800;
  opacity: .92;
  padding-bottom: 1px;
  margin-left: 3px;

  color: rgba(110,231,183,.88);
  text-shadow:
    0 0 16px rgba(110,231,183,.22),
    0 0 26px rgba(96,165,250,.10);

  flex: 0 0 auto;
}



h1{
  margin: 0;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  padding-bottom: 7px;
  padding-top: 4px;
  max-width: 920px;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.subtitle{
  margin: 0;
  padding-bottom: 5px;
  max-width: 760px;
  font-size: clamp(16px, 1.50vw, 19.5px);
  line-height: 1.55;
  color: var(--muted);
}


.headline{
  margin: 0;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 980px;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.headline .gradient{
  background: linear-gradient(
    90deg,
    rgba(96,165,250,.98),
    rgba(110,231,183,.98)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__actions{
  margin-top: 6px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}


.stats{
  margin-top: 12px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 8px;
  -webkit-overflow-scrolling: touch;
}

.stats::-webkit-scrollbar{ height: 0; }

.stat{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,.80);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.stat b{
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(110,231,183,.95);
  box-shadow: 0 0 0 4px rgba(110,231,183,.14);
  flex: 0 0 auto;
}

@media (max-width: 720px){
  .stats{
    justify-content: flex-start;
  }
}



.stats{
  margin-top: 10px;
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 8px 10px;

  
  background: transparent;
  border: 0;
  box-shadow: none;

  position: relative;
  isolation: isolate;
}


.stats::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: 0;

  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);

  
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,.55) 10%,
    #000 22%,
    #000 78%,
    rgba(0,0,0,.55) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,.55) 10%,
    #000 22%,
    #000 78%,
    rgba(0,0,0,.55) 90%,
    transparent 100%
  );

  z-index: 0;
  pointer-events: none;
}

.stats--barGlow{
  position: relative;
  isolation: isolate;
}


.stats > *{
  position: relative;
  z-index: 1;
}

.stat{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: rgba(255,255,255,.80);
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 12px;
}

.stat + .stat{
  position: relative;
}
.stat + .stat::before{
  content:"";
  position:absolute;
  left: 0;
  top: 26%;
  bottom: 26%;
  width: 1px;
  background: rgba(255,255,255,.14);
}

@media (max-width: 720px){
  .stat + .stat::before{ display: none; }
  
}

.stat b{
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dot{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(96,165,250,.95), rgba(110,231,183,.95));
  box-shadow: 0 0 0 4px rgba(96,165,250,.12);
  flex: 0 0 auto;
}



.after-hero{
  padding: 70px 0;
  background: #0b1020;
}

@media (max-width: 1095px){
  .nav{ display: none; }
}











.product{
  position: relative;
  padding: 15px 0 118px;
  background: #0b1020;
  overflow: hidden;
}

.product::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: .65;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(96,165,250,.10), transparent 60%),
    radial-gradient(900px 520px at 85% 30%, rgba(110,231,183,.08), transparent 62%),
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,.022),
      rgba(255,255,255,.022) 1px,
      transparent 1px,
      transparent 52px
    );
}

.product__header{
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin-bottom: 70px;
}

.product__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;

  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);

  color: rgba(255,255,255,.70);
}

.product__kicker::before{
  content:"⟫";
  font-weight: 800;
  color: rgba(110,231,183,.86);
  text-shadow: 0 0 18px rgba(110,231,183,.18);
}

.product__title{
  margin: 18px 0 0;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.product__title .gradient{
  background: linear-gradient(90deg, rgba(96,165,250,.98), rgba(110,231,183,.98));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product__lede{
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.9;
  font-size: 19px;
  max-width: 980px;
}

.product__row{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
  margin-top: 62px;
}

.product__copy{
  padding: 12px 0;
}

.product__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  color: rgba(255,255,255,.66);
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: 12.8px;
}

.product__eyebrow::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(96,165,250,.95), rgba(110,231,183,.95));
  box-shadow: 0 0 0 4px rgba(96,165,250,.12);
  flex: 0 0 auto;
}

.product__h3{
  margin: 16px 0 0;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.10;
  letter-spacing: -0.04em;
}

.product__p{
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.95;
  font-size: 18.5px;
  max-width: 820px;
}


.product__list{
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.product__list li{
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  font-size: 18.5px;
  transition: color .2s ease;
}


.product__list li:nth-child(2){ margin-left: 12px; }
.product__list li:nth-child(3){ margin-left: 22px; }
.product__list li:nth-child(4){ margin-left: 32px; }
.product__list li:nth-child(n+5){ margin-left: 40px; }

.product__list li::before{
  content:"";
  position: absolute;
  left: 0;
  top: .72em;

  width: 7px;
  height: 7px;
  border-radius: 999px;

  background: linear-gradient(135deg, rgba(96,165,250,.92), rgba(110,231,183,.88));
  box-shadow:
    0 0 0 5px rgba(96,165,250,.12),
    0 0 18px rgba(110,231,183,.10);
}

.product__list li:hover{
  color: rgba(255,255,255,.82);
}

.product__list b{
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow:
    0 0 14px rgba(96,165,250,.10),
    0 0 22px rgba(110,231,183,.06);
}


.product__media{
  position: relative;
  width: 100%;
  height: clamp(440px, 40vw, 660px);
  overflow: hidden;

  background:
    radial-gradient(520px 260px at 25% 20%, rgba(96,165,250,.16), transparent 60%),
    radial-gradient(520px 320px at 75% 70%, rgba(110,231,183,.12), transparent 62%),
    rgba(255,255,255,.03);

  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 58px rgba(0,0,0,.36);
  backdrop-filter: blur(12px);
}

.product__media::before{
  content:"";
  position:absolute;
  inset: var(--mediaInset, 18px);

  background:
    var(--shot) center / cover no-repeat,
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.10),
    0 16px 46px rgba(0,0,0,.28);

  opacity: var(--imgOpacity, .98);
}

.product__media::after{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;

  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.14) 44%, transparent 78%);
  transform: translateX(-55%);
  opacity: 0;
  transition: opacity .25s ease, transform .55s ease;
  mix-blend-mode: overlay;
}

.product__media:hover::after{
  opacity: .22;
  transform: translateX(55%);
}


.product__media--ambient{
  --mediaInset: 0px;
  --imgOpacity: .72;
}
.product__media--ambient::before{
  filter: saturate(1.08) contrast(1.05);
}


.product__media--ui{
  --mediaInset: 18px;
  --imgOpacity: .98;
  height: clamp(520px, 44vw, 760px); 
}
.product__media--ui::before{
  background-position: top center;
}


.product__ui{
  position: relative;
  z-index: 1;
  margin-top: 0px;
  display: grid;
  gap: 32px;
}

.product__uiTop{
  max-width: 1280px;
}


.product__facts{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 10px;
}

.product__fact{
  padding-left: 14px;
  position: relative;
  overflow: hidden;
  --sheen-delay: 0s;
}

.product__fact::before{
  content:"";
  position:absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(96,165,250,.80), rgba(110,231,183,.70));
  opacity: .9;
}

.product__factTitle{
  font-weight: 800;
  font-size: 29px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.90);
}

.product__factText{
  margin-top: 6px;
  color: rgba(255,255,255,.66);
  line-height: 1.7;
  font-size: 18.5px;
}

.product__facts .product__fact:nth-child(2){ --sheen-delay: .12s; }
.product__facts .product__fact:nth-child(3){ --sheen-delay: .22s; }

.product__fact::after{
  content:"";
  position:absolute;
  inset:-50% -90% auto -90%;
  height: 140%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.12) 44%, rgba(255,255,255,.32) 52%, transparent 64%);
  transform: translateX(-120%) rotate(8deg);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.product__facts.is-visible .product__fact::after{
  animation: sweepSheen 1.08s cubic-bezier(.2,.8,.32,1) both;
  animation-delay: calc(.12s + var(--sheen-delay));
}


.product__note{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.product__noteText{
  margin: 0;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
  font-size: 15.5px;
  max-width: 760px;
}

.product__noteText b{
  color: rgba(255,255,255,.86);
}

.product__noteLinks{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product__noteLink{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;

  overflow: hidden;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.product__noteLink::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events:none;

  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.14) 44%, transparent 78%);
  transform: translateX(-55%);
  opacity: 0;
  transition: opacity .25s ease, transform .55s ease;
  mix-blend-mode: overlay;
}

.product__noteLink:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-1px);
}

.product__noteLink:hover::after{
  opacity: .22;
  transform: translateX(55%);
}

@media (max-width: 980px){
  .product{
    padding: 96px 0 92px;
  }

  .product__header{
    margin-bottom: 54px;
  }

  .product__row{
    gap: 24px;
    margin-top: 48px;
  }

  .product__ui{
    margin-top: 62px;
    gap: 22px;
  }

  .product__facts{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product__media{
    height: clamp(320px, 56vw, 500px);
  }

  .product__media--ui{
    height: clamp(420px, 70vw, 640px);
  }
}

@media (prefers-reduced-motion: reduce){
  .product__media::after,
  .product__noteLink::after{
    transition: none;
  }
  .product__media:hover::after,
  .product__noteLink:hover::after{
    transform: translateX(-55%);
  }

  .product__media.is-visible::after,
  .product__divider.is-visible::after{
    animation: none;
  }
}


.product__media.reveal-on-view::after{
  transform: translateX(-140%);
}

.product__media.is-visible::after{
  animation: mediaSheen 0.9s linear 1 forwards;
  animation-delay: .12s;
}

.product__divider::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events:none;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.18) 40%,
    rgba(255,255,255,.32) 52%,
    transparent 70%
  );

  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-140%);
  will-change: transform, opacity;
}

.product__divider.is-visible::after{
  animation: dividerSheen 1.2s cubic-bezier(.2,.88,.32,1) both;
  animation-delay: .08s;
}

.product__divider:not(.is-visible)::after{
  animation: none;
  opacity: 0;
  transform: translateX(-140%);
}


.product__copy.reveal-on-view,
.product__media.reveal-on-view,
.product__divider.reveal-on-view,
.product__uiIntro.reveal-on-view,
.product__note.reveal-on-view{
  --reveal-dur: 1040ms;
  --reveal-ease: cubic-bezier(.16, 1, .22, 1);
  --reveal-y: 30px;
  --reveal-x: 0px;
}

.product__copy.reveal-on-view{
  --reveal-x: -8px;
}

.product__uiIntro.reveal-on-view{
  --reveal-x: 8px;
}

.product__media.reveal-on-view{
  --reveal-scale: .94;
  --reveal-dur: 2400ms;
  --reveal-rot: -1.1deg;
  --reveal-x: -16px;
  --reveal-y: 34px;
  filter: blur(12px) saturate(1.05);
  transition: filter 2600ms cubic-bezier(.14, 1, .22, 1);
}

.product__divider.reveal-on-view{
  --reveal-dur: 980ms;
  --reveal-y: 22px;
}

.product__note.reveal-on-view{
  --reveal-dur: 1020ms;
  --reveal-y: 18px;
}

.product__media.is-visible{
  filter: blur(0) saturate(1);
}

.product__copy.reveal-on-view,
.product__uiIntro.reveal-on-view{
  filter: blur(8px) saturate(.96);
  transition: filter 880ms cubic-bezier(.18,1,.32,1);
}

.product__copy.is-visible,
.product__uiIntro.is-visible{
  filter: blur(0) saturate(1);
}


.product__copy.reveal-on-view .product__h3,
.product__copy.reveal-on-view .product__p,
.product__uiIntro.reveal-on-view .product__uiTitle,
.product__uiIntro.reveal-on-view .product__uiText{
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 840ms cubic-bezier(.18,1,.32,1),
    transform 980ms cubic-bezier(.18,1,.32,1),
    filter 940ms cubic-bezier(.18,1,.32,1);
  filter: blur(10px);
}

.product__copy.is-visible .product__h3{ transition-delay: .04s; }
.product__copy.is-visible .product__p{ transition-delay: .12s; }
.product__uiIntro.is-visible .product__uiTitle{ transition-delay: .04s; }
.product__uiIntro.is-visible .product__uiText{ transition-delay: .12s; }

.product__copy.is-visible .product__h3,
.product__copy.is-visible .product__p,
.product__uiIntro.is-visible .product__uiTitle,
.product__uiIntro.is-visible .product__uiText{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}



.product__uiTop{
  max-width: 1480px;
}


.product__uiTop .product__eyebrow,
.product__uiTop .product__h3{
  justify-content: center; 
  text-align: center;
  width: 100%;
}


.product__uiTop .product__p{
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}


.product__uiTop .product__p{
  max-width: 860px;
}



.product__media--ambient{
  --mediaInset: 16px;   
  --imgOpacity: .78;    
}

.product__media--ambient::before{
  filter: saturate(1.08) contrast(1.05);
}



.product__media--ui{
  --mediaInset: 16px;
  --imgOpacity: .98;

  width: min(100%, 1200px);
  margin: 15px auto;

  aspect-ratio: 16 / 10;   
  height: auto;
}

.product__media--ui::before{
  background-position: top center;
}

.product__media--ui::before{
  background:
    linear-gradient(
      to bottom,
      rgba(11,16,32,0) 56%,
      rgba(11,16,32,.48) 78%,
      rgba(6, 8, 17, 0.98) 100%
    ),
    var(--shot) top center / cover no-repeat,
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));

  background-blend-mode: normal, normal, normal;
}

.product__media::after{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;

  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.14) 44%, transparent 78%);
  mix-blend-mode: overlay;

  opacity: 0;
  transform: translateX(-120%);
  will-change: transform, opacity;

  animation: none;
}

@keyframes mediaSheen{
  0%   { transform: translateX(-120%); opacity: 0; }
  12%  { opacity: .14; }
  35%  { opacity: .22; }
  70%  { opacity: .22; }
  88%  { opacity: .10; }
  100% { transform: translateX(120%); opacity: 0; }
}

.product__media:hover::after{
  animation: mediaSheen 0.5s linear 1 forwards;
}

.product__media:not(:hover)::after{
  animation: none;
  opacity: 0;
  transform: translateX(-120%);
}



.product{
  isolation: isolate;
}

.product > .container{
  position: relative;
  z-index: 2;
}

.product::before{
  z-index: 1;
}



.product::after{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image:
    linear-gradient(
      to top,
      rgba(11,16,32,.62) 0%,
      rgba(11,16,32,.78) 55%,
      rgba(11,16,32,.92) 100%
    ),
    url("/public/texture.webp");
  background-repeat: no-repeat, repeat-x;
  background-position: 0 0, center bottom;
  background-size: 100% 100%, 1600px auto;

  opacity: .75;
  filter: saturate(1.05) contrast(1.05);

  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 0,
    rgba(0,0,0,1) 140px,
    rgba(0,0,0,0) 320px
  );
  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 0,
    rgba(0,0,0,1) 140px,
    rgba(0,0,0,0) 320px
  );
}

@media (max-width: 1100px){
  .product::after{
    background-size: 100% 100%, 1300px auto;
  }
}

@media (max-width: 700px){
  .product::after{
    background-size: 100% 100%, 1050px auto;
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0, rgba(0,0,0,1) 110px, rgba(0,0,0,0) 260px);
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0, rgba(0,0,0,1) 110px, rgba(0,0,0,0) 260px);
  }
}






.product__divider{
  position: relative;
  z-index: 1;

  width: min(100%, 1200px);
  height: 150px;
  margin: 80px auto 80px;

  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(120% 140% at 50% 50%, transparent 55%, rgba(11,16,32,.44) 100%),
    linear-gradient(180deg, rgba(11,16,32,.60), rgba(11,16,32,.70)),
    url("/public/divider.jpg") center / cover no-repeat;

  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 18px 46px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.22);

  opacity: .86;
}


.product__dividerInner{
  max-width: 980px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13.1px;
  color: rgba(255,255,255,.86);
}

.product__dividerKicker{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  opacity: .78;
  white-space: nowrap;
}

.product__dividerLinks{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product__dividerLinks a{
  opacity: .9;
  border-bottom: 1px dotted rgba(255,255,255,.32);
  padding-bottom: 1px;
  transition: opacity .2s ease, border-color .2s ease;
  font-weight: 500;
}

.product__dividerLinks a:hover{
  opacity: 1;
  border-color: rgba(255,255,255,.6);
}


.product__dividerSeparator{
  width: 1px;
  height: 14px;
  background: linear-gradient(
    180deg,
    rgba(96,165,250,.95),
    rgba(110,231,183,.95)
  );
  opacity: .75;
  align-self: center;
}



.product__dividerLogos{
  width: 100%;
  max-width: 1200px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-inline: 1px;
}


.product__dividerLogos img{
  max-height: 74px;
  max-width: 195px;
  object-fit: contain;
  opacity: .8;
  filter: saturate(.9);
  transition: opacity .2s ease, transform .3s ease;
}

.product__dividerLogos img:hover{
  opacity: 1;
  transform: translateY(-2px);
}






.product__ui{
  display: grid;
  gap: 48px;
}

.product__uiIntro{
  max-width: 980px; 
  margin: 0 auto; 
  display: grid;
  gap: 5px;
}


.product__uiTitle{
  margin: 0;
  text-align: center;

  font-size: clamp(37px, 4.7vw, 65px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.product__uiText{
  margin: 0;
  max-width: 92ch;

  text-align: center;
  font-size: clamp(16px, 1.50vw, 19.5px);
  line-height: 1.8;
  color: rgba(255,255,255,.68);
}



.product__kicker {
  position: relative;
  padding-left: 28px;
}

.product__kicker::before {
  content:"";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);

  width: 10px;
  height: 10px;
  border-radius: 3px;

  background: linear-gradient(135deg, rgba(96,165,250,.95), rgba(110,231,183,.95));
  box-shadow: 0 0 0 4px rgba(96,165,250,.12);
}



.downloads-mini{
  background:#fff;
  color:#0b1020;
  padding: 84px 0 50px;
  scroll-margin-top: 92px;
}


.downloads-mini .container{
  position: relative; 
}


.downloads-mini__wrap{
  padding: 16px 0 0px;
  display: grid;
  gap: 14px;
}


.downloads-mini__big{
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 950;
  font-size: clamp(30px, 3.1vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: rgba(11,16,32,.92);
  text-wrap: balance;
}

.downloads-mini__big::after{
  content:"";
  display:block;
  width: min(260px, 70%);
  height: 1px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, rgba(96,165,250,.95), rgba(110,231,183,.95));
  opacity: .55;
}


.downloads-mini .gradient{
  background: linear-gradient(
    90deg,
    rgba(96,165,250,.98),
    rgba(110,231,183,.98)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.downloads-mini__row{
  display: grid;
  margin: 20px 0;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}


.downloads-mini__kicker{
  margin: 0 0 9px;
  font-size: 12.8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(11,16,32,.55);
}

.downloads-mini__title{
  margin: 0;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(11,16,32,.85);
}

.downloads-mini__sub{
  margin: 8px 0 0;
  max-width: 560px;
  color: rgba(11,16,32,.62);
  line-height: 1.55;
  font-size: 17px;
}


.downloads-mini__cards{
  display: flex;
  gap: 15px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-end;
}


.os-card{
  --a1:#60a5fa;
  --a2:#6ee7b7;

  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;

  padding: 34px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(11,16,32,.12);

  text-decoration: none;
  color: inherit;
  overflow: hidden; 
  isolation: isolate; 

  min-width: 240px;

  transition:
    transform .16s ease,
    border-color .16s ease,
    background .16s ease;
}


.os-card::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  opacity: 0;
  transition: opacity .16s ease;
}

.os-card:hover{
  transform: translateY(-1px);
  border-color: rgba(11,16,32,.18);
  background: rgba(11,16,32,.03);
}

.os-card:hover::after{ opacity: .95; }


.os-card:focus-visible{
  outline: none;
  border-color: rgba(96,165,250,.55);
  box-shadow: 0 0 0 4px rgba(96,165,250,.22);
}


.os-card__icon{
  --os-icon: none;

  width: 56px;
  height: 56px;
  border-radius: 4px;
  flex: 0 0 auto;

  background-color: #f6f7fb;
  background-image:
    var(--os-icon),
    linear-gradient(
      135deg,
      rgba(11,16,32,.025) 25%,
      transparent 25%,
      transparent 50%,
      rgba(11,16,32,.025) 50%,
      rgba(11,16,32,.025) 75%,
      transparent 75%,
      transparent
    );
  background-repeat: no-repeat, repeat;
  background-position: center, 0 0;
  background-size: 28px 28px, 18px 18px;

  border:1px solid rgba(11,16,32,.18);

  transition:
    transform .16s ease,
    box-shadow .16s ease,
    border-color .16s ease;
}

.os-card:hover .os-card__icon{
  transform: translateY(-1px);
}


.os-card__text{
  display:flex;
  flex-direction:column;
  gap: 2px;
  min-width: 0;
}

.os-card__name{
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.1;
  color: #282929;
  text-transform: uppercase;
  font-size: 20.5px;
}

.os-card__meta{
  font-size: 14px;
  color: rgba(11,16,32,.58);
}


.os-card--win   { --a1:#60a5fa; --a2:#22d3ee; }
.os-card--mac   { --a1:#a855f7; --a2:#fb7185; }
.os-card--linux { --a1:#34d399; --a2:#fbbf24; }

.os-card--win .os-card__icon{
  --os-icon: url("/public/windows.webp");
  border-color: #60a5fa; 
}

.os-card--mac .os-card__icon{
  --os-icon: url("/public/macos.webp");
  border-color: #a855f7; 
}

.os-card--linux .os-card__icon{
  --os-icon: url("/public/linux.webp");
  border-color: #34d399; 
}
.os-card__size{
  margin-left: 8px;    
  opacity: .75;
  white-space: nowrap;
}

.downloads-mini__note{
  margin-top: 17px;

  font-size: 13.4px;
  line-height: 1.4;
  color: rgba(11,16,32,.52);

  text-align: right;
  max-width: 520px;
  margin-left: auto;
}

.downloads-mini__note a{
  color: #60a5fa;
  text-decoration: none;
  font-weight: 700;
}

.downloads-mini__note a:hover{
  text-decoration: underline;
}

@media (max-width: 980px){
  .downloads-mini__row{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .downloads-mini__cards{
    justify-content: flex-start;
  }

  .downloads-mini__note{
    text-align: left;
    max-width: 100%;
    margin-left: 0;
  }

  .os-card{
    min-width: min(100%, 420px);
  }
}

.os-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events:none;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(11,16,32,.12) 44%, 
    transparent 78%
  );

  transform: translateX(-120%);
  opacity: 0;
  mix-blend-mode: multiply; 

  transition:
    opacity .25s ease,
    transform .55s ease;
}

.os-card:hover::before{
  opacity: .35;
  transform: translateX(120%);
}
.os-card--win::before{
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(96,165,250,.16) 44%,
    transparent 78%
  );
}

.os-card--mac::before{
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(168,85,247,.16) 44%,
    transparent 78%
  );
}

.os-card--linux::before{
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(52,211,153,.16) 44%,
    transparent 78%
  );
}

.downloads-mini__cards .os-card{ --sheen-delay: 0s; }
.downloads-mini__cards .os-card:nth-child(2){ --sheen-delay: .12s; }
.downloads-mini__cards .os-card:nth-child(3){ --sheen-delay: .20s; }

.downloads-mini__wrap.is-visible .os-card::before{
  animation: cardSheen 1.05s cubic-bezier(.18,.9,.32,1) both;
  animation-delay: calc(.12s + var(--sheen-delay));
}

.downloads-mini__wrap.is-visible .os-card::before{
  will-change: transform, opacity;
}




.reveal-on-view{
  --reveal-dur: 820ms;
  --reveal-ease: cubic-bezier(.16, 1, .32, 1);
  --reveal-delay: 0s;
  --reveal-x: 0px;
  --reveal-y: 26px;
  --reveal-scale: 1;
  --reveal-rot: 0deg;

  opacity: 0;
  transform:
    translate3d(var(--reveal-x), var(--reveal-y), 0)
    scale(var(--reveal-scale))
    rotate(var(--reveal-rot));
  transition:
    opacity var(--reveal-dur) var(--reveal-ease) var(--reveal-delay),
    transform calc(var(--reveal-dur) + 140ms) var(--reveal-ease) var(--reveal-delay);
  will-change: opacity, transform;
}

.reveal-on-view.is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
}

.reveal-on-view[data-reveal="left"]{  --reveal-x:-26px; --reveal-y:0; }
.reveal-on-view[data-reveal="right"]{ --reveal-x: 26px; --reveal-y:0; }
.reveal-on-view[data-reveal="up"]{    --reveal-x: 0;   --reveal-y:16px; }
.reveal-on-view[data-reveal="down"]{  --reveal-x: 0;   --reveal-y:-16px; }

@media (prefers-reduced-motion: reduce){
  .reveal-on-view{
    opacity: 1;
    transform: none;
    transition: none;
  }
}




@keyframes sweepSheen{
  from{ transform: translateX(-120%) rotate(8deg); opacity:.75; }
  40%{ opacity:.9; }
  to  { transform: translateX(140%) rotate(8deg); opacity:0; }
}

@keyframes cardSheen{
  from{ transform: translateX(-120%); opacity:.0; }
  25%{ opacity:.35; }
  60%{ opacity:.22; }
  to  { transform: translateX(140%); opacity:0; }
}

@keyframes dividerSheen{
  0%   { transform: translateX(-140%); opacity: 0; }
  18%  { opacity: .32; }
  55%  { opacity: .22; }
  100% { transform: translateX(140%); opacity: 0; }
}



.why-vt{
  background:#fff;
  color:#0b1020;
  padding: 48px 0 88px;
  position: relative;
  isolation: isolate;

  
  --eth-center-safe: 24px;
  --eth-stage-max: 760px;
  --eth-center-bias: 0px;

  
  --eth-top-pad: 0px;
  --eth-bottom-pad: 28px;

  
  --eth-pin-eps: 10px;

  
  --eth-smooth-time: 0.24;
  --eth-max-speed: 16000;

  
  --eth-scale: 1.12;
  --eth-img-w: 98%;
  --eth-img-max: 640px;

  
  --row-reveal-dur: 1200ms;
  --row-reveal-ease: cubic-bezier(.16, 1, .18, 1);
  --row-reveal-stagger: 110ms;

  scroll-margin-top: 92px;
}

.why-vt::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 0;
}

.why-vt > .container{
  position: relative;
  z-index: 1;
}

.why-vt__wrap{
  border-top: 1px solid rgba(11,16,32,.10);
  border-bottom: 1px solid rgba(11,16,32,.10);
  padding: 55px 0 84px;
}


.why-vt .gradient{
  background: linear-gradient(90deg, rgba(96,165,250,.98), rgba(110,231,183,.98));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.why-vt__layout{
  display: grid;
  grid-template-columns: minmax(260px, 44%) minmax(0, 56%);
  column-gap: clamp(14px, 3vw, 34px);
  align-items: start;
}


.why-vt__rail{
  position: relative;
  min-width: 0;
}


.why-vt__stage{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  
  height: min(var(--eth-stage-max), calc(100vh - (var(--eth-center-safe) * 2)));

  pointer-events: none;
  overflow: hidden;
  contain: layout paint;
  background: transparent;
}


.why-vt__stageImg{
  position: absolute;
  left: 50%;
  top: 0;

  width: min(var(--eth-img-w), var(--eth-img-max));
  height: auto;

  
  aspect-ratio: 1 / 1;

  
  max-height: calc((100% - var(--eth-bottom-pad)) / var(--eth-scale));

  transform: translate3d(-50%, 0px, 0px) scale(var(--eth-scale));
  transform-origin: top center;
  backface-visibility: hidden;

  opacity: .46;
  filter: saturate(1.02) contrast(1.02);
}


.why-vt__content{
  min-width: 0;
  display: flow-root;
}


.why-vt__big{
  margin: 0;
  font-weight: 950;
  font-size: clamp(42px, 4.2vw, 68px);
  letter-spacing: -0.065em;
  line-height: 1.02;
  color: rgba(11,16,32,.92);
  text-wrap: balance;
}

.why-vt__big::after{
  content:"";
  display:block;
  width: min(440px, 72%);
  height: 1px;
  margin: 14px 0 0;
  background: linear-gradient(90deg, rgba(96,165,250,.95), rgba(110,231,183,.95));
  opacity: .55;
}

.why-vt__sub{
  margin: 18px 0 0;
  max-width: 72ch;
  color: rgba(11,16,32,.62);
  line-height: 1.78;
  font-size: 19.5px;
}


.why-vt__rows{
  margin-top: 32px;
  display: grid;
}

.why-row{
  --a1:#60a5fa;
  --a2:#6ee7b7;

  --reveal-delay: 0s;

  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 2fr);
  gap: 26px;

  padding: 75px 0;
  border-top: 1px solid rgba(11,16,32,.10);
  position: relative;
}
.why-row:first-child{ border-top: 0; }

.why-row__left{
  position: relative;
  padding-left: 18px;
}

.why-row__left::before{
  content:"";
  position:absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--a1), var(--a2));
  opacity: .74;
  transform-origin: top;
}

.why-row__word{
  font-weight: 950;
  font-size: clamp(30px, 2.4vw, 40px);
  letter-spacing: -0.06em;
  color: rgba(11,16,32,.92);
  line-height: 1.05;
}

.why-row__mini{
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(11,16,32,.52);
}

.why-row__right{
  position: relative;
}

.why-row__title{
  font-weight: 950;
  font-size: 24px;
  letter-spacing: -0.045em;
  color: rgba(11,16,32,.92);
  line-height: 1.18;

  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}

.why-row__title::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom: 2px;
  height: 1px;
  background: rgba(11,16,32,.14);
}


.why-row__title::before{
  content:"";
  position:absolute;
  left:-18%;
  right:-18%;
  bottom: 1px;
  height: 2px;
  background: linear-gradient(120deg, transparent 0%, rgba(11,16,32,.18) 44%, transparent 78%);
  transform: translateX(-120%);
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity .25s ease, transform .55s ease;
}
.why-row:hover .why-row__title::before{
  opacity: .52;
  transform: translateX(120%);
}

.why-row__text{
  margin-top: 12px;
  color: rgba(11,16,32,.62);
  font-size: 19.5px;
  line-height: 1.78;
  max-width: 86ch;
}

.why-row__list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.why-row__list li{
  position: relative;
  padding-left: 18px;
  color: rgba(11,16,32,.62);
  font-size: 18px;
  line-height: 1.78;
}

.why-row__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--a1), var(--a2));
  opacity: .86;
}


.why-row--runs  { --a1:#34d399; --a2:#60a5fa; }
.why-row--queues{ --a1:#60a5fa; --a2:#22d3ee; }
.why-row--sign  { --a1:#a855f7; --a2:#fb7185; }
.why-row--vis   { --a1:#34d399; --a2:#fbbf24; }

.why-vt__foot{
  margin: 22px 0 0;
  max-width: 78ch;
  color: rgba(11,16,32,.56);
  font-size: 16.5px;
  line-height: 1.7;
}


.why-row[data-reveal="1"]{
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity var(--row-reveal-dur) var(--row-reveal-ease),
    transform calc(var(--row-reveal-dur) + 120ms) var(--row-reveal-ease);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

.why-row[data-reveal="1"]::after{
  content:"";
  position:absolute;
  inset: -14px -10px -14px -10px;
  pointer-events:none;
  opacity: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(11,16,32,.10) 42%,
    transparent 78%
  );
  transform: translate3d(-120%, 0, 0);
}

@keyframes whyRowShine {
  0%   { opacity: 0; transform: translate3d(-120%, 0, 0); }
  14%  { opacity: .55; }
  100% { opacity: 0; transform: translate3d(120%, 0, 0); }
}

.why-row[data-reveal="1"] .why-row__left,
.why-row[data-reveal="1"] .why-row__title,
.why-row[data-reveal="1"] .why-row__text,
.why-row[data-reveal="1"] .why-row__list{
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 980ms var(--row-reveal-ease),
    transform 1180ms var(--row-reveal-ease);
  transition-delay: calc(var(--reveal-delay) + 140ms + (var(--part, 0) * 70ms));
  will-change: opacity, transform;
}

.why-row[data-reveal="1"] .why-row__left{
  transform: translate3d(-10px, 10px, 0);
}

.why-row[data-reveal="1"] .why-row__left::before{
  transform: scaleY(0);
  transition: transform 1100ms var(--row-reveal-ease);
  transition-delay: calc(var(--reveal-delay) + 220ms);
}

.why-row[data-reveal="1"] .why-row__list li{
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 900ms var(--row-reveal-ease),
    transform 1100ms var(--row-reveal-ease);
  transition-delay: calc(var(--reveal-delay) + 220ms + (var(--li, 0) * var(--row-reveal-stagger)));
  will-change: opacity, transform;
}

.why-row.is-in{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.why-row.is-in .why-row__left,
.why-row.is-in .why-row__title,
.why-row.is-in .why-row__text,
.why-row.is-in .why-row__list{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.why-row.is-in .why-row__left::before{
  transform: scaleY(1);
}

.why-row.is-in .why-row__list li{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.why-row.is-in::after{
  animation: whyRowShine 1400ms var(--row-reveal-ease) both;
  animation-delay: calc(var(--reveal-delay) + 180ms);
}


@media (prefers-reduced-motion: reduce){
  .why-row[data-reveal="1"],
  .why-row[data-reveal="1"] .why-row__left,
  .why-row[data-reveal="1"] .why-row__title,
  .why-row[data-reveal="1"] .why-row__text,
  .why-row[data-reveal="1"] .why-row__list,
  .why-row[data-reveal="1"] .why-row__list li{
    opacity: 1;
    transform: none;
    transition: none;
  }

  .why-row[data-reveal="1"]::after{ display: none; }

  .why-row__left::before{
    transform: none;
    transition: none;
  }

  .why-row__title::before{ transition: none; }
  .why-row:hover .why-row__title::before{ transform: none; opacity: 0; }

  .why-vt__stageImg{
    transform: translate3d(-50%, 0px, 0px) scale(var(--eth-scale));
  }
}

@media (max-width: 980px){
  .why-vt{ padding: 14px 0 44px; }
  .why-vt__layout{ grid-template-columns: 1fr; row-gap: 18px; }
  .why-vt__rail{ display: none; }

  .why-row{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }
  .why-row__left{ padding-left: 14px; }
  .why-row__title{ font-size: 21px; }
  .why-vt__sub{ font-size: 17.6px; }
}




.faq-alt{
  position: relative;
  padding: 126px 0;
  overflow: hidden;
  scroll-margin-top: 92px;
  isolation: isolate;
}


.faq-alt__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.06);
  opacity: .92;
  z-index: 0;
}


.faq-alt::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(920px 520px at 20% 18%, rgba(96,165,250,.14), transparent 60%),
    radial-gradient(900px 520px at 85% 32%, rgba(110,231,183,.12), transparent 62%),
    linear-gradient(to bottom, rgba(11,16,32,.22), rgba(11,16,32,.75));
  pointer-events:none;
  z-index: 1;
}


.faq-alt > .container{ position: relative; z-index: 2; }

.faq-alt__head{
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

.faq-alt__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
}

.faq-alt__kicker::before{
  content:"⟫";
  font-weight: 800;
  color: rgba(110,231,183,.86);
  text-shadow: 0 0 18px rgba(110,231,183,.18);
}

.faq-alt__title{
  margin: 14px 0 0;
  font-size: clamp(30px, 3.1vw, 54px);
  letter-spacing: .06em;
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.faq-alt .gradient{
  background: linear-gradient(90deg, rgba(96,165,250,.98), rgba(110,231,183,.98));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-alt__sub{
  margin: 14px auto 0;
  max-width: 740px;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
  font-size: 18.5px;
}


.faq-alt__state,
.faq-alt__pageState{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}


.faq-alt__grid{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 14px;
  align-items: start;
}


.faq-alt__nav{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(11,16,32,.98);
  backdrop-filter: blur(14px) saturate(1.08);
  box-shadow: 0 18px 52px rgba(0,0,0,.32);
  overflow: clip;
  --tab-delay: 0s;
}

.faq-alt__pages{
  position: relative;
}


.faq-alt__pageBlock{
  display: none;
}

#faq-page-1:checked ~ .faq-alt__grid .faq-alt__pageBlock--1,
#faq-page-2:checked ~ .faq-alt__grid .faq-alt__pageBlock--2,
#faq-page-3:checked ~ .faq-alt__grid .faq-alt__pageBlock--3,
#faq-page-4:checked ~ .faq-alt__grid .faq-alt__pageBlock--4{
  display: block;
  animation: faqPageSwap .24s ease both;
}

@keyframes faqPageSwap{
  from{ opacity: 0; transform: translateY(3px); }
  to{ opacity: 1; transform: translateY(0); }
}


.faq-alt__tab{
  display: grid;
  gap: 6px;
  padding: 20px 14px 20px 16px;
  cursor: pointer;
  user-select: none;
  border-top: 1px solid rgba(255,255,255,.10);
  position: relative;
  transition: background .18s ease;
}

.faq-alt__tab:first-child{ border-top: 0; }

.faq-alt__tab::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:2px;
  background: linear-gradient(180deg, rgba(96,165,250,.92), rgba(110,231,183,.86));
  opacity: 0;
  transition: opacity .16s ease;
}

.faq-alt__tab:hover{
  background: rgba(255,255,255,.04);
}

.faq-alt__tab:hover::before{
  opacity: .88;
}

.faq-alt__tab::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(96,165,250,.0), rgba(96,165,250,.65), rgba(110,231,183,.0));
  opacity: 0;
  transform: translateX(-40%);
  pointer-events: none;
}

.faq-alt__tab{ --tab-delay: 0s; }
.faq-alt__tab:nth-child(2){ --tab-delay: .04s; }
.faq-alt__tab:nth-child(3){ --tab-delay: .08s; }
.faq-alt__tab:nth-child(4){ --tab-delay: .12s; }
.faq-alt__tab:nth-child(5){ --tab-delay: .16s; }
.faq-alt__tab:nth-child(6){ --tab-delay: .20s; }
.faq-alt__tab:nth-child(7){ --tab-delay: .24s; }
.faq-alt__tab:nth-child(8){ --tab-delay: .28s; }
.faq-alt__tab:nth-child(9){ --tab-delay: .32s; }
.faq-alt__tab:nth-child(10){ --tab-delay: .36s; }
.faq-alt__tab:nth-child(11){ --tab-delay: .40s; }
.faq-alt__tab:nth-child(12){ --tab-delay: .44s; }
.faq-alt__tab:nth-child(13){ --tab-delay: .48s; }
.faq-alt__tab:nth-child(14){ --tab-delay: .52s; }
.faq-alt__tab:nth-child(15){ --tab-delay: .56s; }
.faq-alt__tab:nth-child(16){ --tab-delay: .60s; }

.faq-alt__nav.reveal-on-view .faq-alt__tab{
  opacity: 0;
  transform: translate3d(-8px, 10px, 0);
  transition:
    opacity 640ms cubic-bezier(.18,1,.3,1),
    transform 780ms cubic-bezier(.18,1,.3,1);
  transition-delay: var(--tab-delay);
}

.faq-alt__nav.is-visible .faq-alt__tab{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.faq-alt__nav.is-visible .faq-alt__tab::after{
  animation: faqTabSweep 1100ms cubic-bezier(.18,.9,.3,1) both;
  animation-delay: calc(var(--tab-delay) + .16s);
}

.faq-alt__tag{
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.faq-alt__q{
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
  line-height: 1.25;
  
  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 17px;
}


#faq-q1:checked  ~ .faq-alt__grid label[for="faq-q1"],
#faq-q2:checked  ~ .faq-alt__grid label[for="faq-q2"],
#faq-q3:checked  ~ .faq-alt__grid label[for="faq-q3"],
#faq-q4:checked  ~ .faq-alt__grid label[for="faq-q4"],
#faq-q5:checked  ~ .faq-alt__grid label[for="faq-q5"],
#faq-q6:checked  ~ .faq-alt__grid label[for="faq-q6"],
#faq-q7:checked  ~ .faq-alt__grid label[for="faq-q7"],
#faq-q8:checked  ~ .faq-alt__grid label[for="faq-q8"],
#faq-q9:checked  ~ .faq-alt__grid label[for="faq-q9"],
#faq-q10:checked ~ .faq-alt__grid label[for="faq-q10"],
#faq-q11:checked ~ .faq-alt__grid label[for="faq-q11"],
#faq-q12:checked ~ .faq-alt__grid label[for="faq-q12"],
#faq-q13:checked ~ .faq-alt__grid label[for="faq-q13"],
#faq-q14:checked ~ .faq-alt__grid label[for="faq-q14"],
#faq-q15:checked ~ .faq-alt__grid label[for="faq-q15"],
#faq-q16:checked ~ .faq-alt__grid label[for="faq-q16"]{
  background: rgba(255,255,255,.05);
}

#faq-q1:checked  ~ .faq-alt__grid label[for="faq-q1"]::before,
#faq-q2:checked  ~ .faq-alt__grid label[for="faq-q2"]::before,
#faq-q3:checked  ~ .faq-alt__grid label[for="faq-q3"]::before,
#faq-q4:checked  ~ .faq-alt__grid label[for="faq-q4"]::before,
#faq-q5:checked  ~ .faq-alt__grid label[for="faq-q5"]::before,
#faq-q6:checked  ~ .faq-alt__grid label[for="faq-q6"]::before,
#faq-q7:checked  ~ .faq-alt__grid label[for="faq-q7"]::before,
#faq-q8:checked  ~ .faq-alt__grid label[for="faq-q8"]::before,
#faq-q9:checked  ~ .faq-alt__grid label[for="faq-q9"]::before,
#faq-q10:checked ~ .faq-alt__grid label[for="faq-q10"]::before,
#faq-q11:checked ~ .faq-alt__grid label[for="faq-q11"]::before,
#faq-q12:checked ~ .faq-alt__grid label[for="faq-q12"]::before,
#faq-q13:checked ~ .faq-alt__grid label[for="faq-q13"]::before,
#faq-q14:checked ~ .faq-alt__grid label[for="faq-q14"]::before,
#faq-q15:checked ~ .faq-alt__grid label[for="faq-q15"]::before,
#faq-q16:checked ~ .faq-alt__grid label[for="faq-q16"]::before{
  opacity: .95;
}

@keyframes faqTabSweep{
  from{ transform: translateX(-50%); opacity: 0; }
  28% { opacity: .9; }
  to{ transform: translateX(60%); opacity: 0; }
}


.faq-alt__pager{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}

.faq-alt__pagerBtn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.faq-alt__pagerBtn:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.20);
  transform: translateY(-1px);
}

.faq-alt__dots{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: auto;
}

.faq-alt__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  position: relative;
}

#faq-page-1:checked ~ .faq-alt__grid label[for="faq-page-1"],
#faq-page-2:checked ~ .faq-alt__grid label[for="faq-page-2"],
#faq-page-3:checked ~ .faq-alt__grid label[for="faq-page-3"],
#faq-page-4:checked ~ .faq-alt__grid label[for="faq-page-4"]{
  background: linear-gradient(135deg, rgba(96,165,250,.92), rgba(110,231,183,.88));
  border-color: rgba(255,255,255,0);
  box-shadow: 0 0 0 4px rgba(96,165,250,.12);
}


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


.faq-alt__panes{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(11,16,32,.99);
  backdrop-filter: blur(16px) saturate(1.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.38);
  overflow: clip;
  min-height: 340px; 
}

.faq-alt__pane{
  display: none;
  padding: 18px 18px 18px 20px;
  height: 100%;
  box-sizing: border-box;
  flex-direction: column;
}

.faq-alt__paneTop{
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  position: relative;
  overflow: hidden;
}

.faq-alt__pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.72);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
}

.faq-alt__paneTitle{
  margin: 0;
  font-size: clamp(19px, 2.0vw, 27px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.92);
}


.faq-alt__paneBody{
  padding-top: 14px;
  color: rgba(255,255,255,.74);
  line-height: 1.85;
  font-size: 16.5px;
  flex: 1;
  overflow: auto;
  padding-right: 10px;
}

.faq-alt__paneBody p{ margin: 0; }
.faq-alt__paneBody ul{
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.faq-alt__paneBody li{ color: rgba(255,255,255,.72); }
.faq-alt__paneBody b{ color: rgba(255,255,255,.90); font-weight: 800; }


.faq-alt__paneBody::-webkit-scrollbar{ width: 10px; }
.faq-alt__paneBody::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.14);
  border-radius: 999px;
  border: 3px solid rgba(0,0,0,0);
  background-clip: padding-box;
}
.faq-alt__paneBody::-webkit-scrollbar-track{ background: transparent; }


#faq-q1:checked  ~ .faq-alt__grid .faq-alt__pane--q1{ display:flex; animation: faqSwap .26s ease both; }
#faq-q2:checked  ~ .faq-alt__grid .faq-alt__pane--q2{ display:flex; animation: faqSwap .26s ease both; }
#faq-q3:checked  ~ .faq-alt__grid .faq-alt__pane--q3{ display:flex; animation: faqSwap .26s ease both; }
#faq-q4:checked  ~ .faq-alt__grid .faq-alt__pane--q4{ display:flex; animation: faqSwap .26s ease both; }
#faq-q5:checked  ~ .faq-alt__grid .faq-alt__pane--q5{ display:flex; animation: faqSwap .26s ease both; }
#faq-q6:checked  ~ .faq-alt__grid .faq-alt__pane--q6{ display:flex; animation: faqSwap .26s ease both; }
#faq-q7:checked  ~ .faq-alt__grid .faq-alt__pane--q7{ display:flex; animation: faqSwap .26s ease both; }
#faq-q8:checked  ~ .faq-alt__grid .faq-alt__pane--q8{ display:flex; animation: faqSwap .26s ease both; }
#faq-q9:checked  ~ .faq-alt__grid .faq-alt__pane--q9{ display:flex; animation: faqSwap .26s ease both; }
#faq-q10:checked ~ .faq-alt__grid .faq-alt__pane--q10{ display:flex; animation: faqSwap .26s ease both; }
#faq-q11:checked ~ .faq-alt__grid .faq-alt__pane--q11{ display:flex; animation: faqSwap .26s ease both; }
#faq-q12:checked ~ .faq-alt__grid .faq-alt__pane--q12{ display:flex; animation: faqSwap .26s ease both; }
#faq-q13:checked ~ .faq-alt__grid .faq-alt__pane--q13{ display:flex; animation: faqSwap .26s ease both; }
#faq-q14:checked ~ .faq-alt__grid .faq-alt__pane--q14{ display:flex; animation: faqSwap .26s ease both; }
#faq-q15:checked ~ .faq-alt__grid .faq-alt__pane--q15{ display:flex; animation: faqSwap .26s ease both; }
#faq-q16:checked ~ .faq-alt__grid .faq-alt__pane--q16{ display:flex; animation: faqSwap .26s ease both; }

#faq-q1:checked  ~ .faq-alt__grid .faq-alt__pane--q1 .faq-alt__paneTop::after,
#faq-q2:checked  ~ .faq-alt__grid .faq-alt__pane--q2 .faq-alt__paneTop::after,
#faq-q3:checked  ~ .faq-alt__grid .faq-alt__pane--q3 .faq-alt__paneTop::after,
#faq-q4:checked  ~ .faq-alt__grid .faq-alt__pane--q4 .faq-alt__paneTop::after,
#faq-q5:checked  ~ .faq-alt__grid .faq-alt__pane--q5 .faq-alt__paneTop::after,
#faq-q6:checked  ~ .faq-alt__grid .faq-alt__pane--q6 .faq-alt__paneTop::after,
#faq-q7:checked  ~ .faq-alt__grid .faq-alt__pane--q7 .faq-alt__paneTop::after,
#faq-q8:checked  ~ .faq-alt__grid .faq-alt__pane--q8 .faq-alt__paneTop::after,
#faq-q9:checked  ~ .faq-alt__grid .faq-alt__pane--q9 .faq-alt__paneTop::after,
#faq-q10:checked ~ .faq-alt__grid .faq-alt__pane--q10 .faq-alt__paneTop::after,
#faq-q11:checked ~ .faq-alt__grid .faq-alt__pane--q11 .faq-alt__paneTop::after,
#faq-q12:checked ~ .faq-alt__grid .faq-alt__pane--q12 .faq-alt__paneTop::after,
#faq-q13:checked ~ .faq-alt__grid .faq-alt__pane--q13 .faq-alt__paneTop::after,
#faq-q14:checked ~ .faq-alt__grid .faq-alt__pane--q14 .faq-alt__paneTop::after,
#faq-q15:checked ~ .faq-alt__grid .faq-alt__pane--q15 .faq-alt__paneTop::after,
#faq-q16:checked ~ .faq-alt__grid .faq-alt__pane--q16 .faq-alt__paneTop::after{
  animation: sweepSheen 1.05s cubic-bezier(.22,.9,.32,1) both;
  animation-delay: .08s;
}

.faq-alt__paneTop::after{
  content:"";
  position:absolute;
  inset:-40% -120% auto -120%;
  height: 160%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.12) 44%, rgba(255,255,255,.32) 52%, transparent 64%);
  transform: translateX(-120%) rotate(8deg);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes faqSwap{
  from{ opacity: 0; transform: translateY(-3px); }
  to{ opacity: 1; transform: translateY(0); }
}


@media (max-width: 980px){
  .faq-alt{ padding: 86px 0; }
  .faq-alt__grid{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  .product__facts.is-visible .product__fact::after,
  .downloads-mini__wrap.is-visible .os-card::before,
  .faq-alt__nav.is-visible .faq-alt__tab::after,
  #faq-q1:checked  ~ .faq-alt__grid .faq-alt__pane--q1 .faq-alt__paneTop::after,
  #faq-q2:checked  ~ .faq-alt__grid .faq-alt__pane--q2 .faq-alt__paneTop::after,
  #faq-q3:checked  ~ .faq-alt__grid .faq-alt__pane--q3 .faq-alt__paneTop::after,
  #faq-q4:checked  ~ .faq-alt__grid .faq-alt__pane--q4 .faq-alt__paneTop::after,
  #faq-q5:checked  ~ .faq-alt__grid .faq-alt__pane--q5 .faq-alt__paneTop::after,
  #faq-q6:checked  ~ .faq-alt__grid .faq-alt__pane--q6 .faq-alt__paneTop::after,
  #faq-q7:checked  ~ .faq-alt__grid .faq-alt__pane--q7 .faq-alt__paneTop::after,
  #faq-q8:checked  ~ .faq-alt__grid .faq-alt__pane--q8 .faq-alt__paneTop::after,
  #faq-q9:checked  ~ .faq-alt__grid .faq-alt__pane--q9 .faq-alt__paneTop::after,
  #faq-q10:checked ~ .faq-alt__grid .faq-alt__pane--q10 .faq-alt__paneTop::after,
  #faq-q11:checked ~ .faq-alt__grid .faq-alt__pane--q11 .faq-alt__paneTop::after,
  #faq-q12:checked ~ .faq-alt__grid .faq-alt__pane--q12 .faq-alt__paneTop::after,
  #faq-q13:checked ~ .faq-alt__grid .faq-alt__pane--q13 .faq-alt__paneTop::after,
  #faq-q14:checked ~ .faq-alt__grid .faq-alt__pane--q14 .faq-alt__paneTop::after,
  #faq-q15:checked ~ .faq-alt__grid .faq-alt__pane--q15 .faq-alt__paneTop::after,
  #faq-q16:checked ~ .faq-alt__grid .faq-alt__pane--q16 .faq-alt__paneTop::after{
    animation: none;
  }
}




.site-footer{
  
  --sf-accent-a: var(--brand-a, var(--accent-a, #6ee7b7));
  --sf-accent-b: var(--brand-b, var(--accent-b, #60a5fa));
  --sf-accent:   var(--brand,   var(--accent,   var(--sf-accent-a)));

  position: relative;
  padding: 76px 0 44px; 
  background: linear-gradient(to bottom, rgba(7,10,18,.92), rgba(4,6,12,.98));
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
}

.site-footer .container{
  position: relative;
}

.site-footer__divider{
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 45px 0; 
}


.site-footer__signup{
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: start;

  padding: 48px 30px;
  border-radius: 1px; 
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(12px);
}

.site-footer__signupTitle{
  margin: 0 0 14px;
  font-size: 27px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
}

.site-footer__form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.site-footer__input{
  height: 46px;
  padding: 0 14px;
  border-radius: 1px; 
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  outline: none;
}

.site-footer__input::placeholder{
  color: rgba(255,255,255,.45);
}

.site-footer__btn{
  height: 46px;
  padding: 0 18px;
  border-radius: 1px; 
  border: 1px solid transparent;

  
  background: linear-gradient(135deg, var(--sf-accent-a), var(--sf-accent-b));
  color: #081022;

  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .16s ease, filter .16s ease;
}

.site-footer__btn:hover{
  filter: brightness(1.03);
}

.site-footer__opt{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  line-height: 1.55;
}

.site-footer__check{
  width: 16px;
  height: 16px;
  accent-color: var(--sf-accent); 
}

.site-footer__legal{
  margin: 0;
  padding-top: 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.55);
}


.site-footer__grid{
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(170px, 1fr));
  gap: 30px; 
  align-items: start;
}

.site-footer__brand{
  padding-right: 14px;
}

.site-footer__logo{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255,255,255,.92);
  margin-bottom: 12px;
}

.site-footer__mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: url("/public/logo.webp") no-repeat center / cover;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
  text-indent: -9999px;
  border: 0;
}

.site-footer__name{
  font-weight: 900;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.site-footer__blurb{
  margin: 10px 0 0;
  color: rgba(255,255,255,.74);
  line-height: 1.7;
}

.site-footer__blurbMuted{
  margin: 10px 0 0;
  color: rgba(255,255,255,.58);
  line-height: 1.7;
  font-size: 17px;
}

.site-footer__meta{
  margin: 18px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 13.5px;
  line-height: 1.6;
}

.site-footer__mail{
  display: inline-block;
  margin-top: 12px;

  
  color: color-mix(in srgb, var(--sf-accent-a) 75%, rgba(255,255,255,.92));
  text-decoration: none;
  font-weight: 800;
}

.site-footer__mail:hover{
  text-decoration: underline;
}


.site-footer__colTitle{
  margin: 2px 0 16px; 
  font-size: 14.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
}

.site-footer__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px; 
}

.site-footer__link{
  color: rgba(255,255,255,.60);
  text-decoration: none;
  line-height: 1.65;
  font-size: 16px;
}

.site-footer__link:hover{
  color: rgba(255,255,255,.90);
}


.site-footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 6px;
}

.site-footer__copy{
  margin: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.52);
}

.site-footer__bottomRight{
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.site-footer__linkInline{
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-size: 13.5px;
}

.site-footer__linkInline:hover{
  color: rgba(255,255,255,.90);
  text-decoration: underline;
}

.site-footer__social{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__icon{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.70);
  text-decoration: none;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}

.site-footer__icon:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}


.site-footer :is(a, button, input):focus-visible{
  outline: 2px solid color-mix(in srgb, var(--sf-accent-a) 70%, rgba(255,255,255,.5));
  outline-offset: 2px;
}


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


@media (max-width: 980px){
  .site-footer{
    padding: 66px 0 40px;
  }

  .site-footer__signup{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px;
  }

  .site-footer__grid{
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

@media (max-width: 720px){
  .site-footer__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 560px){
  .site-footer__form{
    grid-template-columns: 1fr;
  }

  .site-footer__btn{
    width: 100%;
  }

  .site-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


.site-footer__signup{
  align-items: center; 
}

.site-footer__legal{
  padding-top: 0;
  margin: 0;
}







.site-footer__inputWrap{
  position: relative;
  display: block;
  height: 46px;
}


.site-footer__inputWrap::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;

  border: 1px solid transparent;
  border-image: linear-gradient(135deg, var(--sf-accent-a), var(--sf-accent-b)) 1;
  transition: border-image-source .22s ease, box-shadow .18s ease, border-color .18s ease;
}


.site-footer__inputWrap.is-focus::before{
  border-color: transparent;
  border-image: linear-gradient(315deg, var(--sf-accent-a), var(--sf-accent-b)) 1;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}


.site-footer__inputWrap.is-valid::before{
  border-image: none;
  border-color: rgba(16,185,129,.65);
}

.site-footer__inputWrap.is-invalid::before{
  border-image: none;
  border-color: rgba(244,63,94,.62);
}


.site-footer__input{
  width: 100%;
  height: 46px;
  padding: 0 14px;

  border: 0 !important;
  outline: none !important;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;

  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  transition: background .35s ease;
}

.site-footer__input::placeholder{
  color: rgba(255,255,255,.45);
}





.site-footer__check{
  width: 16px;
  height: 16px;

  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;

  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.site-footer__check:checked{
  border-color: rgba(16,185,129,.55);
}

.site-footer__check:checked::after{
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid rgba(255,255,255,.92);
  border-bottom: 2px solid rgba(255,255,255,.92);
  transform: rotate(-45deg);
  margin-top: -1px;
}



.ui-toast-stack{
  position: fixed;
  left: 50%;
  top: calc(var(--header-h, 64px) + 12px);
  transform: translateX(-50%);
  width: min(560px, calc(100vw - 24px));
  z-index: 99999;

  display: grid;
  gap: 10px;
  pointer-events: none;
}

.ui-toast{
  pointer-events: auto;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;

  padding: 12px 12px 12px 14px;
  border-radius: 0; 

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,12,18,.76);
  backdrop-filter: blur(12px);

  color: rgba(255,255,255,.92);
  box-shadow: 0 16px 44px rgba(0,0,0,.52);

  opacity: 0;
  transform: translateY(-14px);
  transition: transform .22s ease, opacity .22s ease;
}

.ui-toast.is-in{
  opacity: 1;
  transform: translateY(0);
}

.ui-toast.is-out{
  opacity: 0;
  transform: translateY(-14px);
}

.ui-toast__msg{
  font-size: 14.5px;
  line-height: 1.45;
}

.ui-toast__x{
  width: 34px;
  height: 34px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  cursor: pointer;
}


.ui-toast--error{
  background: rgba(244,63,94,.20);
  border-color: rgba(244,63,94,.36);
}

.ui-toast--success{
  background: rgba(16,185,129,.20);
  border-color: rgba(16,185,129,.36);
}









:root{
  --enter-ease: cubic-bezier(.16,1,.22,1);

  
  --dur-1: 1420ms;
  --dur-2: 1520ms;

  
  --dur-blur-1: 1480ms;
  --dur-blur-2: 1580ms;

  --blur-s: 10px;
  --blur-m: 8px;
}



html.js .header__inner{
  opacity: 0;
  transform: translate3d(0,-8px,0);
  filter: blur(var(--blur-m));
  will-change: transform, opacity, filter;
}

html.js.is-enter .header__inner{
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity var(--dur-1) var(--enter-ease),
    transform var(--dur-1) var(--enter-ease),
    filter var(--dur-blur-1) var(--enter-ease);
  transition-delay: 40ms;
}



html.js .hero::before{
  transform: scale(1.14);
  will-change: transform;
}

html.js.is-enter .hero::before{
  transform: scale(1.02);
  transition: transform 2500ms var(--enter-ease);
}

html.js .hero::after{
  opacity: 0;
  will-change: opacity;
}

html.js.is-enter .hero::after{
  opacity: 1;
  transition: opacity var(--dur-1) var(--enter-ease);
}



html.js .hero .pill,
html.js .hero .subtitle,
html.js .hero .hero__bullets,
html.js .hero .hero__actions{
  opacity: 0;
  transform: translate3d(0,16px,0);
  filter: blur(var(--blur-s));
  will-change: transform, opacity, filter;
}


html.js .hero .headline{
  opacity: .94;
  transform: translate3d(0,14px,0);
  filter: blur(var(--blur-m));
  will-change: transform, opacity, filter;
}


html.js.is-enter .hero .pill{
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity var(--dur-1) var(--enter-ease),
    transform var(--dur-1) var(--enter-ease),
    filter var(--dur-blur-1) var(--enter-ease);
  transition-delay: 120ms;
}

html.js.is-enter .hero .headline{
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity var(--dur-2) var(--enter-ease),
    transform var(--dur-2) var(--enter-ease),
    filter var(--dur-blur-2) var(--enter-ease);
  transition-delay: 210ms;
}

html.js.is-enter .hero .subtitle{
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity var(--dur-1) var(--enter-ease),
    transform var(--dur-1) var(--enter-ease),
    filter var(--dur-blur-1) var(--enter-ease);
  transition-delay: 300ms;
}

html.js.is-enter .hero .hero__bullets{
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity var(--dur-1) var(--enter-ease),
    transform var(--dur-1) var(--enter-ease),
    filter var(--dur-blur-1) var(--enter-ease);
  transition-delay: 390ms;
}

html.js.is-enter .hero .hero__actions{
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity var(--dur-1) var(--enter-ease),
    transform var(--dur-1) var(--enter-ease),
    filter var(--dur-blur-1) var(--enter-ease);
  transition-delay: 480ms;
}



html.js .hero .stats{
  opacity: 0;
  transform: translate3d(0,14px,0);
  filter: blur(var(--blur-s));
  will-change: transform, opacity, filter;
}


html.js.is-enter .hero .stats{
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity 760ms var(--enter-ease),
    transform 760ms var(--enter-ease),
    filter 980ms var(--enter-ease);
  transition-delay: 380ms;
}


.stats{
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}


.stats--barGlow{
  position: relative;
}


.stats--barGlow::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events:none;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.18) 40%,
    rgba(255,255,255,.32) 52%,
    transparent 70%
  );

  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-140%);
  will-change: transform, opacity;
  z-index: 1;
}




.stats--barGlow > *{
  position: relative;
  z-index: 2;
}


@keyframes statsDividerSheen{
  0%   { transform: translateX(-140%); opacity: 0; }
  12%  { opacity: .22; }
  45%  { opacity: .40; }
  100% { transform: translateX(140%); opacity: 0; }
}

.stats--barGlow.is-visible::after{
  animation: statsDividerSheen 1.2s cubic-bezier(.2,.88,.32,1) both;
  animation-delay: .18s;
}

.stats--barGlow:not(.is-visible)::after{
  animation: none;
  opacity: 0;
  transform: translateX(-140%);
}




@media (prefers-reduced-motion: reduce){
  html.js .header__inner,
  html.js .hero::before,
  html.js .hero::after,
  html.js .hero .pill,
  html.js .hero .headline,
  html.js .hero .subtitle,
  html.js .hero .hero__bullets,
  html.js .hero .hero__actions,
  html.js .hero .stats{
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    will-change: auto !important;
  }

  .stats--barGlow.is-visible::after{
    animation: none !important;
    opacity: 0 !important;
    transform: translateX(-160%) !important;
  }
}



@media (max-width: 1200px){
  .product{
    padding: 56px 0 86px;
  }

  .product__header{
    margin-bottom: 42px;
  }

  .product__row{
    gap: 32px;
    margin-top: 36px;
  }

  .product__media{
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 360px;
  }

  .product__media--ambient{
    aspect-ratio: 16 / 9;
  }

  .product__p,
  .product__list li,
  .product__factText{
    font-size: 17px;
    line-height: 1.75;
  }

  .product__list li:nth-child(2){ margin-left: 10px; }
  .product__list li:nth-child(3){ margin-left: 16px; }
  .product__list li:nth-child(4){ margin-left: 20px; }
  .product__list li:nth-child(n+5){ margin-left: 24px; }

  .product__factTitle{
    font-size: 26px;
  }

  .product__ui{
    gap: 26px;
  }

  .product__uiIntro{
    gap: 6px;
  }

  .product__uiTitle{
    font-size: clamp(30px, 4.4vw, 48px);
  }

  .product__divider{
    height: auto;
    padding: 22px 20px;
    margin: 48px auto;
  }

  .product__dividerLogos{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 14px;
    justify-items: center;
    align-items: center;
  }

  .product__dividerLogos img{
    max-height: 64px;
    max-width: 170px;
  }
}

@media (max-width: 900px){
  .product{
    padding: 46px 0 72px;
  }

  .product__row{
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
  }

  .product__media{
    min-height: 320px;
  }

  .product__p,
  .product__list li,
  .product__factText{
    font-size: 16px;
    line-height: 1.7;
  }

  .product__factTitle{
    font-size: 23px;
  }

  .product__divider{
    margin: 40px auto;
    padding: 18px 16px;
  }

  .product__dividerLogos{
    gap: 12px 12px;
  }

  .product__ui{
    gap: 22px;
  }

  .product__uiIntro{
    gap: 5px;
  }
}

@media (max-width: 720px){
  .product{
    padding: 0px 0 62px;
  }

  .product__header{
    margin-bottom: 30px;
  }

  .product__row{
    margin-top: 28px;
    gap: 18px;
  }

  .product__media{
    min-height: 260px;
  }

  .product__divider{
    padding: 18px 14px;
    margin: 36px auto;
  }

  .product__dividerLogos{
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 28px 0;
  }

  .product__dividerLogos img{
    max-height: 58px;
    max-width: 180px;
  }

  .product__ui{
    gap: 18px;
  }
}



@media (max-width: 900px){
  .downloads-mini{
    padding: 20px 0 10px;
  }
  .why-vt__wrap{
    padding: 30px 0 40px;
  }

  .faq-alt {
    padding: 36px 0;
  }

  .site-footer {
    padding: 46px 0 40px;
  }
}



@media (max-width: 720px){
  .hero__actions{
    display: none;
  }

  .hero .subtitle{
    font-size: 14px;
    line-height: 1.5;
    max-width: 620px;
  }
  .pill-name {
    font-size: 12px;
  }
}
