@font-face {
  font-family: "Work Sans";
  src:
    local("Work Sans Regular"),
    local("WorkSans-Regular"),
    url("/fonts/WorkSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src:
    local("Work Sans Medium"),
    local("WorkSans-Medium"),
    url("/fonts/WorkSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src:
    local("Work Sans SemiBold"),
    local("WorkSans-SemiBold"),
    url("/fonts/WorkSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src:
    local("Work Sans Bold"),
    local("WorkSans-Bold"),
    url("/fonts/WorkSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src:
    local("Work Sans Black"),
    local("WorkSans-Black"),
    url("/fonts/WorkSans-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}




:root {
  --c-bg: #F4F4F4;        
  --c-bg-2: #F2F2F1;      
  --c-text: rgb(83, 100, 121);       
  --c-text-2:  #2f4257; 
  --c-muted: #6b7480;     
  --c-muted-2: #6a7788;   
  --c-border: #CCD3D7;    
  --c-border-2: #CFD8DC;  
  --c-border-3: #DCDFE1;  
  --c-accent: #5EB4C8;    
  --c-accent-2: #5EB4C8;  

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);

  --container: 1100px;
  --header-h: 84px;
  --header-h-scrolled: 68px;
}




:root {
  --font-sans: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  font-family: var(--font-sans);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
}


a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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


.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 50;
  transition: height 260ms ease;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  height: 100%;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  position: relative;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.brand-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.brand-stack {
  line-height: 1.05;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-sub {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-muted);
}



.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 7.5px;
  border-radius: 999px;
  transition: background 260ms ease, box-shadow 260ms ease;
}

.nav-link {
  position: relative;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 500;
  color: var(--c-muted-2);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.nav-link:hover {
  color: var(--c-text);
  background: rgba(204, 211, 215, 0.35);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--c-muted-2);

  border: 1px solid transparent; 
  transition:
    background 200ms ease,
    color 200ms ease,
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.icon-link:hover {
  color: var(--c-text);
  background: rgba(204, 211, 215, 0.35);
}

.icon { width: 18px; height: 18px; fill: currentColor; }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(204, 211, 215, 0.8);
  background: rgba(242, 242, 241, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.menu-bars {
  width: 18px;
  height: 12px;
  display: inline-block;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 5px / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 10px / 100% 2px no-repeat;
  color: var(--c-text);
}

.site-header.is-scrolled {
  height: var(--header-h-scrolled);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav {
  background: rgba(242, 242, 241, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(204, 211, 215, 0.75);
}

.site-header.is-scrolled .brand {
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-link {
  color: var(--c-text);
}

.site-header.is-scrolled .nav-link:hover {
  background: rgba(204, 211, 215, 0.45);
}
.site-header.is-scrolled .icon-link {
  background: rgba(242, 242, 241, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-color: rgba(204, 211, 215, 0.75);
  box-shadow: var(--shadow-soft);

  color: var(--c-text);
}




.hero {
  position: relative;
  overflow: clip;
  background: var(--c-bg);

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

  min-height: calc(71svh - var(--header-h) - 28px);
  padding-top: var(--header-h);
  padding-bottom: 28px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.0);
  filter: saturate(1.02) contrast(1.02);
}


.hero picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(780px 420px at 50% 28%, rgba(25, 176, 195, 0.09), transparent 70%),
    linear-gradient(to bottom, rgba(244, 244, 244, 0.10), rgba(244, 244, 244, 0.22));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: start center;
  text-align: center;
  padding-top: clamp(10px, 4vh, 54px);
}

.hero-content {
  width: min(860px, 100%);
  padding: 18px 18px;
}

.hero-signal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;

  font-size: 13px;
  letter-spacing: 0.1px;
  color: var(--c-muted);

  padding: 8px 12px;
  border: 1px solid rgba(204, 211, 215, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.signal-chip {
  font-weight: 700;
  color: var(--c-text);
}

.signal-slash {
  color: rgba(25, 176, 195, 0.75);
  font-weight: 900;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.h-accent {
  color: var(--c-accent);
  text-shadow: 0 10px 30px rgba(25, 176, 195, 0.22);
}

.hero-title{
  display: inline-block;
  padding: 10px 14px;
  color: var(--c-text-2); 
  background:
    linear-gradient(var(--c-accent), var(--c-accent)) 0 0/18px 2px no-repeat,
    linear-gradient(var(--c-accent), var(--c-accent)) 0 0/2px 18px no-repeat,
    linear-gradient(var(--c-accent), var(--c-accent)) 100% 0/18px 2px no-repeat,
    linear-gradient(var(--c-accent), var(--c-accent)) 100% 0/2px 18px no-repeat,
    linear-gradient(var(--c-accent), var(--c-accent)) 0 100%/18px 2px no-repeat,
    linear-gradient(var(--c-accent), var(--c-accent)) 0 100%/2px 18px no-repeat,
    linear-gradient(var(--c-accent), var(--c-accent)) 100% 100%/18px 2px no-repeat,
    linear-gradient(var(--c-accent), var(--c-accent)) 100% 100%/2px 18px no-repeat;
}


.hero-subtitle {
  margin: 0 auto 14px;
  width: min(740px, 100%);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--c-text);
}

.lead {
  margin: 0 auto 18px;
  width: min(760px, 100%);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-muted-2);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

.btn:active { transform: translateY(0px); }

.hero .btn { border-radius: 3px; }

.btn-primary {
  background: var(--c-accent);
  color: var(--c-bg-2);
  box-shadow: 0 18px 40px rgba(25, 176, 195, 0.22);
}

.btn-primary:hover {
  transform: translateY(1px);
  box-shadow: 0 22px 60px rgba(25, 176, 195, 0.26);
}

.btn-ghost {
  background: rgba(242, 242, 241, 0.72);
  border-color: rgba(204, 211, 215, 0.95);
  color: var(--c-text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  transform: translateY(1px);
  background: rgba(242, 242, 241, 0.82);
}

.hero-note {
  margin: 0;
  color: var(--c-muted);
  font-size: 13px;
}


@media (min-width: 1800px) {
  .hero {
    min-height: calc(68svh - var(--header-h) - 28px);
  }
}

@media (min-width: 1400px) {
  h1 { font-size: clamp(44px, 4.4vw, 74px); }

  .hero-subtitle { font-size: clamp(18px, 1.4vw, 22px); }
  .lead { font-size: 17px; }

  .hero-signal { font-size: 14px; }
  .hero-note { font-size: 14px; }
}

@media (min-width: 1021px) {
  .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(244, 244, 244, 0.90) 0%,
        rgba(244, 244, 244, 0.20) 36%,
        rgba(244, 244, 244, 0.32) 100%
      ),
      radial-gradient(780px 420px at 50% 28%, rgba(25, 176, 195, 0.09), transparent 70%);
  }
}


@media (max-width: 1020px) {
  .hero-bg { opacity: 0.75; }
}

@media (max-width: 900px) {
  .hero {
    min-height: 46svh;
  }
  .hero-bg {
    object-fit: cover;
    object-position: center;
    transform: none;
  }

}



@media (max-width: 860px) {
  .nav { display: none; }
  .menu-btn { display: inline-grid; place-items: center; }

  .brand { grid-area: brand; }
  .header-actions { grid-area: actions; }
  .nav { grid-area: nav; justify-self: start; width: 100%; justify-content: space-between; }

  body.nav-open .nav {
    display: flex;
    position: fixed;
    top: calc(var(--header-h-scrolled) + 10px);
    left: 20px;
    right: 20px;
    padding: 10px;
    gap: 6px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(242, 242, 241, 0.82);
    border: 1px solid rgba(204, 211, 215, 0.9);
    border-radius: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    z-index: 60;
  }

  body.nav-open .nav-link {
    background: rgba(204, 211, 215, 0.25);
    color: var(--c-text);
    border-radius: 0px;
  }
    .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-content: center;
    row-gap: 0px;
  }
}


.nav-links{
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-bottom{ display: none; }

@media (max-width: 860px) {
  :root { --tap: 50px; } 

  
  .header-actions .icon-link { display: none; }

  .menu-btn { width: var(--tap); height: var(--tap); }

  body.nav-open { overflow: hidden; }

  body.nav-open .nav{
    display: flex;
    position: fixed;
    left: 0; right: 0;
    top: var(--header-current, var(--header-h));
    bottom: 0;

    padding: 12px 14px calc(14px + env(safe-area-inset-bottom));
    gap: 12px;

    flex-direction: column;
    align-items: stretch;

    background: rgba(242, 242, 241, 0.92);
    border-top: 1px solid rgba(204, 211, 215, 0.90);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow);

    z-index: 60;

    overflow: hidden; 
  }

  
  body.nav-open .nav-links{
    flex: 1;                 
    min-height: 0;           
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  
  body.nav-open .nav-link{
    flex: 1;                 
    min-height: var(--tap);  
    padding: 0 18px;         

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

    font-size: 16.5px;   
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.02em;

    border-radius: 14px;
    color: var(--c-text-2);

    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  body.nav-open .nav-link:active{
    transform: translateY(1px);
    background: rgba(204, 211, 215, 0.32);
  }

  body.nav-open .nav-bottom{
    flex: 0;
    display: grid;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(204, 211, 215, 0.55);
  }

  body.nav-open .nav-cta{
    display: grid;
    gap: 10px;
  }

  body.nav-open .nav-cta .btn{
    width: 100%;
    min-height: var(--tap);
    border-radius: 7px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
  }

  body.nav-open .nav-social{
    display: flex;
    gap: 10px;
  }

  body.nav-open .nav-social .icon-link{
    width: var(--tap);
    height: var(--tap);
    border-radius: 14px;

    background: rgba(255,255,255,0.60);
    border: 1px solid rgba(204, 211, 215, 0.70);
    box-shadow: var(--shadow-soft);

    color: var(--c-text-2);
  }
}

body.nav-open .nav-links{
  align-items: stretch; 
}


body.nav-open .nav-link{
  width: 100%;
  justify-content: center; 
  text-align: center;
}

body.nav-open .nav-support{
  width: 100%;
  min-height: var(--tap);
  padding: 12px 14px;

  display: flex;
  align-items: center;
  gap: 12px;

  border-radius: 7px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(204, 211, 215, 0.72);
  box-shadow: var(--shadow-soft);

  color: var(--c-text-2);
  -webkit-tap-highlight-color: transparent;

  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

body.nav-open .nav-support:active{
  transform: translateY(1px);
  background: rgba(255,255,255,0.72);
  border-color: rgba(25,176,195,0.35);
}


body.nav-open .nav-support-ico{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;

  background: rgba(242, 242, 241, 0.75);
  border: 1px solid rgba(204, 211, 215, 0.55);
  flex: 0 0 44px;
}

body.nav-open .nav-support-ico .icon{
  width: 18px;
  height: 18px;
  fill: currentColor;
}


body.nav-open .nav-support-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

body.nav-open .nav-support-title{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted-2);
}

body.nav-open .nav-support-mail{
  font-weight: 850;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--c-text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


body.nav-open .nav-support-arrow{
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(47,66,87,0.55);
  border-bottom: 2px solid rgba(47,66,87,0.55);
  transform: rotate(-45deg);
  opacity: 0.9;
}








.hero picture { z-index: 0; }
.hero-overlay { z-index: 1; pointer-events: none; }
.hero-inner { z-index: 2; }


html.js .site-header,
html.js .site-header .brand,
html.js .site-header .nav,
html.js .site-header .header-actions {
  opacity: 0;
  transform: translate3d(0, -12px, 0);
}

html.js .hero-content .hero-signal,
html.js .hero-content .hero-title,
html.js .hero-content .hero-subtitle,
html.js .hero-content .lead,
html.js .hero-content .hero-cta,
html.js .hero-content .hero-note {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

html.js .hero-bg {
  opacity: 0.001;
  transform: scale(1.08) translate3d(0, 1.2%, 0);
  will-change: transform, opacity;
}

html.js .hero-overlay { opacity: 0; }


html.js.is-loaded .site-header {
  opacity: 1;
  transform: none;
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(.2,.9,.2,1);
}


html.js.is-loaded .site-header .brand {
  opacity: 1;
  transform: none;
  transition: opacity 720ms ease 120ms, transform 720ms cubic-bezier(.2,.9,.2,1) 120ms;
}
html.js.is-loaded .site-header .nav {
  opacity: 1;
  transform: none;
  transition: opacity 720ms ease 210ms, transform 720ms cubic-bezier(.2,.9,.2,1) 210ms;
}
html.js.is-loaded .site-header .header-actions {
  opacity: 1;
  transform: none;
  transition: opacity 720ms ease 300ms, transform 720ms cubic-bezier(.2,.9,.2,1) 300ms;
}


html.js.is-loaded .hero-content .hero-signal,
html.js.is-loaded .hero-content .hero-title,
html.js.is-loaded .hero-content .hero-subtitle,
html.js.is-loaded .hero-content .lead,
html.js.is-loaded .hero-content .hero-cta,
html.js.is-loaded .hero-content .hero-note {
  opacity: 1;
  transform: none;
  transition:
    opacity 980ms ease,
    transform 980ms cubic-bezier(.2,.9,.2,1);
}

html.js.is-loaded .hero-content .hero-signal   { transition-delay: 180ms; }
html.js.is-loaded .hero-content .hero-title    { transition-delay: 290ms; }
html.js.is-loaded .hero-content .hero-subtitle { transition-delay: 400ms; }
html.js.is-loaded .hero-content .lead          { transition-delay: 510ms; }
html.js.is-loaded .hero-content .hero-cta      { transition-delay: 620ms; }
html.js.is-loaded .hero-content .hero-note     { transition-delay: 730ms; }


html.js.is-loaded .hero-overlay {
  opacity: 1;
  transition: opacity 1100ms ease 220ms;
}


@media (prefers-reduced-motion: no-preference) {
  html.js.is-loaded .hero-bg {
    opacity: 1;
    animation: heroBgIn 1500ms cubic-bezier(.2,.9,.2,1) both;
  }

  @keyframes heroBgIn {
    from { opacity: 0.001; transform: scale(1.12) translate3d(0, 2.2%, 0); }
    to   { opacity: 1;     transform: scale(1.03) translate3d(0, 0, 0); }
  }
}



.hero-overlay::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(520px 360px at 30% 25%, rgba(25,176,195,0.22), transparent 62%),
    radial-gradient(620px 420px at 78% 58%, rgba(255,255,255,0.16), transparent 64%);
  opacity: 0;
  transform: translate3d(-3%, -2%, 0) scale(1.02);
  mix-blend-mode: soft-light;
  will-change: transform, opacity;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: -25%;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.028) 0px,
      rgba(255,255,255,0.028) 1px,
      transparent 1px,
      transparent 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.018) 0px,
      rgba(0,0,0,0.018) 1px,
      transparent 1px,
      transparent 6px
    );
  opacity: 0;
  mix-blend-mode: overlay;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: no-preference) {
  
  html.js.is-loaded .hero-overlay::before {
    opacity: 0.75;
    animation: heroLightIn 2200ms ease-out 260ms both;
  }

  @keyframes heroLightIn {
    0%   { opacity: 0;    transform: translate3d(-4%, -3%, 0) scale(1.02); }
    55%  { opacity: 0.85; transform: translate3d( 2%,  2%, 0) scale(1.08); }
    100% { opacity: 0.75; transform: translate3d( 0%,  0%, 0) scale(1.08); }
  }

  
  html.js.is-loaded .hero-overlay::after {
    opacity: 0.20;
    animation: grainIntro 1200ms ease 360ms both;
  }

  @keyframes grainIntro {
    0%   { opacity: 0;    transform: translate3d(0, 0, 0); }
    40%  { opacity: 0.20; transform: translate3d(-1.2%, 0.9%, 0); }
    70%  { opacity: 0.20; transform: translate3d( 1.0%, -0.8%, 0); }
    100% { opacity: 0.20; transform: translate3d(0, 0, 0); }
  }
}


@media (prefers-reduced-motion: reduce) {
  html.js .site-header,
  html.js .site-header .brand,
  html.js .site-header .nav,
  html.js .site-header .header-actions,
  html.js .hero-content .hero-signal,
  html.js .hero-content .hero-title,
  html.js .hero-content .hero-subtitle,
  html.js .hero-content .lead,
  html.js .hero-content .hero-cta,
  html.js .hero-content .hero-note,
  html.js .hero-bg,
  html.js .hero-overlay,
  html.js .hero-overlay::before,
  html.js .hero-overlay::after {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}



.metrics-marquee{
  padding: 0 0 72px;
  color: rgba(255,255,255,.86);
  background:
    radial-gradient(1100px 520px at 18% 12%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(90deg, #2f323a 0%, #141826 45%, #05070d 100%);
  overflow: hidden;
}

.mq{
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.mq-dot{
  font-size: 20px;       
  line-height: 0.8;
  transform: translateY(-1px); 
  display: inline-block;
}

.mq-track{
  display:flex;
  gap: 18px;
  padding: 12px 0;
  white-space: nowrap;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  will-change: transform;
  animation: mq 26s linear infinite;
}

.mq-track span:nth-child(2n){
  color: rgba(25,176,195,.65);
}

@keyframes mq{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .mq-track{ animation: none; justify-content: center; flex-wrap: wrap; white-space: normal; }
}

.mm{
  margin-top: 44px;
  display:grid;
  gap: 0;
  border-radius: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  overflow: hidden;
}

@media (min-width: 880px){
  .mm{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .mm-item + .mm-item{ border-left: 1px solid rgba(255,255,255,.10); }
}
@media (max-width: 879px){
  .mm-item + .mm-item{ border-top: 1px solid rgba(255,255,255,.10); }
}

.mm-item{
  padding: 22px 20px 20px;
  text-align:center;
}

.mm-num{
  display:inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1;
  color: transparent;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.64));
  -webkit-background-clip: text; background-clip: text;
  text-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.mm-num span{
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.mm-num.outline{
  background:none;
  -webkit-text-stroke: 1.5px rgba(25,176,195,.75);
}

.mm-t{
  margin-top: 10px;
  font-weight: 850;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}

.mm-s{
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
}





.section-feature{
  background: #e3e4e5;

  
  padding-top: 70px;
  padding-bottom: 25px;

  border-top: 1px solid rgba(204, 211, 215, 0.85);
  scroll-margin-top: calc(var(--header-h-scrolled) + 18px);

  --ov-ink: var(--c-text-2);
  --ov-muted: color-mix(in srgb, var(--c-muted-2) 92%, #000);
  --ov-line: color-mix(in srgb, var(--c-text-2) 22%, transparent);
  --ov-wash: color-mix(in srgb, var(--c-text-2) 17%, transparent);
  --ov-accent: color-mix(in srgb, var(--c-accent) 70%, transparent);
}

.feature-inner{
  display: flex;
  flex-direction: column;
}

.feature-split{
  display: grid;
  gap: 44px;
  align-items: center; 
}


@media (min-width: 980px){
  .feature-split{
    grid-template-columns: 1.75fr 1fr; 
  }
}



.feature-shot{
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 3px;

  
  padding: 0;
  background: transparent;
  border: 0;
  
  box-shadow:
    0 2px 40px rgba(15, 23, 42, 0.14),
    0 2px 18px rgba(15, 23, 42, 0.04);
}

.feature-shot{
  aspect-ratio: 16 / 9;
}

.feature-shot img{
  object-fit: contain; 
  object-position: 50% 50%;
  border-radius: 8px;
}

.feature-shot{ overflow: visible; }  
.feature-shot{ aspect-ratio: auto; } 
.feature-shot img{ width: 100%; height: auto; display:block; }



.feature-shot::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events:none;
  z-index: 2;

  background:
    radial-gradient(1200px 560px at 50% 18%, rgba(2,6,23,0.00), rgba(2,6,23,0.24)),
    linear-gradient(to bottom, rgba(2,6,23,0.10), rgba(2,6,23,0.20));
  opacity: 0.75;
}


.feature-shot::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events:none;
  z-index: 3;

  box-shadow:
    0 1px 0 rgba(255,255,255,0.45) inset,
    0 0 0 1px rgba(15,23,42,0.05) inset;
  opacity: 0.85;
}



.feature-copy{
  max-width: 520px;
}

.feature-title{
  margin: 0;
  font-weight: 800;
  font-size: clamp(35px, 5.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.04em;

  background: linear-gradient(270deg, rgba(47,66,87,.98), rgba(47,66,87,.68));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  display: inline-block;
  position: relative;
  padding: 0 0 15px;
  z-index: 0;          
  isolation: isolate;  
}

.feature-title::after{
  content:"";
  position:absolute;
  right: 0;
  left: auto;
  bottom: 8px;
  right: 10px;
  width: 92%;
  height: 0.82em;
  border-radius: 0px;
  background: linear-gradient(270deg, var(--ov-wash), transparent 75%);
  z-index: -1;
}




.feature-lede{ color: var(--ov-muted); }

.feature-lede{
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-muted-2);
}

.feature-points{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.feature-points li{
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text);
}

.feature-points li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--c-accent);
  box-shadow: 0 0 0 5px rgba(25,176,195,0.14);
}

.feature-points strong{
  color: var(--c-text-2);
  font-weight: 800;
}

.feature-links{
  margin-top: 14px;

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

  
  justify-content: flex-end;
  width: 100%;

  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted-2);
}


.feature-link{
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.feature-link:hover{
  color: var(--c-text-2);
  border-color: rgba(25,176,195,0.35);
  transform: translateY(1px);
}

.feature-link:focus-visible{
  outline: 2px solid rgba(25,176,195,0.45);
  outline-offset: 4px;
}

.feature-sep{ opacity: 0.7; }

.inline-link {
  border-bottom: 1px solid rgba(94, 180, 200, 0.25);
  text-decoration: none;
  padding-bottom: 1px;
  transition: color 150ms ease, border-color 150ms ease;
}

.inline-link:hover {
  border-color: rgba(94, 180, 200, 0.5);
}

.inline-link:focus-visible {
  outline: 2px solid rgba(94, 180, 200, 0.6);
  outline-offset: 3px;
}


@media (max-width: 979px){
  .section-feature{
    padding-top: 52px;
    padding-bottom: 62px;
  }

  .feature-split{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-copy{
    max-width: 680px;
  }

  .feature-shot{
    border-radius: 9px;
  }

  .feature-shot img{
    object-position: 50% 40%;
  }
}



.section-feature { --reveal-ease: cubic-bezier(.2,.9,.2,1); }


html.js .section-feature .feature-shot,
html.js .section-feature .feature-copy,
html.js .section-feature .feature-points li,
html.js .section-feature .feature-links {
  opacity: 0;
  will-change: transform, opacity;
}


html.js .section-feature .feature-shot {
  transform: translate3d(-18px, 14px, 0) scale(1.02);
}

html.js .section-feature .feature-copy {
  transform: translate3d(16px, 12px, 0);
}

html.js .section-feature .feature-points li {
  transform: translate3d(0, 10px, 0);
}

html.js .section-feature .feature-links {
  transform: translate3d(0, 8px, 0);
}


html.js .section-feature.is-inview .feature-shot,
html.js .section-feature.is-inview .feature-copy,
html.js .section-feature.is-inview .feature-points li,
html.js .section-feature.is-inview .feature-links {
  opacity: 1;
  transform: none;
  transition:
    opacity 980ms ease,
    transform 980ms var(--reveal-ease);
}


html.js .section-feature.is-inview .feature-shot { transition-delay: 120ms; }
html.js .section-feature.is-inview .feature-copy { transition-delay: 240ms; }

html.js .section-feature.is-inview .feature-points li:nth-child(1) { transition-delay: 420ms; }
html.js .section-feature.is-inview .feature-points li:nth-child(2) { transition-delay: 500ms; }
html.js .section-feature.is-inview .feature-points li:nth-child(3) { transition-delay: 580ms; }

html.js .section-feature.is-inview .feature-links { transition-delay: 660ms; }


@media (max-width: 979px) {
  html.js .section-feature .feature-copy { transform: translate3d(0, 14px, 0); }
  html.js .section-feature .feature-shot { transform: translate3d(0, 18px, 0) scale(1.02); }
}


@media (prefers-reduced-motion: reduce) {
  html.js .section-feature .feature-shot,
  html.js .section-feature .feature-copy,
  html.js .section-feature .feature-points li,
  html.js .section-feature .feature-links {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}








.section {
  position: relative;
  padding: 86px 0 92px;
}



.section-overview {
  --accent: #19b0c3;
  --accent-alt: #7c5cff;

  background: #e3e4e5;
  position: relative;
  padding-top: 76px;
  padding-bottom: 92px;
  overflow: hidden;
}

.section-overview{
  --ov-ink: var(--c-text-2);
  --ov-muted: color-mix(in srgb, var(--c-muted-2) 92%, #000);
  --ov-line: color-mix(in srgb, var(--c-text-2) 22%, transparent);
  --ov-wash: color-mix(in srgb, var(--c-text-2) 17%, transparent);
  --ov-accent: color-mix(in srgb, var(--c-accent) 70%, transparent); 
}


.section-overview::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: url("public/overview.webp") 50% 71% / cover no-repeat;

  opacity: 0.59;
  transform: scale(0.95) translateY(14px);
  transform-origin: center;
  pointer-events: none;
  z-index: 0;
}


.section-overview::after {
  content: "";
  position: absolute;
  inset: 0;

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

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


.overview-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}



.overview-header {
  max-width: 820px;
  text-align: left;
  max-width: 860px;
  margin: 0 0 18px;
}


.section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 5px 14px;

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;

  color: color-mix(in srgb, var(--c-text) 70%, #000);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  margin: 0 0 12px;
}


.section-kicker::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 92vw);
  height: 34px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      color-mix(in srgb, var(--accent) 36%, transparent),
      color-mix(in srgb, var(--accent-alt) 26%, transparent),
      transparent 92%);
  filter: blur(0.2px);
  z-index: -2;
  opacity: 1;
}


.section-kicker::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 18%, transparent);
  opacity: 0.95;
}

.section-overview .overview-header h2{
  margin: 0;
  font-family: var(--font-display);
   font-size: clamp(35px, 5.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.04em;

  
  background: linear-gradient(90deg, rgba(47,66,87,.98), rgba(47,66,87,.68));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

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


.section-overview .overview-header h2::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: 4px;
  width: 72%;
  height: 0.82em;
  border-radius: 0px;
  background: linear-gradient(90deg, var(--ov-wash), transparent 75%);
  z-index: -1;
}


.section-overview .overview-bridge{
  margin: 10px 0 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ov-muted);
}


.overview-bridge {
  margin: 32px auto 0;
  font-size: 15px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--c-muted-2) 92%, #000);
  max-width: 680px;
}



.overview-grid {
  display: grid;
  gap: 28px;
  margin-top: 20px;
}


.overview-card {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: 5px;

  

  border: 1px solid rgba(255, 255, 255, 0.65);
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.34),
      rgba(248, 248, 248, 0.36));

  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;

  overflow: hidden;

  
  --card-offset-y: 0px;
  transform: translateY(var(--card-offset-y));

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}


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


  opacity: 0.5;
}


.overview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;

  border: 3px solid color-mix(in srgb, var(--accent) 16%, transparent);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.42) inset;
  opacity: 0.85;
}


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




