:root {
    --navy-deep: #061227;
    --navy: #0a1d3f;
    --navy-2: #11295a;
    --cyan: #4dd0e7;
    --cyan-bright: #7ee8fa;
    --cyan-soft: #b8eef7;
    --white: #ffffff;
    --off: #e9f4f9;
    --ink: #03101f;
    --court: #f3b75a;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Archivo', sans-serif;
    background: var(--navy-deep);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  ::selection { background: var(--cyan); color: var(--navy-deep); }

  /* ============ NOISE / GRAIN OVERLAY ============ */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.06;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
  }

  /* ============ NAVIGATION ============ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
    backdrop-filter: blur(0px);
  }
  nav.scrolled {
    background: rgba(6, 18, 39, 0.85);
    backdrop-filter: blur(20px);
    padding: 14px 40px;
    border-bottom: 1px solid rgba(77, 208, 231, 0.15);
  }
  .nav-logo {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
  }
  .nav-logo span { color: var(--cyan); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--cyan);
    transition: width 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .nav-links a:hover { color: var(--cyan); }
  .nav-links a:hover::after { width: 100%; }

  .menu-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; }

  /* ============ HERO ============ */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(77, 208, 231, 0.18) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 80%, rgba(17, 41, 90, 0.6) 0%, transparent 50%),
      linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  }

  /* Court lines decoration */
  .court-lines {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
    background-image:
      linear-gradient(var(--cyan) 1px, transparent 1px),
      linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  }

  /* Animated floating basketballs */
  .ball {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff8b3d, #c4421a);
    box-shadow: inset -8px -8px 20px rgba(0,0,0,.4), 0 20px 60px rgba(196, 66, 26, 0.3);
  }
  .ball::before, .ball::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.4);
  }
  .ball::before { clip-path: polygon(48% 0, 52% 0, 52% 100%, 48% 100%); }
  .ball::after {
    border: none;
    background:
      linear-gradient(90deg, transparent 49%, rgba(0,0,0,0.4) 49%, rgba(0,0,0,0.4) 51%, transparent 51%),
      radial-gradient(circle, transparent 35%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.4) 37%, transparent 37%);
  }
  .ball-1 { width: 80px; height: 80px; top: 18%; left: 8%; animation: float1 9s ease-in-out infinite; }
  .ball-2 { width: 50px; height: 50px; bottom: 22%; right: 12%; animation: float2 11s ease-in-out infinite; }
  .ball-3 { width: 30px; height: 30px; top: 60%; left: 45%; animation: float3 7s ease-in-out infinite; opacity: 0.5; }
  @keyframes float1 { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-40px) rotate(180deg); } }
  @keyframes float2 { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(30px) rotate(-180deg); } }
  @keyframes float3 { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(20px,-30px) rotate(360deg); } }

  .hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 28px;
    opacity: 0;
    animation: rise 0.9s 0.2s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .hero-tag::before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--cyan);
  }

  .hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(54px, 9vw, 156px);
    line-height: 0.95;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
    text-transform: uppercase;
  }
  .hero-title .word {
    display: block;
    overflow: hidden;
  }
  .hero-title .word span {
    display: block;
    transform: translateY(100%);
    animation: rise 1s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .hero-title .word:nth-child(1) span { animation-delay: 0.3s; }
  .hero-title .word:nth-child(2) span { animation-delay: 0.45s; }
  .hero-title .word:nth-child(3) span {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
  }

  @keyframes rise {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 40px;
    opacity: 0;
    animation: rise 0.9s 0.9s cubic-bezier(.2,.8,.2,1) forwards;
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 0.9s 1.05s cubic-bezier(.2,.8,.2,1) forwards;
  }

  .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .btn-primary {
    background: var(--cyan);
    color: var(--navy-deep);
  }
  .btn-primary:hover {
    background: var(--cyan-bright);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(77, 208, 231, 0.35);
  }
  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
  }
  .btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px);
  }
  .btn .arrow {
    transition: transform 0.3s;
  }
  .btn:hover .arrow { transform: translateX(4px); }

  /* Hero stats column */
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    animation: rise 1s 1.2s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .stat-card {
    border: 1px solid rgba(77, 208, 231, 0.2);
    background: linear-gradient(135deg, rgba(17, 41, 90, 0.5), rgba(10, 29, 63, 0.2));
    backdrop-filter: blur(10px);
    padding: 28px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--cyan);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .stat-card:hover::before { transform: scaleY(1); }
  .stat-num {
    font-family: 'Anton', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: var(--cyan);
    letter-spacing: -1px;
  }
  .stat-label {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
  }

  /* Scroll cue */
  .scroll-cue {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadein 1s 2s forwards;
  }
  .scroll-cue-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--cyan));
    animation: scrollPulse 2s ease-in-out infinite;
  }
  .scroll-cue-text {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
  }
  @keyframes fadein { to { opacity: 1; } }

  /* ============ SECTION COMMON ============ */
  section { padding: 140px 40px; position: relative; scroll-margin-top: 80px; }

  /* Invisible anchor target — supports aliasing one section under multiple URLs (e.g. #signup -> register) */
  .anchor-target {
    display: block;
    height: 0;
    scroll-margin-top: 80px;
  }

  /* Highlight pulse for when a visitor arrives via a direct link to the form */
  @keyframes form-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(77, 208, 231, 0); }
    20%  { box-shadow: 0 0 0 6px rgba(77, 208, 231, 0.35), 0 25px 50px rgba(77, 208, 231, 0.18); }
    100% { box-shadow: 0 0 0 0 rgba(77, 208, 231, 0); }
  }
  .form-card.arrive-highlight {
    animation: form-pulse 2.2s cubic-bezier(.2,.8,.2,1);
  }
  .container { max-width: 1400px; margin: 0 auto; }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
  }
  .section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--cyan);
  }
  .section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 60px;
    text-transform: uppercase;
  }
  .section-title .accent {
    color: var(--cyan);
    font-style: italic;
  }

  /* Reveal animation */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal.delay-1 { transition-delay: 0.1s; }
  .reveal.delay-2 { transition-delay: 0.2s; }
  .reveal.delay-3 { transition-delay: 0.3s; }

  /* ============ ABOUT ============ */
  .about {
    background: var(--navy);
    position: relative;
  }
  .about::after {
    content: 'P.A.S.S.';
    position: absolute;
    top: 40px; right: -20px;
    font-family: 'Anton', sans-serif;
    font-size: clamp(120px, 18vw, 280px);
    line-height: 0.8;
    color: rgba(77, 208, 231, 0.04);
    letter-spacing: -4px;
    pointer-events: none;
    z-index: 0;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
  }
  .about-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
  }
  .about-text p:first-of-type::first-letter {
    font-family: 'Anton', sans-serif;
    font-size: 80px;
    line-height: 0.85;
    float: left;
    margin: 6px 14px 0 0;
    color: var(--cyan);
  }

  .coach-card {
    background: linear-gradient(135deg, rgba(77,208,231,0.08), rgba(17,41,90,0.5));
    border: 1px solid rgba(77, 208, 231, 0.2);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
  }
  .coach-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(77,208,231,0.18), transparent 70%);
    pointer-events: none;
  }
  .coach-quote {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
  }
  .coach-quote em { color: var(--cyan); font-style: italic; }
  .coach-sig {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .coach-mono {
    width: 56px; height: 56px;
    background: var(--cyan);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 24px;
  }
  .coach-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  .coach-role {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-top: 2px;
  }

  /* ============ TRAINING ============ */
  .training { background: var(--navy-deep); }
  .training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .training-card {
    position: relative;
    padding: 50px 36px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(17,41,90,0.4), rgba(10,29,63,0.2));
    overflow: hidden;
    transition: all 0.5s cubic-bezier(.2,.8,.2,1);
    cursor: default;
  }
  .training-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyan), var(--navy-2));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
  }
  .training-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  }
  .training-card:hover::before { opacity: 0.95; }
  .training-card > * { position: relative; z-index: 1; }
  .training-num {
    font-family: 'Anton', sans-serif;
    font-size: 80px;
    line-height: 1;
    color: var(--cyan);
    transition: color 0.4s;
  }
  .training-card:hover .training-num { color: var(--white); }
  .training-card-title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 30px 0 12px;
  }
  .training-card-meta {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
  }
  .training-card:hover .training-card-meta { color: rgba(255,255,255,0.85); }
  .training-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.75);
  }

  .training-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 22px 0 22px;
    padding: 16px 20px;
    background: rgba(77, 208, 231, 0.08);
    border-left: 3px solid var(--cyan);
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .training-card:hover .training-price {
    background: rgba(6, 18, 39, 0.45);
    border-left-color: var(--white);
  }
  .price-amount {
    font-family: 'Anton', sans-serif;
    font-size: 38px;
    line-height: 1;
    color: var(--cyan);
    letter-spacing: -0.5px;
    transition: color 0.4s;
  }
  .training-card:hover .price-amount { color: var(--white); }
  .price-unit {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
  }
  .training-card:hover .price-unit { color: rgba(255,255,255,0.85); }

  .focus-strip {
    margin-top: 70px;
    padding: 36px;
    border-top: 1px solid rgba(77, 208, 231, 0.2);
    border-bottom: 1px solid rgba(77, 208, 231, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 18px;
  }
  .focus-strip span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
  }
  .focus-strip span:hover { color: var(--cyan); }
  .focus-strip .dot { color: var(--cyan); }

  /* ============ ALUMNI ============ */
  .alumni {
    background: var(--navy);
    overflow: hidden;
  }
  .alumni-frame {
    position: relative;
    border: 1px solid rgba(77, 208, 231, 0.2);
    overflow: hidden;
    margin-top: 20px;
  }
  .alumni-image {
    width: 100%;
    display: block;
    transition: transform 1.5s cubic-bezier(.2,.8,.2,1);
  }
  .alumni-frame:hover .alumni-image { transform: scale(1.04); }
  .alumni-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6, 18, 39, 0.6) 100%);
    pointer-events: none;
  }
  .alumni-caption {
    position: absolute;
    bottom: 30px;
    left: 36px;
    z-index: 2;
    font-family: 'Anton', sans-serif;
    font-size: clamp(28px, 4vw, 56px);
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .alumni-caption .accent { color: var(--cyan); font-style: italic; }
  .ticker {
    margin-top: 40px;
    overflow: hidden;
    border-top: 1px solid rgba(77, 208, 231, 0.15);
    border-bottom: 1px solid rgba(77, 208, 231, 0.15);
    padding: 20px 0;
    white-space: nowrap;
  }
  .ticker-track {
    display: inline-flex;
    gap: 60px;
    animation: ticker 35s linear infinite;
    padding-left: 60px;
  }
  .ticker-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.5);
  }
  .ticker-track .star { color: var(--cyan); }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ============ EVENT ============ */
  .event {
    background:
      radial-gradient(ellipse at 80% 50%, rgba(77, 208, 231, 0.12), transparent 60%),
      var(--navy-deep);
  }
  .event-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .event-flyer {
    position: relative;
    border: 1px solid rgba(77, 208, 231, 0.3);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  }
  .event-flyer:hover { transform: translateY(-8px) rotate(-1deg); }
  .event-flyer img { width: 100%; display: block; }
  .event-flyer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(77,208,231,0.15));
    pointer-events: none;
    z-index: 2;
  }

  .event-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .event-detail-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: rgba(77, 208, 231, 0.1);
    border: 1px solid rgba(77, 208, 231, 0.3);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
  }
  .event-detail-meta {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 4px;
  }
  .event-detail-value {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 700;
  }

  /* ============ REGISTRATION ============ */
  .register {
    background: var(--navy);
    position: relative;
  }
  .register-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
  }
  .register-side h3 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .register-side p {
    font-family: 'DM Sans', sans-serif;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .register-side .price-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 22px;
    background: rgba(77,208,231,0.08);
    border: 1px solid rgba(77, 208, 231, 0.3);
    margin-top: 12px;
  }
  .register-side .price-pill .num {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: var(--cyan);
  }
  .register-side .price-pill .label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  .form-card {
    background: linear-gradient(180deg, rgba(17,41,90,0.4), rgba(6,18,39,0.4));
    border: 1px solid rgba(77, 208, 231, 0.18);
    padding: 44px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
  .form-row.full { grid-template-columns: 1fr; }
  .form-group { display: flex; flex-direction: column; }
  .form-group label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(6, 18, 39, 0.6);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    padding: 14px 16px;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    background: rgba(6, 18, 39, 0.85);
    box-shadow: 0 0 0 3px rgba(77, 208, 231, 0.12);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%;
    margin-top: 8px;
    padding: 20px;
    background: var(--cyan);
    color: var(--navy-deep);
    border: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
  }
  .form-submit:hover {
    background: var(--cyan-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(77, 208, 231, 0.3);
  }

  /* ============ REQUIRED + FORM STATUS ============ */
  .req {
    color: var(--cyan);
    font-weight: 700;
    margin-left: 2px;
  }
  .form-required-note {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
  }
  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
  }
  .form-status {
    margin-top: 16px;
    padding: 0 14px;
    text-align: center;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    min-height: 0;
    transition: all 0.3s;
  }
  .form-status.success {
    color: var(--cyan-bright);
    background: rgba(77, 208, 231, 0.08);
    border: 1px solid rgba(77, 208, 231, 0.3);
    padding: 14px;
    border-radius: 4px;
  }
  .form-status.error {
    color: #ff8a8a;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 14px;
    border-radius: 4px;
  }

  /* ============ TESTIMONIALS ============ */
  .testimonials {
    background: var(--navy-deep);
    overflow: hidden;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testimonial {
    padding: 40px 32px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(17, 41, 90, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .testimonial:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 208, 231, 0.4);
    background: rgba(17, 41, 90, 0.5);
  }
  .quote-mark {
    font-family: 'Anton', sans-serif;
    font-size: 80px;
    line-height: 0.6;
    color: var(--cyan);
    opacity: 0.5;
  }
  .testimonial-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin: 18px 0 28px;
    font-style: italic;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .testimonial-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--cyan), var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    color: var(--navy-deep);
    font-size: 18px;
  }
  .testimonial-name {
    font-weight: 700;
    font-size: 15px;
  }
  .testimonial-role {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
  }

  /* ============ CONTACT ============ */
  .contact {
    background:
      radial-gradient(ellipse at center top, rgba(77, 208, 231, 0.18), transparent 60%),
      var(--navy);
    text-align: center;
  }
  .contact-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(60px, 9vw, 140px);
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  .contact-title .accent { color: var(--cyan); font-style: italic; }
  .contact-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
  }
  .contact-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .contact-card {
    padding: 28px 36px;
    border: 1px solid rgba(77,208,231,0.25);
    background: rgba(6,18,39,0.4);
    text-decoration: none;
    color: var(--white);
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
    min-width: 240px;
  }
  .contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    background: rgba(77, 208, 231, 0.08);
  }
  .contact-card-meta {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 10px;
  }
  .contact-card-value {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--navy-deep);
    padding: 50px 40px 30px;
    border-top: 1px solid rgba(77, 208, 231, 0.1);
    text-align: center;
  }
  .footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .footer-logo span { color: var(--cyan); }
  .footer-tag {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 30px;
  }
  .footer-admin {
    margin-bottom: 22px;
  }
  .footer-admin a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan);
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(77, 208, 231, 0.06);
    border: 1.5px solid var(--cyan);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  }
  .footer-admin a::before {
    content: '⚿';
    font-size: 14px;
    display: inline-block;
    transform: translateY(-1px);
  }
  .footer-admin a:hover {
    background: var(--cyan);
    color: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 208, 231, 0.3);
  }
  .footer-bottom {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 980px) {
    nav { padding: 16px 20px; }
    nav.scrolled { padding: 12px 20px; }
    .nav-links { display: none; position: fixed; top: 64px; right: 0; left: 0; flex-direction: column; gap: 0; background: rgba(6, 18, 39, 0.98); backdrop-filter: blur(20px); padding: 20px; border-top: 1px solid rgba(77, 208, 231, 0.15); }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .menu-toggle { display: block; font-size: 24px; }

    section { padding: 90px 20px; }

    /* ===== HERO: tighter typography + center everything ===== */
    .hero { min-height: auto; padding-bottom: 60px; }
    .hero-inner { grid-template-columns: 1fr; padding: 110px 20px 30px; gap: 36px; text-align: center; }
    .hero-tag { justify-content: center; letter-spacing: 2px; }
    .hero-tag::before { display: none; }
    .hero-title {
      font-size: clamp(44px, 13vw, 88px);
      line-height: 1.02;
      letter-spacing: -1px;
    }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; }
    .stat-card { flex: 1 1 calc(50% - 12px); padding: 20px; text-align: center; }
    .stat-card::before { display: none; }
    .stat-num { font-size: 44px; }
    .scroll-cue { display: none; }

    /* ===== Center all section labels, titles, and prose ===== */
    .section-label { justify-content: center; }
    .section-title { text-align: center; }

    /* ===== ABOUT ===== */
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-text { text-align: center; }
    .about-text p:first-of-type::first-letter {
      float: none;
      display: inline;
      font-size: inherit;
      margin: 0;
      color: inherit;
      font-family: inherit;
    }
    .coach-card { text-align: center; }
    .coach-quote { font-size: 26px; }
    .coach-sig { justify-content: center; }

    /* ===== TRAINING ===== */
    .training-grid { grid-template-columns: 1fr; }
    .training-card { text-align: center; }
    .training-price { justify-content: center; border-left: none; border-top: 3px solid var(--cyan); }
    .focus-strip { justify-content: center; text-align: center; }

    /* ===== ALUMNI ===== */
    .alumni-caption { font-size: 24px; left: 0; right: 0; bottom: 20px; text-align: center; }

    /* ===== EVENT ===== */
    .event-grid { grid-template-columns: 1fr; gap: 50px; }
    .event-grid > div:last-child { text-align: left; }
    .event-detail { justify-content: flex-start; text-align: left; }
    .event-grid > div:last-child > div[style*="margin-top"] { justify-content: center; }

    /* ===== REGISTER ===== */
    .register-grid { grid-template-columns: 1fr; gap: 50px; }
    .register-side { text-align: center; }
    .form-card { padding: 28px; text-align: left; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit { letter-spacing: 1.5px; }

    /* ===== TESTIMONIALS ===== */
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial { text-align: center; }
    .testimonial-author { justify-content: center; }

    /* ===== CONTACT ===== */
    .contact-methods { flex-direction: column; align-items: center; }
    .contact-card { width: 100%; max-width: 320px; text-align: center; }

    /* ===== IMAGES centered ===== */
    .alumni-frame, .event-flyer { margin-left: auto; margin-right: auto; }
  }

  /* Extra-narrow phones */
  @media (max-width: 420px) {
    .hero-title { font-size: clamp(40px, 12vw, 64px); letter-spacing: -0.5px; }
    .hero-tag { font-size: 11px; letter-spacing: 1.5px; }
    .section-title { font-size: clamp(36px, 9vw, 56px); }
    .btn { padding: 16px 24px; font-size: 12px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { justify-content: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }