nav img { mix-blend-mode: screen; }

.nav-logo {
  height: 64px;
  width: auto;
  mix-blend-mode: lighten;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.hero-gradient {
    background: linear-gradient(90deg, rgba(16,20,21,1) 0%, rgba(16,20,21,0.8) 50%, rgba(16,20,21,0) 100%);
}

@media (max-width: 768px) {
    .hero-gradient {
        background: linear-gradient(0deg, rgba(16,20,21,1) 30%, rgba(16,20,21,0.4) 100%);
    }
}

.glass-card {
    background: rgba(29, 32, 34, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(143, 144, 151, 0.1);
}

.mobile-menu-close {
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.mobile-menu {
    position: fixed;
    inset: auto 0 auto auto;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    background: #000;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(68,71,77,0.4);
}

.mobile-menu__icon-button {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.mobile-menu__icon-button .material-symbols-outlined {
    font-size: 34px;
}

.mobile-menu__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.mobile-menu__logo img {
    width: min(150px, 42vw);
    height: 72px;
    object-fit: contain;
    object-position: center;
}

.mobile-menu__content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 36px 48px;
}

.mobile-menu__top-link,
.mobile-menu__group summary,
.mobile-menu__panel a,
.mobile-menu__subgroup summary {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.mobile-menu__top-link,
.mobile-menu__group summary {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 17px;
    line-height: 1.1;
}

.mobile-menu__top-link {
    color: #e9c349;
}

.mobile-menu__group {
    border: 0;
}

.mobile-menu__group summary,
.mobile-menu__subgroup summary {
    list-style: none;
    cursor: pointer;
}

.mobile-menu__group summary::-webkit-details-marker,
.mobile-menu__subgroup summary::-webkit-details-marker {
    display: none;
}

.mobile-menu__group[open] > summary,
.mobile-menu__subgroup[open] > summary {
    color: #e9c349;
}

.mobile-menu__group summary .material-symbols-outlined,
.mobile-menu__subgroup summary .material-symbols-outlined {
    transition: transform 180ms ease;
}

.mobile-menu__group[open] > summary .material-symbols-outlined,
.mobile-menu__subgroup[open] > summary .material-symbols-outlined {
    transform: rotate(180deg);
}

.mobile-menu__panel {
    display: grid;
    gap: 24px;
    padding: 4px 0 28px 30px;
}

.mobile-menu__group:not([open]) > .mobile-menu__panel,
.mobile-menu__subgroup:not([open]) > .mobile-menu__panel {
    display: none;
}

.mobile-menu__panel a {
    color: #f4f4f4;
    display: block;
    font-size: 15px;
    line-height: 1.2;
}

.mobile-menu__panel--long {
    gap: 22px;
}

.mobile-menu__panel--long a {
    max-width: 290px;
}

.mobile-menu__subgroup summary {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f4f4f4;
    font-size: 15px;
}

.mobile-menu__panel--nested {
    padding: 18px 0 0 24px;
    gap: 18px;
}

body.menu-open {
    overflow: hidden;
}

.blog-link {
    display: flex;
    min-height: 112px;
    align-items: flex-end;
    padding: 24px;
    border: 1px solid rgba(143, 144, 151, 0.24);
    border-radius: 8px;
    background: rgba(11, 15, 16, 0.6);
    color: #e0e3e5;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.25;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.blog-link:hover {
    border-color: #e9c349;
    color: #e9c349;
    transform: translateY(-2px);
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(143, 144, 151, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e0e3e5;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-icon:hover {
    background: #e9c349;
    border-color: #e9c349;
    color: #3c2f00;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.simple-page {
    min-height: 100vh;
    margin: 0;
    background: #101415;
    color: #e0e3e5;
    font-family: "Hanken Grotesk", sans-serif;
}

.simple-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    background: rgba(16, 20, 21, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(68, 71, 77, 0.7);
}

.simple-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #e9c349;
    text-decoration: none;
    font-family: "Bodoni Moda", serif;
    font-size: 24px;
    font-weight: 700;
}

.simple-brand img {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
}

.simple-nav__links {
    display: none;
    align-items: center;
    gap: 22px;
}

.simple-nav__links a {
    color: #c5c6cd;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.simple-nav__links a:hover,
.simple-nav__links a[aria-current="page"] {
    color: #e9c349;
}

.simple-menu-button {
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.simple-hero {
    min-height: 44vh;
    display: flex;
    align-items: flex-end;
    padding: 96px 16px 48px;
    background: linear-gradient(180deg, rgba(16, 20, 21, 0.1), #101415), url("Coach Amara.jpg") center 20% / cover;
}

.simple-hero__inner,
.simple-content,
.simple-footer__inner {
    width: min(100%, 920px);
    margin: 0 auto;
}

.simple-kicker {
    color: #e9c349;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
}

.simple-title {
    margin: 0;
    color: #fff;
    font-family: "Bodoni Moda", serif;
    font-size: clamp(38px, 12vw, 72px);
    line-height: 1.02;
}

.simple-lead {
    max-width: 680px;
    margin: 18px 0 0;
    color: #c5c6cd;
    font-size: 18px;
    line-height: 1.65;
}

.simple-content {
    padding: 48px 16px 72px;
}

.simple-grid {
    display: grid;
    gap: 18px;
}

.simple-card {
    border: 1px solid rgba(143, 144, 151, 0.22);
    border-radius: 8px;
    background: rgba(29, 32, 34, 0.72);
    padding: 24px;
}

.simple-card h2,
.simple-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-family: "Bodoni Moda", serif;
    line-height: 1.15;
}

.simple-card p,
.simple-card li,
.simple-article p {
    color: #c5c6cd;
    line-height: 1.65;
}

.simple-card ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.simple-article {
    max-width: 760px;
}

.simple-article h2 {
    margin: 34px 0 10px;
    color: #fff;
    font-family: "Bodoni Moda", serif;
    font-size: 30px;
}

.simple-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 8px;
    background: #e9c349;
    color: #3c2f00;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
}

.simple-footer {
    border-top: 1px solid rgba(68, 71, 77, 0.7);
    padding: 44px 16px;
    background: #0b0f10;
    text-align: center;
}

.simple-footer .social-row {
    justify-content: center;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (min-width: 769px) {
    .simple-nav {
        padding: 16px 64px;
    }

    .simple-nav__links {
        display: flex;
    }

    .simple-menu-button {
        display: none;
    }

    .simple-hero {
        padding-left: 64px;
        padding-right: 64px;
    }

    .simple-content {
        padding-left: 64px;
        padding-right: 64px;
    }

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

.blog-card {
    background: rgba(13,16,17,0.8);
    border: 1px solid rgba(68,71,77,0.4);
    transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
    border-color: rgba(233,195,73,0.5);
    transform: translateY(-3px);
}

.blog-index-grid {
    width: min(100% - 32px, 1080px);
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.blog-topic-card {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    padding: 24px;
    border: 1px solid rgba(143, 144, 151, 0.22);
    border-radius: 14px;
    background: rgba(13, 16, 17, 0.82);
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.blog-topic-card:hover {
    border-color: rgba(233, 195, 73, 0.65);
    background: rgba(29, 32, 34, 0.92);
    transform: translateY(-3px);
}

.blog-topic-card h2,
.blog-topic-card h3 {
    margin: 0;
    color: #fff;
    font-family: "Bodoni Moda", serif;
    line-height: 1.12;
}

.blog-topic-card h2 {
    font-size: 30px;
}

.blog-topic-card h3 {
    font-size: 22px;
}

.blog-topic-card p {
    margin: 12px 0 0;
    color: #c5c6cd;
    line-height: 1.55;
}

.blog-topic-card__button {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    background: #e9c349;
    color: #3c2f00;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.related-blog-topics {
    width: min(100% - 32px, 920px);
    margin: 0 auto 72px;
    padding-top: 8px;
}

.related-blog-topics__header {
    margin-bottom: 18px;
}

.related-blog-topics__header p {
    margin: 0 0 8px;
    color: #e9c349;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.related-blog-topics__header h2 {
    margin: 0;
    color: #fff;
    font-family: "Bodoni Moda", serif;
    font-size: 32px;
    line-height: 1.1;
}

.related-blog-topics__grid {
    display: grid;
    gap: 14px;
}

@media (min-width: 769px) {
    .blog-index-grid {
        width: min(100% - 128px, 1080px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .related-blog-topics__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .related-blog-topics .blog-topic-card {
        min-height: 180px;
        padding: 20px;
    }
}

/* Entrance animations */
.fade-up {
    opacity: 0; 
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards;
}

.fade-up-d1 { animation-delay: 0.1s; }

.fade-up-d2 { animation-delay: 0.25s; }

.fade-up-d3 { animation-delay: 0.4s; }

.fade-up-d4 { animation-delay: 0.55s; }

@keyframes fadeUp {
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

.menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.menu-btn span:nth-child(2) {
  width: 65%;
  align-self: flex-end;
}

.menu-btn.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 100%;
}

.menu-btn.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-btn.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 100%;
}

.mobile-menu__bar {
    position: relative;
}

.mobile-menu__bar .mobile-menu-close {
    display: inline-flex;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: #e0e3e5;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(233,195,73,0.18);
    border-radius: 999px;
    transition: background 180ms ease, transform 180ms ease, color 180ms ease;
    z-index: 20;
}

.mobile-menu__bar .mobile-menu-close:hover {
    background: rgba(233,195,73,0.12);
    color: #e9c349;
    transform: scale(1.05);
}


.mobile-menu-close-fixed {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e0e3e5;
    background: transparent;
    border: none;
    z-index: 110;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
}
.mobile-menu-close-fixed.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.community-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 12%, rgba(233, 195, 73, 0.18), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(78, 222, 163, 0.12), transparent 24%),
        linear-gradient(180deg, #0b0f10 0%, #101415 42%, #0b0f10 100%);
}

.community-hero {
    width: min(100% - 32px, 1120px);
    min-height: calc(100svh - 96px);
    margin: 0 auto;
    display: grid;
    align-items: center;
    gap: 32px;
    padding: 48px 0 72px;
}

.community-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(233, 195, 73, 0.32);
    border-radius: 999px;
    background: rgba(233, 195, 73, 0.08);
    color: #e9c349;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.community-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4edea3;
    box-shadow: 0 0 18px rgba(78, 222, 163, 0.75);
}

.community-title {
    max-width: 780px;
    margin: 20px 0 18px;
    color: #fff;
    font-family: "Bodoni Moda", serif;
    font-size: clamp(42px, 12vw, 86px);
    line-height: 0.98;
}

.community-title span {
    color: #e9c349;
}

.community-lead {
    max-width: 650px;
    margin: 0;
    color: #c5c6cd;
    font-size: 18px;
    line-height: 1.7;
}

.community-shell {
    border: 1px solid rgba(143, 144, 151, 0.24);
    border-radius: 18px;
    background: rgba(13, 16, 17, 0.72);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.community-shell__header {
    padding: 24px;
    border-bottom: 1px solid rgba(68, 71, 77, 0.7);
    background: rgba(29, 32, 34, 0.72);
}

.community-shell__header p {
    margin: 0 0 8px;
    color: #e9c349;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.community-shell__header h2 {
    margin: 0;
    color: #fff;
    font-family: "Bodoni Moda", serif;
    font-size: 30px;
    line-height: 1.12;
}

.community-links {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.community-link {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 14px;
    border: 1px solid rgba(143, 144, 151, 0.18);
    border-radius: 14px;
    background: rgba(16, 20, 21, 0.72);
    color: #e0e3e5;
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.community-link:hover {
    border-color: rgba(233, 195, 73, 0.65);
    background: rgba(29, 32, 34, 0.95);
    transform: translateY(-2px);
}

.community-link__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    background: rgba(78, 222, 163, 0.12);
    color: #4edea3;
}

.community-link--telegram .community-link__icon {
    background: rgba(185, 199, 228, 0.12);
    color: #b9c7e4;
}

.community-link__icon svg {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0;
    fill: currentColor;
    position: relative;
    top: 1px;
}

.community-link strong {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
}

.community-link span {
    display: block;
    margin-top: 4px;
    color: #c5c6cd;
    font-size: 13px;
    line-height: 1.35;
}

.community-link__arrow {
    color: #e9c349;
}

.community-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
    max-width: 620px;
}

.community-proof div {
    padding: 18px 14px;
    border: 1px solid rgba(143, 144, 151, 0.18);
    border-radius: 14px;
    background: rgba(13, 16, 17, 0.58);
}

.community-proof strong {
    display: block;
    color: #e9c349;
    font-family: "Bodoni Moda", serif;
    font-size: 28px;
    line-height: 1;
}

.community-proof span {
    display: block;
    margin-top: 8px;
    color: #c5c6cd;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (min-width: 900px) {
    .community-hero {
        grid-template-columns: minmax(0, 1fr) 430px;
        padding-top: 32px;
    }
}

@media (max-width: 560px) {
    .community-proof {
        grid-template-columns: 1fr;
    }

    .community-link {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .community-link__arrow {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-menu,
    .menu-overlay {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .mobile-menu-open,
    .menu-btn.mobile-menu-open,
    .simple-menu-button.mobile-menu-open {
        display: none !important;
    }

    main > section:first-child {
        min-height: 360px;
        padding-top: 88px;
        padding-bottom: 52px;
    }

    .testimonials-grid {
        width: min(100% - 128px, 1120px);
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        padding: 32px 0 72px !important;
    }

    .testimonials-grid > div {
        min-width: 0;
        padding: 20px !important;
        border-radius: 14px !important;
    }

    .testimonials-grid > div.overflow-hidden {
        padding: 0 !important;
    }

    .testimonials-grid > div.overflow-hidden > div {
        padding: 20px !important;
    }

    .testimonials-grid blockquote,
    .testimonials-grid p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .testimonials-grid img {
        width: 100%;
        max-height: 280px;
        object-fit: contain;
        background: #0b0f10;
    }

    .testimonials-grid h4,
    .testimonials-grid .font-label-sm {
        font-size: 11px !important;
    }

    .testimonials-grid .w-10.h-10 {
        width: 34px !important;
        height: 34px !important;
    }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.04); }
}

.btn-split-wrap {
  display: inline-flex;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(233,195,73,0.3);
  cursor: pointer;
}

.btn-split-text {
  flex: 1;
  padding: 24px 32px;
  background: rgba(233,195,73,0.08);
  color: #e9c349;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.btn-split-text:hover {
  background: rgba(233,195,73,0.14);
}

.btn-split-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #e9c349;
  color: #0a0800;
  text-decoration: none;
  border-left: 1px solid rgba(233,195,73,0.3);
  transition: background 0.2s;
}

.btn-split-icon:hover {
  background: #c9a030;
}