.overview-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 7px 11px;
  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: color-mix(in srgb, var(--c-text) 70%, #000);
  background:
    linear-gradient(90deg,
      color-mix(in srgb, var(--accent) 14%, rgba(255, 255, 255, 0.82)),
      color-mix(in srgb, var(--accent-alt) 10%, rgba(255, 255, 255, 0.76)));
  border: 1px solid color-mix(in srgb, var(--accent) 18%, rgba(255, 255, 255, 0.7));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  margin-bottom: 10px;
}


.overview-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
  opacity: 0.95;
}


.overview-title {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}


.overview-text {
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--c-muted-2) 92%, #000);
}



.overview-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 10px;

  font-size: 14px;
  color: var(--c-text);
}


.overview-bullet {
  position: relative;
  padding-left: 24px; 
}


.overview-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 999px;

  background: #ffffff;
  border: 2px solid color-mix(in srgb, var(--c-accent) 78%, #000);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent),
    0 6px 14px rgba(0, 0, 0, 0.12);
}


.overview-bullet::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 17px;
  bottom: -8px;
  border-left: 1px dashed color-mix(in srgb, var(--accent) 40%, transparent);
  opacity: 0.7;
}

.overview-bullet:last-child::after {
  display: none;
}


.overview-footnote {
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-muted);
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  border-top: 1px dashed rgba(204, 211, 215, 0.8);
  padding-top: 10px;
}



