:root {
    --rm-bg: #111318;
    --rm-bg-2: #f5f7fb;
    --rm-card: rgba(255, 255, 255, .07);
    --rm-card-strong: rgba(255, 255, 255, .12);
    --rm-border: rgba(255, 255, 255, .14);
    --rm-text: #f8fafc;
    --rm-muted: #a1a1aa;
    --rm-red: #e11d2e;
    --rm-red-2: #991b1f;
    --rm-white: #ffffff;
    --rm-soft: #d4d4d8;
    --rm-radius: 28px;
    --rm-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing-page {
    background:
        radial-gradient(circle at 12% 8%, rgba(225, 29, 46, .2), transparent 32rem),
        radial-gradient(circle at 88% 0, rgba(23, 37, 84, .1), transparent 30rem),
        linear-gradient(180deg, #08090d 0, #141820 34%, #f5f7fb 34%, #eef2f7 100%);
    color: var(--rm-text);
    font-family: "Cairo", "Instrument Sans", "Segoe UI", Tahoma, Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

body.landing-page:before {
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 74px 74px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 72%);
    pointer-events: none;
    position: fixed;
}

[x-cloak] {
    display: none !important;
}

[data-bg] {
    --image: linear-gradient(135deg, #111827, #7f1d1d);
}

[hidden],
.mobile-panel[hidden] {
    display: none !important;
}

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

.landing-container {
    margin-inline: auto;
    max-width: 1180px;
    padding-inline: 22px;
    width: 100%;
}

.landing-header {
    backdrop-filter: blur(24px);
    background: rgba(5, 5, 7, .58);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    inset-inline: 0;
    position: sticky;
    top: 0;
    z-index: 60;
}

.header-inner,
.footer-grid {
    align-items: center;
    display: flex;
    gap: 22px;
    justify-content: space-between;
    min-height: 78px;
}

.brand-link {
    align-items: center;
    display: inline-flex;
    gap: 14px;
    min-width: 230px;
}

.brand-logo {
    aspect-ratio: 1;
    animation: logoPulse 2.8s ease-in-out infinite;
    filter: drop-shadow(0 14px 28px rgba(225, 29, 46, .42));
    height: 70px;
    object-fit: contain;
    transform-origin: center;
    width: 70px;
}

.brand-link strong,
.brand-link small {
    display: block;
}

.brand-link strong {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}

.brand-link small {
    color: #e5e7eb;
    font-size: 12px;
    font-weight: 800;
    margin-top: 2px;
}

.desktop-nav {
    align-items: center;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    display: flex;
    gap: 4px;
    padding: 6px;
}

.desktop-nav a {
    border-radius: 999px;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 12px;
    transition: background .2s ease, color .2s ease;
}

.desktop-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.header-actions,
.hero-actions {
    align-items: center;
    display: flex;
    gap: 10px;
}

.btn {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    justify-content: center;
    min-height: 42px;
    padding: 0 17px;
    transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--rm-red), #f43f5e);
    box-shadow: 0 18px 42px rgba(225, 29, 46, .34);
    color: white;
}

.btn-ghost,
.btn-soft {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
}

.btn-soft {
    background: rgba(255, 255, 255, .11);
}

.btn-xl {
    font-size: 15px;
    min-height: 52px;
    padding-inline: 24px;
}

.menu-button {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    display: none;
    flex-direction: column;
    gap: 6px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.menu-button span {
    background: #fff;
    border-radius: 99px;
    display: block;
    height: 2px;
    width: 16px;
}

.mobile-panel {
    background: rgba(5, 5, 7, .94);
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    gap: 6px;
    padding: 12px 22px 18px;
}

.mobile-panel a {
    border-radius: 16px;
    color: #fff;
    font-weight: 800;
    padding: 12px;
}

.mobile-panel a:hover {
    background: rgba(255, 255, 255, .08);
}

.hero-section {
    min-height: calc(100vh - 78px);
    overflow: hidden;
    padding: 84px 0 80px;
    position: relative;
}

.hero-backdrop,
.final-bg {
    background:
        linear-gradient(90deg, rgba(5, 5, 7, .96), rgba(5, 5, 7, .7), rgba(5, 5, 7, .96)),
        var(--hero-image),
        radial-gradient(circle at 60% 20%, rgba(225, 29, 46, .28), transparent 28rem);
    background-position: center;
    background-size: cover;
    inset: 0;
    opacity: .9;
    position: absolute;
}

.hero-backdrop:after,
.final-bg:after {
    background: linear-gradient(180deg, transparent, var(--rm-bg-2));
    bottom: 0;
    content: "";
    height: 28%;
    inset-inline: 0;
    position: absolute;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    position: relative;
    z-index: 2;
}

.hero-brand-logo {
    animation: heroLogoEntrance 4.2s ease-in-out infinite;
    filter: drop-shadow(0 24px 52px rgba(225, 29, 46, .5));
    height: auto;
    margin-bottom: 10px;
    max-height: 240px;
    object-fit: contain;
    transform-origin: center;
    width: min(430px, 100%);
}

.hero-copy h1 {
    color: #fff;
    font-size: clamp(44px, 6.4vw, 86px);
    font-weight: 950;
    line-height: 1.08;
    margin: 18px 0 22px;
    max-width: 780px;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .58);
    text-wrap: balance;
}

.hero-copy p,
.section-heading p,
.section-copy p,
.feature-panel p,
.final-content p {
    color: #d4d4d8;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.hero-copy p {
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.95;
    max-width: 720px;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .58);
}

.eyebrow,
.section-heading span,
.section-copy span,
.feature-panel > span {
    align-items: center;
    color: #fecdd3;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy .eyebrow {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.55;
    padding: 10px 16px;
    text-transform: none;
}

.eyebrow span {
    background: var(--rm-red);
    border-radius: 99px;
    box-shadow: 0 0 26px rgba(225, 29, 46, .9);
    height: 9px;
    width: 9px;
}

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

.rating-strip div,
.glass-card,
.dashboard-mock,
.phone-mock,
.team-pill,
.training-board,
.coach-card,
.finance-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .045));
    border: 1px solid var(--rm-border);
    box-shadow: var(--rm-shadow);
    backdrop-filter: blur(22px);
}

