@font-face {
    font-family: 'SF UI Display';
    src: url('../fonts/sf-ui-display-thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF UI Display';
    src: url('../fonts/sf-ui-display-ultralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF UI Display';
    src: url('../fonts/sf-ui-display-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF UI Display';
    src: url('../fonts/sf-ui-display-medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF UI Display';
    src: url('../fonts/sf-ui-display-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF UI Display';
    src: url('../fonts/sf-ui-display-semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF UI Display';
    src: url('../fonts/sf-ui-display-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF UI Display';
    src: url('../fonts/sf-ui-display-heavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF UI Display';
    src: url('../fonts/sf-ui-display-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
html {
    font-size: 0.052084vw;
    scroll-behavior: smooth;
    margin: 0 auto;
    padding: 0;
}
:root {
    --black: #161f33;
    --white: #ffffff;
    --light-blue: #e9f4fa;
    --main-blue: #0485c6;
    --muted: #61708f;
    --container: 1170rem;
    --radius-xl: 30rem;
    --radius-md: 10rem;
}
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'SF UI Display', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
    font-size: 16rem;
    line-height: 1.5;
    color: var(--black);
    background: var(--white);
}
a {
    color: inherit;
    text-decoration: none;
    font-size: 16rem;
}
p {
    margin: 0;
    font-size: 16rem;
    line-height: 1.6;
}
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.js-animate {
    opacity: 0;
    transform: translateY(40rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--animate-delay, 0s);
}

.js-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Заглушки */

.ph {
    display: block;
    background: linear-gradient(135deg, rgba(4, 133, 198, 0.20), rgba(22, 31, 51, 0.08));
    border: 1rem dashed rgba(22, 31, 51, 0.25);
    border-radius: 16rem;
}
/* Кнопки */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 14rem;
    border-radius: 10rem;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}
.btn--dark {
    background: var(--black);
    color: var(--white);
}
.btn--gradient {
    background: linear-gradient(90deg, #0485c6 0%, #1998d8 81.04%, #0485c6 100%);
    color: var(--black);
}
/* Тэг */

.tag {
    display: inline-flex;
    padding: 10rem 30rem;
    border-radius: 40rem;
    border: 1rem solid rgba(22, 31, 51, 0.5);
    font-size: 16rem;
    background: transparent;
    width: max-content;
}
.tag--on-dark {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}
.tag--light {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--black);
    background: rgba(255, 255, 255, 0.30);
}
/* HEADER */

.header {
    position: absolute;
    left: 0;
    top: 40rem;
    width: 100%;
    z-index: 10;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, top 0.25s ease;
}
.header--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(22, 31, 51, 0.9);
    box-shadow: 0 16rem 38rem rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12rem);
    padding: 16rem 0;
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 24rem;
}
.header__logo {
    display: inline-flex;
    align-items: center;
    gap: 10rem;
    color: var(--white);
    font-weight: 700;
}
.header__logo-img {
    height: 42rem;
    width: auto;
    display: block;
}
.header__logo--footer {
    color: var(--white);
    opacity: 0.9;
}
.header__logo-mark {
    width: 40rem;
    height: 40rem;
}
.header__nav {
    display: flex;
    gap: 40rem;
    align-items: center;
    margin-left: 40rem;
    flex: 1;
}
.header__nav-list {
    display: flex;
    align-items: center;
    gap: 40rem;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.header__nav-list .menu-item {
    margin: 0;
}
.header__nav-list a {
    color: var(--white);
    font-size: 16rem;
}
.header__link {
    color: var(--white);
    font-size: 16rem;
}
.header__burger {
    display: none;
    border: 0;
    background: transparent;
    padding: 8rem;
    cursor: pointer;
}
.header__burger-line {
    display: block;
    width: 26rem;
    height: 2rem;
    background: var(--white);
    border-radius: 2rem;
}
.header__burger-line+.header__burger-line {
    margin-top: 6rem;
}
/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(8, 75, 116, 0.25) 0%, rgba(11, 41, 63, 0.15) 36%, rgba(28, 55, 77, 0.15) 66%, rgba(255, 255, 255, 0.0) 100%);
    z-index: 2;
    pointer-events: none;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero__bg-ph {
    width: 100%;
    height: 800rem;
    border-radius: 0;
}
.hero__inner {
    position: relative;
    z-index: 3;
    padding-top: 160rem;
    padding-bottom: 80rem;
    min-height: 800rem;
    display: flex;
    flex-direction: column;
    gap: 24rem;
    justify-content: space-between;
}
.hero__lead {
    max-width: 500rem;
    font-size: 20rem;
    line-height: 28rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 4rem 26rem rgba(0, 0, 0, 0.42);
}
.hero__title {
    margin: 0;
    font-size: 128rem;
    line-height: 1.05;
    letter-spacing: -4rem;
}
.hero__subtitle {
    display: block;
    margin-top: 14rem;
    font-size: 40rem;
    font-weight: 400;
    letter-spacing: -1rem;
    color: rgba(255, 255, 255, 0.92);
}
.hero__about {
    margin-top: 32rem;
    display: flex;
    gap: 18rem;
    flex-direction: column;
    max-width: 500rem;
    padding: 22rem 0;
    border-radius: var(--radius-xl);
    border: 1rem solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14rem);
}
.hero__bot-container{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.hero__about .tag {
    border-color: var(--black);
    color: var(--black);
    opacity: .5;
    width: max-content;
}
.hero__about-text {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    color: var(--black);
}
.hero__about-title {
    font-size: 24rem;
    font-weight: 700;
    letter-spacing: -1rem;
}
.hero__about-desc {
    font-size: 24rem;
    letter-spacing: -1rem;
    opacity: 0.9;
}
.hero-card {
    position: absolute;
    right: 0rem;
    top: -160rem;
    width: 456rem;
    border-radius: 40rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.30), rgba(235, 235, 235, 0.30));
    border: 1rem solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(15rem);
    color: var(--black);
    padding: 32rem 30rem 30rem;
    display: flex;
    flex-direction: column;
    gap: 18rem;
    z-index: 2;
}
.hero-card__frame {
    display: none;
}
.hero-card__head {
    display: flex;
    align-items: flex-start;
    gap: 16rem;
    justify-content: space-between;
}
.hero-card__avatar-wrap {
    position: relative;
    display: inline-flex;
}
.hero-card__avatar {
    width: 70rem;
    height: 70rem;
    border-radius: 18rem;
    object-fit: cover;
}
.hero-card__person {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.hero-card__name {
    font-weight: 800;
    font-size: 22rem;
    color: var(--black);
}
.hero-card__status {
    position: absolute;
    right: -6rem;
    bottom: 0rem;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-card__status-text{
    color: #55DD4D;
    font-size: 16rem;
    font-style: normal;
    font-weight: 500;
}
.hero-card__status-dot {
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: #55dd4d;
    box-shadow: 0 0 0 0 rgba(85, 221, 77, 0.35);
    animation: pulse 1.6s ease-out infinite;
    border: 3rem solid var(--white);
}
.hero-card__chat {
    width: 46rem;
    height: 46rem;
    border-radius: 10rem;
    border: 1rem solid rgba(255, 255, 255, 0.55);
    background: rgba(232, 243, 250, 0.30);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-card__chat-icon {
    width: 18rem;
    height: 18rem;
    border-radius: 6rem;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(85, 221, 77, 0.35); }
    70% { box-shadow: 0 0 0 12rem rgba(85, 221, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(85, 221, 77, 0); }
}
.hero-card__id {
    font-size: 15rem;
    letter-spacing: -0.2rem;
}
.hero-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12rem;
}
.hero-card__stat {
    flex: 1 1 40%;
    background: rgba(232, 243, 250, 0.30);
    border: 1rem solid rgba(255, 255, 255, 0.55);
    border-radius: 18rem;
    padding: 16rem 18rem;
    min-width: 180rem;
}
.hero-card__stat--full {
    flex-basis: 100%;
    background: rgba(205, 224, 235, 0.30);
}
.hero-card__stat-label {
    font-weight: 700;
}
.hero-card__stat-value {
    margin-top: 10rem;
    font-weight: 900;
    font-size: 22rem;
    color: #213a4a;
}
.hero-card__stat-value--md {
    font-size: 20rem;
}
.hero-card__email {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.hero-card__email-label {
    letter-spacing: 2rem;
    font-weight: 900;
    font-size: 14rem;
    color: #84878a;
}
.hero-card__email-value {
    font-weight: 900;
    font-size: 18rem;
    color: #213a4a;
}
/* SECTION базово */

.section {
    padding: 140rem 0;
}
.section--dark {
    background: var(--black);
    color: var(--white);
}
.section__head {
    display: flex;
    gap: 60rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80rem;
    flex-wrap: wrap;
}
.section__head--split {
    align-items: flex-start;
}
.section__head--on-dark .tag {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}
.section__title {
    margin: 10rem 0 0;
    font-size: 96rem;
    font-weight: 500;
    letter-spacing: -4rem;
}
.section__title--light {
    color: var(--white);
}
.section__subtitle {
    font-size: 24rem;
    font-weight: 700;
    margin-bottom: 10rem;
}
.section__subtitle--light {
    color: var(--white);
}
.section__text {
    font-size: 24rem;
    line-height: 1.25;
    color: var(--black);
    font-weight: 400;
}
.section__text--light {
    color: var(--white);
    opacity: 0.85;
}
.section__intro {
    max-width: 490rem;
    display: flex;
    flex-direction: column;
    gap: 10rem;
}
.kpi .muted {
    color: var(--muted);
}
/* FEATURE */

.feature {
    display: flex;
    gap: 30rem;
    align-items: stretch;
    margin-top: 80rem;
    flex-wrap: wrap;
}
.feature--rtl {
    flex-direction: row-reverse;
}
.feature__side {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 40rem 30rem;
    max-width: 370rem;
    display: flex;
    flex-direction: column;
    gap: 40rem;
    justify-content: space-between;
}
.feature__side-title {
    font-size: 32rem;
    font-weight: 600;
}
.feature__card {
    background: var(--light-blue);
    border-radius: var(--radius-xl);
    padding: 40rem;
    min-height: 360rem;
    flex: 1;
    display: flex;
    gap: 24rem;
    position: relative;
}
.feature__list {
    display: flex;
    flex-direction: column;
    gap: 16rem;
    max-width: 320rem;
    justify-content: space-between;
}
.feature__list-bot{
    display: flex;
    flex-direction: column;
    gap: 16rem;
}
.feature__item {
    font-size: 20rem;
    line-height: 28rem;
}
.feature__media {
    display: flex;
    gap: 20rem;
    flex-wrap: wrap;
    margin-top: auto;
}
.feature__image {
    width: 370rem;
    max-width: 100%;
    border-radius: 24rem;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}
.feature__icon {
    width: 410rem;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
}
.feature__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.feature__ph {
    border-radius: 24rem;
}
.feature__ph--lg {
    width: 300rem;
    height: 260rem;
}
.feature__ph--md {
    width: 220rem;
    height: 260rem;
}
/* Recipes */

.recipes {
    margin-top: 60rem;
    background: var(--light-blue);
    border-radius: var(--radius-xl);
    padding: 60rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14rem;
}
.recipes--on-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1rem solid rgba(255, 255, 255, 0.15);
}
.recipes__title {
    font-size: 56rem;
    font-weight: 700;
}
.recipes__title--light {
    color: var(--white);
}
.recipes__subtitle {
    font-size: 24rem;
    font-weight: 800;
}
.recipes__subtitle--light {
    color: var(--white);
}
.recipes__text {
    font-size: 24rem;
    width: 510rem;
}
.recipes__text--light {
    color: var(--white);
    opacity: 0.85;
}
.recipes__ph {
    position: absolute;
    right: 40rem;
    bottom: 0;
    width: 420rem;
    height: 490rem;
    border-radius: 30rem;
}
.recipes__icon {
    position: absolute;
    width: 520rem;
    height: auto;
    right: 0;
    bottom: 0;
}
.recipes__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.recipes__image{
    width: 560rem;
    height: auto;
    display: block;
    position: absolute;
    right: -40rem;
    bottom: 0;
    z-index: 2;
}
.recipes__logo {
    position: absolute;
    left: 50rem;
    bottom: 36rem;
    padding: 12rem 16rem;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 14rem;
    box-shadow: 0 10rem 30rem rgba(0, 0, 0, 0.08);
}
.recipes__logo img {
    width: 150rem;
    height: auto;
    display: block;
}
/* COACH */

.coach {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(120% 120% at 80% 20%, rgba(4, 133, 198, 0.28), rgba(5, 10, 22, 0.9) 46%), #050815;
    padding: 140rem 0;
    isolation: isolate;
}

.coach__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 20% 10%, rgba(25, 152, 216, 0.16), rgba(5, 8, 21, 0.6) 48%);
    z-index: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.coach__inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 70rem;
    align-items: center;
    flex-wrap: wrap;
}

.coach__content {
    flex: 1 1 520rem;
    display: flex;
    flex-direction: column;
    gap: 40rem;
}

.coach__head {
    position: relative;
    padding-right: 160rem;
    min-height: 220rem;
}

.coach__title {
    margin: 0;
    font-size: 96rem;
    font-weight: 500;
    letter-spacing: -4rem;
}

.coach__ghost {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 80rem;
    letter-spacing: -4rem;
    font-weight: 300;
    opacity: 0.16;
    text-transform: lowercase;
}

.coach__text {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    max-width: 640rem;
    margin-top: 30rem;
}

.coach__subtitle {
    font-size: 24rem;
    font-weight: 700;
    letter-spacing: -1rem;
}

.coach__desc {
    font-size: 24rem;
    letter-spacing: -1rem;
    line-height: 1.25;
    opacity: 0.9;
}

.coach__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 18rem;
    max-width: 640rem;
}

.coach-card {
    background: rgba(233, 244, 250, 0.95);
    color: var(--black);
    border-radius: var(--radius-md);
    padding: 20rem;
    display: flex;
    flex-direction: column;
    gap: 16rem;
    min-height: 220rem;
    flex: 1 1 280rem;
    min-width: 260rem;
    box-shadow: 0 18rem 48rem rgba(4, 12, 26, 0.25);
}

.coach-card__tag {
    align-self: flex-start;
}

.coach-card__title {
    font-size: 20rem;
    font-weight: 800;
    letter-spacing: -1rem;
    line-height: 26rem;
}

.coach-card__text {
    font-size: 16rem;
    letter-spacing: -1rem;
    line-height: 24rem;
    color: #2a3145;
}

.coach__visual {
    position: relative;
    flex: 1 1 320rem;
    min-width: 300rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40rem 20rem;
}

.coach__glow {
    position: absolute;
    width: 520rem;
    height: 520rem;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, rgba(46, 173, 224, 0.55), rgba(8, 16, 35, 0.1));
    filter: blur(36rem);
    opacity: 0.7;
    transform: translateY(20rem);
    z-index: 1;
}

.coach__image,
.coach__image-ph {
    position: relative;
    width: 420rem;
    max-width: 100%;
    height: 640rem;
    z-index: 2;
    border-radius: 32rem;
}

.coach__image {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow: 0 20rem 40rem rgba(0, 0, 0, 0.45);
}

.coach__image-ph {
    background: rgba(233, 244, 250, 0.1);
    border: 1rem dashed rgba(255, 255, 255, 0.35);
}
/* RIBBON */

.ribbon {
    background: #0b0b0d;
    padding: 30rem 0;
    color: var(--white);
}
.ribbon__inner {
    display: flex;
    gap: 18rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ribbon__item {
    padding: 10rem 30rem;
    border-radius: 40rem;
    border: 1rem solid rgba(255, 255, 255, 0.7);
    opacity: 0.9;
    font-weight: 300;
}
/* BIGSHOT */

.bigshot {
    position: relative;
    height: 700rem;
    overflow: hidden;
    color: var(--white);
}
.bigshot__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.bigshot__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bigshot__inner {
    position: relative;
    z-index: 2;
    height: 700rem;
    padding: 60rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bigshot__logo {
    width: 170rem;
    height: 40rem;
    display: flex;
    align-items: center;
}
.bigshot__logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6rem 18rem rgba(0, 0, 0, 0.25));
}
.bigshot__note {
    max-width: 300rem;
    font-size: 24rem;
}
.bigshot__title {
    font-size: 72rem;
    font-weight: 900;
    line-height: 0.95;
}
/* CLUB */

.club {
    display: flex;
    flex-direction: column;
    gap: 40rem;
}

.club__head {
    display: flex;
    flex-direction: row;
    gap: 122rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.club__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    width: 578rem;
}

.club__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
    padding: 10rem 30rem;
    border: 1rem solid rgba(22, 31, 51, 0.5);
    border-radius: 40rem;
    color: var(--black);
    font-family: "SfUiDisplay-Regular", sans-serif;
    font-size: 16rem;
}

.club__title {
    color: var(--black);
    font-family: "SfUiDisplay-Medium", sans-serif;
    font-size: 96rem;
    font-weight: 500;
    letter-spacing: -6rem;
    line-height: 1.05;
    margin: 25rem 0;
}

.club__intro {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    width: 470rem;
}

.club__subtitle {
    color: var(--black);
    font-family: "SfUiDisplay-Semibold", sans-serif;
    font-size: 24rem;
    font-weight: 600;
    letter-spacing: -1rem;
}

.club__text {
    font-family: "SfUiDisplay-Regular", sans-serif;
    font-size: 24rem;
    letter-spacing: -1rem;
    color: var(--black);
}

.club__body {
    position: relative;
    border-radius: var(--radius-xl);
    min-height: 700rem;
}

.club__bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 340rem;
    background: var(--light-blue);
    border-radius: 30rem;
    z-index: 1;
}

