:root {
      --green: #006400;
      --green-l: #00a000;
      --green-ll: #00c800;
      --red: #E6392C;
      --gold: #FFD700;
      --gold-d: #c8a800;
      --dark: #030a03;
      --dark2: #081208;
      --dark3: #0d1a0d;
      --white: #ffffff;
      --muted: rgba(255, 255, 255, 0.55);
      --card: rgba(255, 255, 255, 0.04);
      --border: rgba(255, 255, 255, 0.08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--dark);
      color: #fff;
      overflow-x: hidden;
    }

    a,
    a:visited {
      color: var(--gold);
      text-decoration: none;
      transition: color .2s, border-color .2s, background .2s;
    }

    a:hover,
    a:focus {
      color: #fff;
    }

    /* ─── GLOBAL 3D CANVAS ─── */
    #world-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(3, 10, 3, 0.82);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 200, 0, 0.12);
    }

    .nav-inner {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 0 clamp(18px, 4vw, 64px);
      display: grid;
      grid-template-columns: minmax(250px, 1fr) auto minmax(150px, 1fr);
      column-gap: clamp(20px, 3vw, 52px);
      align-items: center;
      height: 68px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      justify-self: start;
      min-width: 0;
    }

    .nav-crest {
      width: 44px;
      height: 44px;
      position: relative;
    }

    .nav-crest canvas {
      width: 44px;
      height: 44px;
    }

    .nav-brand {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .nav-brand-top {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      letter-spacing: 2.5px;
      background: linear-gradient(90deg, #fff 40%, var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-brand-bot {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255, 215, 0, 0.5);
    }

    .nav-links {
      display: flex;
      gap: clamp(18px, 2.3vw, 34px);
      list-style: none;
      justify-self: center;
      align-items: center;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .3px;
      transition: color .2s;
      position: relative;
      padding-bottom: 4px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--gold);
      transition: width .25s;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      justify-self: end;
      background: var(--red);
      color: #fff;
      border: none;
      padding: 10px 24px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .5px;
      cursor: pointer;
      transition: all .2s;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: #c82a1e;
      transform: translateY(-1px);
    }

    /* ─── SECTIONS BASE ─── */
    section {
      position: relative;
      z-index: 2;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .sec-pad {
      padding: 100px 0;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0, 180, 0, 0.1);
      border: 1px solid rgba(0, 180, 0, 0.2);
      color: #4ade80;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 16px;
    }

    .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 6vw, 72px);
      letter-spacing: 2px;
      line-height: 1;
      margin-bottom: 14px;
    }

    .sec-sub {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
      max-width: 520px;
      font-weight: 300;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 80, 0, 0.25) 0%, transparent 70%);
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      padding: 120px 32px 60px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 215, 0, 0.08);
      border: 1px solid rgba(255, 215, 0, 0.25);
      color: var(--gold);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 32px;
      animation: fadeDown .8s .1s both;
    }

    .hero-logo-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 28px;
      animation: fadeDown .8s .2s both;
    }

    .hero-crest {
      width: 80px;
      height: 80px;
    }

    .hero-crest canvas {
      width: 80px;
      height: 80px;
    }

    .vdivide {
      width: 1.5px;
      height: 60px;
      background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }

    .hero-wordmark {
      text-align: left;
    }

    .hero-wm-top {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: 4px;
      color: rgba(255, 255, 255, 0.6);
    }

    .hero-wm-bot {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      letter-spacing: 6px;
      color: rgba(255, 215, 0, 0.45);
    }

    .hero-title {
      animation: fadeUp .9s .3s both;
    }

    .ht1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 16vw, 136px);
      letter-spacing: 6px;
      display: block;
      line-height: .9;
      color: #fff;
      text-shadow: 0 0 80px rgba(0, 200, 0, 0.2);
    }

    .ht2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 16vw, 136px);
      letter-spacing: 6px;
      display: block;
      line-height: .9;
      background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
      background-size: 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 3s linear infinite;
    }

    .ht3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 8vw, 72px);
      letter-spacing: 10px;
      display: block;
      color: rgba(255, 255, 255, 0.65);
      margin-top: 8px;
    }

    @keyframes shimmer {
      0% {
        background-position: 0%
      }

      100% {
        background-position: 200%
      }
    }

    .hero-divbar {
      width: 0;
      height: 3px;
      margin: 22px auto;
      background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
      border-radius: 2px;
      animation: growBar .8s .8s both ease-out;
    }

    @keyframes growBar {
      to {
        width: 160px
      }
    }

    .hero-tagline {
      font-size: 15px;
      color: var(--muted);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 40px;
      animation: fadeUp .8s .9s both;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-bottom: 44px;
      animation: fadeUp .8s 1s both;
    }

    .hs {
      padding: 16px 36px;
      border-left: 1px solid var(--border);
      text-align: center;
    }

    .hs:first-child {
      border-left: none;
    }

    .hs-n {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      letter-spacing: 1px;
      background: linear-gradient(135deg, var(--gold), #FFA500);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hs-l {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      margin-top: 2px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      animation: fadeUp .8s 1.1s both;
    }

    .btn-red {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 16px 40px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
      box-shadow: 0 12px 40px rgba(230, 57, 44, 0.35);
    }

    .btn-red:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 50px rgba(230, 57, 44, 0.5);
    }

    .btn-ghost {
      background: transparent;
      color: var(--gold);
      border: 1.5px solid rgba(255, 215, 0, 0.4);
      padding: 16px 40px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
    }

    .btn-ghost:hover {
      background: rgba(255, 215, 0, 0.08);
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      animation: fadeUp 1s 1.5s both;
    }

    .hero-scroll span {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.25);
    }

    .scroll-bar {
      width: 1px;
      height: 40px;
      background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.5), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: .3
      }

      50% {
        opacity: 1
      }
    }

    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ─── ABOUT ─── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      margin-top: 56px;
    }

    .about-pitch {
      position: relative;
    }

    .pitch-card {
      background: rgba(0, 60, 0, 0.3);
      border: 1px solid rgba(0, 200, 0, 0.15);
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 4/3;
      position: relative;
    }

    .pitch-canvas {
      width: 100%;
      height: 100%;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .af {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      transition: all .3s;
      cursor: default;
    }

    .af:hover {
      border-color: rgba(0, 200, 0, 0.3);
      transform: translateX(6px);
      background: rgba(0, 100, 0, 0.08);
    }

    .af-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .af-title {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .af-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ─── PROGRAMS ─── */
    .programs-bg {
      background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
    }

    .prog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .prog-card {
      border-radius: 20px;
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: transform .35s, box-shadow .35s;
      cursor: default;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
    }

    .prog-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 20px 20px 0 0;
    }

    .prog-card.am::before {
      background: linear-gradient(90deg, var(--gold), #FFA500);
    }

    .prog-card.pm::before {
      background: linear-gradient(90deg, var(--red), #FF7070);
    }

    .prog-card.el::before {
      background: linear-gradient(90deg, var(--green-l), var(--green-ll));
    }

    .prog-card::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .35s;
      border-radius: 20px;
    }

    .prog-card.am::after {
      background: radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.04), transparent 60%);
    }

    .prog-card.pm::after {
      background: radial-gradient(ellipse at top right, rgba(230, 57, 44, 0.05), transparent 60%);
    }

    .prog-card.el::after {
      background: radial-gradient(ellipse at top, rgba(0, 200, 0, 0.05), transparent 60%);
    }

    .prog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    }

    .prog-card:hover::after {
      opacity: 1;
    }

    .prog-icon {
      font-size: 40px;
      margin-bottom: 20px;
    }

    .prog-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: 2px;
      margin-bottom: 6px;
    }

    .prog-time {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 20px;
    }

    .am .prog-time {
      background: rgba(255, 215, 0, 0.1);
      color: var(--gold);
    }

    .pm .prog-time {
      background: rgba(230, 57, 44, 0.1);
      color: #FF8080;
    }

    .el .prog-time {
      background: rgba(0, 200, 0, 0.1);
      color: #4ade80;
    }

    .prog-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .prog-list li {
      font-size: 13px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 9px;
      line-height: 1.5;
    }

    .prog-list li::before {
      content: '';
      width: 5px;
      height: 5px;
      background: #4ade80;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ─── TIMING ─── */
    .timing-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 56px;
      max-width: 780px;
    }

    .time-card {
      border-radius: 20px;
      padding: 36px;
      border: 1px solid;
      transition: transform .3s;
    }

    .time-card.am-t {
      background: rgba(255, 200, 0, 0.05);
      border-color: rgba(255, 200, 0, 0.2);
    }

    .time-card.pm-t {
      background: rgba(230, 57, 44, 0.05);
      border-color: rgba(230, 57, 44, 0.2);
    }

    .time-card:hover {
      transform: translateY(-5px);
    }

    .time-icon {
      font-size: 40px;
      margin-bottom: 16px;
    }

    .time-slot {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 44px;
      letter-spacing: 1px;
      line-height: 1;
    }

    .am-t .time-slot {
      color: var(--gold);
    }

    .pm-t .time-slot {
      color: #FF8080;
    }

    .time-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin: 8px 0;
    }

    .time-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65;
    }

    .closed-note {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(230, 57, 44, 0.07);
      border: 1px solid rgba(230, 57, 44, 0.2);
      border-radius: 10px;
      padding: 12px 20px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
    }

    /* ─── FEES ─── */
    .fees-bg {
      background: linear-gradient(135deg, rgba(0, 60, 0, 0.08), transparent 60%);
    }

    .fee-row {
      display: flex;
      gap: 24px;
      margin-top: 56px;
      flex-wrap: wrap;
    }

    .fee-card {
      flex: 1;
      min-width: 220px;
      border-radius: 20px;
      padding: 36px;
    }

    .fee-card.reg {
      background: rgba(255, 215, 0, 0.07);
      border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .fee-card.mon {
      background: rgba(0, 100, 0, 0.15);
      border: 1px solid rgba(0, 200, 0, 0.2);
    }

    .fee-lbl {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: .55;
      margin-bottom: 14px;
    }

    .fee-amt {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px;
      letter-spacing: -1px;
      line-height: 1;
    }

    .fee-sym {
      font-size: 36px;
      vertical-align: top;
      margin-top: 12px;
      display: inline-block;
    }

    .reg .fee-amt {
      color: var(--gold);
    }

    .mon .fee-amt {
      color: #4ade80;
    }

    .fee-note {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 10px;
      font-style: italic;
    }

    .fee-includes {
      flex: 2;
      min-width: 300px;
    }

    .fee-includes h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .inc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .inc-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--muted);
    }

    .inc-dot {
      width: 6px;
      height: 6px;
      background: var(--green-ll);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ─── COACHES ─── */
    .coaches-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .coach-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      text-align: center;
      transition: all .35s;
    }

    .coach-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 215, 0, 0.25);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    }

    .coach-avatar {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      position: relative;
    }

    .coach-card:nth-child(1) .coach-avatar {
      background: rgba(255, 215, 0, 0.08);
      border: 2px solid rgba(255, 215, 0, 0.35);
    }

    .coach-card:nth-child(2) .coach-avatar {
      background: rgba(0, 100, 0, 0.12);
      border: 2px solid rgba(0, 200, 0, 0.35);
    }

    .coach-card:nth-child(3) .coach-avatar {
      background: rgba(230, 57, 44, 0.08);
      border: 2px solid rgba(230, 57, 44, 0.35);
    }

    .coach-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 1.5px;
      margin-bottom: 4px;
    }

    .coach-role {
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .coach-bio {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65;
    }

    .coach-badge {
      display: inline-block;
      margin-top: 14px;
      background: rgba(0, 100, 0, 0.15);
      border: 1px solid rgba(0, 200, 0, 0.2);
      color: #4ade80;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 50px;
      letter-spacing: .5px;
    }

    /* ─── ACHIEVEMENTS ─── */
    .achieve-bg {
      background: linear-gradient(180deg, var(--dark2), var(--dark));
    }

    .achieve-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .achieve-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 20px;
      text-align: center;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }

    .achieve-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .achieve-card:hover {
      transform: scale(1.04);
      border-color: rgba(255, 215, 0, 0.25);
    }

    .achieve-card:hover::before {
      opacity: 1;
    }

    .ach-icon {
      font-size: 32px;
      margin-bottom: 12px;
    }

    .ach-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 52px;
      letter-spacing: 1px;
      line-height: 1;
      background: linear-gradient(135deg, var(--gold), #FFA500);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .ach-lbl {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 6px;
      font-weight: 500;
      line-height: 1.5;
    }

    /* ─── VISION ─── */
    .vision-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
      margin-top: 56px;
    }

    .pillars {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .pillar {
      display: flex;
      gap: 18px;
      padding: 22px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      transition: all .25s;
    }

    .pillar:hover {
      border-color: rgba(255, 215, 0, 0.2);
      transform: translateX(5px);
    }

    .p-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px;
      color: rgba(255, 215, 0, 0.15);
      line-height: 1;
      flex-shrink: 0;
      width: 40px;
    }

    .p-title {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .p-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65;
    }

    .vision-quote {
      background: rgba(0, 80, 0, 0.1);
      border: 1px solid rgba(0, 200, 0, 0.15);
      border-radius: 24px;
      padding: 44px;
      position: relative;
    }

    .vq-mark {
      font-family: 'Playfair Display', serif;
      font-size: 120px;
      line-height: .8;
      color: rgba(0, 200, 0, 0.08);
      position: absolute;
      top: 20px;
      left: 24px;
      font-weight: 900;
    }

    blockquote {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.85);
      position: relative;
      z-index: 1;
    }

    cite {
      display: block;
      margin-top: 20px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      color: #4ade80;
      font-style: normal;
      font-weight: 600;
      letter-spacing: .5px;
    }

    /* ─── GALLERY ─── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 56px;
    }

    .gal-item {
      border-radius: 14px;
      overflow: hidden;
      background: var(--card);
      border: 1px solid var(--border);
      aspect-ratio: 4/3;
      position: relative;
    }

    .gal-canvas {
      width: 100%;
      height: 100%;
    }

    /* ─── TESTIMONIALS ─── */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .testi-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 28px;
      transition: all .3s;
    }

    .testi-card:hover {
      border-color: rgba(255, 215, 0, 0.2);
      transform: translateY(-5px);
    }

    .testi-stars {
      color: var(--gold);
      font-size: 14px;
      margin-bottom: 14px;
      letter-spacing: 2px;
    }

    .testi-text {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      margin-bottom: 18px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-av {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 13px;
      font-weight: 600;
    }

    .testi-sub {
      font-size: 11px;
      color: var(--muted);
    }

    /* ─── CONTACT ─── */
    .contact-bg {
      background: linear-gradient(135deg, rgba(0, 60, 0, 0.1), transparent 60%);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-top: 56px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .ci {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .ci-icon {
      width: 46px;
      height: 46px;
      background: rgba(0, 100, 0, 0.15);
      border: 1px solid rgba(0, 200, 0, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .ci-lbl {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #4ade80;
      margin-bottom: 4px;
    }

    .ci-val {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.6;
    }

    .reg-box {
      background: rgba(0, 80, 0, 0.12);
      border: 1px solid rgba(0, 200, 0, 0.18);
      border-radius: 22px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .reg-box h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 2px;
    }

    .reg-box p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    .req-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .req-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--muted);
    }

    .req-item::before {
      content: '✓';
      color: #4ade80;
      font-weight: 700;
      font-size: 14px;
    }

    /* ─── REGISTER PAGE ─── */
    .register-page {
      min-height: 100vh;
      padding: 132px 0 72px;
      background:
        radial-gradient(circle at 12% 18%, rgba(255, 215, 0, 0.09), transparent 30%),
        radial-gradient(circle at 84% 8%, rgba(230, 57, 44, 0.08), transparent 28%),
        linear-gradient(135deg, rgba(0, 100, 0, 0.12), transparent 58%);
      overflow: hidden;
    }

    .register-bg-orbit {
      position: absolute;
      border: 1px solid rgba(255, 215, 0, 0.16);
      border-radius: 50%;
      pointer-events: none;
      transform: rotateX(68deg) rotateZ(-16deg);
      filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.12));
    }

    .register-bg-orbit.orbit-a {
      width: 420px;
      height: 160px;
      right: -80px;
      top: 130px;
      animation: orbitPulse 5s ease-in-out infinite;
    }

    .register-bg-orbit.orbit-b {
      width: 280px;
      height: 110px;
      left: -60px;
      bottom: 80px;
      border-color: rgba(0, 200, 0, 0.14);
      animation: orbitPulse 6s ease-in-out infinite reverse;
    }

    .register-shell {
      display: grid;
      grid-template-columns: 360px minmax(0, 1fr);
      gap: 36px;
      align-items: start;
    }

    .register-intro {
      position: sticky;
      top: 96px;
      padding: 34px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(0, 100, 0, 0.08));
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(18px);
    }

    .register-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(46px, 4vw, 74px);
      line-height: .95;
      letter-spacing: 2px;
      margin-bottom: 18px;
      background: linear-gradient(135deg, #fff 14%, var(--gold) 72%, #ffa500);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .register-copy {
      color: rgba(255, 255, 255, 0.66);
      font-size: 14px;
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .register-highlights {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .reg-highlight {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      align-items: start;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      background: rgba(0, 0, 0, 0.18);
    }

    .reg-highlight span {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: var(--gold);
      background: rgba(255, 215, 0, 0.1);
      border: 1px solid rgba(255, 215, 0, 0.2);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 1px;
    }

    .reg-highlight strong {
      display: block;
      font-size: 13px;
      letter-spacing: .6px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .reg-highlight p {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }

    .register-panel {
      position: relative;
      padding: 34px;
      border-radius: 24px;
      border: 1px solid rgba(0, 200, 0, 0.2);
      background:
        linear-gradient(145deg, rgba(3, 10, 3, 0.94), rgba(8, 22, 8, 0.92)),
        linear-gradient(135deg, rgba(0, 100, 0, 0.16), transparent);
      box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
      backdrop-filter: blur(20px);
    }

    .register-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(255, 215, 0, 0.32), transparent 32%, rgba(0, 200, 0, 0.2));
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .registration-form {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .form-section {
      padding: 24px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.075);
      background: rgba(255, 255, 255, 0.035);
    }

    .form-section-head {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      align-items: center;
      margin-bottom: 20px;
    }

    .form-section-head span {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(0, 100, 0, 0.2);
      border: 1px solid rgba(0, 200, 0, 0.22);
      color: #4ade80;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      letter-spacing: 1px;
    }

    .form-section-head h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 30px;
      letter-spacing: 2px;
      line-height: 1;
      margin-bottom: 4px;
    }

    .form-section-head p {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }

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

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-field-wide {
      grid-column: 1 / -1;
    }

    .form-field label {
      color: rgba(255, 255, 255, 0.82);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
    }

    .form-field label span {
      color: var(--red);
    }

    .form-field small {
      color: rgba(255, 255, 255, 0.48);
      font-size: 11px;
      line-height: 1.45;
    }

    .academy-input {
      width: 100%;
      min-height: 48px;
      padding: 13px 14px;
      color: #fff;
      background: rgba(0, 0, 0, 0.32);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      font: inherit;
      outline: none;
      transition: border-color .2s, box-shadow .2s, background .2s;
    }

    textarea.academy-input {
      min-height: 105px;
      resize: vertical;
    }

    .academy-input::placeholder {
      color: rgba(255, 255, 255, 0.28);
    }

    .academy-input:focus {
      background: rgba(0, 0, 0, 0.42);
      border-color: rgba(255, 215, 0, 0.48);
      box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.08);
    }

    .academy-select {
      cursor: pointer;
    }

    .academy-file {
      padding: 10px;
      cursor: pointer;
    }

    .academy-file::file-selector-button {
      margin-right: 12px;
      border: none;
      border-radius: 8px;
      padding: 10px 14px;
      background: rgba(0, 100, 0, 0.35);
      color: #fff;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      cursor: pointer;
    }

    .has-error .academy-input {
      border-color: rgba(230, 57, 44, 0.75);
      box-shadow: 0 0 0 3px rgba(230, 57, 44, 0.1);
    }

    .field-error,
    .register-alert {
      color: #ff9a93;
      font-size: 12px;
      line-height: 1.5;
    }

    .register-messages {
      margin-bottom: 20px;
    }

    .register-alert {
      padding: 13px 15px;
      border-radius: 10px;
      background: rgba(230, 57, 44, 0.1);
      border: 1px solid rgba(230, 57, 44, 0.35);
    }

    .declaration-box {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 18px;
      border-radius: 16px;
      border: 1px solid rgba(255, 215, 0, 0.2);
      background: rgba(255, 215, 0, 0.07);
      color: rgba(255, 255, 255, 0.76);
      font-size: 13px;
      line-height: 1.6;
    }

    .declaration-box input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: var(--gold);
      flex: 0 0 auto;
    }

    .declaration-box a {
      color: var(--gold);
      text-decoration: none;
      font-weight: 700;
    }

    .form-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .form-actions .btn-ghost,
    .form-actions .btn-red {
      text-decoration: none;
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
    }

    /* ─── FOOTER ─── */
    footer {
      position: relative;
      z-index: 2;
      background: rgba(0, 0, 0, 0.6);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 48px 32px 32px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
    }

    .footer-brand-top {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 3px;
      margin-bottom: 8px;
    }

    .footer-brand-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 260px;
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 215, 0, 0.6);
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-col ul li {
      font-size: 13px;
      color: var(--muted);
    }

    .footer-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 24px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.25);
    }

    /* ─── REVEAL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .revealed {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-l {
      opacity: 0;
      transform: translateX(-36px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal-l.revealed {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-r {
      opacity: 0;
      transform: translateX(36px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal-r.revealed {
      opacity: 1;
      transform: translateX(0);
    }

    @media(max-width:900px) {

      .about-grid,
      .vision-grid,
      .contact-grid,
      .footer-top {
        grid-template-columns: 1fr;
      }

      .prog-grid,
      .coaches-grid,
      .achieve-grid {
        grid-template-columns: 1fr 1fr;
      }

      .timing-row {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        flex-wrap: wrap;
      }

      .hs {
        border-left: none;
        padding: 10px 20px;
      }

      .nav-links {
        display: none;
      }

      .nav-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 16px;
      }

      .nav-cta {
        grid-column: 2;
      }

      .register-shell {
        grid-template-columns: 1fr;
      }

      .register-intro {
        position: relative;
        top: auto;
      }
    }

    @media(max-width:600px) {

      .prog-grid,
      .coaches-grid,
      .achieve-grid,
      .gallery-grid,
      .testi-grid {
        grid-template-columns: 1fr;
      }

      .inc-grid {
        grid-template-columns: 1fr;
      }

      .fee-row {
        flex-direction: column;
      }

      .register-page {
        padding: 108px 0 48px;
      }

      .register-intro,
      .register-panel {
        padding: 24px;
        border-radius: 20px;
      }

      .form-section {
        padding: 18px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
      }

      .form-actions .btn-ghost,
      .form-actions .btn-red {
        width: 100%;
      }

      .nav-inner {
        padding: 0 16px;
      }

      .nav-brand-top {
        font-size: 17px;
        letter-spacing: 1.6px;
      }

      .nav-brand-bot {
        letter-spacing: 2px;
      }

      .nav-cta {
        padding: 9px 14px;
        font-size: 11px;
        letter-spacing: .4px;
      }
    }

    /* ─── RESPONSIVE POLISH ─── */
    img,
    canvas,
    video,
    svg {
      max-width: 100%;
    }

    .content-page {
      min-height: 72vh;
      padding: 132px 0 72px;
      background:
        radial-gradient(circle at 12% 10%, rgba(255, 215, 0, 0.08), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(230, 57, 44, 0.07), transparent 28%),
        linear-gradient(135deg, rgba(0, 100, 0, 0.1), transparent 58%);
    }

    .terms-card,
    .success-card {
      margin-top: 36px;
      max-width: 900px;
      border: 1px solid rgba(0, 200, 0, 0.18);
      border-radius: 24px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(0, 100, 0, 0.08));
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
      padding: clamp(24px, 4vw, 44px);
    }

    .terms-card h3 {
      color: #fff;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .terms-card p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 22px;
    }

    .success-page .container {
      display: flex;
      justify-content: center;
    }

    .success-card {
      text-align: center;
      max-width: 760px;
    }

    .success-mark {
      width: 72px;
      height: 72px;
      display: grid;
      place-items: center;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: rgba(0, 200, 0, 0.12);
      border: 1px solid rgba(0, 200, 0, 0.28);
      color: #4ade80;
      font-size: 38px;
      font-weight: 800;
    }

    .success-note {
      display: inline-flex;
      margin: 26px auto 18px;
      padding: 12px 18px;
      border-radius: 12px;
      background: rgba(0, 100, 0, 0.22);
      border: 1px solid rgba(0, 200, 0, 0.22);
      color: #4ade80;
      font-weight: 700;
      line-height: 1.5;
    }

    .success-copy {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .content-actions {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    .success-card .content-actions {
      justify-content: center;
    }

    .content-actions a {
      text-decoration: none;
    }

    @media(max-width:1180px) {
      .nav-inner {
        grid-template-columns: minmax(230px, 1fr) auto minmax(132px, 1fr);
        padding: 0 24px;
        column-gap: 18px;
      }

      .nav-links {
        gap: 18px;
      }

      .nav-links a {
        font-size: 12px;
      }

      .container {
        padding: 0 24px;
      }

      .hero-title {
        font-size: clamp(54px, 12vw, 132px);
      }

      .fee-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .fee-includes {
        grid-column: 1 / -1;
      }
    }

    @media(max-width:900px) {
      body {
        font-size: 15px;
      }

      .sec-pad {
        padding: 76px 0;
      }

      .container {
        padding: 0 20px;
      }

      nav {
        background: rgba(3, 10, 3, 0.94);
      }

      .nav-inner {
        height: 64px;
      }

      .nav-crest,
      .nav-crest canvas {
        width: 38px;
        height: 38px;
      }

      .hero {
        min-height: auto;
        padding: 104px 0 72px;
      }

      .hero-content {
        padding: 0 20px;
      }

      .hero-badge {
        margin-bottom: 24px;
        white-space: normal;
      }

      .hero-title {
        font-size: clamp(52px, 15vw, 104px);
      }

      .hero-tagline {
        font-size: clamp(18px, 5vw, 30px);
      }

      .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        max-width: 560px;
        margin: 30px auto 0;
      }

      .hs {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.035);
      }

      .hero-btns {
        flex-wrap: wrap;
      }

      .hero-btns .btn-red,
      .hero-btns .btn-ghost {
        flex: 1 1 210px;
      }

      .about-grid,
      .vision-grid,
      .contact-grid,
      .register-shell,
      .footer-top {
        gap: 30px;
      }

      .pitch-card {
        min-height: 320px;
      }

      .prog-grid,
      .coaches-grid,
      .achieve-grid,
      .gallery-grid,
      .testi-grid {
        gap: 18px;
      }

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

      .footer-bottom {
        justify-content: flex-start;
      }
    }

    @media(max-width:700px) {
      .nav-brand-top {
        max-width: 190px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .hero-title {
        font-size: clamp(46px, 18vw, 82px);
      }

      .hero-divbar {
        width: min(76vw, 300px);
      }

      .about-grid,
      .prog-grid,
      .timing-row,
      .fee-row,
      .inc-grid,
      .coaches-grid,
      .achieve-grid,
      .vision-grid,
      .gallery-grid,
      .testi-grid,
      .contact-grid,
      .footer-top {
        grid-template-columns: 1fr;
      }

      .fee-includes {
        grid-column: auto;
      }

      .af,
      .ci,
      .pillar {
        align-items: flex-start;
      }

      .form-section-head,
      .reg-highlight {
        grid-template-columns: 1fr;
      }

      .form-section-head span,
      .reg-highlight span {
        width: 40px;
        height: 40px;
      }

      .register-intro {
        display: none;
      }

      .content-page {
        padding: 104px 0 54px;
      }
    }

    @media(max-width:520px) {
      .container {
        padding: 0 16px;
      }

      .sec-pad {
        padding: 60px 0;
      }

      .nav-inner {
        height: 60px;
      }

      .nav-logo {
        gap: 8px;
      }

      .nav-brand-top {
        max-width: 150px;
        font-size: 15px;
        letter-spacing: 1.2px;
      }

      .nav-brand-bot {
        font-size: 8px;
      }

      .nav-cta {
        padding: 8px 11px;
        font-size: 10px;
      }

      .hero {
        padding: 92px 0 56px;
      }

      .hero-badge,
      .tag {
        font-size: 9px;
        letter-spacing: 1.4px;
      }

      .hero-title {
        font-size: clamp(40px, 20vw, 68px);
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .hs {
        padding: 14px 16px;
      }

      .hero-btns,
      .content-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-btns .btn-red,
      .hero-btns .btn-ghost,
      .content-actions .btn-red,
      .content-actions .btn-ghost {
        width: 100%;
        text-align: center;
      }

      .sec-title {
        font-size: clamp(36px, 13vw, 54px);
      }

      .pitch-card,
      .gal-item {
        min-height: 240px;
      }

      .prog-card,
      .time-card,
      .fee-card,
      .fee-includes,
      .coach-card,
      .achieve-card,
      .testi-card,
      .vision-quote,
      .reg-box,
      .register-panel,
      .terms-card,
      .success-card {
        border-radius: 18px;
        padding: 22px;
      }

      .fee-amt {
        font-size: clamp(44px, 16vw, 64px);
      }

      .form-section {
        padding: 16px;
      }

      .academy-input {
        min-height: 46px;
      }
    }

    @media(max-width:380px) {
      .nav-crest,
      .nav-crest canvas {
        width: 34px;
        height: 34px;
      }

      .nav-brand-top {
        max-width: 118px;
        font-size: 14px;
      }

      .nav-cta {
        padding: 8px 9px;
      }
    }

/* Home page mobile navigation fixes */
.nav-menu {
  display: contents;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}

.nav-login {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all .2s;
  white-space: nowrap;
}

.nav-login:hover {
  color: #fff;
  border-color: rgba(255,215,0,0.35);
  background: rgba(255,215,0,0.06);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 40px;
}

.nav-menu-actions {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .2s, opacity .2s;
}

body.home-menu-open {
  overflow: hidden;
}

body.home-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.home-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.home-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media(max-width:1180px) {
  .nav-inner {
    grid-template-columns: minmax(220px, 1fr) auto auto;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-login {
    padding: 9px 12px;
    font-size: 12px;
  }
}

@media(max-width:1180px) {
  .nav-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    top: 64px;
    right: 12px;
    left: 12px;
    max-height: calc(100vh - 82px);
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    background: rgba(3,10,3,0.98);
    box-shadow: 0 24px 70px rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 120;
  }

  body.home-menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.82);
  }

  .nav-links a:hover {
    background: rgba(255,255,255,0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-menu-actions .nav-login,
  .nav-menu-actions .nav-cta {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    text-align: center;
  }
}

@media(max-width:520px) {
  .nav-inner {
    padding: 0 14px;
  }

  .nav-menu {
    top: 60px;
    right: 10px;
    left: 10px;
    max-height: calc(100vh - 76px);
    max-height: calc(100dvh - 76px);
    padding: 16px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-menu-actions {
    grid-template-columns: 1fr;
  }

  .hero-btns,
  .content-actions {
    align-items: center;
  }

  .hero-btns .btn-red,
  .hero-btns .btn-ghost {
    width: min(100%, 280px);
    flex: 0 0 auto;
    padding: 13px 18px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .content-actions .btn-red,
  .content-actions .btn-ghost {
    width: min(100%, 300px);
  }
}

@media(max-width:380px) {
  .nav-brand-top {
    max-width: 170px;
  }

  .hero-btns .btn-red,
  .hero-btns .btn-ghost {
    width: 100%;
    max-width: 260px;
  }
}

