 /* ----- RESET & COLOR VARIABLES (strictly from mikel_teal) ----- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --teal-dark:   #587E83;
            --teal-mid:    #7AA0A5;
            --teal-light:  #A8C5C9;
            --teal-pale:   #D0E3E5;
            --grey:        #A2A19C;
            --grey-light:  #C8C7C2;
            --grey-pale:   #E4E3DF;
            --sage:        #DFE7E2;
            --sage-dark:   #BFD0CA;
            --cream:       #F6F4EC;
            --cream-2:     #EFEDE4;
            --cream-3:     #E8E5DB;
            --dark:        #1C2829;
            --dark-2:      #253233;
            --text-dark:   #1C2829;
            --text-body:   #3D4F51;
            --text-muted:  #6B7F81;
            --text-light:  #A2A19C;
            --serif: 'Cormorant Garamond', Georgia, serif;
            --sans: 'DM Sans', sans-serif;
            --border: rgba(88,126,131,0.15);
            --border-dark: rgba(88,126,131,0.25);
        }

        body {
            font-family: var(--sans);
            background-color: #efede4;
            color: var(--text-dark);
            line-height: 1.7;
            scroll-behavior: smooth;
            font-weight: 300;
            overflow-x: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        h1, h2, h3 {
            font-weight: 300;
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        /* ----- NAVIGATION ----- */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 14px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(246,244,236,0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .nav-logo {
            display: flex;
            align-items: center;
        }
        .nav-logo img {
            height: 48px;
            width: auto;
            object-fit: cover;
            transition: all 0.3s;
        }
        .nav-logo img:hover {
            transform: scale(1.02);
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            font-size: 11px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 400;
            font-family: var(--sans);
        }
        .nav-links a:hover { color: var(--teal-dark); }

        .nav-cta {
            display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: rgba(246, 244, 236, 0.75);
    backdrop-filter: blur(2px);
    padding: 10px 24px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1.2px solid var(--teal-mid);
    position: relative;
    overflow: hidden;
        }
       .nav-cta:hover { background: #dfe7e2; }

        @media (max-width: 768px) {
            nav {
                padding: 12px 20px;
                flex-wrap: wrap;
                gap: 12px;
            }
            .nav-links {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .nav-links a {
                font-size: 10px;
            }
            .nav-cta {
                padding: 8px 18px;
                font-size: 10px;
            }
            .nav-logo img {
                height: 42px;
            }
        }

        @media (max-width: 550px) {
            nav {
                padding: 10px 16px;
            }
            .nav-links {
                gap: 14px;
            }
            .nav-links a {
                font-size: 9px;
                letter-spacing: 0.12em;
            }
            .nav-cta {
                padding: 6px 14px;
                font-size: 9px;
            }
        }

        /* ----- HERO ----- */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 48px 40px;
            position: relative;
            overflow: hidden;
            background: var(--cream);
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 55% at 50% 25%, rgba(88,126,131,0.07) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 15% 85%, rgba(223,231,226,0.6) 0%, transparent 60%),
                radial-gradient(ellipse 35% 40% at 85% 70%, rgba(223,231,226,0.5) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
        }
        .hero-eyebrow {
            font-size: 11px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--teal-dark);
            margin-bottom: 18px;
            margin-left: 8px;
            font-family: var(--sans);
        }
        .hero-title {
            font-family: var(--serif);
            font-size: clamp(52px, 9vw, 108px);
            font-weight: 300;
            line-height: 1.0;
            letter-spacing: -0.01em;
            color: var(--dark);
            margin-bottom: 24px;
        }
        .hero-title em {
            font-style: italic;
            color: var(--teal-dark);
        }
        .hero-subtitle {
            font-family: var(--serif);
            font-size: clamp(17px, 2.2vw, 22px);
            font-weight: 300;
            font-style: italic;
            color: var(--text-muted);
            max-width: 520px;
            line-height: 1.6;
            margin-bottom: 32px;
            margin-left: 8px;
        }
        .hero-subtitle strong {
            color: var(--teal-dark);
            font-style: normal;
            font-weight: 600;
        }
        .btn-primary {
            display: inline-block;
            font-family: var(--sans);
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--cream);
            background: var(--teal-dark);
            padding: 16px 48px;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            margin-left: 1px;
        }
        .btn-primary:hover {
            background: var(--dark);
            transform: translateY(-2px);
        }
        /* Improved contrast for buttons - accessibility fix */
        .btn-primary:focus-visible,
        .nav-cta:focus-visible,
        .plan-cta:focus-visible {
            outline: 2px solid var(--teal-dark);
            outline-offset: 2px;
        }
        .hero-image-container {
            width: 100%;
            height: 460px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px -15px rgba(88,126,131,0.4);
        }
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.4s;
        }
        .hero-image:hover { transform: scale(1.03); }

        @media (max-width: 900px) {
            .hero {
                padding: 100px 32px 50px;
            }
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-eyebrow {
                margin-left: 0;
            }
            .hero-image-container {
                max-width: 500px;
                margin: 0 auto;
                height: auto;
                aspect-ratio: 16 / 12;
            }
        }

        /* ----- SOCIAL PROOF ----- */
        .social-proof {
            padding: 65px 48px;
            background: linear-gradient(145deg, #dfe7e2 100%, #dfe7e2 100%);
            text-align: center;
            position: relative;
            box-shadow: inset 0 4px 20px rgba(88, 126, 131, 0.06);
            margin-bottom: -14px;
        }
        
        .featured-label {
            font-size: 10px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #587e83;
            margin-bottom: 24px;
            font-family: var(--sans);
        }

        .featured-in {
            font-family: var(--serif);
            font-size: 13px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--teal-dark);
            margin-bottom: 48px;
        }

        .founder-quote {
            max-width: 700px;
            margin: 0 auto;
        }

        .founder-quote blockquote {
            font-family: var(--serif);
            font-size: clamp(20px, 3vw, 28px);
            font-weight: 300;
            font-style: italic;
            line-height: 1.5;
            color: var(--dark);
            margin-bottom: 24px;
        }

        .founder-quote cite {
            font-size: 12px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--teal-dark);
            font-style: normal;
            font-family: var(--sans);
        }

        @media (max-width: 768px) {
            .social-proof {
                padding: 50px 24px;
            }
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-98px * 7)); }
        }

        .slider {
            height: 55px;
            margin: auto;
            overflow: hidden;
            position: relative;
            width: 100%;
            background-color: #dfe7e2;
            margin-top: 50px;
        }

        .slider .slide-track {
            animation: scroll 40s linear infinite;
            display: flex;
            width: calc(98px * 14);
        }

        .slider .slide {
            height: 35px;
            width: 88px;
            flex-shrink: 0;
            margin-right: 10px;
        }

        .slider .slide img {
            background: transparent;
            object-fit: contain;
            mix-blend-mode: multiply;
            filter: grayscale(100%);
            width: 100%;
            height: 100%;
        }

        @media (max-width: 700px) {
            .slider .slide { width: 180px; margin-right: 16px; }
            .slider .slide-track { width: calc(196px * 14); }
            @keyframes scroll {
                100% { transform: translateX(calc(-196px * 7)); }
            }
        }

        /* ----- MIRROR SECTION ----- */
        .mirror-section {
            background: var(--cream-2);
            padding: 60px 0;
        }
        .mirror-inner {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 48px;
            text-align: center;
        }
        .eyebrow {
            font-size: 11px;
            letter-spacing: 0.2em;
            font-weight: bold;
            text-transform: uppercase;
            color: var(--teal-dark);
            margin-bottom: 18px;
            margin-top: 50px;
            display: block;
            font-family: var(--sans);
        }
        .mirror-heading {
            font-family: var(--serif);
            font-size: clamp(36px, 5vw, 58px);
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 48px;
            color: var(--dark);
        }
        .mirror-heading em {
            font-style: italic;
            color: var(--teal-dark);
        }
        .mirror-body {
            font-size: 17px;
            color: var(--text-body);
            line-height: 1.85;
            margin-bottom: 28px;
            font-family: var(--sans);
        }
        .mirror-body strong {
            color: #000000;
            font-weight: 500;
        }
        .mirror-emphasis {
            font-family: var(--serif);
            font-size: clamp(20px, 3vw, 26px);
            font-style: italic;
            color: var(--dark);
            line-height: 1.5;
            margin: 48px 0;
            padding: 24px 48px;
            border-left: 2px solid var(--teal-dark);
            border-right: 2px solid var(--teal-dark);
            text-align: center;
            background: #dfe7e2;
        }
        .mirror-emphasis-block {
            font-family: var(--serif);
            font-size: clamp(20px, 3vw, 26px);
            font-style: italic;
            font-weight: 300;
            color: var(--dark);
            line-height: 1.5;
            margin: 48px 0;
            text-align: center;
            background: transparent;
        }
        .gold-divider {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 48px 0;
        }
        .gold-divider::before,
        .gold-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border-dark);
        }
        .gold-divider span {
            font-size: 16px;
            color: var(--teal-dark);
        }

        @media (max-width: 768px) {
            .mirror-inner {
                padding: 0 24px;
            }
            .mirror-emphasis {
                padding: 24px 20px;
            }
        }

        /* ----- BRIDGE SECTION ----- */
        .bridge-section {
            background: var(--cream);
            padding: 60px 0;
        }
        .bridge-inner {
            max-width: 820px;
            margin: 0 auto;
            padding: 0 48px;
            text-align: center;
        }
        .bridge-divider {
            display: flex; 
            align-items: center; 
            gap: 20px;
            margin-bottom: 60px;
            margin-top: -22px;
        }
        .bridge-divider::before, .bridge-divider::after {
            content: ''; 
            flex: 1; 
            height: 1px;
            background: var(--border-dark);
        }
        .bridge-divider span { 
            font-size: 14px; 
            color: var(--teal-dark); 
        }
        .bridge-heading {
            font-family: var(--serif);
            font-size: clamp(38px, 6vw, 66px);
            font-weight: 300;
            line-height: 1.1;
            color: var(--dark);
            margin-bottom: 28px;
        }
        .bridge-heading em { 
            font-style: italic; 
            color: var(--teal-dark); 
        }
        .bridge-desc {
            font-size: 17px;
            color: var(--text-body);
            max-width: 600px;
            margin: 0 auto 24px;
            margin-left: 1px;
            line-height: 1.9;
            font-family: var(--sans);
        }
        .bridge-rule {
            font-family: var(--serif);
            font-size: clamp(16px, 2vw, 20px);
            font-style: italic;
            font-weight: bold;
            color: #253233;
            margin: 23px 0;
            line-height: 1.6;
        }

        /* ----- CLUB SECTION ----- */
        .club-section {
            background: var(--mist, #DFE7E2);
            padding: 60px 0;
            margin-top: 50px;
        }
        .club-container {
            display: grid;
            grid-template-columns: 1.2fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }
        .club-left .bridge-heading { 
            font-size: clamp(38px,5vw,58px); 
            margin-bottom: 20px; 
        }
        .video-wrapper {
            width: 100%; 
            max-width: 450px; 
            border-radius: 24px; 
            overflow: hidden;
            box-shadow: 0 20px 30px -10px rgba(88,126,131,0.3); 
            background: #000;
        }
        video { 
            display: block; 
            width: 450px; 
            height: 550px; 
            object-fit: cover; 
        }

        @media (max-width: 900px) {
            .club-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            .video-wrapper {
                margin: 0 auto;
            }
            video {
                width: 100%;
                height: auto;
                aspect-ratio: 450 / 550;
            }
        }

        /* ========== REDESIGNED "INSIDE THE CLUB" SECTION ========== */
        /* Community at the core, practices connected radially */
        .inside-club-ecosystem {
            background: #dfe7e2;
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .ecosystem-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 32px;
            position: relative;
            z-index: 2;
        }

        .ecosystem-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .ecosystem-header .eyebrow {
            margin-top: 0;
        }

        .section-title {
            font-family: var(--serif);
            font-size: clamp(34px, 4.5vw, 52px);
            font-weight: 300;
            line-height: 1.2;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .section-title em {
            font-style: italic;
            color: var(--teal-dark);
        }

        .ecosystem-sub {
            font-family: var(--serif);
            font-size: 18px;
            font-style: italic;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Radial hub layout */
        .radial-hub {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Central Community Core */
        .community-core {
            background: var(--cream);
            border-radius: 50%;
            width: 280px;
            height: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 32px;
            position: relative;
            z-index: 10;
            box-shadow: 0 25px 45px -15px rgba(88,126,131,0.4), 0 0 0 1px var(--border), inset 0 0 0 1px rgba(255,255,255,0.8);
            transition: all 0.3s ease;
            border: 1px solid var(--teal-light);
        }

        .community-core:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 55px -18px rgba(88,126,131,0.5);
            border-color: var(--teal-dark);
        }

        .core-icon {
            font-size: 3.5rem;
            margin-bottom: 12px;
            color: var(--teal-dark);
        }

        .community-core h3 {
            font-family: var(--serif);
            font-size: 32px;
            font-weight: 400;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .community-core p {
            font-family: var(--sans);
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.5;
            max-width: 200px;
            padding-bottom: 16px;
        }

        /* Practices Grid - Wrapped around core with connection lines */
        .practices-ring {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-top: 48px;
            position: relative;
        }

        .practice-node {
            flex: 1;
            min-width: 200px;
            max-width: 275px;
            background: var(--cream);
            border-radius: 28px;
            padding: 28px 20px 32px;
            text-align: center;
            position: relative;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 1px solid var(--border);
            box-shadow: 0 8px 20px -8px rgba(88,126,131,0.2);
            backdrop-filter: blur(2px);
        }

        .practice-node:hover {
            transform: translateY(-8px);
            border-color: var(--teal-mid);
            box-shadow: 0 20px 30px -12px rgba(88,126,131,0.3);
            background: #fafaf5;
        }

        /* Connection lines from core to each practice - using pseudo-elements */
        .practice-node::before {
            content: '';
            position: absolute;
            top: -28px;
            left: 50%;
            width: 2px;
            height: 28px;
            background: linear-gradient(to bottom, var(--teal-light), var(--teal-dark));
            transform: translateX(-50%);
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .practice-node:hover::before {
            opacity: 1;
            height: 32px;
            top: -32px;
        }

        /* Connecting back to core on bottom for visual continuity */
        .practice-node::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            width: 1.5px;
            height: 20px;
            background: linear-gradient(to top, var(--teal-light), transparent);
            transform: translateX(-50%);
            opacity: 0.4;
        }
		
		.benefits-sub {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 35px;
}

        .practice-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: inline-block;
            background: rgba(88,126,131,0.1);
            width: 70px;
            height: 70px;
            line-height: 70px;
            border-radius: 50%;
            color: var(--teal-dark);
            transition: all 0.3s;
        }

        .practice-node:hover .practice-icon {
            background: var(--teal-dark);
            color: var(--cream);
            transform: scale(1.05);
        }

        .practice-node h4 {
            font-family: var(--sans);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--teal-dark);
            margin-bottom: 14px;
            word-break: break-all;
        }

        .practice-node p {
            font-family: var(--sans);
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.55;
           
        }

        /* Decorative orbital ring */
        .orbital-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 85%;
            height: 85%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1px dashed rgba(88,126,131,0.2);
            pointer-events: none;
            z-index: 0;
        }

        .orbital-ring-secondary {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 95%;
            height: 95%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1px dotted rgba(88,126,131,0.12);
            pointer-events: none;
        }

        /* Responsive adjustments for inside club section */
        @media (max-width: 900px) {
            .community-core {
                width: 240px;
                height: 240px;
                padding: 24px;
            }
            .community-core h3 {
                font-size: 26px;
            }
            .community-core p {
                font-size: 13px;
            }
            .practices-ring {
                gap: 20px;
                margin-top: 60px;
            }
            .practice-node {
                min-width: 180px;
            }
            .practice-node::before {
                top: -24px;
                height: 24px;
            }
        }

        @media (max-width: 768px) {
            .ecosystem-container {
                padding: 0 24px;
            }
            .practices-ring {
                flex-direction: column;
                align-items: center;
                gap: 28px;
            }
            .practice-node {
                max-width: 320px;
                width: 100%;
            }
            .practice-node::before,
            .practice-node::after {
                content: none;
            }
            .community-core {
                margin-bottom: 20px;
            }
            .orbital-ring,
            .orbital-ring-secondary {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .inside-club-ecosystem {
                padding: 60px 0 70px;
            }
            .community-core {
                width: 220px;
                height: 220px;
            }
            .core-icon {
                font-size: 2.8rem;
            }
        }

        /* ----- PRACTICES SECTION (original practices preserved) ----- */
        .practices-section {
            padding: 80px 0 100px;
            background: var(--cream-2);
            margin: 2rem 0;
        }
        .practices-inner {
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 32px;
        }
        .practices-header { 
            text-align: center; 
            margin-bottom: 60px; 
        }
        .practices-grid-original {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px 30px;
            margin-top: 40px;
        }
        .practice-card-original {
            background: var(--cream);
            border-radius: 30px;
            padding: 40px 28px 42px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 25px -12px rgba(88,126,131,0.15);
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .practice-card-original:hover { 
            transform: translateY(-8px);
            border-color: var(--teal-light);
            box-shadow: 0 25px 35px -18px rgba(88,126,131,0.3);
            background: #faf8f2;
        }
        .practice-num-badge {
            display: inline-block;
            font-family: var(--serif);
            font-size: 14px;
            font-weight: 400;
            color: var(--teal-dark);
            background: rgba(88,126,131,0.08);
            padding: 4px 16px;
            border-radius: 40px;
            letter-spacing: 0.06em;
            margin-bottom: 22px;
            align-self: flex-start;
            border: 1px solid var(--border);
        }
        .practice-title {
            font-family: var(--sans);
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--teal-dark);
            line-height: 1.4;
            margin-bottom: 18px;
            padding-bottom: 12px;
        }
        .practice-desc {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.7;
            font-family: var(--sans);
            margin-top: -11px;
            flex: 1;
        }
        .practice-desc strong { 
            color: var(--dark); 
            font-weight: 550; 
        }

        @media (max-width: 1000px) {
            .practices-grid-original { 
                grid-template-columns: repeat(2, 1fr); 
            }
        }
        
        @media (max-width: 650px) {
            .practices-grid-original { grid-template-columns: 1fr; }
            .practices-inner { padding: 0 24px; }
        }

        /* ----- PLANS SECTION (unchanged) ----- */
        .plans-section {
            background: var(--cream-2);
            padding: 80px 0;
        }

        .plans-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .plan-card {
            background: var(--cream);
            border: 1px solid var(--border);
            padding: 48px 32px;
            position: relative;
            transition: transform 0.3s, border-color 0.3s;
            display: flex;
            flex-direction: column;
        }
        .plan-card:hover {
            transform: translateY(-4px);
            border-color: var(--teal-dark);
        }
        .plan-card.featured {
            border-color: var(--teal-dark);
            background: var(--cream);
            position: relative;
        }
        .plan-badge {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            background: var(--teal-dark);
            color: var(--cream);
            padding: 6px 20px;
            white-space: nowrap;
            font-family: var(--sans);
        }
        .plan-name {
            font-family: var(--serif);
            font-size: 32px;
            font-weight: 300;
            margin-bottom: 8px;
            color: var(--dark);
        }
        .plan-tagline {
            font-size: 13px;
            color: var(--teal-dark);
            letter-spacing: 0.05em;
            margin-bottom: 32px;
            display: block;
            font-family: var(--sans);
        }
        .plan-features {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
        }
        .plan-features li {
            font-size: 14px;
            color: var(--text-body);
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.5;
            font-family: var(--sans);
        }
        .plan-features li::before {
            content: '◆';
            font-size: 6px;
            color: var(--teal-dark);
            margin-top: 6px;
            flex-shrink: 0;
        }
        .plan-cta {
            display: block;
            text-align: center;
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 14px 24px;
            text-decoration: none;
            transition: all 0.3s;
            font-family: var(--sans);
            margin-top: auto;
        }
        .plan-card.featured .plan-cta {
            background: var(--teal-dark);
            color: var(--cream);
        }
        .plan-card.featured .plan-cta:hover {
            background: var(--dark);
        }
        .plan-card:not(.featured) .plan-cta {
            border: 1px solid var(--border);
            color: var(--teal-dark);
        }
        .plan-card:not(.featured) .plan-cta:hover {
            border-color: var(--teal-dark);
            background: rgba(88,126,131,0.08);
        }
        .plan-price {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 52px;
            font-weight: 300;
            color: var(--dark);
            line-height: 1;
            margin-bottom: 6px;
        }
        .plan-price sup {
            font-size: 22px;
            vertical-align: super;
            font-weight: 300;
        }
        .plan-period {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.1em;
            margin-bottom: 28px;
            font-family: var(--sans);
        }
        .plans-footer {
            text-align: center;
            margin-top: 48px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 24px;
        }
		.plans-footer p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--text-muted);
}

        @media (max-width: 900px) {
            .plans-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
        }

        /* ----- FOUNDER SECTION (unchanged) ----- */
        .founder-section {
            background: #ebd9b8;
            padding: 60px 0;
        }
        .founder-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .founder-name {
            font-family: var(--serif);
            font-size: 42px;
            line-height: 1.1;
            margin-bottom: 6px;
        }
        .founder-name em { 
            color: var(--teal-dark); 
            display: block; 
            font-style: italic;
        }
        .founder-role {
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--teal-dark);
            margin: 16px 0 24px;
            display: block;
        }
        .founder-bio {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.85;
            margin-bottom: 20px;
        }
        .founder-pull {
            border-left: 3px solid var(--teal-dark);
            padding-left: 22px;
            margin: 32px 0;
        }
        .founder-pull p {
            font-family: var(--serif);
            font-size: 18px;
            font-style: italic;
            color: var(--dark);
            line-height: 1.55;
            font-weight: 600;
        }
        .btn-ghost {
            display: inline-block;
            font-family: var(--sans);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--teal-dark);
            border: 1px solid #6b7f81;
            padding: 16px 48px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .btn-ghost:hover {
            border-color: var(--teal-dark);
            background: rgba(88,126,131,0.08);
            transform: translateY(-2px);
        }

        @media (max-width: 900px) {
            .founder-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            .founder-image-block {
                display: flex;
                justify-content: center;
            }
            .founder-pull {
                text-align: left;
            }
        }

        /* ----- FINAL CTA ----- */
        .final-cta {
            background: var(--teal-dark); 
            padding: 80px 48px; 
            text-align: center;
        }
        .final-inner {
            max-width: 680px; 
            margin: 0 auto;
        }
        .final-eyebrow {
            font-size: 11px; 
            letter-spacing: 0.3em; 
            text-transform: uppercase; 
            color: rgba(246,244,236,0.6); 
            margin-bottom: 24px;
        }
        .final-headline {
            font-family: var(--serif); 
            font-size: clamp(34px,5vw,60px); 
            font-weight: 300; 
            color: var(--cream); 
            line-height: 1.15; 
            margin-top: 15px;
        }
        .final-headline em {     
            font-style: italic;
            color: #ebd9b8; 
        }
        .final-sub {
            font-size: 16px; 
            color: rgba(246,244,236,0.72); 
            line-height: 1.8; 
            margin: 24px 0;
        }
        .final-emphasis {
            font-family: var(--serif); 
            font-size: 22px; 
            font-style: italic; 
            color: var(--cream-2); 
            margin: 36px 0 48px;
        }
        .btn-light {
            background: var(--cream); 
            color: #253233; 
            padding: 16px 48px; 
            text-decoration: none;
            font-size: 11px; 
            letter-spacing: 0.2em; 
            text-transform: uppercase; 
            display: inline-block; 
            transition: 0.3s;
        }
        .btn-light:hover { 
            background: var(--cream-2); 
            transform: translateY(-2px); 
        }

        @media (max-width: 768px) {
            .final-cta {
                padding: 60px 24px;
            }
        }

        /* ----- FOOTER ----- */
        footer {
            background: var(--dark);
            padding: 56px 48px 36px;
        }
        .footer-inner {
            max-width: 1280px; 
            margin: 0 auto; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 28px; 
            text-align: center;
        }
        .footer-logo img {
            height: 48px; 
            width: auto; 
            filter: brightness(0.9) contrast(1.2);
        }
        .footer-links {
            display: flex; 
            gap: 32px; 
            list-style: none; 
            flex-wrap: wrap; 
            justify-content: center;
        }
        .footer-links a {
            font-size: 11px; 
            letter-spacing: 0.15em; 
            text-transform: uppercase;
            color: #f6f4ec;  
            text-decoration: none; 
            transition: color 0.3s;
            font-family: var(--sans);
        }
        .footer-links a:hover { color: var(--teal-light); }
        .footer-copy { 
            font-size: 12px; 
			margin-bottom: 12px;
            color: #f6f4ec; 
            font-family: var(--sans); 
        }

        @media (max-width: 768px) {
            footer {
                padding: 48px 24px 32px;
            }
            .footer-links {
                gap: 20px;
            }
        }
    
        /* ----- ANIMATIONS ----- */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.85s ease, transform 0.85s ease;
        }
        .reveal.visible { 
            opacity: 1; 
            transform: translateY(0); 
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        
        .uni{
            font-weight: 40px;
        }

        /* Accessibility: skip to content link */
        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--teal-dark);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 200;
        }
        .skip-to-content:focus {
            top: 0;
        }
		
		.plan-period-price{
		visibility:hidden;
		margin-top:7px;
		}

        /* Popup overlay */
