/* ═══════════════════════════════════════════════════════════════════════════
   RRR Arena Landing — Modern 3D / Glass / Bento
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --rrr-red: #e31e24;
    --rrr-red-light: #ff4d52;
    --rrr-red-dark: #b91c1c;
    --rrr-red-deep: #7f1d1d;
    --rrr-black: #0f172a;
    --rrr-gray: #64748b;
    --rrr-gray-light: #f1f5f9;
    --rrr-white: #ffffff;
    --glass: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.22);
    --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.14);
    --shadow-card: 0 20px 50px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 60px rgba(227, 30, 36, 0.35);
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-2xl: 2rem;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.4s var(--ease-out);
}

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

html { scroll-behavior: smooth; }

body.landing-page {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--rrr-black);
    background: var(--rrr-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:focus-visible {
    outline: 2px solid var(--rrr-red);
    outline-offset: 3px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--rrr-red) 0%, var(--rrr-red-light) 50%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-container {
    width: min(1200px, calc(100% - 2.5rem));
    margin-inline: auto;
}

/* Cursor glow (desktop) */
.landing-cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.landing-page.has-cursor-glow .landing-cursor-glow {
    opacity: 1;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.landing-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 1.1rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.landing-header.is-scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.08);
    padding: 0.7rem 0;
}

.landing-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-logo img {
    height: 2.5rem;
    width: auto;
    transition: transform 0.3s var(--ease-spring);
}

.landing-logo:hover img { transform: scale(1.03); }

.landing-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.landing-nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-nav__links a {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition);
}

.landing-nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--rrr-white);
    border-radius: 2px;
    transition: width 0.3s var(--ease-out);
}

.landing-nav__links a:hover::after { width: 100%; }

.landing-header.is-scrolled .landing-nav__links a {
    color: var(--rrr-black);
}

.landing-header.is-scrolled .landing-nav__links a::after {
    background: var(--rrr-red);
}

.landing-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Buttons */
.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.landing-btn:hover { transform: translateY(-3px); }
.landing-btn:active { transform: translateY(-1px); }

.landing-btn--glow {
    position: relative;
    overflow: hidden;
}

.landing-btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.landing-btn--glow:hover::before { transform: translateX(100%); }

.landing-btn--ghost-light {
    color: var(--rrr-white);
    background: transparent;
}

.landing-header.is-scrolled .landing-btn--ghost-light { color: var(--rrr-black); }

.landing-btn--primary-red {
    background: linear-gradient(135deg, var(--rrr-red) 0%, var(--rrr-red-dark) 100%);
    color: var(--rrr-white);
    box-shadow: 0 12px 28px rgba(227, 30, 36, 0.35);
}

.landing-btn--primary-red:hover {
    box-shadow: 0 16px 36px rgba(227, 30, 36, 0.45);
}

.landing-btn--white {
    background: var(--rrr-white);
    color: var(--rrr-red);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.15);
}

.landing-btn--glass {
    background: rgba(255, 255, 255, 0.12);
    color: var(--rrr-white);
    border-color: var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.landing-btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.landing-btn--outline-dark {
    background: transparent;
    color: var(--rrr-black);
    border-color: #e2e8f0;
}

.landing-btn--outline-dark:hover {
    border-color: var(--rrr-red);
    color: var(--rrr-red);
    background: #fff5f5;
}

.landing-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.landing-menu-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--rrr-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.landing-header.is-scrolled .landing-menu-toggle {
    background: var(--rrr-gray-light);
}

.landing-header.is-scrolled .landing-menu-toggle__bar {
    background: var(--rrr-black);
}

.landing-menu-toggle[aria-expanded="true"] .landing-menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.landing-menu-toggle[aria-expanded="true"] .landing-menu-toggle__bar:nth-child(2) { opacity: 0; }
.landing-menu-toggle[aria-expanded="true"] .landing-menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.landing-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 7.5rem 0 5rem;
    overflow: hidden;
    background: #0a0a0f;
}

.landing-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(227, 30, 36, 0.45), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(185, 28, 28, 0.25), transparent),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgba(127, 29, 29, 0.3), transparent),
        linear-gradient(165deg, #1a0506 0%, var(--rrr-red-deep) 25%, var(--rrr-red-dark) 50%, var(--rrr-red) 75%, #ff6b6b 100%);
}

.landing-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}

.landing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 12s ease-in-out infinite;
}

.landing-orb--1 {
    width:  min(500px, 80vw);
    height: min(500px, 80vw);
    top: -15%;
    right: -10%;
    background: rgba(255, 120, 120, 0.35);
}