@media (min-width: 900px) {
  .section-overview {
    padding-top: 22px;
    padding-bottom: 98px;
  }

  
  .overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .overview-card {
    padding: 20px 20px 22px;
  }

  
  .overview-card:nth-child(3) {
    --card-offset-y: -18px;
  }

  .overview-card:nth-child(2) {
    --card-offset-y: 12px;
  }
    .overview-card:nth-child(1) {
    --card-offset-y: 40px;  
}
}

@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .overview-card {
    --card-offset-y: 0px;
  }
}

@media (max-width: 600px) {
  .section-overview {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .overview-inner {
    width: min(1120px, calc(100% - 22px));
  }

  .overview-card {
    border-radius: 16px;
    padding: 16px 16px 18px;
  }

  .section-kicker::before {
    width: min(460px, 92vw);
  }
}




.section-download {
  position: relative;
  padding-top: 94px;
  padding-bottom: 102px;

  color: #fff;
  border-top: 1px solid rgba(204, 211, 215, 0.16);

  background-color: #020617; 
  overflow: hidden;
}


.section-download::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/public/downloads.webp") center / cover no-repeat;
  opacity: 0.49;
  pointer-events: none;
  z-index: 0;
}


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

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

.download-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.download-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}


.section-download .section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 6px 12px;
  border-radius: 999px;

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;

  color: rgba(255, 255, 255, 0.86);
  background: rgba(242, 242, 241, 0.08);
  border: 1px solid rgba(242, 242, 241, 0.16);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);

  margin: 0 0 10px;
}