.club__media {
    position: relative;
    z-index: 2;
}

.club__media img, .club__media .ph {
    width: 100%;
    height: 700rem;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
}

.club__badge {
    position: absolute;
    padding: 10rem 30rem;
    border-radius: 40rem;
    border: 1rem solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6rem);
    color: var(--black);
    box-shadow: 0 0 10rem rgba(255, 255, 255, 0.6);
    font-size: 20rem;
    font-family: "SfUiDisplay-Regular", sans-serif;
}
/* ADMIN */

.admin {
    padding: 80rem 0 140rem;
}
.admin__inner {
    position: relative;
}
.admin__info {
    background: var(--black);
    color: var(--white);
    border-radius: 30rem 30rem 0 30rem;
    padding: 50rem;
    width: 670rem;
    display: flex;
    flex-direction: column;
    gap: 24rem;
    flex: 1 1 640rem;
}
.admin__title {
    font-size: 56rem;
    font-weight: 900;
    line-height: 1.02;
    white-space: pre-line;
}
.admin__foot {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10rem;
}
.admin__subtitle {
    font-size: 24rem;
    font-weight: 900;
}
.admin__text {
    font-size: 24rem;
    white-space: pre-line;
}
.admin__logo {
    margin-top: 8rem;
    display: inline-flex;
    align-items: center;
    padding: 12rem 14rem;
    border-radius: 16rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1rem solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8rem 20rem rgba(0, 0, 0, 0.18);
}
.admin__logo img {
    height: 44rem;
    width: auto;
    display: block;
}