.landing-orb--2 {
    width:  min(400px, 60vw);
    height: min(400px, 60vw);
    bottom: -10%;
    left: -15%;
    background: rgba(0, 0, 0, 0.4);
    animation-delay: -4s;
}

.landing-orb--3 {
    width:  280px;
    height: 280px;
    top: 40%;
    left: 30%;
    background: rgba(255, 255, 255, 0.08);
    animation-delay: -8s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}

/* 3D floating shapes */
.landing-hero__floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    perspective: 1200px;
}

.landing-float {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float3d 8s ease-in-out infinite;
}

.landing-float--ring {
    width: 120px;
    height: 120px;
    top: 18%;
    right: 12%;
    border: 3px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    transform: rotateX(60deg) rotateZ(45deg);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.landing-float--dumbbell {
    width: 80px;
    height: 24px;
    top: 55%;
    left: 8%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.2) 100%);
    border-radius: 12px;
    animation-delay: -2s;
}

.landing-float--dumbbell::before,
.landing-float--dumbbell::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.landing-float--dumbbell::before { left: -8px; }
.landing-float--dumbbell::after { right: -8px; }

.landing-float--trophy {
    width: 48px;
    height: 48px;
    bottom: 25%;
    right: 25%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.4), rgba(245, 158, 11, 0.2));
    clip-path: polygon(50% 0%, 100% 35%, 85% 100%, 15% 100%, 0% 35%);
    animation-delay: -5s;
}

@keyframes float3d {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
}

.landing-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.landing-hero__content { color: var(--rrr-white); }

.landing-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem 0.5rem 0.65rem;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: fadeSlideUp 0.8s var(--ease-out) both;
}

.landing-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px #4ade80;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.landing-hero__title {
    margin: 0 0 1.5rem;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.landing-hero__title-line {
    display: block;
    animation: fadeSlideUp 0.8s var(--ease-out) both;
}

.landing-hero__title-line:nth-child(2) { animation-delay: 0.1s; }

.landing-hero__title-line--accent {
    background: linear-gradient(135deg, #fff 0%, #fecaca 40%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.landing-hero__subtitle {
    margin: 0 0 2rem;
    max-width: 32rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    animation: fadeSlideUp 0.8s var(--ease-out) 0.2s both;
}

.landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.3s both;
}

.landing-hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.4s both;
}

.landing-hero__avatars {
    display: flex;
    align-items: center;
}

.landing-hero__avatar {
    width: 2.6rem;
    height: 2.6rem;
    margin-left: -0.7rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    object-fit: cover;
    background: #fff;
}

.landing-hero__avatar:first-child { margin-left: 0; }

