:root {
  --bg-main:   
    radial-gradient(circle at 5% 0%, rgba(100, 162, 255, 0.12), transparent 55%),
    radial-gradient(circle at 95% 100%, rgba(60, 123, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #0b1523 0%, #070f19 100%);
  --bg-frame-dark: #0a121e;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.68);

  --accent1: #3c7bff;
  --accent2: #64a2ff;

  --frame-border: rgba(255, 255, 255, 0.07);
}

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

body.page {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Inter", system-ui, sans-serif;
}

.container {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 24px;
}


@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/inter-v20-latin-700.woff2') format('woff2');
}
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/inter-v20-latin-800.woff2') format('woff2');
}



.header {
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  transition:
    padding 0.25s ease,
    background 0.25s ease;
}

.header--compact {
  padding: 14px 0;
  background: rgba(7, 15, 25, 0.90);
}
.header {
  transition:
    padding 0.25s ease,
    background 0.25s ease;
}

.header--scrolled {
  background: rgba(7, 15, 25, 0.90);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.header-logo {
  height: 27px;
  opacity: 0.95;
}

.header-logo-text {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.92;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}


.header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 22px;
  font-size: 15px;
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}



.header__nav-link {
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 13.2px;
  padding: 4px 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s ease;
  text-align: left;
}

.header__nav-link:hover {
  color: #fff;
}


.header__nav-link::before,
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 110%;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%);
  transition: none;
}

.header__nav-link::before {
  bottom: -20px;
  height: 2px;
  background: rgba(255, 172, 96, 0.65);
  box-shadow: 0 0 10px rgba(255, 172, 96, 0.4);
}

.header__nav-link::after {
  bottom: -20px;
  height: 55px;
  background: linear-gradient(
    to top,
    rgba(255, 172, 96, 0.18) 0%,
    rgba(255, 172, 96, 0.08) 35%,
    rgba(255, 172, 96, 0.00) 100%
  );
}

.header__nav-link:hover::before,
.header__nav-link:hover::after {
  opacity: 1;
}


.header__nav-link--active {
  color: #ffffff;
}


.header-btn {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s ease;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
}


.explorer-btn {
  background: #152744;
}

.explorer-btn:hover {
  background: #1d355a;
  border-color: rgba(255,255,255,0.25);
}


.github-btn {
  background: transparent;
}

.github-btn:hover {
  background: rgba(255,255,255,0.06);
}

.github-icon {
  width: 16px;
  height: 16px;
  color: #ffffff;
  opacity: 0.85;
}


.header-logo,
.header__nav-link,
.header-actions {
  transition: transform 0.25s ease, font-size 0.25s ease, opacity 0.25s ease;
}

.header--compact .header-logo {
  transform: scale(0.97);
}

.header--compact .header__nav-link {
  font-size: 12.8px;
}

.header--compact .header-actions {
  transform: scale(0.94);
  opacity: 0.95;
}



.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}


.header__nav-item--has-dropdown {
  position: relative;
}

.header__nav-item--has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
}


.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  z-index: 25;
  display: none;
}

.header__nav-item--has-dropdown:hover .header__dropdown {
  display: block;
}

.header__dropdown:hover {
  display: block;
}


.header__dropdown-inner {
  border-radius: 0;
  background: #ffffff;
  color: #0b1523;
  padding: 14px 18px 14px;
  min-width: 420px;
  box-shadow:
    0 16px 46px rgba(9, 16, 26, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  text-align: left; 
}

.header__dropdown-inner--light {
  border-radius: 0;
  border: 1px solid rgba(11, 21, 35, 0.12);
  background: #ffffff;
  color: #0b1523;
  padding: 14px 18px 14px;
  text-align: left;
}


.header__dropdown-header {
  margin-bottom: 8px;
}

.header__dropdown-eyebrow {
  margin: 0 0 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8a94aa;
  text-align: left;
}

.header__dropdown-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #0b1523;
  text-align: left;
}

.header__dropdown-sub {
  margin: 3px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: #6b7590;
  text-align: left;
}


.header__dropdown * {
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease, opacity 0.12s ease;
}

.header__dropdown-grid {
  display: grid;
  gap: 12px;
  justify-items: start;
}


:root {
  --dropdown-offset: 8px;
}

.header__dropdown {
  position: absolute;
  top: calc(100% + var(--dropdown-offset));
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 25;
}


.header__dropdown-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}



@media (max-width: 900px) {
  .header__dropdown {
    left: 0;
    transform: none;
  }

  .header__dropdown-inner,
  .header__dropdown-inner--light {
    min-width: 320px;
  }

  .header__dropdown-grid--3 {
    grid-template-columns: 1fr;
  }
}


.header__dropdown--downloads {
  min-width: 0;
}

.header__dropdown--downloads .header__dropdown-inner,
.header__dropdown--downloads .header__dropdown-inner--light {
  min-width: 0;
  width: max-content;
}


.header__dropdown--downloads .header__dropdown-header {
  margin-bottom: 6px;
  padding-bottom: 6px;
  position: relative;
}

.header__dropdown--downloads .header__dropdown-header::after {
  content: "";
  display: block;
  margin-top: 6px;
  width: 90px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(11, 21, 35, 0.22),
    rgba(11, 21, 35, 0.0)
  );
}


.header__dropdown--downloads .header__dropdown-grid--3 {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}


.header__dropdown--downloads .dl-card {
  text-decoration: none;
  border-radius: 0;
  padding: 10px 9px 12px;
  background: #f7f8fc;
  gap: 2px;
  border: 1px solid rgba(11, 21, 35, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  box-sizing: border-box;

  width: 190px;
}
.header__dropdown--downloads .dl-card__icon {
  width: 37px;
  height: 37px;
}
.header__dropdown--downloads .dl-card__icon-svg {
  width: 100%;
  height: 100%;
}



.header__dropdown--downloads .dl-card:hover {
  border-color: rgba(60, 123, 255, 0.55);
  background: #eef3ff;
}


.header__dropdown--downloads .dl-card__actions {
  margin-top: auto;
}


.header__dropdown--downloads .dl-card__os-name {
  font-size: 13px;
  font-weight: 600;
}

.header__dropdown--downloads .dl-card__os-meta {
  font-size: 11.5px;
  color: #707b92;
}


.header__dropdown--downloads .dl-card__btn {
  width: 100%;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
}


@media (max-width: 900px) {
  .header__dropdown--downloads .header__dropdown-inner,
  .header__dropdown--downloads .header__dropdown-inner--light {
    width: 100%;
  }

  .header__dropdown--downloads .header__dropdown-grid--3 {
    grid-template-columns: 1fr;
  }

  .header__dropdown--downloads .dl-card {
    width: 100%;
  }
}




.header__dropdown--news {
  min-width: 480px;
}


.header__dropdown--news .header__dropdown-header {
  margin-bottom: 6px;
  padding-bottom: 6px;
  position: relative;
}

.header__dropdown--news .header__dropdown-header::after {
  content: "";
  display: block;
  margin-top: 6px;
  width: 90px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(11, 21, 35, 0.22),
    rgba(11, 21, 35, 0.0)
  );
}