.join-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(28,40,41,0.92);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}
.join-popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* Popup card */
.join-popup-container {
  background: var(--cream);
  border-radius: 28px;
  max-width: 440px;
  width: 90%;
  padding: 40px 32px 44px;
  position: relative;
  box-shadow: 0 25px 45px -12px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
}

/* Close button */
.popup-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
}
.popup-close:hover { color: var(--teal-dark); }

/* Header */
.popup-header {
  text-align: center;
  margin-bottom: 28px;
}
.popup-icon {
  font-size: 42px;
  display: inline-block;
  margin-bottom: 8px;
}
.popup-header h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
  margin: 0 0 6px;
}
.popup-header p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-muted);
}

/* Form */
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 14px 20px;
  font-size: 15px;
  color: var(--dark);
  font-family: var(--sans);
  box-sizing: border-box;
}
.form-group input:focus {
  outline: none;
  border-color: var(--teal-dark);
  background: white;
}

/* Submit button */
.popup-submit-btn {
  width: 100%;
  background: var(--teal-dark);
  border: none;
  border-radius: 40px;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
  transition: 0.2s;
  margin-top: 8px;
}
.popup-submit-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
}
.popup-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Loader */
.btn-loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Error message */
.popup-error {
  color: #b1624b;
  font-size: 12px;
  text-align: center;
  margin-top: 16px;
}

/* Toast */
.status-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--cream);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-family: var(--sans);
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: 0.25s;
  pointer-events: none;
}
.status-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.status-toast.success { border-left: 4px solid var(--teal-mid); }
.status-toast.error { border-left: 4px solid #b1624b; }
.status-toast button {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
}