.section-download .section-kicker::before,
.section-download .section-kicker::after {
  display: none;
}

.section-download .section-kicker::marker { content: ""; }

.section-download .section-kicker {
  position: relative;
}

.section-download .section-kicker::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--c-accent);
  box-shadow: 0 0 0 5px rgba(25, 176, 195, 0.18);
  opacity: 0.95;
}

.download-header h2 {
  margin: 0;
    font-size: clamp(35px, 5.6vw, 44px);
  letter-spacing: -0.03em;
}

.section-download .dl-stroke{
  color: rgba(255,255,255,.92);
}

@supports (-webkit-text-stroke: 1px black) {
  .section-download .dl-stroke{
    color: transparent;
    -webkit-text-stroke: 2px rgba(88, 166, 183, .85);
    letter-spacing: -0.01em;
    text-shadow: 0 16px 40px rgba(88, 166, 183, .12);
  }
}





.download-sub {
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}


.download-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;

  position: relative;
  padding-top: 18px; 
}


.download-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;

  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(25, 176, 195, 0.42), transparent);
  opacity: 0.7;
  pointer-events: none;
}

@media (min-width: 720px) {
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .download-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


.download-card {
  position: relative;
  padding: 25px 25px 25px;
  border-radius: 5px;

  background: rgba(242, 242, 241, 0.06);
  border: 1px solid rgba(242, 242, 241, 0.14);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.40),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;

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

  display: flex;
  flex-direction: column;
  justify-content: center; 
  gap: 14px;

  cursor: pointer;
  user-select: none;

  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;

  transition: border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
}