.header__dropdown-news-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 4px 0 4px;
}


.header-news {
  width: 100%;
  margin: 0 -8px;
  padding: 6px 12px 6px 14px; 
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  border-radius: 0;
  border: none;
  background: transparent;
  text-align: left;
  box-sizing: border-box;
}

.header-news__title {
  font-size: 12.5px;
  font-weight: 600;
  color: #0b1523;
  line-height: 1.4;
  text-align: left;
}

.header-news__excerpt {
  font-size: 11px;
  line-height: 1.4;
  color: #607096;
  text-align: left;
}


.header-news:hover {
  background: rgba(11, 21, 35, 0.04);
}

.header-news:hover .header-news__title {
  color: var(--accent1);
}


.header__dropdown-footer {
  margin-top: 6px;
  text-align: center;
}

.header__dropdown-see-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  border-radius: 0;
  border: 1px solid rgba(11,21,35,0.18);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #ffffff;
}

.header__dropdown-see-all:hover {
  border-color: rgba(11,21,35,0.32);
}




.header__dropdown--docs {
  min-width: 420px;
}


.header__dropdown--docs .header__dropdown-header {
  margin-bottom: 6px;
  padding-bottom: 6px;
  position: relative;
}

.header__dropdown--docs .header__dropdown-header::after {
  content: "";
  display: block;
  margin-top: 6px;
  width: 90px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(11, 21, 35, 0.22),
    rgba(11, 21, 35, 0.0)
  );
}


.header__dropdown-grid--docs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 6px;
}


.doc-link {
  width: 100%;
  margin: 0 -8px;
  padding: 6px 12px 6px 14px; 
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  border-radius: 0;
  border: none;
  background: transparent;
  text-align: left;
  box-sizing: border-box;
}

.doc-link__eyebrow {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a94aa;
  text-align: left;
}

.doc-link__title {
  font-size: 12.5px;
  font-weight: 600;
  color: #0b1523;
  text-align: left;
}

.doc-link__text {
  font-size: 11px;
  line-height: 1.4;
  color: #5b6784;
  text-align: left;
}


.doc-link:hover {
  background: rgba(11, 21, 35, 0.04);
}

.doc-link:hover .doc-link__title {
  color: var(--accent1);
}


.header-burger {
  display: none;
  position: relative;
  z-index: 3;
  width: 34px;
  height: 30px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.header-burger__icon {
  width: 34px;
  height: 34px;
  color: #ffffff;
  opacity: 0.92;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header-burger__icon path {
  transition:
    stroke-width 0.25s ease,
    opacity 0.25s ease;
}

.header--mobile-open .header-burger__icon path {
  stroke-width: 1.9;
  opacity: 1;
}

.header-burger span {
  display: none;
}


.header-burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.header--mobile-open .header-burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header--mobile-open .header-burger span:nth-child(2) {
  opacity: 0;
}

.header--mobile-open .header-burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: rgba(7,15,25,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.header-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0 14px;
}

.header-mobile-link {
  display: block;
  padding: 7px 2px;
  font-size: 14px;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  text-align: left;
}

.header-mobile-link:hover {
  color: #ffffff;
}

.header-mobile-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.header-mobile-section-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}

.header-mobile-section--cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-mobile-cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.2);
  color: #0b1523;
  background: #ffffff;
}

.header-mobile-cta--ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
}

.header-mobile-cta:hover {
  border-color: rgba(255,255,255,0.4);
}


@media (max-width: 1000px) {
  .header__nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .header-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-mobile-menu {
    display: none;
  }

  .header--mobile-open .header-mobile-menu {
    display: block;
  }

  .header {
    position: sticky;
    top: 0;
  }
}

.header__nav-item--has-dropdown:hover > .header__nav-link {
  color: #fff;
}

.header__nav-item--has-dropdown:hover > .header__nav-link::before,
.header__nav-item--has-dropdown:hover > .header__nav-link::after {
  opacity: 1;
}



.header__dropdown-inner,
.header__dropdown-inner--light {
  background:
    radial-gradient(circle at 0% 0%, rgba(60,123,255,0.12), transparent 60%),
    rgba(10, 18, 30, 0.94); 
  color: var(--text-main);
  border: none;        
  box-shadow:
    0 18px 46px rgba(0,0,0,0.55);
}

.header__dropdown-title {
  color: #fff;
}

.header__dropdown-eyebrow {
  color: rgba(255,255,255,0.50);
}

.header__dropdown-sub {
  color: var(--text-muted);
}

.header-news__title {
  color: #fff;
}

.header-news__excerpt {
  color: rgba(255,255,255,0.65);
}

.header-news:hover {
  background: rgba(255,255,255,0.06);
}

.doc-link__eyebrow {
  color: rgba(255,255,255,0.45);
}

.doc-link__title {
  color: #fff;
}

.doc-link__text {
  color: rgba(255,255,255,0.65);
}

.doc-link:hover {
  background: rgba(255,255,255,0.06);
}



.header__dropdown--downloads .dl-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(60,123,255,0.12), transparent 65%),
    #0c1524;
  border: none;
  color: #fff;
}

.header__dropdown--downloads .dl-card__os-name {
  color: #fff;
}

.header__dropdown--downloads .dl-card__os-meta {
  color: rgba(255,255,255,0.62);
}

.header__dropdown--downloads .dl-card:hover {
  background:
    radial-gradient(circle at 0% 0%, rgba(80,150,255,0.22), transparent 65%),
    #112033;
}






