
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary: #c53030;
      --primary-light: #e05252;
      --bg: #000;
      --bg-alt: #0a0a0a;
      --bg-zinc: #0d0d0d;
      --text: #f5f5f5;
      --text-muted: #9ca3af;
      --text-faint: #6b7280;
      --border: rgba(255,255,255,0.08);
      --font-serif: 'Playfair Display', Georgia, serif;
      --font-sans: 'Inter', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-sans);
      font-weight: 300;
      line-height: 1.6;
      min-height: 100vh;
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #000; }
    ::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

    /* ─── NAVBAR ─────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(0,0,0,0.95);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 1.5rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo img { height: 72px; width: auto; display: block; }
    .nav-links {
      display: flex; align-items: center; gap: 1.5rem;
    }
    .nav-links a {
      color: #d1d5db; text-decoration: none;
      font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--primary); }
    .nav-btns { display: flex; gap: 0.75rem; align-items: center; }
    .btn-outline-red {
      border: 1px solid var(--primary); color: var(--primary);
      background: transparent; padding: 0.45rem 1.2rem;
      font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
      font-family: var(--font-sans); cursor: pointer;
      text-decoration: none; transition: all 0.2s; display: inline-block;
    }
    .btn-outline-red:hover { background: var(--primary); color: #fff; }
    .btn-red {
      background: var(--primary); color: #fff;
      border: none; padding: 0.45rem 1.2rem;
      font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
      font-family: var(--font-sans); cursor: pointer;
      text-decoration: none; transition: all 0.2s; display: inline-block;
    }
    .btn-red:hover { background: var(--primary-light); }

    /* Mobile menu */
    .hamburger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 0.5rem; }
    .hamburger svg { width: 24px; height: 24px; }
    .mobile-menu {
      display: none; flex-direction: column; align-items: center; gap: 1.5rem;
      padding: 2rem 1.5rem; border-top: 1px solid var(--border);
      background: #000;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: #fff; text-decoration: none;
      font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--primary); }
    .mobile-menu-btns { display: flex; flex-direction: column; gap: 1rem; width: 100%; }

    @media (max-width: 768px) {
      .nav-links, .nav-btns { display: none; }
      .hamburger { display: block; }
    }

    /* ─── PAGES ─────────────────────────────── */
    .page { display: none; padding-top: 96px; }
    .page.active { display: block; }

    /* ─── SECTION HELPERS ─────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    .container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
    .section { padding: 5rem 0; }
    .section-alt { background: var(--bg-zinc); }
    .page-header {
      padding: 4rem 0 2.5rem;
      background: var(--bg-zinc);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .hero p.eyebrow,
    .eyebrow {
      font-size: 0.65rem; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--primary);
      margin: 0 auto;margin-bottom: 1rem; font-weight: 600;
    }
    .serif { font-family: var(--font-serif); }
    h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; }
    h2 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; }
    h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; }
    .rule { width: 3rem; height: 1px; background: var(--primary); margin: 1.5rem 0; }
    .rule-center { margin: 1.5rem auto; }
    .text-muted { color: var(--text-muted); }
    .text-primary { color: var(--primary); }
    .text-center { text-align: center; }

    /* Fade-in animation */
    .fade-in {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible { opacity: 1; transform: none; }
    .fade-in-x {
      opacity: 0; transform: translateX(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in-x.visible { opacity: 1; transform: none; }

    /* ─── HOME: HERO ─────────────────────────── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%; object-fit: cover; opacity: 0.45;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, #000 100%);
    }
    .hero-content {
      position: relative; z-index: 1;
      max-width: 56rem; padding: 0 1.5rem; margin: 0 auto;
      width: 100%;
    }
    .hero p.eyebrow{
      border: 1px solid var(--primary);
      padding: 0.45rem 1.2rem;
      max-width: max-content;
    }
    .hero h1 {
      font-size: clamp(3rem, 8vw, 6rem);
      line-height: 1.1; margin-bottom: 1.5rem;
      font-weight: 500;
    }
    .hero .rule{
      margin: 1.5rem auto;
    }
    .accent {
        color: var(--primary);
        font-style: italic;
        font-weight: 300;
    }
    .hero h1 .accent { color: var(--primary); font-style: italic; font-weight: 300; }
    .hero p { font-size: 1.1rem;  margin: 0 auto; margin-bottom: 2.5rem; max-width: 40rem; }
    .hero-meta {
      display: flex; flex-wrap: wrap; gap: 2rem;
      font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: #9ca3af; font-weight: 600; margin-top: 2rem;
    }
    .hero-meta span { display: flex; align-items: center; gap: 0.5rem; }
    .hero-meta .dot { width: 4px; height: 4px; background: var(--primary); border-radius: 50%; }
    .hero-btn{padding: 0.95rem 1.9rem;}

    /* App Download Buttons */
    .app-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .app-btn {
      display: flex; align-items: center; gap: 0.75rem;
      border: 1px solid #fff; border-radius: 0.5rem;
      padding: 0 1.25rem; height: 3.5rem;
      color: #fff; text-decoration: none;
      transition: background 0.2s; min-width: 160px;
    }
    .app-btn:hover { background: rgba(255,255,255,0.07); }
    .app-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
    .app-btn-text .sub {
      font-size: 0.55rem; text-transform: uppercase;
      letter-spacing: 0.2em; color: rgba(255,255,255,0.5);
      display: block; line-height: 1; margin-bottom: 3px;
    }
    .app-btn-text .main { font-size: 0.85rem; font-weight: 600; line-height: 1; }

    /* ─── HOME: ABOUT STRIP ─────────────────── */
    .one-memebership-sect .rule{
      margin: 1.5rem auto;
    }
    .stats-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    }
    .stat-box {
      background: #000; border: 1px solid rgba(255,255,255,0.1);
      padding: 2.5rem; text-align: center;
    }
    .stat-value { font-family: var(--font-serif); font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; }
    .stat-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: #9ca3af; }

    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    @media (max-width: 768px) {
      .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ─── CTA BANNER ─────────────────────────── */
    .cta-section {
      padding: 6rem 0; position: relative; overflow: hidden;
      background: linear-gradient(135deg, #000 0%, #1a0a0a 50%, rgba(127,20,20,0.15) 100%);
    }

    /* ─── BENEFITS ─────────────────────────── */
    .cards-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    @media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .cards-grid { grid-template-columns: 1fr; } }
    .card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      padding: 2.5rem; transition: border-color 0.3s;
    }
    .card:hover { border-color: rgba(197,48,48,0.4); }
    .card-icon { color: var(--primary); margin-bottom: 1.5rem; }
    .card-icon svg { width: 28px; height: 28px; }
    .card h3 { margin-bottom: 0.75rem; }
    .card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

    /* ─── FAQ ACCORDION ─────────────────────── */
    .faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .faq-trigger {
      width: 100%; background: none; border: none; color: #fff;
      font-family: var(--font-serif); font-size: 1.1rem;
      text-align: left; padding: 1.5rem 0;
      cursor: pointer; display: flex; justify-content: space-between; align-items: center;
      gap: 1rem; transition: color 0.2s;
    }
    .faq-trigger:hover, .faq-trigger.open { color: var(--primary); }
    .faq-trigger svg { flex-shrink: 0; transition: transform 0.3s; }
    .faq-trigger.open svg { transform: rotate(180deg); }
    .faq-body {
      overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s;
      font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; padding: 0;
    }
    .faq-body.open { max-height: 300px; padding-bottom: 1.5rem; }

    /* ─── MEMBERSHIP ─────────────────────────── */
    .how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; position: relative; }
    .how-steps::before {
      content: ''; position: absolute; top: 3rem; left: 15%; right: 15%;
      height: 1px; background: rgba(255,255,255,0.1); z-index: 0;
    }
    .step { text-align: center; position: relative; z-index: 1; }
    .step-circle {
      width: 6rem; height: 6rem; border-radius: 50%;
      border: 1px solid var(--primary); background: #000;
      display: flex; align-items: center; justify-center;
      margin: 0 auto 2rem;
      box-shadow: 0 0 30px rgba(185,28,28,0.15);
      display: flex; align-items: center; justify-content: center;
    }
    .step-circle span { font-family: var(--font-serif); font-size: 2rem; color: var(--primary); font-style: italic; }
    .step h3 { margin-bottom: 0.75rem; }
    .step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
    @media (max-width: 700px) {
      .how-steps { grid-template-columns: 1fr; gap: 2rem; }
      .how-steps::before { display: none; }
    }

    /* Comparison table */
    .compare-table { max-width: 720px; margin: 0 auto; }
    .compare-head { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; margin-bottom: 2px; }
    .compare-head-cell {
      text-align: center; padding: 1rem 0.5rem;
      font-family: var(--font-serif); font-size: 0.8rem;
      text-transform: uppercase; letter-spacing: 0.15em;
    }
    .compare-head-cell.gold-head {
      background: rgba(197,48,48,0.1); border: 1px solid var(--primary);
      border-bottom: none; color: var(--primary); position: relative;
    }
    .popular-badge {
      position: absolute; top: -1px; left: 50%; transform: translateX(-50%) translateY(-100%);
      background: var(--primary); color: #fff;
      font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
      padding: 3px 10px; font-weight: 700;
    }
    .compare-head-cell.other-head {
      background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1);
      border-bottom: none; color: #d1d5db;
    }
    .compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; }
    .compare-row:nth-child(odd) { background: rgba(0,0,0,0.4); }
    .compare-row:nth-child(even) { background: rgba(0,0,0,0.2); }
    .compare-cell {
      padding: 0.75rem 1rem; font-size: 0.875rem;
      border: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center;
    }
    .compare-cell:first-child { color: #d1d5db; }
    .compare-cell:not(:first-child) { justify-content: center; border-left: none; border-right: none; }
    .compare-cell.gold-col { background: rgba(197,48,48,0.05); border-color: rgba(197,48,48,0.3); }
    .check { color: #22c55e; font-size: 1rem; font-weight: 700; }
    .cross { color: #ef4444; font-size: 1rem; font-weight: 700; }
    .compare-price { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; }
    .price-cell {
      padding: 1.25rem 1rem; text-align: center;
      border: 1px solid rgba(255,255,255,0.1); border-top: none;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .price-cell.gold-price { background: rgba(197,48,48,0.1); border-color: var(--primary); }
    .price-cell .label-cell { color: #fff; font-size: 0.875rem; font-weight: 600; }
    .price-amt { font-family: var(--font-serif); font-size: 1.25rem; }
    .price-per { font-size: 0.7rem; color: #6b7280; }

    /* ─── PARTNERS GRID ─────────────────────── */
    .experience-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    @media (max-width: 900px) { .experience-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 550px) { .experience-grid { grid-template-columns: 1fr; } }
    .exp-card {
      position: relative; overflow: hidden;
      aspect-ratio: 4/3; cursor: pointer;
    }
    .exp-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.7s ease, opacity 0.4s;
      opacity: 0.8;
    }
    .exp-card:hover img { transform: scale(1.05); opacity: 1; }
    .exp-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    }
    .exp-info {
      position: absolute; inset-x: 0; bottom: 0; padding: 2rem;
    }
    .exp-rule {
      width: 2rem; height: 1px; background: var(--primary);
      margin-bottom: 1rem; transition: width 0.3s;
    }
    .exp-card:hover .exp-rule { width: 4rem; }
    .exp-info h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.5rem; }
    .exp-desc {
      font-size: 0.875rem; color: #d1d5db;
      opacity: 0; transform: translateY(1rem);
      transition: opacity 0.3s, transform 0.3s;
    }
    .exp-card:hover .exp-desc { opacity: 1; transform: none; }

    /* ─── ABOUT ─────────────────────────────── */
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    @media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }
    .value-box { border: 1px solid rgba(255,255,255,0.08); padding: 2.5rem; }
    .value-box .rule { margin-bottom: 1.5rem; }

    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
    @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
    .testimonial {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
      padding: 2.5rem; text-align: center; transition: border-color 0.3s;
    }
    .testimonial:hover { border-color: rgba(197,48,48,0.3); }
    .stars { display: flex; justify-content: center; gap: 3px; color: var(--primary); margin-bottom: 1.5rem; }
    .stars svg { width: 14px; height: 14px; fill: currentColor; }
    .testimonial blockquote { font-size: 0.875rem; color: #d1d5db; font-style: italic; line-height: 1.8; margin-bottom: 2rem; }
    .t-divider { width: 2rem; height: 1px; background: rgba(255,255,255,0.2); margin: 0 auto 1rem; }
    .t-name { font-family: var(--font-serif); letter-spacing: 0.05em; }
    .t-location { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6b7280; margin-top: 4px; }

    /* ─── CONTACT ─────────────────────────────── */
    .contact-info-item { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 2rem; }
    .contact-icon { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
    .contact-icon svg { width: 20px; height: 20px; }
    .contact-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6b7280; margin-bottom: 4px; }
    .contact-value { color: #fff; font-weight: 300; text-decoration: none; transition: color 0.2s; }
    .contact-value:hover { color: var(--primary); }
    .contact-box { border: 1px solid rgba(255,255,255,0.08); padding: 2.5rem; margin-bottom: 1.5rem; }

    /* ─── PARTNER LOGIN ─────────────────────── */
    .login-wrap {
      max-width: 420px; margin: 0 auto;
      border: 1px solid rgba(255,255,255,0.1); padding: 3rem;
    }
    .form-field { margin-bottom: 1.5rem; }
    .form-label { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #9ca3af; margin-bottom: 0.5rem; }
    .form-input {
      width: 100%; background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.15); color: #fff;
      padding: 0.75rem 1rem; font-family: var(--font-sans); font-size: 0.875rem;
      outline: none; transition: border-color 0.2s;
    }
    .form-input:focus { border-color: var(--primary); }
    .form-input::placeholder { color: #4b5563; }
    .btn-red-full {
      width: 100%; background: var(--primary); color: #fff; border: none;
      padding: 0.85rem; font-family: var(--font-sans);
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      cursor: pointer; transition: background 0.2s; font-weight: 600;
    }
    .btn-red-full:hover { background: var(--primary-light); }

    /* ─── TERMS / PARTNER TERMS ─────────────── */
    .prose { max-width: 800px; }
    .prose h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
    .prose h3 { margin: 2rem 0 0.75rem; }
    .prose p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.925rem; line-height: 1.8; }
    .prose ul { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1rem; font-size: 0.925rem; line-height: 1.8; }
    .prose li { margin-bottom: 0.5rem; }

    /* ─── FOOTER ─────────────────────────────── */
    footer {
      background: #000; border-top: 1px solid rgba(255,255,255,0.1);
      padding: 5rem 0 2.5rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem;
      margin-bottom: 4rem;
    }
    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    .footer-logo img { height: 56px; width: auto; margin-bottom: 1.5rem; }
    .footer-desc { color: #9ca3af; font-size: 0.875rem; line-height: 1.7; max-width: 280px; margin-bottom: 2rem; }
    .social-links { display: flex; gap: 0.75rem; }
    .social-link {
      width: 40px; height: 40px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      color: #9ca3af; text-decoration: none; transition: all 0.2s;
    }
    .social-link:hover { color: var(--primary); border-color: var(--primary); }
    .social-link svg { width: 18px; height: 18px; }
    .footer-col h4 {
      font-family: var(--font-serif); font-size: 0.875rem;
      text-transform: uppercase; letter-spacing: 0.15em;
      margin-bottom: 1.5rem; color: #fff;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 1rem; }
    .footer-col a { color: #9ca3af; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
    .footer-col a:hover { color: var(--primary); }
    .footer-col a.accent-link { color: var(--primary); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2.5rem;
      display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center;
    }
    .footer-contacts { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; font-size: 0.875rem; color: #9ca3af; }
    .footer-contacts a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
    .footer-contacts a:hover { color: var(--primary); }
    .footer-contacts span { display: flex; align-items: center; gap: 0.5rem; }
    .footer-contacts svg { color: var(--primary); width: 16px; height: 16px; }
    .footer-copy { font-size: 0.8rem; color: #4b5563; }

    /* ─── UTILITY ─────────────────────────────── */
    .mt-2 { margin-top: 0.5rem; }
    .mt-4 { margin-top: 1rem; }
    .mt-6 { margin-top: 1.5rem; }
    .mt-8 { margin-top: 2rem; }
    .mt-10 { margin-top: 2.5rem; }
    .mt-12 { margin-top: 3rem; }
    .mb-4 { margin-bottom: 1rem; }
    .mb-6 { margin-bottom: 1.5rem; }
    .mb-8 { margin-bottom: 2rem; }
    .mb-12 { margin-bottom: 3rem; }
    .flex { display: flex; }
    .flex-col { flex-direction: column; }
    .items-center { align-items: center; }
    .justify-center { justify-content: center; }
    .gap-4 { gap: 1rem; }
    .gap-3 { gap: 0.75rem; }
    .flex-wrap { flex-wrap: wrap; }
    .max-w-2xl { max-width: 42rem; }
    .max-w-3xl { max-width: 56rem; }
    .mx-auto { margin-left: auto; margin-right: auto; }

    /* Big CTA buttons */
    .btn-cta-primary {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      background: var(--primary); color: #fff;
      padding: 0 2.5rem; height: 3.5rem;
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      font-weight: 600; font-family: var(--font-sans);
      text-decoration: none; transition: background 0.2s; border: none; cursor: pointer;
    }
    .btn-cta-primary:hover { background: var(--primary-light); }
    .btn-cta-outline {
      display: inline-flex; align-items: center; justify-content: center;
      border: 1px solid rgba(255,255,255,0.3); color: #fff;
      padding: 0 2.5rem; height: 3.5rem;
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      font-family: var(--font-sans); text-decoration: none; transition: background 0.2s;
    }
    .btn-cta-outline:hover { background: rgba(255,255,255,0.07); }

    @media (max-width: 480px) {
      .app-btns { flex-direction: column; }
      .app-btn { width: 100%; justify-content: center; }
      .flex.gap-4 { flex-direction: column; }
      .btn-cta-primary, .btn-cta-outline { width: 100%; text-align: center; }
    }

    /* ─── CONTACT MODAL ─────────────────────────────── */
    .modal-backdrop {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      padding: 1.5rem;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .modal-backdrop.open {
      opacity: 1; pointer-events: all;
    }
    .modal {
      background: #111; border: 1px solid rgba(255,255,255,0.12);
      width: 100%; max-width: 480px;
      padding: 2.5rem;
      transform: translateY(20px) scale(0.97);
      transition: transform 0.35s ease, opacity 0.35s ease;
      opacity: 0;
      position: relative;
    }
    .modal-backdrop.open .modal {
      transform: none; opacity: 1;
    }
    .modal-close {
      position: absolute; top: 1.25rem; right: 1.25rem;
      background: none; border: none; color: #9ca3af;
      cursor: pointer; padding: 0.25rem; line-height: 1;
      transition: color 0.2s;
    }
    .modal-close:hover { color: #fff; }
    .modal-close svg { width: 20px; height: 20px; display: block; }
    .modal-eyebrow {
      font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--primary); font-weight: 600; margin-bottom: 0.75rem;
    }
    .modal h2 {
      font-family: var(--font-serif); font-size: 1.6rem;
      margin-bottom: 0.4rem;
    }
    .modal-sub {
      font-size: 0.825rem; color: #9ca3af; margin-bottom: 1.75rem;
    }
    .modal-rule { width: 2.5rem; height: 1px; background: var(--primary); margin-bottom: 1.75rem; }
    .modal .form-field { margin-bottom: 1.1rem; }
    .modal .form-label {
      display: block; font-size: 0.65rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: #9ca3af; margin-bottom: 0.4rem;
    }
    .modal .form-input {
      width: 100%; background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.12); color: #fff;
      padding: 0.7rem 1rem; font-family: var(--font-sans); font-size: 0.875rem;
      outline: none; transition: border-color 0.2s;
      resize: none;
    }
    .modal .form-input:focus { border-color: var(--primary); }
    .modal .form-input::placeholder { color: #4b5563; }
    .modal-submit {
      width: 100%; background: var(--primary); color: #fff; border: none;
      padding: 0.85rem; font-family: var(--font-sans);
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      cursor: pointer; transition: background 0.2s; font-weight: 600;
      margin-top: 0.5rem;
    }
    .modal-submit:hover { background: var(--primary-light); }
    .modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }

    /* Success state */
    .modal-success {
      display: none; text-align: center; padding: 1rem 0;
    }
    .modal-success.show { display: block; }
    .modal-form.hide { display: none; }
    .success-icon {
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
    }
    .success-icon svg { width: 28px; height: 28px; color: #22c55e; }
    .modal-success h3 {
      font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 0.5rem;
    }
    .modal-success p { font-size: 0.875rem; color: #9ca3af; }
    .prime-link{ color: var(--primary); text-decoration: none; font-weight: 600; transition: color 0.2s; }

    @media (max-width: 767px) {
      .page .hero { min-height: 70vh !important; }
    }
.col-full{
  grid-template-columns: 1fr 1fr;
}

.benefits-section{
    padding:60px 20px;
}

.benefits-section .container{
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.benefit-card{
    background:#0a0a0c;
    border:1px solid #242428;
    padding: 30px 24px;
    /* min-height:215px; */
    transition:.35s ease;
    cursor:pointer;
}

.benefit-card:hover{
    border-color:#3d3d42;
    transform:translateY(-4px);
}

.line{
    display:block;
    width:44px;
    height:2px;
    background:#d13b3b;
    margin-bottom:26px;
}

.benefit-card h3{
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:8px;
    color:#ffffff;
}

.benefit-card p{
    font-size:13px;
    line-height:1.5;
    color:#70727d;
    max-width:420px;
}

/* Tablet */
@media (max-width:991px){

    .benefits-section .container{
        grid-template-columns:repeat(2,1fr);
        padding: 0;
    }

    .benefit-card{
        padding:35px;
    }

    .benefit-card h3{
        font-size:24px;
    }

    .benefit-card p{
        font-size:18px;
    }

}

/* Mobile */
@media (max-width:767px){

    .benefits-section .container{
        grid-template-columns:1fr;
    }

    .benefits-section{
        padding:40px 0px;
    }

    .benefit-card{
        min-height:auto;
        padding:30px;
    }

    .benefit-card h3{
        font-size:15px;
        margin-bottom:10px;
    }

    .benefit-card p{
        font-size:13px;
        line-height:1.6;
    }

}

/* ===========================
   Membership Stats Section
=========================== */

.membership-stats{
    /*background:#08080a;*/
    padding:10px 20px;
}

.membership-stats__wrapper{
    max-width:720px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    border:1px solid #2d2d31;
}

.membership-stats__item{
    min-height:140px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding: 24px 16px;
}

.membership-stats__item:not(:last-child){
    border-right:1px solid #2d2d31;
}

.membership-stats__item h2{
    margin:0 0 12px;

    font-family:Georgia, serif;
    font-size:34px;
    font-weight:400;
    line-height:1;

    color:#c53030;
}

.membership-stats__item p{
    margin:0;

    color:#666b78;
    font-size:11px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    line-height:1.6;
}

/* Hover */

.membership-stats__item{
    transition:.3s ease;
}

.membership-stats__item:hover{
    background:#0f0f12;
}

.membership-stats__item:hover h2{
    color:#ef5a5a;
}

/* Tablet */

@media (max-width:991px){

    .membership-stats__wrapper{
        max-width:700px;
    }

    .membership-stats__item h2{
        font-size:28px;
    }

    .membership-stats__item{
        min-height:150px;
    }

}

/* Mobile */

@media (max-width:767px){

    .membership-stats{
        padding:50px 15px;
    }

    .membership-stats__wrapper{
        grid-template-columns:1fr;
    }

    .membership-stats__item{
        min-height:130px;
    }

    .membership-stats__item:not(:last-child){
        border-right:none;
        border-bottom:1px solid #2d2d31;
    }

    .membership-stats__item h2{
        font-size:26px;
    }

    .membership-stats__item p{
        font-size:10px;
        letter-spacing:2px;
    }

}

/* ============================
   Interest Form Section
============================ */

.interest-form{
    background:#050505;
    padding:90px 20px;
}

.interest-form__container{
    max-width:720px;
    margin:auto;
}

.interest-form__row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.interest-form__group{
    margin-bottom:22px;
}

.interest-form__group label{
    display:block;
    margin-bottom:10px;

    color:#767b88;
    font-size:11px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.interest-form__group label span{
    color:#d74b4b;
}

.interest-form__group label small{
    font-size:11px;
    text-transform:none;
    letter-spacing:0;
    color:#5d6472;
}

.interest-form__group input,
.interest-form__group select{
    width:100%;
    height:48px;

    background:#090a0d;
    border:1px solid #24262c;
    outline:none;

    padding:0 18px;

    color:#ffffff;
    font-size:16px;

    transition:.3s;
}

.interest-form__group input::placeholder{
    color:#5f6878;
}

.interest-form__group select{
    appearance:none;
    cursor:pointer;
    color:#ffffff;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 18px center;
}

.interest-form__group input:focus,
.interest-form__group select:focus{
    border-color:#d74b4b;
}

.interest-form__button{
    width:100%;
    height:56px;

    border:none;
    cursor:pointer;

    background:#c53030;
    color:#fff;

    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    transition:.3s;
}

.interest-form__button:hover{
    background:#ef5454;
}

.interest-form__privacy{
    margin-top:22px;

    text-align:center;

    color:#4f5562;
    font-size:14px;
    line-height:1.7;
}
.success-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.success-modal-backdrop.show {
    display: flex;
}

.success-modal {
    background: #171717;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    color: #fff;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
}
/* Responsive */

@media (max-width:768px){

    .interest-form{
        padding:60px 16px;
    }

    .interest-form__row{
        grid-template-columns:1fr;
        gap:0;
    }

}