.landing-hero__avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.landing-hero__avatars .landing-hero__avatar--fallback:nth-child(1) { background: linear-gradient(135deg, #93c5fd, #3b82f6); }
.landing-hero__avatars .landing-hero__avatar--fallback:nth-child(2) { background: linear-gradient(135deg, #fcd34d, #f59e0b); }
.landing-hero__avatars .landing-hero__avatar--fallback:nth-child(3) { background: linear-gradient(135deg, #86efac, #22c55e); }
.landing-hero__avatars .landing-hero__avatar--fallback:nth-child(4) { background: linear-gradient(135deg, #f9a8d4, #ec4899); }
.landing-hero__avatars .landing-hero__avatar--fallback:nth-child(5) { background: linear-gradient(135deg, #c4b5fd, #8b5cf6); }

.landing-hero__trust-copy strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.landing-hero__trust-copy span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.75); }
.landing-stars { color: #fbbf24; letter-spacing: 0.06em; }

/* Hero 3D stage */
.landing-hero__visual {
    position: relative;
    perspective: 1400px;
}

.landing-hero__stage {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    will-change: transform;
    overflow: visible;
}

.landing-hero__image-wrap {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: translateZ(24px);
}

.landing-hero__image-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 55%
    );
    animation: shine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%) skewX(-15deg); }
    50% { transform: translateX(100%) skewX(-15deg); }
}

.landing-hero__image-wrap img {
    width: 100%;
    aspect-ratio: 4 / 3.2;
    object-fit: cover;
    display: block;
}

.landing-hero__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.landing-stat-card {
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.2rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transform-style: preserve-3d;
    pointer-events: auto;
}

.landing-stat-card--members {
    top: 6%;
    left: -6%;
    z-index: 22;
    animation: floatCardMembers 5s ease-in-out infinite;
}

.landing-stat-card--sessions {
    bottom: 12%;
    right: -4%;
    z-index: 23;
    animation: floatCardSessions 5s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes floatCardMembers {
    0%, 100% { transform: translateY(0) translateZ(100px); }
    50% { transform: translateY(-12px) translateZ(112px); }
}

@keyframes floatCardSessions {
    0%, 100% { transform: translateY(0) translateZ(110px); }
    50% { transform: translateY(-10px) translateZ(122px); }
}

.landing-stat-card__icon {
    display: grid;
    place-items: center;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 0.9rem;
}

.landing-stat-card__icon--green { background: #dcfce7; color: #16a34a; }
.landing-stat-card__icon--blue { background: #dbeafe; color: #2563eb; }

.landing-stat-card strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.2;
    color: var(--rrr-black);
}

.landing-stat-card span {
    font-size: 0.8rem;
    color: var(--rrr-gray);
}

.landing-hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.landing-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Marquee */
.landing-marquee {
    overflow: hidden;
    padding: 1.25rem 0;
    background: var(--rrr-black);
    border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-marquee__track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.landing-marquee__track span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.landing-marquee__track span:nth-child(even) {
    color: var(--rrr-red);
    font-size: 0.5rem;
}

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

/* ── Sections ───────────────────────────────────────────────────────────── */

.landing-section { padding: 6rem 0; }

.landing-section--muted {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(227, 30, 36, 0.04), transparent),
        linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%);
}

/* ── Features section ─────────────────────────────────────────────────────── */

.landing-section--features {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.landing-features__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.landing-features__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.landing-features__orb--1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -15%;
    background: rgba(227, 30, 36, 0.12);
}

.landing-features__orb--2 {
    width: 400px;
    height: 400px;
    bottom: -5%;
    right: -10%;
    background: rgba(249, 115, 22, 0.08);
}

.landing-section--features .landing-container {
    position: relative;
    z-index: 1;
}

.landing-section__header {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 4rem;
}

.landing-section__eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #fee2e2;
    color: var(--rrr-red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.landing-section__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.landing-section__title--left { text-align: left; }
.landing-section__title--sm { font-size: clamp(1.75rem, 3vw, 2rem); }

.landing-section__subtitle {
    margin: 0;
    color: var(--rrr-gray);
    line-height: 1.75;
    font-size: 1.05rem;
}

.landing-section__subtitle--left { text-align: left; }

/* Features grid — equal 3-column rows, full-width highlight last */
.landing-bento {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
}

.landing-bento > .landing-bento__item {
    display: flex;
    min-height: 0;
}

.landing-bento__item--wide {
    grid-column: 1 / -1;
}

.landing-feature {
    --spotlight-x: 50%;
    --spotlight-y: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 240px;
    padding: 1.75rem 1.85rem 1.65rem;
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 20px 40px rgba(15, 23, 42, 0.06),
        0 4px 12px rgba(15, 23, 42, 0.04);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.landing-feature__spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        500px circle at var(--spotlight-x) var(--spotlight-y),
        rgba(227, 30, 36, 0.14),
        transparent 45%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.landing-feature:hover .landing-feature__spotlight,
.landing-feature:focus-within .landing-feature__spotlight {
    opacity: 1;
}

.landing-feature__border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.5), transparent 40%, rgba(249, 115, 22, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.landing-feature:hover .landing-feature__border { opacity: 1; }

.landing-feature__mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(227, 30, 36, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.landing-feature:hover {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 32px 64px rgba(227, 30, 36, 0.12),
        0 12px 24px rgba(15, 23, 42, 0.08);
}

.landing-feature__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.landing-feature__num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #cbd5e1;
}

.landing-feature__tag {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(227, 30, 36, 0.08);
    color: var(--rrr-red);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-feature__icon-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 1.15rem;
}

.landing-feature__icon {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.1rem;
    background: linear-gradient(145deg, #fff 0%, #fee2e2 100%);
    color: var(--rrr-red);
    box-shadow:
        0 8px 20px rgba(227, 30, 36, 0.15),
        0 0 0 1px rgba(227, 30, 36, 0.1) inset;
    transform: translateZ(20px);
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}

.landing-feature:hover .landing-feature__icon {
    transform: translateZ(30px) scale(1.08) rotate(-4deg);
    box-shadow: 0 14px 28px rgba(227, 30, 36, 0.22);
}

.landing-feature__body {
    position: relative;
    z-index: 2;
    flex: 1;
}

.landing-feature h3 {
    margin: 0 0 0.55rem;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.landing-feature p {
    margin: 0;
    color: var(--rrr-gray);
    line-height: 1.65;
    font-size: 0.94rem;
    max-width: 52ch;
}

.landing-feature__link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rrr-red);
    opacity: 0.6;
    transition: opacity 0.3s ease, gap 0.3s ease;
}

.landing-feature:hover .landing-feature__link {
    opacity: 1;
    gap: 0.65rem;
}

/* Highlight card — Member App */
.landing-feature--highlight {
    overflow: visible;
    min-height: 280px;
    background:
        radial-gradient(ellipse 80% 60% at 100% 50%, rgba(227, 30, 36, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 80% at 0% 100%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #0a0f1a 0%, #111827 38%, #1e293b 72%, #0f172a 100%);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--rrr-white);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 28px 60px rgba(0, 0, 0, 0.35),
        0 0 80px rgba(227, 30, 36, 0.12);
}

.landing-feature__highlight-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex: 1;
}

.landing-feature--highlight .landing-feature__mesh {
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    opacity: 0.4;
}

.landing-feature--highlight .landing-feature__num { color: rgba(255, 255, 255, 0.25); }

.landing-feature--highlight .landing-feature__tag {
    background: rgba(227, 30, 36, 0.25);
    color: #fecaca;
}

.landing-feature--highlight .landing-feature__icon {
    background: linear-gradient(145deg, var(--rrr-red) 0%, var(--rrr-red-dark) 100%);
    color: var(--rrr-white);
    box-shadow: 0 12px 32px rgba(227, 30, 36, 0.45);
}

.landing-feature--highlight h3 { color: var(--rrr-white); }
.landing-feature--highlight p { color: rgba(255, 255, 255, 0.72); }
.landing-feature--highlight .landing-feature__link { color: #fecaca; }

.landing-feature--highlight .landing-feature__spotlight {
    background: radial-gradient(
        600px circle at var(--spotlight-x) var(--spotlight-y),
        rgba(227, 30, 36, 0.35),
        transparent 50%
    );
}

.landing-feature__app-preview {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    perspective: 800px;
}

.landing-feature__phone {
    width: 100px;
    height: 180px;
    padding: 8px;
    border-radius: 22px;
    background: linear-gradient(160deg, #374151 0%, #111827 100%);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: rotateY(-12deg) rotateX(8deg) translateZ(30px);
    animation: phoneFloat 5s ease-in-out infinite;
}

.landing-feature__phone-notch {
    width: 36px;
    height: 5px;
    margin: 0 auto 8px;
    border-radius: 999px;
    background: #1f2937;
}

.landing-feature__phone-screen {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 10px;
    height: calc(100% - 20px);
    border-radius: 14px;
    background: linear-gradient(180deg, #fef2f2 0%, #fff 100%);
}

.landing-feature__phone-screen span {
    display: block;
    height: 10px;
    border-radius: 4px;
    background: linear-gradient(90deg, #fecaca, #fee2e2);
}

.landing-feature__phone-screen span:nth-child(1) { width: 70%; }
.landing-feature__phone-screen span:nth-child(2) { width: 90%; }
.landing-feature__phone-screen span:nth-child(3) { width: 55%; background: var(--rrr-red); opacity: 0.6; }

@keyframes phoneFloat {
    0%, 100% { transform: rotateY(-12deg) rotateX(8deg) translateZ(30px) translateY(0); }
    50% { transform: rotateY(-8deg) rotateX(4deg) translateZ(40px) translateY(-8px); }
}

.landing-feature--highlight .landing-feature__body {
    flex: 1;
    min-width: 0;
}

.landing-feature--highlight .landing-feature__body p {
    max-width: 56ch;
}

/* Member App highlight — extended */
.landing-member-app__content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.landing-member-app__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.landing-member-app__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.landing-member-app__pill--glow {
    background: rgba(227, 30, 36, 0.2);
    border-color: rgba(227, 30, 36, 0.35);
    color: #fecaca;
}

.landing-member-app__live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(0.85); }
}

.landing-member-app__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.landing-member-app__chip {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.landing-feature--highlight:hover .landing-member-app__chip {
    background: rgba(227, 30, 36, 0.15);
    border-color: rgba(227, 30, 36, 0.35);
}

.landing-member-app__chip:nth-child(odd) {
    transition-delay: 0.02s;
}

.landing-feature--highlight .landing-feature__top .landing-feature__tag {
    display: none;
}

.landing-member-app__preview {
    flex: 0 0 auto;
    width: min(400px, 44%);
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.landing-member-app__stage {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1.05;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-member-app__stage-grid {
    position: absolute;
    inset: 8% 4%;
    border-radius: var(--radius-2xl);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 75%);
    pointer-events: none;
}

.landing-member-app__stage-label {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 8;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fecaca;
    background: rgba(227, 30, 36, 0.3);
    border: 1px solid rgba(227, 30, 36, 0.45);
    backdrop-filter: blur(8px);
}

.landing-member-app__aurora {
    position: absolute;
    inset: 5% 0;
    background:
        radial-gradient(circle at 60% 40%, rgba(227, 30, 36, 0.45) 0%, transparent 45%),
        radial-gradient(circle at 30% 70%, rgba(249, 115, 22, 0.25) 0%, transparent 40%);
    filter: blur(28px);
    opacity: 0.85;
    animation: auroraShift 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes auroraShift {
    0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
    100% { transform: scale(1.08) translate(-4%, 6%); opacity: 0.95; }
}

.landing-member-app__ring {
    position: absolute;
    width: min(240px, 70%);
    height: min(240px, 70%);
    border-radius: 50%;
    border: 1px solid rgba(227, 30, 36, 0.3);
    box-shadow:
        0 0 60px rgba(227, 30, 36, 0.25),
        0 0 120px rgba(227, 30, 36, 0.08);
    animation: ringPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.landing-member-app__phone-ghost {
    position: absolute;
    z-index: 1;
    left: 54%;
    top: 50%;
    transform: translate(-38%, -46%) rotate(8deg) scale(0.92);
    opacity: 0.35;
    filter: blur(1px);
    pointer-events: none;
}

.landing-member-app__phone--ghost {
    width: 130px;
    height: 252px;
    animation: none;
    transform: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.landing-member-app__screen--ghost {
    background: linear-gradient(180deg, #e2e8f0, #f8fafc);
}

.landing-member-app__phone-wrap {
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-member-app__splash {
    position: relative;
    z-index: 7;
    display: block;
    width: min(210px, 44vw);
    height: auto;
    max-height: min(456px, 72vh);
    border-radius: 32px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 64px rgba(227, 30, 36, 0.35);
    transform: rotateY(-6deg) rotateX(4deg);
    animation: memberPhoneFloat 6s ease-in-out infinite;
}

.landing-member-app__phone-glow {
    position: absolute;
    width: 160px;
    height: 280px;
    border-radius: 40px;
    background: radial-gradient(ellipse at center, rgba(227, 30, 36, 0.5) 0%, transparent 70%);
    filter: blur(24px);
    animation: phoneGlowPulse 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes phoneGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes ringPulse {
    0%, 100% { transform: scale(0.92); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

.landing-member-app__float {
    position: absolute;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 0.85rem;
    min-width: 148px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    color: var(--rrr-black);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(14px);
    animation: floatCard 6s ease-in-out infinite;
}

.landing-member-app__float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: var(--rrr-red);
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.landing-member-app__float-icon svg {
    display: block;
}

.landing-member-app__float-icon--dark {
    color: var(--rrr-white);
    background: linear-gradient(135deg, #1e293b, #334155);
}

.landing-member-app__float-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.2;
}

.landing-member-app__float-text strong {
    font-size: 0.72rem;
    font-weight: 700;
}

.landing-member-app__float-text small {
    font-size: 0.62rem;
    color: var(--rrr-gray);
    font-weight: 500;
}

.landing-member-app__float--tournament {
    top: 22%;
    left: -2%;
    animation-delay: 0s;
}

.landing-member-app__float--gym {
    top: 10%;
    right: 0;
    min-width: 132px;
    padding: 0.5rem 0.7rem;
    animation-delay: -1.2s;
    z-index: 11;
}

.landing-member-app__float--demo {
    bottom: 18%;
    right: -6%;
    animation-delay: -2.5s;
}

.landing-member-app__metrics {
    position: absolute;
    bottom: 2%;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.landing-member-app__metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    text-align: center;
}

.landing-member-app__metric-value {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--rrr-white);
    letter-spacing: -0.02em;
}

.landing-member-app__metric-label {
    font-size: 0.58rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.landing-member-app__metric-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-6px) translateX(3px); }
}

.landing-member-app__phone {
    position: relative;
    z-index: 7;
    width: 142px;
    height: 274px;
    padding: 10px;
    border-radius: 30px;
    background: linear-gradient(165deg, #6b7280 0%, #374151 30%, #1f2937 60%, #030712 100%);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.18) inset,
        0 0 64px rgba(227, 30, 36, 0.35);
    transform: rotateY(-6deg) rotateX(4deg);
    animation: memberPhoneFloat 6s ease-in-out infinite;
}

@keyframes memberPhoneFloat {
    0%, 100% { transform: rotateY(-6deg) rotateX(4deg) translateY(0); }
    50% { transform: rotateY(-2deg) rotateX(2deg) translateY(-10px); }
}

.landing-member-app__screen {
    gap: 5px;
    padding: 7px 8px 9px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    overflow: hidden;
}

.landing-member-app__search {
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f1f5f9, #e2e8f0);
    border: 1px solid #e2e8f0;
}

.landing-member-app__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-height: 0;
}

.landing-member-app__list-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 6px;
    border-radius: 8px;
    background: #f8fafc;
}

.landing-member-app__list-item--accent {
    background: linear-gradient(90deg, #fef2f2, #fff);
    border: 1px solid #fecaca;
}

.landing-member-app__list-dot {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.landing-member-app__list-item--accent .landing-member-app__list-dot {
    background: linear-gradient(135deg, var(--rrr-red), var(--rrr-red-dark));
}

.landing-member-app__list-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.landing-member-app__list-lines span {
    display: block;
    height: 4px;
    border-radius: 2px;
    background: #e2e8f0;
}

.landing-member-app__list-lines span:first-child {
    width: 85%;
}

.landing-member-app__list-lines span:last-child {
    width: 60%;
}

.landing-member-app__list-item--accent .landing-member-app__list-lines span:first-child {
    background: #fecaca;
}

.landing-member-app__status {
    display: flex;
    gap: 3px;
    justify-content: center;
    padding-bottom: 2px;
}

.landing-member-app__status span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}

.landing-member-app__app-bar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 2px 0 4px;
}

.landing-member-app__app-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--rrr-white);
    background: linear-gradient(135deg, var(--rrr-red), var(--rrr-red-dark));
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.4);
}

.landing-member-app__app-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--rrr-black);
    letter-spacing: -0.02em;
}

.landing-member-app__hero-card {
    position: relative;
    padding: 8px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    overflow: hidden;
}

.landing-member-app__hero-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.12) 50%,
        transparent 70%
    );
    animation: heroShine 4s ease-in-out infinite;
}

@keyframes heroShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.landing-member-app__hero-tag {
    position: relative;
    display: inline-block;
    margin-bottom: 6px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fecaca;
    background: rgba(227, 30, 36, 0.35);
}

.landing-member-app__hero-line {
    position: relative;
    display: block;
    height: 5px;
    margin-top: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.landing-member-app__hero-line--lg {
    width: 75%;
    height: 7px;
    background: rgba(255, 255, 255, 0.35);
}

.landing-member-app__hero-line:not(.landing-member-app__hero-line--lg) {
    width: 55%;
}

.landing-member-app__nav {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 4px;
}

.landing-member-app__nav span {
    width: 14px;
    height: 4px;
    border-radius: 999px;
    background: #e2e8f0;
}

.landing-member-app__nav span.is-active {
    height: 14px;
    width: 14px;
    border-radius: 5px;
    background: linear-gradient(180deg, var(--rrr-red), var(--rrr-red-dark));
    box-shadow: 0 4px 8px rgba(227, 30, 36, 0.35);
}

.landing-feature--highlight .landing-feature__icon-wrap {
    opacity: 0.35;
    transform: scale(0.85);
    transform-origin: top left;
    margin-bottom: -0.5rem;
}

.landing-feature--highlight:hover .landing-feature__icon-wrap {
    opacity: 0.55;
}

.landing-member-app h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    letter-spacing: -0.03em;
}

.landing-member-app p {
    font-size: 0.98rem;
    line-height: 1.7;
}

.landing-feature--highlight:hover .landing-member-app__splash {
    animation-duration: 4s;
}

@media (prefers-reduced-motion: reduce) {
    .landing-member-app__aurora,
    .landing-member-app__ring,
    .landing-member-app__float,
    .landing-member-app__live-dot,
    .landing-member-app__hero-shine,
    .landing-member-app__splash,
    .landing-member-app__phone-glow {
        animation: none !important;
    }
}

/* Plans */
.landing-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.landing-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.25rem 2rem;
    border-radius: var(--radius-2xl);
    background: var(--rrr-white);
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.landing-plan:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.landing-plan--featured {
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--rrr-red), #f97316, var(--rrr-red)) border-box;
    box-shadow: var(--shadow-glow);
}

.landing-plan--featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--rrr-red), transparent, var(--rrr-red-light));
    opacity: 0.15;
    z-index: -1;
    filter: blur(20px);
}

.landing-plan__badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rrr-red), var(--rrr-red-dark));
    color: var(--rrr-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.landing-plan h3 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.landing-plan__price {
    margin: 0 0 1rem;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.landing-plan__currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--rrr-gray);
    vertical-align: super;
    margin-right: 0.15rem;
}

.landing-plan__price small {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rrr-gray);
    margin-top: 0.25rem;
}

.landing-plan > p:not(.landing-plan__price) {
    margin: 0 0 1.5rem;
    color: var(--rrr-gray);
    line-height: 1.65;
    flex: 1;
}

.landing-plan ul {
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.landing-plan li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.7rem;
    color: #334155;
    font-size: 0.94rem;
}

.landing-plan li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1rem;
    height: 1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e31e24' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* About */
.landing-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.landing-about__panel {
    position: relative;
    padding: 2.25rem;
    border-radius: var(--radius-2xl);
    background: var(--rrr-white);
    border: 1px solid #fecaca;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.08);
}

.landing-about__panel-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.12), transparent 70%);
    pointer-events: none;
}