.download-card::before { display: none; }


@media (prefers-reduced-motion: no-preference) {
  .download-card:hover {
    border-color: rgba(242, 242, 241, 0.22);
    background: rgba(242, 242, 241, 0.075);
  }
}


.download-card.is-active {
  border-color: rgba(25, 176, 195, 0.55);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.58),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

@media (min-width: 960px) {
  .download-card.is-active {
    transform: translateY(-8px);
  }
}


.download-card:focus-visible {
  outline: 2px solid rgba(25, 176, 195, 0.55);
  outline-offset: 4px;
}


.download-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}


.download-os-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(242, 242, 241, 0.92);
  border: 1px solid rgba(242, 242, 241, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
}

.download-os-icon svg {
  width: 30px;
  height: 30px;
  fill: rgba(2, 6, 23, 0.98);
}

.download-os-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.download-os-name {
  margin: 0;
  font-weight: 900;
  font-size: 22px; 
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.2;
}

.download-os-tag {
  margin: 0;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.3;
}


.download-footnote {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  border-top: 1px dashed rgba(242, 242, 241, 0.14);
  padding-top: 10px;
}

@media (max-width: 600px) {
  .section-download {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .download-card {
    min-height: 148px;
    padding: 20px 18px 18px;
  }

  .download-os-icon {
    width: 50px;
    height: 50px;
  }

  .download-os-name {
    font-size: 18px;
  }
}

.download-os-icon img {
  width: 25px;
  height: 25px;
  display: block;
  object-fit: contain;
}









.section-faq {
  border-top: 1px solid var(--c-border-3);
  background: var(--c-bg);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.faq-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #2f4257;
}

.faq-help {
  margin: 0 0 10px;
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq-email {
  display: inline-block;
  color: var(--c-accent);
  font-weight: 700;
  text-decoration: none;
}

.faq-email:hover {
  text-decoration: underline;
}

.faq-list {
  border-top: 1px solid rgba(204, 211, 215, 0.95);
}

.faq-item {
  border-bottom: 1px solid rgba(204, 211, 215, 0.95);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 20px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;

  font-size: 20px;
  line-height: 1.3;
  color: #2f4257;
}

.faq-q:focus-visible {
  outline: 2px solid rgba(25, 176, 195, 0.45);
  outline-offset: 4px;
}

.faq-left {
  align-self: center;      
  transform: translateY(14px);
}

.faq-title {
  font-size: clamp(30px, 3.8vw, 52px); 
}

@media (max-width: 900px) {
  .faq-left {
    align-self: start;
    transform: none;
  }
}


.faq-plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: 0.95;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--c-accent);
  transform: translate(-50%, -50%);
  border-radius: 99px;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease, opacity 220ms ease;
}