.hero {
  padding:10px 0 70px;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  border-radius: 0px;
  border: 1px solid var(--frame-border);

  background:
    radial-gradient(circle at 20% 10%, rgba(80, 150, 255, 0.15), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(40, 120, 255, 0.12), transparent 60%),
    url("public/hero.svg") center bottom / 103% no-repeat,
    linear-gradient(180deg, #0c1524 0%, #09101a 100%);


}

.hero-waves {
  position: absolute;
  left: 50%;
  bottom: -520px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 40px 130px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-logo {
  width: 42px;
  height: 42px;
  opacity: 0.96;
}

.hero-brand__name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.hero-title {
  margin: 25px 0 24px;
  font-size: 49px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.hero-subtitle {
  margin: 0 auto 36px;
  max-width: 670px;

  font-size: 21px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.btn-primary {
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border: none;
  text-decoration: none;
  color: #fff;

  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
  filter: brightness(0.92);
}


@media (max-width: 768px) {
  .hero-content {
    padding: 80px 20px 90px;
  }

  .hero-title {
    font-size: 34px;
  }

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

  .hero-logo {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 60px 24px 70px;
  }
}
.hero-frame {
  background:
    radial-gradient(circle at 20% 10%, rgba(80, 150, 255, 0.15), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(40, 120, 255, 0.12), transparent 60%),
    url("public/hero.svg") center bottom / cover no-repeat,
    linear-gradient(180deg, #0c1524 0%, #09101a 100%);
}

@media (max-width: 768px) {
  .hero-frame {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw; 
    border-radius: 0 !important;
  }
}




.os-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.os-modal.is-open {
  display: block;
}

.os-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 22, 0.60);
  backdrop-filter: blur(7px);
}

.os-modal__dialog {
  position: relative;
  max-width: 480px;
  width: calc(100% - 32px);
  margin: 80px auto;
  padding: 20px 18px 18px;

  border-radius: 2px;
  border: 1px solid var(--frame-border);
  background:
    radial-gradient(circle at 0% 0%, rgba(60, 123, 255, 0.18), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(90, 255, 210, 0.09), transparent 60%),
    #070f19;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.05);

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

.os-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.os-modal__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.os-modal__close {
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 2px;
}

.os-modal__close:hover {
  color: #ffffff;
}

.os-modal__body {
  font-size: 13.7px;
  color: var(--text-muted);
}

.os-modal__pill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.os-modal__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border-radius: 3px;
  border: 1px solid rgba(97, 210, 255, 0.4);
  background:
    radial-gradient(circle at 0% 0%, rgba(97, 210, 255, 0.25), transparent 60%),
    rgba(7, 15, 25, 0.95);
}

.os-modal__pill-eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}

.os-modal__pill-os {
  font-size: 13px;
  font-weight: 700;
}

.os-modal__pill-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
    padding: 6px 11px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 21, 35, 0.92);
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.os-modal__file-block {
  margin: 4px 0 8px;
  padding: 9px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at 0% 0%, rgba(60,123,255,0.18), transparent 60%),
              rgba(5, 11, 17, 0.96);
}

.os-modal__file-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  font-size: 13.3px;
}

.os-modal__file-row + .os-modal__file-row {
  margin-top: 4px;
}

.os-modal__file-label {
  color: rgba(255, 255, 255, 0.6);
}

.os-modal__file-value {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13.2px;
  color: rgba(255, 255, 255, 0.92);
  text-align: right;
  word-break: break-all;
}

.os-modal__hint {
  margin: 8px 0 10px;
  font-size: 13.2px;
  color: rgba(255, 255, 255, 0.65);
}

.os-modal__docs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13.2px;
}

.os-modal__docs-label {
  color: rgba(255, 255, 255, 0.65);
}

.os-modal__docs-link {
  color: var(--accent2);
  text-decoration: none;
  border-bottom: 1px solid rgba(100, 162, 255, 0.5);
  padding-bottom: 1px;
}

.os-modal__docs-link:hover {
  border-bottom-color: rgba(100, 162, 255, 1);
}

.os-modal__docs-sep {
  opacity: 0.5;
}

.os-modal__footer {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.os-modal__btn {
  padding: 9px 16px;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.os-modal__btn--primary {
  border: none;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(11, 21, 35, 0.4);
}

.os-modal__btn--primary:hover {
  filter: brightness(0.94);
}

.os-modal__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.26);
}

.os-modal__btn--ghost:hover {
  background: rgba(11, 21, 35, 0.7);
}

@media (max-width: 640px) {
  .os-modal__dialog {
    margin: 50px auto;
    padding: 14px 14px 12px;
  }

  .os-modal__footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .os-modal__btn {
    width: 100%;
  }

  .os-modal__pill-row {
    flex-direction: column;
    align-items: flex-start;
  }
}




.crypto-ticker {
  padding: 0;
  position: relative;
}


.crypto-ticker__header {
  margin-bottom: 24px;
}

.crypto-ticker__title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 14px;
}

.crypto-ticker__subtitle {
  font-size: 21px;
  margin: 0;
  color: rgba(255,255,255,0.72);
}

.crypto-ticker__outer {
  width: 100%;
  max-width: 1222px;
  margin: 0 auto 15px;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
}

.crypto-ticker__fade {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}


/*
.crypto-ticker__fade--left {
  left: 0;
  background:
    radial-gradient(circle at 0% 50%, rgba(78,133,255,0.18), transparent 70%),
    linear-gradient(90deg,
      rgba(7, 15, 25, 1) 0%,
      rgba(7, 15, 25, 0.0) 100%
    );
}

.crypto-ticker__fade--right {
  right: 0;
  background:
    radial-gradient(circle at 100% 50%, rgba(78,133,255,0.18), transparent 70%),
    linear-gradient(270deg,
      rgba(7, 15, 25, 1) 0%,
      rgba(7, 15, 25, 0.0) 100%
    );
}
*/
/*
.crypto-ticker__fade--left {
  left: 0;
  background: linear-gradient(90deg, #17375e 0%, rgba(7,15,25,0) 100%);
}

.crypto-ticker__fade--right {
  right: 0;
  background: linear-gradient(270deg, #17375e  0%, rgba(7,15,25,0) 100%);
}
*/