.rating-strip div {
    border-radius: 24px;
    padding: 18px;
}

.rating-strip strong {
    color: #fff;
    display: block;
    font-size: 27px;
    font-weight: 950;
}

.rating-strip span {
    color: #f8fafc;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}

.hero-visual {
    min-height: 620px;
    position: relative;
}

.promo-visual {
    background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    border: 1px solid var(--rm-border);
    border-radius: 34px;
    box-shadow: var(--rm-shadow);
    inset-inline: 0;
    margin: 0;
    overflow: hidden;
    position: absolute;
    top: 42px;
}

.promo-visual img,
.tactical-showcase img {
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
    width: 100%;
}

.promo-visual figcaption,
.tactical-showcase figcaption {
    background: rgba(5, 5, 7, .88);
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #d4d4d8;
    line-height: 1.7;
    padding: 20px 22px;
}

.promo-visual strong,
.promo-visual span {
    display: block;
}

.promo-visual strong {
    color: #fff;
    font-size: 24px;
    font-weight: 950;
}

.promo-visual span {
    margin-top: 8px;
}

.glow-orbit {
    background: radial-gradient(circle, rgba(225, 29, 46, .38), transparent 65%);
    filter: blur(6px);
    height: 520px;
    inset-inline-start: 8%;
    position: absolute;
    top: 4%;
    width: 520px;
}

.dashboard-mock {
    border-radius: 34px;
    inset-inline-start: 0;
    padding: 22px;
    position: absolute;
    top: 56px;
    transform: rotate(-3deg);
    width: min(92%, 470px);
}

.mock-header {
    align-items: center;
    display: flex;
    gap: 12px;
}

.mock-header img {
    height: 46px;
    object-fit: contain;
    width: 46px;
}

.mock-header strong,
.mock-header span {
    display: block;
}

.mock-header span {
    color: var(--rm-muted);
    font-size: 12px;
}

.stats-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.stats-grid div,
.training-plan-card,
.phone-row {
    background: rgba(0, 0, 0, .32);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 15px;
}

.stats-grid span,
.training-plan-card span {
    color: var(--rm-muted);
    display: block;
    font-size: 12px;
    font-weight: 800;
}

.stats-grid strong {
    color: #fff;
    display: block;
    font-size: 30px;
    font-weight: 950;
    margin-top: 6px;
}

.training-plan-card {
    margin-top: 12px;
}

.training-plan-card strong {
    display: block;
    margin-top: 8px;
}

.progress-line {
    background: rgba(255, 255, 255, .12);
    border-radius: 99px;
    height: 8px;
    margin-top: 18px;
    overflow: hidden;
}

.progress-line i {
    animation: progressFlow 3.4s ease-in-out infinite;
    background: linear-gradient(90deg, var(--rm-red), #fff);
    border-radius: inherit;
    display: block;
    height: 100%;
    width: 72%;
}

.phone-mock {
    border-radius: 36px;
    bottom: 34px;
    inset-inline-end: 0;
    padding: 22px 16px;
    position: absolute;
    width: min(72%, 270px);
}

.phone-notch {
    background: rgba(255, 255, 255, .16);
    border-radius: 99px;
    height: 7px;
    margin: 0 auto 16px;
    width: 72px;
}

.phone-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 9px;
}

.phone-row span {
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 800;
}

.phone-row b {
    color: #fecdd3;
    font-size: 12px;
}

.floating-card {
    animation: floatCard 7s ease-in-out infinite;
}

.delay-card {
    animation-delay: -2.4s;
}

.marquee-section {
    overflow: hidden;
    padding: 34px 0 84px;
    position: relative;
}

.marquee-track {
    animation: marqueeMove 44s linear infinite;
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    width: max-content;
}

.marquee-track.reverse {
    animation-direction: reverse;
    opacity: .74;
}

.showcase-image {
    background:
        linear-gradient(180deg, transparent, rgba(0, 0, 0, .72)),
        var(--image),
        linear-gradient(135deg, #241014, #111827);
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 30px;
    flex: 0 0 360px;
    height: 230px;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.showcase-image.small {
    flex-basis: 300px;
    height: 170px;
}

.showcase-image figcaption {
    bottom: 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    inset-inline-start: 18px;
    position: absolute;
}

.section-block,
.split-section {
    padding: 96px 0;
    position: relative;
}

.section-block,
.split-section,
.testimonials-section {
    color: #111827;
}

.section-block .section-heading h2,
.section-block .section-copy h2,
.split-section .section-copy h2,
.testimonials-section .section-heading h2 {
    color: #111827;
}

.section-block .section-heading p,
.section-block .section-copy p,
.split-section .section-copy p,
.feature-panel p {
    color: #4b5563;
}

.section-heading {
    margin: 0 auto 42px;
    max-width: 760px;
    text-align: center;
}

.section-heading h2,
.section-copy h2,
.final-content h2 {
    color: #fff;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 950;
    line-height: 1.05;
    margin: 14px 0 16px;
    text-wrap: balance;
}

.system-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-card,
.system-card,
.feature-panel {
    border-radius: var(--rm-radius);
}

.system-card {
    min-height: 150px;
    padding: 22px;
}

.goal-photo {
    background:
        linear-gradient(180deg, transparent, rgba(0, 0, 0, .34)),
        var(--image),
        linear-gradient(135deg, #1f2937, #7f1d1d);
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    height: 135px;
    margin: 0 0 18px;
}

.system-card span {
    color: #fb7185;
    display: block;
    font-size: 13px;
    font-weight: 950;
}

.system-card strong {
    color: #fff;
    display: block;
    font-size: 21px;
    font-weight: 950;
    margin-top: 46px;
}

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

.goals-grid .system-card {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(17, 24, 39, .08);
    min-height: 360px;
}

.goals-grid .system-card strong {
    color: #111827;
    font-size: 19px;
    line-height: 1.65;
    margin-top: 18px;
}

.split-grid {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-copy {
    max-width: 560px;
}

.team-stack {
    display: grid;
    gap: 14px;
}

.team-pill {
    align-items: center;
    animation: slideUp 5.8s ease-in-out infinite;
    animation-delay: var(--delay);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    padding: 22px;
}

.team-pill strong {
    color: #fff;
    font-size: 23px;
}

.team-pill span {
    color: #fecdd3;
    font-weight: 900;
}

.age-groups-section {
    background:
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.age-groups-section .section-heading {
    max-width: 900px;
}

.age-groups-section .section-heading h2 {
    color: #0f172a;
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1.25;
}

.age-groups-section .section-heading p {
    color: #334155;
    font-size: 20px;
    font-weight: 800;
}

.age-card-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.age-card {
    animation: slideUp 5.8s ease-in-out infinite;
    animation-delay: var(--delay);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 26px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, .13);
    color: #0f172a;
    display: grid;
    gap: 18px;
    min-height: 360px;
    padding: 18px;
}

.age-card-years {
    background:
        linear-gradient(135deg, rgba(225, 29, 46, .98), rgba(127, 29, 29, .96)),
        linear-gradient(135deg, #e11d2e, #7f1d1d);
    border-radius: 22px;
    color: #ffffff;
    min-height: 128px;
    padding: 20px;
}

.age-card-years span,
.age-card-years strong {
    display: block;
}

.age-card-years span {
    font-size: 16px;
    font-weight: 900;
    opacity: .9;
}

.age-card-years strong {
    font-size: clamp(34px, 4vw, 44px);
    font-weight: 950;
    line-height: 1.1;
    margin-top: 10px;
}

.age-card-body b {
    color: #b91c1c;
    display: block;
    font-size: 16px;
    font-weight: 950;
}

.age-card-body h3 {
    color: #0f172a;
    font-size: 27px;
    font-weight: 950;
    line-height: 1.25;
    margin: 8px 0 10px;
}

.age-card-body p {
    color: #334155;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.8;
    margin: 0;
}

.age-card-footer {
    align-self: end;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 999px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 950;
    justify-self: start;
    padding: 9px 15px;
}

.training-board {
    border-radius: 34px;
    display: grid;
    gap: 12px;
    padding: 22px;
}

.tactical-showcase {
    background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
    border: 1px solid var(--rm-border);
    border-radius: 34px;
    box-shadow: var(--rm-shadow);
    margin: 0;
    overflow: hidden;
}

.tactical-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tactical-showcase figcaption strong,
.tactical-showcase figcaption span {
    display: block;
}

.tactical-showcase figcaption strong {
    color: #fff;
    font-size: 18px;
    font-weight: 950;
}

.tactical-showcase figcaption span {
    margin-top: 6px;
}

.drill-row {
    align-items: center;
    animation: slideUp 6s ease-in-out infinite;
    animation-delay: var(--delay);
    background: rgba(0, 0, 0, .24);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 22px;
    display: grid;
    gap: 14px;
    grid-template-columns: 42px 1fr 110px;
    padding: 16px;
}

.drill-row span {
    align-items: center;
    background: var(--rm-red);
    border-radius: 16px;
    display: flex;
    font-weight: 950;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.drill-row i,
.finance-card i {
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
    position: relative;
}

.drill-row i:after,
.finance-card i:after {
    background: linear-gradient(90deg, var(--rm-red), #fff);
    border-radius: inherit;
    content: "";
    inset-block: 0;
    inset-inline-start: 0;
    position: absolute;
    width: var(--w, 66%);
}

.feature-columns {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-panel {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(17, 24, 39, .08);
    min-height: 470px;
    padding: 26px;
}

.feature-panel h3 {
    color: #111827;
    font-size: 31px;
    font-weight: 950;
    line-height: 1.15;
    margin: 14px 0;
}

.training-card-image {
    background:
        linear-gradient(180deg, transparent, rgba(0, 0, 0, .45)),
        var(--image),
        linear-gradient(135deg, #111827, #991b1f);
    background-position: center;
    background-size: cover;
    border-radius: 22px;
    height: 160px;
    margin: 24px 0 0;
}

.academy-meter {
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    height: 10px;
    margin-top: 32px;
    overflow: hidden;
}

.academy-meter i {
    background: linear-gradient(90deg, var(--rm-red), #fff);
    border-radius: inherit;
    display: block;
    height: 100%;
    width: var(--w);
}

.attendance-table {
    display: grid;
    gap: 9px;
    margin-top: 26px;
}

.attendance-table div {
    align-items: center;
    background: rgba(0, 0, 0, .24);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    display: grid;
    font-size: 12px;
    gap: 8px;
    grid-template-columns: 1fr auto auto auto;
    padding: 13px;
}

.attendance-table b {
    color: #fecdd3;
}

.attendance-table em {
    color: var(--rm-muted);
    font-style: normal;
}

.mini-phone,
.coach-checklist {
    background: #07080c;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    display: grid;
    gap: 12px;
    margin: 26px auto 0;
    max-width: 260px;
    padding: 22px;
}

.mini-phone strong {
    font-size: 20px;
}

.mini-phone span,
.coach-checklist label {
    background: rgba(255, 255, 255, .07);
    border-radius: 16px;
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 800;
    padding: 12px;
}

.coach-checklist input {
    accent-color: var(--rm-red);
    margin-inline-end: 8px;
}

.coach-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coach-card {
    border-radius: 30px;
    padding: 12px;
}

.coach-photo {
    background:
        linear-gradient(180deg, transparent, rgba(0, 0, 0, .62)),
        var(--image),
        linear-gradient(135deg, #1f1113, #111827);
    background-position: center top;
    background-size: cover;
    border-radius: 24px;
    height: 320px;
    margin-bottom: 18px;
}

.coach-identity {
    background: #ffffff;
    border: 1px solid rgba(185, 28, 28, .16);
    border-inline-start: 5px solid #b91c1c;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .1);
    margin-top: 4px;
    padding: 14px 16px 15px;
}

.coach-identity strong,
.coach-identity span {
    display: block;
}

.coach-identity strong {
    color: #0f172a;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.25;
}

.coach-identity span {
    color: #b91c1c;
    font-size: 14px;
    font-weight: 900;
    margin-top: 8px;
}

.financial-section {
    background: radial-gradient(circle at 20% 50%, rgba(225, 29, 46, .1), transparent 34rem);
}

.finance-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.finance-card {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(17, 24, 39, .08);
    border-radius: 24px;
    display: grid;
    gap: 14px;
    padding: 20px;
}

.finance-card span {
    color: var(--rm-muted);
    font-weight: 800;
}

.finance-card strong {
    color: #111827;
    font-size: 30px;
    font-weight: 950;
}

.join-grid .finance-card strong {
    color: #fb7185;
}

.testimonial-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

blockquote.glass-card {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(17, 24, 39, .08);
    color: #111827;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.7;
    margin: 0;
    min-height: 230px;
    padding: 26px;
}

blockquote span {
    color: #fb7185;
    display: block;
    font-size: 13px;
    margin-top: 22px;
}

.final-cta {
    min-height: 680px;
    overflow: hidden;
    position: relative;
}

.final-bg {
    background:
        linear-gradient(90deg, rgba(5, 5, 7, .96), rgba(5, 5, 7, .62), rgba(5, 5, 7, .96)),
        var(--image),
        linear-gradient(135deg, #2a0d12, #07080c);
}

.final-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 680px;
    position: relative;
    text-align: center;
    z-index: 2;
}

.join-content {
    align-items: stretch;
    display: grid;
    gap: 28px;
    grid-template-columns: .82fr 1.18fr;
    padding-block: 72px;
    text-align: start;
}

.final-cta .join-content {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    text-align: center;
}

.join-copy {
    align-self: center;
}

.final-cta .join-copy .hero-actions {
    justify-content: center;
}

.final-cta .join-form {
    display: none;
}

.join-form {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
    color: #0f172a;
    padding: 24px;
}

.join-form-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.join-form label {
    display: grid;
    gap: 7px;
}

.join-form span {
    color: #0f172a;
    font-size: 13px;
    font-weight: 950;
}

.join-form input,
.join-form select,
.join-form textarea {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    min-height: 46px;
    padding: 10px 12px;
    width: 100%;
}

.join-form textarea {
    resize: vertical;
}

.join-form small {
    color: #dc2626;
    font-size: 12px;
    font-weight: 800;
}

.join-wide {
    grid-column: 1 / -1;
}

.join-success {
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 16px;
    color: #166534;
    font-weight: 900;
    line-height: 1.7;
    margin-bottom: 16px;
    padding: 12px 14px;
}

.join-modal {
    align-items: center;
    background: rgba(3, 7, 18, .78);
    backdrop-filter: blur(16px);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 18px;
    position: fixed;
    z-index: 140;
}

.join-modal.is-visible {
    display: flex;
}

.join-modal-card {
    background: #f8fafc;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 28px;
    box-shadow: 0 34px 110px rgba(2, 6, 23, .5);
    color: #0f172a;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 36px);
    max-width: 1040px;
    overflow: hidden;
    width: min(100%, 1040px);
}

.join-modal-header {
    align-items: flex-start;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 24px 28px 20px;
}

.join-modal-header span {
    background: linear-gradient(135deg, #e11d2e, #7f1d1d);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .06em;
    padding: 9px 15px;
    text-transform: uppercase;
}

.join-modal-header h2 {
    color: #0f172a;
    font-size: 36px;
    font-weight: 950;
    line-height: 1.1;
    margin: 14px 0 8px;
}

.join-modal-header p {
    color: #475569;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.7;
    margin: 0;
}

.join-modal-close {
    align-items: center;
    background: #f1f5f9;
    border: 0;
    border-radius: 999px;
    color: #0f172a;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 26px;
    font-weight: 950;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.join-modal-body {
    overflow: auto;
    padding: 24px;
}

.join-modal .join-form {
    background: #ffffff;
    border-color: rgba(15, 23, 42, .1);
    box-shadow: none;
    margin: 0;
}

.landing-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 28px 0;
}

.install-app-modal {
    align-items: center;
    background: rgba(3, 7, 18, .72);
    backdrop-filter: blur(14px);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 18px;
    position: fixed;
    z-index: 100;
}

.install-app-modal.is-visible {
    display: flex;
}

.install-app-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(239, 246, 255, .98));
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(2, 6, 23, .38);
    color: #0f172a;
    max-width: 460px;
    padding: 28px;
    position: relative;
    text-align: center;
    width: min(100%, 460px);
}

.install-app-close {
    align-items: center;
    background: #e2e8f0;
    border: 0;
    border-radius: 999px;
    color: #0f172a;
    display: inline-flex;
    font-size: 24px;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    inset-inline-end: 16px;
    position: absolute;
    top: 16px;
    width: 38px;
}

.install-app-card img {
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(37, 99, 235, .18);
    height: 92px;
    margin: 0 auto 16px;
    width: 92px;
}

.install-app-card > span {
    color: #1d4ed8;
    display: block;
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.install-app-card h2 {
    color: #0f172a;
    font-size: 34px;
    font-weight: 950;
    line-height: 1.15;
    margin: 0 0 12px;
}

.install-app-card p {
    color: #334155;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0;
}

.install-app-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}

.install-app-actions .btn:disabled {
    cursor: not-allowed;
    filter: grayscale(.3);
    opacity: .55;
    transform: none;
}

.install-app-card small {
    color: #64748b;
    display: block;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.7;
    margin-top: 16px;
}

.contact-modal {
    align-items: center;
    background: rgba(3, 7, 18, .76);
    backdrop-filter: blur(14px);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 18px;
    position: fixed;
    z-index: 120;
}

.contact-modal.is-visible {
    display: flex;
}

.contact-card {
    background: #ffffff;
    border: 1px solid rgba(225, 29, 46, .18);
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(2, 6, 23, .42);
    color: #0f172a;
    max-width: 560px;
    padding: 30px;
    position: relative;
    text-align: center;
    width: min(100%, 560px);
}

.contact-close {
    align-items: center;
    background: #f1f5f9;
    border: 0;
    border-radius: 999px;
    color: #0f172a;
    display: inline-flex;
    font-size: 24px;
    font-weight: 950;
    height: 40px;
    justify-content: center;
    inset-inline-end: 16px;
    position: absolute;
    top: 16px;
    width: 40px;
}

.contact-card > span {
    background: linear-gradient(135deg, #e11d2e, #7f1d1d);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: .06em;
    padding: 9px 16px;
    text-transform: uppercase;
}

.contact-card h2 {
    color: #0f172a;
    font-size: 38px;
    font-weight: 950;
    line-height: 1.1;
    margin: 18px 0 10px;
}

.contact-card p {
    color: #475569;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.7;
    margin: 0;
}

.contact-number-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    text-align: start;
}

.contact-number-item {
    align-items: center;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 20px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 16px;
}

.contact-number-item strong,
.contact-number-item a {
    display: block;
}

.contact-number-item strong {
    color: #0f172a;
    font-size: 17px;
    font-weight: 950;
}

.contact-number-item div > a {
    color: #b91c1c;
    font-size: 20px;
    font-weight: 950;
    margin-top: 4px;
}

.contact-number-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.contact-number-actions .btn {
    min-height: 40px;
}

.contact-number-actions .btn-soft {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.contact-empty {
    background: #f8fafc;
    border: 1px dashed rgba(15, 23, 42, .18);
    border-radius: 18px;
    color: #475569;
    font-weight: 900;
    padding: 18px;
    text-align: center;
}

.footer-contact,
.social-links {
    align-items: center;
    display: flex;
    gap: 14px;
}

.footer-contact {
    color: var(--rm-muted);
    font-weight: 800;
}

.social-links a {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 950;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
    transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-18px) rotate(-1deg); }
}

@keyframes marqueeMove {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

@keyframes progressFlow {
    0%, 100% { width: 46%; }
    50% { width: 92%; }
}

@keyframes slideUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 14px 28px rgba(225, 29, 46, .42));
        transform: scale(1) rotate(0deg);
    }
    45% {
        filter: drop-shadow(0 18px 34px rgba(225, 29, 46, .72));
        transform: scale(1.08) rotate(-2deg);
    }
    70% {
        transform: scale(1.02) rotate(1deg);
    }
}

@keyframes heroLogoEntrance {
    0%, 100% {
        filter: drop-shadow(0 24px 52px rgba(225, 29, 46, .5));
        transform: translateY(0) scale(1);
    }
    42% {
        filter: drop-shadow(0 34px 68px rgba(225, 29, 46, .82));
        transform: translateY(-8px) scale(1.06);
    }
    68% {
        transform: translateY(0) scale(1.015);
    }
}

.section-block .eyebrow,
.section-block .section-heading span,
.section-block .section-copy span,
.split-section .section-copy span,
.feature-panel > span {
    color: #b91c1c;
}

.section-block .section-heading > span,
.section-block .section-copy > span,
.split-section .section-copy > span,
.testimonials-section .section-heading > span {
    background: linear-gradient(135deg, #e11d2e, #7f1d1d);
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    box-shadow: 0 16px 38px rgba(127, 29, 29, .32);
    color: #ffffff;
    display: inline-flex;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: .06em;
    line-height: 1;
    padding: 13px 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
    text-transform: uppercase;
}

.section-heading h2,
.section-copy h2 {
    letter-spacing: 0;
}

.section-block .section-heading h2,
.section-block .section-copy h2,
.split-section .section-copy h2,
.testimonials-section .section-heading h2 {
    color: #0f172a;
    text-shadow: none;
}

.section-block .section-heading p,
.section-block .section-copy p,
.split-section .section-copy p,
.feature-panel p {
    color: #1f2937;
    font-weight: 650;
}

#about .section-heading h2 {
    color: #ffffff;
    font-weight: 950;
}

#about .section-heading p {
    color: #ffffff;
    font-weight: 800;
}

.feature-panel,
.goals-grid .system-card,
.finance-card,
blockquote.glass-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, .12);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .14);
}

.goals-grid .system-card strong,
.feature-panel h3,
.finance-card strong,
blockquote.glass-card {
    color: #0f172a;
}

.system-card span,
.finance-card span,
blockquote span {
    color: #b91c1c;
}

.team-pill {
    background: #ffffff;
    border-color: rgba(15, 23, 42, .12);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .12);
}

.team-pill strong {
    color: #0f172a;
}

.team-pill span {
    color: #b91c1c;
}

.coach-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, .12);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .12);
}