.faq-q[aria-expanded="true"] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
  opacity: 0;
}

.faq-a {
  padding: 0 2px 18px;
}

.faq-a p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-muted-2);
  max-width: 72ch;
}


.faq-more {
  margin-top: 18px;
  padding: 10px 0;
  border: 0;
  background: transparent;

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

  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--c-muted-2);
  cursor: pointer;

  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.faq-more::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  opacity: 0.9;
  transition: transform 180ms ease, margin-top 180ms ease;
}

.faq-more:hover {
  color: var(--c-text-2);
  border-color: rgba(25, 176, 195, 0.35);
  transform: translateY(1px);
}

.faq-more[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.faq-more:focus-visible {
  outline: 2px solid rgba(25, 176, 195, 0.45);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-q {
    font-size: 18px;
    padding: 18px 2px;
  }
}





.section-community{
  position: relative;
  overflow: hidden;

  background: var(--c-bg);
  padding-top: 112px;
  padding-bottom: 114px;
}


.section-community::before{
  content:"";
  position:absolute;
  inset: 0;
  background: url("/public/background-community.webp") center / cover no-repeat;
  opacity: 0.92;
  pointer-events:none;
  z-index:0;
}


.section-community::after{
  content:"";
  position:absolute;
  inset: 0;

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

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

.community-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.community-header{
  max-width: 820px;
  margin-inline: auto;
}

.section-community h2{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(35px, 5.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--c-text-2);
}

.community-sub{
  margin: 25px auto 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-muted-2);
}

.community-links{
  width: min(920px, 100%);
  margin-top: 22px;

  display: grid;
  gap: 0px;
}

@media (min-width: 760px){
  .community-links{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.community-card{
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  
  padding: 18px 18px;
  border-radius: 0px;

  background: rgba(242, 242, 241, 0.72);
  border: 1px solid rgba(204, 211, 215, 0.80);
  box-shadow: var(--shadow-soft);

  text-decoration: none;
  color: inherit;

  
  transition: background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  -webkit-tap-highlight-color: transparent;
}

.community-card:hover{
  background: rgba(242, 242, 241, 0.82);
  border-color: rgba(25, 176, 195, 0.35);
}

.community-card:focus-visible{
  outline: 2px solid rgba(25, 176, 195, 0.45);
  outline-offset: 4px;
}

.community-ico{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(204, 211, 215, 0.85);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);

  flex: 0 0 44px;
}

.community-ico svg{
  width: 25px;
  height: 25px;
  fill: var(--c-text-2);
}

.community-meta{
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.community-title{
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--c-text-2);
  font-size: 16.5px;
  line-height: 1.1;
}

.community-desc{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted-2);
  line-height: 1.35;
}

.community-note{
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--c-muted);
  max-width: 62ch;
}