/* 
.crypto-ticker__fade--left {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 14, 25, 1) 0%,
    rgba(7, 14, 25, 0.94) 18%,
    rgba(7, 14, 25, 0.78) 40%,
    rgba(7, 14, 25, 0.55) 60%,
    rgba(7, 14, 25, 0.28) 80%,
    rgba(7, 14, 25, 0.0) 100%
  );
}

.crypto-ticker__fade--right {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(7, 14, 25, 1) 0%,
    rgba(7, 14, 25, 0.94) 18%,
    rgba(7, 14, 25, 0.78) 40%,
    rgba(7, 14, 25, 0.55) 60%,
    rgba(7, 14, 25, 0.28) 80%,
    rgba(7, 14, 25, 0.0) 100%
  );
}

*/

.token-row {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
}

.token-row img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.token-row img:hover {
  opacity: 1;
}

@media(max-width: 900px) {
  .crypto-ticker__title { font-size: 38px; }
  .crypto-ticker__subtitle { font-size: 17px; }
  .token-row img { width: 60px; height: 60px; }
  .crypto-ticker__fade { width: 120px; }
}

@media(max-width: 520px) {
  .crypto-ticker__title { font-size: 28px; }
  .crypto-ticker__subtitle { font-size: 15px; }
  .token-row img { width: 48px; height: 48px; }
  .crypto-ticker__fade { width: 80px; }
}


.crypto-ticker__outer {
  position: relative;
}

.crypto-ticker__outer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  margin-top: 15px;
  width: min(82%, 1000px);
  height: 240px;

  background:
    radial-gradient(ellipse at center,
      rgba(60, 123, 255, 0.42) 0%,
      rgba(60, 123, 255, 0.24) 26%,
      rgba(10, 21, 35, 0.0) 70%
    );
  filter: blur(10px);
  opacity: 0.95;

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

.crypto-ticker__outer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  margin-top: 20px;
  width: 82%;
  height: 3px;

  background: linear-gradient(90deg,
    rgba(5, 11, 17, 0),
    rgba(90, 255, 210, 0.42),
    rgba(97, 210, 255, 0.85),
    rgba(154, 106, 255, 0.55),
    rgba(5, 11, 17, 0)
  );
  filter: blur(12px);
  opacity: 0.75;

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

.token-row {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .crypto-ticker__outer::before {
    width: 90%;
    height: 180px;
    opacity: 0.85;
    filter: blur(9px);
  }

  .crypto-ticker__outer::after {
    width: 96%;
    opacity: 0.75;
    filter: blur(7px);
  }
}

@media (max-width: 520px) {
  .crypto-ticker__outer::before {
    width: 100%;
    height: 150px;
    opacity: 0.8;
  }

  .crypto-ticker__outer::after {
    opacity: 0.65;
  }
}






.wallet-highlights {
  padding: 96px 0 92px;
}
.wallet-highlights__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}


.feature-card {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  gap: 56px;

  padding: 80px 80px;
  border-radius: 0;
  border: 1px solid var(--frame-border);
  background: #070f19;

  position: relative;
  overflow: hidden;

  transition:
    border-color 0.22s ease-out,
    box-shadow 0.22s ease-out,
    background 0.22s ease-out;
}


.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 0;

  background: linear-gradient(135deg, #4885FF, #61D2FF, #9A6AFF);
  opacity: 0;
  pointer-events: none;

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.feature-card:hover {
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 0.9;
}




.feature-card--half {
  grid-column: span 6;
  flex-direction: column;
  align-items: stretch;

  min-height: 520px;    
  padding-top: 90px;     
  padding-bottom: 90px;
}



.feature-card__image {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
}

.feature-card__image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__image-inner svg,
.feature-card__image-inner canvas {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  inset: 0;
  display: block;
}

.feature-card--primary {
  flex-direction: row;
  align-items: center;   
  min-height: 400px;
  padding-top: 70px;
}


.feature-card--tall {
  min-height: 400px;
  padding-top: 35px;
  padding-bottom: 35px;
}


.feature-card--primary .feature-card__image {
  width: 380px;
  height: 300px;
}

.feature-card--tall .feature-card__image {
  height: 400px;
}

.feature-card--half .feature-card__image {
  width: 100%;
  height: 335px;
}


.feature-card__image-inner {
  transform: scale(1.11);
  transform-origin: center;
}

.feature-card__image--defi .feature-card__image-inner {
  transform: scale(1.42);
}

.feature-card__image--security .feature-card__image-inner {
  transform: scale(1.11);
}
.feature-card__image--ux .feature-card__image-inner {
  transform: scale(1.15);
}




.feature-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 4px 0;
  max-width: 740px;
  text-align: left;
}

.feature-card--primary .feature-card__body {
  max-width: 500px;
}


.feature-card__title {
  margin: 0 0 24px;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 700;
}

.feature-card--primary .feature-card__title {
  font-size: 48px;
}


.feature-card__text {
  margin: 0;
  max-width: 660px;
  font-size: 15.7px;
  line-height: 1.5;
  color: var(--text-muted);
}


.feature-card--half .feature-card__body {
  height: 100%;
  justify-content: center;
}


@media (max-width: 1200px) {
  .feature-card {
    padding: 48px 40px;
    gap: 32px;
  }

  .feature-card__title {
    font-size: 32px;
  }

  .feature-card--primary .feature-card__title {
    font-size: 36px;
  }

  .feature-card__text {
    font-size: 16px;
    max-width: 620px;
  }

  .feature-card--primary .feature-card__image {
    width: 340px;
    height: 240px;
  }

  .feature-card--tall .feature-card__image {
    height: 260px;
  }
}

@media (max-width: 900px) {
  .wallet-highlights {
    padding: 64px 0 64px;
  }

  .wallet-highlights__grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--half {
    grid-column: 1 / -1;
  }

  .feature-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 24px;
    min-height: auto;
  }

  .feature-card--primary,
  .feature-card--tall {
    align-items: flex-start;
  }

  .feature-card__image,
  .feature-card--primary .feature-card__image,
  .feature-card--tall .feature-card__image,
  .feature-card--half .feature-card__image {
    width: 100%;
    max-width: 100%;
    height: 220px;
  }

  .feature-card__body {
    max-width: 100%;
    padding-top: 18px;
  }

  .feature-card--half .feature-card__body {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .feature-card {
    padding: 26px 18px;
  }

  .feature-card__title {
    font-size: 24px;
  }

  .feature-card--primary .feature-card__title {
    font-size: 26px;
  }

  .feature-card__text {
    font-size: 15.5px;
    line-height: 1.75;
  }
}
@media (max-width: 1200px) {
  .feature-card {
    padding: 56px 44px;
    gap: 40px;
  }

  .feature-card--half {
    min-height: 460px;
    padding-top: 88px;
    padding-bottom: 88px;
  }
}

