@charset "UTF-8";

:root{
  --bg: #f5f7fb;
  --panel: #ffffff;
  --ink: #142033;
  --muted: #64728a;
  --line: #dfe6f0;
  --navy: #071a2f;
  --blue: #1f6ea8;
  --cyan: #1f6ea8;
  --green: #1f6ea8;
  --amber: #1f6ea8;
  --orange: #1f6ea8;
  --red: #1f6ea8;
  --shadow: 0 16px 40px rgba(11, 31, 56, 0.12);
  --radius: 8px;
  --title-hero: 64px;
  --title-h1: 50px;
  --title-h2: 32px;
  --title-h3: 21px;
  --hero-bg:
    linear-gradient(115deg, rgba(7, 26, 47, 0.98), rgba(9, 45, 61, 0.92) 52%, rgba(45, 57, 84, 0.96)),
    #071a2f;
  --hero-pattern:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(126deg, transparent 0 54%, rgba(31, 110, 168, 0.14) 54% 56%, transparent 56%),
    linear-gradient(34deg, transparent 0 66%, rgba(31, 110, 168, 0.08) 66% 68%, transparent 68%);
  --surface-bg: linear-gradient(180deg, #f7fafc 0%, #eef4fb 46%, #f8fafc 100%);
}

*{
  box-sizing: border-box;
}

[hidden]{
  display: none !important;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-overlap, 76px) + 22px);
}

body{
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% -10%, rgba(31, 110, 168, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(7, 26, 47, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 26, 47, 0.03) 1px, transparent 1px),
    var(--surface-bg);
  background-size: auto, 72px 72px, 72px 72px, auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
}

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

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

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

.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  color: #eef6ff;
  background: rgba(7, 26, 47, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.home-page .site-header,
.inner-page .site-header{
  position: absolute;
  right: 0;
  left: 0;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.home-page .hero{
  padding-top: 72px;
}

.inner-page .page-hero{
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  color: #f8fbff;
  background: var(--hero-bg);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.inner-page .page-hero::before{
  position: absolute;
  inset: 0;
  background: var(--hero-pattern);
  background-size: 72px 72px, 72px 72px, auto, auto;
  content: "";
  opacity: 0.54;
  pointer-events: none;
}

.inner-page .page-hero::after{
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(7, 26, 47, 0), rgba(7, 26, 47, 0.68));
  content: "";
  pointer-events: none;
}

.inner-page .page-hero .container{
  position: relative;
  z-index: 1;
}

.inner-page .page-hero h1{
  color: #ffffff;
}

.inner-page .page-hero p{
  color: #53687c;
}

.inner-page .breadcrumb{
  color: #53687c;
}

.inner-page .breadcrumb a{
  color: #1f6ea8;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark{
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.brand-mark img{
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand small{
  display: block;
  margin-top: -4px;
  color: #96adc6;
  font-size: 12px !important;
  font-weight: 500;
}

.nav{
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a{
  padding: 10px 13px;
  color: #c8d5e6;
  border-radius: 6px;
  font-size: 15px;
}

.nav a:hover,
.nav a[aria-current="page"]{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle{
  display: none;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after{
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle span::before{
  transform: translateY(-6px);
}

.nav-toggle span::after{
  transform: translateY(4px);
}

.hero{
  position: relative;
  overflow: hidden;
  color: #f8fbff;
  background: var(--hero-bg);
}

.hero::before{
  position: absolute;
  inset: 0;
  background: var(--hero-pattern);
  background-size: 72px 72px, 72px 72px, auto, auto;
  content: "";
  opacity: 0.54;
  pointer-events: none;
}

.hero::after{
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(7, 26, 47, 0), rgba(7, 26, 47, 0.84));
  content: "";
  pointer-events: none;
}

.hero-inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 22px;
  min-height: auto;
  padding: 54px 0 76px;
}

.hero-copy{
  max-width: 690px;
  min-width: 0;
}

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

h1{
  margin-bottom: 18px;
  font-size: var(--title-h1);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1{
  max-width: 720px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: var(--title-hero);
  line-height: 1.04;
  white-space: nowrap;
}

.hero h1 span{
  display: inline;
}

h2{
  margin-bottom: 14px;
  font-size: var(--title-h2);
  line-height: 1.22;
  letter-spacing: 0;
}

h3{
  margin-bottom: 10px;
  font-size: var(--title-h3);
  line-height: 1.3;
  letter-spacing: 0;
}

.hero p{
  max-width: 700px;
  color: #53687c;
  font-size: 19px;
}

.hero-actions,
.section-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions.center,
.section-actions.center{
  justify-content: center;
}

.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #0b1b31;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-shadow: none;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.button.primary{
  color: #071a2f;
  background: #1f6ea8;
  box-shadow: 0 18px 34px rgba(31, 110, 168, 0.28);
}

.button.secondary{
  color: #071a2f;
  background: #ffffff;
  border-color: #9fb0c4;
  box-shadow: 0 10px 24px rgba(11, 31, 56, 0.08);
}

.button.dark{
  color: #ffffff;
  background: var(--navy);
  border-color: var(--navy);
}

.hero .button.secondary{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
}

.button.ghost{
  color: #ffffff;
  background: rgba(31, 110, 168, 0.12);
  border-color: rgba(31, 110, 168, 0.42);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.inner-page .page-hero .button.secondary{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.button.primary:hover,
.button.dark:hover,
.button.secondary:hover,
.button.outline:hover{
  transform: translateY(-1px);
}

.button.primary:hover{
  background: #1f6ea8;
}

.button.dark:hover{
  color: #ffffff;
  background: #0d2745;
  border-color: #0d2745;
}

.button.secondary:hover{
  color: #071a2f;
  background: #eef7fb;
  border-color: #7f95ad;
}

.hero .button.secondary:hover,
.hero .button.ghost:hover,
.inner-page .page-hero .button.secondary:hover,
.section.dark .button.secondary:hover,
.client-detail-hero .button.secondary:hover{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.86);
}

.hero-metrics{
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics span{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 13px;
  color: #d8e4ee;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-metrics strong{
  color: #ffffff;
  font-size: 18px;
}

.hero-visual{
  justify-self: stretch;
  width: 100%;
  max-width: none;
  min-width: 0;
}

.platform-dock{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: -78px;
  padding-bottom: 34px;
}

.platform-dock a{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 92px;
  padding: 14px 18px;
  color: #f8fbff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: none;
}

.platform-dock a:hover{
  border-color: rgba(31, 110, 168, 0.58);
  transform: translateY(-2px);
}

.platform-dock a:hover .platform-dock-icon{
  transform: translateY(-2px) scale(1.04);
}

.platform-dock-icon{
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: rgba(247, 252, 255, 0.94);
  font-size: 42px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 18px rgba(1, 9, 22, 0.26));
  transition: color 180ms ease, transform 180ms ease;
}

.platform-dock-copy{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  min-width: 0;
}

.platform-dock-copy span{
  font-size: 18px;
  font-weight: 900;
}

.platform-dock-copy strong{
  color: #1f6ea8;
  font-size: 13px;
}

@media (min-width: 1280px){
  .home-page .hero{
    height: 800px;
  }

  .hero-inner{
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 40px;
    min-height: 0;
    padding: 76px 0 34px;
  }

  .hero-metrics{
    display: flex;
  }

  .hero-visual{
    justify-self: end;
    max-width: 420px;
  }

  .platform-dock{
    margin-top: 0;
    padding-bottom: 24px;
  }
}

.button.outline{
  color: #071a2f;
  background: #ffffff;
  border-color: #b9c9dc;
  box-shadow: 0 8px 20px rgba(11, 31, 56, 0.06);
}

.section.dark .button.secondary{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.section{
  padding: 76px 0;
}

.section.white{
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 26, 47, 0.016) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.section.dark{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #eef6ff;
  background: var(--hero-bg);
}

.section.dark::before,
.site-footer::before{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-pattern);
  background-size: 72px 72px, 72px 72px, auto, auto;
  content: "";
  opacity: 0.46;
  pointer-events: none;
}

.section.dark::after,
.site-footer::after{
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(7, 26, 47, 0), rgba(7, 26, 47, 0.62));
  content: "";
  pointer-events: none;
}

.section.dark > .container,
.site-footer > .container{
  position: relative;
  z-index: 1;
}

.section-title{
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title p{
  color: var(--muted);
  font-size: 17px;
}

.dark .section-title p,
.dark p{
  color: #c8d5e6;
}

.grid{
  display: grid;
  gap: 22px;
}

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

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

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

.feature-card,
.platform-card,
.software-card,
.plan-card,
.step-card,
.faq-card,
.notice-card{
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
}

.feature-card{
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.06);
}

.feature-card::after{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(31, 110, 168, 0.28), #1f6ea8, rgba(31, 110, 168, 0.28));
  content: "";
}

.feature-icon,
.platform-icon{
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f6ea8, #1f6ea8);
  border-radius: var(--radius);
  font-weight: 900;
}

.feature-icon .bi{
  font-size: 22px;
  line-height: 1;
}

.platform-icon{
  width: 58px;
  height: 58px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.platform-icon img{
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.feature-card p,
.platform-card p,
.software-card p,
.plan-card p,
.step-card p,
.notice-card p{
  color: var(--muted);
}

.platform-card{
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 286px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(20, 32, 51, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.platform-card::before{
  position: absolute;
  inset: 0 0 auto;
  height: 76px;
  background:
    linear-gradient(90deg, rgba(31, 110, 168, 0.12), rgba(31, 110, 168, 0.07), rgba(31, 110, 168, 0.1));
  content: "";
}

.platform-card > *{
  position: relative;
}

.platform-card:hover,
.software-card:hover{
  border-color: rgba(31, 110, 168, 0.26);
  box-shadow: 0 24px 54px rgba(20, 32, 51, 0.12);
  transform: translateY(-3px);
}

.platform-card .meta,
.software-card .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 18px;
}

.software-card .meta{
  align-self: center;
  width: fit-content;
  max-width: 100%;
  justify-content: center;
}

.tag{
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  color: #0c3555;
  background: #eef5fa;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.tag.green{
  color: #0c3555;
  background: #eef5fa;
}

.tag.amber{
  color: #0c3555;
  background: #eef5fa;
}

.tag.red{
  color: #0c3555;
  background: #eef5fa;
}

.recommendation-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.recommendation-card,
.trust-card{
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(20, 32, 51, 0.08);
}

.recommendation-card{
  min-height: 410px;
  padding: 22px;
}

.recommendation-card::before,
.trust-card::before{
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(31, 110, 168, 0.2), #1f6ea8, rgba(31, 110, 168, 0.36));
  content: "";
}

.recommendation-card.is-recommended{
  border-color: rgba(31, 110, 168, 0.42);
}

.recommendation-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  margin-bottom: 18px;
}

.recommendation-card h3{
  margin-bottom: 8px;
}

.recommendation-card p{
  color: var(--muted);
}

.recommendation-card dl{
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
}

.recommendation-card dl div{
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.recommendation-card dt,
.recommendation-card dd{
  margin: 0;
}

.recommendation-card dt{
  color: #39465a;
  font-weight: 900;
}

.recommendation-card dd{
  color: var(--muted);
  overflow-wrap: anywhere;
}

.recommendation-actions{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.recommendation-actions a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 8px;
  color: #071a2f;
  background: #eef5fa;
  border: 1px solid rgba(166, 190, 209, 0.54);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.recommendation-actions a:hover{
  background: #1f6ea8;
  border-color: rgba(31, 110, 168, 0.32);
}

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

.trust-card{
  min-height: 230px;
  padding: 26px;
}

.trust-card > span{
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f6ea8, #1f6ea8);
  border-radius: var(--radius);
  font-size: 23px;
}

.trust-card h3{
  margin-bottom: 8px;
}

.trust-card p{
  margin-bottom: 0;
  color: var(--muted);
}

.home-topic-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.home-topic-links a{
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: #0c3555;
  background: #eef5fa;
  border: 1px solid rgba(166, 190, 209, 0.52);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.home-topic-links a:hover{
  background: #e3eef7;
  border-color: rgba(31, 110, 168, 0.36);
}

.home-choice-section{
  padding: 66px 0;
}

.home-choice{
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.home-choice-copy{
  min-width: 0;
}

.home-choice-copy h2{
  max-width: 620px;
  margin: 14px 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 54px);
}

.home-choice-copy p{
  max-width: 650px;
  margin: 0;
  color: #d6e4f4;
  font-size: 18px;
}

.home-choice-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-choice-meta span{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #53687c;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.home-choice-preview{
  display: grid;
  gap: 18px;
  min-width: 0;
  margin: 0;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 26px 60px rgba(2, 12, 24, 0.28);
  backdrop-filter: blur(12px);
}

.home-compare-heading{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.home-compare-heading strong{
  color: #ffffff;
  font-size: 19px !important;
}

.home-compare-heading span{
  min-width: 0;
  color: #c8d5e6;
  font-size: 14px;
  font-weight: 750;
  text-align: right;
}

.home-compare-platform{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.home-compare-platform span,
.choice-client-label{
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: #1f6ea8;
  font-size: 14px;
  font-weight: 900;
}

.home-compare-platform select,
.choice-client-select select{
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  color: #071a2f;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
}

.choice-client-select select{
  margin-top: 12px;
}

.home-compare-submit-row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.home-compare-submit-row p{
  min-width: 0;
  margin: 0;
  color: #d6e4f4;
  font-size: 14px;
  line-height: 1.45;
}

.home-compare-submit-row .button{
  min-width: 142px;
}

.home-compare-selector .button:disabled{
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.choice-matchup{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.choice-client{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  min-height: 160px;
  padding: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 900;
  text-align: left;
}

.choice-client img{
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  padding: 5px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.46);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.12);
}

.choice-client-body{
  display: block;
  min-width: 0;
}

.choice-client strong{
  display: block;
  min-width: 0;
  margin-top: 7px;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.choice-versus{
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #071a2f;
  background: #1f6ea8;
  border-radius: 50%;
  font-size: 13px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.platform-card .button,
.software-card .button{
  margin-top: auto;
}

.page-hero{
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 26, 47, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #eef5fa 58%, #f8fafc 100%);
  background-size: 48px 48px, 48px 48px, auto;
  border-bottom: 1px solid var(--line);
}

.page-hero .container{
  padding: 70px 0 62px;
}

.page-hero h1{
  max-width: 820px;
}

.page-hero p{
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.breadcrumb{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a{
  color: var(--blue);
}

.text-nowrap{
  white-space: nowrap;
}

.download-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.download-hero-copy{
  min-width: 0;
}

.download-hero .download-hero-copy p a{
  color: #1f6ea8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.download-hero-panel{
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 22px;
  color: #eef6ff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(7, 26, 47, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(2, 12, 24, 0.24);
  backdrop-filter: blur(14px);
}

.download-panel-heading{
  display: grid;
  gap: 4px;
  padding-bottom: 4px;
}

.download-panel-heading span{
  color: #1f6ea8;
  font-size: 13px;
  font-weight: 900;
}

.download-panel-heading strong{
  color: #ffffff;
  font-size: 24px;
  line-height: 1.22;
}

.download-hero-panel a{
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  color: #eef6ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.download-stat-panel{
  gap: 16px;
}

.download-stat-list{
  display: grid;
  gap: 0;
}

.download-stat-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.download-stat-panel .download-stat-row span{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #dce9f8;
  font-weight: 800;
}

.download-stat-panel .download-stat-row i{
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #65a9ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(101, 169, 255, 0.24);
  border-radius: 8px;
  font-size: 15px;
}

.download-stat-panel .download-stat-row strong{
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.download-hero-panel a:hover{
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(31, 110, 168, 0.48);
  transform: translateY(-1px);
}

.download-hero-panel i{
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #071a2f;
  background: #1f6ea8;
  border-radius: var(--radius);
  font-size: 24px;
}

.download-hero-panel .step-number{
  font-style: normal;
  font-family: inherit;
  font-weight: 800;
}

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

.download-hero-panel strong{
  color: #ffffff;
  line-height: 1.25;
}

.download-hero-panel small{
  margin-top: 3px;
  color: #c8d5e6;
  font-size: 12.5px;
  line-height: 1.45;
}

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

.download-path-card,
.download-safety-card{
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(20, 32, 51, 0.08);
}

.download-path-card{
  min-height: 420px;
  padding: 24px;
}

.download-path-card::before,
.download-safety-card::before{
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(31, 110, 168, 0.2), #1f6ea8, rgba(31, 110, 168, 0.36));
  content: "";
}

.download-path-icon,
.download-safety-card > span{
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f6ea8, #1f6ea8);
  border-radius: var(--radius);
  font-size: 25px;
}

.download-path-card p,
.download-safety-card p{
  color: var(--muted);
}

.download-path-card ul{
  display: grid;
  gap: 8px;
  margin: 4px 0 22px;
  padding-left: 18px;
  color: var(--muted);
}

.download-path-card li{
  padding-left: 2px;
}

.download-path-card .button{
  width: 100%;
  margin-top: auto;
}

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

.download-safety-card{
  min-height: 280px;
  padding: 26px;
}

.download-safety-card a{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  margin-top: auto;
  padding: 0 11px;
  color: #0c3555;
  background: #eef5fa;
  border: 1px solid rgba(166, 190, 209, 0.52);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.download-safety-card a:hover{
  background: #e3eef7;
  border-color: rgba(31, 110, 168, 0.36);
}

.download-next-steps{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.download-next-steps a{
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: #0c3555;
  background: #eef5fa;
  border: 1px solid rgba(166, 190, 209, 0.52);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.download-next-steps a:hover{
  background: #e3eef7;
  border-color: rgba(31, 110, 168, 0.36);
}

.download-toolbar{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px;
  background:
    linear-gradient(90deg, rgba(31, 110, 168, 0.16), rgba(255, 255, 255, 0.9), rgba(31, 110, 168, 0.1)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(166, 190, 209, 0.46);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 26, 47, 0.08);
}

.download-filter{
  min-height: 40px;
  padding: 0 18px;
  color: #243044;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.download-filter.is-active{
  color: #071a2f;
  background: #1f6ea8;
  box-shadow: inset 0 0 0 1px rgba(31, 110, 168, 0.2);
}

.software-card{
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 330px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(20, 32, 51, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.software-card::after{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 110, 168, 0.1), transparent 38%, rgba(31, 110, 168, 0.05));
  content: "";
  pointer-events: none;
}

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

.software-card.is-hidden{
  display: none !important;
}

.software-top{
  position: static;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.software-logo{
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  padding: 5px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.software-logo img{
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.software-card.is-featured{
  border-color: rgba(31, 110, 168, 0.42);
  box-shadow: 0 18px 44px rgba(7, 26, 47, 0.1);
}

.ribbon{
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #0c3555;
  background: #1f6ea8;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.software-card dl{
  display: grid;
  grid-template-columns: max-content minmax(0, max-content);
  gap: 7px 10px;
  align-self: center;
  justify-content: start;
  width: fit-content;
  max-width: 100%;
  margin: 16px 0;
  color: var(--muted);
  text-align: left;
}

.software-card dt{
  color: #39465a;
  font-weight: 800;
}

.software-card dd{
  margin: 0;
  overflow-wrap: anywhere;
}

.card-actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

.client-detail-hero .container{
  padding: 96px 0 72px;
}

.client-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 34px;
  align-items: center;
}

.client-hero-grid .breadcrumb{
  margin-bottom: 18px;
}

.client-hero-grid h1{
  max-width: 760px;
}

.client-hero-card{
  position: relative;
  overflow: hidden;
  padding: 24px;
  text-align: center;
  color: #f8fbff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(8, 30, 52, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.client-hero-card::after{
  position: absolute;
  inset: auto -18% -46% 18%;
  height: 190px;
  background: radial-gradient(circle, rgba(31, 110, 168, 0.26), transparent 68%);
  content: "";
  pointer-events: none;
}

.client-hero-logo{
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  padding: 12px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.client-hero-logo img{
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.client-hero-card h2,
.client-hero-card p,
.client-hero-card dl{
  position: relative;
  z-index: 1;
}

.client-hero-card h2{
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 24px;
}

.client-hero-card p{
  margin: 0 0 18px;
  color: #cde4f6;
}

.client-quick-facts{
  display: grid;
  gap: 10px;
  margin: 0;
}

.client-quick-facts div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.client-quick-facts dt{
  color: #1f6ea8;
  font-weight: 800;
}

.client-quick-facts dd{
  margin: 0;
  color: #f7fbff;
  text-align: right;
}

.client-detail-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 24px;
  align-items: start;
}

.detail-stack{
  display: grid;
  gap: 22px;
}

.client-detail-layout > .detail-stack:last-child .detail-panel:not(.repo-side){
  order: -1;
}

.detail-panel{
  padding: 26px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(7, 26, 47, 0.08);
}

.client-detail-page #local-download{
  scroll-margin-top: calc(var(--site-header-overlap, 76px) + 24px);
}

.detail-panel h2{
  margin-top: 0;
}

.detail-panel p:last-child{
  margin-bottom: 0;
}

.client-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.client-detail-hero .button.secondary{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.param-table{
  display: grid;
  margin: 18px 0 0;
  overflow: hidden;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.param-row{
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  min-height: 48px;
  border-top: 1px solid var(--line);
}

.param-row:first-child{
  border-top: 0;
}

.param-row dt,
.param-row dd{
  margin: 0;
  padding: 12px 14px;
}

.param-row dt{
  color: #39465a;
  background: #f6f9fc;
  font-weight: 900;
}

.param-row dd{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.param-row a{
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.status-pill{
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  color: #334155;
  background: #eef3f8;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.status-pill.is-active{
  color: #0c3555;
  background: #eef5fa;
}

.status-pill.is-archived{
  color: #0c3555;
  background: #eef5fa;
}

.status-pill.is-error{
  color: #0c3555;
  background: #eef5fa;
}

.status-pill.is-neutral{
  color: #334155;
  background: #eef3f8;
}

.repo-side{
  position: sticky;
  top: 20px;
}

.repo-side .software-logo{
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
}

.repo-side .software-logo img{
  width: 54px;
  height: 54px;
}

.repo-mini-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.repo-mini-grid div{
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(31, 110, 168, 0.1), rgba(255, 255, 255, 0.78)),
    #f6f9fc;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
}

.repo-mini-grid span{
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.repo-mini-grid strong{
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 15px !important;
  overflow-wrap: anywhere;
}

.tutorial-steps{
  counter-reset: client-steps;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.tutorial-step{
  position: relative;
  padding: 18px 18px 18px 58px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(31, 110, 168, 0.08), rgba(255, 255, 255, 0.9)),
    #f8fbfd;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
}

.tutorial-step::before{
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  counter-increment: client-steps;
  content: counter(client-steps);
  font-size: 13px;
  font-weight: 900;
}

.tutorial-step h3{
  margin: 0 0 4px;
  font-size: 18px;
}

.client-note-list{
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.client-note-list li{
  padding: 12px 14px;
  color: var(--muted);
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.related-client-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-client{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-client > span{
  flex: 0 1 auto;
  min-width: 0;
  text-align: left;
}

.related-client:hover{
  border-color: rgba(31, 110, 168, 0.26);
  transform: translateY(-2px);
}

.related-client img{
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.related-client strong{
  display: block;
  color: var(--ink);
}

.tutorial-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 32px;
  align-items: center;
}

.tutorial-hero-card{
  padding: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.tutorial-hero-card h2{
  margin: 16px 0 6px;
  color: #ffffff;
  font-size: 22px;
}

.tutorial-hero-card p{
  color: #d9e8f4;
}

.tutorial-meta-list{
  display: grid;
  gap: 8px;
  margin-top: 16px;
  text-align: left;
}

.tutorial-meta-list span{
  padding: 9px 10px;
  color: #eef5fa;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: 14px;
}

.tutorial-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
}

.tutorial-article{
  display: grid;
  gap: 20px;
}

.tutorial-section{
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 12px;
  align-items: start;
  padding: 30px;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.06);
}

.tutorial-step-mark{
  display: inline-grid;
  align-self: center;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: var(--radius);
  font-weight: 900;
}

.tutorial-section h2{
  align-self: center;
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

.tutorial-section > :not(.tutorial-step-mark):not(h2){
  grid-column: 2;
}

.tutorial-section > .tutorial-figure{
  grid-column: 1 / -1;
}

.tutorial-section > h2:first-child,
.tutorial-section > h2:first-child ~ *{
  grid-column: 1 / -1;
}

.tutorial-section p{
  margin: 0 0 16px;
  color: var(--muted);
}

.tutorial-section p:last-child{
  margin-bottom: 0;
}

.tutorial-section a{
  color: var(--green);
  font-weight: 700;
}

.tutorial-figure{
  margin: 18px 0 22px;
  padding: 12px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tutorial-figure img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

.tutorial-detail-page .tutorial-figure img{
  cursor: zoom-in;
}

.tutorial-figure.is-phone img{
  width: min(100%, 360px);
}

.image-lightbox{
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  padding: 18px;
  place-items: center;
  background: transparent;
  cursor: zoom-out;
}

.image-lightbox.is-open{
  display: grid;
}

body.has-image-lightbox{
  overflow: hidden;
}

.image-lightbox img{
  display: block;
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 92px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(20, 32, 51, 0.22);
}

.image-lightbox-hint{
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.tutorial-list{
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.tutorial-list li{
  padding: 12px 14px;
  color: var(--muted);
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tutorial-sidebar{
  position: sticky;
  top: 22px;
  display: grid;
  gap: 16px;
}

.tutorial-sidebar-card{
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.06);
}

.tutorial-sidebar-card h2{
  margin: 0 0 4px;
  font-size: 18px;
}

.tutorial-sidebar-card a{
  padding: 9px 10px;
  color: var(--muted);
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
}

.tutorial-sidebar-card a:hover{
  color: var(--green);
  border-color: rgba(31, 110, 168, 0.32);
}

.tutorial-index-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: center;
}

.tutorial-index-panel{
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.tutorial-index-panel div{
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.tutorial-index-panel strong{
  color: #1f6ea8;
  font-size: 30px;
  line-height: 1;
}

.tutorial-index-panel span{
  color: #eef5fa;
  font-weight: 800;
}

.tutorial-card-grid{
  align-items: stretch;
}

.tutorial-index-card{
  min-height: 350px;
}

.tutorial-index-card h3{
  margin-bottom: 8px;
}

.tutorial-index-card p{
  flex: 1;
  margin-bottom: 0;
}

.tutorial-path-card{
  padding: 26px;
}

.tutorial-path-card h2{
  font-size: 22px;
}

.faq-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: center;
}

.faq-hero-panel{
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.faq-hero-panel div{
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.faq-hero-panel strong{
  color: #1f6ea8;
  font-size: 30px;
  line-height: 1;
}

.faq-hero-panel span{
  color: #eef5fa;
  font-weight: 800;
}

.faq-category-grid,
.faq-question-grid{
  align-items: stretch;
}

.faq-category-card,
.faq-question-card{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(20, 32, 51, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-category-card:hover,
.faq-question-card:hover{
  border-color: rgba(31, 110, 168, 0.34);
  box-shadow: 0 24px 54px rgba(20, 32, 51, 0.12);
  transform: translateY(-3px);
}

.faq-category-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0 auto 18px;
  color: var(--green);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 36px;
  line-height: 1;
}

.faq-card-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 14px;
  color: var(--green);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 32px;
  line-height: 1;
}

.faq-category-card h3,
.faq-question-card h3{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.faq-category-card p,
.faq-question-card p{
  margin: 0 0 16px;
  color: var(--muted);
}

.faq-category-card ul{
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.faq-category-card li a{
  display: block;
  padding: 9px 10px;
  color: #314158;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
}

.faq-category-card li a:hover{
  color: var(--green);
  border-color: rgba(31, 110, 168, 0.3);
}

.faq-category-card .button,
.faq-question-card .button{
  margin-top: auto;
  align-self: center;
}

.faq-category-layout{
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.faq-category-nav,
.faq-detail-sidebar{
  position: sticky;
  top: 22px;
}

.faq-category-nav,
.faq-sidebar-card{
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.06);
}

.faq-category-nav h2,
.faq-sidebar-card h2{
  margin: 0 0 4px;
  font-size: 18px;
}

.faq-category-nav a,
.faq-sidebar-card a{
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  color: var(--muted);
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
}

.faq-category-nav a:hover,
.faq-category-nav a[aria-current="page"],
.faq-sidebar-card a:hover{
  color: var(--green);
  border-color: rgba(31, 110, 168, 0.32);
}

.faq-list-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 16px;
}

.faq-list-cards .faq-question-card{
  min-height: 0;
  padding: 22px;
}

.section-title.left{
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.faq-detail-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.faq-detail-article{
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.06);
}

.faq-detail-article h2{
  margin: 16px 0 16px;
  font-size: 30px;
}

.faq-detail-article p{
  margin: 0 0 16px;
  color: #3a475a;
  font-size: 17px;
  line-height: 1.85;
}

.faq-tip-box,
.faq-link-box{
  margin-top: 24px;
  padding: 18px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-tip-box h3,
.faq-link-box h3{
  margin: 0 0 10px;
  font-size: 20px;
}

.faq-tip-box ul{
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.faq-link-box div{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-detail-sidebar{
  display: grid;
  gap: 16px;
}

.docs-hero .container{
  max-width: none;
}

.docs-section{
  padding-top: 32px;
}

.docs-layout{
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: start;
}

.docs-sidebar,
.docs-outline{
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow: auto;
}

.docs-sidebar{
  display: grid;
  gap: 18px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.06);
}

.docs-nav-group{
  display: grid;
  gap: 6px;
}

.docs-nav-group summary,
.docs-outline h2{
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0;
}

.docs-nav-group a,
.docs-outline a{
  display: block;
  padding: 8px 10px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.45;
}

.docs-nav-group a:hover,
.docs-nav-group a[aria-current="page"],
.docs-outline a:hover{
  color: var(--green);
  background: #f1faf7;
}

.docs-outline{
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
}

.docs-outline div{
  display: grid;
  gap: 4px;
}

.docs-outline span{
  color: var(--muted);
  font-size: 14px;
}

.docs-article{
  min-width: 0;
  padding: 36px;
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.06);
}

.docs-article h1,
.docs-article h2,
.docs-article h3,
.docs-article h4{
  color: var(--ink);
  line-height: 1.28;
}

.docs-article h1{
  margin: 0 0 22px;
  font-size: 38px;
}

.docs-article h2{
  margin: 36px 0 14px;
  padding-top: 10px;
  font-size: 27px;
  border-top: 1px solid var(--line);
}

.docs-article h3{
  margin: 26px 0 10px;
  font-size: 21px;
}

.docs-article p,
.docs-article li,
.docs-article blockquote{
  color: var(--muted);
}

.docs-article p{
  margin: 0 0 16px;
}

.docs-article a{
  color: var(--green);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.docs-article ul,
.docs-article ol{
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.docs-article code{
  padding: 2px 5px;
  color: #165780;
  background: #eef4fb;
  border: 1px solid rgba(31, 110, 168, 0.16);
  border-radius: 5px;
  font-size: 0.92em;
}

.docs-article pre{
  margin: 18px 0 22px;
  padding: 18px;
  overflow: auto;
  color: #dbeafe;
  background: #0b1726;
  border: 1px solid rgba(166, 190, 209, 0.22);
  border-radius: var(--radius);
}

.docs-article pre code{
  display: block;
  min-width: max-content;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre;
}

.docs-article blockquote,
.docs-callout{
  margin: 18px 0;
  padding: 15px 17px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
}

.docs-callout.warning{
  border-left-color: var(--amber);
}

.docs-callout strong{
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.docs-article img{
  margin: 20px auto;
  padding: 12px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.docs-table{
  margin: 18px 0 22px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.docs-table table{
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.docs-table th,
.docs-table td{
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.docs-table th{
  color: var(--ink);
  background: #f8fbfd;
}

.docs-table tr:last-child td{
  border-bottom: 0;
}

.table-of-contents{
  margin: 18px 0 24px;
  padding: 16px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.docs-pager{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.docs-pager a{
  display: grid;
  gap: 4px;
  padding: 14px;
  color: var(--ink);
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.docs-pager a:last-child{
  text-align: right;
}

.docs-pager span{
  color: var(--muted);
  font-size: 13px;
}

.related-client span{
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.download-options{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.download-option{
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(31, 110, 168, 0.08), rgba(255, 255, 255, 0.9)),
    #f8fbfd;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.download-option:hover{
  border-color: rgba(31, 110, 168, 0.3);
  box-shadow: 0 12px 28px rgba(20, 32, 51, 0.08);
  transform: translateY(-2px);
}

.download-option strong{
  color: var(--ink);
  font-size: 16px;
}

.download-option span{
  justify-self: stretch;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
  overflow-wrap: anywhere;
}

.download-note{
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

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

.download-file-name{
  display: block;
  margin: 18px 0;
  padding: 14px;
  color: var(--navy);
  background: #f6f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.not-found-layout{
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.56fr);
  gap: 24px;
  align-items: stretch;
}

.not-found-copy,
.not-found-links a{
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(7, 26, 47, 0.08);
}

.not-found-copy{
  padding: clamp(26px, 4vw, 44px);
}

.not-found-code{
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.9;
}

.not-found-copy p{
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.not-found-links{
  display: grid;
  gap: 12px;
}

.not-found-links a{
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.not-found-links a:hover{
  border-color: rgba(31, 110, 168, 0.26);
  box-shadow: 0 24px 54px rgba(20, 32, 51, 0.12);
  transform: translateY(-2px);
}

.not-found-links i{
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: var(--radius);
  font-size: 20px;
}

.not-found-links strong,
.not-found-links small{
  display: block;
}

.not-found-links small{
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.steps{
  counter-reset: steps;
}

.step-card{
  position: relative;
  padding: 28px 24px 24px;
}

.step-card::before{
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 16px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  counter-increment: steps;
  content: counter(steps);
  font-weight: 900;
}

.subscribe-highlight{
  background:
    linear-gradient(135deg, rgba(31, 110, 168, 0.18), rgba(255, 255, 255, 0.62)),
    #ffffff;
}

.plan-card{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 440px;
  padding: 28px;
}

.plan-card.recommended{
  border-color: rgba(31, 110, 168, 0.48);
  box-shadow: 0 18px 46px rgba(7, 26, 47, 0.1);
}

.plan-card .badge{
  position: absolute;
  top: 18px;
  right: 18px;
}

.price{
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 18px 0 6px;
}

.price strong{
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
}

.price span{
  color: var(--muted);
  font-weight: 800;
}

.plan-features{
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.plan-features li{
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #3a475a;
}

.plan-features li::before{
  flex: 0 0 auto;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.plan-card .button{
  width: 100%;
  margin-top: auto;
}

.notice-card{
  padding: 22px;
}

.notice-card strong{
  color: var(--navy);
}

.faq-list{
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

details.faq-card{
  padding: 0;
  text-align: left;
}

details summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

details summary::-webkit-details-marker{
  display: none;
}

details summary::after{
  color: var(--green);
  content: "+";
  font-size: 22px;
  font-weight: 700;
}

details[open] summary::after{
  content: "-";
}

details.faq-card p{
  padding: 0 20px 20px;
  margin: 0;
  color: var(--muted);
}

.site-footer{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #c8d5e6;
  background: var(--hero-bg);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.75fr));
  gap: 32px;
  padding: 52px 0 34px;
}

.site-footer h3{
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 16px;
}

.site-footer p,
.site-footer a{
  color: #aabbd0;
}

.footer-brand{
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand h3{
  margin-bottom: 0;
}

.site-footer .footer-brand-link{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 800;
}

.footer-logo{
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.footer-logo img{
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand p{
  max-width: 330px;
  margin: 0;
}

.footer-links{
  display: grid;
  gap: 8px;
}

.footer-bottom{
  padding: 18px 0 28px;
  color: #8ea1b8;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 14px;
}

@media (max-width: 1120px){
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 54px 0 76px;
  }

  .hero-visual{
    justify-self: stretch;
    max-width: none;
  }

  .client-hero-grid,
.download-hero-grid,
.client-detail-layout,
.tutorial-index-hero-grid,
.faq-hero-grid,
.faq-category-layout,
.faq-detail-layout,
.tutorial-hero-grid,
.tutorial-layout,
.docs-layout{
    grid-template-columns: 1fr;
  }

  .repo-side{
    position: static;
  }

  .docs-sidebar,
.docs-outline{
    position: static;
    max-height: none;
  }

  .tutorial-sidebar{
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-category-nav,
.faq-detail-sidebar{
    position: static;
  }

  .faq-detail-sidebar{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.four,
.grid.three,
.download-path-grid,
.download-safety-grid,
.recommendation-grid,
.trust-grid,
.footer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px){
  .grid.two,
.footer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-visual{
    justify-self: stretch;
  }
}

@media (max-width: 899px){
  .hero-copy{
    order: 2;
  }

  .hero-visual{
    order: 1;
  }

  .platform-dock{
    margin-top: 0;
  }
}

@media (max-width: 760px){
  :root{
    --title-hero: 38px;
    --title-h1: 36px;
    --title-h2: 27px;
    --title-h3: 20px;
  }

  .container{
    width: min(100% - 28px, 1160px);
  }

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

  .nav-toggle{
    display: inline-grid;
    place-items: center;
  }

  .nav{
    position: absolute;
    top: 66px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #071a2f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.is-open{
    display: flex;
  }

  .nav a{
    padding: 12px;
  }

  .hero-inner,
.grid.four,
.grid.three,
.grid.two,
.download-path-grid,
.download-safety-grid,
.recommendation-grid,
.trust-grid,
.footer-grid{
    grid-template-columns: 1fr;
  }

  .home-choice{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .home-choice-copy h2{
    font-size: 36px;
  }

  .home-choice-preview{
    padding: 18px;
  }

  .home-choice-meta,
.home-compare-submit-row{
    grid-template-columns: 1fr;
  }

  .home-choice-meta{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .home-choice-meta span{
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .home-compare-heading,
.home-compare-platform{
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .download-hero-panel,
.download-path-card,
.download-safety-card{
    padding: 18px;
  }

  .download-hero-panel a{
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 10px;
  }

  .download-hero-panel i{
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .download-path-card .button{
    min-height: 44px;
  }

  .home-compare-heading span{
    text-align: left;
  }

  .home-compare-submit-row .button{
    width: 100%;
  }

  .choice-matchup{
    grid-template-columns: 1fr;
  }

  .choice-client{
    justify-content: flex-start;
  }

  .choice-versus{
    width: 36px;
    height: 36px;
    margin: -2px auto;
  }

  .hero-inner,
.page-hero .container{
    padding: 58px 0 46px;
  }

  .tutorial-sidebar{
    grid-template-columns: 1fr;
  }

  .tutorial-index-panel{
    padding: 16px;
  }

  .tutorial-index-panel div{
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 60px;
  }

  .tutorial-index-panel strong{
    font-size: 24px;
  }

  .faq-hero-panel{
    padding: 16px;
  }

  .faq-hero-panel div{
    min-height: 60px;
  }

  .faq-hero-panel strong{
    font-size: 24px;
  }

  .tutorial-section{
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 14px;
    padding: 18px;
  }

  .tutorial-step-mark{
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .tutorial-section h2{
    font-size: 30px;
    line-height: 1.18;
  }

  .tutorial-section > :not(.tutorial-step-mark):not(h2){
    grid-column: 1 / -1;
  }

  .tutorial-section p,
.tutorial-list li{
    font-size: 17px;
    line-height: 1.78;
  }

  .tutorial-figure{
    margin: 10px 0 14px;
    padding: 8px;
  }

  .tutorial-figure img{
    max-height: none;
  }

  .faq-detail-article{
    padding: 24px;
  }

  .faq-detail-sidebar{
    grid-template-columns: 1fr;
  }

  .faq-list-cards{
    grid-template-columns: 1fr;
  }

  .docs-article{
    padding: 24px;
  }

  .docs-article h1{
    font-size: 32px;
  }

  .docs-pager{
    grid-template-columns: 1fr;
  }

  .docs-pager a:last-child{
    text-align: left;
  }

  .home-page .hero-inner{
    padding-top: 18px;
  }

  .hero-inner{
    min-height: auto;
    gap: 18px;
  }

  .hero-copy{
    order: 2;
  }

  .hero-visual{
    order: 1;
    max-width: none;
  }

  .hero p,
.page-hero p{
    font-size: 16px;
  }

  .platform-dock{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
    padding-bottom: 20px;
  }

  .platform-dock a{
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-height: 66px;
    padding: 10px 4px;
    border-color: transparent;
    text-align: center;
  }

  .platform-dock-icon{
    width: 34px;
    height: 34px;
    font-size: 30px;
  }

  .platform-dock-copy{
    gap: 2px;
    justify-items: center;
  }

  .platform-dock-copy span{
    font-size: 12px;
    white-space: nowrap;
  }

  .platform-dock-copy strong{
    display: none;
    font-size: 10.5px;
    white-space: nowrap;
  }

  .section{
    padding: 56px 0;
  }

  .platform-card,
.software-card,
.plan-card,
.download-path-card,
.download-safety-card,
.recommendation-card,
.trust-card{
    min-height: 0;
  }

  .client-detail-hero .container{
    padding: 70px 0 48px;
  }

  .client-hero-card{
    max-width: 420px;
  }

  .param-row{
    grid-template-columns: 1fr;
  }

  .param-row dt{
    padding-bottom: 4px;
  }

  .param-row dd{
    padding-top: 4px;
  }

  .repo-mini-grid,
.download-options,
.related-client-grid,
.not-found-layout{
    grid-template-columns: 1fr;
  }

  .related-client{
    justify-content: flex-start;
  }

  .related-client img{
    flex: 0 0 auto;
  }

  .related-client > span{
    text-align: left;
  }

  .price strong{
    font-size: 36px;
  }
}

@media (min-width: 900px) and (max-width: 1279px){
  .home-page .hero{
    height: auto;
  }

  :root{
    --title-hero: 56px;
    --title-h1: 46px;
    --title-h2: 30px;
  }

  .hero .container{
    width: min(960px, calc(100% - 40px));
  }

  .hero-inner{
    grid-template-columns: minmax(0, 1fr) minmax(280px, 300px);
    align-items: center;
    gap: 24px;
    min-height: 0;
    padding: 56px 0 34px;
  }

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

  .hero p{
    max-width: 560px;
    font-size: 18px;
  }

  .hero-actions,
.section-actions{
    margin-top: 24px;
  }

  .hero-visual{
    justify-self: center;
    max-width: 330px;
    transform: translateX(-26px);
  }

  .platform-dock{
    margin-top: 0;
    padding-bottom: 18px;
  }
}

@media (min-width: 900px) and (max-width: 1279px){
  .hero .container{
    width: min(1040px, calc(100% - 44px));
  }

  .hero-inner{
    grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
    gap: clamp(20px, 3vw, 30px);
    min-height: 0;
    padding: 50px 0 28px;
  }

  .hero h1{
    font-size: clamp(48px, 5vw, 56px);
  }

  .hero p{
    max-width: 560px;
    font-size: 17px;
    line-height: 1.66;
  }

  .hero-visual{
    max-width: 320px;
    transform: translateX(-20px);
  }

}

@media (min-width: 900px) and (max-width: 1120px){
  .hero .container{
    width: min(920px, calc(100% - 40px));
  }

  .hero-inner{
    grid-template-columns: minmax(0, 1fr) minmax(250px, 280px);
    gap: 20px;
    min-height: 0;
    padding: 42px 0 18px;
  }

  .hero h1{
    font-size: clamp(44px, 5vw, 52px);
  }

  .hero p{
    max-width: 520px;
  }

  .hero-visual{
    max-width: 280px;
    transform: translateX(-18px);
  }

  .platform-dock{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0;
    padding-bottom: 20px;
  }

  .platform-dock a{
    min-height: 84px;
  }
}

@media (min-width: 761px) and (max-width: 899px){
  .home-page .hero{
    padding-top: 66px;
  }

  .hero-inner{
    gap: 22px;
    padding: 32px 0 34px;
  }

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

  .hero h1{
    max-width: 720px;
    font-size: clamp(42px, 7vw, 52px);
    white-space: normal;
  }

  .hero p{
    max-width: 680px;
    font-size: 17px;
  }

  .hero-actions,
.section-actions{
    margin-top: 22px;
  }

  .hero-visual{
    justify-self: center;
    max-width: 340px;
  }

  .platform-dock{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
    padding-bottom: 34px;
  }

  .platform-dock a{
    min-height: 88px;
  }
}

@media (max-width: 760px){
  .home-page .hero{
    padding-top: 66px;
  }

  .home-page .hero-inner{
    padding: 16px 0 30px;
  }

  .hero h1{
    max-width: 100%;
    white-space: normal;
  }

  .hero-actions{
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button{
    flex: 1 1 132px;
  }
}

@media (max-width: 420px){
  :root{
    --title-hero: 34px;
    --title-h1: 32px;
  }

  .hero p{
    font-size: 15.5px;
  }

  .platform-dock a{
    min-height: 62px;
    padding-right: 3px;
    padding-left: 3px;
  }
}

@media (max-width: 360px){
  :root{
    --title-hero: 31px;
  }

  .hero-actions .button{
    flex-basis: 100%;
  }
}

body.docs-page{
  color: #24292f;
  background:
    radial-gradient(circle at 18% -10%, rgba(31, 110, 168, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(7, 26, 47, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 26, 47, 0.03) 1px, transparent 1px),
    var(--surface-bg);
  background-size: auto, 72px 72px, 72px 72px, auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.docs-page .site-header{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  color: #eef6ff;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.docs-page .header-inner{
  min-height: 72px;
}

.docs-page .brand{
  color: #c8d5e6;
  font-size: inherit;
}

.docs-page .brand-mark{
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.docs-page .brand-mark img{
  width: 38px;
  height: 38px;
}

.docs-page .brand small{
  margin-top: -4px;
  color: #96adc6;
  font-size: 12px;
  font-weight: 500;
}

.docs-page .nav{
  gap: 4px;
}

.docs-page .nav a{
  padding: 10px 13px;
  color: #c8d5e6;
  border-radius: 6px;
  font-size: 15px !important;
  font-weight: 400;
}

.docs-page .nav a:hover,
.docs-page .nav a[aria-current="page"]{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.docs-page .nav-toggle{
  color: #eef6ff;
  border-color: rgba(255, 255, 255, 0.22);
}

.docs-page .page-hero.docs-hero{
  display: block;
}

.docs-page .page-hero.docs-hero .container{
  padding-top: 70px;
  padding-bottom: 62px;
}

.docs-page main{
  background: transparent;
}

.docs-page .docs-section{
  padding: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 26, 47, 0.016) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.docs-page .docs-layout{
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 232px;
  gap: 0;
  align-items: start;
}

.docs-page .docs-sidebar,
.docs-page .docs-outline{
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 104px);
  overflow: auto;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.docs-page .docs-sidebar{
  gap: 22px;
  padding: 28px 22px 56px 0;
  border-right: 1px solid #d8dee4;
}

.docs-page .docs-sidebar::before{
  display: block;
  margin-bottom: 2px;
  padding: 0 10px 16px;
  color: #24292f;
  border-bottom: 1px solid #d8dee4;
  font-size: 17px;
  font-weight: 800;
  content: "Clash \6587\6863";
}

html[lang="en"] .docs-page .docs-sidebar::before{
  content: "Clash Docs";
}

.docs-page .docs-sidebar > h2{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.docs-page .docs-nav-group{
  display: grid;
  gap: 2px;
}

.docs-page .docs-nav-group summary,
.docs-page .docs-outline h2{
  margin: 0 0 6px;
  padding: 0 10px;
  color: #57606a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.docs-page .docs-nav-group summary{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  margin-bottom: 4px;
  border-radius: 6px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.docs-page .docs-nav-group summary::-webkit-details-marker{
  display: none;
}

.docs-page .docs-nav-group summary::after{
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.16s ease;
}

.docs-page .docs-nav-group summary:hover{
  color: #1f6ea8;
  background: #f6f8fa;
}

.docs-page .docs-nav-group:not([open]) summary{
  margin-bottom: 0;
}

.docs-page .docs-nav-group:not([open]) summary::after{
  transform: rotate(-45deg);
}

.docs-page .docs-nav-group a,
.docs-page .docs-outline a{
  padding: 6px 10px;
  color: #57606a;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.45;
}

.docs-page .docs-nav-group a:hover,
.docs-page .docs-outline a:hover{
  color: #1f6ea8;
  background: #f6f8fa;
}

.docs-page .docs-nav-group a[aria-current="page"]{
  color: #1f6ea8;
  background: rgba(31, 110, 168, 0.08);
  font-weight: 700;
}

.docs-page .docs-article{
  width: min(100%, 820px);
  min-width: 0;
  margin: 0 auto;
  padding: 42px 54px 76px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.docs-page .docs-article h1,
.docs-page .docs-article h2,
.docs-page .docs-article h3,
.docs-page .docs-article h4{
  color: #24292f;
  line-height: 1.32;
  scroll-margin-top: 84px;
}

.docs-page .docs-article h1{
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d8dee4;
  font-size: 40px;
  font-weight: 800;
}

.docs-page .docs-article h2{
  margin: 36px 0 14px;
  padding: 0 0 9px;
  border-top: 0;
  border-bottom: 1px solid #d8dee4;
  font-size: 26px;
  font-weight: 750;
}

.docs-page .docs-article h3{
  margin: 28px 0 10px;
  font-size: 20px;
  font-weight: 750;
}

.docs-page .docs-article h4{
  margin: 22px 0 8px;
  font-size: 17px;
}

.docs-page .docs-article p,
.docs-page .docs-article li,
.docs-page .docs-article blockquote{
  color: #3b434b;
  font-size: 16px;
  line-height: 1.78;
}

.docs-page .docs-article p{
  margin: 0 0 16px;
}

.docs-page .docs-article ul,
.docs-page .docs-article ol{
  gap: 6px;
  margin: 0 0 18px;
  padding-left: 26px;
}

.docs-page .docs-article a{
  color: #1f6ea8;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(31, 110, 168, 0.28);
  text-underline-offset: 3px;
}

.docs-page .docs-article a:hover{
  text-decoration-color: currentColor;
}

.docs-page .docs-article code{
  padding: 0.16em 0.36em;
  color: #24292f;
  background: rgba(175, 184, 193, 0.18);
  border: 0;
  border-radius: 6px;
  font-size: 0.88em;
}

.docs-page .docs-article pre{
  margin: 18px 0 22px;
  padding: 16px 18px;
  color: #e6edf3;
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 8px;
  box-shadow: none;
}

.docs-page .docs-article pre code{
  color: inherit;
  background: transparent;
  font-size: 13px;
  line-height: 1.72;
}

.docs-page .docs-article blockquote,
.docs-page .docs-callout{
  margin: 18px 0;
  padding: 12px 16px;
  color: #57606a;
  background: transparent;
  border: 0;
  border-left: 4px solid #d0d7de;
  border-radius: 0;
}

.docs-page .docs-callout{
  background: #f6f8fa;
  border: 1px solid #d8dee4;
  border-left: 4px solid #1f6ea8;
  border-radius: 8px;
}

.docs-page .docs-callout.warning{
  border-left-color: #53687c;
}

.docs-page .docs-article img{
  margin: 22px auto;
  padding: 0;
  background: transparent;
  border: 1px solid #d8dee4;
  border-radius: 8px;
}

.docs-page .docs-table{
  margin: 18px 0 24px;
  border: 1px solid #d8dee4;
  border-radius: 8px;
}

.docs-page .docs-table th,
.docs-page .docs-table td{
  padding: 10px 12px;
  border-bottom: 1px solid #d8dee4;
}

.docs-page .docs-table th{
  color: #24292f;
  background: #f6f8fa;
}

.docs-page .docs-outline{
  padding: 30px 0 44px 22px;
  border-left: 1px solid #d8dee4;
}

.docs-page .docs-outline div{
  gap: 1px;
}

.docs-page .docs-outline a{
  padding: 5px 10px;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
}

.docs-page .docs-outline a:hover{
  border-left-color: #1f6ea8;
}

.docs-page .docs-outline span{
  display: block;
  padding: 0 10px;
  color: #53687c;
  font-size: 13px;
}

.docs-page .docs-pager{
  gap: 12px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid #d8dee4;
}

.docs-page .docs-pager a{
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #d8dee4;
  border-radius: 8px;
  box-shadow: none;
}

.docs-page .docs-pager a:hover{
  border-color: #1f6ea8;
  background: #f6f8fa;
}

.docs-page .docs-pager span{
  color: #53687c;
}

.docs-page .docs-pager strong{
  color: #24292f;
}

.docs-page .docs-pager a{
  background: transparent;
  background-image: none;
}

.docs-page .docs-pager a:hover{
  background: transparent;
}

.docs-page .site-footer{
  position: relative;
  color: #57606a;
  background: #f6f8fa;
  border-top: 1px solid #d8dee4;
}

.docs-page .site-footer::before,
.docs-page .site-footer::after{
  display: none;
}

.docs-page .footer-grid{
  padding: 28px 0;
}

.docs-page .footer-brand h3,
.docs-page .site-footer h3{
  color: #24292f;
}

.docs-page .footer-brand p,
.docs-page .footer-links a,
.docs-page .footer-bottom{
  color: #57606a;
}

.docs-page .footer-links a:hover{
  color: #1f6ea8;
}

.docs-page .footer-logo{
  background: #ffffff;
  border-color: #d8dee4;
  box-shadow: none;
}

.docs-page .footer-bottom{
  padding: 16px 0 22px;
  border-top: 1px solid #d8dee4;
}

@media (max-width: 1180px){
  .docs-page .docs-layout{
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .docs-page .docs-outline{
    display: none;
  }

  .docs-page .docs-article{
    width: min(100%, 860px);
  }
}

@media (max-width: 860px){
  .docs-page .site-header .container,
.docs-page .docs-layout.container{
    width: min(100% - 32px, 1440px);
  }

  .docs-page .docs-layout{
    grid-template-columns: 1fr;
  }

  .docs-page .docs-sidebar{
    position: static;
    max-height: none;
    margin: 18px 0 0;
    padding: 16px;
    border: 1px solid #d8dee4;
    border-radius: 8px;
  }

  .docs-page .docs-sidebar::before{
    padding: 0 0 12px;
  }

  .docs-page .docs-nav-group summary{
    padding: 0;
  }

  .docs-page .docs-nav-group a{
    padding: 7px 8px;
  }

  .docs-page .docs-article{
    padding: 30px 0 56px;
  }

  .docs-page .docs-article h1{
    font-size: 32px;
  }
}

@media (max-width: 760px){
  .docs-page .nav{
    top: 64px;
    background: #ffffff;
    border: 1px solid #d8dee4;
    box-shadow: 0 16px 36px rgba(31, 35, 40, 0.12);
  }

  .docs-page .nav a{
    padding: 10px 12px;
  }

  .docs-page .docs-pager{
    grid-template-columns: 1fr;
  }

  .docs-page .docs-pager a:last-child{
    text-align: left;
  }
}

.home-page .site-header,
.inner-page .site-header,
.docs-page .site-header{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  color: #eef6ff;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.home-page .hero,
.inner-page .page-hero{
  padding-top: 72px;
}

.header-inner,
.docs-page .header-inner{
  min-height: 72px;
}

.docs-page .brand{
  color: #c8d5e6;
  font-size: inherit;
}

.docs-page .brand-mark{
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.docs-page .brand-mark img{
  width: 38px;
  height: 38px;
}

.docs-page .brand small{
  margin-top: -4px;
  color: #96adc6;
  font-size: 12px;
  font-weight: 500;
}

.docs-page .nav{
  gap: 4px;
}

.docs-page .nav a{
  padding: 10px 13px;
  color: #c8d5e6;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 400;
}

.docs-page .nav a:hover,
.docs-page .nav a[aria-current="page"]{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.docs-page .nav-toggle{
  color: #eef6ff;
  border-color: rgba(255, 255, 255, 0.22);
}

.docs-page .docs-sidebar,
.docs-page .docs-outline{
  top: 88px;
  max-height: calc(100vh - 104px);
}

.docs-page .docs-section{
  padding-top: 0;
}

.docs-page .docs-sidebar{
  gap: 10px;
  padding: 24px 18px 56px 0;
}

.docs-page .docs-sidebar::before{
  margin-bottom: 10px;
  padding: 0 8px 10px;
  color: #1f2937;
  border-bottom-color: rgba(216, 222, 228, 0.72);
  font-size: 15px;
  font-weight: 780;
}

.docs-page .docs-nav-group{
  gap: 1px;
}

.docs-page .docs-nav-group + .docs-nav-group{
  margin-top: 10px;
}

.docs-page .docs-nav-group summary,
.docs-page .docs-nav-group a{
  padding-right: 8px;
  padding-left: 8px;
}

.docs-page .docs-nav-group summary{
  justify-content: flex-start;
  gap: 10px;
  min-height: 30px;
  margin-bottom: 2px;
  color: #4b5563;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.docs-page .docs-nav-group summary::after{
  width: 7px;
  height: 7px;
  margin-right: 2px;
  color: #64748b;
  border-width: 0 1.5px 1.5px 0;
}

.docs-page .docs-nav-group summary:hover{
  color: #1f6ea8;
  background: rgba(31, 110, 168, 0.06);
}

.docs-page .docs-nav-group a{
  position: relative;
  color: #4b5563;
  font-size: 14px;
}

.docs-page .docs-nav-group a:hover{
  color: #1f6ea8;
  background: rgba(31, 110, 168, 0.06);
}

.docs-page .docs-nav-group a[aria-current="page"]{
  color: #1f6ea8;
  background: rgba(31, 110, 168, 0.08);
  box-shadow: inset 3px 0 0 #1f6ea8;
  font-weight: 760;
}

.docs-page .site-footer{
  color: #c8d5e6;
  background: var(--hero-bg);
  border-top: 0;
}

.docs-page .site-footer::before,
.docs-page .site-footer::after{
  display: block;
}

.docs-page .footer-grid{
  padding: 52px 0 34px;
}

.docs-page .footer-brand h3,
.docs-page .site-footer h3{
  color: #ffffff;
}

.docs-page .footer-brand p,
.docs-page .footer-links a,
.docs-page .footer-bottom{
  color: #aabbd0;
}

.docs-page .footer-links a:hover{
  color: #ffffff;
}

.docs-page .footer-logo{
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.docs-page .footer-bottom{
  padding: 18px 0 28px;
  color: #8ea1b8;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

@media (max-width: 760px){
  .container,
.docs-page .site-header .container{
    width: min(100% - 28px, 1160px);
  }

  .nav,
.docs-page .nav{
    top: 72px;
    right: 14px;
    left: 14px;
    background: #071a2f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .docs-page .nav a{
    padding: 12px;
    color: #c8d5e6;
  }

}

:root{
  --surface-bg: #f7fafc;
  --site-grid:
    linear-gradient(90deg, rgba(7, 26, 47, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 26, 47, 0.03) 1px, transparent 1px),
    var(--surface-bg);
}

body,
body.docs-page,
.section,
.section.white,
.docs-page .docs-section{
  background: var(--site-grid);
  background-size: 72px 72px, 72px 72px, auto;
}

.section.dark::before,
.section.dark::after,
.feature-card::after,
.platform-card::before,
.software-card::after,
.client-hero-card::after{
  display: none;
}

.section.dark.hero-effect-section::before{
  display: block;
  opacity: 0.54;
}

.section.dark.hero-effect-section::after{
  display: block;
  height: 38%;
  background: linear-gradient(180deg, rgba(7, 26, 47, 0), rgba(7, 26, 47, 0.84));
}

.software-card.is-featured::before,
.step-card::before{
  background: var(--green);
}

.feature-card,
.platform-card,
.software-card,
.plan-card,
.step-card,
.faq-card,
.notice-card,
.client-hero-card,
.detail-panel,
.tutorial-hero-card,
.tutorial-section,
.tutorial-sidebar-card,
.tutorial-index-panel,
.tutorial-index-card,
.tutorial-path-card,
.faq-hero-panel,
.faq-category-card,
.faq-question-card,
.faq-category-nav,
.faq-sidebar-card,
.faq-detail-article,
.faq-tip-box,
.faq-link-box,
.docs-sidebar,
.docs-outline,
.docs-article,
.download-option,
.download-note,
.download-box,
.related-client,
.repo-mini-grid div,
.hero-metrics,
.client-quick-facts div,
.client-note-list li,
.tutorial-meta-list span,
.download-toolbar,
.download-filter,
.download-filter.is-active,
.tag,
.faq-category-card li a,
.faq-category-nav a,
.faq-sidebar-card a,
.docs-nav-group a,
.docs-callout,
.docs-pager a,
.plan-features li,
details.faq-card,
.plan-card .badge{
  background: transparent;
  background-image: none;
}

.client-hero-logo,
.download-file-name,
.platform-icon,
.docs-table th{
  background: transparent;
}

.button.primary,
.button.secondary,
.button.outline,
.plan-card .button,
.hero .button.secondary,
.inner-page .page-hero .button.secondary{
  background-image: none;
}

.tutorial-step-mark,
.feature-icon,
.platform-icon,
.faq-category-icon,
.faq-card-icon{
  background: transparent;
  color: var(--green);
}

.tutorial-step-mark{
  border: 1px solid rgba(31, 110, 168, 0.28);
}

@media (max-width: 760px){
  .nav,
.docs-page .nav{
    background: var(--surface-bg);
    border-color: rgba(7, 26, 47, 0.12);
  }

  .docs-page .nav a{
    color: #26364d;
  }
}

.tutorial-index-panel{
  background: transparent;
  border-color: rgba(166, 190, 209, 0.46);
  backdrop-filter: none;
}

.tutorial-index-panel div{
  background: transparent;
  border-color: rgba(166, 190, 209, 0.38);
}

.tutorial-index-panel strong{
  color: var(--green);
}

.tutorial-index-panel span{
  color: var(--muted);
}

.tutorial-index-panel,
.faq-hero-panel{
  display: grid;
  align-content: center;
  gap: 14px;
  width: 100%;
  min-height: 318px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.tutorial-index-panel div,
.faq-hero-panel div{
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.tutorial-index-panel strong,
.faq-hero-panel strong{
  color: #1f6ea8;
  font-size: 32px;
  line-height: 1;
}

.tutorial-index-panel span,
.faq-hero-panel span{
  color: #cfe0ef;
  font-size: 16px;
  font-weight: 800;
}

@media (max-width: 760px){
  .tutorial-index-panel,
.faq-hero-panel{
    min-height: 0;
    padding: 16px;
  }

  .tutorial-index-panel div,
.faq-hero-panel div{
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 68px;
    padding: 14px;
  }

  .tutorial-index-panel strong,
.faq-hero-panel strong{
    font-size: 26px;
  }
}

.docs-page .docs-sidebar,
.docs-page .docs-outline{
  background: transparent;
}

.docs-page .docs-nav-group a[aria-current="page"]{
  background: transparent;
}

.docs-page .page-hero.docs-hero{
  display: block;
}

.docs-page .page-hero.docs-hero .container{
  padding-top: 70px;
  padding-bottom: 62px;
}

.docs-page .docs-section{
  padding-top: 0;
}

.docs-page .brand,
.docs-page .nav a{
  color: #c8d5e6;
}

.docs-page .brand small{
  color: #96adc6;
}

.docs-page .nav a:hover,
.docs-page .nav a[aria-current="page"]{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.docs-page .nav-toggle{
  color: #eef6ff;
  border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 760px){
  .docs-page .nav{
    background: #071a2f;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .docs-page .nav a{
    color: #c8d5e6;
  }
}

:root{
  --heading: #102033;
  --section-heading: #0c3555;
  --heading-soft: #24364d;
  --brand: #1f6ea8;
  --brand-hover: #1f6ea8;
  --link-hover: var(--brand-hover);
  --brand-ink: #0c3555;
  --brand-soft: rgba(31, 110, 168, 0.08);
  --brand-surface: #eef5fa;
  --accent: #1f6ea8;
  --accent-hover: #1f6ea8;
  --accent-ink: #111827;
  --accent-soft: rgba(31, 110, 168, 0.14);
  --blue: var(--brand-hover);
  --green: var(--brand);
  --orange: var(--accent);
  --red: var(--brand);
}

h1,
h4,
h5,
h6,
.notice-card strong,
.price strong,
.download-option strong,
.download-file-name,
.docs-page .docs-article h1,
.docs-page .docs-article h4,
.docs-page .docs-nav-group summary{
  color: var(--heading);
}

h2,
h3,
.section-title h2,
.feature-card h3,
.platform-card h3,
.software-card h3,
.plan-card h3,
.step-card h3,
.faq-category-card h3,
.faq-question-card h3,
.faq-category-nav h2,
.faq-sidebar-card h2,
.tutorial-sidebar-card h2,
.docs-page .docs-article h2,
.docs-page .docs-article h3,
.docs-page .docs-outline h2{
  color: var(--section-heading);
}

.hero h1,
.inner-page .page-hero h1,
.client-hero-grid h1,
.client-hero-card h2,
.tutorial-hero-card h2,
.section.dark h1,
.section.dark h2,
.section.dark h3,
.site-footer h3{
  color: #ffffff;
}

.section.dark .step-card{
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 54px rgba(2, 12, 24, 0.24);
}

.section.dark .step-card h3{
  color: #ffffff;
}

.section.dark .step-card p{
  color: #d6e4f4;
}

.section.dark .step-card a{
  color: #1f6ea8;
}

.section.dark .step-card::before{
  color: #ffffff;
  background: #1f6ea8;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(31, 110, 168, 0.24);
  text-shadow: 0 1px 2px rgba(7, 26, 47, 0.22);
}

.section-title p,
.page-hero p,
.software-card dt,
.plan-features li,
.faq-detail-article p,
.docs-page .docs-article p,
.docs-page .docs-article li,
.docs-page .docs-article blockquote{
  color: var(--muted);
}

.breadcrumb a,
.param-row a,
.tutorial-section a,
.faq-detail-article a,
.faq-tip-box a,
.faq-link-box a,
.docs-article a,
.docs-page .docs-article a{
  color: var(--brand);
  text-decoration-color: rgba(31, 110, 168, 0.28);
}

.breadcrumb a:hover,
.param-row a:hover,
.tutorial-section a:hover,
.faq-detail-article a:hover,
.faq-tip-box a:hover,
.faq-link-box a:hover,
.docs-article a:hover,
.docs-page .docs-article a:hover{
  color: var(--brand-hover);
  text-decoration-color: currentColor;
}

.button.primary{
  color: var(--accent-ink) !important;
  background: var(--accent) !important;
  border-color: rgba(31, 110, 168, 0.16) !important;
  box-shadow: 0 16px 32px rgba(31, 110, 168, 0.24);
}

.button.primary:hover{
  color: var(--accent-ink) !important;
  background: var(--accent-hover) !important;
  border-color: rgba(31, 110, 168, 0.22) !important;
  box-shadow: 0 18px 36px rgba(31, 110, 168, 0.3);
}

.button.dark,
.plan-card .button{
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 14px 30px rgba(31, 110, 168, 0.22);
}

.button.dark:hover,
.plan-card .button:hover{
  color: #ffffff;
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  box-shadow: 0 16px 34px rgba(31, 110, 168, 0.24);
}

.button.secondary,
.button.outline{
  color: var(--heading);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 110, 168, 0.28);
  box-shadow: 0 8px 20px rgba(11, 31, 56, 0.06);
}

.button.secondary:hover,
.button.outline:hover{
  color: var(--brand-ink);
  background: var(--brand-surface);
  border-color: rgba(31, 110, 168, 0.46);
}

.hero .button.secondary,
.inner-page .page-hero .button.secondary,
.section.dark .button.secondary,
.client-detail-hero .button.secondary{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(31, 110, 168, 0.42);
  box-shadow: none;
}

.hero .button.secondary:hover,
.inner-page .page-hero .button.secondary:hover,
.section.dark .button.secondary:hover,
.client-detail-hero .button.secondary:hover{
  color: #ffffff;
  background: rgba(31, 110, 168, 0.14);
  border-color: rgba(31, 110, 168, 0.68);
}

.tag,
.tag.green,
.tag.red,
.download-filter.is-active,
.ribbon,
.status-pill.is-active{
  color: var(--brand-ink);
  background: var(--brand-surface);
  border: 1px solid rgba(31, 110, 168, 0.22);
}

.tag.amber{
  color: #6f4607;
  background: var(--accent-soft);
  border: 1px solid rgba(31, 110, 168, 0.28);
}

.download-filter:hover,
.download-filter.is-active:hover,
.docs-nav-group a:hover,
.docs-nav-group a[aria-current="page"],
.docs-outline a:hover,
.faq-category-nav a:hover,
.faq-category-nav a[aria-current="page"],
.faq-sidebar-card a:hover,
.faq-category-card li a:hover,
.tutorial-sidebar-card a:hover{
  color: var(--brand);
  background: var(--brand-soft);
  border-color: rgba(31, 110, 168, 0.28);
}

.docs-page .docs-nav-group a:hover,
.docs-page .docs-outline a:hover,
.docs-page .docs-nav-group a[aria-current="page"]{
  color: var(--brand);
  background: var(--brand-soft);
}

.docs-page .docs-nav-group a[aria-current="page"]{
  box-shadow: inset 3px 0 0 var(--brand);
}

.docs-article code,
.docs-page .docs-article code{
  color: var(--brand-ink);
  background: var(--brand-surface);
  border-color: rgba(31, 110, 168, 0.16);
}

.docs-article pre code,
.docs-page .docs-article pre code{
  color: inherit;
  background: transparent;
  border: 0;
}

.docs-callout,
.docs-page .docs-callout{
  border-left-color: var(--brand);
}

.docs-callout.warning,
.docs-page .docs-callout.warning{
  border-left-color: var(--accent);
}

.download-option:hover,
.software-card:hover,
.platform-card:hover,
.faq-category-card:hover,
.faq-question-card:hover,
.plan-card.recommended,
.docs-pager a:hover,
.docs-page .docs-pager a:hover{
  border-color: rgba(31, 110, 168, 0.42);
}

.feature-icon,
.tutorial-step-mark,
.faq-category-icon,
.faq-card-icon,
.plan-features li::before,
details summary::after{
  color: var(--brand);
}

.step-card::before{
  color: #ffffff;
  background: var(--brand);
}

.software-card .card-actions{
  width: 100%;
  gap: 8px;
}

.software-card .card-actions .button{
  flex: 1 1 86px;
  min-width: 86px;
  padding: 0 10px;
  font-size: 14px;
  white-space: nowrap;
}

.download-option{
  position: relative;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: auto auto;
  justify-items: stretch;
  align-items: center;
  min-height: 108px;
  padding: 16px;
  gap: 4px 14px;
  text-align: left;
}

.download-option::before{
  display: grid;
  grid-row: 1 / span 2;
  place-items: end center;
  width: 48px;
  height: 58px;
  padding: 0 5px 8px;
  color: var(--brand-ink);
  background: linear-gradient(160deg, #ffffff 0 68%, var(--brand-surface) 68%);
  border: 1px solid rgba(31, 110, 168, 0.28);
  border-radius: 8px 8px 6px 6px;
  box-shadow: 0 10px 22px rgba(20, 32, 51, 0.08);
  content: "FILE";
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.download-option::after{
  position: absolute;
  top: 16px;
  left: 52px;
  width: 12px;
  height: 12px;
  background: #e3eef7;
  border-bottom: 1px solid rgba(31, 110, 168, 0.22);
  border-left: 1px solid rgba(31, 110, 168, 0.22);
  border-radius: 0 6px 0 4px;
  content: "";
}

.download-option[href$=".exe" i]::before{
  color: #ffffff;
  background: linear-gradient(160deg, #1f6ea8 0 68%, #0c3555 68%);
  border-color: rgba(31, 110, 168, 0.36);
  content: "EXE";
}

.download-option[href$=".dmg" i]::before{
  color: var(--brand-ink);
  background: linear-gradient(160deg, #ffffff 0 68%, #d8e4ee 68%);
  border-color: rgba(31, 110, 168, 0.32);
  content: "DMG";
}

.download-option[href$=".zip" i]::before{
  color: #6f4607;
  background: linear-gradient(160deg, #eef5fa 0 68%, #d8e4ee 68%);
  border-color: rgba(31, 110, 168, 0.36);
  content: "ZIP";
}

.download-option[href$=".7z" i]::before{
  color: #6f4607;
  background: linear-gradient(160deg, #eef5fa 0 68%, #d8e4ee 68%);
  border-color: rgba(31, 110, 168, 0.36);
  content: "7Z";
}

.download-option[href$=".apk" i]::before{
  color: #ffffff;
  background: linear-gradient(160deg, #1f6ea8 0 68%, #165780 68%);
  border-color: rgba(31, 110, 168, 0.38);
  content: "APK";
}

.download-option[href$=".pkg" i]::before{
  color: var(--brand-ink);
  background: linear-gradient(160deg, #eef5fa 0 68%, #d8e4ee 68%);
  border-color: rgba(31, 110, 168, 0.32);
  content: "PKG";
}

a:not(.button):not(.brand):not(.footer-brand-link):hover,
.nav a:hover,
.docs-page .nav a:hover,
.breadcrumb a:hover,
.param-row a:hover,
.tutorial-section a:hover,
.tutorial-sidebar-card a:hover,
.faq-detail-article a:hover,
.faq-tip-box a:hover,
.faq-link-box a:hover,
.faq-category-card li a:hover,
.faq-category-nav a:hover,
.faq-sidebar-card a:hover,
.docs-article a:hover,
.docs-page .docs-article a:hover,
.docs-nav-group a:hover,
.docs-outline a:hover,
.docs-page .docs-nav-group a:hover,
.docs-page .docs-outline a:hover,
.docs-pager a:hover,
.docs-page .docs-pager a:hover,
.site-footer a:not(.footer-brand-link):hover,
.docs-page .site-footer a:not(.footer-brand-link):hover{
  color: var(--link-hover) !important;
  text-decoration-color: currentColor;
}

.download-option[href$=".exe" i]::after,
.download-option[href$=".apk" i]::after{
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(255, 255, 255, 0.36);
}

.download-option[href$=".zip" i]::after,
.download-option[href$=".7z" i]::after{
  background: #d8e4ee;
  border-color: rgba(31, 110, 168, 0.28);
}

.download-option strong,
.download-option span{
  grid-column: 2;
}

.download-option strong{
  align-self: end;
}

.download-option span{
  align-self: start;
}

.home-page .hero{
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: auto !important;
  min-height: clamp(720px, 31.25vw, 800px);
  padding-top: clamp(64px, 3.2vw, 86px);
}

.home-page .hero-inner{
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  align-self: center;
  gap: clamp(64px, 5.2vw, 128px);
  min-height: 0;
  padding: clamp(28px, 4vw, 76px) 0 clamp(16px, 2.2vw, 34px);
}

.home-page .hero-copy{
  position: relative;
  z-index: 2;
  max-width: clamp(540px, 38vw, 700px);
}

.home-page .hero h1{
  max-width: min(100%, 680px);
  font-size: clamp(44px, 3.9vw, 78px);
  line-height: 1.08;
}

.home-page .hero p{
  max-width: clamp(500px, 36vw, 640px);
  font-size: clamp(17px, 1.12vw, 25px);
  line-height: 1.72;
}

.home-page .hero-visual{
  position: relative;
  z-index: 1;
  justify-self: end;
  width: clamp(360px, 24vw, 520px);
  max-width: none;
  transform: translateX(clamp(20px, 2.8vw, 72px));
}

@media (min-width: 1600px){
  .home-page .hero-inner{
    grid-template-columns: minmax(0, 600px) minmax(360px, 400px);
    gap: 96px;
  }

  .home-page .hero-visual{
    width: 400px;
    transform: translateX(56px);
  }

}

.home-page .platform-dock{
  align-self: end;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 20px);
  margin-top: 0;
  padding-bottom: clamp(34px, 4.75vw, 60px);
}

.home-page .platform-dock a{
  min-height: clamp(82px, 4.7vw, 108px);
  padding: clamp(10px, 1vw, 18px);
}

.home-page .platform-dock-icon{
  width: clamp(42px, 3.2vw, 68px);
  height: clamp(42px, 3.2vw, 68px);
  font-size: clamp(32px, 2.5vw, 48px);
}

.home-page .platform-dock-copy span{
  font-size: clamp(14px, 1vw, 20px);
}

.home-page .platform-dock-copy strong{
  font-size: clamp(12px, 0.74vw, 15px);
}

@media (max-width: 1180px){
  .home-page .hero{
    min-height: clamp(620px, 68vw, 720px);
  }

  .home-page .hero-inner{
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: clamp(30px, 4vw, 48px);
  }

  .home-page .hero-visual{
    justify-self: center;
    width: min(100%, 292px);
    transform: translateX(12px);
  }

}

@media (max-width: 899px){
  .home-page .hero{
    display: block;
    min-height: 0;
    padding-top: 66px;
  }

  .home-page .hero .container{
    width: min(100% - 28px, 1160px);
  }

  .home-page .hero-inner{
    grid-template-columns: 1fr;
    padding: 28px 0 22px;
  }

  .home-page .hero-copy{
    order: 1;
    max-width: 720px;
  }

  .home-page .hero h1{
    font-size: clamp(34px, 6.4vw, 48px);
    white-space: normal;
  }

  .home-page .hero p{
    max-width: 680px;
    font-size: 17px;
  }

  .home-page .hero-visual{
    justify-self: center;
    width: min(100%, 340px);
    margin: 0 auto;
    transform: none;
  }

}

@media (max-width: 760px){
  html,
body{
    overflow-x: hidden;
  }

  .home-page .hero .container,
.home-page .platform-dock{
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .hero-inner{
    padding: 16px 0 26px;
  }

  .home-page .hero-copy,
.home-page .hero p,
.home-page .hero .hero-actions{
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-page .hero p{
    overflow-wrap: anywhere;
  }

  .home-page .hero .hero-actions{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-page .hero .hero-actions .button{
    min-width: 0;
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 15px;
    white-space: nowrap;
  }

  .home-page .hero .hero-actions .button.ghost{
    grid-column: 1 / -1;
  }

  .home-page #faq .hero-actions.center{
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .home-page #faq .hero-actions.center .button{
    flex: 0 1 auto;
    width: auto;
  }

  .home-page .hero-visual{
    width: min(100%, 280px);
  }

  .home-page .platform-dock{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding-bottom: 20px;
  }

  .home-page .platform-dock a{
    min-height: 66px;
    min-width: 0;
    padding: 10px 4px;
    border-color: transparent;
  }

  .home-page .platform-dock-icon{
    width: 34px;
    height: 34px;
    font-size: 30px;
  }

  .home-page .platform-dock-copy strong{
    display: none;
  }
}

@media (max-width: 420px){
  .home-page .hero h1{
    font-size: clamp(31px, 9vw, 34px);
    line-height: 1.12;
  }

  .download-hero-panel a{
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .download-hero-panel i{
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .download-filter{
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media (max-width: 360px){
  .home-page .hero h1{
    font-size: 31px;
  }
}

.comparison-page .page-hero p a{
  color: #1f6ea8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.troubleshoot-wizard{
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.troubleshoot-control-panel,
.troubleshoot-result-panel{
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(20, 32, 51, 0.07);
}

.troubleshoot-control-panel{
  display: grid;
  gap: 16px;
}

.troubleshoot-control-panel h3,
.troubleshoot-result-panel h3{
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.troubleshoot-control-panel p,
.troubleshoot-result-panel p{
  margin: 0;
  color: #46566f;
  line-height: 1.7;
}

.troubleshoot-field{
  display: grid;
  gap: 8px;
}

.troubleshoot-field span{
  color: #314158;
  font-size: 14px;
  font-weight: 900;
}

.troubleshoot-field select{
  width: 100%;
  min-height: 48px;
  padding: 0 40px 0 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.68);
  border-radius: 8px;
  font: inherit;
}

.troubleshoot-field select:focus{
  outline: 3px solid rgba(31, 110, 168, 0.18);
  border-color: var(--green);
}

.troubleshoot-result-panel{
  display: grid;
  gap: 16px;
}

.troubleshoot-platform-note{
  padding: 12px 14px;
  color: #314158;
  background: rgba(232, 238, 245, 0.72);
  border: 1px solid rgba(166, 190, 209, 0.4);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.troubleshoot-checks{
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.troubleshoot-checks li{
  position: relative;
  padding-left: 24px;
  color: #46566f;
  line-height: 1.55;
}

.troubleshoot-checks li::before{
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 14px;
  height: 14px;
  background: #1f6ea8;
  border-radius: 999px;
  box-shadow: inset 0 0 0 4px #eef5fa;
  content: "";
}

.troubleshoot-links{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.troubleshoot-result-link{
  display: flex;
  min-height: 46px;
  padding: 10px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #314158;
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.48);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.troubleshoot-result-link span{
  min-width: 0;
  overflow-wrap: anywhere;
}

.troubleshoot-result-link i{
  flex: 0 0 auto;
}

.troubleshoot-result-link:hover,
.troubleshoot-result-link.is-primary{
  color: #ffffff;
  background: #1f6ea8;
  border-color: #1f6ea8;
}

.troubleshoot-entry-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

@media (max-width: 860px){
  .troubleshoot-wizard{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .troubleshoot-control-panel,
.troubleshoot-result-panel{
    padding: 20px;
  }

  .troubleshoot-links{
    grid-template-columns: 1fr;
  }
}

.compare-coverage-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.compare-coverage-card,
.compare-selector-panel,
.compare-summary-card,
.compare-table-wrap{
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(166, 190, 209, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(20, 32, 51, 0.07);
}

.compare-coverage-card{
  display: flex;
  min-height: 150px;
  padding: 22px;
  flex-direction: column;
  gap: 12px;
}

.compare-coverage-card .platform-icon{
  width: 48px;
  height: 48px;
  font-size: 36px;
}

.compare-coverage-card h3,
.compare-summary-card h3{
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.compare-coverage-card p,
.compare-summary-card p{
  margin: 0;
  color: var(--muted);
}

.compare-summary-card dl{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.compare-summary-card dt{
  color: #314158;
  font-weight: 800;
}

.compare-summary-card dd{
  margin: 0;
}

.compare-summary-card .button{
  align-self: flex-start;
  margin-top: auto;
}

.compare-selector-panel{
  padding: 24px;
}

.compare-selector-form{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 16px;
  align-items: end;
}

.compare-field{
  display: grid;
  gap: 8px;
}

.compare-field span{
  color: #314158;
  font-size: 14px;
  font-weight: 800;
}

.compare-field select{
  width: 100%;
  min-height: 46px;
  padding: 0 40px 0 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.68);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font: inherit;
}

.compare-field select:focus{
  outline: 3px solid rgba(31, 110, 168, 0.18);
  border-color: var(--green);
}

.compare-selector-actions{
  display: grid;
  min-width: 190px;
  gap: 8px;
}

.compare-selector-actions .button{
  min-height: 46px;
  justify-content: center;
}

.button:disabled{
  cursor: not-allowed;
  opacity: 0.5;
}

.compare-coverage-grid{
  margin-top: 22px;
}

.compare-summary-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.compare-summary-card{
  display: flex;
  min-height: 230px;
  padding: 22px;
  flex-direction: column;
  gap: 12px;
}

.compare-choice-badge{
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.compare-choice-badge.winner{
  color: #ffffff;
  background: #1f6ea8;
}

.compare-choice-badge.secondary{
  color: #314158;
  background: rgba(232, 238, 245, 0.9);
  border: 1px solid rgba(166, 190, 209, 0.52);
}

.compare-decision-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.compare-decision-card{
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.38);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 32, 51, 0.07);
}

.compare-decision-top{
  display: flex;
  width: 100%;
  min-height: 28px;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.compare-decision-label{
  color: #5c6b82;
  font-size: 12px;
  font-weight: 900;
}

.compare-decision-card h3{
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.compare-decision-client{
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0 0 18px;
}

.compare-decision-client h3{
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.compare-decision-card p{
  margin: 0;
  color: #46566f;
  font-size: 14px;
  line-height: 1.65;
}

.compare-table-client{
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-client-logo{
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: 1px solid rgba(166, 190, 209, 0.5);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.08);
}

.compare-client-logo.small{
  width: 42px;
  height: 42px;
}

.compare-client-logo img{
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.compare-client-logo.small img{
  width: 30px;
  height: 30px;
}

.compare-table-wrap{
  overflow-x: auto;
}

.compare-table{
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.compare-pair-table{
  min-width: 880px;
}

.compare-pair-table th:first-child{
  width: 168px;
}

.compare-row-difference{
  background: rgba(255, 255, 255, 0.92);
}

.compare-table th,
.compare-table td{
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(166, 190, 209, 0.36);
}

.compare-table th{
  color: #26364d;
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.compare-table-client span:last-child{
  color: var(--ink);
  font-size: 16px;
}

.compare-table td{
  color: #46566f;
  font-size: 14px;
  line-height: 1.65;
}

.compare-table strong{
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.compare-table a:not(.button){
  color: var(--green);
  font-weight: 800;
}

.compare-pair-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 1024px){
  .compare-coverage-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-summary-grid{
    grid-template-columns: 1fr;
  }

  .compare-decision-grid{
    grid-template-columns: 1fr;
  }

  .compare-selector-form{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-selector-actions{
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px){
  .compare-coverage-grid,
.compare-selector-form{
    grid-template-columns: 1fr;
  }

  .compare-coverage-card,
.compare-summary-card,
.compare-selector-panel{
    min-height: 0;
    padding: 20px;
  }

  .compare-decision-client{
    align-items: flex-start;
  }
}

@media (max-width: 760px){

}

@media (max-width: 760px){
  .nav,
.docs-page .nav{
    background: rgba(248, 251, 255, 0.98) !important;
    border-color: rgba(7, 26, 47, 0.16) !important;
    box-shadow: 0 18px 44px rgba(7, 26, 47, 0.22);
  }

  .nav a,
.docs-page .nav a{
    color: #26364d !important;
    background: transparent;
    font-weight: 800;
  }

  .nav a:hover,
.nav a[aria-current="page"],
.docs-page .nav a:hover,
.docs-page .nav a[aria-current="page"]{
    color: var(--green) !important;
    background: rgba(31, 110, 168, 0.1);
  }

}

@media (max-width: 760px){

}

:root{
  --bg: #f7fbfc;
  --panel: #ffffff;
  --ink: #172536;
  --muted: #5f7284;
  --line: #dce9ee;
  --navy: #17445a;
  --blue: #2f7fc1;
  --cyan: #1f6ea8;
  --green: #1f6ea8;
  --amber: #1f6ea8;
  --orange: #1f6ea8;
  --red: #d76565;
  --brand: #1f6ea8;
  --brand-hover: #165780;
  --brand-ink: #0c3555;
  --brand-soft: rgba(31, 110, 168, 0.08);
  --brand-surface: #eef5fa;
  --accent: #1f6ea8;
  --accent-hover: #d8e4ee;
  --accent-soft: rgba(31, 110, 168, 0.14);
  --heading: #172536;
  --section-heading: #163642;
  --surface-bg: #f7fbfc;
  --shadow: 0 14px 34px rgba(21, 51, 70, 0.08);
  --hero-bg: #eef5fa;
  --hero-pattern:
    linear-gradient(90deg, rgba(31, 110, 168, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 110, 168, 0.07) 1px, transparent 1px);
  --site-grid:
    linear-gradient(90deg, rgba(31, 110, 168, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 110, 168, 0.04) 1px, transparent 1px),
    var(--surface-bg);
}

body,
body.docs-page,
.section,
.section.white,
.docs-page .docs-section{
  color: var(--ink);
  background: var(--site-grid);
  background-size: 76px 76px, 76px 76px, auto;
}

.home-page .site-header,
.inner-page .site-header,
.docs-page .site-header{
  color: var(--ink);
  background: rgba(247, 251, 252, 0.78);
  border-bottom-color: rgba(31, 110, 168, 0.14);
  backdrop-filter: blur(14px);
}

.brand,
.docs-page .brand{
  color: var(--ink);
}

.brand small,
.docs-page .brand small{
  color: #607184;
}

.brand-mark,
.docs-page .brand-mark,
.footer-logo{
  background: #ffffff;
  border-color: rgba(31, 110, 168, 0.16);
  box-shadow: 0 10px 24px rgba(21, 51, 70, 0.08);
}

.nav a,
.docs-page .nav a{
  color: #36485a;
}

.nav a:hover,
.nav a[aria-current="page"],
.docs-page .nav a:hover,
.docs-page .nav a[aria-current="page"]{
  color: #ffffff;
  background: var(--green);
}

.nav-toggle,
.docs-page .nav-toggle{
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(31, 110, 168, 0.22);
}

.hero,
.inner-page .page-hero,
.section.dark,
.section.dark.hero-effect-section,
.docs-page .page-hero.docs-hero{
  color: var(--ink);
  background: var(--hero-bg);
}

.hero::before,
.inner-page .page-hero::before{
  background: var(--hero-pattern);
  background-size: 76px 76px, 76px 76px;
  opacity: 1;
}

.hero::after,
.inner-page .page-hero::after,
.section.dark.hero-effect-section::after{
  display: none;
}

.hero h1,
.inner-page .page-hero h1,
.client-hero-grid h1,
.section.dark h1,
.section.dark h2,
.section.dark h3,
.docs-page .page-hero h1{
  color: var(--heading);
  text-shadow: none;
}

.hero p,
.inner-page .page-hero p,
.section.dark p,
.docs-page .page-hero p{
  color: var(--muted);
}

.inner-page .breadcrumb a,
.section.dark .step-card a{
  color: var(--green);
}

.hero-metrics span,
.tutorial-index-panel,
.faq-hero-panel,
.client-hero-card,
.tutorial-hero-card{
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(31, 110, 168, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-metrics span{
  color: var(--brand-ink);
}

.hero-metrics strong,
.client-hero-card h2,
.client-hero-card p,
.client-hero-card dl,
.tutorial-hero-card h2,
.tutorial-hero-card p{
  color: var(--heading);
}

.download-panel-heading span,
.tutorial-index-panel strong,
.faq-hero-panel strong{
  color: var(--green);
}

.download-hero-panel a,
.tutorial-index-panel div,
.faq-hero-panel div,
.section.dark .step-card{
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(31, 110, 168, 0.18);
  box-shadow: 0 10px 24px rgba(21, 51, 70, 0.06);
}

.download-hero-panel a:hover{
  background: #ffffff;
  border-color: rgba(31, 110, 168, 0.36);
}

.download-hero-panel strong,
.tutorial-index-panel span,
.faq-hero-panel span,
.section.dark .step-card h3{
  color: var(--heading);
}

.download-hero-panel small,
.section.dark .step-card p{
  color: var(--muted);
}

.download-hero-panel{
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(31, 110, 168, 0.16);
  box-shadow: 0 16px 34px rgba(21, 51, 70, 0.08);
  backdrop-filter: blur(10px);
}

.download-panel-heading strong{
  color: var(--heading);
}

.download-panel-heading span,
.download-hero-panel i{
  color: var(--green);
}

.download-hero-panel a{
  background: rgba(255, 255, 255, 0.76);
}

.download-hero-panel a:hover{
  background: #ffffff;
}

.button.primary{
  color: #172536 !important;
  background: var(--amber) !important;
  border-color: rgba(31, 110, 168, 0.16) !important;
  box-shadow: 0 12px 26px rgba(31, 110, 168, 0.24);
}

.button.primary:hover{
  background: var(--accent-hover) !important;
  box-shadow: 0 14px 30px rgba(31, 110, 168, 0.28);
}

.button.dark,
.plan-card .button,
.troubleshoot-result-link.is-primary{
  color: #ffffff !important;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 12px 24px rgba(31, 110, 168, 0.18);
}

.button.dark:hover,
.plan-card .button:hover,
.troubleshoot-result-link:hover{
  color: #ffffff !important;
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}

.button.secondary,
.button.outline,
.hero .button.secondary,
.button.ghost,
.inner-page .page-hero .button.secondary,
.section.dark .button.secondary,
.client-detail-hero .button.secondary{
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 110, 168, 0.24);
  box-shadow: none;
}

.button.secondary:hover,
.button.outline:hover,
.hero .button.secondary:hover,
.button.ghost:hover,
.inner-page .page-hero .button.secondary:hover,
.section.dark .button.secondary:hover,
.client-detail-hero .button.secondary:hover{
  color: var(--brand-ink);
  background: #ffffff;
  border-color: rgba(31, 110, 168, 0.42);
}

.feature-card,
.platform-card,
.software-card,
.recommendation-card,
.download-path-card,
.download-safety-card,
.faq-category-card,
.faq-question-card,
.faq-detail-article,
.faq-tip-box,
.faq-link-box,
.faq-sidebar-card,
.faq-category-nav,
.detail-panel,
.tutorial-section,
.tutorial-sidebar-card,
.docs-article,
.docs-sidebar,
.docs-outline,
.troubleshoot-control-panel,
.troubleshoot-result-panel,
.compare-selector-panel,
.compare-coverage-card,
.compare-summary-card,
.compare-table-wrap,
.plan-card,
.notice-card,
.faq-card,
details.faq-card{
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(31, 110, 168, 0.14);
  box-shadow: 0 12px 28px rgba(21, 51, 70, 0.06);
}

.download-toolbar,
.download-filter,
.tag,
.tag.green,
.tag.red,
.ribbon,
.status-pill.is-active,
.troubleshoot-platform-note,
.compare-choice-badge.secondary{
  color: var(--brand-ink);
  background: var(--brand-surface);
  border-color: rgba(31, 110, 168, 0.18);
}

.download-filter.is-active,
.compare-choice-badge.winner{
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.tag.amber{
  color: #6f4b0c;
  background: #eef5fa;
  border-color: rgba(31, 110, 168, 0.28);
}

.feature-icon,
.platform-icon,
.faq-category-icon,
.faq-card-icon,
.tutorial-step-mark,
.download-path-icon,
.download-safety-card > span{
  color: var(--green);
  background: #eef5fa;
  border-color: rgba(31, 110, 168, 0.16);
}

.troubleshoot-checks li::before{
  background: var(--green);
  box-shadow: inset 0 0 0 4px #e3eef7;
}

.troubleshoot-result-link,
.faq-category-card li a,
.faq-category-nav a,
.faq-sidebar-card a,
.docs-nav-group a,
.docs-pager a,
.download-next-steps a,
.home-topic-links a{
  color: #314253;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 110, 168, 0.16);
}

.site-footer,
.docs-page .site-footer{
  color: #5f7284;
  background: #eef3f7;
  border-top: 1px solid rgba(31, 110, 168, 0.14);
}

.site-footer::before,
.site-footer::after,
.docs-page .site-footer::before,
.docs-page .site-footer::after{
  display: none;
}

.footer-brand h3,
.site-footer h3,
.docs-page .footer-brand h3,
.docs-page .site-footer h3{
  color: var(--heading);
}

.footer-brand p,
.footer-links a,
.footer-bottom,
.docs-page .footer-brand p,
.docs-page .footer-links a,
.docs-page .footer-bottom{
  color: #5f7284;
}

.footer-links a:hover{
  color: var(--green);
}

@media (max-width: 760px){
  .nav,
.docs-page .nav{
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(31, 110, 168, 0.16) !important;
    box-shadow: 0 18px 40px rgba(21, 51, 70, 0.14);
  }

  .nav a,
.docs-page .nav a{
    color: #314253 !important;
  }

  .nav a:hover,
.nav a[aria-current="page"],
.docs-page .nav a:hover,
.docs-page .nav a[aria-current="page"]{
    color: #ffffff !important;
    background: var(--green);
  }
}

:root{
  --bg: #f6f9fc;
  --panel: #ffffff;
  --ink: #132235;
  --muted: #5c6f83;
  --line: #d9e5ef;
  --navy: #0c2d49;
  --blue: #236fae;
  --cyan: #5bb4cc;
  --green: #236fae;
  --amber: #1f6ea8;
  --orange: #1f6ea8;
  --red: #c95c5c;
  --brand: #236fae;
  --brand-hover: #17578d;
  --brand-ink: #0e3658;
  --brand-soft: rgba(35, 111, 174, 0.09);
  --brand-surface: #edf5fb;
  --accent: #236fae;
  --accent-hover: #17578d;
  --accent-soft: rgba(35, 111, 174, 0.12);
  --heading: #132235;
  --section-heading: #12304a;
  --surface-bg: #f6f9fc;
  --shadow: 0 14px 34px rgba(13, 46, 74, 0.08);
  --hero-bg: #f1f7fb;
  --hero-pattern:
    linear-gradient(90deg, rgba(35, 111, 174, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(35, 111, 174, 0.065) 1px, transparent 1px);
  --site-grid:
    linear-gradient(90deg, rgba(35, 111, 174, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(35, 111, 174, 0.035) 1px, transparent 1px),
    var(--surface-bg);
}

.home-page .site-header,
.inner-page .site-header,
.docs-page .site-header{
  background: rgba(248, 251, 254, 0.86);
  border-bottom-color: rgba(35, 111, 174, 0.13);
}

.brand-mark,
.docs-page .brand-mark,
.footer-logo,
.software-logo,
.client-hero-logo,
.compare-client-logo,
.related-client img,
.choice-client img{
  background: #ffffff;
  border-color: rgba(35, 111, 174, 0.18);
  box-shadow: 0 10px 24px rgba(13, 46, 74, 0.09);
}

.brand-mark img,
.docs-page .brand-mark img,
.footer-logo img,
.software-logo img,
.client-hero-logo img,
.compare-client-logo img,
.related-client img,
.choice-client img{
  filter: none;
  opacity: 1;
}

.nav a:hover,
.nav a[aria-current="page"],
.docs-page .nav a:hover,
.docs-page .nav a[aria-current="page"],
.download-filter.is-active,
.compare-choice-badge.winner{
  background: var(--brand);
}

.nav-toggle,
.docs-page .nav-toggle{
  border-color: rgba(35, 111, 174, 0.18);
}

.inner-page .breadcrumb a,
.download-panel-heading span,
.download-hero-panel i,
.tutorial-index-panel strong,
.faq-hero-panel strong,
.faq-card-icon,
.feature-icon,
.platform-icon,
.faq-category-icon,
.tutorial-step-mark,
.download-path-icon,
.download-safety-card > span{
  color: var(--brand);
}

.hero-metrics span,
.tutorial-index-panel,
.faq-hero-panel,
.client-hero-card,
.tutorial-hero-card,
.download-hero-panel a,
.tutorial-index-panel div,
.faq-hero-panel div,
.section.dark .step-card,
.feature-card,
.platform-card,
.software-card,
.recommendation-card,
.download-path-card,
.download-safety-card,
.faq-category-card,
.faq-question-card,
.faq-detail-article,
.faq-tip-box,
.faq-link-box,
.faq-sidebar-card,
.faq-category-nav,
.detail-panel,
.tutorial-section,
.tutorial-sidebar-card,
.docs-article,
.docs-sidebar,
.docs-outline,
.troubleshoot-control-panel,
.troubleshoot-result-panel,
.compare-selector-panel,
.compare-coverage-card,
.compare-summary-card,
.compare-table-wrap,
.plan-card,
.notice-card,
.faq-card,
details.faq-card{
  border-color: rgba(35, 111, 174, 0.13);
  box-shadow: 0 12px 28px rgba(13, 46, 74, 0.06);
}

.download-toolbar,
.download-filter,
.tag,
.tag.green,
.tag.red,
.ribbon,
.status-pill.is-active,
.troubleshoot-platform-note,
.compare-choice-badge.secondary,
.feature-icon,
.platform-icon,
.faq-category-icon,
.faq-card-icon,
.tutorial-step-mark,
.download-path-icon,
.download-safety-card > span{
  color: var(--brand-ink);
  background: var(--brand-surface);
  border-color: rgba(35, 111, 174, 0.16);
}

.button.primary{
  color: #ffffff !important;
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  box-shadow: 0 12px 26px rgba(35, 111, 174, 0.2);
}

.button.primary:hover{
  background: var(--brand-hover) !important;
  border-color: var(--brand-hover) !important;
  box-shadow: 0 14px 30px rgba(35, 111, 174, 0.24);
}

.button.dark,
.plan-card .button,
.troubleshoot-result-link.is-primary{
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 12px 24px rgba(35, 111, 174, 0.18);
}

.button.dark:hover,
.plan-card .button:hover,
.troubleshoot-result-link:hover{
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}

.button.secondary,
.button.outline,
.hero .button.secondary,
.button.ghost,
.inner-page .page-hero .button.secondary,
.section.dark .button.secondary,
.client-detail-hero .button.secondary,
.troubleshoot-result-link,
.faq-category-card li a,
.faq-category-nav a,
.faq-sidebar-card a,
.docs-nav-group a,
.docs-pager a,
.download-next-steps a,
.home-topic-links a{
  color: var(--brand-ink);
  border-color: rgba(35, 111, 174, 0.2);
}

.software-card.is-featured,
.recommendation-card.is-recommended,
.plan-card.recommended{
  border-color: rgba(35, 111, 174, 0.28);
}

.platform-dock a{
  color: var(--heading);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(35, 111, 174, 0.14);
  box-shadow: 0 12px 28px rgba(13, 46, 74, 0.06);
}

.platform-dock a:hover{
  border-color: rgba(35, 111, 174, 0.32);
}

.site-footer,
.docs-page .site-footer{
  background: #f2f7fb;
  border-top-color: rgba(35, 111, 174, 0.13);
}

@media (max-width: 760px){
  .nav,
.docs-page .nav{
    border-color: rgba(35, 111, 174, 0.16) !important;
    box-shadow: 0 18px 40px rgba(13, 46, 74, 0.14);
  }

  .nav a:hover,
.nav a[aria-current="page"],
.docs-page .nav a:hover,
.docs-page .nav a[aria-current="page"]{
    background: var(--brand);
  }
}

.feature-card::after,
.recommendation-card::before,
.trust-card::before,
.download-path-card::before,
.download-safety-card::before{
  background: linear-gradient(90deg, rgba(35, 111, 174, 0.16), rgba(91, 180, 204, 0.42), rgba(35, 111, 174, 0.16));
}

.platform-card::before,
.software-card::after,
.client-hero-card::after{
  background: linear-gradient(135deg, rgba(35, 111, 174, 0.08), transparent 38%, rgba(91, 180, 204, 0.09));
}

.software-card.is-featured::before,
.step-card::before,
.tutorial-step-mark,
.troubleshoot-checks li::before{
  background: var(--brand);
}

.troubleshoot-checks li::before{
  box-shadow: inset 0 0 0 4px #d9ebf7;
}

.recommendation-card.is-recommended,
.software-card.is-featured,
.plan-card.recommended{
  border-color: rgba(35, 111, 174, 0.3);
}

.choice-client-label,
.choice-client strong,
.compare-decision-card h3,
.compare-decision-client h3,
.compare-table-client span:last-child{
  color: var(--brand-ink);
}

a:not(.button):not(.brand):not(.footer-brand-link):hover,
.footer-links a:hover,
.site-footer a:not(.footer-brand-link):hover,
.docs-page .site-footer a:not(.footer-brand-link):hover{
  color: var(--brand);
}

:root{
  --bg: #f5f7fa;
  --surface-bg: #f5f7fa;
  --hero-bg: linear-gradient(180deg, #f9fbfd 0%, #eef4f8 100%);
  --site-grid: #f5f7fa;
  --hero-pattern: none;
  --brand: #1f6ea8;
  --brand-hover: #165780;
  --brand-ink: #0c3555;
  --brand-soft: rgba(31, 110, 168, 0.09);
  --brand-surface: #eef5fa;
  --heading: #132235;
  --muted: #53687c;
  --line: #d8e4ee;
  --shadow: 0 14px 34px rgba(17, 48, 76, 0.08);
}

body,
body.docs-page,
.section,
.section.white,
.docs-page .docs-section{
  background: var(--surface-bg);
  background-image: none;
}

.home-page .site-header,
.inner-page .site-header,
.docs-page .site-header{
  position: sticky;
  top: 0;
  right: auto;
  left: auto;
  z-index: 40;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(31, 110, 168, 0.14);
  box-shadow: 0 10px 26px rgba(17, 48, 76, 0.06);
  backdrop-filter: blur(16px);
}

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

.brand,
.docs-page .brand,
.site-footer .footer-brand-link{
  color: var(--heading);
}

.brand small,
.docs-page .brand small{
  color: #627589;
}

.nav a,
.docs-page .nav a{
  color: #364b5f;
  font-size: 15px;
  font-weight: 800;
}

@media (min-width: 761px){

}

.nav a:hover,
.nav a[aria-current="page"],
.docs-page .nav a:hover,
.docs-page .nav a[aria-current="page"]{
  color: #ffffff;
  background: var(--brand);
}

.hero,
.inner-page .page-hero,
.section.dark,
.section.dark.hero-effect-section,
.docs-page .page-hero.docs-hero{
  color: var(--ink);
  background: var(--hero-bg);
}

.hero::before,
.inner-page .page-hero::before,
.section.dark.hero-effect-section::before{
  display: none;
}

.home-page .hero{
  min-height: clamp(580px, 30vw, 680px);
  padding-top: 0;
  border-bottom: 1px solid rgba(31, 110, 168, 0.1);
}

.home-page .hero-inner{
  padding: clamp(42px, 3.2vw, 62px) 0 clamp(20px, 2vw, 34px);
}

.home-page .hero h1,
.hero h1,
.inner-page .page-hero h1{
  max-width: 820px;
  color: var(--heading);
  font-size: clamp(40px, 3.35vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.home-page .hero p,
.hero p,
.inner-page .page-hero p,
.section.dark p{
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 1.02vw, 21px);
  line-height: 1.72;
}

.hero-metrics span{
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(31, 110, 168, 0.16);
  box-shadow: 0 8px 20px rgba(17, 48, 76, 0.05);
}

.download-hero-panel,
.home-choice-preview{
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(31, 110, 168, 0.14);
  box-shadow: 0 22px 48px rgba(17, 48, 76, 0.1);
}

.download-panel-heading strong,
.home-compare-heading strong{
  color: var(--heading);
}

.download-panel-heading span,
.choice-client-label,
.home-compare-platform span{
  color: var(--brand);
}

.download-hero-panel a,
.home-compare-platform,
.choice-client{
  color: var(--ink);
  background: #f8fbfd;
  border-color: rgba(31, 110, 168, 0.14);
  box-shadow: none;
}

.download-hero-panel strong,
.choice-client strong,
.platform-dock-copy span{
  color: var(--heading);
}

.download-hero-panel small,
.home-compare-heading span,
.home-compare-submit-row p{
  color: var(--muted);
}

.button.primary,
.button.dark,
.plan-card .button,
.troubleshoot-result-link.is-primary,
.home-compare-submit-row .button{
  color: #ffffff !important;
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  box-shadow: 0 12px 24px rgba(31, 110, 168, 0.18);
}

.button.primary:hover,
.button.dark:hover,
.plan-card .button:hover,
.troubleshoot-result-link:hover,
.home-compare-submit-row .button:hover{
  color: #ffffff !important;
  background: var(--brand-hover) !important;
  border-color: var(--brand-hover) !important;
}

.button.secondary,
.button.outline,
.button.ghost,
.hero .button.secondary,
.inner-page .page-hero .button.secondary,
.section.dark .button.secondary,
.client-detail-hero .button.secondary,
.home-choice .button.secondary,
.home-choice .button.outline,
.home-choice .button.ghost{
  color: var(--brand-ink) !important;
  background: #ffffff;
  border-color: rgba(31, 110, 168, 0.2);
}

.home-choice-section{
  background: #f5f7fa;
}

.home-choice-copy h2,
.section.dark .home-choice-copy h2{
  max-width: 620px;
  color: var(--heading);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.12;
}

.home-choice-copy p,
.section.dark .home-choice-copy p{
  color: var(--muted);
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.75;
}

.home-choice-meta span{
  background: #ffffff;
  border-color: rgba(31, 110, 168, 0.16);
}

.home-choice-meta span{
  color: var(--brand-ink);
}

.choice-client strong{
  font-size: 18px;
}

.choice-versus{
  color: var(--brand-ink);
  background: #d9edf7;
}

.platform-dock a{
  color: var(--heading);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(31, 110, 168, 0.14);
  box-shadow: 0 12px 26px rgba(17, 48, 76, 0.07);
}

.platform-dock-icon{
  color: var(--brand);
  opacity: 1;
  filter: none;
}

.platform-dock-copy strong{
  color: var(--brand);
}

.feature-card,
.platform-card,
.software-card,
.recommendation-card,
.download-path-card,
.download-safety-card,
.faq-category-card,
.faq-question-card,
.faq-detail-article,
.faq-tip-box,
.faq-link-box,
.faq-sidebar-card,
.faq-category-nav,
.detail-panel,
.tutorial-section,
.tutorial-sidebar-card,
.docs-article,
.docs-sidebar,
.docs-outline,
.troubleshoot-control-panel,
.troubleshoot-result-panel,
.compare-selector-panel,
.compare-coverage-card,
.compare-summary-card,
.compare-table-wrap,
.plan-card,
.notice-card,
.faq-card,
details.faq-card{
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(31, 110, 168, 0.12);
}

.site-footer,
.docs-page .site-footer{
  color: var(--muted);
  background: #eef3f7;
  border-top-color: rgba(31, 110, 168, 0.12);
}

.footer-brand h3,
.site-footer h3,
.docs-page .footer-brand h3,
.docs-page .site-footer h3,
.site-footer .footer-brand-link{
  color: var(--heading);
}

.footer-brand p,
.site-footer p,
.site-footer a,
.footer-links a,
.footer-bottom,
.docs-page .footer-brand p,
.docs-page .footer-links a,
.docs-page .footer-bottom{
  color: #5e7184;
}

@media (max-width: 899px){
  .home-page .hero{
    min-height: 0;
    padding-top: 0;
  }
}

@media (max-width: 760px){
  .home-page .site-header,
.inner-page .site-header,
.docs-page .site-header{
    position: sticky;
  }

  .home-page .hero h1,
.hero h1,
.inner-page .page-hero h1{
    font-size: clamp(32px, 8vw, 42px);
  }

  .nav,
.docs-page .nav{
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(31, 110, 168, 0.16) !important;
  }
}

.feature-card,
.trust-card,
.download-safety-card,
.compare-coverage-card,
.notice-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.platform-card,
.recommendation-card,
.software-card,
.download-path-card,
.faq-category-card,
.faq-question-card,
.compare-summary-card,
.plan-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon,
.platform-icon,
.trust-card > span,
.download-path-icon,
.download-safety-card > span,
.faq-category-icon,
.faq-card-icon,
.compare-coverage-card .platform-icon{
  margin-right: auto;
  margin-left: auto;
}

.feature-card h3,
.platform-card h3,
.recommendation-card h3,
.software-card h3,
.trust-card h3,
.download-path-card h3,
.download-safety-card h3,
.faq-category-card h3,
.faq-question-card h3,
.compare-coverage-card h3,
.compare-summary-card h3,
.plan-card h3,
.notice-card strong{
  width: 100%;
  text-align: center;
}

.feature-card p,
.platform-card p,
.recommendation-card p,
.software-card p,
.trust-card p,
.download-path-card p,
.download-safety-card p,
.faq-category-card p,
.faq-question-card p,
.compare-coverage-card p,
.compare-summary-card p,
.notice-card p{
  width: 100%;
  max-width: 46ch;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.software-top,
.recommendation-head{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 94px;
  margin-bottom: 18px;
  text-align: center;
}

.ribbon,
.plan-card .badge{
  position: static;
  align-self: center;
  margin: 0;
}

.software-logo,
.recommendation-head .software-logo{
  margin-right: auto;
  margin-left: auto;
}

.software-card dl,
.recommendation-card dl,
.compare-summary-card dl{
  align-self: center;
  justify-content: center;
  width: min(100%, 310px);
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.download-path-card ul,
.faq-category-card ul,
.plan-features{
  align-self: center;
  width: min(100%, 330px);
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.card-actions,
.recommendation-actions,
.platform-card .button,
.software-card .button,
.download-path-card .button,
.download-safety-card a,
.faq-category-card .button,
.faq-question-card .button,
.compare-summary-card .button,
.plan-card .button{
  margin-top: auto;
}

.card-actions,
.recommendation-actions{
  width: 100%;
  padding-top: 22px;
}

.platform-card .button,
.download-path-card .button,
.faq-category-card .button,
.faq-question-card .button,
.compare-summary-card .button,
.plan-card .button{
  align-self: stretch;
  justify-content: center;
}

.download-safety-card a{
  align-self: center;
}

.feature-card,
.trust-card,
.download-safety-card,
.compare-coverage-card{
  min-height: 250px;
}

.software-card,
.recommendation-card,
.download-path-card,
.faq-category-card,
.faq-question-card,
.compare-decision-card,
.tutorial-index-card,
.tutorial-path-card,
.client-hero-card,
.tutorial-hero-card,
.plan-card{
  justify-content: flex-start;
}

.step-card,
.tutorial-index-card,
.tutorial-path-card,
.client-hero-card,
.tutorial-hero-card,
.compare-decision-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-card{
  justify-content: center;
}

.step-card h3,
.tutorial-index-card h3,
.tutorial-path-card h2,
.client-hero-card h2,
.tutorial-hero-card h2,
.compare-decision-card h3{
  width: 100%;
  text-align: center;
}

.step-card p,
.tutorial-index-card p,
.tutorial-path-card p,
.client-hero-card p,
.tutorial-hero-card p,
.compare-decision-card p{
  max-width: 46ch;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.client-quick-facts,
.tutorial-path-card ul,
.tutorial-index-card ul{
  align-self: center;
  width: min(100%, 330px);
  text-align: left;
}

.compare-decision-top{
  justify-content: center;
  align-self: stretch;
  margin-bottom: 22px;
  text-align: center;
}

.compare-decision-client{
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.compare-decision-top + h3{
  margin-top: 4px;
}

.compare-decision-client .compare-client-logo{
  margin-right: auto;
  margin-left: auto;
}

.tutorial-index-card .button,
.tutorial-path-card .button,
.step-card .button,
.compare-decision-card .button{
  margin-top: auto;
}

.faq-sidebar-card h2,
.tutorial-sidebar-card h2{
  text-align: center;
}

:root{
  --blue: #1f6ea8;
  --cyan: #1f6ea8;
  --green: #1f6ea8;
  --amber: #1f6ea8;
  --orange: #1f6ea8;
  --red: #1f6ea8;
  --brand: #1f6ea8;
  --brand-hover: #165780;
  --brand-ink: #0c3555;
  --brand-soft: rgba(31, 110, 168, 0.09);
  --brand-surface: #eef5fa;
  --accent: #1f6ea8;
  --accent-hover: #165780;
  --accent-soft: rgba(31, 110, 168, 0.1);
}

.feature-card::after,
.recommendation-card::before,
.trust-card::before,
.download-path-card::before,
.download-safety-card::before{
  background: linear-gradient(90deg, rgba(31, 110, 168, 0.12), rgba(31, 110, 168, 0.34), rgba(31, 110, 168, 0.12));
}

.platform-card::before,
.software-card::after,
.client-hero-card::after,
.section.dark.hero-effect-section::after{
  background: linear-gradient(135deg, rgba(31, 110, 168, 0.08), transparent 42%, rgba(31, 110, 168, 0.06));
}

.feature-icon,
.trust-card > span,
.download-path-icon,
.download-safety-card > span,
.download-hero-panel i,
.step-card::before,
.tutorial-step-mark,
.software-card.is-featured::before,
.troubleshoot-checks li::before,
.choice-versus{
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: none;
}

.platform-icon,
.faq-category-icon,
.faq-card-icon,
.compare-coverage-card .platform-icon{
  color: var(--brand);
  background: var(--brand-surface);
  border-color: rgba(31, 110, 168, 0.16);
}

.inner-page .breadcrumb a,
.download-panel-heading span,
.tutorial-index-panel strong,
.faq-hero-panel strong,
.choice-client-label,
.home-compare-platform span,
.plan-features li::before,
details.faq-card summary::after,
.docs-nav-group a:hover,
.faq-sidebar-card a:hover,
.tutorial-sidebar-card a:hover,
.faq-category-card li a:hover,
.site-footer a:hover{
  color: var(--brand);
}

.tag,
.tag.green,
.tag.amber,
.tag.red,
.ribbon,
.plan-card .badge,
.download-filter,
.status-pill,
.status-pill.is-active,
.compare-choice-badge,
.compare-choice-badge.secondary,
.troubleshoot-platform-note,
.home-choice-meta span{
  color: var(--brand-ink);
  background: var(--brand-surface);
  border-color: rgba(31, 110, 168, 0.18);
}

.download-filter.is-active,
.compare-choice-badge.winner,
.button.primary,
.button.dark,
.plan-card .button,
.troubleshoot-result-link.is-primary,
.home-compare-submit-row .button{
  color: #ffffff !important;
  background: var(--brand) !important;
  border-color: var(--brand) !important;
}

.button.primary:hover,
.button.dark:hover,
.plan-card .button:hover,
.troubleshoot-result-link:hover,
.home-compare-submit-row .button:hover,
.download-filter.is-active:hover{
  color: #ffffff !important;
  background: var(--brand-hover) !important;
  border-color: var(--brand-hover) !important;
}

.feature-card,
.platform-card,
.recommendation-card,
.trust-card,
.software-card,
.download-path-card,
.download-safety-card,
.faq-category-card,
.faq-question-card,
.compare-coverage-card,
.compare-summary-card,
.compare-decision-card,
.tutorial-index-card,
.tutorial-path-card,
.client-hero-card,
.tutorial-hero-card,
.step-card,
.plan-card,
.notice-card,
.faq-card,
details.faq-card{
  border-color: rgba(31, 110, 168, 0.13);
}

.software-card.is-featured,
.recommendation-card.is-recommended,
.plan-card.recommended{
  border-color: rgba(31, 110, 168, 0.26);
}

.recommendation-actions a,
.card-actions .button,
.button.secondary,
.button.outline,
.button.ghost,
.faq-category-card li a,
.faq-category-nav a,
.faq-sidebar-card a,
.tutorial-sidebar-card a,
.docs-nav-group a,
.docs-pager a,
.download-next-steps a,
.home-topic-links a,
.troubleshoot-result-link{
  color: var(--brand-ink);
  background: #ffffff;
  border-color: rgba(31, 110, 168, 0.18);
}

.recommendation-actions a:hover,
.card-actions .button:hover,
.button.secondary:hover,
.button.outline:hover,
.button.ghost:hover,
.faq-category-card li a:hover,
.faq-category-nav a:hover,
.faq-sidebar-card a:hover,
.tutorial-sidebar-card a:hover,
.docs-nav-group a:hover,
.docs-pager a:hover,
.download-next-steps a:hover,
.home-topic-links a:hover{
  color: var(--brand);
  background: var(--brand-surface);
  border-color: rgba(31, 110, 168, 0.28);
}

.hero-metrics span,
.download-toolbar,
.download-hero-panel,
.home-choice-preview,
.tutorial-index-panel,
.faq-hero-panel,
.client-quick-facts div,
.client-note-list li{
  border-color: rgba(31, 110, 168, 0.14);
}

.client-hero-card,
.tutorial-hero-card{
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.client-hero-card h2,
.client-hero-card p,
.client-hero-card dl,
.tutorial-hero-card h2,
.tutorial-hero-card p{
  color: var(--heading);
}

.tutorial-hero-card .tutorial-meta-list span{
  color: var(--brand-ink);
  background: rgba(31, 110, 168, 0.07);
  border-color: rgba(31, 110, 168, 0.18);
  font-weight: 800;
}

.client-quick-facts dt,
.client-quick-facts dd{
  color: var(--brand-ink);
}

.inner-page .page-hero,
.docs-page .page-hero.docs-hero{
  padding-top: 0;
}

.inner-page .page-hero .container,
.page-hero .container,
.docs-page .page-hero.docs-hero .container{
  padding-top: clamp(38px, 4vw, 58px);
  padding-bottom: clamp(42px, 4vw, 64px);
}

.download-hero .container,
.client-detail-hero .container{
  padding-top: clamp(38px, 4vw, 58px);
}

@media (max-width: 760px){
  .inner-page .page-hero .container,
.page-hero .container,
.docs-page .page-hero.docs-hero .container{
    padding-top: 28px;
    padding-bottom: 38px;
  }
}

.inner-page .page-hero .container,
.page-hero .container,
.docs-page .page-hero.docs-hero .container{
  padding-top: clamp(30px, 3vw, 44px);
  padding-bottom: clamp(38px, 3.5vw, 56px);
}

.download-hero-grid,
.client-hero-grid,
.tutorial-index-hero-grid,
.tutorial-hero-grid,
.faq-hero-grid{
  align-items: start;
}

.download-hero-grid,
.client-hero-grid,
.tutorial-index-hero-grid,
.tutorial-hero-grid,
.faq-hero-grid{
  align-items: center;
}

@media (max-width: 760px){
  .inner-page .page-hero .container,
.page-hero .container,
.docs-page .page-hero.docs-hero .container{
    padding-top: 24px;
    padding-bottom: 34px;
  }
}

.compare-summary-card{
  min-height: 330px;
}

.compare-summary-logos{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 4px;
}

.compare-summary-logo-item{
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--brand-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.compare-summary-logos .compare-client-logo{
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-color: rgba(31, 110, 168, 0.16);
  box-shadow: 0 12px 26px rgba(20, 32, 51, 0.08);
}

.compare-summary-logos .compare-client-logo img{
  width: 44px;
  height: 44px;
}

.compare-summary-vs{
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--brand);
  border: 3px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(31, 110, 168, 0.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.compare-summary-card h3{
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 760px){
  .compare-summary-card{
    min-height: 0;
  }

  .compare-summary-logos{
    gap: 10px;
  }

  .compare-summary-logo-item{
    font-size: 12px;
  }

  .compare-summary-logos .compare-client-logo{
    width: 56px;
    height: 56px;
  }

  .compare-summary-logos .compare-client-logo img{
    width: 38px;
    height: 38px;
  }

  .compare-summary-vs{
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .compare-summary-card h3{
    min-height: 0;
  }
}

.recommendation-card,
.software-card,
.plan-card{
  position: relative;
}

.recommendation-head > .ribbon,
.recommendation-head > .tag,
.software-top > .ribbon,
.plan-card > .badge{
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  max-width: calc(100% - 44px);
  margin: 0;
  padding: 0 11px;
  align-self: auto;
  white-space: nowrap;
}

.recommendation-head,
.software-top{
  min-height: 74px;
}

.recommendation-head .software-logo,
.software-top .software-logo{
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 760px){
  .recommendation-head > .ribbon,
.recommendation-head > .tag,
.software-top > .ribbon,
.plan-card > .badge{
    top: 18px;
    right: 18px;
    min-height: 28px;
    max-width: calc(100% - 36px);
    padding: 0 10px;
  }
}

.platform-icon{
  display: inline-grid;
  place-items: center;
  line-height: 1;
}

.platform-icon .bi{
  display: inline-grid;
  place-items: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.platform-icon .bi::before{
  display: block;
  line-height: 1;
  vertical-align: 0;
}

.platform-icon img{
  display: block;
  margin: auto;
}

.troubleshoot-result-link:hover,
.troubleshoot-result-link:focus-visible,
.troubleshoot-result-link.is-primary,
.troubleshoot-result-link.is-primary:hover,
.troubleshoot-result-link.is-primary:focus-visible,
.button.primary:hover,
.button.primary:focus-visible,
.button.dark:hover,
.button.dark:focus-visible,
.plan-card .button:hover,
.plan-card .button:focus-visible,
.home-compare-submit-row .button:hover,
.home-compare-submit-row .button:focus-visible,
.download-filter.is-active:hover,
.download-filter.is-active:focus-visible{
  color: #ffffff !important;
  background: var(--brand-hover) !important;
  border-color: var(--brand-hover) !important;
}

.button.primary:hover *,
.button.primary:focus-visible *,
.button.dark:hover *,
.button.dark:focus-visible *,
.plan-card .button:hover *,
.plan-card .button:focus-visible *,
.home-compare-submit-row .button:hover *,
.home-compare-submit-row .button:focus-visible *,
.download-filter.is-active:hover *,
.download-filter.is-active:focus-visible *,
.troubleshoot-result-link:hover span,
.troubleshoot-result-link:hover i,
.troubleshoot-result-link:focus-visible span,
.troubleshoot-result-link:focus-visible i,
.troubleshoot-result-link.is-primary span,
.troubleshoot-result-link.is-primary i,
.troubleshoot-result-link.is-primary:hover span,
.troubleshoot-result-link.is-primary:hover i,
.troubleshoot-result-link.is-primary:focus-visible span,
.troubleshoot-result-link.is-primary:focus-visible i{
  color: #ffffff !important;
}

a.troubleshoot-result-link:not(.button):not(.brand):not(.footer-brand-link):hover,
a.troubleshoot-result-link:not(.button):not(.brand):not(.footer-brand-link):focus-visible{
  color: #ffffff !important;
  background: var(--brand-hover) !important;
  border-color: var(--brand-hover) !important;
}

.button,
.recommendation-actions a,
.card-actions .button,
.download-filter,
.troubleshoot-result-link,
.docs-pager a,
.download-next-steps a,
.home-topic-links a,
.compare-selector-actions .button{
  min-width: 0;
  max-width: 100%;
  height: auto;
  min-height: 46px;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;
  text-align: center;
}

.home-page .hero h1{
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}

.button,
.recommendation-actions a,
.card-actions .button,
.download-filter,
.compare-selector-actions .button{
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.25;
}

.hero-actions .button,
.section-actions .button{
  flex: 0 1 auto;
}

.card-actions,
.recommendation-actions{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 104px), 1fr));
  align-items: stretch;
}

.card-actions .button,
.recommendation-actions a{
  width: 100%;
}

.download-index-page .software-card .card-actions,
.platform-download-page .software-card .card-actions,
#software .software-card .card-actions{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .recommendation-actions{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-index-page .software-card .card-actions .button,
.platform-download-page .software-card .card-actions .button,
#software .software-card .card-actions .button{
  min-width: 0;
  padding-right: 8px;
  padding-left: 8px;
}

.home-page .recommendation-actions a{
  min-width: 0;
  padding-right: 8px;
  padding-left: 8px;
}

.docs-pager a span,
.docs-pager a strong,
.troubleshoot-result-link span{
  min-width: 0;
  overflow-wrap: anywhere;
}

.docs-pager a:first-child{
  justify-items: start;
  text-align: left;
}

@media (max-width: 420px){
  .home-page .hero .hero-actions .button,
.page-hero .hero-actions .button,
.client-detail-hero .hero-actions .button{
    padding-right: 10px;
    padding-left: 10px;
    font-size: 15px;
  }

  .download-index-page .software-card .card-actions .button,
.platform-download-page .software-card .card-actions .button,
#software .software-card .card-actions .button{
    font-size: 14px;
  }
}

.home-compare-selector .choice-matchup{
  grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.home-compare-selector .choice-client{
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  gap: 14px;
  min-height: 148px;
  padding: 20px 18px;
  text-align: center;
}

.home-compare-selector .choice-client img{
  width: 58px;
  height: 58px;
  margin: 0;
}

.home-compare-selector .choice-client-body{
  display: grid;
  justify-items: center;
  width: 100%;
  gap: 0;
}

.home-compare-selector .choice-client-label{
  display: none;
}

.home-compare-selector .choice-client strong{
  display: grid;
  min-height: 46px;
  margin: 0;
  place-items: center;
  text-align: center;
  font-size: 20px;
  line-height: 1.18;
}

.home-compare-selector .choice-client-select select{
  width: 100%;
  max-width: 230px;
  margin-top: 0;
  padding-right: 34px;
  padding-left: 12px;
  font-size: 15px;
  text-align: center;
}

.home-compare-selector .choice-versus{
  align-self: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(31, 110, 168, 0.16);
}

@media (max-width: 760px){
  .home-compare-selector .choice-matchup{
    grid-template-columns: 1fr;
  }

  .home-compare-selector .choice-client{
    min-height: 0;
  }

  .home-compare-selector .choice-versus{
    justify-self: center;
  }
}

:root{
  --download-action: #1f6ea8;
  --download-action-hover: #165780;
  --download-action-shadow: rgba(31, 110, 168, 0.24);
  --tutorial-action: #101827;
  --tutorial-action-hover: #172033;
  --tutorial-action-shadow: rgba(37, 99, 235, 0.18);
}

a.button[href*="#local-download"],
a.button[href*="apps.apple.com"],
a.button[href$="-download.html"],
a.button[href*="-download.html#"],
a.button[href*="-download.html?"],
.hero a.button[href$="-download.html"],
.inner-page .page-hero a.button[href$="-download.html"],
.section.dark a.button[href$="-download.html"],
.client-detail-hero a.button[href$="-download.html"],
.download-hero .hero-actions .button.primary,
.tutorial-card-grid .card-actions .button.outline,
.tutorial-detail-page .hero-actions .button.primary{
  color: #ffffff !important;
  background: var(--download-action) !important;
  border-color: var(--download-action) !important;
  box-shadow: 0 12px 24px var(--download-action-shadow);
}

a.button[href*="#local-download"]:hover,
a.button[href*="#local-download"]:focus-visible,
a.button[href*="apps.apple.com"]:hover,
a.button[href*="apps.apple.com"]:focus-visible,
a.button[href$="-download.html"]:hover,
a.button[href$="-download.html"]:focus-visible,
a.button[href*="-download.html#"]:hover,
a.button[href*="-download.html#"]:focus-visible,
a.button[href*="-download.html?"]:hover,
a.button[href*="-download.html?"]:focus-visible,
.hero a.button[href$="-download.html"]:hover,
.hero a.button[href$="-download.html"]:focus-visible,
.inner-page .page-hero a.button[href$="-download.html"]:hover,
.inner-page .page-hero a.button[href$="-download.html"]:focus-visible,
.section.dark a.button[href$="-download.html"]:hover,
.section.dark a.button[href$="-download.html"]:focus-visible,
.client-detail-hero a.button[href$="-download.html"]:hover,
.client-detail-hero a.button[href$="-download.html"]:focus-visible,
.download-hero .hero-actions .button.primary:hover,
.download-hero .hero-actions .button.primary:focus-visible,
.tutorial-card-grid .card-actions .button.outline:hover,
.tutorial-card-grid .card-actions .button.outline:focus-visible,
.tutorial-detail-page .hero-actions .button.primary:hover,
.tutorial-detail-page .hero-actions .button.primary:focus-visible{
  color: #ffffff !important;
  background: var(--download-action-hover) !important;
  border-color: var(--download-action-hover) !important;
  box-shadow: 0 14px 28px var(--download-action-shadow);
}

a.button[href$="-tutorial.html"],
a.button[href*="-tutorial.html#"],
a.button[href*="-tutorial.html?"],
a.button[href$="/clash-tutorial.html"],
a.button[href*="/clash-tutorial.html#"],
.client-detail-hero a.button[href$="-tutorial.html"],
.inner-page .page-hero a.button[href$="-tutorial.html"],
.tutorial-detail-page .hero-actions .button.secondary[href="#steps"]{
  color: #ffffff !important;
  background: var(--tutorial-action) !important;
  border-color: var(--tutorial-action) !important;
  box-shadow: 0 12px 24px var(--tutorial-action-shadow);
}

a.button[href$="-tutorial.html"]:hover,
a.button[href$="-tutorial.html"]:focus-visible,
a.button[href*="-tutorial.html#"]:hover,
a.button[href*="-tutorial.html#"]:focus-visible,
a.button[href*="-tutorial.html?"]:hover,
a.button[href*="-tutorial.html?"]:focus-visible,
a.button[href$="/clash-tutorial.html"]:hover,
a.button[href$="/clash-tutorial.html"]:focus-visible,
a.button[href*="/clash-tutorial.html#"]:hover,
a.button[href*="/clash-tutorial.html#"]:focus-visible,
.client-detail-hero a.button[href$="-tutorial.html"]:hover,
.client-detail-hero a.button[href$="-tutorial.html"]:focus-visible,
.inner-page .page-hero a.button[href$="-tutorial.html"]:hover,
.inner-page .page-hero a.button[href$="-tutorial.html"]:focus-visible,
.tutorial-detail-page .hero-actions .button.secondary[href="#steps"]:hover,
.tutorial-detail-page .hero-actions .button.secondary[href="#steps"]:focus-visible{
  color: #ffffff !important;
  background: var(--tutorial-action-hover) !important;
  border-color: var(--tutorial-action-hover) !important;
  box-shadow: 0 14px 28px var(--tutorial-action-shadow);
}

:root{
  --brand: #176b87;
  --brand-hover: #0f5369;
  --brand-ink: #0b3440;
  --brand-soft: rgba(23, 107, 135, 0.1);
  --brand-surface: #e8f5f7;
  --heading: #13262b;
  --muted: #5f6f73;
  --line: #d8e4e6;
  --navy: #10252b;
  --blue: #176b87;
  --cyan: #1b8e8b;
  --green: #2563eb;
  --amber: #22d3ee;
  --orange: #22d3ee;
  --red: #60a5fa;
  --download-action: #176b87;
  --download-action-hover: #0f5369;
  --download-action-shadow: rgba(23, 107, 135, 0.22);
  --tutorial-action: #101827;
  --tutorial-action-hover: #172033;
  --tutorial-action-shadow: rgba(37, 99, 235, 0.18);
  --hero-bg:
    linear-gradient(135deg, #f7fbfc 0%, #eef7f7 45%, #f7f2e9 100%);
  --hero-pattern:
    linear-gradient(90deg, rgba(19, 38, 43, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 38, 43, 0.045) 1px, transparent 1px),
    linear-gradient(125deg, transparent 0 62%, rgba(27, 142, 139, 0.12) 62% 64%, transparent 64%),
    linear-gradient(36deg, transparent 0 70%, rgba(180, 107, 28, 0.08) 70% 72%, transparent 72%);
}

body{
  background: linear-gradient(180deg, #f7fafb 0%, #ffffff 44%, #eef4f1 100%);
}

.home-page .site-header,
.inner-page .site-header{
  position: sticky;
  right: auto;
  left: auto;
  color: #eef8f8;
  background: rgba(16, 37, 43, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.brand small{
  color: rgba(238, 248, 248, 0.72);
}

.site-header .brand,
.site-header .brand > span,
.site-header .brand:hover,
.docs-page .site-header .brand{
  color: #eef8f8;
}

.site-header .brand small,
.docs-page .site-header .brand small{
  color: rgba(238, 248, 248, 0.72);
}

.nav a{
  color: rgba(238, 248, 248, 0.76);
}

.nav a:hover,
.nav a[aria-current="page"]{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.hero,
.home-page .hero{
  color: var(--heading);
  background: var(--hero-bg);
  border-bottom: 1px solid rgba(23, 107, 135, 0.12);
}

.hero::before,
.inner-page .page-hero::before{
  background: var(--hero-pattern);
  background-size: 76px 76px, 76px 76px, auto, auto;
  opacity: 0.7;
}

.hero::after{
  display: none;
}

.hero-kicker{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 16px;
  padding: 0 12px;
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 107, 135, 0.16);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(19, 38, 43, 0.05);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.home-page .hero h1,
.hero h1{
  color: var(--heading);
}

.home-page .hero p,
.hero p{
  color: var(--muted);
}

.home-page .hero{
  min-height: clamp(620px, 34vw, 760px);
  padding-top: 0;
}

.home-page .hero-inner{
  padding-top: clamp(46px, 4vw, 82px);
}

.platform-dock a{
  color: var(--heading);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(23, 107, 135, 0.14);
  box-shadow: 0 16px 36px rgba(19, 38, 43, 0.08);
  backdrop-filter: blur(14px);
}

.platform-dock a:hover{
  border-color: rgba(23, 107, 135, 0.36);
  box-shadow: 0 20px 44px rgba(19, 38, 43, 0.12);
}

.platform-dock-icon{
  color: var(--brand);
  filter: none;
}

.platform-dock-copy strong{
  color: var(--green);
}

.inner-page .page-hero{
  color: #eef8f8;
  background:
    linear-gradient(135deg, rgba(16, 37, 43, 0.98), rgba(23, 73, 83, 0.96) 58%, rgba(72, 74, 53, 0.92)),
    #10252b;
}

.inner-page .page-hero h1{
  color: #ffffff;
}

.inner-page .page-hero p,
.inner-page .breadcrumb{
  color: #c8d8d8;
}

.inner-page .breadcrumb a{
  color: #a8eee7;
}

.section.dark,
.site-footer{
  background:
    linear-gradient(135deg, rgba(16, 37, 43, 0.98), rgba(21, 61, 68, 0.98) 62%, rgba(54, 58, 43, 0.96)),
    #10252b;
}

.tag.green{
  color: #1f5f3d;
  background: rgba(47, 125, 79, 0.12);
}

.tag.amber{
  color: #824b11;
  background: rgba(180, 107, 28, 0.14);
}

.tag.red{
  color: #8a353d;
  background: rgba(182, 75, 84, 0.12);
}

@media (max-width: 760px){
  .home-page .hero{
    min-height: 0;
  }

  .home-page .hero-inner{
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .home-page .platform-dock{
    display: none;
  }

  .home-page .hero h1{
    margin-bottom: 10px;
  }

  .home-page .hero p{
    line-height: 1.6;
  }

  .home-page .hero-actions{
    gap: 10px;
    margin-top: 18px;
  }

  .platform-dock a{
    min-height: 78px;
  }

  .hero-kicker{
    font-size: 13px;
    margin-bottom: 10px;
  }
}

:root{
  --bg: #060608;
  --panel: rgba(255, 255, 255, 0.028);
  --ink: #e2e8f0;
  --heading: #ffffff;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.07);
  --navy: #060608;
  --blue: #2563eb;
  --cyan: #0891b2;
  --green: #2563eb;
  --amber: #22d3ee;
  --orange: #22d3ee;
  --red: #60a5fa;
  --brand: #2563eb;
  --brand-ink: #60a5fa;
  --brand-surface: rgba(37, 99, 235, 0.1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --title-hero: 68px;
  --title-h1: 52px;
  --title-h2: 44px;
  --title-h3: 21px;
  --hero-bg:
    radial-gradient(ellipse 1000px 560px at 50% -10%, rgba(37, 99, 235, 0.16), transparent 65%),
    radial-gradient(circle at -10% 33%, rgba(79, 70, 229, 0.08), transparent 28%),
    radial-gradient(circle at 105% 70%, rgba(6, 182, 212, 0.08), transparent 30%),
    #060608;
  --hero-pattern: none;
  --surface-bg: #060608;
}

html,
body{
  background: #060608;
}

body{
  color: #e2e8f0;
  background: var(--hero-bg);
  background-size: auto;
}

body::selection{
  background: rgba(37, 99, 235, 0.2);
}

.container{
  width: min(1280px, calc(100% - 48px));
}

.site-header,
.home-page .site-header,
.inner-page .site-header{
  position: sticky;
  top: 0;
  right: auto;
  left: auto;
  z-index: 50;
  color: #ffffff;
  background: rgba(6, 6, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand{
  gap: 12px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.site-header .brand,
.site-header .brand > span,
.site-header .brand:hover,
.docs-page .site-header .brand{
  color: #ffffff;
}

.brand small,
.site-header .brand small,
.docs-page .site-header .brand small{
  display: none;
}

.brand-mark{
  width: 36px;
  height: 36px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  filter: drop-shadow(0 0 14px rgba(37, 99, 235, 0.45));
}

.brand-mark img{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  object-fit: contain;
}

.nav{
  gap: 2px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav a{
  padding: 7px 14px;
  color: #cbd5e1;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover,
.nav a[aria-current="page"]{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle{
  width: 42px;
  height: 42px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
}

.hero,
.home-page .hero{
  min-height: calc(100vh - 76px);
  color: #ffffff;
  background: var(--hero-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero::before,
.inner-page .page-hero::before{
  display: none;
}

.hero::after,
.inner-page .page-hero::after{
  display: none;
}

.home-page .hero-inner,
.hero-inner{
  grid-template-columns: minmax(0, 0.95fr) minmax(540px, 0.85fr);
  gap: 40px;
  min-height: calc(100vh - 76px);
  padding: 72px 0 80px;
}

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

.hero-kicker{
  min-height: 31px;
  margin-bottom: 30px;
  padding: 0 16px;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 999px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hero-kicker::before{
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: #2563eb;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.16);
  content: "";
}

.home-page .hero h1,
.hero h1{
  max-width: 760px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(52px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: normal;
}

.home-page .hero h1 span,
.hero h1 span{
  display: block;
  margin-top: 4px;
  color: transparent;
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: inherit;
  line-height: 1.05;
  -webkit-text-fill-color: transparent;
}

.home-page .hero p,
.hero p{
  max-width: 540px;
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions{
  gap: 12px;
  margin-top: 36px;
}

.button{
  min-height: 48px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button.primary{
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  border-color: transparent;
  box-shadow: none;
}

.button.primary:hover{
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.45), 0 0 80px rgba(6, 182, 212, 0.15);
}

.button.secondary,
.hero .button.secondary,
.button.ghost{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button.secondary:hover,
.hero .button.secondary:hover,
.button.ghost:hover,
.inner-page .page-hero .button.secondary:hover{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.button.dark{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.button.dark:hover{
  color: #ffffff;
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.32);
}

.button.outline,
.button.secondary{
  color: #60a5fa;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-metrics{
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-metrics span{
  display: grid;
  gap: 2px;
  min-height: 0;
  padding: 0 28px;
  color: #64748b;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  font-size: 12px;
  line-height: 1.3;
}

.hero-metrics span:first-child{
  padding-left: 0;
}

.hero-metrics span:last-child{
  border-right: 0;
}

.hero-metrics strong{
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

.home-page .hero-visual.official-network,
.official-network{
  justify-self: center;
  width: 560px;
  max-width: min(100%, 560px);
  overflow: visible;
  transform: none;
}

.network-stage{
  --network-scale: 1.16;
  position: relative;
  width: 480px;
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0 auto;
  transform: scale(var(--network-scale));
  transform-origin: center;
  animation: official-float 6s ease-in-out infinite;
}

.network-stage::before{
  position: absolute;
  inset: 70px;
  background: rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  filter: blur(96px);
  content: "";
}

.network-lines{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-ring{
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 1;
}

.network-ring-soft{
  stroke: rgba(37, 99, 235, 0.1);
}

.network-ring-spin{
  fill: none;
  stroke-width: 1.5;
  stroke-dasharray: 14 28;
  transform-origin: center;
  animation: official-spin 20s linear infinite;
}

.network-track,
.network-track-glow{
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
}

.network-track{
  stroke-width: 1.2;
  opacity: 0.18;
}

.network-track-glow{
  stroke-width: 10;
  opacity: 0.05;
}

.network-path{
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 300;
  animation: official-travel 2.5s linear infinite;
  filter: drop-shadow(0 0 8px currentColor);
}

.network-path.is-blue{
  color: #60a5fa;
  stroke: #60a5fa;
}

.network-path.is-cyan{
  color: #22d3ee;
  stroke: #22d3ee;
  animation-delay: 0.45s;
}

.network-path.is-green{
  color: #2563eb;
  stroke: #2563eb;
  animation-delay: 0.9s;
}

.network-path.is-purple{
  color: #60a5fa;
  stroke: #60a5fa;
  animation-delay: 1.35s;
}

.network-path.is-amber{
  color: #22d3ee;
  stroke: #22d3ee;
  animation-delay: 1.8s;
}

.network-core{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.network-core-glow{
  position: absolute;
  width: 236px;
  height: 236px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(6, 182, 212, 0.22));
  border-radius: 48px;
  filter: blur(42px);
  animation: official-pulse 4s ease-in-out infinite;
}

.network-logo{
  position: relative;
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  padding: 18px;
  background: linear-gradient(135deg, #0f1c30, #07101e);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 32px;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.08),
    0 20px 80px rgba(37, 99, 235, 0.6),
    0 0 140px rgba(6, 182, 212, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.network-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px rgba(37, 99, 235, 0.55)) drop-shadow(0 0 12px rgba(6, 182, 212, 0.35));
}

.network-caption{
  position: absolute;
  top: calc(50% + 104px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 22px;
  color: #ffffff;
  background: rgba(6, 6, 8, 0.6);
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.network-caption strong{
  font-size: 14px;
  letter-spacing: 0;
}

.network-caption small{
  color: rgba(96, 165, 250, 0.62);
  font-size: 12px;
}

.network-node{
  position: absolute;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #93c5fd;
  font-size: 10px;
  font-weight: 800;
}

.network-node span{
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.network-node i{
  font-size: 30px;
  line-height: 1;
}

.network-node:hover span{
  transform: scale(1.12) translateY(-4px);
  filter: brightness(1.3);
}

.node-win{
  top: 41px;
  left: 50%;
  color: #60a5fa;
  transform: translateX(-50%);
}

.node-win span{
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.3), 0 0 48px rgba(37, 99, 235, 0.12);
}

.node-mac{
  top: 155px;
  right: 49px;
  color: #22d3ee;
}

.node-mac span{
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  box-shadow: 0 0 24px rgba(6, 182, 212, 0.28), 0 0 48px rgba(6, 182, 212, 0.1);
}

.node-android{
  right: 109px;
  bottom: 46px;
  color: #22d3ee;
}

.node-android span{
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.24), 0 0 48px rgba(34, 211, 238, 0.1);
}

.node-ios{
  bottom: 46px;
  left: 109px;
  color: #60a5fa;
}

.node-ios span{
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: 0 0 24px rgba(96, 165, 250, 0.24), 0 0 48px rgba(96, 165, 250, 0.1);
}

.node-linux{
  top: 155px;
  left: 49px;
  color: #22d3ee;
}

.node-linux span{
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.24), 0 0 48px rgba(34, 211, 238, 0.1);
}

.home-page .platform-dock{
  display: none;
}

.section,
.section.white{
  color: #e2e8f0;
  background: #060608;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section.dark,
.site-footer{
  color: #e2e8f0;
  background: #030305;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title h2,
.section h2,
.section h3,
.site-footer h3,
.recommendation-card h3,
.platform-card h3,
.feature-card h3,
.step-card h3,
.faq-card summary{
  color: #ffffff;
}

.section-title p,
.section p,
.site-footer p,
.site-footer a,
.feature-card p,
.recommendation-card p,
.platform-card p,
.step-card p,
.faq-card p,
.meta,
dd,
dt{
  color: #94a3b8;
}

.section-title::before{
  color: #60a5fa;
}

.feature-card,
.recommendation-card,
.platform-card,
.download-hero-panel,
.download-hero-panel a,
.download-path-card,
.software-card,
.download-safety-card,
.step-card,
.faq-card,
.home-choice-preview,
.choice-client{
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.feature-card:hover,
.recommendation-card:hover,
.platform-card:hover,
.download-hero-panel a:hover,
.download-path-card:hover,
.software-card:hover,
.download-safety-card:hover,
.step-card:hover,
.faq-card:hover{
  background: rgba(255, 255, 255, 0.048);
  border-color: rgba(255, 255, 255, 0.13);
}

.feature-icon,
.platform-icon,
.download-path-icon,
.software-logo,
.step-card::before{
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.12);
  box-shadow: none;
}

.recommendation-card.is-recommended,
.platform-card.is-featured,
.download-path-card.is-featured,
.software-card.is-featured{
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.03)),
    rgba(255, 255, 255, 0.028);
  border-color: rgba(96, 165, 250, 0.32);
}

.ribbon,
.tag{
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 999px;
}

.tag.green{
  color: #2563eb;
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.24);
}

.tag.amber{
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.24);
}

.tag.red{
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.24);
}

.recommendation-actions a,
.card-actions a,
.footer-links a,
.section a:not(.button):not(.network-node){
  color: #60a5fa;
}

.download-hero-panel strong,
.download-hero-panel b,
.download-path-card h3,
.software-card h3,
.download-safety-card h3,
.software-card strong,
.software-card b{
  color: #ffffff;
}

.download-hero-panel span,
.download-hero-panel p,
.download-path-card p,
.software-card p,
.download-safety-card p{
  color: #94a3b8;
}

.download-hero-panel{
  padding: 24px;
  background: rgba(255, 255, 255, 0.028);
}

.download-hero-panel a{
  background: rgba(255, 255, 255, 0.045);
}

.download-hero-panel a:hover{
  border-color: rgba(96, 165, 250, 0.32);
}

.download-path-icon{
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #2563eb);
  border: 0;
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.4);
}

.download-toolbar{
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
}

.download-filter{
  color: #cbd5e1;
  background: transparent;
  border: 0;
  border-radius: 999px;
}

.download-filter:hover,
.download-filter.is-active{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.software-card .card-actions{
  border-top-color: rgba(255, 255, 255, 0.07);
}

.software-card .meta,
.software-card dl,
.download-path-card .meta{
  color: #94a3b8;
}

select,
input,
textarea{
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.1);
}

select option{
  color: #111827;
}

.inner-page .page-hero{
  color: #ffffff;
  background: var(--hero-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.inner-page .page-hero h1{
  color: #ffffff;
}

.inner-page .page-hero p,
.inner-page .breadcrumb{
  color: #94a3b8;
}

.inner-page .breadcrumb a{
  color: #60a5fa;
}

.site-footer{
  padding-top: 64px;
}

.footer-bottom{
  color: #64748b;
  border-top-color: rgba(255, 255, 255, 0.06);
}

::-webkit-scrollbar{
  width: 5px;
}

::-webkit-scrollbar-track{
  background: #060608;
}

::-webkit-scrollbar-thumb{
  background: #2d3748;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover{
  background: #4a5568;
}

@keyframes official-float{
  0%,
100%{
    transform: scale(var(--network-scale, 1)) translateY(0);
  }
  50%{
    transform: scale(var(--network-scale, 1)) translateY(-16px);
  }
}

@keyframes official-spin{
  to{
    transform: rotate(360deg);
  }
}

@keyframes official-travel{
  from{
    stroke-dashoffset: 0;
  }
  to{
    stroke-dashoffset: -308;
  }
}

@keyframes official-pulse{
  0%,
100%{
    opacity: 0.72;
    transform: scale(0.98);
  }
  50%{
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 1020px){
  .home-page .hero-inner,
.hero-inner{
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: 0;
    padding: 64px 0 72px;
  }

  .official-network{
    justify-self: center;
  }
}

@media (max-width: 760px){
  .container{
    width: min(100% - 32px, 1280px);
  }

  .site-header,
.home-page .site-header,
.inner-page .site-header{
    background: rgba(6, 6, 8, 0.96);
  }

  .nav{
    border-radius: 18px;
  }

  .home-page .hero,
.hero{
    min-height: 0;
  }

  .home-page .hero-inner,
.hero-inner{
    gap: 24px;
    padding: 32px 0 48px;
  }

  .hero-kicker{
    min-height: 30px;
    margin-bottom: 18px;
    font-size: 11px;
  }

  .home-page .hero h1,
.hero h1{
    margin-bottom: 16px;
    max-width: 100%;
    font-size: clamp(38px, 11.5vw, 48px);
    overflow-wrap: break-word;
    word-break: normal;
  }

  .home-page .hero h1 span,
.hero h1 span{
    width: auto;
    max-width: 100%;
    font-size: clamp(30px, 8.2vw, 36px);
    overflow-wrap: break-word;
    word-break: normal;
  }

  .home-page .hero p,
.hero p{
    font-size: 16px;
    line-height: 1.7;
  }

  .home-page .hero .hero-actions,
.hero-actions{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .home-page .hero .hero-actions .button,
.button{
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    white-space: normal;
  }

  .hero-metrics{
    margin-top: 30px;
    padding-top: 22px;
  }

  .hero-metrics span{
    padding: 0 14px;
  }

  .hero-metrics strong{
    font-size: 22px;
  }

  .home-page .hero-visual.official-network,
.official-network{
    width: 100%;
    max-width: 360px;
    min-height: 360px;
  }

  .network-stage{
    --network-scale: 0.74;
    width: 480px;
    max-width: none;
    margin-left: calc((100% - 480px) / 2);
    transform: scale(var(--network-scale));
    transform-origin: center;
    animation: none;
  }

  .network-node span{
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .network-logo{
    width: 112px;
    height: 112px;
    border-radius: 26px;
  }

  .network-caption{
    top: calc(50% + 88px);
  }

  .section{
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

body .button.primary,
body a.button.primary,
body button.button.primary{
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #0891b2) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 22px rgba(37, 99, 235, 0.32) !important;
}

body .button.primary:hover,
body a.button.primary:hover,
body button.button.primary:hover{
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #0891b2) !important;
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.45), 0 0 80px rgba(6, 182, 212, 0.15) !important;
}

body .button.secondary,
body .button.outline,
body .button.ghost,
body a.button.secondary,
body a.button.outline,
body a.button.ghost,
body button.button.secondary,
body button.button.outline,
body button.button.ghost{
  color: #60a5fa !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

body .button.secondary:hover,
body .button.outline:hover,
body .button.ghost:hover{
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.09) !important;
  border-color: rgba(96, 165, 250, 0.3) !important;
}

body .section,
body .section.white{
  color: #e2e8f0 !important;
  background: #060608 !important;
}

body .section.dark,
body .site-footer{
  color: #e2e8f0 !important;
  background: #030305 !important;
}

body .section [class*="card"],
body .section [class*="panel"],
body .section [class*="box"],
body .section [class*="item"],
body .inner-page main [class*="card"],
body .inner-page main [class*="panel"],
body .inner-page main [class*="box"],
body .inner-page main [class*="item"],
body .faq-card,
body .platform-card,
body .software-card,
body .download-path-card,
body .download-safety-card,
body .download-hero-panel,
body table{
  color: #e2e8f0 !important;
  background: rgba(255, 255, 255, 0.028) !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
  box-shadow: none !important;
}

body .section [class*="card"]:hover,
body .section [class*="panel"]:hover,
body .section [class*="box"]:hover,
body .section [class*="item"]:hover,
body .inner-page main [class*="card"]:hover,
body .inner-page main [class*="panel"]:hover,
body .inner-page main [class*="box"]:hover,
body .inner-page main [class*="item"]:hover{
  background: rgba(255, 255, 255, 0.048) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
}

body .section [class*="card"] h1,
body .section [class*="card"] h2,
body .section [class*="card"] h3,
body .section [class*="panel"] h1,
body .section [class*="panel"] h2,
body .section [class*="panel"] h3,
body .section [class*="box"] h1,
body .section [class*="box"] h2,
body .section [class*="box"] h3,
body .section [class*="item"] h1,
body .section [class*="item"] h2,
body .section [class*="item"] h3,
body .inner-page main [class*="card"] h1,
body .inner-page main [class*="card"] h2,
body .inner-page main [class*="card"] h3,
body .inner-page main [class*="panel"] h1,
body .inner-page main [class*="panel"] h2,
body .inner-page main [class*="panel"] h3,
body .inner-page main [class*="box"] h1,
body .inner-page main [class*="box"] h2,
body .inner-page main [class*="box"] h3,
body .inner-page main [class*="item"] h1,
body .inner-page main [class*="item"] h2,
body .inner-page main [class*="item"] h3,
body .section-title h1,
body .section-title h2,
body .section-title h3{
  color: #ffffff !important;
}

body .section [class*="card"] p,
body .section [class*="card"] li,
body .section [class*="card"] dd,
body .section [class*="card"] dt,
body .section [class*="card"] small,
body .section [class*="panel"] p,
body .section [class*="panel"] li,
body .section [class*="panel"] dd,
body .section [class*="panel"] dt,
body .section [class*="panel"] small,
body .section [class*="box"] p,
body .section [class*="box"] li,
body .section [class*="box"] dd,
body .section [class*="box"] dt,
body .section [class*="box"] small,
body .section [class*="item"] p,
body .section [class*="item"] li,
body .section [class*="item"] dd,
body .section [class*="item"] dt,
body .section [class*="item"] small,
body .inner-page main [class*="card"] p,
body .inner-page main [class*="card"] li,
body .inner-page main [class*="card"] dd,
body .inner-page main [class*="card"] dt,
body .inner-page main [class*="card"] small,
body .inner-page main [class*="panel"] p,
body .inner-page main [class*="panel"] li,
body .inner-page main [class*="panel"] dd,
body .inner-page main [class*="panel"] dt,
body .inner-page main [class*="panel"] small,
body .inner-page main [class*="box"] p,
body .inner-page main [class*="box"] li,
body .inner-page main [class*="box"] dd,
body .inner-page main [class*="box"] dt,
body .inner-page main [class*="box"] small,
body .inner-page main [class*="item"] p,
body .inner-page main [class*="item"] li,
body .inner-page main [class*="item"] dd,
body .inner-page main [class*="item"] dt,
body .inner-page main [class*="item"] small{
  color: #94a3b8 !important;
}

body .section [class*="icon"],
body .inner-page main [class*="icon"],
body .software-logo{
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.12) !important;
  border-color: rgba(96, 165, 250, 0.18) !important;
}

body .download-path-icon,
body .feature-icon{
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #2563eb) !important;
  border-color: transparent !important;
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.4) !important;
}

body .tag,
body .ribbon,
body .badge{
  color: #93c5fd !important;
  background: rgba(37, 99, 235, 0.14) !important;
  border-color: rgba(96, 165, 250, 0.24) !important;
}

body .network-node small{
  color: currentColor !important;
  opacity: 1 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-shadow: 0 0 14px currentColor, 0 1px 2px rgba(0, 0, 0, 0.8) !important;
}

body .network-caption small{
  color: #60a5fa !important;
  opacity: 1 !important;
}

body .network-caption strong{
  color: #ffffff !important;
}

body .brand-mark,
body .docs-page .brand-mark{
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

body .site-header .brand,
body.home-page .site-header .brand,
body.inner-page .site-header .brand,
body.docs-page .site-header .brand{
  gap: 12px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 30.24px !important;
}

body .site-header .brand-mark,
body.home-page .site-header .brand-mark,
body.inner-page .site-header .brand-mark,
body.docs-page .site-header .brand-mark{
  width: 36px !important;
  height: 36px !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  filter: drop-shadow(0 0 14px rgba(37, 99, 235, 0.45)) !important;
  flex: 0 0 36px !important;
}

body .site-header .brand-mark img,
body.home-page .site-header .brand-mark img,
body.inner-page .site-header .brand-mark img,
body.docs-page .site-header .brand-mark img{
  width: 36px !important;
  height: 36px !important;
  border-radius: 12px !important;
  object-fit: contain !important;
}

body .site-footer .footer-logo,
body.docs-page .site-footer .footer-logo,
body .docs-page .site-footer .footer-logo{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 0 14px rgba(37, 99, 235, 0.32)) !important;
}

body .site-footer .footer-logo img,
body.docs-page .site-footer .footer-logo img,
body .docs-page .site-footer .footer-logo img{
  background: transparent !important;
}

body .client-detail-hero .client-hero-card,
body .client-hero-card,
body .faq-hero-panel,
body .faq-hero-panel > div,
body .tutorial-step,
body .detail-panel,
body .repo-side,
body .download-option,
body .download-options a,
body .param-row,
body .repo-mini-grid > div,
body .troubleshoot-control-panel,
body .troubleshoot-result-panel,
body .troubleshoot-result-link,
body .docs-page .docs-sidebar,
body .docs-page .docs-outline,
body .docs-page .docs-article,
body .docs-sidebar,
body .docs-outline,
body .docs-article,
body .docs-nav-group,
body .docs-nav-group a,
body .docs-outline a,
body .docs-pager a,
body .docs-callout,
body .docs-table,
body .docs-table table,
body .docs-table th,
body .docs-table td{
  color: #e2e8f0 !important;
  background: rgba(255, 255, 255, 0.028) !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
  box-shadow: none !important;
}

body .client-hero-card::after,
body .software-card::after,
body .download-path-card::before{
  opacity: 0 !important;
}

body .client-hero-logo,
body .software-logo{
  background: rgba(37, 99, 235, 0.1) !important;
  border-color: rgba(96, 165, 250, 0.18) !important;
}

body .client-hero-card h2,
body .client-hero-card h3,
body .faq-hero-panel strong,
body .tutorial-step h3,
body .detail-panel h2,
body .detail-panel h3,
body .troubleshoot-control-panel h3,
body .troubleshoot-result-panel h3,
body .docs-page .docs-article h1,
body .docs-page .docs-article h2,
body .docs-page .docs-article h3,
body .docs-page .docs-article h4,
body .docs-page .docs-nav-group summary,
body .docs-page .docs-outline h2,
body .docs-article h1,
body .docs-article h2,
body .docs-article h3,
body .docs-article h4,
body .docs-nav-group summary,
body .docs-outline h2{
  color: #ffffff !important;
}

body .client-hero-card p,
body .client-hero-card dl,
body .client-quick-facts dt,
body .client-quick-facts dd,
body .faq-hero-panel span,
body .tutorial-step p,
body .detail-panel p,
body .detail-panel li,
body .param-table dt,
body .param-table dd,
body .repo-mini-grid span,
body .troubleshoot-control-panel p,
body .troubleshoot-field span,
body .troubleshoot-result-panel p,
body .docs-page .docs-article p,
body .docs-page .docs-article li,
body .docs-page .docs-article blockquote,
body .docs-article p,
body .docs-article li,
body .docs-article blockquote{
  color: #94a3b8 !important;
  background: transparent !important;
}

body .client-quick-facts div,
body .param-table dt,
body .param-table dd,
body .repo-mini-grid > div{
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
}

body .param-table dt{
  color: #cbd5e1 !important;
}

body .param-table dd,
body .repo-mini-grid strong,
body .client-quick-facts dd{
  color: #ffffff !important;
}

body select,
body input,
body textarea,
body .troubleshoot-field select{
  color: #e2e8f0 !important;
  background: rgba(255, 255, 255, 0.045) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

body option{
  color: #111827 !important;
  background: #ffffff !important;
}

body .troubleshoot-result-link,
body .docs-nav-group a,
body .docs-outline a,
body .docs-pager a{
  color: #60a5fa !important;
}

body .troubleshoot-result-link:hover,
body .troubleshoot-result-link.is-primary,
body .docs-nav-group a:hover,
body .docs-nav-group a[aria-current="page"],
body .docs-outline a:hover,
body .docs-pager a:hover{
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.14) !important;
  border-color: rgba(96, 165, 250, 0.28) !important;
}

body .docs-article code,
body .docs-page .docs-article code{
  color: #bfdbfe !important;
  background: rgba(37, 99, 235, 0.12) !important;
  border-color: rgba(96, 165, 250, 0.18) !important;
}

body .docs-article pre,
body .docs-page .docs-article pre{
  color: #dbeafe !important;
  background: #030305 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body .download-safety-card a:not(.button),
body .detail-panel a:not(.button):not(.download-option),
body .client-detail-page .download-safety-card a,
body .client-detail-page .detail-panel a:not(.button):not(.download-option){
  color: #60a5fa !important;
  background: rgba(255, 255, 255, 0.045) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
}

body .download-safety-card a:not(.button):hover,
body .detail-panel a:not(.button):not(.download-option):hover{
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.14) !important;
  border-color: rgba(96, 165, 250, 0.28) !important;
}

body.docs-page .site-header .nav a,
body .docs-page .site-header .nav a,
body.docs-page .site-header .brand,
body .docs-page .site-header .brand{
  color: #cbd5e1 !important;
}

body.docs-page .site-header .nav a:hover,
body.docs-page .site-header .nav a[aria-current="page"],
body .docs-page .site-header .nav a:hover,
body .docs-page .site-header .nav a[aria-current="page"]{
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

body .table-of-contents,
body nav.table-of-contents,
body .docs-page .table-of-contents,
body .docs-page nav.table-of-contents{
  color: #e2e8f0 !important;
  background: rgba(255, 255, 255, 0.028) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: none !important;
}

body .table-of-contents li,
body .table-of-contents p,
body .table-of-contents span,
body .docs-page .table-of-contents li,
body .docs-page .table-of-contents p,
body .docs-page .table-of-contents span{
  color: #94a3b8 !important;
  background: transparent !important;
}

body .table-of-contents a,
body .docs-page .table-of-contents a{
  color: #60a5fa !important;
  background: transparent !important;
}

body .table-of-contents a:hover,
body .docs-page .table-of-contents a:hover{
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.14) !important;
}

body a.button[href$="-tutorial.html"],
body a.button[href*="-tutorial.html#"],
body a.button[href*="-tutorial.html?"],
body a.button[href$="/clash-tutorial.html"],
body a.button[href*="/clash-tutorial.html#"],
body .client-detail-hero a.button[href$="-tutorial.html"],
body .inner-page .page-hero a.button[href$="-tutorial.html"],
body .tutorial-detail-page .hero-actions .button.secondary[href="#steps"]{
  color: #60a5fa !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

body a.button[href$="-tutorial.html"]:hover,
body a.button[href*="-tutorial.html#"]:hover,
body a.button[href*="-tutorial.html?"]:hover,
body a.button[href$="/clash-tutorial.html"]:hover,
body a.button[href*="/clash-tutorial.html#"]:hover,
body .client-detail-hero a.button[href$="-tutorial.html"]:hover,
body .inner-page .page-hero a.button[href$="-tutorial.html"]:hover,
body .tutorial-detail-page .hero-actions .button.secondary[href="#steps"]:hover{
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.14) !important;
  border-color: rgba(96, 165, 250, 0.28) !important;
  box-shadow: none !important;
}

@media (min-width: 761px){
  .home-page .hero{
    min-height: calc(100vh - 112px);
  }

  .home-page .hero-inner{
    min-height: calc(100vh - 128px);
    padding-bottom: 56px;
  }
}

@media (max-width: 760px){
  .home-page .hero{
    position: relative;
    overflow: hidden;
  }

  .home-page .hero-inner{
    position: relative;
    padding-bottom: 56px;
  }

  .home-page .hero-copy{
    position: relative;
    z-index: 2;
  }

  .home-page .hero-visual.official-network,
.official-network{
    position: absolute;
    right: -128px;
    bottom: 18px;
    z-index: 0;
    width: 360px;
    max-width: none;
    min-height: 360px;
    opacity: 0.18;
    pointer-events: none;
  }

  .home-page .hero-visual.official-network .network-stage,
.official-network .network-stage{
    --network-scale: 0.62;
    width: 480px;
    max-width: none;
    margin: 0;
    transform: scale(var(--network-scale));
    transform-origin: center;
    animation: none;
  }
}

@media (max-width: 430px){
  .home-page .hero-visual.official-network,
.official-network{
    right: -150px;
    bottom: -8px;
    opacity: 0.16;
  }
}

.site-header .header-inner,
.docs-page .site-header .header-inner{
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

.site-header .brand,
.docs-page .site-header .brand{
  grid-column: 1;
  justify-self: start;
  min-width: 0;
  z-index: 3;
}

.site-header .nav,
.docs-page .site-header .nav{
  position: static;
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  margin: 0;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header .nav > a,
.docs-page .site-header .nav > a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: #cbd5e1;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.site-header .nav > a:hover,
.site-header .nav > a[aria-current="page"],
.docs-page .site-header .nav > a:hover,
.docs-page .site-header .nav > a[aria-current="page"]{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
}

.header-actions{
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  z-index: 3;
}

.header-action{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-action:hover,
.header-action:focus-visible{
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.header-action i{
  font-size: 18px;
  line-height: 1;
}

.language-switch{
  min-width: 116px;
}

.language-switch .bi-chevron-down{
  display: none !important;
}

.repository-link{
  min-width: 116px;
}

.mobile-nav-actions{
  display: none;
}

@media (max-width: 1040px){
  .repository-link,
.language-switch{
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .repository-link span,
.language-switch span,
.language-switch .bi-chevron-down{
    display: none;
  }
}

@media (max-width: 1180px){
  .site-header .header-inner,
.docs-page .site-header .header-inner{
    grid-template-columns: minmax(150px, 1fr) auto minmax(200px, 1fr);
    gap: 14px;
  }

  .site-header .nav > a,
.docs-page .site-header .nav > a{
    padding: 0 14px;
  }

  .repository-link,
.language-switch{
    min-width: 44px;
    padding: 0;
    width: 44px;
  }

  .repository-link span,
.language-switch span,
.language-switch .bi-chevron-down{
    display: none;
  }
}

@media (max-width: 860px){
  .site-header .header-inner,
.docs-page .site-header .header-inner{
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    min-height: 76px;
  }

  .site-header .brand small,
.docs-page .site-header .brand small{
    display: none;
  }

  .header-actions{
    grid-column: 2;
    display: none;
    gap: 8px;
  }

  .language-switch{
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
  }

  .site-header .nav-toggle,
.docs-page .site-header .nav-toggle{
    grid-column: 3;
    justify-self: end;
    display: inline-grid;
    place-items: center;
  }

  .site-header .nav,
.docs-page .site-header .nav{
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-self: stretch;
    gap: 6px;
    padding: 12px;
    background: rgba(6, 6, 8, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }

  .site-header .nav.is-open,
.docs-page .site-header .nav.is-open{
    display: flex;
  }

  .site-header .nav > a,
.docs-page .site-header .nav > a{
    width: 100%;
    min-height: 44px;
  }

  .site-header .nav .mobile-nav-actions,
.docs-page .site-header .nav .mobile-nav-actions{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-action{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-nav-action i{
    font-size: 18px !important;
    line-height: 1;
  }

  .mobile-repository-link{
    flex: 0 0 46px;
    width: 46px;
    padding: 0;
  }

  .mobile-repository-link span{
    display: none;
  }

  .mobile-language-switch{
    flex: 1 1 auto;
    gap: 9px;
    padding: 0 16px;
  }

  .mobile-language-switch .bi-chevron-down{
    display: none !important;
  }
}

@media (max-width: 430px){
  .language-switch{
    width: 42px;
    padding: 0;
  }

  .language-switch span,
.language-switch .bi-chevron-down{
    display: none;
  }
}

body .site-header,
body.home-page .site-header,
body.inner-page .site-header,
body.docs-page .site-header,
body .docs-page .site-header{
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body .site-header .nav,
body.docs-page .site-header .nav,
body .docs-page .site-header .nav{
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body .site-header .nav > a,
body.docs-page .site-header .nav > a,
body .docs-page .site-header .nav > a{
  position: relative;
  min-height: 44px;
  color: #cbd5e1 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-shadow: none;
}

body .site-header .nav > a:hover,
body .site-header .nav > a:focus-visible,
body .site-header .nav > a[aria-current="page"],
body.docs-page .site-header .nav > a:hover,
body.docs-page .site-header .nav > a:focus-visible,
body.docs-page .site-header .nav > a[aria-current="page"],
body .docs-page .site-header .nav > a:hover,
body .docs-page .site-header .nav > a:focus-visible,
body .docs-page .site-header .nav > a[aria-current="page"]{
  color: #ffffff !important;
  background: transparent !important;
  text-shadow: 0 0 18px rgba(96, 165, 250, 0.38);
}

body .site-header .nav > a::after,
body.docs-page .site-header .nav > a::after,
body .docs-page .site-header .nav > a::after{
  position: absolute;
  right: 18px;
  bottom: 4px;
  left: 18px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #22d3ee);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.62);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body .site-header .nav > a:hover::after,
body .site-header .nav > a:focus-visible::after,
body .site-header .nav > a[aria-current="page"]::after,
body.docs-page .site-header .nav > a:hover::after,
body.docs-page .site-header .nav > a:focus-visible::after,
body.docs-page .site-header .nav > a[aria-current="page"]::after,
body .docs-page .site-header .nav > a:hover::after,
body .docs-page .site-header .nav > a:focus-visible::after,
body .docs-page .site-header .nav > a[aria-current="page"]::after{
  opacity: 0.92;
  transform: scaleX(1);
}

body .header-action{
  color: #cbd5e1 !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body .header-action:hover,
body .header-action:focus-visible{
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(96, 165, 250, 0.3) !important;
}

body.inner-page .page-hero,
body.docs-page .page-hero{
  border-bottom-color: rgba(255, 255, 255, 0.055) !important;
}

body .tutorial-index-panel,
body .faq-hero-panel,
body .download-hero-panel,
body .tutorial-hero-card{
  color: #e2e8f0 !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.58), rgba(2, 6, 23, 0.38)) !important;
  border: 1px solid rgba(96, 165, 250, 0.16) !important;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

body.inner-page.tutorial-index-page .page-hero .tutorial-index-panel{
  background:
    radial-gradient(circle at 18% 14%, rgba(37, 99, 235, 0.2), transparent 42%),
    radial-gradient(circle at 92% 90%, rgba(34, 211, 238, 0.1), transparent 42%),
    linear-gradient(145deg, rgba(8, 13, 25, 0.82), rgba(4, 8, 16, 0.6)) !important;
  border-color: rgba(96, 165, 250, 0.18) !important;
}

body .tutorial-index-panel > div,
body .faq-hero-panel > div,
body .download-hero-panel a{
  color: #e2e8f0 !important;
  background: rgba(15, 23, 42, 0.42) !important;
  border-color: rgba(255, 255, 255, 0.085) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body.inner-page.tutorial-index-page .page-hero .tutorial-index-panel > div{
  background:
    linear-gradient(135deg, rgba(18, 27, 47, 0.72), rgba(6, 12, 24, 0.5)) !important;
  border-color: rgba(148, 163, 184, 0.12) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 42px rgba(0, 0, 0, 0.2) !important;
}

body .tutorial-index-panel strong,
body .faq-hero-panel strong,
body .download-hero-panel strong,
body .download-hero-panel b{
  color: #60a5fa !important;
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.26);
}

body .tutorial-index-panel span,
body .faq-hero-panel span,
body .download-hero-panel span,
body .download-hero-panel small{
  color: #cbd5e1 !important;
  background: transparent !important;
}

@media (max-width: 860px){
  body .site-header .nav,
body.docs-page .site-header .nav,
body .docs-page .site-header .nav{
    padding: 12px !important;
    background: rgba(6, 6, 8, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }
}

@media (max-width: 760px){
  body.home-page .hero-visual.official-network{
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 1 !important;
    display: block !important;
    width: min(100%, 380px) !important;
    max-width: 380px !important;
    height: 350px !important;
    min-height: 0 !important;
    margin: 4px auto 0 !important;
    opacity: 0.9 !important;
    overflow: visible !important;
    pointer-events: auto !important;
  }

  body.home-page .hero-visual.official-network .network-stage{
    --network-scale: 0.72;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 480px !important;
    max-width: none !important;
    margin: 0 0 0 calc((100% - 480px) / 2) !important;
    transform: scale(var(--network-scale)) !important;
    transform-origin: top center !important;
    animation: none !important;
  }
}

@media (max-width: 860px){
  body .site-header .brand,
body.docs-page .site-header .brand,
body .docs-page .site-header .brand,
body .header-actions,
body .site-header .nav-toggle,
body.docs-page .site-header .nav-toggle,
body .docs-page .site-header .nav-toggle{
    grid-row: 1 !important;
    align-self: center !important;
  }
}

body .site-header .nav-toggle,
body.docs-page .site-header .nav-toggle,
body .docs-page .site-header .nav-toggle{
  color: #cbd5e1 !important;
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}

body.inner-page .page-hero .tutorial-index-panel,
body.inner-page .page-hero .faq-hero-panel,
body.inner-page .section .faq-category-card,
body.inner-page .section .faq-sidebar-card,
body.inner-page .section .faq-category-nav,
body.inner-page .section .faq-link-box,
body.inner-page .section .faq-question-card,
body.inner-page .section .faq-detail-article,
body.inner-page .section .download-path-card,
body.inner-page .section .tutorial-sidebar-card,
body.inner-page .section .tutorial-path-card,
body.inner-page .section .tutorial-section,
body.inner-page .section .tutorial-figure{
  color: #e2e8f0 !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(12, 18, 32, 0.76), rgba(5, 8, 15, 0.68)) !important;
  border-color: rgba(148, 163, 184, 0.13) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 20px 60px rgba(0, 0, 0, 0.18) !important;
}

body.inner-page .page-hero .tutorial-index-panel > div,
body.inner-page .page-hero .faq-hero-panel > div,
body.inner-page .section .faq-category-card li a,
body.inner-page .section .faq-category-nav a,
body.inner-page .section .faq-sidebar-card a,
body.inner-page .section .faq-link-box a,
body.inner-page .section .download-path-card li a,
body.inner-page .section .tutorial-sidebar-card a,
body.inner-page .section .tutorial-path-card li a,
body.inner-page .section .tutorial-list li,
body.inner-page .section .tutorial-section li a,
body.inner-page .section .tutorial-section .button.outline,
body.inner-page .section .tutorial-section .button.secondary,
body.inner-page .section .faq-detail-article .button.outline,
body.inner-page .section .faq-question-card .button.outline,
body.inner-page .section .download-path-card .button.outline,
body.inner-page .section .tutorial-path-card .button.outline{
  color: #60a5fa !important;
  background:
    linear-gradient(135deg, rgba(18, 27, 47, 0.74), rgba(6, 12, 24, 0.56)) !important;
  border: 1px solid rgba(148, 163, 184, 0.13) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

body.inner-page .section .faq-category-card li a:hover,
body.inner-page .section .faq-category-card li a:focus-visible,
body.inner-page .section .faq-category-nav a:hover,
body.inner-page .section .faq-category-nav a:focus-visible,
body.inner-page .section .faq-category-nav a[aria-current="page"],
body.inner-page .section .faq-sidebar-card a:hover,
body.inner-page .section .faq-sidebar-card a:focus-visible,
body.inner-page .section .faq-link-box a:hover,
body.inner-page .section .faq-link-box a:focus-visible,
body.inner-page .section .download-path-card li a:hover,
body.inner-page .section .download-path-card li a:focus-visible,
body.inner-page .section .tutorial-sidebar-card a:hover,
body.inner-page .section .tutorial-sidebar-card a:focus-visible,
body.inner-page .section .tutorial-path-card li a:hover,
body.inner-page .section .tutorial-path-card li a:focus-visible,
body.inner-page .section .tutorial-section li a:hover,
body.inner-page .section .tutorial-section li a:focus-visible,
body.inner-page .section .tutorial-section .button.outline:hover,
body.inner-page .section .tutorial-section .button.outline:focus-visible,
body.inner-page .section .tutorial-section .button.secondary:hover,
body.inner-page .section .tutorial-section .button.secondary:focus-visible,
body.inner-page .section .faq-detail-article .button.outline:hover,
body.inner-page .section .faq-detail-article .button.outline:focus-visible,
body.inner-page .section .faq-question-card .button.outline:hover,
body.inner-page .section .faq-question-card .button.outline:focus-visible,
body.inner-page .section .download-path-card .button.outline:hover,
body.inner-page .section .download-path-card .button.outline:focus-visible,
body.inner-page .section .tutorial-path-card .button.outline:hover,
body.inner-page .section .tutorial-path-card .button.outline:focus-visible{
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.16) !important;
  border-color: rgba(96, 165, 250, 0.32) !important;
}

body.inner-page .section .faq-category-card h3,
body.inner-page .section .faq-sidebar-card h2,
body.inner-page .section .faq-category-nav h2,
body.inner-page .section .faq-question-card h3,
body.inner-page .section .download-path-card h3,
body.inner-page .section .tutorial-sidebar-card h2,
body.inner-page .section .tutorial-path-card h3,
body.inner-page .section .tutorial-section h2,
body.inner-page .section .tutorial-section h3,
body.inner-page .section .faq-detail-article h2,
body.inner-page .section .faq-detail-article h3{
  color: #ffffff !important;
}

body.inner-page .section .faq-category-card p,
body.inner-page .section .faq-category-card li,
body.inner-page .section .faq-sidebar-card p,
body.inner-page .section .faq-category-nav p,
body.inner-page .section .faq-question-card p,
body.inner-page .section .download-path-card p,
body.inner-page .section .download-path-card li,
body.inner-page .section .tutorial-path-card p,
body.inner-page .section .tutorial-path-card li,
body.inner-page .section .tutorial-section p,
body.inner-page .section .tutorial-section li,
body.inner-page .section .faq-detail-article p,
body.inner-page .section .faq-detail-article li{
  color: #94a3b8 !important;
}

body.inner-page .section .tutorial-figure img{
  background: transparent !important;
  border-radius: 8px !important;
}

body.inner-page .section .compare-table-wrap{
  background:
    radial-gradient(circle at 22% 0%, rgba(37, 99, 235, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(12, 18, 32, 0.82), rgba(5, 8, 15, 0.76)) !important;
  border: 1px solid rgba(148, 163, 184, 0.13) !important;
  border-radius: 8px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 20px 60px rgba(0, 0, 0, 0.18) !important;
}

body.inner-page .section .compare-table{
  background: transparent !important;
}

body.inner-page .section .compare-table tr,
body.inner-page .section .compare-row-difference{
  background: transparent !important;
}

body.inner-page .section .compare-table th,
body.inner-page .section .compare-table td{
  color: #cbd5e1 !important;
  background: rgba(255, 255, 255, 0.018) !important;
  border-color: rgba(148, 163, 184, 0.12) !important;
}

body.inner-page .section .compare-table thead th{
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.08) !important;
}

body.inner-page .section .compare-table tbody th{
  color: #e2e8f0 !important;
  background: rgba(255, 255, 255, 0.026) !important;
}

body.inner-page .section .compare-table-client span:last-child,
body.inner-page .section .compare-table strong{
  color: #ffffff !important;
}

body.inner-page .section .compare-table a:not(.button){
  color: #60a5fa !important;
}

body.inner-page .section .compare-table .compare-client-logo{
  background: rgba(37, 99, 235, 0.1) !important;
  border-color: rgba(96, 165, 250, 0.2) !important;
  box-shadow: none !important;
}

@media (max-width: 760px){
  body.inner-page .section .compare-table-wrap{
    overflow: visible !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  body.inner-page .section .compare-table{
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
  }

  body.inner-page .section .compare-table thead{
    display: none !important;
  }

  body.inner-page .section .compare-table tbody{
    display: grid !important;
    width: 100% !important;
    gap: 12px !important;
  }

  body.inner-page .section .compare-table tr{
    display: grid !important;
    width: 100% !important;
    padding: 14px !important;
    background:
      radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.12), transparent 42%),
      linear-gradient(145deg, rgba(12, 18, 32, 0.78), rgba(5, 8, 15, 0.7)) !important;
    border: 1px solid rgba(148, 163, 184, 0.13) !important;
    border-radius: 8px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045) !important;
  }

  body.inner-page .section .compare-table th,
body.inner-page .section .compare-table td{
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  body.inner-page .section .compare-table tbody th{
    margin-bottom: 10px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  body.inner-page .section .compare-table td{
    display: grid !important;
    grid-template-columns: minmax(0, 104px) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 8px !important;
    padding-top: 8px !important;
    color: #cbd5e1 !important;
    border-top: 1px solid rgba(148, 163, 184, 0.12) !important;
    overflow-wrap: anywhere;
  }

  body.inner-page .section .compare-table td::before{
    content: attr(data-label);
    color: #60a5fa;
    font-size: 12px !important;
    font-weight: 900;
    line-height: 1.45;
  }

  body.inner-page .section .compare-table-client{
    gap: 8px;
  }

  body.inner-page .section .compare-table-client span:last-child{
    color: #ffffff !important;
    font-size: 14px !important;
  }

  body .docs-layout,
body .docs-article,
body .docs-article *,
body .client-detail-layout,
body .client-detail-layout > *,
body .detail-stack,
body .detail-panel,
body .faq-category-layout,
body .faq-category-layout > *{
    min-width: 0 !important;
  }

  body .docs-article,
body .detail-panel,
body .section-title h2,
body .faq-hero-panel strong,
body .download-hero-panel strong{
    overflow-wrap: anywhere;
  }

  body .docs-article pre,
body .docs-article code{
    max-width: 100%;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }

  body .docs-article .docs-table{
    overflow: visible !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  body .docs-article .docs-table table{
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: transparent !important;
  }

  body .docs-article .docs-table thead{
    display: none !important;
  }

  body .docs-article .docs-table tbody{
    display: grid !important;
    width: 100% !important;
    gap: 10px !important;
  }

  body .docs-article .docs-table tr{
    display: grid !important;
    width: 100% !important;
    padding: 12px !important;
    background:
      radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.12), transparent 42%),
      linear-gradient(145deg, rgba(12, 18, 32, 0.78), rgba(5, 8, 15, 0.7)) !important;
    border: 1px solid rgba(148, 163, 184, 0.13) !important;
    border-radius: 8px !important;
  }

  body .docs-article .docs-table th,
body .docs-article .docs-table td{
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  body .docs-article .docs-table td{
    display: grid !important;
    grid-template-columns: minmax(0, 96px) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 8px !important;
    padding-top: 8px !important;
    color: #cbd5e1 !important;
    border-top: 1px solid rgba(148, 163, 184, 0.12) !important;
    overflow-wrap: anywhere;
  }

  body .docs-article .docs-table td::before{
    content: attr(data-label);
    color: #60a5fa;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.45;
  }

  body .tutorial-index-panel > div,
body .faq-hero-panel > div,
body .download-hero-panel a{
    min-width: 0 !important;
  }

  body .tutorial-index-panel strong,
body .faq-hero-panel strong,
body .download-hero-panel strong{
    max-width: 100%;
    font-size: clamp(24px, 6.2vw, 30px) !important;
    line-height: 1.05 !important;
    overflow-wrap: anywhere;
  }
}

body .section .card-actions .button,
body .section .recommendation-actions a,
body .section .compare-summary-card .button,
body .section .compare-coverage-card .button,
body .section .download-next-steps a,
body .section .home-topic-links a{
  color: #60a5fa !important;
  background:
    linear-gradient(135deg, rgba(18, 27, 47, 0.78), rgba(6, 12, 24, 0.58)) !important;
  border: 1px solid rgba(148, 163, 184, 0.14) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

body .section .card-actions .button:hover,
body .section .card-actions .button:focus-visible,
body .section .recommendation-actions a:hover,
body .section .recommendation-actions a:focus-visible,
body .section .compare-summary-card .button:hover,
body .section .compare-summary-card .button:focus-visible,
body .section .compare-coverage-card .button:hover,
body .section .compare-coverage-card .button:focus-visible,
body .section .download-next-steps a:hover,
body .section .download-next-steps a:focus-visible,
body .section .home-topic-links a:hover,
body .section .home-topic-links a:focus-visible{
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.16) !important;
  border-color: rgba(96, 165, 250, 0.32) !important;
}

body .compare-selector-panel .compare-field span,
body .home-compare-selector .home-compare-platform span,
body .home-compare-selector .choice-client-label{
  color: #94a3b8 !important;
}

body .home-compare-selector .home-compare-platform{
  background:
    linear-gradient(135deg, rgba(18, 27, 47, 0.72), rgba(6, 12, 24, 0.56)) !important;
  border-color: rgba(148, 163, 184, 0.14) !important;
}

body .compare-selector-panel .compare-field select,
body .home-compare-selector .home-compare-platform select,
body .home-compare-selector .choice-client-select select{
  color: #e2e8f0 !important;
  background:
    linear-gradient(135deg, rgba(18, 27, 47, 0.8), rgba(6, 12, 24, 0.62)) !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045) !important;
}

body .compare-selector-panel .compare-field select:focus,
body .home-compare-selector .home-compare-platform select:focus,
body .home-compare-selector .choice-client-select select:focus{
  outline: 3px solid rgba(37, 99, 235, 0.2) !important;
  border-color: rgba(96, 165, 250, 0.42) !important;
}

body .compare-selector-panel .compare-field select option,
body .home-compare-selector .home-compare-platform select option,
body .home-compare-selector .choice-client-select select option{
  color: #e2e8f0;
  background: #0b1120;
}

:root{
  --site-header-overlap: 76px;
}

body.home-page main,
body.inner-page main,
body.docs-page main{
  margin-top: calc(var(--site-header-overlap) * -1) !important;
}

body.home-page .hero,
body.inner-page .page-hero,
body.docs-page .page-hero{
  padding-top: var(--site-header-overlap) !important;
}

body.home-page .site-header,
body.inner-page .site-header,
body.docs-page .site-header{
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body .site-header.is-solid,
body.home-page .site-header.is-solid,
body.inner-page .site-header.is-solid,
body.docs-page .site-header.is-solid,
body .docs-page .site-header.is-solid{
  background:
    linear-gradient(180deg, rgba(6, 6, 8, 0.9), rgba(6, 6, 8, 0.84)) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

body .site-header.is-solid .header-action,
body.docs-page .site-header.is-solid .header-action,
body .docs-page .site-header.is-solid .header-action{
  background: rgba(255, 255, 255, 0.055) !important;
  border-color: rgba(255, 255, 255, 0.11) !important;
}

:root{
  --color-primary: #2563eb;
  --color-primary-deep: #2563eb;
  --color-secondary: #22d3ee;
  --color-hover: #60a5fa;
  --color-bg: #060608;
  --color-surface: rgba(255, 255, 255, 0.035);
  --color-surface-hover: rgba(37, 99, 235, 0.14);
  --color-border: rgba(148, 163, 184, 0.14);
  --color-border-strong: rgba(96, 165, 250, 0.32);
  --text-heading: #ffffff;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --font-hero-title: 62px;
  --font-page-title: 46px;
  --font-section-title: 38px;
  --font-panel-title: 26px;
  --font-card-title: 21px;
  --font-body: 16px;
  --font-body-large: 17px;
  --font-small: 14px;
  --brand: var(--color-primary);
  --brand-hover: var(--color-hover);
  --brand-ink: var(--color-hover);
  --download-action: var(--color-primary);
  --download-action-hover: var(--color-hover);
  --download-action-shadow: rgba(37, 99, 235, 0.24);
  --tutorial-action: var(--color-surface);
  --tutorial-action-hover: var(--color-surface-hover);
  --tutorial-action-shadow: rgba(37, 99, 235, 0.18);
  --blue: var(--color-primary);
  --cyan: var(--color-secondary);
  --green: var(--color-primary);
  --amber: var(--color-primary);
  --orange: var(--color-primary);
  --red: var(--color-primary);
}

body{
  color: var(--text-body) !important;
  font-size: var(--font-body);
  line-height: 1.68;
}

body h1,
body h2,
body h3,
body h4,
body p,
body li,
body dd,
body dt,
body a,
body button,
body input,
body select,
body textarea{
  letter-spacing: 0 !important;
}

body main h1,
body main h2,
body main h3,
body main h4,
body main strong{
  color: var(--text-heading) !important;
}

body main p,
body main li,
body main dd,
body .meta,
body .breadcrumb,
body .section-title p,
body .hero-metrics span,
body .software-card dl,
body .download-path-card .meta{
  color: var(--text-muted) !important;
}

body.home-page .hero h1{
  max-width: 820px;
  color: var(--text-heading) !important;
  font-size: var(--font-hero-title) !important;
  font-weight: 900 !important;
  line-height: 1.06 !important;
}

body .hero h1,
body.inner-page .page-hero h1,
body.docs-page .page-hero h1,
body .client-detail-hero h1{
  color: var(--text-heading) !important;
  font-size: var(--font-page-title) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
}

body.home-page .hero h1 span,
body .hero h1 span,
body.inner-page .page-hero h1 span{
  color: transparent !important;
  background: linear-gradient(135deg, var(--color-hover), var(--color-secondary)) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

body .hero p,
body.inner-page .page-hero p,
body.docs-page .page-hero p,
body .client-detail-hero p{
  color: var(--text-muted) !important;
  font-size: var(--font-body-large) !important;
  line-height: 1.72 !important;
}

body .section-title h2,
body main > .section h2,
body main section > .container > h2{
  color: var(--text-heading) !important;
  font-size: var(--font-section-title) !important;
  font-weight: 900 !important;
  line-height: 1.14 !important;
}

body .docs-article h1{
  font-size: 36px !important;
  line-height: 1.18 !important;
}

body .docs-article h2,
body .detail-panel h2,
body .tutorial-section h2,
body .faq-detail-article h2,
body .faq-sidebar-card h2,
body .faq-category-nav h2,
body [class*="card"] h2,
body [class*="panel"] h2,
body [class*="box"] h2,
body [class*="item"] h2{
  font-size: var(--font-panel-title) !important;
  line-height: 1.22 !important;
}

body .section h3,
body .docs-article h3,
body .detail-panel h3,
body .tutorial-section h3,
body .faq-detail-article h3,
body [class*="card"] h3,
body [class*="panel"] h3,
body [class*="box"] h3{
  font-size: var(--font-card-title) !important;
  line-height: 1.25 !important;
}

body main p,
body main li,
body main dd,
body .docs-article p,
body .docs-article li,
body .detail-panel p,
body .faq-detail-article p,
body [class*="card"] p,
body [class*="panel"] p{
  font-size: var(--font-body) !important;
  line-height: 1.72 !important;
}

body .section a:not(.button):not(.network-node),
body .docs-article a,
body .detail-panel a:not(.button):not(.download-option),
body .faq-detail-article a:not(.button){
  color: var(--color-hover) !important;
}

body .section a:not(.button):not(.network-node):hover,
body .docs-article a:hover,
body .detail-panel a:not(.button):not(.download-option):hover,
body .faq-detail-article a:not(.button):hover{
  color: var(--text-heading) !important;
  background: var(--color-surface-hover) !important;
}

body.docs-page #doc-content,
body .docs-page #doc-content{
  scroll-margin-top: calc(var(--site-header-overlap, 76px) + 18px);
}

body.docs-page .docs-sidebar::before,
body .docs-page .docs-sidebar::before{
  color: #cbd5e1 !important;
  border-bottom-color: rgba(203, 213, 225, 0.68) !important;
}

body.docs-page .docs-article,
body .docs-page .docs-article{
  color: #dbeafe !important;
}

body.docs-page .docs-article p,
body.docs-page .docs-article li,
body.docs-page .docs-article blockquote,
body.docs-page .docs-article small,
body .docs-page .docs-article p,
body .docs-page .docs-article li,
body .docs-page .docs-article blockquote,
body .docs-page .docs-article small{
  color: #cbd5e1 !important;
}

body.docs-page .docs-article p strong,
body.docs-page .docs-article li strong,
body.docs-page .docs-article blockquote strong,
body .docs-page .docs-article p strong,
body .docs-page .docs-article li strong,
body .docs-page .docs-article blockquote strong{
  color: #ffffff !important;
}

body.docs-page .docs-nav-group summary,
body.docs-page .docs-outline h2,
body .docs-page .docs-nav-group summary,
body .docs-page .docs-outline h2{
  color: #f8fafc !important;
}

body.docs-page .docs-nav-group a,
body.docs-page .docs-outline a,
body .docs-page .docs-nav-group a,
body .docs-page .docs-outline a{
  color: #60a5fa !important;
}

body.docs-page .docs-nav-group a[aria-current="page"],
body.docs-page .docs-nav-group a:hover,
body.docs-page .docs-outline a:hover,
body .docs-page .docs-nav-group a[aria-current="page"],
body .docs-page .docs-nav-group a:hover,
body .docs-page .docs-outline a:hover{
  color: #ffffff !important;
}

body.inner-page .section .faq-provider-recommend{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.2vw, 28px);
  margin-top: clamp(22px, 2.8vw, 34px);
  padding: clamp(18px, 2.2vw, 26px);
  color: var(--text-heading);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(6, 12, 24, 0.68)),
    radial-gradient(circle at 88% 18%, rgba(34, 211, 238, 0.16), transparent 34%);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 48px rgba(15, 23, 42, 0.22);
}

body .faq-provider-recommend > div{
  flex: 1 1 420px;
  min-width: min(100%, 420px);
}

body .faq-provider-recommend .faq-provider-kicker{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 10px;
  color: #93c5fd;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 999px;
}

body .faq-provider-recommend h3{
  margin: 0;
  color: var(--text-heading);
}

body .faq-provider-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 10px;
}

body .faq-provider-logo{
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body .faq-provider-logo img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body .faq-provider-recommend p{
  max-width: 760px;
  margin: 0;
  color: var(--text-muted);
}

body .faq-provider-recommend .button{
  flex: 0 0 auto;
  min-width: 136px;
  margin-left: auto;
  white-space: nowrap;
}

body.inner-page.subscribe-page .section .subscribe-provider-recommend{
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  grid-template-areas:
    "logo title action"
    "logo copy action";
  align-items: center;
  column-gap: 18px;
  row-gap: 8px;
  width: 100%;
  margin: clamp(22px, 2.8vw, 34px) auto clamp(24px, 3vw, 36px);
  padding: clamp(18px, 2vw, 22px) clamp(20px, 2.6vw, 30px);
}

body.subscribe-page .subscribe-provider-recommend > div,
body.subscribe-page .subscribe-provider-recommend .faq-provider-brand{
  display: contents;
}

body.subscribe-page .subscribe-provider-recommend .faq-provider-kicker{
  grid-area: kicker;
  justify-self: start;
  min-height: 26px;
  padding: 3px 10px;
  font-size: 13px;
}

body.subscribe-page .subscribe-provider-recommend .faq-provider-logo{
  grid-area: logo;
  width: 64px;
  height: 64px;
  padding: 8px;
  border-radius: 18px;
}

body.subscribe-page .subscribe-provider-recommend h3{
  grid-area: title;
  align-self: end;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
}

body.subscribe-page .subscribe-provider-recommend p{
  grid-area: copy;
  align-self: start;
  max-width: none;
  line-height: 1.55;
}

body.subscribe-page .subscribe-provider-recommend .button{
  grid-area: action;
  align-self: center;
  min-width: 132px;
  margin-left: 24px;
}

@media (max-width: 720px){
  body.inner-page .section .faq-provider-recommend{
    align-items: stretch;
    border-radius: 20px;
  }

  body .faq-provider-recommend,
body .faq-provider-recommend .button{
    width: 100%;
  }

  body .faq-provider-recommend .button{
    margin-left: 0;
  }

  body .faq-provider-recommend{
    flex-direction: column;
  }

  body .faq-provider-recommend > div{
    flex-basis: auto;
    min-width: 0;
  }

  body.inner-page.subscribe-page .section .subscribe-provider-recommend{
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas:
      "logo title"
      "copy copy"
      "action action";
    column-gap: 12px;
    row-gap: 10px;
  }

  body.inner-page.subscribe-page .section .subscribe-provider-recommend .faq-provider-logo{
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  body.inner-page.subscribe-page .section .subscribe-provider-recommend h3{
    align-self: center;
    font-size: 20px;
  }

  body.inner-page.subscribe-page .section .subscribe-provider-recommend .button{
    width: 100%;
    margin-left: 0;
  }
}

body .button.primary,
body a.button.primary,
body button.button.primary,
body .home-compare-submit-row .button,
body .hero-actions .button.primary{
  color: var(--text-heading) !important;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep)) !important;
  border-color: transparent !important;
}

body .button.primary:hover,
body a.button.primary:hover,
body button.button.primary:hover,
body .home-compare-submit-row .button:hover,
body .hero-actions .button.primary:hover{
  color: var(--text-heading) !important;
  background: linear-gradient(135deg, var(--color-hover), var(--color-primary)) !important;
  border-color: var(--color-border-strong) !important;
}

body .download-hero .hero-actions .button.primary,
body.inner-page .page-hero.download-hero .hero-actions .button.primary,
body.tutorial-detail-page .hero-actions .button.primary{
  color: var(--text-heading) !important;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep)) !important;
  border-color: transparent !important;
  box-shadow: 0 12px 24px var(--download-action-shadow) !important;
}

body .download-hero .hero-actions .button.primary:hover,
body .download-hero .hero-actions .button.primary:focus-visible,
body.inner-page .page-hero.download-hero .hero-actions .button.primary:hover,
body.inner-page .page-hero.download-hero .hero-actions .button.primary:focus-visible,
body.tutorial-detail-page .hero-actions .button.primary:hover,
body.tutorial-detail-page .hero-actions .button.primary:focus-visible{
  color: var(--text-heading) !important;
  background: linear-gradient(135deg, var(--color-hover), var(--color-primary)) !important;
  border-color: var(--color-border-strong) !important;
  box-shadow: 0 14px 28px var(--download-action-shadow) !important;
}

body .step-card::before,
body .section.dark .step-card::before{
  color: var(--color-hover) !important;
  background: rgba(37, 99, 235, 0.1) !important;
  border: 1px solid rgba(96, 165, 250, 0.28) !important;
  border-radius: 999px !important;
  box-shadow:
    0 0 24px rgba(37, 99, 235, 0.24),
    0 0 48px rgba(37, 99, 235, 0.1) !important;
}

body .button.secondary,
body .button.outline,
body .button.ghost,
body .button.dark,
body a.button.secondary,
body button.button.secondary,
body .hero-actions a.button.secondary,
body .page-hero a.button.secondary,
body .client-detail-hero a.button.secondary,
body a.button[href$="-tutorial.html"],
body a.button[href*="-tutorial.html#"],
body a.button[href*="-tutorial.html?"],
body a.button[href$="/clash-tutorial.html"],
body a.button[href*="/clash-tutorial.html#"],
body .client-detail-hero a.button[href$="-tutorial.html"],
body .inner-page .page-hero a.button[href$="-tutorial.html"],
body.tutorial-detail-page .hero-actions .button.secondary[href="#steps"],
body .card-actions .button,
body .recommendation-actions a,
body .compare-selector-actions .button,
body .download-next-steps a,
body .home-topic-links a{
  color: var(--color-hover) !important;
  background: var(--color-surface) !important;
  border-color: var(--color-border) !important;
}

body .button.secondary:hover,
body .button.outline:hover,
body .button.ghost:hover,
body .button.dark:hover,
body a.button.secondary:hover,
body button.button.secondary:hover,
body .hero-actions a.button.secondary:hover,
body .page-hero a.button.secondary:hover,
body .client-detail-hero a.button.secondary:hover,
body a.button[href$="-tutorial.html"]:hover,
body a.button[href*="-tutorial.html#"]:hover,
body a.button[href*="-tutorial.html?"]:hover,
body a.button[href$="/clash-tutorial.html"]:hover,
body a.button[href*="/clash-tutorial.html#"]:hover,
body .client-detail-hero a.button[href$="-tutorial.html"]:hover,
body .inner-page .page-hero a.button[href$="-tutorial.html"]:hover,
body.tutorial-detail-page .hero-actions .button.secondary[href="#steps"]:hover,
body .card-actions .button:hover,
body .recommendation-actions a:hover,
body .compare-selector-actions .button:hover,
body .download-next-steps a:hover,
body .home-topic-links a:hover{
  color: var(--text-heading) !important;
  background: var(--color-surface-hover) !important;
  border-color: var(--color-border-strong) !important;
}

body .section .card-actions,
body .section .recommendation-actions,
body .section .compare-pair-actions,
body .section .compare-selector-actions,
body .section .hero-actions,
body .section .section-actions,
body .inner-page main .card-actions,
body .inner-page main .recommendation-actions,
body .inner-page main .compare-pair-actions,
body .inner-page main .compare-selector-actions,
body .inner-page main .hero-actions,
body .inner-page main .section-actions,
body .client-actions{
  color: inherit !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body .section .card-actions:hover,
body .section .recommendation-actions:hover,
body .section .compare-pair-actions:hover,
body .section .compare-selector-actions:hover,
body .section .hero-actions:hover,
body .section .section-actions:hover,
body .inner-page main .card-actions:hover,
body .inner-page main .recommendation-actions:hover,
body .inner-page main .compare-pair-actions:hover,
body .inner-page main .compare-selector-actions:hover,
body .inner-page main .hero-actions:hover,
body .inner-page main .section-actions:hover,
body .client-actions:hover{
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

body .tag,
body .tag.green,
body .tag.amber,
body .tag.red,
body .badge,
body .hero-kicker{
  color: var(--color-hover) !important;
  background: rgba(37, 99, 235, 0.1) !important;
  border-color: rgba(96, 165, 250, 0.24) !important;
}

body .platform-icon,
body .step-card .bi,
body .faq-card .bi,
body .software-card .bi{
  color: var(--color-hover) !important;
  background: rgba(37, 99, 235, 0.12) !important;
  border-color: rgba(96, 165, 250, 0.22) !important;
}

body .network-path.is-blue,
body .network-path.is-green,
body .network-path.is-purple,
body .network-path.is-amber,
body .network-track.is-blue,
body .network-track.is-green,
body .network-track.is-purple,
body .network-track.is-amber,
body .network-track-glow.is-blue,
body .network-track-glow.is-green,
body .network-track-glow.is-purple,
body .network-track-glow.is-amber{
  color: var(--color-primary) !important;
  stroke: var(--color-primary) !important;
}

body .network-path.is-cyan,
body .network-track.is-cyan,
body .network-track-glow.is-cyan{
  color: var(--color-secondary) !important;
  stroke: var(--color-secondary) !important;
}

body .network-node,
body .node-win,
body .node-mac,
body .node-android,
body .node-ios,
body .node-linux{
  color: var(--color-hover) !important;
}

body .node-mac{
  color: var(--color-hover) !important;
}

body .network-node span{
  background: rgba(37, 99, 235, 0.1) !important;
  border-color: rgba(96, 165, 250, 0.28) !important;
  box-shadow:
    0 0 24px rgba(37, 99, 235, 0.24),
    0 0 48px rgba(37, 99, 235, 0.1) !important;
}

body .node-mac span{
  background: rgba(37, 99, 235, 0.1) !important;
  border-color: rgba(96, 165, 250, 0.28) !important;
  box-shadow:
    0 0 24px rgba(37, 99, 235, 0.24),
    0 0 48px rgba(37, 99, 235, 0.1) !important;
}

body .network-caption small,
body .network-node small,
body .client-quick-facts dt,
body .docs-article code,
body .docs-article td::before{
  color: var(--color-hover) !important;
}

body .platform-icon:has(.bi-windows),
body .platform-icon:has(.bi-apple),
body .platform-icon:has(.bi-android2),
body .platform-icon:has(.bi-phone-fill),
body .platform-icon:has(.bi-display),
body .download-path-icon:has(.bi-windows),
body .download-path-icon:has(.bi-apple),
body .download-path-icon:has(.bi-android2),
body .download-path-icon:has(.bi-phone-fill),
body .download-path-icon:has(.bi-display),
body .platform-dock-icon:has(.bi-windows),
body .platform-dock-icon:has(.bi-apple),
body .platform-dock-icon:has(.bi-android2),
body .platform-dock-icon:has(.bi-phone-fill),
body .platform-dock-icon:has(.bi-display){
  display: inline-grid !important;
  place-items: center !important;
  color: var(--color-hover) !important;
  background: rgba(37, 99, 235, 0.1) !important;
  border: 1px solid rgba(96, 165, 250, 0.28) !important;
  border-radius: 18px !important;
  box-shadow:
    0 0 24px rgba(37, 99, 235, 0.24),
    0 0 48px rgba(37, 99, 235, 0.1) !important;
}

body .platform-icon:has(.bi-windows),
body .platform-icon:has(.bi-phone-fill),
body .download-path-icon:has(.bi-windows),
body .download-path-icon:has(.bi-phone-fill),
body .platform-dock-icon:has(.bi-windows),
body .platform-dock-icon:has(.bi-phone-fill){
  color: var(--color-hover) !important;
}

body .platform-icon .bi,
body .download-path-icon .bi,
body .platform-dock-icon .bi{
  display: inline-grid !important;
  place-items: center !important;
  line-height: 1 !important;
}

body mark,
body code,
body kbd{
  color: var(--color-hover) !important;
  background: rgba(37, 99, 235, 0.1) !important;
  border-color: rgba(96, 165, 250, 0.2) !important;
}

body select option{
  color: var(--text-body) !important;
  background: #0b1120 !important;
}

body.home-page .hero .hero-kicker{
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  align-self: flex-start !important;
}

body.docs-page .docs-sidebar,
body.docs-page .docs-outline,
body.docs-page .docs-nav-group,
body.docs-page .docs-nav-group summary,
body.docs-page .docs-nav-group a,
body.docs-page .docs-outline a{
  background: transparent !important;
  box-shadow: none !important;
}

body.docs-page .docs-nav-group{
  border: 0 !important;
}

body.docs-page .docs-nav-group summary{
  color: var(--text-heading) !important;
  border: 0 !important;
}

body.docs-page .docs-nav-group summary:hover,
body.docs-page .docs-nav-group a:hover,
body.docs-page .docs-nav-group a:focus-visible,
body.docs-page .docs-outline a:hover,
body.docs-page .docs-outline a:focus-visible{
  color: var(--color-hover) !important;
  background: transparent !important;
  border-color: transparent !important;
}

body.docs-page .docs-nav-group a,
body.docs-page .docs-outline a{
  color: var(--color-hover) !important;
  border: 0 !important;
  border-left: 2px solid transparent !important;
  border-radius: 0 !important;
}

body.docs-page .docs-nav-group a[aria-current="page"]{
  color: var(--text-heading) !important;
  background: transparent !important;
  border-left-color: var(--color-hover) !important;
  box-shadow: none !important;
  font-weight: 800 !important;
}

@media (max-width: 1180px){
  :root{
    --font-hero-title: 56px;
    --font-page-title: 42px;
    --font-section-title: 34px;
    --font-panel-title: 25px;
    --font-card-title: 20px;
  }
}

@media (max-width: 900px){
  :root{
    --font-hero-title: 44px;
    --font-page-title: 40px;
    --font-section-title: 32px;
    --font-panel-title: 24px;
    --font-card-title: 20px;
  }
}

@media (max-width: 560px){
  :root{
    --font-hero-title: 38px;
    --font-page-title: 34px;
    --font-section-title: 28px;
    --font-panel-title: 22px;
    --font-card-title: 19px;
  }

  body .hero p,
body.inner-page .page-hero p,
body.docs-page .page-hero p,
body .client-detail-hero p{
    font-size: var(--font-body) !important;
  }
}

:root{
  --fluid-gutter: clamp(16px, 2.4vw, 48px);
  --fluid-gap: clamp(14px, 1.7vw, 22px);
  --fluid-section-y: clamp(42px, 5vw, 76px);
  --fluid-card-pad: clamp(15px, 1.8vw, 26px);
  --fluid-hero-visual: min(100%, clamp(380px, 50vw, 560px));
}

body .container,
body.docs-page .container{
  width: min(100% - (var(--fluid-gutter) * 2), 1280px) !important;
}

body .section,
body .section.white,
body .section.dark{
  padding-block: var(--fluid-section-y) !important;
}

body .grid,
body .recommendation-grid,
body .trust-grid,
body .download-path-grid,
body .download-safety-grid,
body .tutorial-card-grid,
body .faq-category-grid,
body .faq-question-grid,
body .related-client-grid,
body .compare-coverage-grid,
body .compare-summary-grid,
body .compare-decision-grid,
body .footer-grid{
  gap: var(--fluid-gap) !important;
}

body .grid.four,
body .recommendation-grid,
body .trust-grid,
body .download-path-grid,
body .download-safety-grid,
body .tutorial-card-grid,
body .faq-category-grid,
body .faq-question-grid,
body .related-client-grid,
body .compare-coverage-grid,
body .compare-summary-grid,
body .compare-decision-grid{
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)) !important;
}

body .grid.three,
body .grid.two,
body .footer-grid{
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
}

body .feature-card,
body .recommendation-card,
body .platform-card,
body .download-path-card,
body .download-safety-card,
body .software-card,
body .trust-card,
body .step-card,
body .faq-card,
body .notice-card,
body .detail-panel,
body .tutorial-sidebar-card,
body .faq-sidebar-card,
body .tutorial-index-panel,
body .faq-hero-panel,
body .download-hero-panel,
body .compare-selector-panel,
body .troubleshoot-control-panel,
body .troubleshoot-result-panel{
  padding: var(--fluid-card-pad) !important;
}

body .home-page .hero,
body.home-page .hero{
  overflow: hidden !important;
}

body .home-page .hero-inner,
body .hero-inner{
  gap: clamp(22px, 3vw, 40px) !important;
}

body.home-page .hero-visual.official-network,
body .official-network{
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 1 !important;
  display: block !important;
  justify-self: center !important;
  width: var(--fluid-hero-visual) !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 !important;
  margin: 0 auto !important;
  opacity: 1 !important;
  overflow: visible !important;
  pointer-events: auto !important;
}

body.home-page .hero-visual.official-network .network-stage,
body .official-network .network-stage{
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 1 !important;
  margin: 0 auto !important;
  transform: none !important;
  transform-origin: center !important;
}

body .network-core-glow{
  width: clamp(180px, 49%, 236px) !important;
  height: clamp(180px, 49%, 236px) !important;
}

body .network-logo{
  width: clamp(112px, 31%, 148px) !important;
  height: clamp(112px, 31%, 148px) !important;
  padding: clamp(12px, 3.75%, 18px) !important;
}

body .network-caption{
  top: 71.75% !important;
  padding: 7px clamp(16px, 4.6%, 22px) !important;
}

body .network-node{
  gap: clamp(6px, 1.4%, 8px) !important;
}

body .network-node span{
  width: clamp(54px, 14.2%, 68px) !important;
  height: clamp(54px, 14.2%, 68px) !important;
}

body .network-node i{
  font-size: clamp(24px, 6.25vw, 30px) !important;
}

body .node-win{
  top: 8.5% !important;
  left: calc(50% - 18px) !important;
}

body .node-mac{
  top: 32.3% !important;
  right: 10.2% !important;
}

body .node-android{
  right: 22.7% !important;
  bottom: 9.6% !important;
}

body .node-ios{
  bottom: 9.6% !important;
  left: 22.7% !important;
}

body .node-linux{
  top: 32.3% !important;
  left: 10.2% !important;
}

body .download-toolbar,
body .hero-actions,
body .section-actions,
body .card-actions,
body .recommendation-actions,
body .compare-selector-actions{
  gap: clamp(10px, 1.6vw, 16px) !important;
}

body .download-toolbar{
  display: flex !important;
  flex-wrap: wrap !important;
}

body .compare-table-wrap{
  max-width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

body .home-page .hero-visual.official-network,
body .official-network,
body .network-stage,
body .hero-inner,
body .grid,
body .download-hero-grid,
body .client-hero-grid,
body .tutorial-index-hero-grid,
body .faq-hero-grid,
body .tutorial-hero-grid,
body .client-detail-layout,
body .faq-detail-layout,
body .tutorial-layout,
body .docs-layout,
body .download-path-grid,
body .download-safety-grid,
body .recommendation-grid,
body .trust-grid,
body .footer-grid,
body .feature-card,
body .recommendation-card,
body .platform-card,
body .download-path-card,
body .download-safety-card,
body .software-card,
body .detail-panel{
  transition:
    width 0.22s ease,
    max-width 0.22s ease,
    height 0.22s ease,
    min-height 0.22s ease,
    padding 0.22s ease,
    gap 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}

@media (max-width: 1180px){
  body.home-page .hero-inner,
body .home-page .hero-inner{
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)) !important;
    align-items: center !important;
  }

  body .download-hero-grid,
body .client-hero-grid,
body .tutorial-index-hero-grid,
body .tutorial-hero-grid,
body .faq-hero-grid,
body .client-detail-layout,
body .faq-detail-layout,
body .faq-category-layout,
body .tutorial-layout,
body .docs-layout,
body .home-choice,
body .not-found-layout{
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)) !important;
    gap: var(--fluid-gap) !important;
  }
}

@media (max-width: 760px){
  :root{
    --fluid-gutter: clamp(14px, 4vw, 18px);
    --fluid-gap: clamp(12px, 3.6vw, 18px);
    --fluid-card-pad: clamp(15px, 4.2vw, 19px);
    --fluid-hero-visual: min(100%, clamp(360px, 92vw, 420px));
  }

  body .home-page .hero-inner,
body .hero-inner{
    padding-block: clamp(30px, 8vw, 54px) !important;
  }

  body.home-page .hero-visual.official-network,
body .official-network{
    margin-top: clamp(10px, 3vw, 18px) !important;
  }
}

body.home-page .hero-visual.official-network .network-stage,
body .official-network .network-stage{
  container-type: inline-size;
}

body .network-core-glow{
  width: 49.1667cqw !important;
  height: 49.1667cqw !important;
  border-radius: 10cqw !important;
  filter: blur(8.75cqw) !important;
}

body .network-logo{
  width: 30.8333cqw !important;
  height: 30.8333cqw !important;
  padding: 3.75cqw !important;
  border-radius: 6.6667cqw !important;
}

body .network-caption{
  top: 71.6667% !important;
  gap: 2.0833cqw !important;
  padding: 1.4583cqw 4.5833cqw !important;
}

body .network-caption strong{
  font-size: clamp(12px, 2.9167cqw, 16px) !important;
}

body .network-caption small{
  font-size: clamp(10px, 2.5cqw, 14px) !important;
}

body .network-node{
  gap: 1.6667cqw !important;
  font-size: clamp(10px, 2.0833cqw, 13px) !important;
  line-height: 1.05 !important;
}

body .network-node span{
  width: 14.1667cqw !important;
  height: 14.1667cqw !important;
  border-radius: 3.75cqw !important;
}

body .network-node i{
  font-size: 6.25cqw !important;
}

body .network-node span > i.bi{
  display: grid !important;
  place-items: center !important;
  width: 1em !important;
  height: 1em !important;
  margin: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  transform: none !important;
}

body .network-node span > i.bi::before{
  display: block !important;
  margin: 0 !important;
  line-height: 1 !important;
}

body .network-node small{
  font-size: clamp(11px, 2.5cqw, 14px) !important;
  line-height: 1.05 !important;
}

body .node-win{
  top: 8.5417% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

body .node-mac{
  top: 32.2917% !important;
  right: 10.2083% !important;
}

body .node-android{
  right: 22.7083% !important;
  bottom: 11.25% !important;
}

body .node-ios{
  bottom: 11.25% !important;
  left: 22.7083% !important;
}

body .node-linux{
  top: 32.2917% !important;
  left: 10.2083% !important;
}

@media (min-width: 861px) and (max-width: 1180px){
  body .site-header .header-inner,
body.docs-page .site-header .header-inner,
body .docs-page .site-header .header-inner{
    grid-template-columns: minmax(0, 1fr) auto max-content !important;
  }

  body .header-actions{
    width: max-content !important;
    justify-self: end !important;
  }
}

body .faq-list{
  width: min(100%, 860px) !important;
  gap: clamp(8px, 1vw, 12px) !important;
}

body details.faq-card{
  padding: 0 !important;
  overflow: hidden;
}

body details.faq-card summary{
  min-height: clamp(56px, 4vw, 64px);
  padding: clamp(14px, 1.45vw, 17px) clamp(16px, 2vw, 22px) !important;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.35;
}

body details.faq-card summary::after{
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
}

body details.faq-card p{
  max-width: 74ch;
  padding: 0 clamp(16px, 2vw, 22px) clamp(16px, 1.7vw, 20px) !important;
}

@media (max-width: 560px){
  body details.faq-card summary{
    min-height: 52px;
    padding: 13px 15px !important;
    font-size: 15px;
  }

  body details.faq-card p{
    padding: 0 15px 15px !important;
  }
}

body .site-footer,
body.docs-page .site-footer,
body .docs-page .site-footer{
  padding-top: 0 !important;
  color: #94a3b8 !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, #050507 0%, #030305 100%) !important;
  border-top: 1px solid rgba(148, 163, 184, 0.12) !important;
}

body .site-footer::before,
body .site-footer::after,
body.docs-page .site-footer::before,
body.docs-page .site-footer::after,
body .docs-page .site-footer::before,
body .docs-page .site-footer::after{
  display: none !important;
}

body .footer-grid,
body.docs-page .footer-grid,
body .docs-page .footer-grid{
  grid-template-columns: minmax(260px, 1.18fr) repeat(3, minmax(140px, 0.72fr)) !important;
  align-items: start;
  gap: clamp(28px, 3.4vw, 48px) !important;
  padding: clamp(38px, 4vw, 50px) 0 clamp(26px, 3vw, 36px) !important;
}

body .footer-brand,
body.docs-page .footer-brand,
body .docs-page .footer-brand{
  gap: 12px;
}

body .site-footer .footer-brand-link,
body.docs-page .site-footer .footer-brand-link,
body .docs-page .site-footer .footer-brand-link{
  gap: 10px;
  color: #ffffff !important;
  font-size: 18px;
  line-height: 1;
}

body .site-footer .footer-logo,
body.docs-page .site-footer .footer-logo,
body .docs-page .site-footer .footer-logo{
  flex-basis: 36px !important;
  width: 36px !important;
  height: 36px !important;
}

body .site-footer .footer-logo img,
body.docs-page .site-footer .footer-logo img,
body .docs-page .site-footer .footer-logo img{
  width: 34px !important;
  height: 34px !important;
}

body .site-footer h3,
body.docs-page .site-footer h3,
body .docs-page .site-footer h3{
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: 15px !important;
  line-height: 1.25;
}

body .footer-brand p,
body.docs-page .footer-brand p,
body .docs-page .footer-brand p{
  max-width: 32ch;
  color: #94a3b8 !important;
  font-size: 15px !important;
  line-height: 1.56 !important;
}

body .footer-links,
body.docs-page .footer-links,
body .docs-page .footer-links{
  gap: 6px;
}

body .footer-links a,
body.docs-page .footer-links a,
body .docs-page .footer-links a{
  width: fit-content;
  color: #60a5fa !important;
  font-size: 15px !important;
  line-height: 1.44 !important;
}

body .footer-links a:hover,
body .footer-links a:focus-visible,
body.docs-page .footer-links a:hover,
body.docs-page .footer-links a:focus-visible,
body .docs-page .footer-links a:hover,
body .docs-page .footer-links a:focus-visible{
  color: #ffffff !important;
  background: transparent !important;
}

body .footer-bottom,
body.docs-page .footer-bottom,
body .docs-page .footer-bottom{
  padding: 16px 0 22px !important;
  color: #64748b !important;
  border-top: 1px solid rgba(148, 163, 184, 0.11) !important;
  font-size: 13px !important;
  line-height: 1.5;
}

@media (max-width: 980px){
  body .footer-grid,
body.docs-page .footer-grid,
body .docs-page .footer-grid{
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) !important;
  }
}

@media (max-width: 560px){
  body .footer-grid,
body.docs-page .footer-grid,
body .docs-page .footer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px 22px !important;
    padding: 34px 0 24px !important;
  }

  body .footer-brand,
body.docs-page .footer-brand,
body .docs-page .footer-brand{
    grid-column: 1 / -1;
  }

  body .footer-brand p,
body.docs-page .footer-brand p,
body .docs-page .footer-brand p{
    max-width: none;
  }
}

@media (max-width: 360px){
  body .footer-grid,
body.docs-page .footer-grid,
body .docs-page .footer-grid{
    grid-template-columns: 1fr !important;
  }
}

.vp-code-group{
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.92);
}

.vp-code-group .tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 10px 12px 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.48));
}

.vp-code-group .tabs input{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vp-code-group .tabs label{
  margin: 0 4px 10px 0;
  padding: 7px 12px;
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.2;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.vp-code-group .tabs input:checked + label{
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.45);
  background: rgba(37, 99, 235, 0.26);
}

.vp-code-group .tabs label:hover,
.vp-code-group .tabs input:focus-visible + label{
  color: #bfdbfe;
  border-color: rgba(96, 165, 250, 0.38);
}

.vp-code-group .blocks{
  padding: 0;
}

.vp-code-group .blocks > pre{
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.vp-code-group.is-initialized .blocks > pre{
  display: none;
}

.vp-code-group.is-initialized .blocks > pre.is-active{
  display: block;
}

@supports selector(:has(*)){
  .vp-code-group .blocks > pre{
    display: none;
  }

  .vp-code-group:has(.tabs input:nth-of-type(1):checked) .blocks > pre:nth-of-type(1),
.vp-code-group:has(.tabs input:nth-of-type(2):checked) .blocks > pre:nth-of-type(2),
.vp-code-group:has(.tabs input:nth-of-type(3):checked) .blocks > pre:nth-of-type(3),
.vp-code-group:has(.tabs input:nth-of-type(4):checked) .blocks > pre:nth-of-type(4),
.vp-code-group:has(.tabs input:nth-of-type(5):checked) .blocks > pre:nth-of-type(5),
.vp-code-group:has(.tabs input:nth-of-type(6):checked) .blocks > pre:nth-of-type(6),
.vp-code-group:has(.tabs input:nth-of-type(7):checked) .blocks > pre:nth-of-type(7),
.vp-code-group:has(.tabs input:nth-of-type(8):checked) .blocks > pre:nth-of-type(8){
    display: block;
  }
}

body.comparison-page .compare-client-logo,
body.comparison-page .compare-summary-logos .compare-client-logo,
body.comparison-page .compare-table .compare-client-logo,
body.comparison-page .compare-decision-client .compare-client-logo{
  background:
    radial-gradient(circle at 50% 35%, rgba(96, 165, 250, 0.16), transparent 62%),
    rgba(15, 23, 42, 0.64) !important;
  border-color: rgba(96, 165, 250, 0.22) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 30px rgba(2, 6, 23, 0.24) !important;
}

body.comparison-page .compare-client-logo img{
  background: transparent !important;
  box-shadow: none !important;
}

body.download-index-page #software .software-card .card-actions{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100%;
  margin-top: auto;
  align-items: stretch;
}

body.download-index-page #software .software-card .card-actions .button{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  white-space: nowrap !important;
  overflow-wrap: normal;
  word-break: keep-all;
}

body.download-index-page #software .software-card .card-actions .button.outline{
  color: #bfdbfe !important;
  background: rgba(15, 23, 42, 0.58) !important;
  border-color: rgba(96, 165, 250, 0.28) !important;
}

body.download-index-page #software .software-card .card-actions .button.dark{
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #2563eb) !important;
  border-color: rgba(174, 218, 223, 0.56) !important;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24) !important;
}

body.download-index-page #software .software-card .card-actions .button.outline:hover,
body.download-index-page #software .software-card .card-actions .button.outline:focus-visible{
  color: #ffffff !important;
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(174, 218, 223, 0.46) !important;
}

body.download-index-page #software .software-card .card-actions .button.dark:hover,
body.download-index-page #software .software-card .card-actions .button.dark:focus-visible{
  color: #ffffff !important;
  background: linear-gradient(135deg, #60a5fa, #2563eb) !important;
  border-color: rgba(191, 219, 254, 0.72) !important;
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.32) !important;
}

@media (max-width: 420px){
  body.download-index-page #software .software-card .card-actions{
    grid-template-columns: 1fr !important;
  }
}

body.client-detail-page .download-option{
  grid-template-columns: 64px minmax(0, 190px) !important;
  justify-content: center !important;
  align-content: center !important;
  align-items: center !important;
  gap: 6px 16px !important;
  min-height: 142px;
  text-align: left !important;
}

body.client-detail-page .download-option::before{
  align-self: center;
  justify-self: end;
  width: 58px;
  height: 68px;
}

body.client-detail-page .download-option::after{
  display: none !important;
}

body.client-detail-page .download-option strong,
body.client-detail-page .download-option span{
  grid-column: 2;
  justify-self: start;
  text-align: left !important;
}

body.client-detail-page .download-option strong{
  align-self: end;
  line-height: 1.34;
}

body.client-detail-page .download-option span{
  align-self: start;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (max-width: 520px){
  body.client-detail-page .download-option{
    grid-template-columns: 58px minmax(0, 1fr) !important;
    justify-content: stretch !important;
  }
}

.mobile-nav-visual{
  display: none;
}

.mobile-nav-item-icon{
  display: none;
}

@media (max-width: 860px){
  body .site-header .nav > a.mobile-nav-visual.mobile-nav-ad,
body.docs-page .site-header .nav > a.mobile-nav-visual.mobile-nav-ad,
body .docs-page .site-header .nav > a.mobile-nav-visual.mobile-nav-ad{
    display: none !important;
  }

  body .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad,
body.docs-page .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad,
body .docs-page .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad{
    position: relative;
    order: -1;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    margin: 0 0 8px;
    padding: 18px;
    overflow: hidden;
    color: #ffffff !important;
    background:
      radial-gradient(circle at 82% 34%, rgba(34, 211, 238, 0.08), transparent 34%),
      linear-gradient(135deg, rgba(15, 35, 75, 0.86), rgba(4, 17, 29, 0.98));
    border: 1px solid rgba(72, 126, 211, 0.56) !important;
    border-radius: 24px !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 18px 46px rgba(2, 8, 23, 0.22) !important;
    text-decoration: none !important;
    text-shadow: none !important;
  }

  body .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad::after,
body.docs-page .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad::after,
body .docs-page .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad::after{
    display: none !important;
    content: none !important;
  }

  body .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad:hover,
body.docs-page .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad:hover,
body .docs-page .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad:hover{
    color: #ffffff !important;
    background:
      radial-gradient(circle at 82% 34%, rgba(34, 211, 238, 0.11), transparent 34%),
      linear-gradient(135deg, rgba(20, 44, 92, 0.9), rgba(4, 17, 29, 0.98));
    border-color: rgba(96, 165, 250, 0.68) !important;
  }

  .mobile-nav-ad-main{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
  }

  .mobile-nav-ad-logo{
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 20px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 12px 30px rgba(2, 8, 23, 0.22);
  }

  .mobile-nav-visual-logo{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-nav-ad-copy{
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    min-width: 0;
  }

  .mobile-nav-ad-copy strong{
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.18;
  }

  .mobile-nav-ad-copy span{
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }

  .mobile-nav-ad-action{
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    padding: 0 18px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--ref-primary-action) 0%, var(--ref-secondary-action) 100%);
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
  }

  body .site-header .nav.is-open > a,
body.docs-page .site-header .nav.is-open > a,
body .docs-page .site-header .nav.is-open > a{
    gap: 10px;
  }

  body .site-header .nav.is-open > a .mobile-nav-item-icon,
body.docs-page .site-header .nav.is-open > a .mobile-nav-item-icon,
body .docs-page .site-header .nav.is-open > a .mobile-nav-item-icon{
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: #60a5fa;
    font-size: 18px;
    line-height: 1;
  }

  body .site-header .nav.is-open > a::after,
body.docs-page .site-header .nav.is-open > a::after,
body .docs-page .site-header .nav.is-open > a::after{
    display: none !important;
  }

  body .site-header .nav.is-open > a[aria-current="page"],
body.docs-page .site-header .nav.is-open > a[aria-current="page"],
body .docs-page .site-header .nav.is-open > a[aria-current="page"]{
    color: #ffffff !important;
    background: rgba(37, 99, 235, 0.1) !important;
    border: 1px solid rgba(96, 165, 250, 0.18) !important;
    border-radius: 12px !important;
  }
}

@media (min-width: 560px) and (max-width: 860px){
  body .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad,
body.docs-page .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad,
body .docs-page .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad{
    grid-template-columns: minmax(0, 1fr) minmax(136px, auto);
    align-items: center;
    padding: 22px;
  }

  .mobile-nav-ad-main{
    grid-column: 1;
  }

  .mobile-nav-ad-action{
    grid-column: 2;
    justify-self: end;
    width: auto;
    min-width: 136px;
  }
}

@media (max-width: 420px){
  body .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad,
body.docs-page .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad,
body .docs-page .site-header .nav.is-open .mobile-nav-visual.mobile-nav-ad{
    gap: 12px;
    padding: 16px;
  }

  .mobile-nav-ad-logo{
    width: 56px;
    height: 56px;
    padding: 9px;
    border-radius: 16px;
  }

  .mobile-nav-ad-copy strong{
    font-size: 18px;
  }

  .mobile-nav-ad-copy span{
    font-size: 13px;
  }

  .mobile-nav-ad-action{
    min-height: 42px;
    border-radius: 13px;
    font-size: 14px;
  }
}

.telegram-float,
.changlian-float,
.back-to-top{
  position: fixed;
  right: max(28px, env(safe-area-inset-right));
  bottom: max(28px, env(safe-area-inset-bottom));
  z-index: 120;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #bfdbfe;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(96, 165, 250, 0.42);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.telegram-float{
  bottom: calc(max(28px, env(safe-area-inset-bottom)) + 108px);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.changlian-float{
  bottom: calc(max(28px, env(safe-area-inset-bottom)) + 54px);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.telegram-float:hover,
.telegram-float:focus-visible,
.changlian-float:hover,
.changlian-float:focus-visible,
.back-to-top:hover,
.back-to-top:focus-visible{
  color: #ffffff;
  background: rgba(19, 35, 58, 0.92);
  border-color: rgba(96, 165, 250, 0.58);
  transform: translateY(-2px);
}

.telegram-float:hover,
.telegram-float:focus-visible{
  color: #dff3ff;
  border-color: rgba(34, 211, 238, 0.58);
}

.telegram-float:focus-visible,
.changlian-float:focus-visible,
.back-to-top:focus-visible{
  outline: 2px solid rgba(96, 165, 250, 0.5);
  outline-offset: 3px;
}

.telegram-float svg{
  display: block;
  width: 21px;
  height: 21px;
  fill: currentColor;
  transform: translateX(-1px);
}

.changlian-float img{
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.back-to-top-arrow{
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 1px;
  transform: translateY(2px) rotate(45deg);
}

@media (max-width: 640px){
  .telegram-float,
.changlian-float,
.back-to-top{
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .telegram-float{
    bottom: calc(max(16px, env(safe-area-inset-bottom)) + 104px);
  }

  .changlian-float{
    bottom: calc(max(16px, env(safe-area-inset-bottom)) + 52px);
  }

  .telegram-float svg{
    width: 20px;
    height: 20px;
  }

  .changlian-float img{
    width: 22px;
    height: 22px;
  }

  .back-to-top-arrow{
    width: 9px;
    height: 9px;
  }
}

:root{
  --catalog-stage: #060a12;
  --catalog-card: rgba(14, 18, 29, 0.78);
  --catalog-card-border: rgba(148, 163, 184, 0.22);
  --catalog-card-border-strong: rgba(96, 165, 250, 0.42);
  --catalog-title: #f8fbff;
  --catalog-copy: #9aa9bf;
  --catalog-muted: #73849d;
  --catalog-blue: #2f65d8;
  --catalog-blue-hover: #3b76f6;
  --catalog-teal: #12879c;
  --catalog-teal-hover: #18a5bd;
}

body.download-index-page #software,
body.tutorial-index-page #tutorials,
body.platform-download-page [id$="-clients"]{
  position: relative;
  color: var(--catalog-title);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 13, 24, 0.98), rgba(5, 8, 15, 0.99)) !important;
  background-size: 72px 72px, 72px 72px, auto !important;
}

body.download-index-page #software .section-title h2,
body.tutorial-index-page #tutorials .section-title h2,
body.platform-download-page [id$="-clients"] .section-title h2{
  color: var(--catalog-title) !important;
}

body.download-index-page #software .section-title p,
body.tutorial-index-page #tutorials .section-title p,
body.platform-download-page [id$="-clients"] .section-title p{
  color: var(--catalog-copy) !important;
}

body.download-index-page #software .download-toolbar,
body.tutorial-index-page #tutorials .download-toolbar{
  gap: 14px;
  margin-bottom: 48px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.download-index-page #software .download-filter,
body.tutorial-index-page #tutorials .download-filter{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  color: #c4ccd8 !important;
  background: rgba(18, 24, 37, 0.7) !important;
  border: 1px solid rgba(148, 163, 184, 0.16) !important;
  border-radius: 999px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.download-index-page #software .download-filter::before,
body.tutorial-index-page #tutorials .download-filter::before{
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-family: bootstrap-icons !important;
  font-size: 22px;
  font-weight: 400 !important;
  line-height: 1;
  content: "\f2cd";
}

body.download-index-page #software .download-filter[data-filter="windows"]::before,
body.tutorial-index-page #tutorials .download-filter[data-filter="windows"]::before{
  content: "\f65e";
}

body.download-index-page #software .download-filter[data-filter="mac"]::before,
body.download-index-page #software .download-filter[data-filter="ios"]::before,
body.tutorial-index-page #tutorials .download-filter[data-filter="mac"]::before,
body.tutorial-index-page #tutorials .download-filter[data-filter="ios"]::before{
  content: "\f65b";
}

body.download-index-page #software .download-filter[data-filter="android"]::before,
body.tutorial-index-page #tutorials .download-filter[data-filter="android"]::before{
  content: "\f7d1";
}

body.download-index-page #software .download-filter[data-filter="linux"]::before,
body.tutorial-index-page #tutorials .download-filter[data-filter="linux"]::before{
  content: "\f456";
}

body.download-index-page #software .download-filter:hover,
body.download-index-page #software .download-filter:focus-visible,
body.tutorial-index-page #tutorials .download-filter:hover,
body.tutorial-index-page #tutorials .download-filter:focus-visible{
  color: #eaf2ff !important;
  background: rgba(32, 42, 63, 0.88) !important;
  border-color: rgba(96, 165, 250, 0.28) !important;
  transform: translateY(-1px);
}

body.download-index-page #software .download-filter.is-active,
body.download-index-page #software .download-filter.is-active:hover,
body.download-index-page #software .download-filter.is-active:focus-visible,
body.tutorial-index-page #tutorials .download-filter.is-active,
body.tutorial-index-page #tutorials .download-filter.is-active:hover,
body.tutorial-index-page #tutorials .download-filter.is-active:focus-visible{
  color: #b9d7ff !important;
  background: rgba(22, 49, 91, 0.68) !important;
  border-color: rgba(37, 99, 235, 0.55) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(37, 99, 235, 0.12),
    0 16px 36px rgba(37, 99, 235, 0.16);
}

body.download-index-page #software .grid.three,
body.tutorial-index-page #tutorials .grid.three,
body.platform-download-page [id$="-clients"] .grid.three{
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px 30px !important;
}

body.download-index-page #software .software-card,
body.tutorial-index-page #tutorials .software-card,
body.platform-download-page [id$="-clients"] .software-card{
  position: relative;
  display: grid !important;
  grid-template-columns: 82px minmax(0, 1fr);
  grid-template-rows: auto auto minmax(112px, 1fr) auto;
  align-items: start !important;
  min-height: 344px;
  padding: 30px 28px 28px;
  overflow: hidden;
  color: var(--catalog-title);
  text-align: left !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--catalog-card) !important;
  border: 1px solid var(--catalog-card-border) !important;
  border-radius: 8px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 58px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.download-index-page #software .software-card::after,
body.tutorial-index-page #tutorials .software-card::after,
body.platform-download-page [id$="-clients"] .software-card::after{
  position: absolute;
  inset: 0;
  display: block !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: 0.46;
  pointer-events: none;
}

body.download-index-page #software .software-card:hover,
body.tutorial-index-page #tutorials .software-card:hover,
body.platform-download-page [id$="-clients"] .software-card:hover{
  border-color: var(--catalog-card-border-strong) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 28px 64px rgba(0, 0, 0, 0.34) !important;
  transform: translateY(-3px);
}

body.download-index-page #software .software-card.is-featured,
body.tutorial-index-page #tutorials .software-card.is-featured,
body.platform-download-page [id$="-clients"] .software-card.is-featured{
  border-color: rgba(37, 99, 235, 0.48) !important;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0.016) 42%),
    var(--catalog-card) !important;
}

body.download-index-page #software .software-top,
body.tutorial-index-page #tutorials .software-top,
body.platform-download-page [id$="-clients"] .software-top{
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  justify-content: flex-start;
  width: auto;
  min-height: 0 !important;
}

body.download-index-page #software .software-logo,
body.tutorial-index-page #tutorials .software-logo,
body.platform-download-page [id$="-clients"] .software-logo{
  width: 66px;
  height: 66px;
  margin: 0 !important;
  padding: 8px;
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 8px !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

body.download-index-page #software .software-logo img,
body.tutorial-index-page #tutorials .software-logo img,
body.platform-download-page [id$="-clients"] .software-logo img{
  width: 50px;
  height: 50px;
  object-fit: contain;
}

body.download-index-page #software .software-card h3,
body.tutorial-index-page #tutorials .software-card h3,
body.platform-download-page [id$="-clients"] .software-card h3{
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  min-width: 0;
  margin: 3px 110px 0 0;
  color: var(--catalog-title) !important;
  font-size: 23px;
  line-height: 1.24;
  text-align: left !important;
}

body.download-index-page #software .software-card h3 a,
body.tutorial-index-page #tutorials .software-card h3 a,
body.platform-download-page [id$="-clients"] .software-card h3 a{
  color: inherit !important;
}

body.download-index-page #software .software-card .meta,
body.tutorial-index-page #tutorials .software-card .meta,
body.platform-download-page [id$="-clients"] .software-card .meta{
  grid-column: 2;
  grid-row: 2;
  justify-content: flex-start !important;
  align-self: start;
  width: auto;
  max-width: 100%;
  margin: 9px 96px 0 0 !important;
  gap: 8px;
}

body.download-index-page #software .tag,
body.tutorial-index-page #tutorials .tag,
body.platform-download-page [id$="-clients"] .tag,
body.download-index-page #software .ribbon,
body.tutorial-index-page #tutorials .ribbon,
body.platform-download-page [id$="-clients"] .ribbon{
  min-height: 28px;
  padding: 0 12px;
  color: #7dd3fc !important;
  background: rgba(8, 145, 178, 0.16) !important;
  border: 1px solid rgba(34, 211, 238, 0.32) !important;
  border-radius: 999px !important;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

body.download-index-page #software .tag.green,
body.tutorial-index-page #tutorials .tag.green,
body.platform-download-page [id$="-clients"] .tag.green{
  color: #65e3b2 !important;
  background: rgba(6, 182, 212, 0.14) !important;
  border-color: rgba(6, 182, 212, 0.38) !important;
}

body.download-index-page #software .tag.amber,
body.tutorial-index-page #tutorials .tag.amber,
body.platform-download-page [id$="-clients"] .tag.amber{
  color: #f8d58a !important;
  background: rgba(37, 99, 235, 0.13) !important;
  border-color: rgba(37, 99, 235, 0.34) !important;
}

body.download-index-page #software .tag.red,
body.tutorial-index-page #tutorials .tag.red,
body.platform-download-page [id$="-clients"] .tag.red{
  color: #fca5a5 !important;
  background: rgba(37, 99, 235, 0.12) !important;
  border-color: rgba(248, 113, 113, 0.32) !important;
}

body.download-index-page #software .ribbon,
body.tutorial-index-page #tutorials .ribbon,
body.platform-download-page [id$="-clients"] .ribbon{
  position: absolute;
  top: 30px;
  right: 28px;
  z-index: 4;
  max-width: 112px;
  white-space: nowrap;
}

body.download-index-page #software .software-card dl,
body.platform-download-page [id$="-clients"] .software-card dl{
  display: none !important;
}

body.tutorial-index-page #tutorials .software-card dl{
  grid-column: 2;
  grid-row: 2;
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: flex-start;
  width: auto;
  margin: 9px 96px 0 0 !important;
  color: var(--catalog-muted) !important;
}

body.tutorial-index-page #tutorials .software-card dt{
  display: none !important;
}

body.tutorial-index-page #tutorials .software-card dd{
  margin: 0;
  color: var(--catalog-muted) !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

body.download-index-page #software .software-card p,
body.tutorial-index-page #tutorials .software-card p,
body.platform-download-page [id$="-clients"] .software-card p{
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: center;
  margin: 30px 0 28px !important;
  color: var(--catalog-copy) !important;
  font-size: 18px;
  line-height: 1.72;
  text-align: left !important;
}

body.download-index-page #software .software-card .card-actions,
body.tutorial-index-page #tutorials .software-card .card-actions,
body.platform-download-page [id$="-clients"] .software-card .card-actions{
  grid-column: 1 / -1;
  grid-row: 4;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100%;
  margin-top: auto !important;
}

body.download-index-page #software .software-card .card-actions .button,
body.tutorial-index-page #tutorials .software-card .card-actions .button,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 8px !important;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  white-space: normal !important;
}

body.download-index-page #software .software-card .card-actions .button.outline,
body.tutorial-index-page #tutorials .software-card .card-actions .button.outline,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.outline{
  color: #c6d4e8 !important;
  background: rgba(15, 23, 42, 0.48) !important;
  border-color: rgba(148, 163, 184, 0.22) !important;
  box-shadow: none !important;
}

body.download-index-page #software .software-card .card-actions .button.dark:hover,
body.download-index-page #software .software-card .card-actions .button.dark:focus-visible,
body.tutorial-index-page #tutorials .software-card .card-actions .button.dark:hover,
body.tutorial-index-page #tutorials .software-card .card-actions .button.dark:focus-visible,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark:hover,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark:focus-visible{
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--catalog-blue-hover), #2f65d8) !important;
  border-color: rgba(191, 219, 254, 0.66) !important;
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.34) !important;
}

body.download-index-page #software .software-card:nth-child(odd) .card-actions .button.dark:hover,
body.download-index-page #software .software-card:nth-child(odd) .card-actions .button.dark:focus-visible,
body.platform-download-page [id$="-clients"] .software-card:nth-child(odd) .card-actions .button.dark:hover,
body.platform-download-page [id$="-clients"] .software-card:nth-child(odd) .card-actions .button.dark:focus-visible{
  background: linear-gradient(135deg, var(--catalog-teal-hover), #12879c) !important;
  border-color: rgba(165, 243, 252, 0.58) !important;
  box-shadow: 0 18px 38px rgba(14, 116, 144, 0.34) !important;
}

body.download-index-page #software .software-card .card-actions .button.outline:hover,
body.download-index-page #software .software-card .card-actions .button.outline:focus-visible,
body.tutorial-index-page #tutorials .software-card .card-actions .button.outline:hover,
body.tutorial-index-page #tutorials .software-card .card-actions .button.outline:focus-visible,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.outline:hover,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.outline:focus-visible{
  color: #ffffff !important;
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(174, 218, 223, 0.44) !important;
}

body.client-detail-page .download-options{
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

body.client-detail-page .download-option{
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  justify-content: stretch !important;
  min-height: 72px;
  padding: 12px 22px !important;
  gap: 2px 16px !important;
  color: #ffffff !important;
  text-align: left !important;
  background: linear-gradient(135deg, var(--catalog-blue), #2557c7) !important;
  border: 1px solid rgba(174, 218, 223, 0.42) !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24) !important;
}

body.client-detail-page .download-option:nth-child(odd){
  background: linear-gradient(135deg, var(--catalog-teal), #0f7e92) !important;
  border-color: rgba(103, 232, 249, 0.36) !important;
  box-shadow: 0 16px 34px rgba(14, 116, 144, 0.24) !important;
}

body.client-detail-page .download-option::before,
body.client-detail-page .download-option::after{
  position: static !important;
  display: inline-grid !important;
  grid-row: 1 / span 2;
  place-items: center;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: bootstrap-icons !important;
  font-size: 24px;
  font-weight: 400 !important;
  line-height: 1;
}

body.client-detail-page .download-option::before{
  grid-column: 1;
  content: "\f302" !important;
}

body.client-detail-page .download-option[data-platform="windows"]::before{
  content: "\f65e" !important;
}

body.client-detail-page .download-option[data-platform="macos"]::before{
  content: "\f65b" !important;
}

body.client-detail-page .download-option[data-platform="linux"]::before{
  content: "\f302" !important;
}

body.client-detail-page .download-option[data-platform="android"]::before{
  content: "\f7d1" !important;
}

body.client-detail-page .download-option[data-platform="ios"]::before{
  content: "\f4e2" !important;
}

body.client-detail-page .download-option::after{
  grid-column: 3;
  content: "\f30a" !important;
  opacity: 0.92;
}

body.client-detail-page .download-option strong,
body.client-detail-page .download-option span{
  grid-column: 2 !important;
  justify-self: stretch !important;
  color: #ffffff !important;
  text-align: left !important;
}

body.client-detail-page .download-option strong{
  align-self: end !important;
  font-size: 18px;
  line-height: 1.25;
}

body.client-detail-page .download-option span{
  align-self: start !important;
  color: rgba(226, 236, 255, 0.78) !important;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

@media (max-width: 900px){
  body.download-index-page #software .grid.three,
body.tutorial-index-page #tutorials .grid.three,
body.platform-download-page [id$="-clients"] .grid.three{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px){
  body.download-index-page #software .download-filter,
body.tutorial-index-page #tutorials .download-filter{
    min-height: 46px;
    padding: 0 18px;
    font-size: 16px;
  }

  body.download-index-page #software .software-card,
body.tutorial-index-page #tutorials .software-card,
body.platform-download-page [id$="-clients"] .software-card{
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 0;
    padding: 22px 18px 20px;
  }

  body.download-index-page #software .software-logo,
body.tutorial-index-page #tutorials .software-logo,
body.platform-download-page [id$="-clients"] .software-logo{
    width: 58px;
    height: 58px;
    padding: 7px;
  }

  body.download-index-page #software .software-logo img,
body.tutorial-index-page #tutorials .software-logo img,
body.platform-download-page [id$="-clients"] .software-logo img{
    width: 44px;
    height: 44px;
  }

  body.download-index-page #software .software-card h3,
body.tutorial-index-page #tutorials .software-card h3,
body.platform-download-page [id$="-clients"] .software-card h3{
    margin-right: 76px;
    font-size: 20px;
  }

  body.download-index-page #software .ribbon,
body.tutorial-index-page #tutorials .ribbon,
body.platform-download-page [id$="-clients"] .ribbon{
    top: 22px;
    right: 18px;
    max-width: 82px;
    padding: 0 9px;
    font-size: 12px;
  }

  body.download-index-page #software .software-card .meta,
body.tutorial-index-page #tutorials .software-card .meta,
body.platform-download-page [id$="-clients"] .software-card .meta,
body.tutorial-index-page #tutorials .software-card dl{
    margin-right: 0 !important;
  }

  body.download-index-page #software .software-card p,
body.tutorial-index-page #tutorials .software-card p,
body.platform-download-page [id$="-clients"] .software-card p{
    margin: 24px 0 22px !important;
    font-size: 16px;
  }

  body.download-index-page #software .software-card .card-actions,
body.tutorial-index-page #tutorials .software-card .card-actions,
body.platform-download-page [id$="-clients"] .software-card .card-actions{
    grid-template-columns: 1fr !important;
  }

  body.client-detail-page .download-option{
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    padding: 12px 16px !important;
  }
}

body.download-index-page #software{
  background: #060608 !important;
  background-size: auto !important;
}

body.download-index-page #software .download-toolbar{
  gap: 10px;
  margin-bottom: 30px;
}

body.download-index-page #software .download-filter{
  min-height: 44px;
  padding: 0 20px;
  font-size: 16px;
}

body.download-index-page #software .download-filter::before{
  width: 18px;
  height: 18px;
  font-size: 18px;
}

body.download-index-page #software .software-card[hidden],
body.download-index-page #software .software-card.is-hidden{
  display: none !important;
}

body.download-index-page #software .grid.three{
  gap: 18px !important;
}

body.download-index-page #software .software-card{
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: auto auto auto auto;
  min-height: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.download-index-page #software .software-card::after{
  display: none !important;
}

body.download-index-page #software .software-card:hover{
  background: rgba(255, 255, 255, 0.052) !important;
  border-color: rgba(96, 165, 250, 0.28) !important;
  box-shadow: none !important;
}

body.download-index-page #software .software-card.is-featured{
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.13), rgba(37, 99, 235, 0.025)),
    rgba(255, 255, 255, 0.035) !important;
}

body.download-index-page #software .software-logo{
  width: 54px;
  height: 54px;
  padding: 7px;
  background: rgba(15, 23, 42, 0.62) !important;
  border-color: rgba(96, 165, 250, 0.2) !important;
  box-shadow: none;
}

body.download-index-page #software .software-logo img{
  width: 40px;
  height: 40px;
}

body.download-index-page #software .software-card h3{
  margin: 0 82px 0 0;
  font-size: 21px;
  line-height: 1.25;
}

body.download-index-page #software .software-card .meta{
  margin: 8px 82px 0 0 !important;
}

body.download-index-page #software .tag,
body.download-index-page #software .ribbon{
  min-height: 24px;
  padding: 0 10px;
  font-size: 12px;
}

body.download-index-page #software .ribbon{
  top: 22px;
  right: 22px;
}

body.download-index-page #software .software-card p{
  align-self: start;
  margin: 18px 0 18px !important;
  font-size: 15px;
  line-height: 1.68;
}

body.download-index-page #software .software-card .card-actions{
  gap: 10px !important;
}

body.download-index-page #software .software-card .card-actions .button{
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px !important;
  font-size: 14px;
}

body.download-index-page #software .software-card .card-actions .button.dark{
  order: 0;
  grid-column: auto;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 14px;
}

body.download-index-page #software .software-card .card-actions .button.dark::before{
  font-size: 18px;
}

body.download-index-page #software .software-card .card-actions .button.dark::after{
  display: none !important;
}

@media (max-width: 560px){
  body.download-index-page #software .download-toolbar{
    justify-content: flex-start;
  }

  body.download-index-page #software .download-filter{
    min-height: 40px;
    padding: 0 15px;
    font-size: 14px !important;
  }

  body.download-index-page #software .software-card{
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 18px;
  }

  body.download-index-page #software .software-logo{
    width: 46px;
    height: 46px;
    padding: 6px;
  }

  body.download-index-page #software .software-logo img{
    width: 34px;
    height: 34px;
  }

  body.download-index-page #software .software-card h3{
    margin-right: 70px;
    font-size: 18px;
  }

  body.download-index-page #software .software-card .meta{
    margin-right: 0 !important;
  }

  body.download-index-page #software .ribbon{
    top: 18px;
    right: 18px;
  }

  body.download-index-page #software .software-card p{
    margin: 16px 0 !important;
    font-size: 14px;
  }
}

body.download-index-page #software .grid.three{
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

body.download-index-page #software .software-card{
  grid-template-columns: 68px minmax(0, 1fr);
  grid-template-rows: auto auto minmax(92px, 1fr) auto;
  column-gap: 16px;
  min-height: 294px;
  padding: 26px 24px 28px;
  color: #f8fbff;
  background:
    linear-gradient(145deg, rgba(21, 26, 41, 0.78), rgba(10, 13, 22, 0.88)),
    rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  border-radius: 24px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 48px rgba(0, 0, 0, 0.22) !important;
}

body.download-index-page #software .software-card::before{
  position: absolute;
  top: 28px;
  right: 24px;
  z-index: 3;
  display: inline-flex !important;
  align-items: center;
  min-height: 32px;
  max-width: 104px;
  padding: 0 12px;
  color: #6ee7b7;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.38);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  content: attr(data-status);
}

body.download-index-page #software .software-card.is-featured::before{
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(96, 165, 250, 0.45);
}

body.download-index-page #software .software-top{
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

body.download-index-page #software .software-logo{
  width: 62px;
  height: 62px;
  padding: 8px;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 20px !important;
  box-shadow: none;
}

body.download-index-page #software .software-logo img{
  width: 46px;
  height: 46px;
}

body.download-index-page #software .ribbon{
  display: none !important;
}

body.download-index-page #software .software-card h3{
  align-self: end;
  margin: 0 108px 0 0;
  font-size: var(--font-card-title) !important;
  line-height: 1.25 !important;
}

body.download-index-page #software .software-card .meta{
  align-self: start;
  margin: 8px 108px 0 0 !important;
  gap: 6px;
}

body.download-index-page #software .software-card .meta .tag{
  min-height: 0;
  padding: 0;
  color: #75849a !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 600;
  line-height: 1.35 !important;
}

body.download-index-page #software .software-card .meta .tag + .tag::before{
  margin-right: 8px;
  color: #56657a;
  content: "·";
}

body.download-index-page #software .software-card p{
  grid-column: 1 / -1;
  align-self: center;
  margin: 22px 0 24px !important;
  color: #94a3b8 !important;
  font-size: var(--font-body) !important;
  line-height: 1.72 !important;
}

body.download-index-page #software .software-card .card-actions{
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

body.download-index-page #software .software-card .card-actions .button.outline{
  display: none !important;
}

body.download-index-page #software .software-card .card-actions .button.dark{
  display: flex !important;
  justify-content: space-between;
  min-height: 52px;
  width: 100%;
  padding: 0 22px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #11869a, #177f95) !important;
  border: 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 34px rgba(14, 116, 144, 0.26) !important;
  font-size: 15px;
  font-weight: 800;
}

body.download-index-page #software .software-card:nth-child(even) .card-actions .button.dark{
  background: linear-gradient(135deg, #356be2, #2559c6) !important;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28) !important;
}

body.download-index-page #software .software-card .card-actions .button.dark::before,
body.download-index-page #software .software-card .card-actions .button.dark::after{
  display: inline-grid !important;
  place-items: center;
  flex: 0 0 auto;
  font-family: bootstrap-icons !important;
  font-weight: 400 !important;
  line-height: 1;
}

body.download-index-page #software .software-card .card-actions .button.dark::before{
  font-size: 19px;
  content: "\f30a";
}

body.download-index-page #software .software-card .card-actions .button.dark::after{
  font-size: 17px;
  content: "\f138";
}

@media (max-width: 1100px){
  body.download-index-page #software .grid.three{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px){
  body.download-index-page #software .grid.three{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px){
  body.download-index-page #software .software-card{
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    column-gap: 16px;
    min-height: 0;
    padding: 22px 18px;
    border-radius: 18px !important;
  }

  body.download-index-page #software .software-card::before{
    top: 22px;
    right: 18px;
    min-height: 26px;
    max-width: 90px;
    padding: 0 10px;
    font-size: 12px;
  }

  body.download-index-page #software .software-logo{
    width: 52px;
    height: 52px;
    padding: 7px;
    border-radius: 14px !important;
  }

  body.download-index-page #software .software-logo img{
    width: 38px;
    height: 38px;
  }

  body.download-index-page #software .software-card h3{
    margin-right: 100px;
    font-size: var(--font-card-title) !important;
  }

  body.download-index-page #software .software-card .meta{
    margin: 7px 100px 0 0 !important;
  }

  body.download-index-page #software .software-card .meta .tag{
    font-size: 13px !important;
  }

  body.download-index-page #software .software-card p{
    margin: 22px 0 !important;
    font-size: var(--font-body) !important;
  }

  body.download-index-page #software .software-card .card-actions .button.dark{
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px !important;
    font-size: 15px !important;
  }
}

body.tutorial-index-page #tutorials{
  background: #060608 !important;
  background-size: auto !important;
}

body.tutorial-index-page #tutorials .software-card[hidden],
body.tutorial-index-page #tutorials .software-card.is-hidden{
  display: none !important;
}

body.tutorial-index-page #tutorials .grid.three{
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

body.tutorial-index-page #tutorials .software-card{
  grid-template-columns: 68px minmax(0, 1fr);
  grid-template-rows: auto auto minmax(92px, 1fr) auto;
  column-gap: 16px;
  min-height: 294px;
  padding: 26px 24px 28px;
  color: #f8fbff;
  background:
    linear-gradient(145deg, rgba(21, 26, 41, 0.78), rgba(10, 13, 22, 0.88)),
    rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  border-radius: 24px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 48px rgba(0, 0, 0, 0.22) !important;
}

body.tutorial-index-page #tutorials .software-card::before{
  position: absolute;
  top: 28px;
  right: 24px;
  z-index: 3;
  display: inline-flex !important;
  align-items: center;
  min-height: 32px;
  max-width: 104px;
  padding: 0 12px;
  color: #6ee7b7;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.38);
  border-radius: 999px;
  font-size: 12px !important;
  font-weight: 800;
  line-height: 1;
  content: attr(data-status);
}

body.tutorial-index-page #tutorials .software-card.is-featured::before{
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(96, 165, 250, 0.45);
}

body.tutorial-index-page #tutorials .software-card::after{
  display: none !important;
}

body.tutorial-index-page #tutorials .software-top{
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

body.tutorial-index-page #tutorials .software-logo{
  width: 62px;
  height: 62px;
  padding: 8px;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 20px !important;
  box-shadow: none;
}

body.tutorial-index-page #tutorials .software-logo img{
  width: 46px;
  height: 46px;
}

body.tutorial-index-page #tutorials .ribbon{
  display: none !important;
}

body.tutorial-index-page #tutorials .software-card h3{
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin: 0 108px 0 0;
  color: #f8fbff !important;
  font-size: var(--font-card-title) !important;
  line-height: 1.25 !important;
}

body.tutorial-index-page #tutorials .software-card dl{
  grid-column: 2;
  grid-row: 2;
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px;
  align-self: start;
  justify-content: flex-start;
  width: auto;
  margin: 8px 108px 0 0 !important;
  color: #75849a !important;
}

body.tutorial-index-page #tutorials .software-card dt{
  display: none !important;
}

body.tutorial-index-page #tutorials .software-card dd{
  margin: 0;
  color: #75849a !important;
  font-size: 13px !important;
  font-weight: 600;
  line-height: 1.35 !important;
}

body.tutorial-index-page #tutorials .software-card dd + dd::before{
  margin-right: 8px;
  color: #56657a;
  content: "·";
}

body.tutorial-index-page #tutorials .software-card p{
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: center;
  margin: 22px 0 24px !important;
  color: #94a3b8 !important;
  font-size: var(--font-body) !important;
  line-height: 1.72 !important;
}

body.tutorial-index-page #tutorials .software-card .card-actions{
  grid-column: 1 / -1;
  grid-row: 4;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

body.tutorial-index-page #tutorials .software-card .card-actions .button.outline{
  display: none !important;
}

body.tutorial-index-page #tutorials .software-card .card-actions .button.dark{
  display: flex !important;
  justify-content: space-between;
  min-height: 52px;
  width: 100%;
  padding: 0 22px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #11869a, #177f95) !important;
  border: 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 34px rgba(14, 116, 144, 0.26) !important;
  font-size: 15px !important;
  font-weight: 800;
}

body.tutorial-index-page #tutorials .software-card:nth-child(even) .card-actions .button.dark{
  background: linear-gradient(135deg, #356be2, #2559c6) !important;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28) !important;
}

body.tutorial-index-page #tutorials .software-card .card-actions .button.dark::before,
body.tutorial-index-page #tutorials .software-card .card-actions .button.dark::after{
  display: inline-grid !important;
  place-items: center;
  flex: 0 0 auto;
  font-family: bootstrap-icons !important;
  font-weight: 400 !important;
  line-height: 1;
}

body.tutorial-index-page #tutorials .software-card .card-actions .button.dark::before{
  font-size: 19px;
  content: "\f444";
}

body.tutorial-index-page #tutorials .software-card .card-actions .button.dark::after{
  font-size: 17px;
  content: "\f138";
}

@media (max-width: 1100px){
  body.tutorial-index-page #tutorials .grid.three{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px){
  body.tutorial-index-page #tutorials .grid.three{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px){
  body.tutorial-index-page #tutorials .software-card{
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    column-gap: 16px;
    min-height: 0;
    padding: 22px 18px;
    border-radius: 18px !important;
  }

  body.tutorial-index-page #tutorials .software-card::before{
    top: 22px;
    right: 18px;
    min-height: 26px;
    max-width: 90px;
    padding: 0 10px;
    font-size: 12px;
  }

  body.tutorial-index-page #tutorials .software-logo{
    width: 52px;
    height: 52px;
    padding: 7px;
    border-radius: 14px !important;
  }

  body.tutorial-index-page #tutorials .software-logo img{
    width: 38px;
    height: 38px;
  }

  body.tutorial-index-page #tutorials .software-card h3{
    margin-right: 100px;
    font-size: var(--font-card-title) !important;
  }

  body.tutorial-index-page #tutorials .software-card dl{
    margin: 7px 100px 0 0 !important;
  }

  body.tutorial-index-page #tutorials .software-card dd{
    font-size: 13px !important;
  }

  body.tutorial-index-page #tutorials .software-card p{
    margin: 22px 0 !important;
    font-size: var(--font-body) !important;
  }

  body.tutorial-index-page #tutorials .software-card .card-actions .button.dark{
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px !important;
    font-size: 15px !important;
  }
}

body.download-index-page #software,
body.tutorial-index-page #tutorials,
body.platform-download-page [id$="-clients"]{
  background: #060608 !important;
  background-image: none !important;
  background-size: auto !important;
}

body.download-index-page #software .grid.three,
body.tutorial-index-page #tutorials .grid.three,
body.platform-download-page [id$="-clients"] .grid.three{
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

body.download-index-page #software .software-card,
body.tutorial-index-page #tutorials .software-card,
body.platform-download-page [id$="-clients"] .software-card{
  grid-template-columns: 68px minmax(0, 1fr) !important;
  grid-template-rows: auto auto minmax(92px, 1fr) auto !important;
  column-gap: 16px !important;
  min-height: 294px !important;
  padding: 26px 24px 28px !important;
  color: #f8fbff !important;
  background:
    linear-gradient(145deg, rgba(21, 26, 41, 0.78), rgba(10, 13, 22, 0.88)),
    rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  border-radius: 24px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 48px rgba(0, 0, 0, 0.22) !important;
}

body.download-index-page #software .software-card::after,
body.tutorial-index-page #tutorials .software-card::after,
body.platform-download-page [id$="-clients"] .software-card::after{
  display: none !important;
}

body.download-index-page #software .software-card::before,
body.tutorial-index-page #tutorials .software-card::before,
body.platform-download-page [id$="-clients"] .software-card::before{
  position: absolute !important;
  top: 28px !important;
  right: 24px !important;
  z-index: 3 !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 32px !important;
  max-width: 104px !important;
  padding: 0 12px !important;
  color: #6ee7b7 !important;
  background: rgba(6, 182, 212, 0.12) !important;
  border: 1px solid rgba(52, 211, 153, 0.38) !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  content: attr(data-status) !important;
}

body.download-index-page #software .software-card:not([data-status])::before,
body.tutorial-index-page #tutorials .software-card:not([data-status])::before,
body.platform-download-page [id$="-clients"] .software-card:not([data-status])::before{
  display: none !important;
  content: none !important;
}

body.download-index-page #software .software-card.is-featured::before,
body.tutorial-index-page #tutorials .software-card.is-featured::before,
body.platform-download-page [id$="-clients"] .software-card.is-featured::before{
  color: #93c5fd !important;
  background: rgba(37, 99, 235, 0.16) !important;
  border-color: rgba(96, 165, 250, 0.45) !important;
}

body.download-index-page #software .software-top,
body.tutorial-index-page #tutorials .software-top,
body.platform-download-page [id$="-clients"] .software-top{
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  align-self: start !important;
}

body.download-index-page #software .software-logo,
body.tutorial-index-page #tutorials .software-logo,
body.platform-download-page [id$="-clients"] .software-logo{
  width: 62px !important;
  height: 62px !important;
  padding: 8px !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 20px !important;
  box-shadow: none !important;
}

body.download-index-page #software .software-logo img,
body.tutorial-index-page #tutorials .software-logo img,
body.platform-download-page [id$="-clients"] .software-logo img{
  width: 46px !important;
  height: 46px !important;
}

body.download-index-page #software .ribbon,
body.tutorial-index-page #tutorials .ribbon,
body.platform-download-page [id$="-clients"] .ribbon{
  display: none !important;
}

body.download-index-page #software .software-card h3,
body.tutorial-index-page #tutorials .software-card h3,
body.platform-download-page [id$="-clients"] .software-card h3{
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: end !important;
  margin: 0 108px 0 0 !important;
  color: #f8fbff !important;
  font-size: var(--font-card-title) !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

body.download-index-page #software .software-card .meta,
body.platform-download-page [id$="-clients"] .software-card .meta{
  grid-column: 2 !important;
  grid-row: 2 !important;
  align-self: start !important;
  justify-content: flex-start !important;
  width: auto !important;
  margin: 8px 108px 0 0 !important;
  gap: 6px !important;
}

body.download-index-page #software .software-card .meta .tag,
body.platform-download-page [id$="-clients"] .software-card .meta .tag{
  min-height: 0 !important;
  padding: 0 !important;
  color: #75849a !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}

body.download-index-page #software .software-card .meta .tag + .tag::before,
body.platform-download-page [id$="-clients"] .software-card .meta .tag + .tag::before{
  margin-right: 8px !important;
  color: #56657a !important;
  content: "·" !important;
}

body.tutorial-index-page #tutorials .software-card dl{
  grid-column: 2 !important;
  grid-row: 2 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  align-self: start !important;
  justify-content: flex-start !important;
  width: auto !important;
  margin: 8px 108px 0 0 !important;
  color: #75849a !important;
}

body.download-index-page #software .software-card dl,
body.platform-download-page [id$="-clients"] .software-card dl,
body.tutorial-index-page #tutorials .software-card dt{
  display: none !important;
}

body.tutorial-index-page #tutorials .software-card dd{
  margin: 0 !important;
  color: #75849a !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}

body.tutorial-index-page #tutorials .software-card dd + dd::before{
  margin-right: 8px !important;
  color: #56657a !important;
  content: "·" !important;
}

body.download-index-page #software .software-card p,
body.tutorial-index-page #tutorials .software-card p,
body.platform-download-page [id$="-clients"] .software-card p{
  grid-column: 1 / -1 !important;
  grid-row: 3 !important;
  align-self: center !important;
  margin: 22px 0 24px !important;
  color: #94a3b8 !important;
  font-size: var(--font-body) !important;
  line-height: 1.72 !important;
  text-align: left !important;
}

body.download-index-page #software .software-card .card-actions,
body.tutorial-index-page #tutorials .software-card .card-actions,
body.platform-download-page [id$="-clients"] .software-card .card-actions{
  grid-column: 1 / -1 !important;
  grid-row: 4 !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: 100% !important;
  margin-top: auto !important;
}

body.download-index-page #software .software-card .card-actions .button.outline,
body.tutorial-index-page #tutorials .software-card .card-actions .button.outline,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.outline{
  display: none !important;
}

body.download-index-page #software .software-card .card-actions .button.dark,
body.tutorial-index-page #tutorials .software-card .card-actions .button.dark,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark{
  display: flex !important;
  justify-content: space-between !important;
  min-height: 52px !important;
  width: 100% !important;
  padding: 0 22px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #11869a, #177f95) !important;
  border: 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 34px rgba(14, 116, 144, 0.26) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

body.download-index-page #software .software-card:nth-child(even) .card-actions .button.dark,
body.tutorial-index-page #tutorials .software-card:nth-child(even) .card-actions .button.dark,
body.platform-download-page [id$="-clients"] .software-card:nth-child(even) .card-actions .button.dark{
  background: linear-gradient(135deg, #356be2, #2559c6) !important;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28) !important;
}

body.download-index-page #software .software-card .card-actions .button.dark::before,
body.tutorial-index-page #tutorials .software-card .card-actions .button.dark::before,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark::before,
body.download-index-page #software .software-card .card-actions .button.dark::after,
body.tutorial-index-page #tutorials .software-card .card-actions .button.dark::after,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark::after{
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  font-family: bootstrap-icons !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

body.download-index-page #software .software-card .card-actions .button.dark::before,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark::before{
  font-size: 19px !important;
  content: "\f30a" !important;
}

body.tutorial-index-page #tutorials .software-card .card-actions .button.dark::before{
  font-size: 19px !important;
  content: "\f444" !important;
}

body.download-index-page #software .software-card .card-actions .button.dark::after,
body.tutorial-index-page #tutorials .software-card .card-actions .button.dark::after,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark::after{
  font-size: 17px !important;
  content: "\f138" !important;
}

@media (max-width: 1100px){
  body.download-index-page #software .grid.three,
body.tutorial-index-page #tutorials .grid.three,
body.platform-download-page [id$="-clients"] .grid.three{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px){
  body.download-index-page #software .grid.three,
body.tutorial-index-page #tutorials .grid.three,
body.platform-download-page [id$="-clients"] .grid.three{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px){
  body.download-index-page #software .software-card,
body.tutorial-index-page #tutorials .software-card,
body.platform-download-page [id$="-clients"] .software-card{
    grid-template-columns: 58px minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto auto !important;
    min-height: 0 !important;
    padding: 22px 18px !important;
    border-radius: 18px !important;
  }

  body.download-index-page #software .software-card::before,
body.tutorial-index-page #tutorials .software-card::before,
body.platform-download-page [id$="-clients"] .software-card::before{
    top: 22px !important;
    right: 18px !important;
    min-height: 26px !important;
    max-width: 90px !important;
    padding: 0 10px !important;
  }

  body.download-index-page #software .software-logo,
body.tutorial-index-page #tutorials .software-logo,
body.platform-download-page [id$="-clients"] .software-logo{
    width: 52px !important;
    height: 52px !important;
    padding: 7px !important;
    border-radius: 14px !important;
  }

  body.download-index-page #software .software-logo img,
body.tutorial-index-page #tutorials .software-logo img,
body.platform-download-page [id$="-clients"] .software-logo img{
    width: 38px !important;
    height: 38px !important;
  }

  body.download-index-page #software .software-card h3,
body.tutorial-index-page #tutorials .software-card h3,
body.platform-download-page [id$="-clients"] .software-card h3{
    margin-right: 100px !important;
  }

  body.download-index-page #software .software-card .meta,
body.platform-download-page [id$="-clients"] .software-card .meta,
body.tutorial-index-page #tutorials .software-card dl{
    margin: 7px 100px 0 0 !important;
  }

  body.download-index-page #software .software-card p,
body.tutorial-index-page #tutorials .software-card p,
body.platform-download-page [id$="-clients"] .software-card p{
    margin: 22px 0 !important;
  }

  body.download-index-page #software .software-card .card-actions .button.dark,
body.tutorial-index-page #tutorials .software-card .card-actions .button.dark,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark{
    padding: 0 18px !important;
    border-radius: 14px !important;
  }
}

body.client-detail-page .detail-panel p a:not(.button):not(.download-option),
body.client-detail-page .detail-panel li a:not(.button):not(.download-option),
body.client-detail-page .param-table a:not(.button):not(.download-option),
body.client-detail-page .param-row a:not(.button):not(.download-option){
  display: inline !important;
  padding: 0 !important;
  color: #60a5fa !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(96, 165, 250, 0.45) !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 4px !important;
}

body.client-detail-page .detail-panel p a:not(.button):not(.download-option):hover,
body.client-detail-page .detail-panel p a:not(.button):not(.download-option):focus-visible,
body.client-detail-page .detail-panel li a:not(.button):not(.download-option):hover,
body.client-detail-page .detail-panel li a:not(.button):not(.download-option):focus-visible,
body.client-detail-page .param-table a:not(.button):not(.download-option):hover,
body.client-detail-page .param-table a:not(.button):not(.download-option):focus-visible,
body.client-detail-page .param-row a:not(.button):not(.download-option):hover,
body.client-detail-page .param-row a:not(.button):not(.download-option):focus-visible{
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration-color: rgba(255, 255, 255, 0.72) !important;
}

body.client-detail-page .param-row dd{
  min-width: 0;
}

body.home-page #download-entry .grid.four,
body.download-index-page #download-decision .download-path-grid{
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: clamp(280px, 24vw, 340px) !important;
  grid-template-columns: none !important;
  gap: 22px !important;
  padding: 2px clamp(24px, 4vw, 48px) 6px 2px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

body.home-page #download-entry .grid.four::-webkit-scrollbar,
body.download-index-page #download-decision .download-path-grid::-webkit-scrollbar{
  display: none;
  width: 0;
  height: 0;
}

body.home-page #download-entry .platform-card,
body.download-index-page #download-decision .download-path-card{
  width: auto !important;
  scroll-snap-align: start;
}

body .horizontal-scroll-cue{
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 5;
  width: 114px;
  height: 68px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 48' fill='none'%3E%3Cpath d='M9 9 27 24 9 39' stroke='%237dd3fc' stroke-width='5.5' stroke-linecap='round' stroke-linejoin='round' opacity='.9'/%3E%3C/svg%3E") 0 50% / 38px 48px repeat-x,
    radial-gradient(circle at 78% 50%, rgba(14, 165, 233, 0.22), transparent 62%),
    linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.08) 34%, rgba(14, 165, 233, 0.16));
  border-radius: 999px 0 0 999px;
  box-shadow:
    inset 1px 0 0 rgba(125, 211, 252, 0.1),
    -18px 0 34px rgba(37, 99, 235, 0.07);
  opacity: 0.86;
  pointer-events: none;
  transform: translateY(-50%);
  animation: horizontalScrollCueGuide 1.05s linear infinite;
  visibility: hidden;
  will-change: background-position;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 86%, transparent 100%);
}

body .horizontal-scroll-frame.can-scroll-right > .horizontal-scroll-cue{
  visibility: visible;
}

@keyframes horizontalScrollCueGuide{
  0%{
    background-position: 0 50%, 0 0, 0 0;
  }

  100%{
    background-position: 38px 50%, 0 0, 0 0;
  }
}

@keyframes horizontalScrollCueMobileGuide{
  0%{
    background-position: 0 50%, 0 0, 0 0;
  }

  100%{
    background-position: 28px 50%, 0 0, 0 0;
  }
}

body .horizontal-scroll-frame{
  position: relative;
  max-width: 100%;
  isolation: isolate;
  --scroll-affordance-bg: #060608;
  --scroll-affordance-soft: rgba(6, 6, 8, 0);
}

body .horizontal-scroll-frame > .horizontal-scroll-target:focus-visible{
  outline: 1px solid rgba(96, 165, 250, 0.42);
  outline-offset: 8px;
}

body .horizontal-scroll-frame > .horizontal-scroll-target{
  width: 100%;
  -webkit-mask-image: none;
  mask-image: none;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

body .horizontal-scroll-frame::before,
body .horizontal-scroll-frame::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 6px;
  z-index: 4;
  width: clamp(28px, 3.8vw, 46px);
  display: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

body .horizontal-scroll-frame::before{
  left: -1px;
  background: linear-gradient(90deg, var(--scroll-affordance-bg) 0%, rgba(6, 6, 8, 0.48) 28%, var(--scroll-affordance-soft) 100%);
}

body .horizontal-scroll-frame::after{
  right: -1px;
  background: linear-gradient(270deg, var(--scroll-affordance-bg) 0%, rgba(6, 6, 8, 0.54) 28%, var(--scroll-affordance-soft) 100%);
}

body .horizontal-scroll-frame.can-scroll-left::before,
body .horizontal-scroll-frame.can-scroll-right::after{
  opacity: 0.7;
}

body .horizontal-scroll-frame.can-scroll-right > .horizontal-scroll-target{
  --horizontal-scroll-mask: none;
}

body .horizontal-scroll-frame.can-scroll-left:not(.can-scroll-right) > .horizontal-scroll-target{
  --horizontal-scroll-mask: none;
}

body .horizontal-scroll-frame.can-scroll-left.can-scroll-right > .horizontal-scroll-target{
  --horizontal-scroll-mask: none;
}

@media (max-width: 760px){
  body.home-page #download-entry .grid.four,
  body.download-index-page #download-decision .download-path-grid{
    grid-auto-columns: minmax(250px, 78vw) !important;
    gap: 16px !important;
    padding-right: 28px !important;
  }

  body .horizontal-scroll-frame::before,
  body .horizontal-scroll-frame::after{
    bottom: 6px;
    width: 34px;
  }

  body .horizontal-scroll-cue{
    top: 50%;
    right: 2px;
    width: 54px;
    height: 46px;
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 48' fill='none'%3E%3Cpath d='M9 9 27 24 9 39' stroke='%237dd3fc' stroke-width='5.5' stroke-linecap='round' stroke-linejoin='round' opacity='.9'/%3E%3C/svg%3E") 0 50% / 28px 34px repeat-x,
      radial-gradient(circle at 72% 50%, rgba(14, 165, 233, 0.18), transparent 66%),
      linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(14, 165, 233, 0.12));
    box-shadow:
      inset 1px 0 0 rgba(125, 211, 252, 0.08),
      -10px 0 22px rgba(37, 99, 235, 0.06);
    opacity: 0.74;
    animation: horizontalScrollCueMobileGuide 1.05s linear infinite;
    will-change: background-position;
  }
}

@media (prefers-reduced-motion: reduce){
  body .horizontal-scroll-cue{
    animation: none;
    opacity: 0.82;
  }
}

body.tutorial-index-page #tutorials .download-toolbar{
  gap: 10px !important;
  margin-bottom: 30px !important;
}

body.tutorial-index-page #tutorials .download-filter{
  min-height: 44px !important;
  padding: 0 20px !important;
  font-size: 16px !important;
}

body.tutorial-index-page #tutorials .download-filter::before{
  width: 18px !important;
  height: 18px !important;
  font-size: 18px !important;
}

@media (max-width: 560px){
  body.tutorial-index-page #tutorials .download-toolbar{
    justify-content: flex-start !important;
  }

  body.tutorial-index-page #tutorials .download-filter{
    min-height: 40px !important;
    padding: 0 15px !important;
    font-size: 14px !important;
  }
}

body.docs-page .site-header .nav > a,
body .docs-page .site-header .nav > a{
  font-size: 14px !important;
  font-weight: 800 !important;
}

body.docs-page .site-header .brand,
body .docs-page .site-header .brand{
  color: #ffffff !important;
}

body :where(section[id], article[id], aside[id], div[id], h1[id], h2[id], h3[id], h4[id]){
  scroll-margin-top: calc(var(--site-header-overlap, 76px) + 18px);
}

body.docs-page .docs-article :is(h1[id], h2[id], h3[id], h4[id]),
body .docs-page .docs-article :is(h1[id], h2[id], h3[id], h4[id]){
  scroll-margin-top: calc(var(--site-header-overlap, 76px) + 18px);
}

body.home-page #client-guide{
  background: #060608 !important;
  background-image: none !important;
}

body.home-page #client-guide .recommendation-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

body.home-page #client-guide .recommendation-card{
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: 62px auto auto minmax(92px, 1fr) auto !important;
  column-gap: 0 !important;
  min-height: 294px !important;
  padding: 26px 24px 28px !important;
  overflow: hidden !important;
  color: #f8fbff !important;
  text-align: left !important;
  background:
    linear-gradient(145deg, rgba(21, 26, 41, 0.78), rgba(10, 13, 22, 0.88)),
    rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  border-radius: 24px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 48px rgba(0, 0, 0, 0.22) !important;
}

body.home-page #client-guide .recommendation-card::before,
body.home-page #client-guide .recommendation-card::after{
  display: none !important;
  content: none !important;
}

body.home-page #client-guide .recommendation-card.is-recommended{
  border-color: rgba(96, 165, 250, 0.45) !important;
}

body.home-page #client-guide .recommendation-head{
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
  display: flex !important;
  justify-content: center !important;
  min-height: 0 !important;
  margin: 0 !important;
}

body.home-page #client-guide .recommendation-head .software-logo{
  width: 62px !important;
  height: 62px !important;
  margin: 0 auto !important;
  padding: 8px !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 20px !important;
  box-shadow: none !important;
}

body.home-page #client-guide .recommendation-head .software-logo img{
  width: 46px !important;
  height: 46px !important;
}

body.home-page #client-guide .recommendation-head > .ribbon,
body.home-page #client-guide .recommendation-head > .tag{
  position: absolute !important;
  top: 28px !important;
  right: 24px !important;
  z-index: 3 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 32px !important;
  max-width: 88px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  overflow: hidden !important;
  color: #6ee7b7 !important;
  background: rgba(6, 182, 212, 0.12) !important;
  border: 1px solid rgba(52, 211, 153, 0.38) !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.home-page #client-guide .recommendation-card.is-recommended .recommendation-head > .ribbon{
  color: #93c5fd !important;
  background: rgba(37, 99, 235, 0.16) !important;
  border-color: rgba(96, 165, 250, 0.45) !important;
}

body.home-page #client-guide .recommendation-head > .tag.amber{
  color: #93c5fd !important;
  background: rgba(37, 99, 235, 0.16) !important;
  border-color: rgba(96, 165, 250, 0.45) !important;
}

body.home-page #client-guide .recommendation-card h3{
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  align-self: start !important;
  min-width: 0 !important;
  margin: 18px 0 0 !important;
  color: #f8fbff !important;
  font-size: var(--font-card-title) !important;
  line-height: 1.25 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

body.home-page #client-guide .recommendation-card h3 a{
  display: block !important;
  min-width: 0 !important;
  overflow: hidden !important;
  color: inherit !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.home-page #client-guide .recommendation-card dl{
  grid-column: 1 / -1 !important;
  grid-row: 3 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  align-self: start !important;
  min-width: 0 !important;
  margin: 8px 0 0 !important;
  color: #75849a !important;
}

body.home-page #client-guide .recommendation-card dl div{
  display: inline-flex !important;
  min-width: 0 !important;
}

body.home-page #client-guide .recommendation-card dl div:nth-child(n+3),
body.home-page #client-guide .recommendation-card dt{
  display: none !important;
}

body.home-page #client-guide .recommendation-card dl div + div::before{
  margin: 0 8px !important;
  color: #56657a !important;
  content: "·" !important;
}

body.home-page #client-guide .recommendation-card dd{
  min-width: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: #75849a !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.home-page #client-guide .recommendation-card p{
  grid-column: 1 / -1 !important;
  grid-row: 4 !important;
  align-self: center !important;
  margin: 22px 0 24px !important;
  color: #94a3b8 !important;
  font-size: var(--font-body) !important;
  line-height: 1.72 !important;
  text-align: left !important;
}

body.home-page #client-guide .recommendation-actions{
  grid-column: 1 / -1 !important;
  grid-row: 5 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: 100% !important;
  margin-top: auto !important;
}

body.home-page #client-guide .recommendation-actions a{
  display: none !important;
}

body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child,
body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 52px !important;
  width: 100% !important;
  padding: 0 22px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #11869a, #177f95) !important;
  border: 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 34px rgba(14, 116, 144, 0.26) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

body.home-page #client-guide .recommendation-card:nth-child(even) .recommendation-actions a:last-child,
body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child{
  background: linear-gradient(135deg, #356be2, #2559c6) !important;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28) !important;
}

body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child::before,
body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child::before,
body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child::after,
body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child::after{
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  font-family: bootstrap-icons !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child::before{
  font-size: 19px !important;
  content: "\f30a" !important;
}

body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child::before{
  font-size: 19px !important;
  content: "\f444" !important;
}

body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child::after,
body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child::after{
  font-size: 17px !important;
  content: "\f138" !important;
}

@media (max-width: 1180px){
  body.home-page #client-guide .recommendation-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px){
  body.home-page #client-guide .recommendation-grid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px){
  body.home-page #client-guide .recommendation-card{
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: 52px auto auto auto auto !important;
    min-height: 0 !important;
    padding: 22px 18px !important;
    border-radius: 18px !important;
  }

  body.home-page #client-guide .recommendation-head .software-logo{
    width: 52px !important;
    height: 52px !important;
    padding: 7px !important;
    border-radius: 14px !important;
  }

  body.home-page #client-guide .recommendation-head .software-logo img{
    width: 38px !important;
    height: 38px !important;
  }

  body.home-page #client-guide .recommendation-head > .ribbon,
body.home-page #client-guide .recommendation-head > .tag{
    top: 22px !important;
    right: 18px !important;
    min-height: 26px !important;
    max-width: 90px !important;
    padding: 0 10px !important;
  }

  body.home-page #client-guide .recommendation-card dl{
    margin: 7px 0 0 !important;
  }

  body.home-page #client-guide .recommendation-card p{
    margin: 22px 0 !important;
  }

  body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child,
body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child{
    padding: 0 18px !important;
    border-radius: 14px !important;
  }
}

body.home-page #client-guide .recommendation-card dl{
  grid-column: 1 / -1 !important;
  grid-row: 3 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  align-self: start !important;
  min-width: 0 !important;
  margin: 12px 0 0 !important;
}

body.home-page #client-guide .recommendation-card dl div{
  display: grid !important;
  min-width: 0 !important;
  padding: 9px 10px !important;
  background: rgba(15, 23, 42, 0.42) !important;
  border: 1px solid rgba(148, 163, 184, 0.16) !important;
  border-radius: 12px !important;
}

body.home-page #client-guide .recommendation-card dl div:nth-child(n+3){
  display: none !important;
}

body.home-page #client-guide .recommendation-card dl div + div::before{
  display: none !important;
  content: none !important;
}

body.home-page #client-guide .recommendation-card dt{
  display: block !important;
  margin: 0 0 3px !important;
  color: #64748b !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
}

body.home-page #client-guide .recommendation-card dd{
  min-width: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: #cbd5e1 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.28 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

@media (max-width: 560px){
  body.home-page #client-guide .recommendation-card dl{
    grid-template-columns: 1fr !important;
    margin-top: 10px !important;
  }
}

:root,
body,
body[class]{
  --ref-bg: #060608;
  --ref-bg-deep: #030305;
  --ref-grid: rgba(255, 255, 255, 0.024);
  --ref-surface: rgba(255, 255, 255, 0.027);
  --ref-surface-raised: rgba(255, 255, 255, 0.035);
  --ref-surface-hover: rgba(255, 255, 255, 0.047);
  --ref-border: rgba(255, 255, 255, 0.07);
  --ref-border-strong: rgba(255, 255, 255, 0.13);
  --ref-text: #ffffff;
  --ref-copy: #e2e8f0;
  --ref-muted: #94a3b8;
  --ref-quiet: #64748b;
  --ref-primary: #60a5fa;
  --ref-primary-action: #2563eb;
  --ref-primary-hover: #3b82f6;
  --ref-primary-soft: rgba(59, 130, 246, 0.1);
  --ref-secondary: #22d3ee;
  --ref-secondary-action: #0891b2;
  --ref-secondary-hover: #06b6d4;
  --ref-secondary-soft: rgba(6, 182, 212, 0.1);
  --ref-link: #60a5fa;
  --ref-link-hover: #93c5fd;
  --ref-focus: rgba(96, 165, 250, 0.36);
  --page-bg: var(--ref-bg);
  --page-bg-soft: var(--ref-bg-deep);
  --page-surface: var(--ref-surface);
  --page-surface-strong: var(--ref-surface-raised);
  --page-surface-hover: var(--ref-surface-hover);
  --page-line: var(--ref-border);
  --page-line-strong: var(--ref-border-strong);
  --page-primary: var(--ref-primary-action);
  --page-primary-deep: #1d4ed8;
  --page-primary-soft: var(--ref-primary);
  --page-primary-muted: var(--ref-primary-soft);
  --page-secondary: var(--ref-secondary-action);
  --page-secondary-deep: #0e7490;
  --page-secondary-soft: var(--ref-secondary);
  --page-secondary-muted: var(--ref-secondary-soft);
  --page-text: var(--ref-text);
  --page-copy: var(--ref-copy);
  --page-muted: var(--ref-muted);
  --page-quiet: var(--ref-quiet);
  --color-primary: var(--ref-primary-action);
  --color-primary-deep: #1d4ed8;
  --color-secondary: var(--ref-secondary-action);
  --color-hover: var(--ref-primary);
  --color-bg: var(--ref-bg);
  --color-surface: var(--ref-surface);
  --color-surface-hover: var(--ref-surface-hover);
  --color-border: var(--ref-border);
  --color-border-strong: var(--ref-border-strong);
  --text-heading: var(--ref-text);
  --text-body: var(--ref-copy);
  --text-muted: var(--ref-muted);
  --brand: var(--ref-primary-action);
  --brand-hover: var(--ref-primary-hover);
  --brand-ink: var(--ref-primary);
  --download-action: var(--ref-primary-action);
  --download-action-hover: var(--ref-primary-hover);
  --download-action-shadow: rgba(59, 130, 246, 0.34);
  --tutorial-action: var(--ref-surface-raised);
  --tutorial-action-hover: rgba(255, 255, 255, 0.07);
  --tutorial-action-shadow: rgba(6, 182, 212, 0.15);
}

body{
  color: var(--ref-copy) !important;
  background:
    linear-gradient(to right, var(--ref-grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ref-grid) 1px, transparent 1px),
    var(--ref-bg) !important;
  background-size: 48px 48px !important;
}

body .site-header,
body.home-page .site-header,
body.inner-page .site-header,
body.docs-page .site-header,
body .docs-page .site-header{
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.home-page .home-compare-selector .choice-client{
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body main :is(h1, h2, h3, h4, strong){
  color: var(--ref-text) !important;
}

body main :is(p, li, dd, dt, small, .meta, .breadcrumb, .section-title p){
  color: var(--ref-muted) !important;
}

body :is(.hero h1 span, .page-hero h1 span, .client-detail-hero h1 span){
  background: linear-gradient(135deg, var(--ref-primary) 0%, var(--ref-secondary) 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

body main a:not(.button):not(.network-node):not(.brand):not(.header-action){
  color: var(--ref-link) !important;
  text-decoration-color: rgba(34, 211, 238, 0.42) !important;
}

body main a:not(.button):not(.network-node):not(.brand):not(.header-action):hover,
body main a:not(.button):not(.network-node):not(.brand):not(.header-action):focus-visible{
  color: var(--ref-link-hover) !important;
  background: transparent !important;
  text-decoration-color: var(--ref-secondary) !important;
}

body :is(.section.dark, .hero-effect-section, #client-guide, #software, #tutorials, [id$="-clients"]){
  background: var(--ref-bg-deep) !important;
  background-image: none !important;
}

body :is(.feature-card, .recommendation-card, .platform-card, .download-path-card, .download-safety-card, .software-card, .trust-card, .step-card, .faq-card, .notice-card, .detail-panel, .tutorial-sidebar-card, .faq-sidebar-card, .tutorial-index-panel, .faq-hero-panel, .download-hero-panel, .compare-selector-panel, .troubleshoot-control-panel, .troubleshoot-result-panel, .client-hero-card, .repo-side, .param-table, .download-option, .home-choice-preview){
  color: var(--ref-copy) !important;
  background: var(--ref-surface) !important;
  border-color: var(--ref-border) !important;
  box-shadow: none !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

body :is(.feature-card, .recommendation-card, .platform-card, .download-path-card, .download-safety-card, .software-card, .trust-card, .step-card, .faq-card, .notice-card, .detail-panel, .tutorial-sidebar-card, .faq-sidebar-card, .tutorial-index-panel, .faq-hero-panel, .download-hero-panel, .compare-selector-panel, .troubleshoot-control-panel, .troubleshoot-result-panel, .client-hero-card, .repo-side, .param-table, .download-option, .home-choice-preview):hover{
  background: var(--ref-surface-hover) !important;
  border-color: var(--ref-border-strong) !important;
}

body.download-index-page .download-stat-panel{
  position: relative;
  isolation: isolate;
  gap: 16px !important;
  overflow: hidden;
  padding: 24px 28px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.016)),
    var(--ref-surface) !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
}

body.download-index-page .download-stat-panel::before{
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ref-primary), rgba(34, 211, 238, 0.72), transparent);
  opacity: 0.72;
  pointer-events: none;
}

body.download-index-page .download-stat-panel .download-panel-heading{
  padding-bottom: 2px;
}

body.download-index-page .download-stat-title{
  display: grid !important;
  grid-template-columns: auto minmax(0, max-content) 1fr;
  align-items: baseline;
  gap: 0 9px;
  color: #eaf2ff !important;
  line-height: 1 !important;
}

body.download-index-page .download-stat-title span{
  min-width: 0;
  color: #dbeafe !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  letter-spacing: 0;
  white-space: nowrap;
}

body.download-index-page .download-stat-title span:last-child{
  color: #cbd5e1 !important;
  font-size: 17px !important;
}

body.download-index-page .download-stat-title b{
  color: var(--ref-primary) !important;
  font-size: clamp(48px, 4.8vw, 58px);
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  line-height: 0.9;
  letter-spacing: 0;
}

body.download-index-page .download-stat-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

body.download-index-page .download-stat-row{
  --stat-fill: 50%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 9px 11px;
  background: rgba(15, 23, 42, 0.34);
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 14px;
}

body.download-index-page .download-stat-row + .download-stat-row{
  border-top: 1px solid rgba(148, 163, 184, 0.11);
}

body.download-index-page .download-stat-row::after{
  display: none;
  content: none;
}

body.download-index-page .download-stat-row:nth-child(5){
  grid-column: 1 / -1;
}

body.download-index-page .download-stat-row:nth-child(1){ --stat-fill: 67%; }
body.download-index-page .download-stat-row:nth-child(2){ --stat-fill: 100%; }
body.download-index-page .download-stat-row:nth-child(3){ --stat-fill: 56%; }
body.download-index-page .download-stat-row:nth-child(4),
body.download-index-page .download-stat-row:nth-child(5){ --stat-fill: 34%; }

body.download-index-page .download-stat-panel .download-stat-row span{
  gap: 9px;
  color: #e2e8f0 !important;
  font-size: 15px;
  letter-spacing: 0;
}

body.download-index-page .download-stat-panel .download-stat-row i{
  width: 30px;
  height: 30px;
  color: #93c5fd !important;
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: rgba(147, 197, 253, 0.22) !important;
  border-radius: 9px;
}

body.download-index-page .download-stat-panel .download-stat-row strong{
  color: #93c5fd !important;
  font-size: 26px !important;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  text-shadow: none !important;
}

@media (max-width: 760px){
  body.download-index-page .download-stat-panel{
    gap: 15px !important;
    padding: 22px 20px !important;
  }

  body.download-index-page .download-stat-title{
    grid-template-columns: auto minmax(0, max-content);
    gap: 0 10px;
  }

  body.download-index-page .download-stat-title span:last-child{
    grid-column: 1 / -1;
    margin-top: 6px;
  }
}

@media (max-width: 520px){
  body.download-index-page .download-stat-list{
    grid-template-columns: 1fr;
  }

  body.download-index-page .download-stat-row:nth-child(5){
    grid-column: auto;
  }
}

body :is(.tag, .tag.green, .tag.amber, .tag.red, .badge, .ribbon, .hero-kicker, .home-choice-meta span){
  color: var(--ref-primary) !important;
  background: rgba(59, 130, 246, 0.08) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: none !important;
}

body :is(.tag.green, .ribbon, .is-featured .tag, .is-recommended .tag){
  color: #a5f3fc !important;
  background: rgba(6, 182, 212, 0.1) !important;
  border-color: rgba(34, 211, 238, 0.28) !important;
}

body :is(.button, a.button, button.button, .recommendation-actions a, .card-actions a, .download-next-steps a, .home-topic-links a, .compare-selector-actions .button){
  min-height: 42px;
  color: var(--ref-copy) !important;
  background: var(--ref-surface-raised) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}

body :is(.button, a.button, button.button, .recommendation-actions a, .card-actions a, .download-next-steps a, .home-topic-links a, .compare-selector-actions .button):hover,
body :is(.button, a.button, button.button, .recommendation-actions a, .card-actions a, .download-next-steps a, .home-topic-links a, .compare-selector-actions .button):focus-visible{
  color: var(--ref-text) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: none !important;
}

body :is(.button.secondary, .button.outline, .button.ghost, .card-actions .button.outline, .download-filter, .home-compare-platform, .home-compare-platform select, .choice-client-select select){
  color: var(--ref-copy) !important;
  background: var(--ref-surface-raised) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}

body :is(.button.secondary, .button.outline, .button.ghost, .card-actions .button.outline, .download-filter, .home-topic-links a, .download-next-steps a):hover,
body :is(.button.secondary, .button.outline, .button.ghost, .card-actions .button.outline, .download-filter, .home-topic-links a, .download-next-steps a):focus-visible{
  color: var(--ref-text) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
}

body .download-filter.is-active,
body .download-filter[aria-pressed="true"],
body .faq-category-nav a[aria-current="page"],
body .docs-nav-group a[aria-current="page"]{
  color: #ffffff !important;
  background: rgba(59, 130, 246, 0.12) !important;
  border-color: rgba(96, 165, 250, 0.32) !important;
  box-shadow: none !important;
}

body :is(.recommendation-actions, .card-actions, .compare-selector-actions, .download-next-steps){
  gap: 10px !important;
}

body .recommendation-actions a{
  color: var(--ref-copy) !important;
  background: var(--ref-surface-raised) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
}

body :is(.button:disabled, button:disabled, .button[aria-disabled="true"], .home-compare-selector .button:disabled){
  color: rgba(226, 232, 240, 0.58) !important;
  background: rgba(255, 255, 255, 0.024) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
}

body :is(.button, a.button, button.button, .recommendation-actions a, .card-actions a, .download-filter, .header-action, .home-topic-links a):focus-visible,
body main a:not(.button):focus-visible,
body select:focus-visible{
  outline: 3px solid var(--ref-focus) !important;
  outline-offset: 3px !important;
}

body :is(.feature-icon, .platform-icon, .download-path-icon, .software-card .bi, .step-card .bi, .faq-card .bi, .platform-dock-icon, .network-node span){
  color: var(--ref-primary) !important;
  background: rgba(59, 130, 246, 0.08) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: none !important;
}

body .official-network :is(.network-path, .network-track, .network-track-glow){
  color: var(--ref-primary-action) !important;
  stroke: var(--ref-primary-action) !important;
}

body .site-header .nav,
body.docs-page .site-header .nav,
body .docs-page .site-header .nav{
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body .site-header .header-action:not(.button):not(.network-node):not(.brand),
body.docs-page .site-header .header-action:not(.button):not(.network-node):not(.brand),
body .docs-page .site-header .header-action:not(.button):not(.network-node):not(.brand){
  color: var(--ref-copy) !important;
  background: var(--ref-surface-raised) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
}

body .download-option{
  color: var(--ref-copy) !important;
  background: var(--ref-surface) !important;
  border-color: var(--ref-border) !important;
  box-shadow: none !important;
}

body .download-option:hover,
body .download-option:focus-visible{
  color: var(--ref-text) !important;
  background: var(--ref-surface-hover) !important;
  border-color: var(--ref-border-strong) !important;
}

body.download-index-page #software .software-card .card-actions .button.outline,
body.tutorial-index-page #tutorials .software-card .card-actions .button.outline,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.outline{
  color: var(--ref-copy) !important;
  background: var(--ref-surface-raised) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}

body.download-index-page #software .software-card .card-actions .button.outline:hover,
body.download-index-page #software .software-card .card-actions .button.outline:focus-visible,
body.tutorial-index-page #tutorials .software-card .card-actions .button.outline:hover,
body.tutorial-index-page #tutorials .software-card .card-actions .button.outline:focus-visible,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.outline:hover,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.outline:focus-visible{
  color: var(--ref-text) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: none !important;
}

body.download-index-page #software .download-filter,
body.tutorial-index-page #tutorials .download-filter,
body.platform-download-page [id$="-clients"] .download-filter{
  color: var(--ref-copy) !important;
  background: var(--ref-surface-raised) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}

body.download-index-page #software .download-filter.is-active,
body.download-index-page #software .download-filter[aria-pressed="true"],
body.tutorial-index-page #tutorials .download-filter.is-active,
body.tutorial-index-page #tutorials .download-filter[aria-pressed="true"],
body.platform-download-page [id$="-clients"] .download-filter.is-active,
body.platform-download-page [id$="-clients"] .download-filter[aria-pressed="true"]{
  color: #ffffff !important;
  background: rgba(59, 130, 246, 0.12) !important;
  border-color: rgba(96, 165, 250, 0.32) !important;
  box-shadow: none !important;
}

body.home-page :is(.button.secondary, .button.outline, .button.ghost),
body.inner-page .section :is(.button.secondary, .button.outline, .button.ghost),
body.inner-page main :is(.button.secondary, .button.outline, .button.ghost),
body.download-index-page #software :is(.button.secondary, .button.outline, .button.ghost),
body.tutorial-index-page #tutorials :is(.button.secondary, .button.outline, .button.ghost),
body.platform-download-page [id$="-clients"] :is(.button.secondary, .button.outline, .button.ghost),
body .hero-actions :is(.button.secondary, .button.outline, .button.ghost),
body .page-hero :is(.button.secondary, .button.outline, .button.ghost),
body .client-detail-hero :is(.button.secondary, .button.outline, .button.ghost){
  color: var(--ref-copy) !important;
  background: var(--ref-surface-raised) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}

body.home-page :is(.button.secondary, .button.outline, .button.ghost):hover,
body.home-page :is(.button.secondary, .button.outline, .button.ghost):focus-visible,
body.inner-page .section :is(.button.secondary, .button.outline, .button.ghost):hover,
body.inner-page .section :is(.button.secondary, .button.outline, .button.ghost):focus-visible,
body.inner-page main :is(.button.secondary, .button.outline, .button.ghost):hover,
body.inner-page main :is(.button.secondary, .button.outline, .button.ghost):focus-visible,
body.download-index-page #software :is(.button.secondary, .button.outline, .button.ghost):hover,
body.download-index-page #software :is(.button.secondary, .button.outline, .button.ghost):focus-visible,
body.tutorial-index-page #tutorials :is(.button.secondary, .button.outline, .button.ghost):hover,
body.tutorial-index-page #tutorials :is(.button.secondary, .button.outline, .button.ghost):focus-visible,
body.platform-download-page [id$="-clients"] :is(.button.secondary, .button.outline, .button.ghost):hover,
body.platform-download-page [id$="-clients"] :is(.button.secondary, .button.outline, .button.ghost):focus-visible,
body .hero-actions :is(.button.secondary, .button.outline, .button.ghost):hover,
body .hero-actions :is(.button.secondary, .button.outline, .button.ghost):focus-visible,
body .page-hero :is(.button.secondary, .button.outline, .button.ghost):hover,
body .page-hero :is(.button.secondary, .button.outline, .button.ghost):focus-visible,
body .client-detail-hero :is(.button.secondary, .button.outline, .button.ghost):hover,
body .client-detail-hero :is(.button.secondary, .button.outline, .button.ghost):focus-visible{
  color: var(--ref-text) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: none !important;
}

body :is(a.button.outline, a.button.secondary, a.button.ghost, button.button.outline, button.button.secondary, button.button.ghost),
body :is(.hero-actions, .page-hero, .download-hero, .client-detail-hero, .section, main) :is(a.button.outline, a.button.secondary, a.button.ghost, button.button.outline, button.button.secondary, button.button.ghost){
  color: var(--ref-copy) !important;
  background: var(--ref-surface-raised) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}

body :is(a.button.outline, a.button.secondary, a.button.ghost, button.button.outline, button.button.secondary, button.button.ghost):hover,
body :is(a.button.outline, a.button.secondary, a.button.ghost, button.button.outline, button.button.secondary, button.button.ghost):focus-visible,
body :is(.hero-actions, .page-hero, .download-hero, .client-detail-hero, .section, main) :is(a.button.outline, a.button.secondary, a.button.ghost, button.button.outline, button.button.secondary, button.button.ghost):hover,
body :is(.hero-actions, .page-hero, .download-hero, .client-detail-hero, .section, main) :is(a.button.outline, a.button.secondary, a.button.ghost, button.button.outline, button.button.secondary, button.button.ghost):focus-visible{
  color: var(--ref-text) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: none !important;
}

body.home-page .hero .hero-actions a.button.secondary,
body.home-page .hero .hero-actions a.button.ghost,
body.inner-page .page-hero .hero-actions a.button.secondary,
body.inner-page .page-hero .hero-actions a.button.ghost,
body.inner-page .page-hero.download-hero .hero-actions a.button.secondary,
body.inner-page .page-hero.download-hero .hero-actions a.button.ghost,
body.download-index-page .download-hero .hero-actions a.button.secondary,
body.download-index-page .download-hero .hero-actions a.button.ghost,
body.tutorial-index-page .tutorial-index-hero .hero-actions a.button.secondary,
body.tutorial-index-page .tutorial-index-hero .hero-actions a.button.ghost,
body.tutorial-detail-page .hero-actions a.button.secondary,
body.tutorial-detail-page .hero-actions a.button.secondary[href="#steps"],
body.client-detail-page .client-detail-hero .hero-actions a.button.secondary,
body.client-detail-page .client-detail-hero .hero-actions a.button.ghost{
  color: var(--ref-copy) !important;
  background: var(--ref-surface-raised) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}

body.home-page .hero .hero-actions a.button.secondary:hover,
body.home-page .hero .hero-actions a.button.secondary:focus-visible,
body.home-page .hero .hero-actions a.button.ghost:hover,
body.home-page .hero .hero-actions a.button.ghost:focus-visible,
body.inner-page .page-hero .hero-actions a.button.secondary:hover,
body.inner-page .page-hero .hero-actions a.button.secondary:focus-visible,
body.inner-page .page-hero .hero-actions a.button.ghost:hover,
body.inner-page .page-hero .hero-actions a.button.ghost:focus-visible,
body.inner-page .page-hero.download-hero .hero-actions a.button.secondary:hover,
body.inner-page .page-hero.download-hero .hero-actions a.button.secondary:focus-visible,
body.inner-page .page-hero.download-hero .hero-actions a.button.ghost:hover,
body.inner-page .page-hero.download-hero .hero-actions a.button.ghost:focus-visible,
body.download-index-page .download-hero .hero-actions a.button.secondary:hover,
body.download-index-page .download-hero .hero-actions a.button.secondary:focus-visible,
body.download-index-page .download-hero .hero-actions a.button.ghost:hover,
body.download-index-page .download-hero .hero-actions a.button.ghost:focus-visible,
body.tutorial-index-page .tutorial-index-hero .hero-actions a.button.secondary:hover,
body.tutorial-index-page .tutorial-index-hero .hero-actions a.button.secondary:focus-visible,
body.tutorial-index-page .tutorial-index-hero .hero-actions a.button.ghost:hover,
body.tutorial-index-page .tutorial-index-hero .hero-actions a.button.ghost:focus-visible,
body.tutorial-detail-page .hero-actions a.button.secondary:hover,
body.tutorial-detail-page .hero-actions a.button.secondary:focus-visible,
body.tutorial-detail-page .hero-actions a.button.secondary[href="#steps"]:hover,
body.tutorial-detail-page .hero-actions a.button.secondary[href="#steps"]:focus-visible,
body.client-detail-page .client-detail-hero .hero-actions a.button.secondary:hover,
body.client-detail-page .client-detail-hero .hero-actions a.button.secondary:focus-visible,
body.client-detail-page .client-detail-hero .hero-actions a.button.ghost:hover,
body.client-detail-page .client-detail-hero .hero-actions a.button.ghost:focus-visible{
  color: var(--ref-text) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: none !important;
}

body main a:not(.button):not(.network-node):not(.brand):not(.header-action):visited{
  color: var(--ref-link) !important;
}

body ::selection{
  color: #ffffff;
  background: rgba(37, 99, 235, 0.46);
}

html{
  scrollbar-color: rgba(96, 165, 250, 0.42) var(--ref-bg);
}

body::-webkit-scrollbar{
  width: 12px;
}

body::-webkit-scrollbar-track{
  background: var(--ref-bg);
}

body::-webkit-scrollbar-thumb{
  background: rgba(96, 165, 250, 0.34);
  border: 3px solid var(--ref-bg);
  border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover{
  background: rgba(34, 211, 238, 0.48);
}

body :is(input, select, textarea){
  color: var(--ref-copy) !important;
  background-color: var(--ref-surface-raised) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}

body :is(input, select, textarea):focus,
body :is(input, select, textarea):focus-visible{
  color: var(--ref-text) !important;
  border-color: rgba(96, 165, 250, 0.35) !important;
  outline: 3px solid var(--ref-focus) !important;
  outline-offset: 3px !important;
}

body :is(.telegram-float, .changlian-float, .back-to-top){
  color: var(--ref-copy) !important;
  background: var(--ref-surface-raised) !important;
  border-color: rgba(96, 165, 250, 0.28) !important;
  box-shadow: none !important;
}

body :is(.telegram-float, .changlian-float, .back-to-top):hover,
body :is(.telegram-float, .changlian-float, .back-to-top):focus-visible{
  color: #ffffff !important;
  background: rgba(59, 130, 246, 0.12) !important;
  border-color: rgba(34, 211, 238, 0.38) !important;
}

body a.telegram-float:not(.button):not(.network-node):not(.brand),
body a.changlian-float:not(.button):not(.network-node):not(.brand),
body button.back-to-top,
body .back-to-top{
  color: var(--ref-copy) !important;
  background: var(--ref-surface-raised) !important;
  border-color: rgba(96, 165, 250, 0.28) !important;
  box-shadow: none !important;
}

body a.telegram-float:not(.button):not(.network-node):not(.brand):hover,
body a.telegram-float:not(.button):not(.network-node):not(.brand):focus-visible,
body a.changlian-float:not(.button):not(.network-node):not(.brand):hover,
body a.changlian-float:not(.button):not(.network-node):not(.brand):focus-visible,
body button.back-to-top:hover,
body button.back-to-top:focus-visible,
body .back-to-top:hover,
body .back-to-top:focus-visible{
  color: #ffffff !important;
  background: rgba(59, 130, 246, 0.12) !important;
  border-color: rgba(34, 211, 238, 0.38) !important;
  box-shadow: none !important;
}

body :is(.button.primary, a.button.primary, button.button.primary, .button.dark, a.button.dark, button.button.dark, .home-compare-submit-row .button, .card-actions .button.dark, .compare-selector-actions .button.primary, .compare-selector-actions .button.dark, #download-entry .platform-card .button.dark),
body .recommendation-actions a:first-child,
body.home-page #client-guide .recommendation-actions a,
body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child,
body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child,
body.home-page #client-guide .recommendation-card:nth-child(2n) .recommendation-actions a:last-child,
body.download-index-page #software .software-card .card-actions .button.dark,
body.download-index-page #software .software-card:nth-child(2n+1) .card-actions .button.dark,
body.download-index-page #software .software-card:nth-child(2n) .card-actions .button.dark,
body.download-index-page #software .software-card:nth-child(odd) .card-actions .button.dark,
body.download-index-page #software .software-card:nth-child(even) .card-actions .button.dark,
body.tutorial-index-page #tutorials .software-card .card-actions .button.dark,
body.tutorial-index-page #tutorials .software-card:nth-child(2n+1) .card-actions .button.dark,
body.tutorial-index-page #tutorials .software-card:nth-child(2n) .card-actions .button.dark,
body.tutorial-index-page #tutorials .software-card:nth-child(odd) .card-actions .button.dark,
body.tutorial-index-page #tutorials .software-card:nth-child(even) .card-actions .button.dark,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark,
body.platform-download-page [id$="-clients"] .software-card:nth-child(2n+1) .card-actions .button.dark,
body.platform-download-page [id$="-clients"] .software-card:nth-child(2n) .card-actions .button.dark,
body.platform-download-page [id$="-clients"] .software-card:nth-child(odd) .card-actions .button.dark,
body.platform-download-page [id$="-clients"] .software-card:nth-child(even) .card-actions .button.dark{
  color: #ffffff !important;
  background: linear-gradient(90deg, var(--ref-primary-action) 0%, var(--ref-secondary-action) 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22) !important;
}

body :is(.button.primary, a.button.primary, button.button.primary, .button.dark, a.button.dark, button.button.dark, .home-compare-submit-row .button, .card-actions .button.dark, .compare-selector-actions .button.primary, .compare-selector-actions .button.dark, #download-entry .platform-card .button.dark):hover,
body :is(.button.primary, a.button.primary, button.button.primary, .button.dark, a.button.dark, button.button.dark, .home-compare-submit-row .button, .card-actions .button.dark, .compare-selector-actions .button.primary, .compare-selector-actions .button.dark, #download-entry .platform-card .button.dark):focus-visible,
body .recommendation-actions a:first-child:hover,
body .recommendation-actions a:first-child:focus-visible,
body.home-page #client-guide .recommendation-actions a:hover,
body.home-page #client-guide .recommendation-actions a:focus-visible,
body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child:hover,
body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child:focus-visible,
body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child:hover,
body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child:focus-visible,
body.home-page #client-guide .recommendation-card:nth-child(2n) .recommendation-actions a:last-child:hover,
body.home-page #client-guide .recommendation-card:nth-child(2n) .recommendation-actions a:last-child:focus-visible,
body.download-index-page #software .software-card .card-actions .button.dark:hover,
body.download-index-page #software .software-card .card-actions .button.dark:focus-visible,
body.download-index-page #software .software-card:nth-child(2n+1) .card-actions .button.dark:hover,
body.download-index-page #software .software-card:nth-child(2n+1) .card-actions .button.dark:focus-visible,
body.download-index-page #software .software-card:nth-child(2n) .card-actions .button.dark:hover,
body.download-index-page #software .software-card:nth-child(2n) .card-actions .button.dark:focus-visible,
body.download-index-page #software .software-card:nth-child(odd) .card-actions .button.dark:hover,
body.download-index-page #software .software-card:nth-child(odd) .card-actions .button.dark:focus-visible,
body.download-index-page #software .software-card:nth-child(even) .card-actions .button.dark:hover,
body.download-index-page #software .software-card:nth-child(even) .card-actions .button.dark:focus-visible,
body.tutorial-index-page #tutorials .software-card .card-actions .button.dark:hover,
body.tutorial-index-page #tutorials .software-card .card-actions .button.dark:focus-visible,
body.tutorial-index-page #tutorials .software-card:nth-child(2n+1) .card-actions .button.dark:hover,
body.tutorial-index-page #tutorials .software-card:nth-child(2n+1) .card-actions .button.dark:focus-visible,
body.tutorial-index-page #tutorials .software-card:nth-child(2n) .card-actions .button.dark:hover,
body.tutorial-index-page #tutorials .software-card:nth-child(2n) .card-actions .button.dark:focus-visible,
body.tutorial-index-page #tutorials .software-card:nth-child(odd) .card-actions .button.dark:hover,
body.tutorial-index-page #tutorials .software-card:nth-child(odd) .card-actions .button.dark:focus-visible,
body.tutorial-index-page #tutorials .software-card:nth-child(even) .card-actions .button.dark:hover,
body.tutorial-index-page #tutorials .software-card:nth-child(even) .card-actions .button.dark:focus-visible,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark:hover,
body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark:focus-visible,
body.platform-download-page [id$="-clients"] .software-card:nth-child(2n+1) .card-actions .button.dark:hover,
body.platform-download-page [id$="-clients"] .software-card:nth-child(2n+1) .card-actions .button.dark:focus-visible,
body.platform-download-page [id$="-clients"] .software-card:nth-child(2n) .card-actions .button.dark:hover,
body.platform-download-page [id$="-clients"] .software-card:nth-child(2n) .card-actions .button.dark:focus-visible,
body.platform-download-page [id$="-clients"] .software-card:nth-child(odd) .card-actions .button.dark:hover,
body.platform-download-page [id$="-clients"] .software-card:nth-child(odd) .card-actions .button.dark:focus-visible,
body.platform-download-page [id$="-clients"] .software-card:nth-child(even) .card-actions .button.dark:hover,
body.platform-download-page [id$="-clients"] .software-card:nth-child(even) .card-actions .button.dark:focus-visible{
  color: #ffffff !important;
  background: linear-gradient(90deg, var(--ref-primary-hover) 0%, var(--ref-secondary-hover) 100%) !important;
  border-color: transparent !important;
  box-shadow:
    0 0 34px rgba(59, 130, 246, 0.32),
    0 0 64px rgba(6, 182, 212, 0.1) !important;
}

body.home-page #client-guide .recommendation-head > :is(.tag, .ribbon),
body.home-page #download-entry :is(.tag, .tag.green, .tag.amber, .tag.red, .ribbon),
body.download-index-page #software :is(.tag, .tag.green, .tag.amber, .tag.red, .ribbon),
body.tutorial-index-page #tutorials :is(.tag, .tag.green, .tag.amber, .tag.red, .ribbon),
body.platform-download-page [id$="-clients"] :is(.tag, .tag.green, .tag.amber, .tag.red, .ribbon),
body.download-index-page #software .software-card::before,
body.tutorial-index-page #tutorials .software-card::before,
body.platform-download-page [id$="-clients"] .software-card::before{
  color: var(--ref-muted) !important;
  background: var(--ref-surface-raised) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}

body .site-footer .footer-links a:not(.button):not(.brand):not(.footer-brand-link),
body.docs-page .site-footer .footer-links a:not(.button):not(.brand):not(.footer-brand-link),
body .docs-page .site-footer .footer-links a:not(.button):not(.brand):not(.footer-brand-link){
  padding: 0 !important;
  color: var(--ref-link) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

body .site-footer .footer-links a:not(.button):not(.brand):not(.footer-brand-link):hover,
body .site-footer .footer-links a:not(.button):not(.brand):not(.footer-brand-link):focus-visible,
body.docs-page .site-footer .footer-links a:not(.button):not(.brand):not(.footer-brand-link):hover,
body.docs-page .site-footer .footer-links a:not(.button):not(.brand):not(.footer-brand-link):focus-visible,
body .docs-page .site-footer .footer-links a:not(.button):not(.brand):not(.footer-brand-link):hover,
body .docs-page .site-footer .footer-links a:not(.button):not(.brand):not(.footer-brand-link):focus-visible,
body .site-footer a:not(.button):not(.brand):not(.footer-brand-link):hover,
body .site-footer a:not(.button):not(.brand):not(.footer-brand-link):focus-visible{
  color: var(--ref-link-hover) !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

body .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual),
body.docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual),
body .docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual){
  color: var(--ref-copy) !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  text-shadow: none !important;
}

body .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):hover,
body .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):focus-visible,
body.docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):hover,
body.docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):focus-visible,
body .docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):hover,
body .docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):focus-visible{
  color: var(--ref-link-hover) !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  text-shadow: none !important;
}

body .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"],
body.docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"],
body .docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"]{
  color: var(--ref-text) !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  text-shadow: 0 0 18px rgba(96, 165, 250, 0.28) !important;
}

body .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)::after,
body.docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)::after,
body .docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)::after{
  display: none !important;
  background: transparent !important;
}

body .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"]::after,
body.docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"]::after,
body .docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"]::after{
  content: "" !important;
  position: absolute !important;
  right: auto !important;
  bottom: 2px !important;
  left: calc(50% - 18px) !important;
  display: block !important;
  width: 36px !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--ref-primary) 0%, var(--ref-secondary) 100%) !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 0 18px rgba(96, 165, 250, 0.34) !important;
  transform: none !important;
}

@media (max-width: 860px){
  body .site-header .nav.is-open > a.mobile-nav-visual.mobile-nav-ad,
body.docs-page .site-header .nav.is-open > a.mobile-nav-visual.mobile-nav-ad,
body .docs-page .site-header .nav.is-open > a.mobile-nav-visual.mobile-nav-ad{
    color: #ffffff !important;
    background:
      radial-gradient(circle at 82% 34%, rgba(34, 211, 238, 0.08), transparent 34%),
      linear-gradient(135deg, rgba(15, 35, 75, 0.86), rgba(4, 17, 29, 0.98)) !important;
    border: 1px solid rgba(72, 126, 211, 0.56) !important;
    border-radius: 24px !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 18px 46px rgba(2, 8, 23, 0.22) !important;
  }
}

body .site-header .nav > a.mobile-nav-visual.mobile-nav-ad,
body.docs-page .site-header .nav > a.mobile-nav-visual.mobile-nav-ad,
body .docs-page .site-header .nav > a.mobile-nav-visual.mobile-nav-ad{
  display: none !important;
}

@media (max-width: 860px){
  body .site-header .nav.is-open > a.mobile-nav-visual.mobile-nav-ad,
body.docs-page .site-header .nav.is-open > a.mobile-nav-visual.mobile-nav-ad,
body .docs-page .site-header .nav.is-open > a.mobile-nav-visual.mobile-nav-ad{
    display: grid !important;
  }
}

body.has-mobile-nav-open{
  overflow: hidden !important;
}

@media (max-width: 860px){
  body.has-mobile-nav-open::before{
    position: fixed !important;
    inset: 0 !important;
    z-index: 1999 !important;
    display: block !important;
    background: #05070d !important;
    content: "" !important;
  }

  body.has-mobile-nav-open .site-header,
body.has-mobile-nav-open.home-page .site-header,
body.has-mobile-nav-open.inner-page .site-header,
body.has-mobile-nav-open.docs-page .site-header,
body.has-mobile-nav-open .docs-page .site-header{
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 2000 !important;
    background: #05070d !important;
    border-bottom: 1px solid rgba(96, 165, 250, 0.16) !important;
  }

  body.has-mobile-nav-open .site-header .nav.is-open,
body.has-mobile-nav-open.docs-page .site-header .nav.is-open,
body.has-mobile-nav-open .docs-page .site-header .nav.is-open{
    position: fixed !important;
    top: 76px !important;
    right: max(12px, env(safe-area-inset-right)) !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    left: max(12px, env(safe-area-inset-left)) !important;
    z-index: 2001 !important;
    display: flex !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important;
    height: calc(100vh - 88px) !important;
    height: calc(100dvh - 88px) !important;
    min-height: calc(100vh - 88px) !important;
    min-height: calc(100dvh - 88px) !important;
    max-height: calc(100vh - 88px) !important;
    max-height: calc(100dvh - 88px) !important;
    overflow-y: auto !important;
    padding: 16px !important;
    background: #05070d !important;
    background-image:
      linear-gradient(180deg, #07101f 0%, #05070d 48%, #03050a 100%) !important;
    border: 1px solid rgba(96, 165, 250, 0.18) !important;
    border-radius: 22px !important;
    box-shadow:
      0 28px 80px rgba(0, 0, 0, 0.72),
      inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

body .site-header .header-action:not(.button):not(.network-node):not(.brand),
body.docs-page .site-header .header-action:not(.button):not(.network-node):not(.brand),
body .docs-page .site-header .header-action:not(.button):not(.network-node):not(.brand){
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease !important;
}

body .site-header .header-action:not(.button):not(.network-node):not(.brand):hover,
body .site-header .header-action:not(.button):not(.network-node):not(.brand):focus-visible,
body.docs-page .site-header .header-action:not(.button):not(.network-node):not(.brand):hover,
body.docs-page .site-header .header-action:not(.button):not(.network-node):not(.brand):focus-visible,
body .docs-page .site-header .header-action:not(.button):not(.network-node):not(.brand):hover,
body .docs-page .site-header .header-action:not(.button):not(.network-node):not(.brand):focus-visible{
  color: #ffffff !important;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(14, 165, 233, 0.16)) !important;
  border-color: rgba(96, 165, 250, 0.66) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 30px rgba(37, 99, 235, 0.2) !important;
  transform: translateY(-1px) !important;
}

body .site-header .header-action:not(.button):not(.network-node):not(.brand):active,
body.docs-page .site-header .header-action:not(.button):not(.network-node):not(.brand):active,
body .docs-page .site-header .header-action:not(.button):not(.network-node):not(.brand):active{
  background: rgba(37, 99, 235, 0.2) !important;
  transform: translateY(0) !important;
}

body .site-header .header-action:hover i,
body .site-header .header-action:focus-visible i,
body.docs-page .site-header .header-action:hover i,
body.docs-page .site-header .header-action:focus-visible i,
body .docs-page .site-header .header-action:hover i,
body .docs-page .site-header .header-action:focus-visible i{
  color: #ffffff !important;
  text-shadow: 0 0 18px rgba(96, 165, 250, 0.56) !important;
}

body .site-header .language-switch .bi-chevron-down,
body.docs-page .site-header .language-switch .bi-chevron-down,
body .docs-page .site-header .language-switch .bi-chevron-down{
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

body .site-header .language-switch:hover .bi-chevron-down,
body .site-header .language-switch:focus-visible .bi-chevron-down,
body.docs-page .site-header .language-switch:hover .bi-chevron-down,
body.docs-page .site-header .language-switch:focus-visible .bi-chevron-down,
body .docs-page .site-header .language-switch:hover .bi-chevron-down,
body .docs-page .site-header .language-switch:focus-visible .bi-chevron-down{
  opacity: 1 !important;
  transform: translateY(1px) !important;
}

@media (max-width: 520px){
  body.has-mobile-nav-open .site-header .nav.is-open,
body.has-mobile-nav-open.docs-page .site-header .nav.is-open,
body.has-mobile-nav-open .docs-page .site-header .nav.is-open{
    gap: 8px !important;
    padding: 12px !important;
  }

  body .site-header .nav.is-open > a.mobile-nav-visual.mobile-nav-ad,
body.docs-page .site-header .nav.is-open > a.mobile-nav-visual.mobile-nav-ad,
body .docs-page .site-header .nav.is-open > a.mobile-nav-visual.mobile-nav-ad{
    gap: 10px !important;
    margin-bottom: 4px !important;
    padding: 12px !important;
    border-radius: 18px !important;
  }

  body .site-header .nav.is-open .mobile-nav-ad-main,
body.docs-page .site-header .nav.is-open .mobile-nav-ad-main,
body .docs-page .site-header .nav.is-open .mobile-nav-ad-main{
    gap: 10px !important;
  }

  body .site-header .nav.is-open .mobile-nav-ad-logo,
body.docs-page .site-header .nav.is-open .mobile-nav-ad-logo,
body .docs-page .site-header .nav.is-open .mobile-nav-ad-logo{
    width: 46px !important;
    height: 46px !important;
    padding: 8px !important;
    border-radius: 14px !important;
  }

  body .site-header .nav.is-open .mobile-nav-ad-copy,
body.docs-page .site-header .nav.is-open .mobile-nav-ad-copy,
body .docs-page .site-header .nav.is-open .mobile-nav-ad-copy{
    gap: 4px !important;
  }

  body .site-header .nav.is-open .mobile-nav-ad-copy strong,
body.docs-page .site-header .nav.is-open .mobile-nav-ad-copy strong,
body .docs-page .site-header .nav.is-open .mobile-nav-ad-copy strong{
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  body .site-header .nav.is-open .mobile-nav-ad-copy span,
body.docs-page .site-header .nav.is-open .mobile-nav-ad-copy span,
body .docs-page .site-header .nav.is-open .mobile-nav-ad-copy span{
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  body .site-header .nav.is-open .mobile-nav-ad-action,
body.docs-page .site-header .nav.is-open .mobile-nav-ad-action,
body .docs-page .site-header .nav.is-open .mobile-nav-ad-action{
    min-height: 38px !important;
    border-radius: 11px !important;
    font-size: 13px !important;
  }

  body.has-mobile-nav-open .site-header .nav.is-open .mobile-nav-actions,
body.has-mobile-nav-open.docs-page .site-header .nav.is-open .mobile-nav-actions,
body.has-mobile-nav-open .docs-page .site-header .nav.is-open .mobile-nav-actions{
    margin-top: 10px !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(96, 165, 250, 0.18) !important;
  }

  body.has-mobile-nav-open .site-header .nav.is-open .mobile-nav-action,
body.has-mobile-nav-open.docs-page .site-header .nav.is-open .mobile-nav-action,
body.has-mobile-nav-open .docs-page .site-header .nav.is-open .mobile-nav-action{
    color: #f8fbff !important;
    background:
      linear-gradient(135deg, rgba(30, 64, 175, 0.28), rgba(14, 165, 233, 0.14)) !important;
    border: 1px solid rgba(96, 165, 250, 0.44) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.09),
      0 12px 28px rgba(15, 23, 42, 0.34) !important;
  }

  body.has-mobile-nav-open .site-header .nav.is-open .mobile-nav-action i,
body.has-mobile-nav-open.docs-page .site-header .nav.is-open .mobile-nav-action i,
body.has-mobile-nav-open .docs-page .site-header .nav.is-open .mobile-nav-action i{
    color: #93c5fd !important;
    opacity: 1 !important;
    text-shadow: 0 0 18px rgba(96, 165, 250, 0.46) !important;
  }

  body.has-mobile-nav-open .site-header .nav.is-open .mobile-language-switch,
body.has-mobile-nav-open.docs-page .site-header .nav.is-open .mobile-language-switch,
body.has-mobile-nav-open .docs-page .site-header .nav.is-open .mobile-language-switch{
    justify-content: center !important;
    color: #eaf2ff !important;
    background:
      linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(8, 145, 178, 0.18)) !important;
    border-color: rgba(125, 211, 252, 0.5) !important;
  }

  body.has-mobile-nav-open .site-header .nav.is-open .mobile-language-switch span,
body.has-mobile-nav-open.docs-page .site-header .nav.is-open .mobile-language-switch span,
body.has-mobile-nav-open .docs-page .site-header .nav.is-open .mobile-language-switch span{
    color: #eaf2ff !important;
    opacity: 1 !important;
  }

  body.has-mobile-nav-open .site-header .nav.is-open .mobile-language-switch .bi-chevron-down,
body.has-mobile-nav-open.docs-page .site-header .nav.is-open .mobile-language-switch .bi-chevron-down,
body.has-mobile-nav-open .docs-page .site-header .nav.is-open .mobile-language-switch .bi-chevron-down{
    color: #93c5fd !important;
    opacity: 1 !important;
  }

body.has-mobile-nav-open .site-header .nav.is-open .mobile-repository-link,
body.has-mobile-nav-open.docs-page .site-header .nav.is-open .mobile-repository-link,
body.has-mobile-nav-open .docs-page .site-header .nav.is-open .mobile-repository-link{
    background:
      linear-gradient(135deg, rgba(59, 130, 246, 0.26), rgba(15, 23, 42, 0.82)) !important;
    border-color: rgba(147, 197, 253, 0.5) !important;
  }
}

body .site-header .nav-toggle,
body.docs-page .site-header .nav-toggle,
body .docs-page .site-header .nav-toggle{
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease !important;
}

body .site-header .nav-toggle span,
body.docs-page .site-header .nav-toggle span,
body .docs-page .site-header .nav-toggle span{
  position: relative !important;
  transition: background 0.18s ease !important;
}

body .site-header .nav-toggle span::before,
body .site-header .nav-toggle span::after,
body.docs-page .site-header .nav-toggle span::before,
body.docs-page .site-header .nav-toggle span::after,
body .docs-page .site-header .nav-toggle span::before,
body .docs-page .site-header .nav-toggle span::after{
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  transition: transform 0.2s ease !important;
}

body .site-header .nav-toggle span::before,
body.docs-page .site-header .nav-toggle span::before,
body .docs-page .site-header .nav-toggle span::before{
  transform: translateY(-6px) !important;
}

body .site-header .nav-toggle span::after,
body.docs-page .site-header .nav-toggle span::after,
body .docs-page .site-header .nav-toggle span::after{
  transform: translateY(6px) !important;
}

body .site-header .nav-toggle[aria-expanded="true"],
body.docs-page .site-header .nav-toggle[aria-expanded="true"],
body .docs-page .site-header .nav-toggle[aria-expanded="true"]{
  color: #ffffff !important;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(14, 165, 233, 0.16)) !important;
  border-color: rgba(96, 165, 250, 0.55) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 30px rgba(37, 99, 235, 0.22) !important;
}

body .site-header .nav-toggle[aria-expanded="true"] span,
body.docs-page .site-header .nav-toggle[aria-expanded="true"] span,
body .docs-page .site-header .nav-toggle[aria-expanded="true"] span{
  background: transparent !important;
}

body .site-header .nav-toggle[aria-expanded="true"] span::before,
body.docs-page .site-header .nav-toggle[aria-expanded="true"] span::before,
body .docs-page .site-header .nav-toggle[aria-expanded="true"] span::before{
  transform: rotate(45deg) !important;
}

body .site-header .nav-toggle[aria-expanded="true"] span::after,
body.docs-page .site-header .nav-toggle[aria-expanded="true"] span::after,
body .docs-page .site-header .nav-toggle[aria-expanded="true"] span::after{
  transform: rotate(-45deg) !important;
}

body.client-detail-page .param-table,
body.client-detail-page .param-table:hover{
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.client-detail-page .param-row,
body.client-detail-page .param-table dt,
body.client-detail-page .param-table dd{
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body.client-detail-page .param-row{
  border-color: rgba(255, 255, 255, 0.07) !important;
}

body.client-detail-page .detail-stack:last-child .repo-mini-grid > div{
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
  box-shadow: none !important;
}

body.tutorial-detail-page .tutorial-section p a:not(.button):not(.network-node),
body.tutorial-detail-page .tutorial-section p a:not(.button):not(.network-node) strong{
  color: #60a5fa !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(96, 165, 250, 0.45) !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 4px !important;
}

body.tutorial-detail-page .tutorial-section p a:not(.button):not(.network-node):hover,
body.tutorial-detail-page .tutorial-section p a:not(.button):not(.network-node):focus-visible,
body.tutorial-detail-page .tutorial-section p a:not(.button):not(.network-node):hover strong,
body.tutorial-detail-page .tutorial-section p a:not(.button):not(.network-node):focus-visible strong{
  color: #93c5fd !important;
  background: transparent !important;
  text-decoration-color: rgba(147, 197, 253, 0.72) !important;
}

@media (max-width: 860px){
  body.has-mobile-nav-open .site-header .nav.is-open > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"],
  body.has-mobile-nav-open.docs-page .site-header .nav.is-open > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"],
  body.docs-page.has-mobile-nav-open .site-header .nav.is-open > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"],
  body.has-mobile-nav-open .docs-page .site-header .nav.is-open > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"]{
    color: #ffffff !important;
    background: rgba(37, 99, 235, 0.12) !important;
    background-image: none !important;
    border: 1px solid rgba(96, 165, 250, 0.26) !important;
    border-radius: 12px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    text-shadow: none !important;
  }

  body.has-mobile-nav-open .site-header .nav.is-open > a::after,
  body.has-mobile-nav-open.docs-page .site-header .nav.is-open > a::after,
  body.docs-page.has-mobile-nav-open .site-header .nav.is-open > a::after,
  body.has-mobile-nav-open .docs-page .site-header .nav.is-open > a::after,
  body.has-mobile-nav-open .site-header .nav.is-open > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"]::after,
  body.has-mobile-nav-open.docs-page .site-header .nav.is-open > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"]::after,
  body.docs-page.has-mobile-nav-open .site-header .nav.is-open > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"]::after,
  body.has-mobile-nav-open .docs-page .site-header .nav.is-open > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"]::after{
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    position: static !important;
    inset: auto !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }
}

body.not-found-page .section.white{
  background: var(--ref-bg-deep) !important;
  background-image: none !important;
}

body.not-found-page .not-found-copy,
body.not-found-page .not-found-links a{
  color: var(--ref-copy) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025)),
    var(--ref-surface) !important;
  border-color: var(--ref-border) !important;
  box-shadow: none !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

body.not-found-page .not-found-copy:hover,
body.not-found-page .not-found-links a:hover,
body.not-found-page .not-found-links a:focus-visible{
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.035)),
    var(--ref-surface-hover) !important;
  border-color: var(--ref-border-strong) !important;
  box-shadow: none !important;
}

body.not-found-page .not-found-code{
  color: var(--ref-primary) !important;
  text-shadow: 0 0 34px rgba(59, 130, 246, 0.22) !important;
}

body.not-found-page .not-found-copy h2,
body.not-found-page .not-found-links strong{
  color: var(--ref-text) !important;
}

body.not-found-page .not-found-copy p,
body.not-found-page .not-found-links small{
  color: var(--ref-muted) !important;
}

body.not-found-page .not-found-links i{
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--ref-primary-action), var(--ref-secondary-action)) !important;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22) !important;
}

body.comparison-page .compare-decision-card{
  position: relative !important;
}

body.comparison-page .compare-decision-card .compare-decision-top{
  display: block !important;
  width: 100% !important;
  min-height: 34px !important;
  margin-bottom: 24px !important;
  padding-right: 150px !important;
  text-align: left !important;
}

body.comparison-page .compare-decision-card .compare-decision-label{
  display: block !important;
  min-width: 0 !important;
  max-width: 100% !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

body.comparison-page .compare-decision-card .compare-choice-badge{
  position: absolute !important;
  top: 22px !important;
  right: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 0 16px !important;
  line-height: 1 !important;
}

body.comparison-page .compare-decision-card .compare-decision-client{
  flex-direction: column !important;
  gap: 14px !important;
  width: 100% !important;
  margin-bottom: 18px !important;
}

body.comparison-page .compare-decision-card .compare-decision-top + h3{
  margin-top: 4px !important;
}

body.docs-page .docs-article .docs-table,
body.docs-page .docs-article .docs-table table,
body.docs-page .docs-article .docs-table thead,
body.docs-page .docs-article .docs-table tbody,
body.docs-page .docs-article .docs-table tr,
body.docs-page .docs-article .docs-table th,
body.docs-page .docs-article .docs-table td{
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body.docs-page .docs-article .docs-table{
  overflow: hidden !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
  border-radius: 8px !important;
}

body.docs-page .docs-article .docs-table th,
body.docs-page .docs-article .docs-table td{
  color: #e2e8f0 !important;
  border-color: rgba(148, 163, 184, 0.13) !important;
}

body.docs-page .docs-article .docs-table th{
  color: #ffffff !important;
}

body.comparison-page .section .compare-summary-logo-item,
body.comparison-page .section .compare-summary-logo-item:hover,
body.comparison-page .section .compare-summary-logo-item:focus-visible{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 760px){
  body.inner-page.comparison-page .section .compare-table thead{
    display: block !important;
    margin-bottom: 12px !important;
  }

  body.inner-page.comparison-page .section .compare-table thead tr{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 14px !important;
    background:
      radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.14), transparent 42%),
      linear-gradient(145deg, rgba(12, 18, 32, 0.82), rgba(5, 8, 15, 0.72)) !important;
    border: 1px solid rgba(148, 163, 184, 0.14) !important;
    border-radius: 8px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045) !important;
  }

  body.inner-page.comparison-page .section .compare-table thead th{
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    color: #ffffff !important;
    background: transparent !important;
    border: 0 !important;
  }

  body.inner-page.comparison-page .section .compare-table thead th:first-child{
    grid-column: 1 / -1 !important;
    color: #94a3b8 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
  }

  body.inner-page.comparison-page .section .compare-table thead th:not(:first-child){
    min-height: 50px !important;
    padding: 8px 10px !important;
    background: rgba(37, 99, 235, 0.1) !important;
    border: 1px solid rgba(96, 165, 250, 0.18) !important;
    border-radius: 8px !important;
  }

  body.inner-page.comparison-page .section .compare-table thead .compare-table-client{
    min-width: 0 !important;
    width: 100% !important;
    gap: 8px !important;
  }

  body.inner-page.comparison-page .section .compare-table thead .compare-client-logo.small{
    width: 34px !important;
    height: 34px !important;
  }

  body.inner-page.comparison-page .section .compare-table thead .compare-client-logo.small img{
    width: 24px !important;
    height: 24px !important;
  }

  body.inner-page.comparison-page .section .compare-table thead .compare-table-client span:last-child{
    min-width: 0 !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    overflow-wrap: anywhere !important;
  }
}

.content-freshness{
  margin: 10px 0 0;
  color: rgba(232, 238, 247, 0.68);
  font-size: 0.86rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.content-freshness time{
  color: inherit;
  font: inherit;
}

@media (max-width: 1180px){
  body.client-detail-page .client-hero-grid{
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
  }

  body.client-detail-page .client-hero-card{
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 14px;
    justify-self: center;
    width: min(100%, 640px) !important;
    max-width: 640px !important;
    padding: clamp(16px, 3vw, 22px) !important;
    text-align: left;
  }

  body.client-detail-page .client-hero-logo{
    grid-row: 1 / span 2;
    width: 64px !important;
    height: 64px !important;
    margin: 0 !important;
    padding: 9px !important;
    border-radius: 14px !important;
  }

  body.client-detail-page .client-hero-logo img{
    width: 46px !important;
    height: 46px !important;
  }

  body.client-detail-page .client-hero-card h2{
    min-width: 0;
    margin: 0 !important;
    align-self: end;
    font-size: clamp(22px, 3.2vw, 28px);
    line-height: 1.18;
  }

  body.client-detail-page .client-hero-card p{
    min-width: 0;
    margin: 0 !important;
    align-self: start;
    font-size: 15px;
    line-height: 1.45;
  }

  body.client-detail-page .client-quick-facts{
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 760px){
  body.client-detail-page .client-hero-grid{
    gap: 18px !important;
  }

  body.client-detail-page .client-hero-card{
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 5px 12px;
    padding: 16px !important;
  }

  body.client-detail-page .client-hero-logo{
    width: 54px !important;
    height: 54px !important;
    padding: 8px !important;
  }

  body.client-detail-page .client-hero-logo img{
    width: 38px !important;
    height: 38px !important;
  }

  body.client-detail-page .client-hero-card h2{
    font-size: clamp(20px, 5vw, 24px);
  }

  body.client-detail-page .client-hero-card p{
    font-size: 14px;
  }

  body.client-detail-page .client-quick-facts{
    gap: 0;
    margin-top: 12px;
  }

  body.client-detail-page .client-quick-facts div{
    display: grid !important;
    grid-template-columns: minmax(64px, max-content) minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  body.client-detail-page .client-quick-facts dt,
  body.client-detail-page .client-quick-facts dd{
    min-width: 0;
    overflow-wrap: anywhere;
  }

  body.client-detail-page .client-quick-facts dd{
    text-align: right;
  }
}

/* Product Design enhancement layer: SEO, conversion and premium polish. */
:root,
body,
body[class]{
  --pd-action-blue: #2f6df6;
  --pd-action-cyan: #0ea5b7;
  --pd-glass: rgba(255, 255, 255, 0.052);
  --pd-glass-strong: rgba(255, 255, 255, 0.078);
  --pd-line: rgba(148, 163, 184, 0.16);
  --pd-line-strong: rgba(125, 211, 252, 0.34);
}

body{
  text-rendering: optimizeLegibility;
}

body .container{
  width: min(1180px, calc(100% - 40px)) !important;
}

body.home-page .hero{
  border-bottom: 1px solid rgba(125, 211, 252, 0.12);
}

body.home-page .hero-inner{
  gap: 44px !important;
}

body.home-page .hero-copy{
  max-width: 742px !important;
}

body.home-page .hero-kicker,
body.home-page .content-freshness{
  width: fit-content;
  max-width: 100%;
}

body.home-page .hero-kicker{
  gap: 8px;
  min-height: 34px;
  padding: 0 14px !important;
  border-radius: 8px !important;
}

body.home-page .content-freshness{
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 20px 0 12px !important;
  padding: 0 10px;
  color: rgba(226, 232, 240, 0.74) !important;
  background: rgba(15, 23, 42, 0.38);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 8px;
}

body.home-page .hero h1,
body.home-page .hero h1 span{
  white-space: normal !important;
}

body.home-page .hero h1{
  max-width: 760px !important;
  font-size: 72px !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}

body.home-page .hero-copy > p:not(.hero-kicker):not(.content-freshness){
  max-width: 710px !important;
  color: #b9c7da !important;
  font-size: 19px !important;
  line-height: 1.82 !important;
}

body.home-page .hero-actions{
  gap: 12px !important;
  margin-top: 30px !important;
}

body.home-page .hero .button{
  min-height: 52px !important;
  padding: 0 20px !important;
  border-radius: 8px !important;
}

body :is(.button.primary, a.button.primary, button.button.primary, .button.dark, a.button.dark, button.button.dark){
  background: linear-gradient(135deg, var(--pd-action-blue), var(--pd-action-cyan)) !important;
  border-color: rgba(191, 219, 254, 0.28) !important;
  box-shadow: 0 18px 42px rgba(47, 109, 246, 0.24) !important;
}

body :is(.button.primary, a.button.primary, button.button.primary, .button.dark, a.button.dark, button.button.dark):hover,
body :is(.button.primary, a.button.primary, button.button.primary, .button.dark, a.button.dark, button.button.dark):focus-visible{
  background: linear-gradient(135deg, #3d7cff, #14b8c6) !important;
  border-color: rgba(191, 219, 254, 0.46) !important;
  box-shadow: 0 22px 52px rgba(47, 109, 246, 0.31) !important;
}

@media (min-width: 1020px){
  body.home-page .platform-dock{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

body.home-page .platform-dock a{
  min-height: 94px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.026)),
    rgba(2, 6, 23, 0.38) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
  border-radius: 8px !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

body.home-page .platform-dock a:hover,
body.home-page .platform-dock a:focus-visible{
  background:
    linear-gradient(145deg, rgba(47, 109, 246, 0.13), rgba(14, 165, 183, 0.055)),
    rgba(2, 6, 23, 0.48) !important;
  border-color: rgba(125, 211, 252, 0.36) !important;
}

body.home-page .section{
  padding-top: 84px !important;
  padding-bottom: 84px !important;
}

body.home-page .section-title{
  max-width: 850px !important;
}

body .section-title h2{
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.16 !important;
  text-wrap: balance;
}

body.home-page .section-title p{
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.82 !important;
}

body.home-page :is(.feature-card, .trust-card, .platform-card, .faq-card, .troubleshoot-control-panel, .troubleshoot-result-panel, .home-choice-preview){
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.024) !important;
  border-color: var(--pd-line) !important;
  border-radius: 8px !important;
}

body.home-page :is(.feature-card, .trust-card, .platform-card, .faq-card, .troubleshoot-control-panel, .troubleshoot-result-panel, .home-choice-preview):hover{
  border-color: var(--pd-line-strong) !important;
  transform: translateY(-2px);
}

body.home-page .feature-card,
body.home-page .trust-card,
body.home-page .platform-card{
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

body.home-page .feature-icon,
body.home-page .trust-card > span,
body.home-page .platform-icon,
body.home-page .download-path-icon{
  border-radius: 8px !important;
}

body.home-page .home-choice{
  align-items: stretch !important;
}

body.home-page .home-choice-copy{
  align-self: center;
}

body.home-page .home-choice-preview{
  padding: 30px !important;
}

body.home-page .home-compare-heading strong{
  font-size: 20px !important;
}

body.home-page .home-compare-submit-row .button{
  min-width: 156px;
}

body.home-page .recommendation-card,
body.home-page .software-card{
  border-radius: 8px !important;
}

body.home-page #client-guide .recommendation-card p{
  min-height: 112px;
}

@media (max-width: 560px){
  body.home-page #client-guide .recommendation-card p{
    min-height: 0 !important;
    margin: 16px 0 18px !important;
  }

  body.home-page #client-guide .recommendation-actions{
    margin-top: 0 !important;
  }
}

body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child:hover,
body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child:focus-visible,
body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child:hover,
body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child:focus-visible{
  transform: translateY(-1px);
}

body.home-page :is(.home-choice-meta span, #client-guide .recommendation-head > .tag, #client-guide .recommendation-head > .ribbon, #download-entry .meta .tag, #download-entry .meta .tag.green, #download-entry .meta .tag.amber, #download-entry .meta .tag.red){
  color: #93c5fd !important;
  background: rgba(59, 130, 246, 0.10) !important;
  border-color: rgba(96, 165, 250, 0.26) !important;
}

body.home-page #client-guide .recommendation-card.is-recommended .recommendation-head > .ribbon,
body.home-page #client-guide .recommendation-head > :is(.tag, .tag.green, .tag.amber, .ribbon){
  color: #93c5fd !important;
  background: rgba(59, 130, 246, 0.10) !important;
  border-color: rgba(96, 165, 250, 0.26) !important;
}

body.home-page :is(.feature-icon, #source-safety .trust-card > span, #download-entry .platform-icon){
  color: #93c5fd !important;
  background: rgba(59, 130, 246, 0.10) !important;
  border-color: rgba(96, 165, 250, 0.24) !important;
}

body.home-page :is(.feature-icon, #source-safety .trust-card > span, #download-entry .platform-icon) i{
  color: inherit !important;
}

body .faq-card summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  color: #f8fbff;
  cursor: pointer;
  list-style: none;
}

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

body .faq-card summary::after{
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #93c5fd;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 8px;
  font-family: bootstrap-icons;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  content: "\f282";
  transition: transform 0.18s ease;
}

body .faq-card[open] summary::after{
  transform: rotate(180deg);
}

body .faq-card[open]{
  border-color: rgba(125, 211, 252, 0.32) !important;
}

@media (max-width: 1180px){
  body.home-page .hero h1{
    font-size: 58px !important;
  }

  body.home-page .home-choice{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 860px){
  body.home-page .hero-inner{
    gap: 26px !important;
    padding-top: 38px !important;
    padding-bottom: 34px !important;
  }

  body.home-page .hero h1{
    max-width: 100% !important;
    font-size: 42px !important;
    line-height: 1.05 !important;
  }

  body.home-page .hero-copy > p:not(.hero-kicker):not(.content-freshness){
    font-size: 16px !important;
    line-height: 1.78 !important;
  }

  body.home-page .hero-actions{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body.home-page .hero .button{
    width: 100%;
  }

  body.home-page .hero .button.primary{
    grid-column: 1 / -1;
  }

  body.home-page .hero .button.secondary,
  body.home-page .hero .button.ghost{
    grid-column: auto !important;
  }

  body.home-page .hero-visual{
    max-height: 360px;
    overflow: hidden;
  }

  body.home-page .platform-dock{
    margin-top: -26px !important;
  }

  body.home-page .section{
    padding-top: 62px !important;
    padding-bottom: 62px !important;
  }

  body.home-page .home-choice-preview{
    padding: 20px !important;
  }

  body.home-page .choice-matchup,
  body.home-page .home-compare-submit-row{
    grid-template-columns: 1fr !important;
  }

  body.home-page .choice-versus{
    justify-self: center;
  }

  body.home-page .home-compare-submit-row .button{
    width: 100%;
  }
}

@media (max-width: 520px){
  body .container{
    width: min(100% - 32px, 1180px) !important;
  }

  body.home-page .hero h1{
    font-size: 38px !important;
  }

  body.home-page .hero-kicker{
    font-size: 13px !important;
  }

  body.home-page .hero-metrics{
    gap: 8px !important;
  }

  body.home-page .hero-metrics span{
    min-height: 42px;
    padding: 0 10px !important;
  }

  body.home-page .platform-dock a{
    min-height: 82px !important;
  }

  body.home-page #client-guide .recommendation-card h3,
  body.home-page #client-guide .recommendation-card h3 a{
    white-space: normal !important;
  }
}

/* Sitewide layout stability: keep every page aligned to the homepage rail. */
:root{
  --site-container-max: 1180px;
  --site-container-gutter: 40px;
}

html{
  scrollbar-gutter: stable;
}

body{
  overflow-y: scroll;
}

body[class] .container,
body[class] .site-header .container,
body[class] .hero .container,
body[class] .page-hero .container,
body[class] .download-hero .container,
body[class] .client-detail-hero .container,
body[class] .docs-layout.container{
  width: min(var(--site-container-max), calc(100% - var(--site-container-gutter))) !important;
  max-width: none !important;
}

@media (max-width: 760px){
  :root{
    --site-container-gutter: 32px;
  }
}

/* Product Design deep optimization: align pages, prevent desktop drift, and improve tap targets. */
:root{
  --pd-section-y-inner: clamp(58px, 5.2vw, 82px);
}

body.inner-page .section{
  padding-top: var(--pd-section-y-inner) !important;
  padding-bottom: var(--pd-section-y-inner) !important;
}

body .page-hero{
  min-height: auto !important;
}

body.inner-page .page-hero .container{
  padding-top: clamp(96px, 8vw, 136px) !important;
  padding-bottom: clamp(44px, 5vw, 64px) !important;
}

body.inner-page .page-hero h1{
  max-width: 820px;
  text-wrap: balance;
}

body.inner-page .page-hero p{
  max-width: 760px;
}

body :is(.button, a.button, button.button, .recommendation-actions a, .card-actions a, .compare-selector-actions .button){
  min-height: 44px !important;
  border-radius: 8px !important;
}

body :is(.hero-actions, .card-actions, .recommendation-actions, .compare-selector-actions){
  align-items: center;
}

@media (min-width: 1100px){
  body.download-index-page #download-decision .download-path-grid,
  body.home-page #download-entry .grid.four{
    grid-auto-flow: row !important;
    grid-auto-columns: unset !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 14px !important;
    padding: 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  body.download-index-page #download-decision .download-path-card,
  body.home-page #download-entry .platform-card{
    min-width: 0 !important;
    width: auto !important;
    scroll-snap-align: none !important;
  }

  body.download-index-page #download-decision .download-path-card{
    display: flex;
    flex-direction: column;
    padding: 20px 16px !important;
  }

  body.download-index-page #download-decision .download-path-card h3{
    font-size: 18px !important;
    line-height: 1.25 !important;
  }

  body.download-index-page #download-decision .download-path-card p,
  body.download-index-page #download-decision .download-path-card li{
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  body.download-index-page #download-decision .download-path-card ul{
    padding-left: 18px !important;
  }

  body.download-index-page #download-decision .download-path-card .button{
    width: 100%;
    margin-top: auto;
    padding-inline: 10px !important;
    font-size: 14px !important;
    text-align: center;
  }

  body.download-index-page #download-decision .download-path-icon{
    width: 48px !important;
    height: 48px !important;
  }

  body.download-index-page #download-decision .horizontal-scroll-cue,
  body.home-page #download-entry .horizontal-scroll-cue{
    display: none !important;
  }
}

body :is(.docs-sidebar a, .docs-outline a, .docs-nav-group summary, .faq-category-nav a, .faq-sidebar-card a, .tutorial-sidebar-card a){
  display: flex !important;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px !important;
  border-radius: 8px !important;
}

body :is(.breadcrumb a, .site-footer .footer-links a){
  display: inline-flex !important;
  align-items: center;
  min-height: 36px;
  border-radius: 7px;
}

body .breadcrumb a{
  justify-content: center;
  min-width: 40px;
  min-height: 40px !important;
}

body :is(.docs-article a, .faq-detail-article a, .download-path-card li a, .faq-category-card a:not(.button), .faq-question-card a:not(.button)){
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 3px;
  border-radius: 6px;
  vertical-align: middle;
}

body:is(.home-page, .download-index-page, .client-detail-page) main :is(p, li, h3, h4, dd, small) > a:not(.button){
  display: inline-flex !important;
  align-items: center;
  min-height: 36px !important;
  padding: 0 3px;
  border-radius: 6px;
  vertical-align: middle;
}

body.client-detail-page .detail-panel p a:not(.button):not(.download-option),
body.client-detail-page .detail-panel li a:not(.button):not(.download-option),
body.client-detail-page .param-table a:not(.button):not(.download-option),
body.client-detail-page .param-row a:not(.button):not(.download-option){
  display: inline-flex !important;
  align-items: center;
  min-height: 36px !important;
  padding: 0 3px !important;
  border-radius: 6px !important;
  vertical-align: middle;
}

body :is(.telegram-float, .changlian-float),
body .back-to-top.is-visible{
  opacity: 0.78;
  transform: translateY(0) scale(0.96);
}

body :is(.telegram-float, .changlian-float):hover,
body :is(.telegram-float, .changlian-float):focus-visible,
body .back-to-top.is-visible:hover,
body .back-to-top.is-visible:focus-visible{
  opacity: 1;
  transform: translateY(-2px) scale(1);
}

@media (max-width: 760px){
  body :is(.docs-sidebar a, .docs-outline a, .docs-nav-group summary, .faq-category-nav a, .faq-sidebar-card a, .tutorial-sidebar-card a){
    min-height: 44px;
    padding: 10px 12px !important;
  }

  body :is(.breadcrumb a, .site-footer .footer-links a, .docs-article a, .faq-detail-article a, .download-path-card li a, .faq-category-card a:not(.button), .faq-question-card a:not(.button)),
  body:is(.home-page, .download-index-page, .client-detail-page) main :is(p, li, h3, h4, dd, small) > a:not(.button){
    min-height: 44px;
  }

  body.inner-page .page-hero .container{
    padding-top: 96px !important;
    padding-bottom: 42px !important;
  }

  body.inner-page .page-hero .hero-actions{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

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

/* Cinematic motion layer: page-specific entrance, section reveals, and page exits. */
:root{
  --motion-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-snap: cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes motionHeaderDrop{
  from{
    opacity: 0;
    transform: translate3d(0, -18px, 0);
    filter: blur(10px);
  }

  to{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes motionLiftIn{
  from{
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.985);
    filter: blur(10px);
  }

  to{
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motionVisualIn{
  from{
    opacity: 0;
    transform: translate3d(28px, 18px, 0) scale(0.96);
    filter: blur(14px) saturate(0.85);
  }

  to{
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes motionSoftFloat{
  0%,
  100%{
    transform: translate3d(0, 0, 0);
  }

  50%{
    transform: translate3d(0, -8px, 0);
  }
}

body.motion-ready{
  --reveal-distance: 28px;
}

body.motion-ready::after{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block;
  pointer-events: none;
  opacity: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(4, 9, 20, 0.10), rgba(14, 165, 233, 0.16) 42%, rgba(4, 9, 20, 0.86)),
    rgba(4, 9, 20, 0.24);
  backdrop-filter: blur(0);
  transition:
    opacity 260ms var(--motion-ease-out),
    backdrop-filter 260ms var(--motion-ease-out);
}

body.motion-ready:not(.page-loaded) .site-header{
  opacity: 0;
  transform: translate3d(0, -18px, 0);
  filter: blur(10px);
}

body.motion-ready:not(.page-loaded) .hero-copy .hero-kicker,
body.motion-ready:not(.page-loaded) .page-hero .breadcrumb,
body.motion-ready:not(.page-loaded) .page-hero .content-freshness{
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
  filter: blur(8px);
}

body.motion-ready:not(.page-loaded) .hero-copy h1,
body.motion-ready:not(.page-loaded) .page-hero h1{
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.98);
  clip-path: inset(0 0 34% 0);
  filter: blur(10px);
}

body.motion-ready:not(.page-loaded) .hero-copy > p,
body.motion-ready:not(.page-loaded) .page-hero p{
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(8px);
}

body.motion-ready:not(.page-loaded) .hero-actions{
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.98);
  filter: blur(6px);
}

body.motion-ready:not(.page-loaded) .hero-visual,
body.motion-ready:not(.page-loaded) .client-detail-hero .client-hero-card{
  opacity: 0;
  transform: translate3d(30px, 20px, 0) scale(0.96);
  filter: blur(14px) saturate(0.85);
}

body.motion-ready.page-loaded .site-header{
  animation: motionHeaderDrop 620ms var(--motion-ease-out) both;
}

body.motion-ready.page-loaded .hero-copy .hero-kicker,
body.motion-ready.page-loaded .page-hero :is(.breadcrumb, .content-freshness){
  animation: motionLiftIn 640ms var(--motion-ease-out) 40ms both;
}

body.motion-ready.page-loaded .hero-copy h1,
body.motion-ready.page-loaded .page-hero h1{
  animation: motionLiftIn 800ms var(--motion-ease-out) 130ms both;
  clip-path: inset(0 0 0 0);
}

body.motion-ready.page-loaded .hero-copy > p,
body.motion-ready.page-loaded .page-hero p{
  animation: motionLiftIn 720ms var(--motion-ease-out) 230ms both;
}

body.motion-ready.page-loaded .hero-actions{
  animation: motionLiftIn 680ms var(--motion-ease-out) 320ms both;
}

body.motion-ready.page-loaded .hero-visual{
  animation: motionVisualIn 900ms var(--motion-ease-out) 160ms both;
}

body.motion-ready.page-loaded .client-detail-hero .client-hero-card{
  animation: motionVisualIn 780ms var(--motion-ease-out) 220ms both;
}

body.motion-ready.page-settled .hero-visual{
  animation: motionSoftFloat 7s ease-in-out infinite;
}

body.motion-ready [data-reveal]{
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 720ms var(--motion-ease-out),
    transform 720ms var(--motion-ease-out),
    filter 720ms ease,
    clip-path 720ms var(--motion-ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

body.motion-ready [data-reveal="title"]{
  transform: translate3d(-22px, 0, 0);
  clip-path: inset(0 18% 0 0);
}

body.motion-ready [data-reveal="visual"]{
  transform: translate3d(34px, 18px, 0) scale(0.96);
  filter: blur(14px) saturate(0.85);
}

body.motion-ready [data-reveal="actions"]{
  transform: translate3d(0, 14px, 0) scale(0.98);
  filter: blur(6px);
}

body.motion-ready [data-reveal="home-card"]{
  transform: translate3d(0, 24px, 0) scale(0.982);
}

body.motion-ready [data-reveal="download-card"]{
  transform: translate3d(0, 30px, 0) scale(0.985) rotateX(4deg);
  transform-origin: 50% 100%;
}

body.motion-ready [data-reveal="faq"]{
  transform: translate3d(0, 16px, 0) scale(0.965);
  filter: blur(7px);
}

body.motion-ready [data-reveal="reader"]{
  transform: translate3d(-18px, 0, 0);
  clip-path: inset(0 0 0 8%);
  filter: blur(6px);
}

body.motion-ready [data-reveal="rail"]{
  transform: translate3d(-20px, 0, 0);
  filter: blur(7px);
}

body.motion-ready [data-reveal="compare"]{
  transform: translate3d(26px, 0, 0) scale(0.98);
  filter: blur(8px);
}

body.motion-ready [data-reveal="detail"]{
  transform: translate3d(0, 22px, 0) scale(0.98);
  filter: blur(9px);
}

body.motion-ready [data-reveal="guide"],
body.motion-ready [data-reveal="item"]{
  transform: translate3d(0, 22px, 0);
}

body.motion-ready [data-reveal].is-visible{
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotateX(0);
  filter: blur(0);
}

body.motion-ready.page-leaving::after{
  opacity: 1;
  backdrop-filter: blur(12px);
}

body.motion-ready.page-leaving .site-header{
  opacity: 0;
  transform: translate3d(0, -14px, 0) scale(0.986);
  filter: blur(8px);
  transition:
    opacity 240ms var(--motion-ease-snap),
    transform 240ms var(--motion-ease-snap),
    filter 240ms var(--motion-ease-snap);
}

body.motion-ready.page-leaving.home-page :is(.hero-copy, .hero-visual, .site-footer){
  opacity: 0;
  transform: translate3d(0, -18px, 0) scale(0.982);
  filter: blur(8px);
  transition: opacity 240ms var(--motion-ease-snap), transform 240ms var(--motion-ease-snap), filter 240ms var(--motion-ease-snap);
}

body.motion-ready.page-leaving.download-index-page main{
  opacity: 0;
  transform: translate3d(-24px, 0, 0) scale(0.988);
  filter: blur(7px);
  transition: opacity 240ms var(--motion-ease-snap), transform 240ms var(--motion-ease-snap), filter 240ms var(--motion-ease-snap);
}

body.motion-ready.page-leaving.docs-page :is(.docs-sidebar, .docs-article, .docs-outline),
body.motion-ready.page-leaving.faq-index-page main{
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.988);
  filter: blur(7px);
  transition: opacity 240ms var(--motion-ease-snap), transform 240ms var(--motion-ease-snap), filter 240ms var(--motion-ease-snap);
}

body.motion-ready.page-leaving.comparison-page main{
  opacity: 0;
  transform: perspective(1200px) rotateY(-3deg) translate3d(-18px, 0, 0);
  filter: blur(7px);
  transform-origin: 0 50%;
  transition: opacity 240ms var(--motion-ease-snap), transform 240ms var(--motion-ease-snap), filter 240ms var(--motion-ease-snap);
}

body.motion-ready.page-leaving.client-detail-page main,
body.motion-ready.page-leaving:not(.home-page):not(.download-index-page):not(.docs-page):not(.faq-index-page):not(.comparison-page):not(.client-detail-page) main{
  opacity: 0;
  transform: translate3d(0, -12px, 0) scale(0.986);
  filter: blur(8px);
  transition: opacity 240ms var(--motion-ease-snap), transform 240ms var(--motion-ease-snap), filter 240ms var(--motion-ease-snap);
}

@media (max-width: 760px){
  body.motion-ready{
    --reveal-distance: 18px;
  }

  body.motion-ready [data-reveal]{
    transition-duration: 560ms;
  }

  body.motion-ready [data-reveal="download-card"],
  body.motion-ready [data-reveal="home-card"],
  body.motion-ready [data-reveal="faq"],
  body.motion-ready [data-reveal="detail"],
  body.motion-ready [data-reveal="guide"]{
    transform: translate3d(0, 20px, 0) scale(0.99);
  }
}

@media (prefers-reduced-motion: reduce){
  body.motion-ready::after{
    display: none;
  }

  body.motion-ready:not(.page-loaded) :is(
    .site-header,
    .hero-copy > *,
    .hero-visual,
    .page-hero .breadcrumb,
    .page-hero .content-freshness,
    .page-hero h1,
    .page-hero p,
    .page-hero .hero-actions,
    .client-detail-hero .client-hero-card
  ),
  body.motion-ready [data-reveal],
  body.motion-ready.page-leaving :is(.site-header, main, .site-footer, .hero-copy, .hero-visual, .docs-sidebar, .docs-article, .docs-outline){
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Breadcrumb navigation refinement */
body .breadcrumb{
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  width: auto !important;
  max-width: min(100%, 780px) !important;
  min-width: 0 !important;
  margin: 0 0 16px !important;
  padding: 6px 8px !important;
  overflow: hidden !important;
  color: var(--ref-muted) !important;
  font-size: 14px !important;
  line-height: 1 !important;
  border: 1px solid rgba(96, 165, 250, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(15, 23, 42, 0.36) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 32px rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body .breadcrumb > *{
  min-width: 0 !important;
}

body .breadcrumb a{
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  min-height: 30px !important;
  padding: 0 8px !important;
  overflow: hidden !important;
  color: var(--ref-link) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 30px !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

body .breadcrumb a:hover{
  color: var(--ref-link-hover) !important;
  background: rgba(96, 165, 250, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.16) !important;
}

body .breadcrumb > span{
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  color: var(--ref-muted) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 30px !important;
}

body .breadcrumb > span:not(:last-child){
  flex: 0 0 20px !important;
  justify-content: center !important;
  color: rgba(148, 163, 184, 0.5) !important;
  font-weight: 600 !important;
}

body .breadcrumb > span:last-child{
  flex: 1 1 auto !important;
  padding: 0 8px !important;
  overflow: hidden !important;
  color: rgba(226, 232, 240, 0.86) !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body .page-hero .breadcrumb + .content-freshness{
  margin-top: 0 !important;
}

@media (max-width: 640px){
  body .breadcrumb{
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    margin-bottom: 12px !important;
    padding: 5px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body .breadcrumb::-webkit-scrollbar{
    display: none;
  }

  body .breadcrumb a,
  body .breadcrumb > span{
    flex: 0 0 auto !important;
    min-height: 28px !important;
    font-size: 13px !important;
    line-height: 28px !important;
  }

  body .breadcrumb a:not(:first-child){
    max-width: none !important;
  }

  body .breadcrumb > span:last-child{
    flex: 0 0 auto !important;
    max-width: none !important;
    padding: 0 7px !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
}

/* Typography scale normalization */
:root,
body,
body[class]{
  --type-home-hero: 68px;
  --type-page-title: 48px;
  --type-page-title-long: 44px;
  --type-section-title: 34px;
  --type-feature-title: 40px;
  --type-article-title: 30px;
  --type-panel-title: 24px;
  --type-card-title: 20px;
  --type-body-lead: 17px;
  --type-body: 16px;
  --type-article-body: 17px;
  --type-card-body: 15.5px;
  --type-control: 15px;
  --type-small: 14px;
  --type-caption: 13px;
  --type-label: 12px;
  --leading-display: 1.04;
  --leading-title: 1.12;
  --leading-heading: 1.18;
  --leading-body: 1.72;
  --leading-article: 1.82;
  --leading-compact: 1.42;
}

body{
  font-size: var(--type-body) !important;
  line-height: var(--leading-body) !important;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body main :is(h1, h2, h3, h4, p, li, dt, dd, small, a, button, input, select, textarea, summary, th, td, label){
  letter-spacing: 0 !important;
}

body.home-page .hero h1{
  max-width: 760px !important;
  font-size: var(--type-home-hero) !important;
  font-weight: 950 !important;
  line-height: var(--leading-display) !important;
  text-wrap: balance;
}

body.inner-page .page-hero h1,
body.docs-page .page-hero h1{
  max-width: 880px !important;
  font-size: var(--type-page-title) !important;
  font-weight: 950 !important;
  line-height: var(--leading-title) !important;
  text-wrap: balance;
}

html[lang^="en"] body.inner-page .page-hero h1,
html[lang^="en"] body.docs-page .page-hero h1{
  font-size: var(--type-page-title-long) !important;
  line-height: 1.14 !important;
}

body.home-page .hero-copy > p:not(.hero-kicker):not(.content-freshness),
body.inner-page .page-hero > .container > p,
body.inner-page .page-hero .download-hero-copy > p:not(.content-freshness),
body.docs-page .page-hero p:not(.content-freshness){
  max-width: 760px !important;
  font-size: var(--type-body-lead) !important;
  line-height: var(--leading-article) !important;
}

body .section-title h2{
  max-width: 850px !important;
  font-size: var(--type-section-title) !important;
  font-weight: 950 !important;
  line-height: var(--leading-heading) !important;
  text-wrap: balance;
}

body .section-title p{
  max-width: 790px !important;
  font-size: var(--type-body) !important;
  line-height: var(--leading-article) !important;
}

body.home-page .home-choice-copy h2{
  font-size: var(--type-feature-title) !important;
  font-weight: 950 !important;
  line-height: var(--leading-title) !important;
  text-wrap: balance;
}

body :is(.docs-article, .faq-detail-article, .detail-panel) h2{
  font-size: var(--type-article-title) !important;
  font-weight: 900 !important;
  line-height: var(--leading-heading) !important;
}

body :is(.docs-article, .faq-detail-article, .detail-panel) h3{
  font-size: var(--type-panel-title) !important;
  font-weight: 850 !important;
  line-height: var(--leading-heading) !important;
}

body :is(.docs-article, .faq-detail-article) :is(p, li){
  font-size: var(--type-article-body) !important;
  line-height: var(--leading-article) !important;
}

body :is(.feature-card, .recommendation-card, .platform-card, .download-path-card, .download-safety-card, .software-card, .trust-card, .step-card, .faq-card, .notice-card, .plan-card, .faq-category-card, .faq-question-card) h3{
  font-size: var(--type-card-title) !important;
  font-weight: 850 !important;
  line-height: 1.28 !important;
  text-wrap: balance;
}

body :is(.feature-card, .recommendation-card, .platform-card, .download-path-card, .download-safety-card, .software-card, .trust-card, .step-card, .faq-card, .notice-card, .plan-card, .faq-category-card, .faq-question-card) :is(p, li, dd){
  font-size: var(--type-card-body) !important;
  line-height: 1.68 !important;
}

body :is(.download-hero-panel, .faq-hero-panel, .tutorial-index-panel, .compare-selector-panel, .troubleshoot-control-panel, .troubleshoot-result-panel, .client-hero-card, .repo-side, .param-table, .home-choice-preview) :is(h2, h3, strong:first-child){
  font-size: var(--type-panel-title) !important;
  font-weight: 900 !important;
  line-height: 1.24 !important;
}

body :is(.faq-sidebar-card, .tutorial-sidebar-card, .docs-outline, .docs-sidebar) h2{
  font-size: var(--type-card-title) !important;
  font-weight: 900 !important;
  line-height: 1.24 !important;
}

body :is(.faq-sidebar-card, .tutorial-sidebar-card, .docs-outline, .docs-sidebar) :is(a, summary, p, li){
  font-size: var(--type-small) !important;
  line-height: 1.48 !important;
}

body :is(.button, button.button, a.button, input, select, textarea){
  font-size: var(--type-control) !important;
  line-height: 1.25 !important;
}

body :is(.site-header .nav a, .header-action, .mobile-nav-action){
  font-size: var(--type-control) !important;
  font-weight: 850 !important;
  line-height: 1 !important;
}

body .breadcrumb,
body .breadcrumb a,
body .breadcrumb > span{
  font-size: var(--type-caption) !important;
  line-height: 28px !important;
}

body .content-freshness{
  font-size: var(--type-caption) !important;
  font-weight: 700 !important;
  line-height: var(--leading-compact) !important;
}

body .hero-kicker{
  font-size: var(--type-control) !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
}

body :is(.tag, .ribbon, .meta span, .home-choice-meta span, .recommendation-head > span:not(.software-logo)){
  font-size: var(--type-label) !important;
  font-weight: 850 !important;
  line-height: 1 !important;
}

body :is(.meta, .software-card dt, .client-quick-facts dt, .param-row dt, .plan-features li small){
  font-size: var(--type-caption) !important;
  line-height: var(--leading-compact) !important;
}

body :is(.docs-article, .faq-detail-article, .detail-panel) :is(th, td),
body :is(.param-table, .compare-table) :is(th, td){
  font-size: var(--type-small) !important;
  line-height: 1.55 !important;
}

body .hero-metrics span{
  font-size: var(--type-small) !important;
  line-height: 1.25 !important;
}

body .hero-metrics strong{
  font-size: 20px !important;
  line-height: 1 !important;
}

body .download-stat-title b{
  font-size: 52px !important;
  line-height: 0.95 !important;
}

@media (max-width: 1180px){
  :root,
  body,
  body[class]{
    --type-home-hero: 60px;
    --type-page-title: 44px;
    --type-page-title-long: 40px;
    --type-section-title: 32px;
    --type-feature-title: 36px;
    --type-article-title: 28px;
  }
}

@media (max-width: 860px){
  :root,
  body,
  body[class]{
    --type-home-hero: 42px;
    --type-page-title: 36px;
    --type-page-title-long: 34px;
    --type-section-title: 30px;
    --type-feature-title: 32px;
    --type-article-title: 26px;
    --type-panel-title: 22px;
    --type-card-title: 19px;
    --type-body-lead: 16px;
    --type-article-body: 16px;
    --type-card-body: 15px;
  }

  body.home-page .hero h1,
  body.inner-page .page-hero h1,
  body.docs-page .page-hero h1{
    text-wrap: balance;
  }

  body .download-stat-title b{
    font-size: 42px !important;
  }
}

@media (max-width: 520px){
  :root,
  body,
  body[class]{
    --type-home-hero: 36px;
    --type-page-title: 32px;
    --type-page-title-long: 30px;
    --type-section-title: 28px;
    --type-feature-title: 28px;
    --type-article-title: 24px;
    --type-panel-title: 21px;
    --type-card-title: 18px;
    --type-body: 15.5px;
    --type-body-lead: 15.5px;
    --type-article-body: 15.5px;
    --type-card-body: 14.5px;
    --type-control: 15px;
    --type-small: 13.5px;
    --type-caption: 12.5px;
  }

  body :is(input, select, textarea){
    font-size: 16px !important;
  }

  body .section-title p{
    line-height: 1.74 !important;
  }

  body .download-stat-title b{
    font-size: 36px !important;
  }
}

/* Home hero visual balance */
@media (min-width: 1200px){
  body.home-page .hero-inner{
    grid-template-columns: minmax(0, 590px) minmax(420px, 480px) !important;
    justify-content: start !important;
    gap: clamp(56px, 5vw, 76px) !important;
  }

  body.home-page .hero-copy{
    max-width: 590px !important;
  }

  body.home-page .hero-visual.official-network{
    justify-self: start !important;
    width: clamp(440px, 37vw, 480px) !important;
    max-width: 480px !important;
    margin: 0 !important;
  }

  body.home-page .hero-visual.official-network .network-stage{
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Section header layout */
:root{
  --site-section-title-size: 44px;
  --site-section-title-left-size: 38px;
  --site-section-subtitle-size: 18px;
  --site-section-subtitle-left-size: 16px;
  --site-section-title-gap: 14px;
  --site-section-title-bottom: 48px;
}

body main .section-title{
  display: grid !important;
  justify-items: center !important;
  gap: var(--site-section-title-gap) !important;
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
  margin: 0 auto var(--site-section-title-bottom) !important;
  padding: 0 8px !important;
  text-align: center !important;
}

body main .section-title h2{
  max-width: 980px !important;
  margin: 0 auto !important;
  color: var(--ref-text, #ffffff) !important;
  font-size: var(--site-section-title-size) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-wrap: balance;
}

body main .section-title p{
  max-width: 980px !important;
  margin: 0 auto !important;
  color: var(--ref-muted, #94a3b8) !important;
  font-size: var(--site-section-subtitle-size) !important;
  font-weight: 400 !important;
  line-height: 1.82 !important;
  text-align: center !important;
  text-wrap: pretty;
}

body main .section-title.left{
  justify-items: start !important;
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  margin-right: auto !important;
  margin-left: 0 !important;
  text-align: left !important;
}

body main .section-title.left h2{
  max-width: 900px !important;
  margin-right: auto !important;
  margin-left: 0 !important;
  font-size: var(--site-section-title-left-size) !important;
  text-align: left !important;
}

body main .section-title.left p{
  max-width: 860px !important;
  margin-right: auto !important;
  margin-left: 0 !important;
  font-size: var(--site-section-subtitle-left-size) !important;
  line-height: 1.72 !important;
  text-align: left !important;
}

body.home-page #features .section-title{
  margin-bottom: 44px !important;
}

body.home-page #features .section-title h2{
  font-size: 46px !important;
}

body.home-page #features .section-title p{
  max-width: 1000px !important;
  font-size: 18px !important;
  line-height: 1.86 !important;
}

@media (max-width: 1180px){
  :root{
    --site-section-title-size: 40px;
    --site-section-title-left-size: 34px;
    --site-section-title-bottom: 42px;
  }
}

@media (max-width: 860px){
  :root{
    --site-section-title-size: 34px;
    --site-section-title-left-size: 30px;
    --site-section-subtitle-size: 16px;
    --site-section-title-bottom: 34px;
  }

  body main .section-title{
    padding: 0 !important;
  }

  body.home-page #features .section-title h2{
    font-size: 36px !important;
  }

  body.home-page #features .section-title p{
    font-size: var(--site-section-subtitle-size) !important;
    line-height: 1.78 !important;
  }
}

@media (max-width: 520px){
  :root{
    --site-section-title-size: 30px;
    --site-section-title-left-size: 28px;
    --site-section-subtitle-size: 15.5px;
    --site-section-title-bottom: 30px;
  }

  body main .section-title h2,
  body.home-page #features .section-title h2{
    font-size: var(--site-section-title-size) !important;
    line-height: 1.16 !important;
  }

  body.home-page #features .section-title p{
    font-size: var(--site-section-subtitle-size) !important;
    line-height: 1.74 !important;
  }
}

/* Responsive visual polish */
@media (max-width: 760px){
  body.inner-page .section .compare-table-wrap,
  body .docs-article .docs-table{
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body.inner-page .section .compare-table,
  body .docs-article .docs-table table{
    max-width: 100% !important;
  }

  body.client-detail-page .client-hero-card{
    gap: 6px 12px !important;
    padding: 16px !important;
  }

  body.client-detail-page .client-quick-facts{
    margin-top: 8px !important;
  }

  body.client-detail-page .client-quick-facts div{
    padding: 8px 0 !important;
  }
}

@media (max-width: 560px){
  body main .section-title{
    margin-bottom: 26px !important;
  }

  body.home-page #client-guide .recommendation-card{
    grid-template-rows: 52px auto auto auto auto !important;
    row-gap: 0 !important;
    min-height: 0 !important;
    padding: 20px 18px 18px !important;
  }

  body.home-page #client-guide .recommendation-card h3{
    margin-top: 14px !important;
  }

  body.home-page #client-guide .recommendation-card dl{
    margin-top: 10px !important;
  }

  body.home-page #client-guide .recommendation-card p{
    min-height: 0 !important;
    align-self: start !important;
    margin: 14px 0 14px !important;
    line-height: 1.62 !important;
  }

  body.home-page #client-guide .recommendation-actions{
    margin-top: 0 !important;
  }

  body.home-page #client-guide .recommendation-card:not(:nth-child(4)) .recommendation-actions a:last-child,
  body.home-page #client-guide .recommendation-card:nth-child(4) .recommendation-actions a:first-child{
    min-height: 48px !important;
    padding: 0 18px !important;
    border-radius: 12px !important;
  }

  body.download-index-page #software .software-card,
  body.tutorial-index-page #tutorials .software-card,
  body.platform-download-page [id$="-clients"] .software-card{
    grid-template-rows: auto auto auto auto !important;
    row-gap: 0 !important;
    min-height: 0 !important;
    padding: 20px 18px 18px !important;
  }

  body.download-index-page #software .software-card p,
  body.tutorial-index-page #tutorials .software-card p,
  body.platform-download-page [id$="-clients"] .software-card p{
    align-self: start !important;
    margin: 14px 0 14px !important;
    line-height: 1.62 !important;
  }

  body.download-index-page #software .software-card .card-actions,
  body.tutorial-index-page #tutorials .software-card .card-actions,
  body.platform-download-page [id$="-clients"] .software-card .card-actions{
    margin-top: 0 !important;
  }

  body.download-index-page #software .software-card .card-actions .button.dark,
  body.tutorial-index-page #tutorials .software-card .card-actions .button.dark,
  body.platform-download-page [id$="-clients"] .software-card .card-actions .button.dark{
    min-height: 48px !important;
    padding: 0 18px !important;
    border-radius: 12px !important;
  }
}

/* Restore docs pager cards after article link normalization. */
body .docs-article .docs-pager{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 44px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(148, 163, 184, 0.24) !important;
}

body .docs-article .docs-pager a,
body .section .docs-article .docs-pager a:not(.button):not(.network-node){
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 5px !important;
  min-height: 74px !important;
  padding: 14px 16px !important;
  color: #e2e8f0 !important;
  text-align: left !important;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.028) !important;
  border: 1px solid rgba(148, 163, 184, 0.16) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

body .docs-article .docs-pager a:last-child,
body .section .docs-article .docs-pager a:not(.button):not(.network-node):last-child{
  align-items: flex-end !important;
  text-align: right !important;
}

body .docs-article .docs-pager a:hover,
body .docs-article .docs-pager a:focus-visible,
body .section .docs-article .docs-pager a:not(.button):not(.network-node):hover,
body .section .docs-article .docs-pager a:not(.button):not(.network-node):focus-visible{
  color: #ffffff !important;
  text-decoration: none !important;
  background: rgba(37, 99, 235, 0.1) !important;
  border-color: rgba(96, 165, 250, 0.3) !important;
}

body .docs-article .docs-pager span,
body .docs-article .docs-pager strong{
  display: block !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
  overflow-wrap: anywhere;
}

body .docs-article .docs-pager span{
  color: #64748b !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

body .docs-article .docs-pager strong{
  color: #f8fafc !important;
  font-size: 16px !important;
  font-weight: 850 !important;
  line-height: 1.28 !important;
}

@media (max-width: 640px){
  body .docs-article .docs-pager{
    grid-template-columns: 1fr !important;
  }

  body .docs-article .docs-pager a:last-child{
    align-items: flex-start !important;
    text-align: left !important;
  }
}

/* Browser compatibility fallbacks */
@supports not (container-type: inline-size){
  body.home-page .hero-visual.official-network .network-stage,
  body .official-network .network-stage{
    container-type: normal;
  }

  body .network-core-glow{
    width: 236px !important;
    height: 236px !important;
    border-radius: 48px !important;
    filter: blur(42px) !important;
  }

  body .network-logo{
    width: 148px !important;
    height: 148px !important;
    padding: 18px !important;
    border-radius: 32px !important;
  }

  body .network-caption{
    gap: 10px !important;
    padding: 7px 22px !important;
  }

  body .network-caption strong{
    font-size: 14px !important;
  }

  body .network-caption small{
    font-size: 12px !important;
  }

  body .network-node{
    gap: 8px !important;
    font-size: 10px !important;
  }

  body .network-node span{
    width: 68px !important;
    height: 68px !important;
    border-radius: 18px !important;
  }

  body .network-node i{
    font-size: 30px !important;
  }

  body .network-node small{
    font-size: 12px !important;
  }
}

@supports not (scrollbar-gutter: stable){
  html{
    overflow-y: scroll;
  }
}

/* Final mobile hero spacing */
@media (max-width: 760px){
  body.inner-page .page-hero .container,
  body.inner-page .download-hero .container,
  body.inner-page .client-detail-hero .container,
  body.docs-page .page-hero.docs-hero .container{
    padding-top: 44px !important;
    padding-bottom: 34px !important;
  }
}

@media (max-width: 560px){
  body.inner-page .page-hero .container,
  body.inner-page .download-hero .container,
  body.inner-page .client-detail-hero .container,
  body.docs-page .page-hero.docs-hero .container{
    padding-top: 36px !important;
    padding-bottom: 30px !important;
  }
}
/* Desktop nav hover underline fix */
@media (min-width: 861px){
  body .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):hover,
  body .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):focus-visible,
  body .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"],
  body.docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):hover,
  body.docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):focus-visible,
  body.docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"],
  body .docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):hover,
  body .docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual):focus-visible,
  body .docs-page .site-header .nav > a:not(.button):not(.network-node):not(.brand):not(.mobile-nav-visual)[aria-current="page"]{
    background-color: transparent !important;
    background-image: linear-gradient(90deg, #2563eb, #22d3ee) !important;
    background-repeat: no-repeat !important;
    background-size: 36px 2px !important;
    background-position: center calc(100% - 2px) !important;
  }
}
/* FAQ category question links: remove chip frame */
body .faq-category-card li a,
body.inner-page .section .faq-category-card li a{
  display: inline !important;
  min-height: 0 !important;
  padding: 0 !important;
  color: #60a5fa !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  line-height: 1.55 !important;
  text-decoration: none !important;
}

body .faq-category-card li a:hover,
body .faq-category-card li a:focus-visible,
body.inner-page .section .faq-category-card li a:hover,
body.inner-page .section .faq-category-card li a:focus-visible{
  color: #93c5fd !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(147, 197, 253, 0.7) !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 4px !important;
}

/* FAQ path question links: remove chip frame */
body.faq-index-page .download-path-card li a,
body.inner-page.faq-index-page .section .download-path-card li a{
  display: inline !important;
  min-height: 0 !important;
  padding: 0 !important;
  color: #60a5fa !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  line-height: 1.55 !important;
  text-decoration: none !important;
  vertical-align: baseline !important;
}

body.faq-index-page .download-path-card li a:hover,
body.faq-index-page .download-path-card li a:focus-visible,
body.inner-page.faq-index-page .section .download-path-card li a:hover,
body.inner-page.faq-index-page .section .download-path-card li a:focus-visible{
  color: #93c5fd !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(147, 197, 253, 0.7) !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 4px !important;
}

/* Client download page: merge scattered notes into one callout */
body.client-detail-page .client-download-tips{
  margin: 18px 0 0 !important;
  padding: 0 !important;
  color: #cbd5e1 !important;
  text-align: left !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.client-detail-page .client-download-tips h3{
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

body.client-detail-page .client-download-tips .client-note-list{
  display: grid !important;
  gap: 6px !important;
  margin: 0 !important;
  padding-left: 18px !important;
  list-style: disc !important;
  text-align: left !important;
}

body.client-detail-page .client-download-tips .client-note-list li{
  display: list-item !important;
  padding: 0 !important;
  color: #94a3b8 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  line-height: 1.65 !important;
  text-align: left !important;
}