.coach-card strong {
    color: #0f172a;
}

.coach-card span {
    color: #475569;
    font-weight: 800;
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: inline-flex;
    }

    .hero-grid,
    .split-grid,
    .join-content,
    .feature-columns {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 560px;
    }

    .system-grid,
    .goals-grid,
    .age-card-grid,
    .tactical-grid,
    .coach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .landing-container {
        padding-inline: 16px;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-link {
        min-width: 0;
    }

    .brand-logo {
        height: 56px;
        width: 56px;
    }

    .brand-link strong {
        font-size: 15px;
    }

    .brand-link small,
    .header-actions .btn-ghost {
        display: none;
    }

    .hero-brand-logo {
        max-height: 190px;
        width: min(340px, 100%);
    }

    .hero-section {
        padding-top: 56px;
    }

    .hero-actions,
    .install-app-actions,
    .contact-number-item,
    .rating-strip,
    .footer-grid,
    .footer-contact {
        align-items: stretch;
        flex-direction: column;
    }

    .rating-strip,
    .join-form-grid,
    .system-grid,
    .goals-grid,
    .age-card-grid,
    .tactical-grid,
    .coach-grid,
    .finance-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy .eyebrow {
        border-radius: 18px;
        font-size: 15px;
        width: 100%;
    }

    .hero-copy p,
    .age-groups-section .section-heading p {
        font-size: 17px;
    }

    .age-card {
        min-height: auto;
    }

    .hero-visual {
        min-height: 500px;
    }

    .dashboard-mock {
        width: 100%;
    }

    .promo-visual {
        position: relative;
        top: 0;
    }

    .phone-mock {
        width: 78%;
    }

    .showcase-image {
        flex-basis: 280px;
        height: 190px;
    }

    .section-block,
    .split-section {
        padding: 70px 0;
    }

    .drill-row {
        grid-template-columns: 42px 1fr;
    }

    .drill-row i {
        grid-column: 1 / -1;
    }

    .contact-card {
        padding: 26px 18px 20px;
    }

    .join-modal {
        align-items: stretch;
        padding: 10px;
    }

    .join-modal-card {
        border-radius: 22px;
        max-height: calc(100vh - 20px);
    }

    .join-modal-header {
        padding: 18px 16px 14px;
    }

    .join-modal-header h2 {
        font-size: 28px;
    }

    .join-modal-body {
        padding: 14px;
    }

    .join-modal .join-form {
        border-radius: 18px;
        padding: 16px;
    }

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

    .contact-number-actions {
        justify-content: stretch;
    }
}