@media (max-width: 900px) {
  .feature-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
    min-height: auto;
  }

  .feature-card--primary,
  .feature-card--tall {
    align-items: flex-start;
  }

  .feature-card--half {
    min-height: 380px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .feature-card__image,
  .feature-card--primary .feature-card__image,
  .feature-card--tall .feature-card__image,
  .feature-card--half .feature-card__image {
    width: 100%;
    max-width: 100%;
    height: 220px;
  }

  .feature-card__body {
    max-width: 100%;
    padding-top: 18px;
  }
}

@media (max-width: 640px) {
  .feature-card {
    padding: 26px 18px;
  }
}














.downloads {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
  padding: 72px 0 80px;       
}

.downloads__inner {
  border: 1px solid rgba(11, 21, 35, 0.08);
  background: #ffffff;
  border-radius: 1px;
  padding: 26px 26px 24px;
  box-shadow:
    0 18px 60px rgba(9, 16, 26, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.9);
}



.downloads__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}

.downloads__texts {
  max-width: 620px;
}

.downloads__eyebrow {
  margin: 0 0 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a94aa;
}

.downloads__title {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
  color: #0b1523;
}

.downloads__subtitle {
  margin: 0;
  font-size: 18.5px;
  line-height: 1.5;
  color: #657189;
}


.downloads__info {
  min-width: 230px;
  text-align: right;
}

.downloads__info-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 1px;
  border: 1px solid rgba(11, 21, 35, 0.08);
  background: linear-gradient(135deg, #f3f6ff 0%, #eef3ff 100%);
  margin-bottom: 6px;
}

.downloads__info-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4885ff, #61d2ff);
  box-shadow: 0 0 0 2px rgba(72, 133, 255, 0.25);
}

.downloads__info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #4a5875;
}

.downloads__info-main {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.downloads__info-version {
  font-size: 20px;
  font-weight: 600;
  color: #0b1523;
}

.downloads__info-build {
  font-size: 12px;
  color: #7a8499;
}

.downloads__info-date {
  margin-top: 10px;
  font-size: 14px;
  color: #7a8499;
}


.downloads__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}


.dl-card {
  border-radius: 1px;
  border: 1px solid rgba(11, 21, 35, 0.08);
  background: #f9fbff;
  padding: 22px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.dl-card__os {
  display: flex;
  align-items: center;
  gap: 12px;
}


.dl-card__icon {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  border: 1px solid rgba(11, 21, 35, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f2f6ff;
}


.dl-card--win .dl-card__icon {
  background:
    radial-gradient(circle at 30% 0%, rgba(72, 133, 255, 0.35), transparent 65%),
    radial-gradient(circle at 70% 100%, rgba(97, 210, 255, 0.22), transparent 60%),
    #f3f6ff;
}

.dl-card--mac .dl-card__icon {
  background:
    radial-gradient(circle at 30% 0%, rgba(97, 210, 255, 0.35), transparent 65%),
    radial-gradient(circle at 80% 100%, rgba(90, 255, 210, 0.22), transparent 60%),
    #f3f8ff;
}

.dl-card--linux .dl-card__icon {
  background:
    radial-gradient(circle at 30% 0%, rgba(90, 255, 210, 0.35), transparent 65%),
    radial-gradient(circle at 80% 100%, rgba(154, 106, 255, 0.22), transparent 60%),
    #f2f9ff;
}

.dl-card__icon-svg {
  width: 28px;
  height: 28px;
}


.dl-card__os-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dl-card__os-name {
  font-size: 17.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
  color: #0b1523;
}

.dl-card__os-meta {
  font-size: 13.5px;
  margin-bottom: 10px;
  color: #707b92;
}


.dl-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}




.downloads__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(11, 21, 35, 0.06);
  padding-top: 25px;
  margin-top: 8px;
}

.downloads__note {
  margin: 0;
  font-size: 13.3px;
  color: #747f95;
}

.downloads__footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}



.downloads__github-icon {
  width: 14px;
  height: 14px;
}


.downloads__link {
  font-size: 12px;
    padding: 8px 4px;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 21, 35, 0.24);
  padding-bottom: 1px;
  color: #364466;
    display: inline-flex;
  align-items: center;
}

.downloads__link:hover {
  border-color: rgba(11, 21, 35, 0.6);
}


@media (max-width: 960px) {
  .downloads {
    padding: 56px 0 64px;
  }

  .downloads__inner {
    padding: 22px 18px 20px;
  }

  .downloads__header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .downloads__info {
    text-align: left;
  }

  .downloads__info-main {
    align-items: flex-start;
  }

  .downloads__title {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .downloads__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .dl-card {
    padding: 12px 12px 10px;
  }

  .dl-card__icon {
    width: 40px;
    height: 40px;
  }
}

.downloads__title {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.20;
  font-weight: 700;
  color: #0b1523;
  position: relative;
}

.downloads__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 82px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  opacity: 0.95;
}


.dl-card__btn {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 14px;
  border-radius: 1px;
  margin-top: 10px;
   border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;

  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #ffffff;

  transition: transform 0.18s ease, filter 0.18s ease;
}

.dl-card__btn--primary {
}

.dl-card__btn--primary:hover {
  filter: brightness(0.92);
}


.dl-card__more {
  border-radius: 1px;
  border: 1px solid rgba(11, 21, 35, 0.22);
  background: transparent;
  padding: 9px 11px;
  cursor: pointer;
   margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #1f2942;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    opacity 0.16s ease;
}

.dl-card__more span {
  border-bottom: 1px dashed rgba(31, 41, 66, 0.4);
}

.dl-card__more:hover {
  background: rgba(232, 237, 248, 0.8);
  border-color: rgba(11, 21, 35, 0.35);
  opacity: 0.96;
}


.downloads__github-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 1px;
  border: none;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;

  transition:
    filter 0.16s ease,
    opacity 0.16s ease;
}

