:root {
  --accent: #41acef;
  --accent-soft: #88cbf5;
  --bg-main: #ffffff;
  --bg-light: #c6d3d6;
  --bg-soft: #f7f7f7;
  --bg-dark: #222222;
  --bg-dark-deep: #171717;
  --text-main: #111111;
  --text-muted: #888888;
  --text-light: rgba(255, 255, 255, 0.74);
  --border-light: rgba(17, 17, 17, 0.09);
  --border-mid: rgba(17, 17, 17, 0.18);
  --border-dark: rgba(255, 255, 255, 0.1);
  --radius-xl: 0px;
  --radius-lg: 0px;
  --radius-md: 0px;
  --wrap: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.5;
}

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

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

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

button {
  font: inherit;
}

.sh {
  overflow: clip;
}

.wrap {
  width: min(calc(100% - 32px), var(--wrap));
  margin: 0 auto;
}

.sec-l,
.sec-a,
.sec-d,
.ft {
  position: relative;
}

.sec-l,
.sec-a,
.sec-d {
  padding: 90px 0;
}

.sec-l {
  background: var(--bg-main);
}

.sec-a {
  background: var(--bg-soft);
}

.sec-d {
  background: var(--bg-dark);
  color: #ffffff;
}

.sec-h {
  max-width: 780px;
  margin-bottom: 44px;
}

.sec-h-c {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 56px;
}

.sec-h-sm {
  max-width: 820px;
}