.landing-about__panel h3 {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    position: relative;
}

.landing-about__panel > p {
    color: var(--rrr-gray);
    line-height: 1.75;
    margin: 0;
    position: relative;
}

.landing-about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
    position: relative;
}

.landing-about__stat {
    padding: 1.35rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s var(--ease-spring);
}

.landing-about__stat:hover {
    transform: translateY(-4px) scale(1.02);
}

.landing-about__stat strong {
    display: block;
    font-size: 1.85rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--rrr-red), var(--rrr-red-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

.landing-about__stat span {
    font-size: 0.88rem;
    color: var(--rrr-gray);
}

/* ── Contact section ──────────────────────────────────────────────────────── */

.landing-section--contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.landing-contact__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.landing-contact__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

.landing-contact {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 1.75rem;
    align-items: stretch;
}

.landing-contact__card {
    --spotlight-x: 50%;
    --spotlight-y: 50%;
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transform-style: preserve-3d;
}

.landing-contact__card-spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        400px circle at var(--spotlight-x) var(--spotlight-y),
        rgba(227, 30, 36, 0.08),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.landing-contact__card:hover .landing-contact__card-spotlight {
    opacity: 1;
}

.landing-contact__card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 24px 48px rgba(15, 23, 42, 0.08);
}

.landing-contact__text {
    color: var(--rrr-gray);
    line-height: 1.75;
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.landing-contact__list {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.landing-contact__item {
    margin: 0;
}

.landing-contact__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.15rem 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: #f8fafc;
    border: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-spring);
    text-decoration: none;
    color: inherit;
}