.admin__media {
    width: auto;
    height: 638rem;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
    position: absolute;
    right: -70rem;
    top: 0;
}
/* CTA */

.cta {
    background: var(--main-blue);
    color: var(--white);
    padding: 50rem 0;
}
.cta__inner {
    display: flex;
    gap: 30rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cta__text {
    font-size: 24rem;
    font-weight: 800;
    max-width: 444rem;
    margin-bottom: 40rem;
}
.cta__title {
    font-size: 72rem;
    letter-spacing: -4rem;
    line-height: 1.02;
}
/* VIDEO */

.video {
    padding: 90rem 0 140rem;
}
.video__inner {
    display: flex;
    flex-direction: column;
    gap: 40rem;
}
.video__head {
    display: flex;
    flex-wrap: wrap;
    gap: 60rem;
    align-items: center;
    justify-content: space-between;
}
.video__title {
    font-size: 72rem;
    font-weight: 900;
    letter-spacing: -4rem;
    line-height: 1.05;
}
.video__descr {
    max-width: 520rem;
    display: flex;
    flex-direction: column;
    gap: 10rem;
}
.video__subtitle {
    font-size: 24rem;
    font-weight: 900;
}
.video__text {
    font-size: 24rem;
}
.video__frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #02060f;
}
.video__frame img, .video__frame .ph {
    width: 100%;
    height: 600rem;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
}
.video__player {
    width: 100%;
    height: 600rem;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
    background: #02060f;
}
.video__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68rem;
    height: 68rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.video__play--hidden {
    opacity: 0;
    pointer-events: none;
}
.video__play-icon {
    width: 15rem;
    height: 19rem;
}
.video__play-icon svg{
    width: 15rem;
    height: 19rem;
}
/* FOOTER */