.sec-h h2,
.why-c h2 {
  margin: 12px 0 16px;
  font-size: clamp(2.4rem, 2.7vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.sec-h p,
.why-c p {
  margin: 0;
  max-width: 680px;
  font-size: 1.03rem;
  color: inherit;
  opacity: 0.76;
}

.k {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.k::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.k-d,
.k-h {
  color: var(--accent-soft);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
  isolation: isolate;
  font-size: 1.05rem;
}

.btn > span,
.btn {
  z-index: 1;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.btn::before {
  transform: translateX(-108%);
  transition: transform 240ms ease;
}

.btn::after {
  inset: auto 10px 10px auto;
  width: 12px;
  height: 12px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.34;
  transition: transform 200ms ease, opacity 200ms ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(0);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translate(3px, 3px);
  opacity: 0.72;
}

.btn-p {
  color: #ffffff;
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

.btn-p::before {
  background: rgba(255, 255, 255, 0.14);
}

.btn-p:hover,
.btn-p:focus-visible {
  background: #a1d8f9;
  border-color: #a1d8f9;
}

.btn-g {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-g::before {
  background: rgba(136, 203, 245, 0.16);
}

.btn-g:hover,
.btn-g:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
}

.hd {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background-color 180ms ease, padding 200ms ease;
}

.hd.is-s {
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.94);
  padding: 16px 0;
}

.hd-in {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.hd-act {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.br-m {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
}

.br-m img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.br-t {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.br-t strong {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #888;
  font-weight: 200;
  font-family: Roboto, sans-serif;
}

.br-t span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-weight: 600;
  font-size: 0.98rem;
  color: #888;
}

.nav a,
.dl-links a,
.ft-col a,
.ft-col button {
  transition: opacity 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.dl-links a:hover,
.dl-links a:focus-visible,
.ft-col a:hover,
.ft-col a:focus-visible,
.ft-col button:hover,
.ft-col button:focus-visible {
  color: #41acef;
}

.nt {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}

.nt span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text-main);
  transition: transform 180ms ease, opacity 180ms ease;
}

.ib {
  --icon-size: 50px;
  width: var(--icon-size);
  height: var(--icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #888;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.ib i {
  font-size: 30px;
}

.ib:hover,
.ib:focus-visible {
  color: var(--accent-soft);
  background: rgba(136, 203, 245, 0.16);
  border-color: rgba(65, 172, 239, 0.4);
}

.ib-g {
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: calc(80svh - 84px);
  display: flex;
  align-items: center;
  padding: 72px 0 52px;
  isolation: isolate;
  color: #ffffff;
}

.hero-m,
.hero-o {
  position: absolute;
  inset: 0;
}

.hero-m {
  background-color: #1d2a33;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-o {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.48), rgba(17, 17, 17, 0.24)),
    radial-gradient(circle at top center, rgba(65, 172, 239, 0.14), transparent 44%);
}

.hero-in {
  position: relative;
  z-index: 1;
}

.hero-in-c {
  display: flex;
  justify-content: center;
}

.hero-t {
  max-width: 640px;
}

.hero-t-c {
  max-width: 860px;
  text-align: center;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.hero p {
  margin: 0 auto;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
}

.hero-a,
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-a {
  margin-top: 32px;
}

.hero-a .btn {
  min-width: 160px;
  padding-inline: 28px;
  min-height: 58px;
}

.hero-tags {
  margin-top: 30px;
}

.hero-a-c,
.hero-tags-c {
  justify-content: center;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.88rem;
}

.val-g,
.dl-g,
.rs-g,
.ft-g {
  display: grid;
  gap: 22px;
}

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

.val-c,
.dl-c,
.rs-c {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

button.rs-c {
  width: 100%;
  appearance: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.val-c {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.72)), rgba(136, 203, 245, 0.42);
}

.val-c:hover::before,
.dl-c:hover::before {
  width: 100%;
}

.ci,
.cap-n,
.why-l span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 34px;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(65, 172, 239, 0.08);
  border: 1px solid rgba(65, 172, 239, 0.18);
}

.why-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 20px;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}


.val-c h3,
.dl-c h3,
.rs-c strong,
.cap-r h3,
.ltc-col h3,
.why-l h3 {
  margin: 0 0 10px;
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cap-c h3 {
    font-size: clamp(1.24rem, 2.1vw, 1.92rem);
}

.val-c p,
.dl-c p,
.rs-c p,
.ft p,
.cap-c p,
.cap-r p,
.ltc-col p,
.why-l p,
.ltc-int p,
.ltc-intro p {
  margin: 0;
  color: inherit;
  opacity: 0.72;
}

.val-c {
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 34px;
  align-content: start;
}

.val-m {
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.val-m img,
.val-m svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.val-m-e {
  position: relative;
}

.val-i {
  --icon-size: clamp(82px, 22vw, 114px);
  position: relative;
  width: var(--icon-size);
  height: var(--icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(150deg, #f9fbff, #d9e9ff);
  overflow: hidden;
}

.val-i::after {
  content: "";
  position: absolute;
  inset: -24%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 30%, rgba(136, 203, 245, 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(65, 172, 239, 0.07), transparent 60%);
  z-index: 0;
}

.val-i-h::before {
  content: "";
  position: absolute;
  inset: -24%;
  border-radius: inherit;
  z-index: 0;
}

.val-i i {
  position: relative;
  z-index: 1;
  font-size: clamp(40px, 9vw, 58px);
  color: var(--accent);
  opacity: 0.8
}

.val-i-d {
  background: linear-gradient(150deg, #f7fbff, #d9ecff);
}

.val-i-p {
  background: linear-gradient(150deg, #f7fbff, #d9ecff);
}

.val-i-p i {
  color: var(--accent);
}

.val-i-c {
  background: linear-gradient(150deg, #f7fbff, #d9ecff);
}

.val-i-c i {
  color: var(--accent);
}

.val-b {
  margin-top: auto;
}

.val-b h3 {
  margin: 0 0 10px;
}

.val-b p {
  margin: 0;
}

@media (max-width: 780px) {
  .val-c {
    min-height: auto;
    padding: 22px;
    gap: 18px;
  }

  .val-m {
    min-height: 108px;
  }
}


.cap-g {
  --cap-row-height: 210px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(var(--cap-row-height), auto);
  isolation: isolate;
    background: linear-gradient(335deg, rgba(136, 203, 245, 0.1), transparent 48%);
  padding: 10px 10px;
}

.cap-c {
  position: relative;
  z-index: 2;
  min-height: var(--cap-row-height);
  padding: 26px 22px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  grid-column: span 1;
  transition: background-color 180ms ease, border-color 180ms ease;
  overflow: hidden;
}

.cap-v {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: calc((100% / 2) * 2);
  height: calc(var(--cap-row-height) * 2.5);
  min-height: 0;
  padding: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
  background: 
    url("../assets/images/litecoin.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 50%;
  opacity: 0.19;
  overflow: hidden;
}

.cap-c:nth-child(6) {
  grid-column: 1 / span 1;
}

.cap-c::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(136, 203, 245, 0.1), transparent 48%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}


.cap-c:hover::after,
.cap-c:focus-within::after {
  transform: scaleX(1);
  background: rgba(136, 203, 245, 0.7);
}

.cap-n {
  margin-top: 2px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--accent-soft);
}

.cap-t {
  max-width: 420px;
}

.cap-c h3,
.cap-c p {
  position: relative;
  z-index: 1;
  max-width: none;
}

.cap-c h3 {
  margin: 0 0 10px;
  color: var(--accent-soft);
}

.cap-c p {
  max-width: 320px;
}

@media (max-width: 1140px) {
  .cap-g {
    --cap-row-height: 220px;
  }

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

  .cap-c {
    grid-column: span 1;
    min-height: var(--cap-row-height);
  }
}

@media (max-width: 780px) {
  .cap-g {
    --cap-row-height: auto;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .cap-c {
    grid-column: span 1;
    min-height: auto;
    padding: 22px 0 24px;
    border-right: 0;
    background: transparent;
  }

  .cap-c::before {
    display: none;
  }

  .cap-c::after {
    left: 0;
    right: 0;
    bottom: 0;
    transform: scaleX(0.22);
  }

  .cap-v {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    grid-column: 1;
    grid-row: auto;
    min-height: 220px;
    pointer-events: auto;
    border-right: 0;
  }

  .cap-t,
  .cap-c p {
    max-width: none;
  }
}


.tools-l {
  margin: 0;
  color: #888;
  font-size: 0.84rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ltc-st {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.ltc-top {
  display: grid;
  padding: 16px 20px;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  background: linear-gradient(180deg, rgba(65, 172, 239, 0.04), rgba(65, 172, 239, 0) 48%);
  border-bottom: 1px solid var(--border-light);
}

.ltc-int {
  padding: 34px 34px 34px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ltc-k {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ltc-int p {
  margin: 0;
  max-width: 42ch;
  color: inherit;
  opacity: 0.72;
  font-size: 1.05rem;
}

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

.ltc-m {
  min-height: 190px;
  padding: 30px 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.ltc-m:last-child {
  border-right: 0;
}

.ltc-m-v {
  display: block;
  font-size: clamp(2.3rem, 4vw, 3.85rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 700;
  color: var(--accent);
}

.ltc-m-l {
  display: block;
  max-width: 14ch;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.ltc-cols {
  width: 100%;
  max-width: 850px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

.ltc-cols::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/logo-circles.webp") center/contain no-repeat;
  opacity: 0.14;
  transform: scale(1.03);
  pointer-events: none;
  filter: saturate(0.8);
}

.ltc-col {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(270px, 380px) minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  padding: 70px 0;
}

.ltc-col:last-child {
  border-bottom: 0;
}

.ltc-col-t {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.ltc-col-i {
  flex: 0 0 50px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ltc-col-i i {
  font-size: 40px;
  color: var(--accent);
}

.ltc-col-i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ltc-col h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.25em);
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: left;
}

.ltc-col p {
  margin: 0;
  max-width: 45ch;
  color: inherit;
  opacity: 0.78;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.45;
}

.use-g {
  display: grid;
  border-top: 1px solid var(--border-light);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-p {
  position: relative;
  min-height: 280px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border-right: 1px solid var(--border-light);
  transition: background-color 180ms ease;
}

.use-p:last-child {
  border-right: 0;
}

.use-p::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(65, 172, 239, 0.34);
  border-right: 1px solid rgba(65, 172, 239, 0.34);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 180ms ease, transform 180ms ease;
}


.use-i {
  display: inline-block;
  color: rgba(65, 172, 239, 0.96);
  font-size: 0.80rem;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.use-i::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin-top: 12px;
  background: currentColor;
  transform-origin: left center;
  transition: width 220ms ease, transform 220ms ease;
}


.use-m h3 {
  margin: 0 0 22px;
  max-width: 5ch;
  font-size: clamp(1.2rem, 2.5vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.use-m p {
  margin: 0;
  max-width: 30ch;
  color: inherit;
  opacity: 0.72;
  font-size: clamp(0.9rem, 1.1vw, 1.03rem);
}

@media (max-width: 1140px) {
  .ltc-top {
    grid-template-columns: 1fr;
  }

  .ltc-int {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .ltc-ms {
    border-left: 0;
  }

  .ltc-cols {
    max-width: 800px;
  }

  .ltc-col {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 24px;
  }

  .ltc-col p {
    max-width: none;
  }

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

  .use-p:nth-child(2n) {
    border-right: 0;
  }

  .use-p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-light);
  }
}

@media (max-width: 780px) {
  .ltc-ms,
  .use-g {
    grid-template-columns: 1fr;
  }

  .ltc-m {
    min-height: auto;
    padding: 22px 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
    background: transparent;
  }

  .ltc-m:last-child {
    border-bottom: 0;
  }

  .ltc-m-v {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .ltc-m-l {
    max-width: none;
  }

  .ltc-cols {
    max-width: none;
  }

  .ltc-col {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0 24px;
  }

  .ltc-col-t {
    gap: 14px;
  }

  .ltc-col-i {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .ltc-col-i i {
    font-size: 26px;
  }

  .ltc-col h3 {
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  .ltc-col p,
  .use-m h3,
  .use-m p,
  .ltc-int p {
    max-width: none;
  }

  .ltc-col p {
    font-size: 1rem;
  }

  .use-p {
    min-height: auto;
    padding: 22px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
    background: transparent;
  }

  .use-p:last-child {
    border-bottom: 0;
  }

  .use-p::after {
    left: 0;
    right: 0;
    bottom: 0;
    transform: scaleX(0.22);
  }

  .use-p::before {
    right: 0;
  }
}



.ltc-col-t {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ltc-col-h {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ltc-col-k {
  display: inline-block;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
}

.ltc-col-i {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

}

.ltc-col-i i {
  font-size: 24px;
  color: var(--accent);
}



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

.dl-c {
  isolation: isolate;
}

.dl-c::before,
.dl-c::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.dl-c::before {
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-108%);
  transition: transform 240ms ease;
}

.dl-c::after {
  inset: auto 12px 12px auto;
  width: 12px;
  height: 12px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.34;
  transition: transform 200ms ease, opacity 200ms ease;
}

.dl-c:hover::before,
.dl-c:focus-visible::before,
.dl-c:focus-within::before {
  transform: translateX(0);
}

.dl-c:hover::after,
.dl-c:focus-visible::after,
.dl-c:focus-within::after {
  transform: translate(3px, 3px);
  opacity: 0.72;
}

.dl-c:not(.dl-c-t) {
  background: #ffffff;
  border: 1px solid var(--border-light);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.dl-c:not(.dl-c-t):hover,
.dl-c:not(.dl-c-t):focus-within {
  background: #a1d8f9;
  border-color: #a1d8f9;
}

.dl-c-t {
  position: relative;
  min-height: 112px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft);
  color: #ffffff;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.dl-c-t:hover,
.dl-c-t:focus-visible,
.dl-c-t:focus-within {
  background: #a1d8f9;
  border-color: #a1d8f9;
}


.dl-i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: 46px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
}

.dl-t {
  min-width: 0;
}

.dl-t small {
  display: inline-block;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dl-t h3 {
  margin: 0 0 2px;
  font-size: 1.45rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #ffffff;
}

.dl-t p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  line-height: 1.3;
}

.dl-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  margin-top: 28px;
}

.dl-links a,
.dl-links button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-style: italic;
  color: rgba(65, 172, 239, 0.92);
  text-decoration: none;
}

.dl-links a:hover,
.dl-links a:focus-visible,
.dl-links button:hover,
.dl-links button:focus-visible {
  text-decoration: underline;
  text-decoration-color: currentColor;
}

@media (max-width: 1140px) {
  .dl-g {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 780px) {
  .dl-c-t {
    min-height: auto;
    padding: 20px 20px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
  }

  .dl-i {
    width: 52px;
    height: 52px;
    font-size: 34px;
  }

  .dl-t h3 {
    font-size: 1.26rem;
  }

  .dl-t p {
    font-size: 0.92rem;
  }
}


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

.rs-c {
  min-height: 220px;
  padding: 26px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: space-between;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border-dark);
  transition: border-color 180ms ease, background 180ms ease;
}

.rs-c::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(136, 203, 245, 0.38);
  border-right: 1px solid rgba(136, 203, 245, 0.38);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
  pointer-events: none;
}

.rs-c:hover,
.rs-c:focus-visible {
  background:
    linear-gradient(180deg, rgba(136, 203, 245, 0.06), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.26);
}

.rs-c:hover::before,
.rs-c:focus-visible::before {
  opacity: 1;
  transform: translate(0, 0);
  border-color: rgba(136, 203, 245, 0.78);
}

.rs-c:hover::after,
.rs-c:focus-visible::after {
  transform: scaleX(1);
  background: rgba(136, 203, 245, 0.78);
}

.rs-c strong {
  display: block;
  font-size: 1.34rem;
}

.rs-i {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-top: 4px;
  border-radius: 50%;
  background: rgba(136, 203, 245, 0.10);
  color: var(--accent-soft);
  font-size: 2rem;
}

.rs-c:hover .rs-i,
.rs-c:focus-visible .rs-i {
  background: rgba(136, 203, 245, 0.18);
  border-color: rgba(136, 203, 245, 0.5);
  color: var(--bg-light);
}

.rs-t {
  display: grid;
  gap: 10px;
  width: 100%;
}

.rs-c-a {
  background: linear-gradient(180deg, rgba(136, 203, 245, 0.16), rgba(255, 255, 255, 0.02));
}

.rs-c-a:hover,
.rs-c-a:focus-visible {
  background: linear-gradient(180deg, rgba(136, 203, 245, 0.22), rgba(255, 255, 255, 0.06));
}

.dc-hero {
  padding-top: 110px;
}

.dc-hero-g {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: end;
  gap: 48px;
}

.dc-hero-t h1 {
  margin: 14px 0 18px;
  max-width: 820px;
  font-size: clamp(3rem, 5.6vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.dc-hero-t p {
  margin: 0;
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.dc-qn {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dc-qn a,
.dc-qn button {
  min-height: 76px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  cursor: pointer;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.dc-qn a:hover,
.dc-qn a:focus-visible,
.dc-qn button:hover,
.dc-qn button:focus-visible {
  background: rgba(136, 203, 245, 0.18);
  border-color: rgba(65, 172, 239, 0.34);
}

.dc-qn i {
  color: var(--accent);
  font-size: 1.3rem;
}

.dc-sec {
  scroll-margin-top: 96px;
}

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

.dc-b {
  min-height: 210px;
  padding: 26px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  background: #ffffff;
  border: 1px solid var(--border-light);
}

.dc-b > i {
  color: var(--accent);
  font-size: 2.25rem;
}

.dc-b h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.dc-b p {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.dc-b span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #246b96;
  background: rgba(136, 203, 245, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dc-2 {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 54px;
  align-items: start;
}

.dc-p,
.dc-n article {
  background: #ffffff;
  border: 1px solid var(--border-light);
}

.dc-p-d {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-dark);
}

.dc-r {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-light);
}

.dc-p-d .dc-r {
  border-bottom-color: var(--border-dark);
}

.dc-r:last-child {
  border-bottom: 0;
}

.dc-r span {
  color: var(--text-muted);
  font-weight: 700;
}

.dc-p-d .dc-r span {
  color: var(--text-light);
}

.dc-r code,
.dc-r a,
.dc-r button {
  overflow-wrap: anywhere;
  color: var(--text-main);
  font-weight: 700;
}

.dc-p-d .dc-r code,
.dc-p-d .dc-r a,
.dc-p-d .dc-r button {
  color: #ffffff;
}

.dc-r button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: rgba(136, 203, 245, 0.65);
}

.dc-r button:hover,
.dc-r button:focus-visible {
  color: var(--accent-soft);
}

.dc-n article {
  padding: 28px;
}

.dc-n span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-weight: 800;
}

.dc-n h3 {
  margin: 0 0 16px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.dc-n ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.dc-n li + li {
  margin-top: 8px;
}

.md {
  width: min(calc(100% - 32px), 460px);
  padding: 0;
  border: 0;
  color: var(--text-main);
  background: transparent;
}

.md::backdrop {
  background: rgba(17, 17, 17, 0.66);
  backdrop-filter: blur(6px);
}

.md-s {
  position: relative;
  max-height: min(78vh, 560px);
  overflow: auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.md-s h2 {
  margin: 8px 38px 10px 0;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.md-s p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.md-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  background: var(--bg-soft);
  color: var(--text-main);
  cursor: pointer;
}

.md-x:hover,
.md-x:focus-visible {
  border-color: rgba(65, 172, 239, 0.38);
  color: var(--accent);
}

.md-d,
.md-c {
  display: grid;
  gap: 8px;
}

.md-d {
  margin-bottom: 12px;
}

.md-d div,
.md-c {
  padding: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
}

.md-d span,
.md-c span {
  display: block;
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.md-d code,
.md-c code {
  display: block;
  overflow-wrap: anywhere;
  color: var(--text-main);
  font-size: 0.86rem;
  line-height: 1.4;
}

.md-c code + code {
  margin-top: 8px;
}

.md-n {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

body.md-open {
  overflow: hidden;
}

.ft {
  background: var(--bg-dark-deep);
  color: #ffffff;
}

.ft-g {
  grid-template-columns: 1.35fr 0.7fr 0.7fr 0.7fr;
  padding: 80px 0 64px;
}

.ft-br {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.ft-br-l {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.ft-br-m {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
}

.ft-br-m img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ft-br-n {
  display: block;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 700;
}

@media (max-width: 560px) {
  .ft-br-m {
    width: 92px;
    height: 92px;
  }

  .ft-br-l {
    gap: 18px;
  }

  .ft-br-n {
    font-size: clamp(1.6rem, 9vw, 2.1rem);
  }
}
.br-f .br-t span,
.ft p,
.ft-col a,
.ft-col button,
.ft-btm {
  color: #888;
}

.ft-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ft-col h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.ft-col button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.ft-col a:hover,
.ft-col a:focus-visible,
.ft-col button:hover,
.ft-col button:focus-visible {
  color: #41acef;
}

.ft-btm {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  color: var(--text-main);
}

.ft-btm-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 30px 0px;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

code {
  font-family: inherit;
  color: #ffffff;
}

@media (max-width: 1140px) {
  .hd-in {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.98);
  }

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

  .nt {
    display: inline-block;
    order: 3;
  }

  .hd-cta {
    display: none;
  }

  .ft-g {
    grid-template-columns: 1fr;
  }

  .rs-g,
  .dl-g,
  .val-g,
  .dc-bg {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dc-hero-g,
  .dc-2 {
    grid-template-columns: 1fr;
  }

  .ltc-st {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ltc-cols {
    border-left: 0;
    border-top: 1px solid var(--border-light);
  }

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

  .cap-c {
    grid-column: span 1;
    min-height: 220px;
  }

  .cap-c-w {
    grid-column: span 2;
  }
}

@media (max-width: 780px) {
  .sec-l,
  .sec-a,
  .sec-d {
    padding: 82px 0;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 40px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.6rem);
  }

  .val-c,
  .dl-c,
  .rs-c {
    padding: 22px;
  }

  .rs-g,
  .dl-g,
  .val-g,
  .dc-bg {
    grid-template-columns: 1fr;
  }

  .nav {
    left: 12px;
    right: 12px;
  }

  .rs-g,
  .dl-g,
  .val-g,
  .dc-bg {
    grid-template-columns: 1fr;
  }

  .dc-hero {
    padding-top: 82px;
  }

  .dc-qn {
    grid-template-columns: 1fr;
  }

  .dc-r {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cap-g,
  .ltc-cols {
    grid-template-columns: 1fr;
  }

  .cap-c,
  .cap-c-w {
    grid-column: span 1;
    min-height: auto;
    padding: 22px 0 24px;
    border-right: 0;
    background: transparent;
  }

  .cap-c::before {
    display: none;
  }

  .ltc-col {
    padding: 22px 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .ltc-col:last-child {
    border-bottom: 0;
  }

  .why-n {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .ft-btm-in {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 24px), var(--wrap));
  }

  .hd {
    padding: 14px 0;
  }
  .hd.is-s {
    padding: 10px 0;
  }

  .br-t span {
    display: none;
  }

  .hero-a,
  .hero-tags {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero-tags span {
    width: 100%;
  }
}