a.landing-contact__row:hover {
    background: #fff;
    border-color: rgba(227, 30, 36, 0.15);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.08);
}

.landing-contact__icon {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: var(--rrr-red);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.12);
}

.landing-contact__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rrr-gray);
}

.landing-contact__value {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--rrr-black);
}

.landing-contact__chevron {
    grid-row: span 2;
    color: var(--rrr-red);
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

a.landing-contact__row:hover .landing-contact__chevron {
    opacity: 1;
    transform: translateX(4px);
}

.landing-contact__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.landing-contact__chips span {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #fef2f2, #fff);
    border: 1px solid #fecaca;
    color: var(--rrr-red-dark);
    font-size: 0.78rem;
    font-weight: 600;
}

/* CTA panel */
.landing-contact__cta {
    position: relative;
    padding: 2.75rem 2.5rem;
    border-radius: var(--radius-2xl);
    color: var(--rrr-white);
    background: linear-gradient(155deg, #450a0a 0%, var(--rrr-red-deep) 20%, var(--rrr-red) 55%, #f87171 100%);
    overflow: hidden;
    box-shadow:
        0 32px 64px rgba(227, 30, 36, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform-style: preserve-3d;
}

.landing-contact__cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.landing-contact__cta-ring--1 {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -60px;
    animation: ctaRingSpin 20s linear infinite;
}

.landing-contact__cta-ring--2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -30px;
    animation: ctaRingSpin 15s linear infinite reverse;
}

@keyframes ctaRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.landing-contact__cta-orbs {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.2), transparent 35%),
        radial-gradient(circle at 85% 15%, rgba(0, 0, 0, 0.25), transparent 40%);
    pointer-events: none;
}