.downloads__github-btn:hover {
  filter: brightness(0.94);
  opacity: 0.98;
}


.checksums {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.checksums.is-open {
  display: block;
}

.checksums__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 22, 0.55);
}

.checksums__dialog {
  position: relative;
  max-width: 520px;
  width: calc(100% - 32px);
  margin: 60px auto;
  background: #ffffff;
  border-radius: 6px;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.7);
  padding: 18px 18px 16px;
}

.checksums__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.checksums__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #0b1523;
}

.checksums__close {
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #6b7388;
}

.checksums__body {
  font-size: 13px;
  color: #333c55;
}

.checksums__os {
  display: none;
}

.checksums__os.is-active {
  display: block;
}

.checksums__os-title {
  margin: 0 0 6px;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #4a5875;
}

.checksums__text {
  margin: 0 0 6px;
}

.checksums__code {
  margin: 0 0 8px;
  padding: 7px 9px;
  border-radius: 4px;
  background: #f4f6fb;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  overflow-x: auto;
}

.checksums__code code {
  background: transparent;
  padding: 0;
}

@media (max-width: 640px) {
  .checksums__dialog {
    margin: 40px auto;
    padding: 14px 14px 12px;
  }
}







.dev-start {
  /* background: #05060A; */
  padding: 76px 0 110px;
}

.dev-start__header {
  max-width: 780px;
  margin: 0 auto 56px auto;
  text-align: left;
}

.dev-start__title {
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  color: #E8F1FF;
  margin-bottom: 10px;
}

.dev-start__subtitle {
  font-size: 20px;
  line-height: 1.8;
  color: #A9B6CC;
}

@media (max-width: 640px) {
  .dev-start__header {
    flex-direction: column;
    align-items: flex-start;
  }
}


.dev-start__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: stretch;
}


.dev-card {
  background: #070f19; 
  border-radius: 2px;
  padding: 1px;
  transition: background 0.22s ease-out;
  height: 100%;
}

.dev-card__inner {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  overflow: hidden;
  min-height: 280px;
  background: #070f19;    
  height: 100%;  
}

/* 

.dev-card:hover {
  background: linear-gradient(135deg, #4885FF, #61D2FF, #9A6AFF);
}

 */

/* BASE */
.dev-card__icon-wrap {
  min-height: 280px;
  margin: 10px 10px 0 10px;
  padding: 32px 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 0% 0%, rgba(60,123,255,0.09), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='96' viewBox='0 0 60 96'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2314191f' fill-opacity='0.25'%3E%3Cpath d='M36 10a6 6 0 0 1 12 0v12a6 6 0 0 1-6 6 6 6 0 0 0-6 6 6 6 0 0 1-12 0 6 6 0 0 0-6-6 6 6 0 0 1-6-6V10a6 6 0 1 1 12 0 6 6 0 0 0 12 0zm24 78a6 6 0 0 1-6-6 6 6 0 0 0-6-6 6 6 0 0 1-6-6V58a6 6 0 1 1 12 0 6 6 0 0 0 6 6v24zM0 88V64a6 6 0 0 0 6-6 6 6 0 0 1 12 0v12a6 6 0 0 1-6 6 6 6 0 0 0-6 6 6 6 0 0 1-6 6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    #050b11;

  background-repeat: no-repeat, repeat, no-repeat;
  background-size: auto, 120px 192px, 100% 100%;
  background-position:
    0% 0%,
    center,
    center;
  transition: background-position 0.45s ease, background-size 0.45s ease;
}

.dev-card:hover .dev-card__icon-wrap {
  background:
    radial-gradient(circle at 100% 100%, rgba(60,123,255,0.14), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='96' viewBox='0 0 60 96'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2314191f' fill-opacity='0.15'%3E%3Cpath d='M36 10a6 6 0 0 1 12 0v12a6 6 0 0 1-6 6 6 6 0 0 0-6 6 6 6 0 0 1-12 0 6 6 0 0 0-6-6 6 6 0 0 1-6-6V10a6 6 0 1 1 12 0 6 6 0 0 0 12 0zm24 78a6 6 0 0 1-6-6 6 6 0 0 0-6-6 6 6 0 0 1-6-6V58a6 6 0 1 1 12 0 6 6 0 0 0 6 6v24zM0 88V64a6 6 0 0 0 6-6 6 6 0 0 1 12 0v12a6 6 0 0 1-6 6 6 6 0 0 0-6 6 6 6 0 0 1-6 6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    #050b11;

  background-position:
    100% 100%,
    center,
    center;

  background-size:
    auto,
    120px 192px,
    100% 100%;
}



.dev-card__icon-wrap--docs {}
.dev-card__icon-wrap--tutorials {}
.dev-card__icon-wrap--install {}


.dev-card__icon {
  width: 170px;
  height: 170px;
}




.dev-card__body {
  flex: 1 0 auto;
  padding: 18px 35px 54px;
  display: flex;
  flex-direction: column;
  background-color: #070f19; 
}

.dev-card__title {
  font-size: 24px;
  font-weight: 600;
  color: #E8F1FF;
  margin-bottom: 8px;
}

.dev-card__text {
  font-size: 16.7px;
  line-height: 1.4;
  color: #A9B6CC;
  margin-bottom: 25px;
}


.dev-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--accent2);
  transition: color 0.18s ease-out, transform 0.18s ease-out;
}

.dev-card:hover .dev-card__link {
  text-decoration: underline;
  text-decoration-color: currentColor;
}



@media (max-width: 768px) {
  .dev-start {
    padding: 72px 0 84px;
  }

  .dev-start__header {
    margin-bottom: 40px;
  }

  .dev-start__title {
    font-size: 27px;
  }

  .dev-start__subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .dev-card__inner {
    min-height: 260px;
  }

  .dev-card__icon-wrap {
    min-height: 180px;
    margin: 10px 10px 0 10px;
    padding: 26px 18px 16px;
    background-size:
      150% 80%,
      64px 84px; 
  }

  .dev-card__icon {
    width: 60px;
    height: 60px;
  }

  .dev-card__body {
    padding: 18px 18px 20px;
  }

  .dev-card__title {
    font-size: 18px;
  }

  .dev-card__text {
    font-size: 14.5px;
  }

  .dev-card__link {
    font-size: 15px;
  }
}


.dev-start__header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  max-width: 100%;
}

