@charset "UTF-8";

:root {
    --ink: #111327;
    --ink-soft: #54586f;
    --paper: #f7f8fc;
    --surface: #ffffff;
    --line: #e3e5ee;
    --primary: #5b5ce2;
    --primary-dark: #4546c8;
    --lime: #c9fa4a;
    --peach: #ffcfb8;
    --night: #15172c;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-sm: 0 12px 35px rgba(28, 30, 66, .07);
    --shadow-lg: 0 35px 90px rgba(35, 37, 83, .16);
    --container: 1180px;
    --header-height: 86px;
    font-family: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input {
    font: inherit;
}

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

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

button,
input {
    color: inherit;
}

button {
    border: 0;
}

::selection {
    color: #fff;
    background: var(--primary);
}

:focus-visible {
    outline: 3px solid rgba(91, 92, 226, .45);
    outline-offset: 4px;
}

[hidden] {
    display: none !important;
}

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

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: #fff;
    background: var(--night);
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: .92rem;
    font-weight: 750;
    letter-spacing: -.01em;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 14px 30px rgba(91, 92, 226, .24);
}

.button--primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 18px 36px rgba(91, 92, 226, .31);
}

.button--secondary {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

.button--secondary:hover {
    border-color: #c7cad9;
    box-shadow: var(--shadow-sm);
}

.button--dark {
    color: #fff;
    background: var(--night);
}

.button--dark:hover {
    background: #282b49;
}

.button--compact {
    min-height: 43px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: .82rem;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 21px;
    color: var(--primary);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 20px;
}

.eyebrow--dark {
    color: #575a73;
}

.eyebrow--light {
    color: var(--lime);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 750;
}

.text-link span {
    transition: transform .2s ease;
}

a.text-link:hover span,
a:hover .text-link span {
    transform: translateX(4px);
}

/* Header */
.site-header {
    position: relative;
    z-index: 50;
    height: var(--header-height);
    border-bottom: 1px solid rgba(210, 212, 225, .68);
    background: rgba(247, 248, 252, .9);
    transition: box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-stuck {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 30px rgba(25, 27, 55, .07);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
}

.brand__mark {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    overflow: hidden;
    place-items: center;
    color: #fff;
    background: var(--night);
    border-radius: 13px;
    box-shadow: 0 8px 18px rgba(91, 92, 226, .22);
    isolation: isolate;
}

.brand__mark::before,
.brand__mark::after {
    content: none;
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand__wording {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.brand__wording strong {
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: -.035em;
}

.brand__wording small {
    margin-top: 4px;
    color: #73768a;
    font-size: .66rem;
    font-weight: 650;
    letter-spacing: .02em;
}

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

.main-nav > a:not(.button) {
    position: relative;
    color: #4d5067;
    font-size: .86rem;
    font-weight: 650;
}

.main-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--primary);
    border-radius: 4px;
    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-nav > a:not(.button):hover::after {
    transform: scaleX(1);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    background: #e9eaf2;
    border: 1px solid #dddfe9;
    border-radius: 10px;
}

.language-switcher a {
    display: grid;
    min-width: 34px;
    height: 30px;
    place-items: center;
    color: #6d7084;
    border-radius: 7px;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .04em;
    transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.language-switcher a:hover {
    color: var(--ink);
}

.language-switcher a[aria-current="page"] {
    color: var(--ink);
    background: #fff;
    box-shadow: 0 2px 7px rgba(25, 27, 55, .11);
}

/* Home hero */
.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(91, 92, 226, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 92, 226, .035) 1px, transparent 1px),
        var(--paper);
    background-size: 56px 56px;
}

.hero::after {
    position: absolute;
    right: -8%;
    bottom: -65px;
    width: 55%;
    height: 130px;
    content: "";
    background: var(--lime);
    border-radius: 50% 0 0;
    opacity: .14;
    transform: rotate(-4deg);
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 665px;
    align-items: center;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
    gap: 70px;
    padding-block: 68px 78px;
}

.hero__content {
    padding-bottom: 8px;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(3.35rem, 6.5vw, 6.35rem);
    font-weight: 850;
    letter-spacing: -.075em;
    line-height: .93;
}

.hero h1 em {
    position: relative;
    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: .94em;
    font-weight: 500;
    letter-spacing: -.06em;
}

.hero h1 em::after {
    position: absolute;
    right: 2%;
    bottom: -6px;
    left: 3%;
    height: 7px;
    content: "";
    background: var(--lime);
    border-radius: 60% 30% 60% 30%;
    transform: rotate(-1.5deg);
    z-index: -1;
}

.hero__lead {
    max-width: 610px;
    margin: 30px 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.06rem, 1.5vw, 1.25rem);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 34px;
}

.hero__reassurance {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #6c6f83;
    font-size: .76rem;
    font-weight: 650;
}

.hero__reassurance i {
    width: 8px;
    height: 8px;
    background: #51bd82;
    border: 2px solid #d8f5e5;
    border-radius: 50%;
    box-sizing: content-box;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero__glow--one {
    top: 45px;
    right: 23%;
    width: 230px;
    height: 230px;
    background: rgba(207, 208, 255, .48);
}

.hero__glow--two {
    bottom: 25px;
    left: 22%;
    width: 150px;
    height: 150px;
    background: rgba(255, 207, 184, .3);
}

.hero__visual {
    position: relative;
    width: min(100%, 500px);
    min-height: 480px;
    margin-left: auto;
}

.signal-card {
    position: absolute;
    top: 28px;
    right: 16px;
    width: min(100%, 420px);
    height: 420px;
    padding: 26px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 4%, rgba(201, 250, 74, .22), transparent 28%),
        linear-gradient(145deg, #25284b, #111326 72%);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 42px;
    box-shadow: var(--shadow-lg);
    transform: rotate(2.5deg);
}

.signal-card::before {
    position: absolute;
    top: -44px;
    right: -46px;
    width: 160px;
    height: 160px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
}

.signal-card__head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signal-card__brand {
    font-size: .69rem;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.signal-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    color: #dfffa0;
    background: rgba(201, 250, 74, .09);
    border: 1px solid rgba(201, 250, 74, .2);
    border-radius: 999px;
    font-size: .6rem;
    font-weight: 750;
    text-transform: uppercase;
}

.signal-card__status i {
    width: 5px;
    height: 5px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201, 250, 74, .08);
}

.signal-card__orbit {
    position: relative;
    width: 255px;
    height: 255px;
    margin: 17px auto 0;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.orbit--outer {
    inset: 9px;
}

.orbit--inner {
    inset: 61px;
    border-style: dashed;
}

.orbit__core,
.orbit__node {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 17px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}

.orbit__core {
    top: 50%;
    left: 50%;
    width: 74px;
    height: 74px;
    color: #17192d;
    background: var(--lime);
    border-radius: 24px;
    font-size: 2rem;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.orbit__node {
    width: 43px;
    height: 43px;
    color: #fff;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: .8rem;
    font-weight: 800;
}

.orbit__node--one {
    top: 22px;
    left: 31px;
}

.orbit__node--two {
    top: 90px;
    right: 0;
    color: #272945;
    background: var(--peach);
}

.orbit__node--three {
    bottom: 5px;
    left: 63px;
    background: var(--primary);
}

.signal-card__copy {
    position: absolute;
    right: 29px;
    bottom: 25px;
    left: 29px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.signal-card__copy span {
    color: #999cb5;
    font-size: .67rem;
    font-weight: 650;
    text-transform: uppercase;
}

.signal-card__copy strong {
    max-width: 165px;
    font-size: 1.06rem;
    letter-spacing: -.03em;
    line-height: 1.2;
    text-align: right;
}

.floating-pill {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    background: #fff;
    border: 1px solid rgba(217, 219, 231, .9);
    border-radius: 999px;
    box-shadow: 0 15px 35px rgba(33, 35, 74, .14);
    font-size: .71rem;
    font-weight: 750;
}

.floating-pill i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.floating-pill--android {
    top: 12px;
    left: 8px;
    transform: rotate(-5deg);
}

.floating-pill--android i {
    background: #76c25b;
}

.floating-pill--ios {
    right: -12px;
    bottom: 57px;
    transform: rotate(4deg);
}

.floating-pill--ios i {
    background: #77798a;
}

.floating-pill--web {
    bottom: 9px;
    left: 30px;
    transform: rotate(-3deg);
}

.floating-pill--web i {
    background: var(--primary);
}

/* Catalogue */
.catalogue-section {
    position: relative;
    padding: 112px 0 125px;
    background: #fff;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading h2,
.about-section h2,
.faq-section h2,
.related-section h2 {
    margin: 0;
    font-size: clamp(2.35rem, 4.3vw, 4.35rem);
    font-weight: 820;
    letter-spacing: -.065em;
    line-height: 1.02;
}

.section-heading__count {
    flex: 0 0 auto;
    margin: 0 0 6px;
    color: #7b7e91;
    font-size: .8rem;
    font-weight: 650;
}

.section-heading__count strong {
    margin-right: 3px;
    color: var(--ink);
    font-size: 1rem;
}

.catalogue-tools {
    display: grid;
    margin-top: 53px;
    grid-template-columns: minmax(270px, 370px) 1fr;
    gap: 28px;
}

.search-field {
    position: relative;
}

.search-field__icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 19px;
    width: 15px;
    height: 15px;
    border: 2px solid #777a8e;
    border-radius: 50%;
    transform: translateY(-56%);
    pointer-events: none;
}

.search-field__icon::after {
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    content: "";
    background: #777a8e;
    border-radius: 3px;
    transform: rotate(45deg);
}

.search-field input {
    width: 100%;
    height: 52px;
    padding: 0 88px 0 50px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 15px;
    outline: 0;
    font-size: .85rem;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.search-field input::placeholder {
    color: #989baa;
}

.search-field input:focus {
    background: #fff;
    border-color: rgba(91, 92, 226, .58);
    box-shadow: 0 0 0 4px rgba(91, 92, 226, .09);
}

.search-field__clear {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 7px;
    color: #777a8e;
    background: transparent;
    font-size: 0;
    cursor: pointer;
    transform: translateY(-50%);
}

.search-field__clear span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    background: #e9eaf1;
    border-radius: 50%;
    font-size: 1rem;
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 9px;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 9px 15px;
    color: #65687b;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.filter-chip:hover {
    color: var(--ink);
    border-color: #bfc2d2;
    transform: translateY(-1px);
}

.filter-chip.is-active {
    color: #fff;
    background: var(--night);
    border-color: var(--night);
}

.app-grid {
    display: grid;
    margin-top: 40px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.app-card {
    position: relative;
    display: flex;
    min-height: 378px;
    flex-direction: column;
    padding: 25px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 25px;
    box-shadow: 0 1px 0 rgba(17, 19, 39, .02);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    isolation: isolate;
}

.app-card::before {
    position: absolute;
    z-index: -1;
    top: -85px;
    right: -75px;
    width: 210px;
    height: 210px;
    content: "";
    background: var(--app-accent, var(--primary));
    border-radius: 50%;
    opacity: .07;
    transition: opacity .28s ease, transform .28s ease;
}

.app-card::after {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: "";
    background: var(--app-accent, var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s ease;
}

.app-card:hover {
    border-color: color-mix(in srgb, var(--app-accent, var(--primary)) 28%, var(--line));
    box-shadow: 0 23px 55px rgba(29, 31, 67, .11);
    transform: translateY(-7px);
}

.app-card:hover::before {
    opacity: .11;
    transform: scale(1.08);
}

.app-card:hover::after {
    transform: scaleX(1);
}

.app-card__top {
    display: flex;
    min-height: 76px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.app-icon {
    display: grid;
    flex: 0 0 auto;
    width: 76px;
    height: 76px;
    overflow: hidden;
    place-items: center;
    color: #fff;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--app-accent, var(--primary)) 82%, white), var(--app-accent, var(--primary)));
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 21px;
    box-shadow: 0 12px 25px color-mix(in srgb, var(--app-accent, var(--primary)) 18%, transparent);
    font-size: 1.65rem;
    font-weight: 850;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-icon--large {
    width: 144px;
    height: 144px;
    border-radius: 36px;
    box-shadow: 0 25px 55px color-mix(in srgb, var(--app-accent, var(--primary)) 22%, transparent);
    font-size: 3.2rem;
}

.app-icon--small {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 1.1rem;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 9px;
    color: #555713;
    background: #f3ffc9;
    border: 1px solid #dfef9e;
    border-radius: 999px;
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap;
}

.app-card__category {
    margin: 24px 0 5px;
    color: var(--app-accent, var(--primary));
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.app-card h3 {
    margin: 0;
    font-size: 1.43rem;
    font-weight: 820;
    letter-spacing: -.04em;
    line-height: 1.2;
}

.app-card__title-link::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
}

.app-card__tagline {
    display: -webkit-box;
    min-height: 46px;
    margin: 10px 0 0;
    overflow: hidden;
    color: #6c6f82;
    font-size: .84rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.app-card__availability {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.app-card__availability span {
    padding: 4px 8px;
    color: #777a8f;
    background: var(--paper);
    border-radius: 6px;
    font-size: .61rem;
    font-weight: 700;
}

.app-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eceef4;
}

.quick-links {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quick-links a {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    color: #65687c;
    background: var(--paper);
    border: 1px solid #e7e9f0;
    border-radius: 9px;
    font-size: .66rem;
    font-weight: 800;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.quick-links a:hover {
    color: #fff;
    background: var(--app-accent, var(--primary));
    transform: translateY(-2px);
}

.quick-links__icon {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.platform-icon--globe {
    fill: none !important;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.empty-state {
    margin-top: 40px;
    padding: 65px 25px;
    text-align: center;
    background: var(--paper);
    border: 1px dashed #cfd2df;
    border-radius: 28px;
}

.empty-state--initial {
    margin-top: 50px;
}

.empty-state__mark {
    display: grid;
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    place-items: center;
    color: var(--primary);
    background: #e8e9ff;
    border-radius: 20px;
    font-size: 1.7rem;
    font-weight: 800;
}

.empty-state h3 {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: -.035em;
}

.empty-state p {
    max-width: 480px;
    margin: 8px auto 22px;
    color: #74778b;
    font-size: .9rem;
}

/* Value + FAQ */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 115px 0;
    color: #fff;
    background: var(--night);
}

.about-section::before {
    position: absolute;
    top: -180px;
    left: -130px;
    width: 480px;
    height: 480px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .018), 0 0 0 140px rgba(255, 255, 255, .012);
}

.about-section__grid {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 110px;
}

.about-section__intro {
    align-self: center;
}

.about-section__intro > p:last-child {
    max-width: 500px;
    margin: 27px 0 0;
    color: #aeb1c2;
    font-size: 1rem;
    line-height: 1.75;
}

.benefit-list {
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.benefit-list article {
    display: grid;
    padding: 29px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    grid-template-columns: 58px 1fr;
    gap: 16px;
}

.benefit-list article > span {
    color: var(--lime);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.benefit-list h3 {
    margin: -5px 0 5px;
    font-size: 1.2rem;
    letter-spacing: -.03em;
}

.benefit-list p {
    margin: 0;
    color: #aeb1c2;
    font-size: .86rem;
    line-height: 1.65;
}

.faq-section {
    padding: 115px 0 125px;
    background: #f1f2f7;
}

.faq-section__grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.faq-section__heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-list {
    border-top: 1px solid #cccfdb;
}

.faq-list details {
    border-bottom: 1px solid #cccfdb;
}

.faq-list summary {
    position: relative;
    display: flex;
    min-height: 83px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 3px;
    font-size: 1.02rem;
    font-weight: 750;
    letter-spacing: -.02em;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 1px solid #bfc2d0;
    border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    content: "";
    background: #55586d;
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-list details[open] summary {
    color: var(--primary);
}

.faq-list details p {
    max-width: 680px;
    margin: -4px 48px 26px 3px;
    color: #696c80;
    font-size: .92rem;
    line-height: 1.75;
}

/* Application detail */
.detail-page {
    position: relative;
    overflow: hidden;
    padding-bottom: 105px;
    background:
        radial-gradient(circle at 88% 0, color-mix(in srgb, var(--app-accent, var(--primary)) 11%, transparent), transparent 32%),
        var(--paper);
}

.detail-page__glow {
    position: absolute;
    top: 160px;
    left: -140px;
    width: 290px;
    height: 290px;
    background: color-mix(in srgb, var(--app-accent, var(--primary)) 9%, transparent);
    border-radius: 50%;
    filter: blur(4px);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 31px;
    color: #777a8c;
    font-size: .76rem;
    font-weight: 650;
}

.breadcrumbs a {
    transition: color .2s ease;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs span[aria-hidden] {
    color: #b4b7c4;
}

.breadcrumbs span[aria-current] {
    overflow: hidden;
    color: var(--ink);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-hero {
    display: grid;
    align-items: center;
    padding: 78px 0 94px;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: 85px;
}

.app-hero__identity {
    display: flex;
    align-items: center;
    gap: 34px;
}

.app-hero__labels {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.category-label {
    color: var(--app-accent, var(--primary));
    font-size: .69rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.app-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 6.5vw, 6.1rem);
    font-weight: 850;
    letter-spacing: -.075em;
    line-height: .94;
}

.app-hero__heading > p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #626579;
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.55;
}

.app-hero__panel {
    padding: 26px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(218, 220, 231, .85);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.app-hero__panel-label {
    margin: 0 0 13px;
    color: #777a8e;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.store-links {
    display: grid;
    gap: 9px;
}

.store-button {
    position: relative;
    display: grid;
    min-height: 67px;
    align-items: center;
    padding: 9px 15px;
    color: #fff;
    background: var(--night);
    border: 1px solid var(--night);
    border-radius: 16px;
    grid-template-columns: 40px 1fr 24px;
    gap: 11px;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.store-button:hover {
    background: #282b49;
    box-shadow: 0 12px 24px rgba(21, 23, 44, .18);
    transform: translateY(-2px);
}

.store-button--accent {
    color: var(--ink);
    background: color-mix(in srgb, var(--app-accent, var(--primary)) 12%, white);
    border-color: color-mix(in srgb, var(--app-accent, var(--primary)) 28%, white);
}

.store-button--accent:hover {
    background: color-mix(in srgb, var(--app-accent, var(--primary)) 18%, white);
}

.store-button__symbol {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 800;
}

.store-button__symbol svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.store-button--accent .store-button__symbol {
    background: rgba(255, 255, 255, .7);
}

.store-button > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.store-button small {
    margin-bottom: 3px;
    color: #b7b9ca;
    font-size: .59rem;
}

.store-button--accent small {
    color: #6f7286;
}

.store-button strong {
    font-size: .91rem;
    letter-spacing: -.02em;
}

.store-button__arrow {
    color: #b9bbca;
    transition: transform .2s ease;
}

.store-button--accent .store-button__arrow {
    color: var(--ink);
}

.store-button:hover .store-button__arrow {
    transform: translate(2px, -2px);
}

.external-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 14px 2px 0;
    color: #85889a;
    font-size: .65rem;
}

.availability-soon {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    background: var(--paper);
    border-radius: 15px;
}

.availability-soon > span {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--primary);
    background: #e6e7ff;
    border-radius: 11px;
    font-size: 1.3rem;
}

.availability-soon p {
    display: flex;
    margin: 0;
    color: #777a8c;
    flex-direction: column;
    font-size: .73rem;
    line-height: 1.5;
}

.availability-soon strong {
    color: var(--ink);
    font-size: .85rem;
}

.app-description {
    display: grid;
    padding: 75px 0;
    border-top: 1px solid #dfe1ea;
    border-bottom: 1px solid #dfe1ea;
    grid-template-columns: .33fr .67fr;
    gap: 70px;
}

.app-description__aside {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding-top: 11px;
    color: var(--app-accent, var(--primary));
    font-size: .71rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.app-description__aside i {
    width: 45px;
    height: 1px;
    margin-top: 9px;
    background: currentColor;
}

.app-description__content h2 {
    margin: 0 0 29px;
    font-size: clamp(2rem, 3.5vw, 3.55rem);
    font-weight: 820;
    letter-spacing: -.055em;
    line-height: 1.06;
}

.prose {
    color: #5f6277;
    font-size: 1rem;
    line-height: 1.85;
}

.app-screenshots {
    padding: 78px 0;
    border-bottom: 1px solid #dfe1ea;
}

.app-screenshots__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.app-screenshots__heading h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2rem, 3.7vw, 3.35rem);
    font-weight: 820;
    letter-spacing: -.055em;
    line-height: 1.06;
}

.app-screenshots__gallery {
    display: grid;
    align-items: start;
    justify-content: center;
    padding: 4px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
    gap: 24px;
}

.app-screenshot {
    display: grid;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    padding: 6px;
    background: #fff;
    border: 1px solid #dfe1ea;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(25, 28, 58, .08);
    place-items: center;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.app-screenshot:hover {
    border-color: color-mix(in srgb, var(--app-accent, var(--primary)) 42%, #dfe1ea);
    box-shadow: 0 20px 42px rgba(25, 28, 58, .16);
    transform: translateY(-3px);
}

.app-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

.related-section {
    padding: 83px 0 20px;
}

.related-section__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.related-section h2 {
    font-size: clamp(2rem, 3.7vw, 3.35rem);
}

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

.related-card {
    display: grid;
    min-width: 0;
    align-items: center;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    grid-template-columns: 54px minmax(0, 1fr) 25px;
    gap: 14px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.related-card:hover {
    border-color: color-mix(in srgb, var(--app-accent, var(--primary)) 34%, var(--line));
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.related-card > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.related-card small {
    overflow: hidden;
    color: var(--app-accent, var(--primary));
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.related-card strong {
    overflow: hidden;
    margin-top: 2px;
    font-size: .88rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-card > i {
    color: #878a9c;
    font-style: normal;
    transition: transform .2s ease;
}

.related-card:hover > i {
    transform: translateX(3px);
}

.back-row {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

/* Authentication error */
.auth-error {
    position: relative;
    display: grid;
    min-height: calc(100vh - var(--header-height));
    overflow: hidden;
    padding: 65px 20px;
    place-items: center;
    background:
        linear-gradient(rgba(91, 92, 226, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 92, 226, .035) 1px, transparent 1px),
        var(--paper);
    background-size: 54px 54px;
}

.auth-error__glow {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 340px;
    height: 340px;
    background: rgba(91, 92, 226, .13);
    border-radius: 50%;
    filter: blur(25px);
}

.auth-error__card {
    position: relative;
    z-index: 1;
    width: min(100%, 610px);
    padding: 48px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(218, 220, 232, .9);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.auth-error__symbol {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 30px;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border-radius: 20px;
    box-shadow: 0 13px 28px rgba(91, 92, 226, .25);
    font-size: 1.7rem;
    font-weight: 850;
}

.auth-error h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 850;
    letter-spacing: -.065em;
    line-height: 1;
}

.auth-error__card > p:not(.eyebrow) {
    margin: 23px 0 0;
    color: #696c80;
    line-height: 1.75;
}

.auth-error__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 31px;
}

/* Footer */
.site-footer {
    padding: 55px 0;
    color: #fff;
    background: #0e1020;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.site-footer__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
}

.brand--footer .brand__mark {
    box-shadow: none;
}

.brand--footer .brand__wording small {
    color: #8d90a5;
}

.site-footer__meta {
    text-align: right;
}

.site-footer__meta nav {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    margin-bottom: 12px;
}

.site-footer__meta a {
    color: #b3b6c7;
    font-size: .72rem;
    font-weight: 650;
    transition: color .2s ease;
}

.site-footer__meta a:hover {
    color: #fff;
}

.site-footer__meta p {
    margin: 0;
    color: #6e7187;
    font-size: .65rem;
}

@media (max-width: 1020px) {
    .hero__grid {
        min-height: 620px;
        grid-template-columns: 1.15fr .85fr;
        gap: 30px;
    }

    .hero__visual {
        min-height: 410px;
    }

    .signal-card {
        width: 355px;
        height: 370px;
    }

    .signal-card__orbit {
        width: 220px;
        height: 220px;
        margin-top: 8px;
    }

    .signal-card__copy {
        display: none;
    }

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

    .about-section__grid {
        gap: 60px;
    }

    .faq-section__grid {
        gap: 60px;
    }

    .app-hero {
        grid-template-columns: 1fr .72fr;
        gap: 45px;
    }

    .app-hero__identity {
        align-items: flex-start;
        flex-direction: column;
        gap: 26px;
    }
}

@media (max-width: 780px) {
    :root {
        --header-height: 74px;
    }

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

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

    .brand__mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .brand__wording small {
        display: none;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav > a:not(.button) {
        display: none;
    }

    .hero__grid {
        display: block;
        min-height: 0;
        padding-block: 70px 60px;
    }

    .hero h1 {
        font-size: clamp(3.15rem, 14vw, 5.3rem);
    }

    .hero__visual {
        width: min(100%, 480px);
        min-height: 420px;
        margin: 50px auto 0;
    }

    .signal-card {
        right: 7%;
        width: 82%;
    }

    .catalogue-section,
    .about-section,
    .faq-section {
        padding-block: 85px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .section-heading__count {
        margin: 0;
    }

    .catalogue-tools {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 38px;
    }

    .filter-row {
        margin-inline: -15px;
        padding: 0 15px 4px;
    }

    .about-section__grid,
    .faq-section__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .faq-section__heading {
        position: static;
    }

    .app-hero {
        padding: 55px 0 70px;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .app-hero__identity {
        align-items: center;
        flex-direction: row;
    }

    .app-icon--large {
        width: 112px;
        height: 112px;
        border-radius: 29px;
    }

    .app-description {
        padding: 60px 0;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .app-description__aside {
        padding: 0;
    }

    .app-screenshots {
        padding: 60px 0;
    }

    .app-screenshots__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

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

    .related-section__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__meta {
        width: 100%;
        text-align: left;
    }

    .site-footer__meta nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .main-nav .button {
        width: 43px;
        min-height: 43px;
        padding: 0;
    }

    .main-nav .button span:first-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .hero {
        background-size: 42px 42px;
    }

    .hero__grid {
        padding-top: 58px;
    }

    .hero__lead {
        margin-top: 24px;
        font-size: 1rem;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        margin-top: 28px;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__visual {
        min-height: 345px;
        margin-top: 45px;
    }

    .signal-card {
        top: 15px;
        right: 5%;
        width: 90%;
        height: 315px;
        padding: 21px;
        border-radius: 32px;
    }

    .signal-card__orbit {
        width: 194px;
        height: 194px;
    }

    .floating-pill--ios {
        right: -4px;
        bottom: 19px;
    }

    .floating-pill--web {
        bottom: -8px;
        left: 10px;
    }

    .section-heading h2,
    .about-section h2,
    .faq-section h2 {
        font-size: 2.55rem;
    }

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

    .app-card {
        min-height: 360px;
    }

    .benefit-list article {
        grid-template-columns: 40px 1fr;
    }

    .faq-list summary {
        font-size: .92rem;
    }

    .breadcrumbs {
        padding-top: 22px;
    }

    .app-hero {
        padding-top: 43px;
    }

    .app-hero__identity {
        align-items: flex-start;
        flex-direction: column;
        gap: 23px;
    }

    .app-icon--large {
        width: 96px;
        height: 96px;
        border-radius: 26px;
    }

    .app-hero h1 {
        font-size: clamp(2.85rem, 14vw, 4.5rem);
    }

    .app-hero__panel {
        padding: 18px;
        border-radius: 23px;
    }

    .app-screenshots__gallery {
        padding-inline: 0;
        grid-template-columns: minmax(0, 300px);
        gap: 18px;
    }

    .app-screenshot {
        border-radius: 22px;
    }

    .auth-error__card {
        padding: 31px 24px;
        border-radius: 25px;
    }

    .auth-error__actions {
        flex-direction: column;
    }

    .auth-error__actions .button {
        width: 100%;
    }

    .site-footer__meta nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