.footer {
    background: radial-gradient(90% 120% at 20% 10%, rgba(4, 133, 198, 0.24), transparent 48%),
    radial-gradient(80% 120% at 90% 20%, rgba(255, 255, 255, 0.06), transparent 52%),
    #0b1c33;
    color: var(--white);
    padding: 60rem 0 46rem;
}
.footer__inner {
    display: flex;
    gap: 48rem;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.footer__brand {
    max-width: 420rem;
    display: flex;
    flex-direction: column;
    gap: 16rem;
}
.footer__description {
    font-size: 20rem;
    letter-spacing: -1rem;
    opacity: 0.6;
}
.footer__form {
    display: flex;
    flex-direction: column;
    gap: 20rem;
    width: 280rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
.footer__form-text {
    color: var(--muted);
    font-size: 16rem;
    letter-spacing: -1rem;
    line-height: 1.5;
}
.footer__form-text strong {
    color: var(--white);
    font-weight: 800;
}
.footer__fields {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    width: 100%;
}
.footer__field {
    display: flex;
    align-items: center;
    background: #232f4a;
    border: 1rem solid #344467;
    border-radius: 12rem;
    padding: 12rem 14rem;
    color: #e7edf7;
    font-weight: 600;
}
.footer__input {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 0;
    color: #f3f7ff;
    font-size: 16rem;
    letter-spacing: -1rem;
}
.footer__input:focus {
    outline: none;
}
.footer__input::placeholder {
    color: var(--muted);
    opacity: 1;
}
.footer__field:focus-within {
    border-color: #0485c6;
    box-shadow: 0 0 0 2rem rgba(4, 133, 198, 0.18);
}
.footer__submit {
    background: linear-gradient(90deg, #0485c6 0%, #1998d8 81.04%, #0485c6 100%);
    color: var(--black);
    border: 0;
    border-radius: 12rem;
    padding: 12rem 14rem;
    font-weight: 700;
    font-size: 16rem;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 10rem 30rem rgba(4, 133, 198, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16rem 36rem rgba(4, 133, 198, 0.3);
}
.footer__notice {
    margin-top: 8rem;
    font-size: 14rem;
    color: #c0e2f8;
}
.footer__notice--error {
    color: #ffb4b4;
}
.footer__nav, .footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 18rem;
    min-width: 160rem;
}
.footer__contact {
    color: var(--white);
    text-decoration: none;
}
.footer__contact:hover {
    color: #c0e2f8;
}
.footer__nav-title {
    font-weight: 900;
    opacity: 0.8;
}
.footer__nav-list, .footer__contacts-list {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    opacity: 0.55;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer__nav-items {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer__nav-link {
    color: var(--white);
}
.footer__nav-items a {
    color: var(--white);
    text-decoration: none;
}
.footer__nav-link {
    display: inline-block;
}
.footer__social {
    display: flex;
    gap: 12rem;
    align-items: center;
}
.footer__social-link {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.footer__social-link:hover {
    transform: translateY(-2rem);
}
/* CLUB badge positions */

.pos-top-left {
    left: 21rem;
    top: 250rem;
}
.pos-top-right {
    left: 595rem;
    top: 242rem;
}
.pos-bottom-left {
    left: 70rem;
    top: 538rem;
}
.pos-bottom-mid {
    left: 352rem;
    top: 425rem;
}
.pos-bottom-right {
    left: 728rem;
    top: 459rem;
}

.tag__hero-01,
.tag__hero-02,
.tag__hero-03{
    position: absolute;
}

.tag__hero-01{
    top: 260rem;
    right: 0;
}
.tag__hero-02{
    top: 330rem;
    right: 45%;
}
.tag__hero-03{
    top: 475rem;
    left: 0;
}

.team__badge--1{
    top: 40rem;
    left: 20rem;
}
.team__badge--2{
    top: 40%;
    left: 70rem;
}
.team__badge--3{
    top: 220rem;
    left: 350rem;
}
.team__badge--4{
    top: 40rem;
    right: 270rem;
}
.team__badge--5{
    top: 250rem;
    right: 250rem;
}

.form-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20rem;
    background: rgba(22, 31, 51, 0.7);
    backdrop-filter: blur(6rem);
    z-index: 2000;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.form-popup--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.form-popup__box {
    width: 100%;
    max-width: 520rem;
    background: linear-gradient(180deg, rgba(14, 31, 54, 0.96) 0%, rgba(26, 48, 77, 0.94) 100%);
    border: 1rem solid rgba(255, 255, 255, 0.08);
    border-radius: 20rem;
    box-shadow: 0 24rem 80rem rgba(7, 28, 55, 0.6);
    padding: 32rem 40rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16rem;
    text-align: center;
    color: #e7edf7;
}

.form-popup__icon {
    width: 74rem;
    height: 74rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(4, 133, 198, 0.12);
    color: #29b36a;
    border: 1rem solid rgba(41, 179, 106, 0.35);
    font-size: 28rem;
    font-weight: 800;
}

.form-popup__subtitle {
    font-size: 16rem;
    text-transform: uppercase;
    letter-spacing: 2rem;
    opacity: 0.8;
}

.form-popup__title {
    font-size: 28rem;
    font-weight: 800;
    letter-spacing: -0.5rem;
}

.form-popup__text {
    margin: 0;
    color: #cdd9ec;
    line-height: 1.6;
}

.form-popup__button {
    margin-top: 8rem;
    padding: 12rem 22rem;
    border: 0;
    border-radius: 12rem;
    background: linear-gradient(90deg, #0485c6 0%, #1998d8 81.04%, #0485c6 100%);
    color: #0c1a30;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14rem 40rem rgba(4, 133, 198, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-popup__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18rem 46rem rgba(4, 133, 198, 0.32);
}

/* Адаптив */

@media (max-width: 650px) {
    html{
        font-size: 0.1666666vw;
    }
    .container {
        padding: 0 16rem;
    }
    .section {
        padding: 80rem 0;
    }
    .form-popup__box {
        padding: 28rem 24rem;
        gap: 14rem;
    }
    .form-popup__title {
        font-size: 24rem;
    }
    .form-popup__text {
        font-size: 14rem;
    }
    .form-popup__icon {
        width: 64rem;
        height: 64rem;
        font-size: 24rem;
    }
    .header__nav {
        display: none;
        position: absolute;
        left: 16rem;
        right: 16rem;
        top: 70rem;
        flex-direction: column;
        gap: 12rem;
        background: rgba(22, 31, 51, 0.92);
        border: 1rem solid rgba(255, 255, 255, 0.18);
        border-radius: 16rem;
        padding: 14rem;
    }
    .header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 12rem;
    }
    .header__nav--open {
        display: flex;
    }
    .header__burger {
        display: inline-flex;
        flex-direction: column;
    }
    .section__head {
        gap: 40rem;
        flex-direction: column;
    }
    .section__title,
    .club__title {
        font-size: 56rem;
        letter-spacing: -2rem;
    }
    .hero__inner {
        min-height: auto;
        padding: 120rem 0 80rem;
        gap: 18rem;
    }
    .hero__lead {
        font-size: 18rem;
        line-height: 24rem;
    }
    .hero__title {
        font-size: 72rem;
    }
    .hero__subtitle {
        font-size: 28rem;
    }
    .hero__bot-container {
        flex-direction: column;
        gap: 20rem;
    }
    .hero__about {
        padding: 18rem;
    }
    .tag__hero-01,
    .tag__hero-02,
    .tag__hero-03 {
        position: static;
        margin-top: 12rem;
    }
    .hero-card {
        position: static;
        width: 100%;
        background: linear-gradient(180deg, rgb(236 228 228), rgb(235 235 235));
    }
    .section__intro,
    .club__intro,
    .video__descr {
        max-width: 100%;
    }
    .feature,
    .feature--rtl {
        flex-direction: column;
    }
    .feature__card {
        flex-direction: column;
        min-height: auto;
        overflow: hidden;
    }
    .feature__image {
        width: 260rem;
        position: absolute;
        right: -30rem;
        bottom: 0;
    }
    .recipes__ph{
        position: static;
        height: 300rem;
    }
    .feature__icon{
        position: absolute;
        width: 230rem;
    }
    .recipes {
        padding: 30rem 24rem;
        overflow: hidden;
    }
    .recipes__text,
    .recipes__subtitle,
    .recipes__title {
        width: 100%;
        font-size: 22rem;
    }
    .recipes__image {
        width: 430rem;
        margin-top: 12rem;
        bottom: 0;
    }
    .recipes__logo {
        position: static;
        margin-top: 14rem;
    }
    .coach {
        padding: 80rem 0;
    }
    .coach__inner {
        flex-direction: column;
        gap: 32rem;
    }
    .coach__cards {
        flex-direction: column;
    }
    .club__body {
        min-height: auto;
    }
    .club__media img, .club__media .ph {
        height: auto;
    }
    .admin__inner {
        display: flex;
        flex-direction: column;
        gap: 20rem;
    }
    .admin__info {
        width: 100%;
        padding: 32rem;
    }
    .admin__media {
        position: static;
        width: 100%;
        height: auto;
    }
    .cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta__title {
        font-size: 48rem;
    }
    .footer__inner {
        gap: 32rem;
        justify-content: center;
    }
    .footer__nav, .footer__contacts {
        min-width: 45%;
    }
    .footer__copy {
        margin-top: 14rem;
    }
    .feature__side{
        max-width: 100%;
    }
    .coach__title{
        font-size: 72rem;
    }
    .bigshot{
        height: 520rem;
    }
    .bigshot__inner{
        padding: 36rem 16rem;
        height: 520rem;
    }
    .club__head{
        gap: 36rem;
    }
    .club__badge{
        display: none;
    }
    .admin {
        padding: 80rem 0 60rem;
    }
    .video__player{
        height: 360rem;
    }
    .footer__brand{
        max-width: 100%;
        align-items: center;
    }
    .footer__form{
        width: 500rem;
    }
    .footer__form-text{
        text-align: center;
    }
    .footer__description{
        text-align: center;
    }
    .hero{
        padding: 0 16rem;
    }
    .hero::before{
        background: linear-gradient(140deg, rgba(8, 75, 116, 0.25) 0%, rgb(11 41 63 / 43%) 36%, rgb(28 55 77 / 36%) 66%, rgba(255, 255, 255, 0.0) 100%);
    }
}