.dev-start__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.dev-start__logo img {
  height: 130px;  
  width: auto;
}

.dev-start__texts {
  max-width: 780px;
}

@media (max-width: 640px) {
  .dev-start__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .dev-start__logo img {
    height: 38px;
  }
}












.news {
  padding: 0px 0 80px;
  
}

.news__frame {
  border-radius: 0;
  border: 1px solid var(--frame-border);
  background: #070f19;
  padding: 0px 26px 34px;
  
}

.news__header {
  text-align: center;
  margin-bottom: 26px;
}

.news__title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 8px;
}

.news__subtitle {
  margin: 0 auto;
  font-size: 19px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.4;
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin: 32px 0 30px;
}

.news-card {
  position: relative;
  width: 100%;
  padding: 18px 22px 20px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at 0% 0%, rgba(60, 123, 255, 0.09), transparent 60%),
              #050b11;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  cursor: pointer;
  overflow: hidden;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;

}

.news-card:hover {
  /*
  border-color: rgba(100, 162, 255, 0.55);

  background: radial-gradient(circle at 0% 0%, rgba(100, 162, 255, 0.18), transparent 60%),
              #060d16;
              */
}

.news-card:hover::before {
  opacity: 0.6;
}

.news-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
}

.news-card__meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
  font-size: 14px;
}

.news-card__tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 300;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;     
  border: 1px solid #2e918f;
  background: radial-gradient(circle at 0 0, rgba(100, 162, 255, 0.32), transparent 60%);
  color: #ffffff;
  white-space: nowrap;
}

.news-card__date {
  font-size: 13.4px;
  color: var(--text-muted);
  white-space: nowrap;
}

.news-card__title {
  position: relative;
  z-index: 2;
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.45;
  transition: color 0.18s ease;
}

.news-card:hover .news-card__title {
  color: var(--accent2);
}

.news-card__excerpt {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 15.4px;
  line-height: 1.6;
  color: var(--text-muted);
}

.news__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.news__footer::before,
.news__footer::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.02));
}

.news__footer-btn {
  position: relative;
  padding: 9px 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle at 0 0, rgba(60, 123, 255, 0.34), transparent 60%),
              rgba(5, 13, 22, 0.96);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.news__footer-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(60, 123, 255, 0.4);
}

.news__footer-btn:hover {
  border-color: rgba(100, 162, 255, 0.9);

}

@media (max-width: 900px) {
  .news__frame {
    padding: 22px 16px 26px;
  }

  .news__title {
    font-size: 26px;
  }

  .news-card {
    padding: 16px 16px 18px;
  }

  .news-card__title {
    font-size: 17px;
  }

  .news-card__excerpt {
    font-size: 14px;
  }

  .news__footer-btn {
    padding: 8px 20px;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .news-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .news__subtitle {
    font-size: 14px;
    max-width: none;
  }
}

.news__frame {
  border-radius: 0;
  border: 1px solid var(--frame-border);
  background: #070f19;
  padding: 0px 26px 34px;

  border-top: 3px solid transparent;
  border-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.02)
  ) 1;
}

.news__footer-btn {
  text-decoration: none;
}









.faq {
  margin: 0;
  padding: 0;
  background: #050b11;
}

.faq-wrap {
  width: 1222px;
  margin: 0 auto;
  padding: 75px 0 80px;
}

.faq-head {
  margin-bottom: 26px;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

.faq-subtitle {
  color: var(--text-muted);
  font-size: 20px;
  margin: 6px 0 0;
}

.faq-columns {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.faq-left {
  width: 56%;
  max-width: 560px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}


.faq-item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.faq-mask-layer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 13px 24px 13px 28px;

  background: linear-gradient(
    90deg,
    rgb(34, 54, 78) 0%,
    rgba(34, 54, 78) 60%,
    rgba(40,61,87,0.01) 100%
  );

  transition: 0.25s ease;
}

.faq-inner {
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
}

.faq-arrow {
  font-size: 20px;
  color: #fff;
  opacity: 0.55;
  transition: 0.25s ease;
  flex-shrink: 0;
}

.faq-item:hover .faq-mask-layer {
  background: linear-gradient(
    90deg,
    rgba(52,78,109,1) 0%,
    rgba(52,78,109,1) 60%,
    rgba(52,78,109,0.10) 100%
  );
}

.faq-item:hover .faq-arrow {
  opacity: 0.9;
  transform: translateX(3px);
}


.faq-item.active {
  border-left: 4px solid var(--accent1);
}

.faq-item.active .faq-mask-layer {
  background: linear-gradient(
    90deg,
    rgba(78,133,255,0.30) 0%,
    rgba(78,133,255,0.25) 45%,
     rgba(40,61,87,0.01)  100%
  );
}

.faq-item.active .faq-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.faq-item.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  width: 14px;
  height: 100%;
  background: var(--accent1);
  filter: blur(18px);
  opacity: 0.85;
  pointer-events: none;
}

.faq-right {
  flex: 1;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-main);
  padding: 0 26px;
}

@media(max-width: 900px) {
  .faq-columns {
    flex-direction: column;
    gap: 30px;
  }
  .faq-left, .faq-right {
    width: 100%;
  }
}


.faq-answer {
  white-space: pre-line;
}

.faq-answer .accent {
  color: rgba(97,210,255,0.9);
}


@media (max-width: 1220px) {
  .faq-wrap {
    width: 100%;
    padding: 60px 20px;
  }
}

@media (max-width: 900px) {
  .faq-columns {
    flex-direction: column;
    gap: 30px;
  }

  .faq-left, .faq-right {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 700px) {

  .faq-inner {
    white-space: normal;
  }

  .faq-mask-layer {
    padding: 12px 18px;
    gap: 12px;
  }

  .faq-title {
    font-size: 36px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 30px;
  }

  .faq-mask-layer {
    padding: 10px 14px;
  }

  .faq-inner {
    font-size: 14px;
  }
}






.newsletter-wide {
  background: #050b11;
  padding: 40px 0 85px;
}

.newsletter-card {
  width: 100%;
  max-width: 1222px;
  margin: 0 auto;

  padding: 82px 62px;
  border-radius: 20px;

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

  position: relative;
  overflow: hidden;

  background: linear-gradient(
      180deg,
      rgba(18, 28, 44, 0.65) 0%,
      rgba(12, 20, 32, 0.92) 100%
    );
  border: 1px solid rgba(255,255,255,0.05);

  background-image:
      url("data:image/svg+xml;utf8,\
        <svg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'>\
          <g opacity='0.045'>\
            <circle cx='300' cy='300' r='260' stroke='white' stroke-width='1' fill='none'/>\
            <circle cx='300' cy='300' r='210' stroke='white' stroke-width='1' fill='none'/>\
            <circle cx='300' cy='300' r='160' stroke='white' stroke-width='1' fill='none'/>\
            <circle cx='300' cy='300' r='110' stroke='white' stroke-width='1' fill='none'/>\
          </g>\
        </svg>"
      );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.newsletter-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.0) 100%
  );
  z-index: 0;
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.newsletter-icon svg {
  flex-shrink: 0;
}

