* { box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; background: #0A0A0A; color: #fff; margin: 0; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(10,10,10,0.97);
      border-bottom: 2px solid #D4AF37;
      backdrop-filter: blur(8px);
    }
    .nav-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2rem; height: 68px;
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-img { height: 52px; width: auto; display: block; }

    .nav-links { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
    .nav-links a {
      display: block; padding: 0 1rem; height: 68px; line-height: 68px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.6); text-decoration: none; position: relative;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 2px;
      background: #D4AF37; transform: scaleX(0); transition: transform 0.2s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta {
      background: #D4AF37; color: #0A0A0A !important; border-radius: 4px;
      margin-left: 0.5rem; padding: 0 1.1rem !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: #E8C547 !important; }
    .nav-cta::after { display: none !important; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh; background: #0A0A0A;
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      padding-top: 68px;
    }
    .hero-bg {
      position: absolute; inset: -10%;
      background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(212,175,55,0.32) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 85% 70%, rgba(212,175,55,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 35% 50% at 15% 80%, rgba(212,175,55,0.14) 0%, transparent 65%);
      will-change: transform;
      animation: heroBreathe 12s ease-in-out infinite alternate;
    }
    .hero-stripes {
      position: absolute; inset: -12%;
      background: repeating-linear-gradient(-55deg, transparent, transparent 50px, rgba(212,175,55,0.07) 50px, rgba(212,175,55,0.07) 52px);
      pointer-events: none;
      will-change: transform;
      animation: stripeDrift 28s linear infinite;
    }
    @keyframes heroBreathe {
      0%   { transform: scale(1) translate(0, 0); }
      100% { transform: scale(1.14) translate(-2.5%, 1.5%); }
    }
    @keyframes stripeDrift {
      from { transform: translate(0, 0); }
      to   { transform: translate(-208px, 145px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-bg, .hero-stripes { animation: none; }
    }
    .hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; padding: 2rem; }
    .hero-eyebrow {
      display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
      color: #D4AF37; border: 1px solid rgba(212,175,55,0.35); border-radius: 2px; padding: 5px 14px; margin-bottom: 1.75rem;
    }
    .hero-title {
      display: flex; flex-direction: column; align-items: center; gap: 0.85rem;
      margin: 0 0 1.5rem;
      filter: drop-shadow(0 0 60px rgba(212,175,55,0.25)) drop-shadow(0 4px 24px rgba(0,0,0,0.8));
    }
    .hero-title .fame-img { width: clamp(280px, 72vw, 720px); height: auto; display: block; }
    .hero-title .baseball-img { width: clamp(180px, 46vw, 460px); height: auto; display: block; }
    .hero-sub { font-size: clamp(0.95rem, 1.8vw, 1.1rem); line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 2.5rem; }
    .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .btn-primary {
      background: #D4AF37; color: #0A0A0A; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.9rem 2.25rem; border-radius: 4px; text-decoration: none;
      box-shadow: 0 6px 20px rgba(212,175,55,0.35);
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: #E8C547; transform: translateY(-2px); }
    .btn-primary:active { transform: translateY(0); }
    .btn-outline {
      background: transparent; color: #fff; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.9rem 2.25rem; border-radius: 4px; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.25);
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); transform: translateY(-2px); }
    .btn-outline:active { transform: translateY(0); }

    /* ── SECTIONS ── */
    section { padding: 5.5rem 2rem; }
    .inner { max-width: 1000px; margin: 0 auto; }
    .s-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #D4AF37; margin-bottom: 0.75rem; }
    .s-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1; color: #fff; margin: 0 0 1.25rem; letter-spacing: 0.01em; }
    .s-body { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 560px; }

    /* ── HERO BG ── */
    .hero-bg-fallback {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212,175,55,0.18) 0%, transparent 60%),
        linear-gradient(180deg, #050505 0%, #0A0A0A 60%, #050505 100%);
    }
    .hero::after {
      content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: linear-gradient(180deg, rgba(10,10,10,0.0) 0%, rgba(10,10,10,0.55) 70%, #0A0A0A 100%);
    }
    .hero-content { position: relative; z-index: 3; }
    .hero-bg, .hero-stripes { z-index: 1; }
    .hero-manifesto {
      font-family: 'Russo One', 'Bebas Neue', sans-serif;
      font-size: clamp(1.1rem, 2.4vw, 1.6rem);
      letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
      margin: 0.25rem 0 1rem; transform: skewX(-6deg);
    }
    .hero-scroll {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3;
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      color: rgba(255,255,255,0.45); font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.32em; text-transform: uppercase; pointer-events: none;
    }
    .hero-scroll svg { animation: scrollBob 2.2s ease-in-out infinite; }
    @keyframes scrollBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

    /* ── MISSION ── */
    .mission { background: #0A0A0A; padding-top: 6.5rem; padding-bottom: 6.5rem; }
    .mission-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 5rem; align-items: start; }
    .mission-title {
      font-family: 'Russo One', 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 0.92; margin: 0;
      color: #fff; transform: skewX(-7deg); letter-spacing: -0.005em; text-transform: uppercase;
    }
    .mission-title span { display: block; }
    .mission-title .gold { color: #D4AF37; }
    .mission-lead { font-size: 1.15rem; line-height: 1.6; color: rgba(255,255,255,0.85); font-weight: 500; margin: 0 0 1.25rem; max-width: 520px; }
    .mission-body { font-size: 0.96rem; line-height: 1.75; color: rgba(255,255,255,0.55); margin: 0 0 1rem; max-width: 520px; }

    /* ── PILLARS ── */
    .pillars { background: #050505; border-top: 1px solid #141414; border-bottom: 1px solid #141414; }
    .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .pillar {
      position: relative; background: linear-gradient(160deg, #131313 0%, #0c0c0c 100%);
      border: 1px solid #1f1f1f; border-radius: 8px; padding: 2.5rem 1.75rem 2rem;
      transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
      transform-origin: center;
    }
    .pillar.reveal:hover, .pillar:hover { transform: scale(1.06); box-shadow: 0 18px 50px rgba(0,0,0,0.5); z-index: 2; }
    .pillar-num {
      position: absolute; top: 1.25rem; right: 1.5rem;
      font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: rgba(212,175,55,0.45); letter-spacing: 0.15em;
    }
    .pillar-icon { width: 38px; height: 38px; color: #D4AF37; margin-bottom: 1.25rem; stroke-linecap: round; stroke-linejoin: round; }
    .pillar-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.85rem; letter-spacing: 0.04em; color: #fff; margin: 0 0 0.6rem; }
    .pillar-body { font-size: 0.92rem; line-height: 1.65; color: rgba(255,255,255,0.55); margin: 0; }
    @media (max-width: 800px) { .pillars-grid { grid-template-columns: 1fr; } }

    /* ── TRYOUTS ── */
    .tryouts { background: #0A0A0A; }
    .tryouts-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 5rem; align-items: start; }
    .tryouts-title {
      font-family: 'Russo One', 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1; margin: 0 0 1.5rem;
      color: #fff; transform: skewX(-7deg); text-transform: uppercase; letter-spacing: -0.005em;
    }
    .tryouts-title span { display: block; }
    .tryouts-title .gold { color: #D4AF37; }
    .tryout-info { display: flex; flex-direction: column; gap: 0.6rem; max-width: 520px; }
    .ti-row {
      display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
      padding: 0.85rem 0; border-bottom: 1px solid #1a1a1a;
    }
    .ti-row:last-child { border-bottom: none; }
    .ti-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
    .ti-value { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.04em; color: #fff; }
    .date-updated-badge {
      display: inline-block; vertical-align: middle; margin-left: 0.6rem;
      font-family: 'Inter', sans-serif; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.16em;
      text-transform: uppercase; color: #D4AF37;
      background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.45);
      padding: 3px 8px 2px; border-radius: 3px;
      animation: badgePulse 2.4s ease-in-out infinite;
    }
    @keyframes badgePulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.0); }
      50%      { box-shadow: 0 0 0 4px rgba(212,175,55,0.15); }
    }
    .tryout-card {
      position: relative; background: linear-gradient(160deg, #1A1A1A 0%, #0F0F0F 100%);
      border: 1px solid #2A2A2A; border-top: 3px solid #D4AF37;
      border-radius: 8px; padding: 2.25rem 2rem 2.5rem; overflow: hidden;
    }
    .tryout-card::after {
      content: ''; position: absolute; top: -40%; right: -20%; width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .tc-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #D4AF37; margin-bottom: 0.6rem; position: relative; z-index: 1; }
    .tc-title {
      font-family: 'Russo One', 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem); line-height: 1; margin: 0 0 1rem;
      color: #fff; transform: skewX(-7deg); text-transform: uppercase; position: relative; z-index: 1;
    }
    .tc-title .gold { color: #D4AF37; }
    .tc-body { font-size: 0.95rem; line-height: 1.65; color: rgba(255,255,255,0.6); margin: 0 0 1.25rem; position: relative; z-index: 1; }
    .tc-list { list-style: none; padding: 0; margin: 0 0 1.75rem; position: relative; z-index: 1; }
    .tc-list li { font-size: 0.88rem; color: rgba(255,255,255,0.65); padding: 0.4rem 0; display: flex; align-items: center; gap: 0.55rem; }
    .tc-list li::before { content: '✓'; color: #D4AF37; font-weight: 800; flex-shrink: 0; }
    .tc-btn { display: inline-block; position: relative; z-index: 1; }

    /* ── CTA BANNER ── */
    .cta-banner { position: relative; padding: 6rem 2rem; overflow: hidden; background: #050505; }
    .cta-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,175,55,0.22) 0%, transparent 65%),
        repeating-linear-gradient(-55deg, transparent, transparent 50px, rgba(212,175,55,0.05) 50px, rgba(212,175,55,0.05) 52px);
      animation: stripeDrift 28s linear infinite;
    }
    .cta-banner::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(180deg, rgba(5,5,5,0.5) 0%, transparent 30%, transparent 70%, rgba(5,5,5,0.5) 100%);
    }
    .cta-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
    .cta-title {
      font-family: 'Russo One', 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 7.5vw, 5.5rem); line-height: 0.95; margin: 0.5rem 0 1.5rem;
      color: #fff; transform: skewX(-8deg); text-transform: uppercase; letter-spacing: 0.005em;
    }
    .cta-title .gold { color: #D4AF37; }
    .cta-sub { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 2.25rem; }
    .cta-btn { font-size: 0.9rem; padding: 1.05rem 2.75rem; }


    /* ── SCHEDULE ── */
    .schedule { background: #0A0A0A; }
    .sched-table { width: 100%; border-collapse: collapse; margin-top: 2.5rem; }
    .sched-table thead th {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.35); padding: 0.65rem 1.25rem; text-align: left;
      border-bottom: 1px solid #1A1A1A;
    }
    .sched-table tbody tr { border-bottom: 1px solid #141414; transition: background 0.15s; }
    .sched-table tbody tr:hover { background: #111; }
    .sched-table td { padding: 1.1rem 1.25rem; font-size: 0.88rem; color: rgba(255,255,255,0.7); vertical-align: middle; }
    .sched-table td.date { color: #D4AF37; font-weight: 700; font-size: 0.8rem; white-space: nowrap; width: 110px; }
    .sched-event { font-weight: 600; color: #fff; }
    .sched-loc { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-top: 2px; }
    .sched-badge {
      display: inline-block; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 3px 9px; border-radius: 3px;
    }
    .sched-badge.travel { background: rgba(212,175,55,0.12); color: #D4AF37; border: 1px solid rgba(212,175,55,0.25); }
    .sched-badge.showcase { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.1); }
    .sched-badge.camp { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.18); }
    .sched-result { font-weight: 700; font-size: 0.85rem; }
    .sched-result.win { color: #22c55e; }
    .sched-result.loss { color: #ef4444; }
    .sched-result.upcoming { color: rgba(255,255,255,0.25); font-style: italic; font-weight: 400; font-size: 0.8rem; }

    /* ── CALENDAR ── */
    .cal-legend {
      display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
      margin: 2.5rem 0 1.75rem;
      font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.45); font-weight: 600;
    }
    .cal-legend-item { display: inline-flex; align-items: center; gap: 0.55rem; }
    .cal-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
    .cal-dot.travel { background: #D4AF37; box-shadow: 0 0 8px rgba(212,175,55,0.5); }
    .cal-dot.showcase { background: rgba(255,255,255,0.55); }
    .cal-dot.camp { background: transparent; border: 1px solid rgba(255,255,255,0.4); }

    .cal-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
      margin-top: 0.5rem;
    }
    .cal-month {
      background: #111; border: 1px solid #1F1F1F; border-radius: 8px;
      padding: 1.5rem 1.25rem 1.25rem;
      position: relative; overflow: hidden;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }
    .cal-month::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, #D4AF37, transparent);
      opacity: 0.5;
    }
    .cal-month:hover { transform: translateY(-2px); border-color: #2A2A2A; }
    .cal-month-header {
      display: flex; justify-content: space-between; align-items: baseline;
      padding-bottom: 0.9rem; margin-bottom: 0.75rem;
      border-bottom: 1px solid #1F1F1F;
    }
    .cal-month-name {
      font-family: 'Bebas Neue', sans-serif; font-size: 1.85rem;
      letter-spacing: 0.04em; color: #fff; line-height: 1;
    }
    .cal-month-year {
      font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: #D4AF37; font-weight: 700;
    }
    .cal-dow {
      display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
      margin-bottom: 4px;
    }
    .cal-dow span {
      text-align: center; font-size: 0.58rem; font-weight: 700;
      letter-spacing: 0.14em; color: rgba(255,255,255,0.28);
      padding: 4px 0;
    }
    .cal-days {
      display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
    }
    .cal-day {
      aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.5);
      border-radius: 4px; position: relative;
      transition: background 0.18s, color 0.18s;
    }
    .cal-day.empty { opacity: 0; pointer-events: none; }
    .cal-day.has-event { color: #fff; font-weight: 700; background: rgba(212,175,55,0.06); }
    .cal-day.has-event::after {
      content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
      width: 4px; height: 4px; border-radius: 50%; background: #D4AF37;
    }
    .cal-day.has-event.showcase { background: rgba(255,255,255,0.04); }
    .cal-day.has-event.showcase::after { background: rgba(255,255,255,0.6); }
    .cal-day.has-event.camp { background: rgba(255,255,255,0.03); }
    .cal-day.has-event.camp::after { background: transparent; border: 1px solid rgba(255,255,255,0.5); width: 5px; height: 5px; }
    .cal-day.has-event:hover { background: rgba(212,175,55,0.18); cursor: default; }

    .cal-events {
      margin-top: 1.1rem; padding-top: 0.9rem; border-top: 1px solid #1F1F1F;
      display: flex; flex-direction: column; gap: 0.7rem;
    }
    .cal-event {
      display: grid; grid-template-columns: 52px 1fr auto; gap: 0.65rem; align-items: start;
      font-size: 0.78rem;
    }
    .cal-event-date {
      color: #D4AF37; font-weight: 700; font-size: 0.7rem;
      letter-spacing: 0.04em; padding-top: 2px;
    }
    .cal-event-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
    .cal-event-name { color: rgba(255,255,255,0.9); font-weight: 600; line-height: 1.3; font-size: 0.78rem; }
    .cal-event-loc { font-size: 0.66rem; color: rgba(255,255,255,0.35); font-weight: 400; }
    .cal-event-tag {
      font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 3px 7px; border-radius: 3px; font-weight: 700; align-self: start;
      white-space: nowrap; margin-top: 1px;
    }
    .cal-event-tag.travel { background: rgba(212,175,55,0.12); color: #D4AF37; border: 1px solid rgba(212,175,55,0.25); }
    .cal-event-tag.showcase { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.12); }
    .cal-event-tag.camp { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.78); border: 1px solid rgba(255,255,255,0.18); }

    @media (max-width: 900px) {
      .cal-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; gap: 1rem; }
    }

    /* ── PAYMENT PLANS ── */
    .payment-plans { background: #111; }
    .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; max-width: 1080px; margin-left: auto; margin-right: auto; }
    .plan-card {
      background: #1A1A1A; border: 1px solid #2A2A2A; border-radius: 8px;
      padding: 2.25rem 1.75rem; position: relative; overflow: hidden;
      transition: transform 0.2s, border-color 0.2s;
    }
    .plan-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.3); }
    .plan-card.featured { border-color: #D4AF37; background: linear-gradient(160deg,#1E1A0A 0%,#1A1A1A 60%); }
    .plan-card.featured::before {
      content: 'RECOMMENDED'; position: absolute; top: 0; right: 0;
      background: #D4AF37; color: #0A0A0A; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.18em;
      padding: 5px 12px; border-radius: 0 8px 0 6px;
    }
    .plan-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: rgba(255,255,255,0.6); margin-bottom: 0.2rem; }
    .plan-price { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: #fff; line-height: 1; margin: 0.4rem 0 0.2rem; }
    .plan-price sup { font-size: 1.6rem; vertical-align: super; color: #D4AF37; }
    .plan-period { font-size: 0.74rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }
    .plan-savings { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); padding: 3px 9px; border-radius: 3px; margin-bottom: 1.25rem; }
    .plan-divider { border: none; border-top: 1px solid #252525; margin: 1.25rem 0; }
    .plan-features { list-style: none; padding: 0; margin: 0 0 1.75rem; }
    .plan-features li { font-size: 0.85rem; color: rgba(255,255,255,0.55); padding: 0.4rem 0; display: flex; align-items: center; gap: 0.55rem; }
    .plan-features li::before { content: '✓'; color: #D4AF37; font-weight: 800; flex-shrink: 0; }
    .btn-plan {
      display: block; width: 100%; text-align: center; padding: 0.85rem; border-radius: 4px;
      font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      border: 1.5px solid rgba(255,255,255,0.15); color: #fff; background: transparent;
      cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s;
    }
    .btn-plan:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
    .btn-plan.featured-btn { background: #D4AF37; border-color: #D4AF37; color: #0A0A0A; box-shadow: 0 6px 20px rgba(212,175,55,0.3); }
    .btn-plan.featured-btn:hover { background: #E8C547; border-color: #E8C547; }
    @media (max-width: 900px) { .plans-grid { grid-template-columns: 1fr; max-width: 460px; } }

    /* ── CONTACT ── */
    .contact { background: #0A0A0A; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
    .form-group input, .form-group textarea, .form-group select {
      background: #111; border: 1px solid #222; border-radius: 4px;
      padding: 0.75rem 1rem; color: #fff; font-size: 0.9rem; font-family: 'Inter', sans-serif;
      outline: none; transition: border-color 0.2s; width: 100%;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #D4AF37; }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.18); }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .contact-info { display: flex; flex-direction: column; gap: 2rem; padding-top: 0.5rem; }
    .contact-item .ci-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #D4AF37; margin-bottom: 0.35rem; }
    .contact-item .ci-value { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

    /* ── PAYMENT MODAL ── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(0,0,0,0.88); backdrop-filter: blur(4px);
      align-items: center; justify-content: center; padding: 1rem;
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: #111; border: 1px solid #2A2A2A; border-top: 3px solid #D4AF37;
      border-radius: 10px; width: 100%; max-width: 500px; padding: 2.25rem;
      position: relative; max-height: 90vh; overflow-y: auto;
    }
    .modal-close {
      position: absolute; top: 1.1rem; right: 1.1rem;
      background: none; border: none; color: rgba(255,255,255,0.35); font-size: 1.4rem;
      cursor: pointer; line-height: 1; padding: 4px; transition: color 0.2s;
    }
    .modal-close:hover { color: #fff; }
    .modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: #fff; margin-bottom: 0.2rem; }
    .modal-sub { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 1.75rem; }
    .modal-plan-badge {
      background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25);
      border-radius: 4px; padding: 0.7rem 1rem; margin-bottom: 1.75rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    .modal-plan-name { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.65); }
    .modal-plan-amount { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: #D4AF37; }
    .mform-row { display: grid; gap: 0.9rem; margin-bottom: 0.9rem; }
    .mform-row.two { grid-template-columns: 1fr 1fr; }
    .secure-note { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: rgba(255,255,255,0.28); margin: 1.1rem 0; }
    .btn-pay {
      width: 100%; padding: 0.95rem; border: none; border-radius: 4px;
      background: #D4AF37; color: #0A0A0A; font-size: 0.85rem; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
      font-family: 'Inter', sans-serif; box-shadow: 0 6px 20px rgba(212,175,55,0.3);
      transition: background 0.2s, transform 0.15s;
    }
    .btn-pay:hover { background: #E8C547; transform: translateY(-1px); }
    .btn-pay:active { transform: translateY(0); }
    .pay-success { display: none; text-align: center; padding: 1.5rem 0; }
    .pay-success .icon { font-size: 3rem; margin-bottom: 0.75rem; }
    .pay-success .title { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: #fff; margin-bottom: 0.5rem; }
    .pay-success .body { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

    /* ── FOOTER ── */
    footer { background: #050505; border-top: 2px solid #D4AF37; padding: 2.5rem 2rem; }
    .footer-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
    .footer-logo { display: flex; align-items: center; gap: 10px; }
    .footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: #fff; }
    .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: rgba(255,255,255,0.7); }
    .footer-socials { display: flex; gap: 0.65rem; }
    .social-link {
      width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
      color: rgba(255,255,255,0.5); transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .social-link:hover { color: #D4AF37; border-color: rgba(212,175,55,0.5); background: rgba(212,175,55,0.06); transform: translateY(-2px); }

    /* ── MOBILE ── */
    @media (max-width: 800px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mission-grid, .contact-grid, .tryouts-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .hero-scroll { display: none; }
    }

    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── MARQUEE ── */
    .marquee {
      overflow: hidden; padding: 1.5rem 0;
      border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a;
      background: #050505; position: relative;
    }
    .marquee::before, .marquee::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
    }
    .marquee::before { left: 0; background: linear-gradient(90deg, #050505, transparent); }
    .marquee::after { right: 0; background: linear-gradient(-90deg, #050505, transparent); }
    .marquee-track {
      display: flex; gap: 2.5rem; align-items: center; white-space: nowrap;
      animation: marqueeRoll 32s linear infinite; will-change: transform;
    }
    .marquee:hover .marquee-track { animation-play-state: paused; }
    .marquee-track > span {
      font-family: 'Russo One', sans-serif;
      font-size: clamp(1.6rem, 3.6vw, 2.8rem);
      letter-spacing: 0.02em; text-transform: uppercase; color: #fff;
      transform: skewX(-8deg); display: inline-block;
    }
    .marquee-track .m-gold { color: #D4AF37; }
    .marquee-track .m-outline {
      color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.55); text-stroke: 1.5px rgba(255,255,255,0.55);
    }
    .marquee-track .m-dot { color: #D4AF37; font-size: 1.4em; transform: none; line-height: 0; }
    @keyframes marqueeRoll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── SCROLL-STAGGER TEXT ── */
    .mission-title span,
    .cta-title span {
      display: block; opacity: 0;
      transform: translateY(60%) skewX(-7deg);
      transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .reveal.visible .mission-title span:nth-child(1) { opacity: 1; transform: translateY(0) skewX(-7deg); transition-delay: 0.08s; }
    .reveal.visible .mission-title span:nth-child(2) { opacity: 1; transform: translateY(0) skewX(-7deg); transition-delay: 0.22s; }
    .reveal.visible .mission-title span:nth-child(3) { opacity: 1; transform: translateY(0) skewX(-7deg); transition-delay: 0.36s; }
    .cta-banner.visible .cta-title span:nth-child(1) { opacity: 1; transform: translateY(0) skewX(-8deg); transition-delay: 0.1s; }
    .cta-banner.visible .cta-title span:nth-child(2) { opacity: 1; transform: translateY(0) skewX(-8deg); transition-delay: 0.28s; }

    /* ── HERO MANIFESTO HOVER ── */
    .hero-manifesto { transition: letter-spacing 0.5s ease, color 0.4s ease; }
    .hero-manifesto:hover { letter-spacing: 0.18em; color: #D4AF37; }

    /* ── GRAIN OVERLAY ── */
    .grain {
      position: fixed; inset: 0; z-index: 90; pointer-events: none;
      opacity: 0.12;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.85 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
      background-size: 220px 220px;
    }

    /* ── SUBPAGE ── */
    .nav-links a.active { color: #fff; }
    .nav-links a.active::after { transform: scaleX(1); }
    .subpage-spacer { height: 68px; }
    .subpage-header { padding: 3.5rem 2rem 1rem; text-align: center; }
    .subpage-header .s-label { margin-bottom: 1rem; }
    .subpage-header .s-title { margin-bottom: 1rem; }
    .subpage-header .s-body { margin: 0 auto; }
    .subpage-back {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.4); text-decoration: none;
      margin-bottom: 2rem; transition: color 0.2s;
    }
    .subpage-back:hover { color: #D4AF37; }
    .subpage-back svg { width: 12px; height: 12px; }