.site-footer{
  position: relative;
  overflow: hidden;

  
  background: rgb(16, 17, 22);
  color: rgba(255, 255, 255, 0.86);

  padding: 92px 0 44px;
  border-top: 1px solid rgba(204, 211, 215, 0.12);
}

.site-footer::before{
  content:"";
  position:absolute;
  inset: 0;

  background:
    radial-gradient(1200px 420px at 50% 0%, rgba(25,176,195,0.05), transparent 60%),
    radial-gradient(900px 520px at 50% 120%, rgba(255,255,255,0.05), transparent 55%);
  pointer-events:none;
  z-index:0;
}

.site-footer::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25, 176, 195, 0.42), transparent);
  opacity: 0.85;
  pointer-events:none;
  z-index:0;
}

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

.footer-inner{
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.footer-top{
  display: grid;
  gap: 30px;
  align-items: start;
}

@media (min-width: 880px){
  .footer-top{
    grid-template-columns: 1.35fr 0.75fr 0.75fr;
    gap: 48px;
  }
}

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

  padding: 10px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,242,241,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.40);

  transition: background 160ms ease, border-color 160ms ease;
}

.footer-logo:hover{
  background: rgba(255,255,255,0.055);
  border-color: rgba(25,176,195,0.28);
}

.footer-brand-text{ line-height: 1.05; }
.footer-brand-name{ font-weight: 900; letter-spacing: 0.2px; }
.footer-brand-sub{
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}