.landing-contact__cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.landing-contact__cta-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: particleFloat 6s ease-in-out infinite;
}

.landing-contact__cta-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.landing-contact__cta-particles span:nth-child(2) { top: 25%; right: 15%; animation-delay: -1s; width: 6px; height: 6px; }
.landing-contact__cta-particles span:nth-child(3) { top: 60%; left: 20%; animation-delay: -2s; }
.landing-contact__cta-particles span:nth-child(4) { bottom: 30%; right: 25%; animation-delay: -3s; }
.landing-contact__cta-particles span:nth-child(5) { top: 40%; left: 45%; animation-delay: -4s; width: 3px; height: 3px; }
.landing-contact__cta-particles span:nth-child(6) { bottom: 20%; left: 8%; animation-delay: -0.5s; }
.landing-contact__cta-particles span:nth-child(7) { top: 70%; right: 10%; animation-delay: -2.5s; width: 5px; height: 5px; }
.landing-contact__cta-particles span:nth-child(8) { top: 10%; right: 40%; animation-delay: -1.5s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-12px) scale(1.2); opacity: 0.9; }
}

.landing-contact__cta-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.landing-contact__cta h2 {
    position: relative;
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.landing-contact__cta > p {
    position: relative;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    font-size: 1.02rem;
    max-width: 42ch;
}

.landing-contact__benefits {
    position: relative;
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.landing-contact__benefits li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.landing-contact__benefits svg {
    flex-shrink: 0;
    padding: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.landing-contact__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.landing-btn--lg {
    padding: 0.95rem 1.75rem;
    font-size: 1rem;
}

/* Footer */
.landing-footer {
    padding: 2.5rem 0;
    background: var(--rrr-black);
    color: rgba(255, 255, 255, 0.65);
}

.landing-footer__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.landing-footer__brand img {
    height: 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.landing-footer__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.landing-footer__links a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.landing-footer__links a:hover { color: var(--rrr-white); }

.landing-footer__copy {
    margin: 0;
    font-size: 0.88rem;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px) rotateX(8deg);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Tilt disabled state */
.no-tilt [data-tilt],
.no-tilt [data-tilt-card] {
    transform: none !important;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .landing-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-bento__item--wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 960px) {
    .landing-menu-toggle { display: flex; }

    .landing-nav {
        position: fixed;
        inset: 0;
        z-index: 99;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        background: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
    }

    .landing-nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .landing-nav__links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .landing-nav__links a {
        color: var(--rrr-white);
        font-size: 1.2rem;
    }

    .landing-nav__links a::after { background: var(--rrr-red); }

    .landing-nav__actions {
        flex-direction: column;
        width: min(20rem, 90%);
    }

    .landing-nav__actions .landing-btn { width: 100%; }

    .landing-hero__grid,
    .landing-about,
    .landing-contact,
    .landing-plans {
        grid-template-columns: 1fr;
    }

    .landing-bento {
        grid-template-columns: 1fr;
    }

    .landing-bento__item--wide {
        grid-column: 1 / -1;
    }

    .landing-feature__highlight-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-member-app__preview {
        width: 100%;
        max-width: 340px;
        min-width: 0;
    }

    .landing-member-app__stage {
        max-width: 100%;
        min-height: 280px;
    }

    .landing-member-app__float {
        min-width: 128px;
        padding: 0.5rem 0.65rem;
    }

    .landing-member-app__float--tournament {
        left: 0;
        top: 18%;
    }

    .landing-member-app__float--gym {
        right: 0;
        top: 6%;
    }

    .landing-member-app__float--demo {
        right: 0;
        bottom: 14%;
    }

    .landing-member-app__splash {
        width: min(168px, 58vw);
        max-height: none;
    }

    .landing-hero { padding-top: 6.5rem; }
    .landing-hero__visual { order: -1; }
    .landing-hero__scroll-hint { display: none; }
    .landing-hero__floats { display: none; }

    .landing-stat-card--members { left: 2%; top: 4%; }
    .landing-stat-card--sessions { right: 2%; bottom: 8%; }

    .landing-footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .landing-footer__links { justify-content: center; }
    .landing-cursor-glow { display: none; }
}

@media (max-width: 640px) {
    .landing-bento,
    .landing-plans {
        grid-template-columns: 1fr;
    }

    .landing-hero__title { font-size: 2.5rem; }
}

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

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .landing-marquee__track { animation: none; }
    .landing-hero__stage { transform: none !important; }
}