.newsletter-icon {
  width: 55px;
  height: 55px;
}

.newsletter-texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-title {
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.newsletter-subtext {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 16px;
}

.newsletter-right {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-input {
  width: 320px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.45);
}

.newsletter-input:focus {
  border-color: rgba(97,210,255,0.55);
  box-shadow: 0 0 0 1px rgba(97,210,255,0.2);
}

.newsletter-input--error {
  border-color: rgba(255, 89, 89, 0.9);
  background: rgba(255, 60, 60, 0.06);
}

.newsletter-btn {
  padding: 12px 22px;
  background: #efefef;
  color: #0a1525;
  font-size: 15.5px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  width: fit-content;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.newsletter-btn:hover {
  background: #ffffff;
  transform: translateX(2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.newsletter-note {
  margin: 0;
  margin-top: 5px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.45);
}

.policy-link {
  color: rgba(97,210,255,0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(97,210,255,0.4);
  padding-bottom: 1px;
  transition: 0.15s ease;
}

.policy-link:hover {
  border-bottom-color: rgba(97,210,255,0.9);
  color: rgba(97,210,255,1);
}

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


.newsletter-toast-container {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
  pointer-events: none;
}

.newsletter-toast {
  min-width: 260px;
  max-width: min(420px, 100vw - 32px);
  background: rgba(7, 17, 30, 0.96);
  border-radius: 4px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.55);
  font-size: 14px;
  line-height: 1.4;
  color: #e4ffe9;
  border: 1px solid rgba(90, 255, 210, 0.22);
  border-left-width: 3px;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(14px);
  animation: newsletter-toast-in 0.25s ease-out forwards;
}

.newsletter-toast__icon {
  flex-shrink: 0;
}

.newsletter-toast__text {
  flex: 1;
}

.newsletter-toast__close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.newsletter-toast__close:hover {
  opacity: 1;
  transform: scale(1.05);
}

.newsletter-toast--success {
  border-left-color: #5affd2;
  color: #eaffe9;
}

.newsletter-toast--error {
  border-left-color: #ff6868;
  color: #ffecec;
}

@keyframes newsletter-toast-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes newsletter-toast-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(18px);
  }
}

.newsletter-toast--hide {
  animation: newsletter-toast-out 0.25s ease-in forwards;
}


@media (max-width: 900px) {
  .newsletter-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px 52px;
    gap: 32px;
  }

  .newsletter-left {
    gap: 24px;
  }

  .newsletter-title {
    font-size: 32px;
  }

  .newsletter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }

  .newsletter-btn {
    transform: none !important;
  }
}

@media (max-width: 520px) {
  .newsletter-card {
    border-radius: 16px;
    padding: 32px 18px 40px;
  }

  .newsletter-title {
    font-size: 26px;
  }

  .newsletter-subtext {
    font-size: 14px;
  }

  .newsletter-note {
    font-size: 13px;
  }
}

.newsletter-btn--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}




@media (max-width: 1100px) {
  .newsletter-card {
    max-width: 100%;
    padding: 60px 40px;
    margin: 0 auto;
    background-size: 140%;
  }

  .newsletter-title {
    font-size: 34px;
  }
}


@media (max-width: 900px) {
  .newsletter-card {
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(-50vw + 50%);
    border-radius: 0;

    flex-direction: column;
    align-items: center;
    text-align: left;
    
    padding: 40px 20px 52px;
    gap: 32px;
    background-size: 200%;
  }

  .newsletter-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .newsletter-icon {
    margin: 0 auto;
  }

  .newsletter-texts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .newsletter-title {
    font-size: 30px;
    line-height: 1.25;
  }

  .newsletter-subtext {
    font-size: 15px;
  }

  .newsletter-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .newsletter-form {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .newsletter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }
}


@media (max-width: 600px) {
  .newsletter-card {
    padding: 30px 16px 38px;
    background-size: 240%;
  }

  .newsletter-title {
    font-size: 26px;
  }

  .newsletter-subtext {
    font-size: 14px;
  }

  .newsletter-note {
    font-size: 13px;
  }
}

.newsletter-card * {
  max-width: 100%;
  box-sizing: border-box;
}




.footer {
  padding: 70px 0 55px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}


.footer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  gap: 0;
  position: relative;
}

.footer__grid.with-dividers > * {
  padding: 0 40px;
  position: relative;
}

.footer__grid.with-dividers > *:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.1);
}

.footer-col h4 {
  margin: 0 0 22px;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
}

.footer-col a {
  display: block;
  margin: 12px 0;
  color: rgba(255,255,255,0.60);
  font-size: 15.5px;
  text-decoration: none;
  transition: 0.2s;
}

.footer-col a:hover {
  color: var(--accent2);
}

.footer-col p {
  margin: 12px 0;
  font-size: 16px;
  line-height: 1.5;
}



.footer__social-circles {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 0;
}


.social-circle svg {
  width: 20px;
  height: 20px;
  display: block;
}
.social-circle:hover {
  border-color: var(--accent2);
}



.social-circle:hover img {
  opacity: 1;
}

.footer__logo-center {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  opacity: 0.7;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.footer-logo {
  width: 75px;
  opacity: 0.9;
}

.footer-brand-text {
  font-size: 90px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  opacity: 0.95;
}



@media (max-width: 950px) {

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

  .footer__grid.with-dividers > * {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer__grid.with-dividers > *:not(:last-child)::after {
    display: none;
  }
}


.header-logo-link,
.footer-logo-link {
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.header-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}