.footer-about{
  margin: 14px 0 12px;
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.70);
}

.footer-mail{
  display: inline-flex;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.84);
  border-bottom: 1px solid rgba(25,176,195,0.35);
  padding-bottom: 2px;
}

.footer-mail:hover{
  border-bottom-color: rgba(25,176,195,0.62);
}

.footer-col{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-title{
  margin: 6px 0 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

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

  padding: 8px 10px;
  border-radius: 10px;

  color: rgba(255,255,255,0.78);

  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.footer-link:hover{
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.045);
  border-color: rgba(25,176,195,0.26);
}

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;

  padding-top: 18px;
  border-top: 1px solid rgba(242,242,241,0.10);
}

.footer-copy{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.56);
}

.footer-social{
  display: inline-flex;
  gap: 10px;
}

.footer-ico{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,242,241,0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);

  transition: background 120ms ease, border-color 120ms ease;
  -webkit-tap-highlight-color: transparent;
}

.footer-ico:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(25,176,195,0.28);
}

.footer-ico svg{
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.78);
}

.footer-ico:hover svg{
  fill: rgba(255,255,255,0.92);
}


.footer-brand .footer-social{
  margin-top: 14px;
}

.footer-legal{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-link{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.footer-legal-link:hover{
  color: rgba(255,255,255,0.92);
  border-color: rgba(25,176,195,0.28);
  transform: translateY(1px);
}

.footer-brand .footer-social{
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-brand .footer-ico{
  width: 42px;
  height: 42px;
}
