:root {
    --color-body-background: #f0f2f5;
    --color-container-background: #fff;
    --color-text-primary: #333;
    --color-text-success: #28a745;
    --color-border: #ccc;
    --color-button-primary: #007bff;
    --color-button-primary-hover: #0056b3;
    --swiper-theme-color: #007aff;
}

html {
    font-size: 12px;
}

body {
    background-color: #0f0f10;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.9rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

body.no-scroll {
    overflow: hidden;
}

#root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Common & Reset --- */
*, :after, :before {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

a:hover {
    text-decoration: none;
}

ul, li, ol, p, h1, h2, h3, h4, h5, h6, img, figure {
    margin: 0;
    padding: 0;
    border: none;
    outline: 0;
}

li {
    list-style-type: none;
}

img, video {
    max-width: 100%;
}

input {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

button {
    background-color: transparent;
    padding: 0;
    border: 0;
    cursor: pointer;
}

.container {
    max-width: 155.2rem;
    width: 100%;
    height: 100%;
    padding: 0 1.6rem;
    margin-right: auto;
    margin-left: auto;
}

/* --- Typography --- */
.heading-primary {
    font-weight: 600;
    font-size: 9rem;
    line-height: 10.8rem;
}

.heading-secondary {
    font-weight: 500;
    font-size: 5rem;
    line-height: 6rem;
    margin-bottom: 3rem;
}

.heading-tertiary {
    font-weight: 500;
    font-size: 3rem;
    line-height: 3.8rem;
}

/* --- Header --- */
.header {
    width: 100%;
    background: #0f0f10;
    -webkit-backdrop-filter: blur(9.5px);
    backdrop-filter: blur(9.5px);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    will-change: backdrop-filter;
    transition: all .3s;
}

.header__wrap {
    display: flex;
    align-items: center;
}

.header__logo {
    margin-right: auto;
}

.header__logo img {
    width: 20rem;
}

.header__nav-list {
    display: flex;
    align-items: center;
    margin-right: 4rem;
}

.header__nav-item {
    font-weight: 600;
    transition: color .3s;
}

.header__nav-item:hover {
    color: #0d44ce;
}

.header__nav-item:not(:last-child) {
    margin-right: 4rem;
}

.header__nav-item.active .header__nav-link {
    border-bottom: .2rem solid #0d44ce;
    color: #0d44ce;
}

.header__acc {
    display: flex;
    align-items: center;
    font-weight: 600;
    transition: color .3s;
}

.header__acc:hover {
    color: #0d44ce;
}

.header__github {
    width: 3rem;
}

/* --- Burger Menu --- */
.header__burger {
    width: 4.4rem;
    height: 3.4rem;
    position: relative;
    background-color: transparent;
    border: none;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.header__burger span,
.header__burger span:before {
    width: 2.6rem;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: .6rem;
    transition: transform .3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 2px;
}

.header__burger span {
    top: 1.1rem;
}

.header__burger span:before {
    content: "";
    top: .9rem;
}

.header__burger.active span {
    transform: rotate(-45deg) translate(-.2rem, .7rem);
}

.header__burger.active span:before {
    transform: rotate(-90deg) translate(.8rem, -.6rem);
}

/* --- Mobile Menu --- */
.header__menu {
    height: 0;
    width: 100%;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: #0f0f10;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    transition: height .5s .3s, opacity .1s .6s;
}

.header__menu::-webkit-scrollbar {
    display: none;
}

.header__menu.active {
    height: 100vh;
    opacity: 1;
    transition: height .5s, opacity .3s;
}

.header__menu > * {
    opacity: 0;
    transition: all .3s .5s;
    transform: translateY(-3rem);
    transition: opacity .3s, transform .1s .8s;
}

.header__menu.active > * {
    opacity: 1;
    transform: translateY(0);
    transition: all .3s .5s;
}

.header__menu-wrap {
    height: 100%;
    padding: 10.5rem 1.7rem 3rem;
    display: flex;
    flex-direction: column;
}

.header__menu-elem {
    display: flex;
    align-items: center;
}

.header__menu-elem:not(:last-child) {
    margin-bottom: 1.1rem;
}

.header__menu-name {
    margin-right: 1rem;
    line-height: 2.4rem;
    color: #070cbb;
}

.header__menu-link {
    display: block;
    font-weight: 600;
    line-height: 2.4rem;
}

.header__menu-link:not(:last-child) {
    margin-right: 2rem;
}

.header__menu-img {
    width: 23.1rem;
    position: absolute;
    right: 0;
    bottom: 2.7rem;
}

.header__github-mob {
    width: 9rem;
}

/* --- Main Layout --- */
main {
    flex: 1;
    padding-top: 9.5rem;
    background: #0f0f10;
}

main ul {
    padding-left: 3rem;
}

main li {
    list-style-type: disc;
}

main li li {
    list-style-type: circle;
}

main li li li {
    list-style-type: square;
}

main strong {
    color: #fff;
}

main table {
    width: 100%;
}

main table tr th {
    text-align: left;
}

main table tr td p {
    color: #fff;
}

.icon-bg {
    width: 58rem;
    position: absolute;
    z-index: 0;
}

.--narrow {
    padding-left: 12.8rem;
    padding-right: 12.8rem;
}

.hidden-mobile { display: none; }
.hidden-desktop { display: none; }

/* --- Copy Button (Documentation) --- */
.copy-button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: auto;
    position: relative;
    top: 30px;
    margin-right: 4px;
    background: #22242c;
}

/* --- Buttons --- */
.wrap_blue-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.blue-button {
    background: #5800fd;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 -1px 0 rgba(0, 0, 0, 0.2) inset, 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
}

.blue-button:hover {
    background-color: #D100D8;
    transform: translateY(-0.5px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 -1px 0 rgba(0, 0, 0, 0.2) inset, 0 5px 10px rgba(0, 0, 0, 0.2);
}

.blue-button:active {
    background: linear-gradient(45deg, #5800fd 0%, #D100D8 100%);
    transform: translateY(0.5px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 -1px 0 rgba(0, 0, 0, 0.4) inset, 0 1px 2px rgba(0, 0, 0, 0.15);
}

.green-button {
    background: #5800fd;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 -1px 0 rgba(0, 0, 0, 0.2) inset, 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
}

.green-button:hover {
    color: #ffffff;
    background: #D100D8;
    transform: translateY(-0.5px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 -1px 0 rgba(0, 0, 0, 0.2) inset, 0 5px 10px rgba(0, 0, 0, 0.2);
}

.green-button:active {
    color: #ffffff;
    background: linear-gradient(45deg, #5800fd 0%, #D100D8 100%);
    transform: translateY(0.5px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 -1px 0 rgba(0, 0, 0, 0.4) inset, 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Button with ID override */
#butAetherTechnology {
    background: #5800fd;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 -1px 0 rgba(0, 0, 0, 0.2) inset, 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
}

#butAetherTechnology:hover {
    color: #ffffff;
    background: #D100D8;
    transform: translateY(-0.5px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 -1px 0 rgba(0, 0, 0, 0.2) inset, 0 5px 10px rgba(0, 0, 0, 0.2);
}

#butAetherTechnology:active {
    color: #ffffff;
    background: linear-gradient(45deg, #5800fd 0%, #D100D8 100%);
    transform: translateY(0.5px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 -1px 0 rgba(0, 0, 0, 0.4) inset, 0 1px 2px rgba(0, 0, 0, 0.15);
}


/* --- Main Start Section (Animations & Sliders) --- */
.main-start {
    padding: 2.6rem 0 6rem;
    overflow: hidden;
}

.main-start__anim {
    width: 59.4rem;
    height: 31.1rem;
    position: absolute;
    top: 6rem;
    left: 12.2rem;
}

.main-start__anim img {
    position: absolute;
    opacity: 0;
}

.main-start__anim img:first-child {
    width: 46.5rem;
    left: -67rem;
    top: 41rem;
    transition: all .5s .9s, opacity .2s .9s;
}

.main-start__anim img:nth-child(2) {
    width: 33.4rem;
    right: 82rem;
    top: 47rem;
    transition: all .5s 1.1s, opacity .2s 1.1s;
}

.main-start__anim img:nth-child(3) {
    width: 28.9rem;
    top: 46.3rem;
    right: 73.5rem;
    transition: all .5s 1s, opacity .2s 1s;
}

.main-start__anim.active img {
    opacity: 1;
}

.main-start__anim.active img:first-child {
    left: 0;
    top: 4.1rem;
}

.main-start__anim.active img:nth-child(2) {
    right: 0;
    top: 0;
}

.main-start__anim.active img:nth-child(3) {
    top: 11.3rem;
    right: 11.5rem;
}

.main-start__wrap {
    display: grid;
    align-items: center;
    grid-template-columns: 56.6rem 65.6rem;
    grid-gap: 18rem;
    position: relative;
}

.main-start__wrap > :not(.icon-bg, .main-start__anim) {
    position: relative;
    z-index: 1;
}

.main-start__wrap .icon-bg {
    top: 6rem;
    left: 12.2rem;
}

.main-start__wrap .main-start__text h2 {
    font-size: 2rem;
    line-height: 3rem;
}

.main-start__text .heading-secondary {
    margin-bottom: 3.4rem;
}

.main-start__descr {
    font-size: 2rem;
    line-height: 2.7rem;
    color: #a7acbb;
}

.main-start__img {
    width: 100%;
}

/* Slider (Swiper) */
.main-start__slider:not(:last-child) {
    margin-bottom: 2rem;
}

.main-start__slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
    -ms-overflow-style: none;
}

.main-start__slider::-webkit-scrollbar {
    display: none;
    height: 6px;
}

.main-start__slider.grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    box-sizing: content-box;
    scroll-snap-type: x mandatory;
}

.swiper-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    width: clamp(280px, 30vw, 400px);
    min-width: 308px;
    max-width: 445px;
    margin-right: 15px;
    padding: 24px;
}

.main-start__slider-item {
    padding: 2rem 3rem;
    height: auto;
    background: rgba(13, 68, 206, .15);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.main-start__slider:not(:last-child) .main-start__slider-item {
    align-items: center;
}

.main-start__slider-name:not(:last-child) {
    margin-bottom: 2rem;
}

.main-start__slider-name {
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.7rem;
    height: 5.5rem;
}

.main-start__slider-descr {
    font-size: 1.8rem;
    line-height: 2.6rem;
    color: #a7acbb;
}

.main-start__slider-descr:not(:last-child) {
    margin-bottom: 1rem;
}

.swiper-container {
    overflow: hidden;
    user-select: none;
    position: relative;
}

.swiper-container.dragging {
    cursor: grabbing;
}

/* --- Main Introduction --- */
.main-introduction {
    padding: 10rem 0 6rem;
}

.main-introduction__wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16rem;
    position: relative;
}

.main-introduction__wrap > :not(.icon-bg) {
    position: relative;
    z-index: 1;
}

.main-introduction__wrap .icon-bg {
    width: 54.8rem;
    top: -7rem;
    left: 13.6rem;
}

.main-introduction__wrap .sub-h2 {
    font-size: 3rem;
}

.main-introduction__text {
    max-width: 62.2rem;
    font-size: 2rem;
    line-height: 2.8rem;
    color: #a7acbb;
}

.main-introduction__text ul {
    list-style-type: disc;
    padding-left: 3rem;
}

.main-introduction__text ul li {
    list-style-type: disc;
}

.main-introduction__info {
    display: flex;
    padding-left: 8.8rem;
}

.main-introduction__info-btn {
    padding: 2rem 4rem;
    background: rgba(13, 68, 206, .1);
    border-radius: 30px 30px 0 0;
    cursor: pointer;
    color: rgba(13, 68, 206, .5);
    font-weight: 600;
    font-size: 5rem;
    line-height: 6rem;
    transition: all .3s;
}

.main-introduction__info-btn.active,
.main-introduction__info-btn:hover {
    color: #fff;
    background: rgba(13, 68, 206, .15);
}

.main-introduction__content {
    background: rgba(13, 68, 206, .15);
    border-radius: 30px;
    margin-bottom: 16rem;
}

.main-introduction__tab {
    min-height: 45.7rem;
    padding: 8rem 10.8rem 8rem 12.8rem;
    position: relative;
    overflow: hidden;
}

.main-introduction__tab:first-child .main-introduction__tab-descr {
    max-width: 53rem;
}

.main-introduction__tab:first-child .main-introduction__tab-img {
    width: 77.2rem;
    right: -22rem;
    bottom: -19rem;
}

.main-introduction__tab:nth-child(2) -img {
    width: 103.4rem;
    right: -59rem;
    bottom: -40rem;
}

.main-introduction__tab-descr {
    font-size: 2rem;
    line-height: 2.7rem;
    color: #a7acbb;
    position: relative;
    z-index: 1;
}

.main-introduction__tab-img {
    max-width: none;
    position: absolute;
}

/* --- Main Info & Messages --- */
.main-info {
    padding: 0 0 6rem;
}

.main-info.--other {
    padding-bottom: 16rem;
}

.main-info.--other .main-info__item:nth-child(2) .icon-bg {
    width: 90.2rem;
    left: 4rem;
    top: -3rem;
}

.main-info.--other .main-info__item:nth-child(4) .icon-bg {
    width: 62.7rem;
    right: -9rem;
    bottom: -12.5rem;
    left: auto;
    top: auto;
}

.main-info__item {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 10rem;
}

.main-info__item:not(:last-child) {
    margin-bottom: 6rem;
}

.main-info__item .icon-bg {
    width: 40.8rem;
    left: 6.2rem;
    top: 4rem;
}

.main-info__item .heading-secondary {
    max-width: 38rem;
    position: relative;
    z-index: 1;
}

.main-info__descr {
    max-width: 62.2rem;
    font-size: 2rem;
    line-height: 2.7rem;
    color: #a7acbb;
    position: relative;
    z-index: 1;
}

.main-messages {
    padding: 10rem 0 6rem;
}

.main-messages .heading-secondary {
    margin-bottom: 3rem;
}

.main-messages .container {
    position: relative;
}

.main-messages__wrap {
    display: flex;
    gap: 7.3rem;
}

.main-messages__wrap .icon-bg {
    width: 58rem;
    right: 0;
    bottom: -5.5rem;
}

.main-messages__descr {
    font-size: 2rem;
    line-height: 2.7rem;
    color: #a7acbb;
    position: relative;
    z-index: 1;
}

/* --- Main Inspecting --- */
.main-inspecting {
    padding: 10rem 0 6rem;
}

.main-inspecting__wrap {
    display: grid;
    grid-template-columns: 43.5% auto;
    grid-gap: 9.4rem;
}

.main-inspecting__text .heading-secondary {
    margin-bottom: 2.8rem;
}

.main-inspecting__descr {
    font-size: 2rem;
    line-height: 2.7rem;
    color: #a7acbb;
}

.main-inspecting__list {
    display: grid;
    grid-template-columns: repeat(2, .5fr);
    grid-gap: 1.6rem;
}

.main-inspecting__item {
    min-height: 30.4rem;
    padding: 3rem 3rem 15rem;
    background: rgba(13, 68, 206, .15);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.main-inspecting__item:first-child .main-inspecting__img {
    width: 65.5rem;
    left: 10rem;
    top: 16rem;
}

.main-inspecting__item:nth-child(2) .main-inspecting__img {
    width: 32.5rem;
    left: 9rem;
    top: 17rem;
}

.main-inspecting__name {
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.7rem;
    position: relative;
    z-index: 1;
}

.main-inspecting__img {
    max-width: none;
    position: absolute;
}

/* --- Internal Pages (Technology, Documentation, Pricing) --- */
.client__wrap {
    position: relative;
    display: flex;
}

.client__page__sidebar-left,
.client__page__sidebar_right {
    flex: 1;
    max-width: 20rem;
}

.sidebar-left {
    position: sticky;
    top: 16.5rem;
}

.sidebar-left ul {
    list-style-type: none;
    padding-left: 0;
}

.sidebar-left__list {
    display: flex;
    flex-direction: column;
}

.sidebar-left ul li {
    padding-bottom: 1.3rem;
}

h2, h3 {
    font-weight: 600;
    color: #fff;
}

h2 {
    font-size: 5rem;
    line-height: 6rem;
    margin-bottom: 2.5rem;
}

h3 {
    font-size: 1.8rem;
    line-height: 2.7rem;
    margin-bottom: .5rem;
    margin-top: 3rem;
}

.client__block-item {
    margin-bottom: 4.8rem;
}

.client__page ol li,
.client__page ul li {
    color: #a7acbb;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.client__page p {
    color: #a7acbb;
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: .5rem;
}

.client__page ul:not(:last-child) {
    margin-bottom: .8rem;
}

.client__page ul {
    padding-left: 3rem;
}

.sidebar-left__sub-item {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2rem;
    color: #a7acbb;
    transition: border .3s ease-in-out;
    border-left: .2rem solid hsla(0, 0%, 100%, .2);
    padding-left: 2rem;
}

.sidebar-left__link {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2rem;
    color: #a7acbb;
    transition: color .3s ease-in-out;
}

.activeMenu > a {
    color: #0d44ce;
}

.subActiveMenu > a {
    color: #344f92;
}

.sidebar-left__sub-link {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2rem;
    color: #a7acbb;
    transition: color .3s ease-in-out;
}

.sidebar-left__sub-list.visible {
    display: block;
    max-height: 100%;
}

.sidebar-left__sub-list {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.sidebar-left__item {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2rem;
    color: #a7acbb;
    transition: all .3s ease-in-out;
    padding: .4rem 0;
}

.client__page {
    position: relative;
    flex: 2;
    width: 100%;
    max-width: 100rem;
    margin: 0 auto;
}

.client__page a {
    color: #6464ff;
    text-decoration: underline;
}

.client__page img {
    width: 100%;
}

.client__page-bg {
    width: 100%;
    max-width: 40rem;
    position: absolute;
    top: -8rem;
    left: 0;
}

.client__content {
    position: relative;
}

.client__page table {
    width: 100%;
    border-collapse: collapse;
}

.client__page table tr:not(:last-child) {
    border-bottom: .1rem solid #53586b;
}

.client__page table tr {
    display: flex;
}

.client__page table tr th {
    text-align: left;
    flex: 1;
}

.client__page table tr td p {
    color: #fff;
    margin: 0;
    padding: 1rem 0;
}

.client__page table tr td {
    flex: 1;
}

/* --- Code Blocks (PrismJS Styles) --- */
.client__page pre {
    background-color: #22242c;
    border-left: .3rem solid #0d44ce;
    padding: 0 1.6rem;
    overflow: auto;
    font-family: Courier New, Courier, monospace;
    font-size: 1.6rem;
    margin: 1rem 0;
}

:not(pre) > code[class*=language-],
pre[class*=language-] {
    background: #272822;
}

pre[class*=language-] {
    padding: 1em;
    margin: .5em 0;
    overflow: auto;
    border-radius: .3em;
}

code[class*=language-],
pre[class*=language-] {
    color: #f8f8f2;
    background: none;
    text-shadow: 0 1px rgba(0, 0, 0, .3);
    font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
    font-size: 1em;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    hyphens: none;
}

.client__page code {
    color: #fff;
    line-height: 2.4rem;
}

.token.constant, .token.deleted, .token.property, .token.symbol, .token.tag {
    color: #f92672;
}

.token.keyword {
    color: #66d9ef;
}

.token.attr-name, .token.builtin, .token.char, .token.inserted, .token.selector, .token.string {
    color: #a6e22e;
}

.token.atrule, .token.attr-value, .token.class-name, .token.function {
    color: #e6db74;
}

.language-css .token.string, .style .token.string, .token.entity, .token.operator, .token.url, .token.variable {
    color: #f8f8f2;
}

.token.punctuation {
    color: #f8f8f2;
}

.token.boolean, .token.number {
    color: #ae81ff;
}

.token.cdata, .token.comment, .token.doctype, .token.prolog {
    color: #8292a2;
}

/* --- Pricing Calculator --- */
.aethernet-wrapper {
    font: 16px/1.45 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    color: #ffffff;
}

.aethernet-wrapper * {
    box-sizing: border-box;
}

.aethernet-wrapper .grid {
    display: grid;
    grid-template-columns: 520px 360px;
    gap: 24px;
}

.aethernet-wrapper .card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.aethernet-wrapper .form {
    padding: 22px;
}

.aethernet-wrapper .row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.aethernet-wrapper .label {
    font-size: 19px;
    color:#b9b9c0;
    text-align: left;
}

.aethernet-wrapper .control {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.aethernet-wrapper .number {
    flex: 1 1 auto;
    background: #121214;
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    outline: none;
    font-size: 18px;
    min-width: 0;
}

.aethernet-wrapper .number:focus {
    border-color: #D100D8;
    box-shadow: 0 0 0 4px rgba(209,0,216,0.35);
}

.aethernet-wrapper .unit {
    flex: 0 0 120px;
    background: #121214;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 12px 10px;
    font-size: 18px;
    outline: none;
}

.aethernet-wrapper .unit:focus,
.aethernet-wrapper .unit:focus-visible {
    border-color: #D100D8;
    box-shadow: 0 0 0 4px rgba(209,0,216,0.35);
}

.aethernet-wrapper .hint {
    font-size: 14px;
    color: #b9b9c0;
}

.aethernet-wrapper .muted {
    opacity: 0.9;
}

.aethernet-wrapper .actions {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
}

.aethernet-wrapper .result {
    width: 320px;
    display: flex;
    flex-direction: column;
    background: #121214;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 96px;
}

.aethernet-wrapper .result-label {
    color: #b9b9c0;
    font-size: 19px;
    margin: 2px 0 8px;
    text-align: center;
}

.aethernet-wrapper .result-value {
    min-height: 56px;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: .5px;
    text-shadow: 0 2px 0 rgba(0,0,0,.35);
    white-space: nowrap;
}

.aethernet-wrapper .green-button {
    background: #5800fd;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 24px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 -1px 0 rgba(0, 0, 0, 0.2) inset, 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 320px;
    font-size: 25px;
    text-align: center;
}

.aethernet-wrapper .green-button:hover {
    color: #ffffff;
    background: #D100D8;
    transform: translateY(-0.5px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 -1px 0 rgba(0, 0, 0, 0.2) inset, 0 5px 10px rgba(0, 0, 0, 0.2);
}

.aethernet-wrapper .green-button:active {
    color: #ffffff;
    background: linear-gradient(45deg, #5800fd 0%, #D100D8 100%);
    transform: translateY(0.5px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 -1px 0 rgba(0, 0, 0, 0.4) inset, 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* --- Footer --- */
.footer {
    padding: 5rem 0 3rem;
    background: #0f0f10;
}

.footer__top {
    display: grid;
    grid-template-columns: repeat(12, .0833333333fr);
    grid-gap: 2rem;
}

.footer__top:not(:last-child) {
    margin-bottom: 11.6rem;
}

.footer__logo {
    grid-column: span 2;
}

.footer__logo img {
    width: 20rem;
}

.footer__sub {
    grid-column: span 4;
}

.footer__nav {
    grid-column: span 3;
}

.footer__nav-item {
    font-weight: 600;
    transition: color .3s;
}

.footer__nav-item:hover {
    color: #0d44ce;
}

.footer__nav-item:not(:last-child) {
    margin-bottom: 2rem;
}

.footer__contacts {
    grid-column: span 3;
}

.footer__contacts-item:not(:last-child) {
    margin-bottom: 3rem;
}

.footer__contacts-subtitle {
    margin-bottom: 1rem;
    color: #070cbb;
}

.footer__contacts-wrap {
    display: flex;
    align-items: center;
}

.footer__contacts-elem {
    display: block;
    font-weight: 700;
    transition: color .3s;
    cursor: pointer;
}

.footer__contacts-elem:hover {
    color: #0d44ce;
}

.footer__contacts-elem:not(:last-child) {
    margin-right: 2rem;
}

.footer__bottom {
    padding-top: 2.4rem;
    display: grid;
    grid-template-columns: .5fr .25fr .25fr;
    grid-gap: 2rem;
    border-top: 1px solid hsla(0, 0%, 100%, .15);
    line-height: 2.4rem;
    color: #070cbb;
}

.footer__policy {
    transition: color .3s;
}

.footer__policy:hover {
    color: #0d44ce;
}

.footer__copyright {
    justify-self: end;
}