/* ============================================================
   マルチスポーツ | Main Stylesheet — Figma Exact Match
   Theme: Dark Industrial / Cyan Glow
   ============================================================ */

:root {
   --primary:#70f2ff;
   --primary-dark:  #009BAA;
   --primary-glow:  rgba(0,200,215,0.25);
   --primary-faint: rgba(0,200,215,0.06);
   --bg-dark:       #0C1520;
   --bg-darker:     #080E18;
   --bg-card:       #213147;
   --bg-mid:        #0F1A28;
   --bg-light:       #FFFFFF;
   --text-white:    #FFFFFF;
   --text-black:    #000000;
   --text-light:    rgba(255,255,255,0.75);
   --text-muted:    rgb(202 205 211); /*rgba(255,255,255,0.4);*/
   --text-dark:     #29313C;
   --text-color-6:     #8C8C8C;
  --text-dim:      rgba(255,255,255,0.18);
  --border:        rgba(0,200,215,0.18);
  --border-subtle: rgba(255,255,255,0.07);
  --shadow-cyan:   0 0 28px rgba(0,200,215,0.22);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.55);
  --font-display:  'Oswald', sans-serif;
  --font-mono:     'Share Tech Mono', monospace;
  --font-heading:  'Rajdhani', sans-serif;
  --font-body:     'Noto Sans JP', sans-serif;
  --font-ttl:       ;
  --navbar-bg:     #29313c;
  --navbar-h:      72px;
  --navbar-inner-h: 52px;
  --section-py:    80px;
  --radius:        4px;
  --radius-lg:     8px;
  --ease:          cubic-bezier(0.4,0,0.2,1);
  --dur:           0.3s; }

/* ── Reset ─────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--font-body);background:var(--bg-light);color:var(--text-white);overflow-x:hidden;-webkit-font-smoothing:antialiased; overflow-x: hidden;}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
img{max-width:100%;height:auto;display:block;}
a{color:inherit;text-decoration:none;transition:color var(--dur) var(--ease);}
::-webkit-scrollbar{width:5px;}
::-webkit-scrollbar-track{background:var(--bg-darker);}
::-webkit-scrollbar-thumb{background:var(--primary);border-radius:2px;}
section { min-height: 1px; }

/* ── Page Loader ─────────────────────────────────────── */
#page-loader{position:fixed;inset:0;z-index:99999;background:var(--bg-darker);display:flex;align-items:center;justify-content:center;transform-origin:center center;will-change:transform,opacity;}
#page-loader.loaded{display:none;}
.loader-inner{text-align:center;}
.loader-logo{display: none; font-family:var(--font-display);font-size:2rem;font-weight:700;color:var(--text-white);letter-spacing:.1em;text-transform:uppercase;margin-bottom:1.5rem;}
.loader-logo span{color:var(--primary);}
.loader-bar{width:200px;height:2px;background:rgba(255,255,255,.07);border-radius:1px;overflow:hidden;margin:0 auto;}
.loader-progress{height:100%;width:0;background:linear-gradient(90deg,var(--primary),#00F5FF);animation:loadP 1.4s var(--ease) forwards;}

.loader-logo-img { margin: 0 auto 1.5rem; display: flex; justify-content: center; }
.loader-logo-img img { height: 40px; width: auto; object-fit: contain; }

@keyframes loadP{to{width:100%;}}

/* ── Navbar ──────────────────────────────────────────── */
#mainNavbar { height: var(--navbar-h);  padding: 0; margin: 0; border-radius: 0; box-shadow: 0 0 0 rgba(0,0,0,0); transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), margin var(--dur) var(--ease), border-radius var(--dur) var(--ease);display:flex; justify-content: center; align-items: center;}
/*background: rgba(8,14,24,.65); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);border-bottom: 1px solid var(--border-subtle);*/
#mainNavbar.scrolled { background: rgba(8,14,24,.65); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);border-bottom: 1px solid var(--border-subtle); border-color: var(--border); box-shadow: 0 4px 24px rgba(0,0,0,.6);}
.container-xl { max-width: 1320px;}
.navbar-content-cus { min-height: var(--navbar-inner-h); display: flex; align-items: center; background-color: var(--navbar-bg); padding: 0 50px; border-radius: 50px; margin: 0 50px; }
/* Brand */
.brand-mark{display:flex;align-items:center;gap:10px;}
.brand-logo{max-width: 120px}
.brand-icon{width:36px;height:36px;background:var(--primary);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;color:var(--bg-darker);font-size:1rem;flex-shrink:0;box-shadow:0 0 16px var(--primary-glow);}
.brand-text{display:flex;flex-direction:column;line-height:1;}
.brand-ja{font-family:var(--font-body);font-size:.95rem;font-weight:700;color:var(--text-white);}
.brand-ja strong{color:var(--primary);}
.brand-en{font-family:var(--font-mono);font-size:.52rem;letter-spacing:.25em;color:var(--text-muted);}

/* Nav links */
.navbar-nav .nav-link{position:relative;padding:.5rem .85rem !important;display:flex;flex-direction:column;align-items:center;gap:1px;}
.nav-en{font-family:var(--font-heading);font-size:.7rem;letter-spacing:.15em;font-weight:600;color:var(--text-muted);line-height:1;transition:color var(--dur) var(--ease); display: none;}
.nav-ja{font-size:.88rem;font-weight:700;color:var(--text-light);line-height:1;transition:color var(--dur) var(--ease);}
.nav-link::after { content: ''; position: absolute; bottom: -1px; left: 15%; width: 70%; height: 1px; background: var(--primary); box-shadow: 0 0 8px var(--primary); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover .nav-en,.nav-link.active .nav-en{color:var(--primary);}
.nav-link:hover .nav-ja,.nav-link.active .nav-ja{color:var(--text-white);}

/* Buttons */
.btn-icon{width:36px;height:36px;border-radius:var(--radius);background:rgba(255,255,255,.05);border:1px solid var(--border-subtle);color:var(--text-muted);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all var(--dur) var(--ease);font-size:.9rem;}
.btn-icon:hover{background:var(--primary);border-color:var(--primary);color:var(--bg-darker);box-shadow:var(--shadow-cyan);}
.btn-primary-sport { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: .48rem 1.2rem; background: var(--primary); color: var(--bg-darker); border: 1px solid var(--primary); border-radius: 50px; font-family: var(--font-heading); font-size: .83rem; font-weight: 700; line-height: normal; letter-spacing: .08em; cursor: pointer; white-space: nowrap; text-transform: uppercase; will-change: transform, box-shadow; box-shadow: 0 2px 8px rgba(0,0,0,.2); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease); }
/*.btn-primary-sport:hover { background: var(--primary); color: var(--text-black); transform: scale(1.05); box-shadow: 0 6px 16px rgba(0,0,0,.35), 0 0 12px var(--primary), 0 0 10px color-mix(in srgb, var(--primary) 50%, transparent); }*/
.btn-primary-sport:active { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,.3), 0 0 8px var(--primary); }
.btn-outline-sport{display:inline-flex;align-items:center;gap:6px;padding:.52rem 1.4rem;background:transparent;color:var(--primary);border:1px solid var(--primary);border-radius:var(--radius);font-family:var(--font-heading);font-size:.88rem;font-weight:600;letter-spacing:.08em;cursor:pointer;transition:all var(--dur) var(--ease);text-transform:uppercase;}
.btn-outline-sport:hover{background:var(--primary);color:var(--bg-darker);box-shadow:var(--shadow-cyan);}

@keyframes borderGlow { 0% { background-position: 200% 50%; } 100% { background-position: 0% 50%; } }

.btn-glow { position: relative; z-index: 0; }

.btn-glow::after { content: ''; position: absolute; inset: -2px; border-radius: inherit; background: linear-gradient(90deg, transparent 0%, transparent 35%, var(--primary) 50%, transparent 65%, transparent 100%); background-size: 200% 100%; z-index: -1; opacity: 0; transition: opacity 0.3s ease; }

.btn-glow:hover::after { opacity: 0.5; animation: borderGlow 2s linear infinite; }

.btn-glow::before { content: ''; position: absolute; inset: 0px; border-radius: inherit; z-index: -1; }

.section-light .btn-glow::before { background: var(--bg-light); }

/* Toggle */
.navbar-toggler{display:flex;flex-direction:column;gap:5px;padding:6px;}
.toggler-line{display:block;width:22px;height:2px;background:var(--text-light);border-radius:1px;transition:all var(--dur) var(--ease);}

/* Search */
#searchToggle{display: none;}
.navbar-search{position:absolute;top:var(--navbar-h);left:0;right:0;background:rgba(8,14,24,.98);backdrop-filter:blur(20px);padding:1.25rem 0;transform:translateY(-8px);opacity:0;pointer-events:none;transition:all var(--dur) var(--ease);border-bottom:1px solid var(--border);}
.navbar-search.open{transform:translateY(0);opacity:1;pointer-events:all;}
.search-form{display:flex;align-items:center;gap:8px;}
.search-input{flex:1;background:var(--primary-faint);border:1px solid var(--border);border-radius:var(--radius);color:var(--text-white);padding:.6rem 1rem;font-family:var(--font-body);font-size:.88rem;outline:none;transition:all var(--dur) var(--ease);}
.search-input::placeholder{color:var(--text-muted);}
.search-input:focus{border-color:var(--primary);box-shadow:0 0 0 2px var(--primary-glow);}
.search-submit,.search-close{height:40px;width:40px;background:var(--primary);border:none;border-radius:var(--radius);color:var(--bg-darker);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background var(--dur) var(--ease);}
.search-close{background:rgba(255,255,255,.06);color:var(--text-muted);}
.search-close:hover{background:rgba(255,255,255,.12);color:var(--text-white);}

/* Offcanvas */
.offcanvas-menu{background:var(--bg-darker)!important;width:min(300px,85vw)!important;border-left:1px solid var(--border)!important;}
.offcanvas-menu .offcanvas-header{padding:1.25rem 1.5rem;border-bottom:1px solid var(--border-subtle);justify-content:space-between;}
.btn-close-menu{background:rgba(255,255,255,.05);border:1px solid var(--border-subtle);border-radius:var(--radius);width:34px;height:34px;color:var(--text-muted);display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:.8rem;transition:all var(--dur) var(--ease);}
.btn-close-menu:hover{background:var(--primary);color:var(--bg-darker);border-color:var(--primary);}
.mobile-nav{display:flex;flex-direction:column;gap:2px;}
.mobile-nav-link{display:flex;align-items:center;gap:12px;padding:.85rem 1rem;border-radius:var(--radius);color:var(--text-light);transition:all var(--dur) var(--ease);animation:slideIn .35s var(--ease) both;animation-delay:calc(var(--i)*.04s + .05s);}
@keyframes slideIn{from{opacity:0;transform:translateX(16px);}to{opacity:1;transform:translateX(0);}}
.mobile-nav-link:hover,.mobile-nav-link.active{background:rgba(0,200,215,.08);color:var(--primary);}
.mobile-nav-icon{font-size:1rem;width:18px;flex-shrink:0;}
.mobile-nav-label{font-size:.9rem;font-weight:500;flex:1;}
.mobile-nav-en{font-family:var(--font-mono);font-size:.6rem;color:var(--text-muted);}
.mobile-nav-arrow{font-size:.65rem;color:var(--text-dim);}
.mobile-nav-footer{padding:1.5rem 0;border-top:1px solid var(--border-subtle);}
.mobile-socials{display:flex;gap:8px;}

/* Social icons */
.social-icon{width:34px;height:34px;border-radius:var(--radius);background:rgba(255,255,255,.05);border:1px solid var(--border-subtle);display:flex;align-items:center;justify-content:center;color:var(--text-muted);font-size:.8rem;transition:all var(--dur) var(--ease);}
.social-icon:hover{background:var(--primary);border-color:var(--primary);color:var(--bg-darker);box-shadow:var(--shadow-cyan);}

/* ── Main content ─────────────────────────────────────── */
.main-content{padding-top:var(--navbar-h);min-height:60vh; margin-top: -24px;}

/* Section utilities */
.section{padding:var(--section-py) 0;}
.section-sm{padding:calc(var(--section-py)*.6) 0;}
.section-light{background:var(--bg-light);}
.section-dark{background:var(--bg-dark);}
.section-darker{background:var(--bg-darker);}
.section-mid{background:var(--bg-mid);}
.section-eyebrow { display: block; }


.section-title { position: relative; font-family: var(--font-body); font-size: clamp(1.3rem, 2.6vw, 2.5rem); font-weight: 900; letter-spacing: .04em; color: var(--text-dark); text-transform: none; line-height: 1.2; z-index: 1; }

.section-title::before {
  font-family: "Inter", sans-serif;
  content: attr(data-watermark);
  position: absolute;
  top: -10%; left: 50%;
  transform: translate(-50%, -50%) translateY(var(--wm-y, -20px)) scale(var(--wm-scale, 1.4)) skewX(var(--wm-skew, 8deg));
  font-size: clamp(2.5rem, 9vw, 6.5rem);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(30,40,55,0.13);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  line-height: 1;
  opacity: var(--wm-opacity, 0);
  filter: blur(var(--wm-blur, 20px));
  transition: none;
}


.section-subtitle {font-family: "Noto Sans JP", sans-serif; font-size: 15px; color: var(--text-black); max-width: 860px; line-height: 1.5; margin-top: .75rem;font-weight:600; }

.section-title-dark-bg { position: relative; font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 2.5rem); font-weight: 900; letter-spacing: .04em; color: var(--text-white); text-transform: none; line-height: 1.2; z-index: 1; }

.section-title-dark-bg::before {
  font-family: "Inter", sans-serif;
  content: attr(data-watermark);
  position: absolute;
  top: -10%; left: 50%;
  transform: translate(-50%, -50%) translateY(var(--wm-y, -20px)) scale(var(--wm-scale, 1.4)) skewX(var(--wm-skew, 8deg));
  font-size: clamp(2.5rem, 9vw, 6.5rem);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-color-6);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  line-height: 1;
  opacity: var(--wm-opacity, 0);
  filter: blur(var(--wm-blur, 20px));
  transition: none;
}
.section-subtitle-dark-bg {font-family: "Noto Sans JP", sans-serif; font-size: .88rem; color: var(--text-white); max-width: 560px; line-height: 1.9; margin-top: .75rem;font-weight:600; }

@media (max-width: 576px) { 
  .section-title::before{top: 15%; left: 50%;}
  .section-title-dark-bg::before{top: 15%; left: 50%;}
}
/* ════════════════════════════
   HERO
════════════════════════════ */
.hero{position:relative;min-height:100svh;display:flex;align-items:flex-end;overflow:hidden;margin-top:calc(-1 * var(--navbar-h));padding-top:0;border-radius: 0 0 50px 50px;}
.hero-bg-img{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(8,14,24,.35) 0%,rgba(8,14,24,.15) 35%,rgba(8,14,24,.7) 80%,var(--bg-dark) 100%),url('../images/boling.webp') center/cover no-repeat;transform:scale(1.04);animation:heroZ 14s ease-in-out infinite alternate;}
@keyframes heroZ{from{transform:scale(1);}to{transform:scale(1.06);}}
.hero-bg-img::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,14,24,.8) 0%,transparent 30%,transparent 70%,rgba(8,14,24,.8) 100%);}
.hero-scan{position:absolute;inset:0;pointer-events:none;z-index:1;background:repeating-linear-gradient(0deg,transparent,transparent 3px,rgba(0,200,215,.012) 3px,rgba(0,200,215,.012) 4px);}
.hero-beam{position:absolute;left:-10%;right:-10%;height:1px;background:linear-gradient(90deg,transparent,var(--primary),transparent);box-shadow:0 0 20px var(--primary),0 0 60px var(--primary-glow);animation:beamS 7s linear infinite;z-index:2;opacity:.4;}
@keyframes beamS{from{top:-5%;}to{top:105%;}}
.hero-content{position:relative;z-index:3;padding:calc(var(--navbar-h) + 1rem) 0 5rem;width:100%;}
.hero-tag{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-mono);font-size:.7rem;letter-spacing:.2em;color:var(--primary);border:1px solid rgba(0,200,215,.3);border-radius:2px;padding:.3rem .9rem;margin-bottom:1.25rem;animation:fuUp .7s var(--ease) .3s both;}
.hero-tag-dot{width:5px;height:5px;border-radius:50%;background:var(--primary);box-shadow:0 0 8px var(--primary);animation:pulse 1.8s infinite;}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.4;transform:scale(1.5);}}
.hero-title{font-family:var(--font-body);font-size:clamp(2.5rem,64px,4.5rem);font-weight:800;line-height:1.1;letter-spacing:.02em;text-transform:uppercase;color:var(--text-white);margin-bottom:1.25rem;animation:fuUp .7s var(--ease) .4s both;}
.hero-title .accent{color:var(--primary);text-shadow:0 0 40px var(--primary-glow);}
.hero-title-2{font-family:var(--font-body);font-size:clamp(2rem,48px,3.5rem);font-weight:800;line-height:.92;letter-spacing:.02em;text-transform:uppercase;color:var(--text-white);margin-bottom:1.25rem;animation:fuUp .7s var(--ease) .4s both;}
.hero-title-2 .accent{color:var(--primary);text-shadow:0 0 40px var(--primary-glow);}
.hero-title .ja-sub{font-family:var(--font-body);font-size:.3em;font-weight:300;letter-spacing:.06em;color:var(--text-muted);display:block;margin-top:.6rem;text-transform:none;}
.hero-desc{font-size:17px;color:var(--text-white);max-width:900px;line-height:1.6;margin-bottom:2rem;animation:fuUp .7s var(--ease) .5s both;}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;animation:fuUp .7s var(--ease) .6s both;}
.btn-hero{display:inline-flex;align-items:center;gap:8px;padding:.8rem 2rem;font-family:var(--font-heading);font-size:.95rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;border:none;cursor:pointer;transition:all var(--dur) var(--ease);border-radius:var(--radius);}
.btn-hero-primary{background:var(--primary);color:var(--bg-darker);border:1px solid var(--primary);}
.btn-hero-primary:hover{background:transparent;color:var(--primary);box-shadow:0 0 30px var(--primary-glow);}
.btn-hero-outline { display:inline-flex; align-items:center;justify-content: space-between; width: 300px; height: 60px; gap:10px; padding:0.65rem 0.75rem 0.65rem 1.5rem; background:rgb(255 255 255 / 10%); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); color:var(--primary); border:1.5px solid var(--primary); border-radius:50px; font-family:var(--font-body); font-size:24px; font-weight:700; letter-spacing:0.04em; cursor:pointer; transition:all 0.3s ease; text-decoration:none; }
.btn-hero-outline .btn-arrow { display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px;color: #5a5e61; border-radius:50%; background:var(--primary); border:1px solid var(--primary); transition:transform 0.3s ease, background 0.3s ease; flex-shrink:0; }
.btn-hero-outline:hover { border-color:var(--primary); background:rgb(255 255 255 / 30%); transform:scale(1.1); box-shadow:0 0 20px rgba(112,242,255,0.4), 0 0 40px rgba(112,242,255,0.15); }
.btn-hero-outline:hover .btn-arrow { transform:translateX(4px);}
.hero-scroll { position:absolute; bottom:2rem; left:0; right:0; margin:0 auto; display:flex; flex-direction:column; align-items:center; gap:6px; z-index:3; animation:fuUp 1s var(--ease) 1s both; width:fit-content; }
.hero-scroll-text{font-family:var(--font-mono);font-size:.57rem;letter-spacing:.3em;color:var(--text-muted);}
.hero-scroll-line{width:1px;height:48px;background:linear-gradient(to bottom,var(--primary),transparent);animation:scLine 1.8s ease-in-out infinite;}
@keyframes scLine{0%,100%{opacity:1;transform:scaleY(1);}50%{opacity:.3;transform:scaleY(.6);}}
@keyframes fuUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}

@media (max-width: 576px) { 
  .hero-scroll { bottom:0; } 
}
/* ════════════════════════════
   ABOUT
════════════════════════════ */
.about-card { background: var(--bg-card); border: 1px solid var(--primary); border-radius: var(--radius-lg); padding: 1.75rem; padding-top: 0; height: 100%; position: relative; overflow: visible; transition: all var(--dur) var(--ease); }

.about-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0; transition: opacity var(--dur) var(--ease); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

.about-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: var(--shadow-cyan); }

.about-card:hover::before { opacity: 1; }
.about-card-img { width: 100%; aspect-ratio: 1/1; object-fit: contain; border-radius: var(--radius); margin-top: -9rem; position: relative; z-index: 1; will-change: transform; transform-origin: center bottom; transition: transform 0.45s var(--ease), filter var(--dur) var(--ease); filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)) drop-shadow(0 8px 10px rgba(0,0,0,0.3)); }

.about-card-img-wrap {position: relative;display: flex;justify-content: center;}
.about-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.45) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
}
/*.about-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius); margin-top: -4rem; margin-bottom: 1.25rem; padding: 25px; position: relative; z-index: 1; will-change: transform; transform-origin: center bottom; transition: transform 0.45s var(--ease), filter var(--dur) var(--ease); filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4)); }
.about-card:hover .about-card-img { transform: perspective(600px) translateY(-5px) scale(1.05); filter: brightness(1.1) saturate(1.08) drop-shadow(0 20px 32px rgba(0,0,0,0.55)); }*/
.about-card-tag{font-family:var(--font-mono);font-size:.62rem;letter-spacing:.2em;color:var(--primary);margin-bottom:.45rem;}
.about-card-title{font-family:var(--font-heading);font-size:1.2rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;margin-bottom:.5rem;text-align: center;}
.about-card-text{font-size:.8rem;color:var(--text-muted);line-height:1.75;text-align: center;font-weight: 600;}

@media (max-width: 1024px) { 
  .about-card-img{margin-top: -5rem;}

}
@media (max-width: 576px) { 
  .about-card-img{padding: 25px; margin-top: -2rem;}

}


/* ════════════════════════════
   FEATURED SPORT
════════════════════════════ */
/* ── Featured Sport — Video Background ───────────────────── */
.featured-sport { position: relative; min-height: 90svh; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* Layer 1 — Video container (thay .featured-bg) */
.featured-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.featured-video-wrap iframe { position: absolute; top: 50%; left: 50%; /* Scale to cover — Vimeo aspect ratio 16:9 */
  width: 100vw; height: 56.25vw;   /* 100 / 16 * 9 */
  min-height: 100%; min-width: 177.78vh; /* 100 / 9 * 16 */
  transform: translate(-50%, -50%); pointer-events: none; /* chặn user interact với iframe */
  border: 0; /* GSAP target: scale, opacity */
  will-change: transform; }

/* Layer 2 — Overlay giữ nguyên */
.featured-overlay { position: absolute; inset: 0; z-index: 1; background:
    radial-gradient(ellipse at 50% 50%, rgba(0,200,215,.06) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(8,14,24,.6), rgba(8,14,24,.15) 50%, rgba(8,14,24,.6)); /* GSAP target: opacity */ }

/* Layer 3 — Scan lines giữ nguyên */
.featured-scan { position: absolute; inset: 0; z-index: 2; background: repeating-linear-gradient(
    0deg,
    transparent, transparent 3px,
    rgba(0,200,215,.015) 3px, rgba(0,200,215,.015) 4px
  ); pointer-events: none; }

/* Layer 4 — Content */
.featured-content { position: relative; z-index: 3; text-align: center; padding: 4rem 1rem; /* GSAP target: y, opacity */ }

/* Giữ nguyên các class con */
.featured-emblem { width: 180px; height: 180px; margin: 0 auto 1.5rem; filter: drop-shadow(0 0 40px rgba(0,200,215,.35)); animation: floatY 3.5s ease-in-out infinite; /* GSAP sẽ override animation khi cần */ }

.featured-label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .3em; color: var(--primary); margin-bottom: .5rem; }

.featured-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-white); margin-bottom: 1rem; }

.featured-desc { color: var(--text-muted); max-width: 460px; margin: 0 auto 2rem; font-size: .88rem; line-height: 1.75; }

@keyframes floatY { 0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); } }

/* ════════════════════════════
   SPORT CARDS GRID
════════════════════════════ */

.sport-card { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; background: var(--bg-card); border: 1px solid var(--border-subtle); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); display: flex; flex-direction: column; text-decoration: none; }

.sport-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow:
    0 0 0 1px var(--primary),
    0 0 30px rgba(0,200,215,.2),
    0 16px 40px rgb(234 249 252); }

/* ── Image area ─────────────────────── */
.sport-card-img-wrap { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; }

.sport-card-img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.92) saturate(.9); transition: transform 0.55s var(--ease), filter 0.55s var(--ease); }

.sport-card:hover .sport-card-img { transform: scale(1.06); filter: brightness(1.05) saturate(1.15); }

/* Corner decoration — game HUD style */
.sport-card-img-wrap::before,
.sport-card-img-wrap::after { content: ''; position: absolute; width: 14px; height: 14px; z-index: 2; transition: width 0.3s var(--ease), height 0.3s var(--ease); }

.sport-card-img-wrap::before { top: 8px; left: 8px; border-top: 2px solid var(--primary); border-left: 2px solid var(--primary); opacity: 0; }

.sport-card-img-wrap::after { bottom: 8px; right: 8px; border-bottom: 2px solid var(--primary); border-right: 2px solid var(--primary); opacity: 0; }

.sport-card:hover .sport-card-img-wrap::before,
.sport-card:hover .sport-card-img-wrap::after { opacity: 1; width: 20px; height: 20px; }

/* Scan line overlay trên image */
.sport-card-img-wrap .sport-card-scan { position: absolute; inset: 0; z-index: 1; background: repeating-linear-gradient(
    0deg,
    transparent, transparent 3px,
    rgba(0,0,0,.06) 3px, rgba(0,0,0,.06) 4px
  ); pointer-events: none; opacity: 0; transition: opacity 0.3s; }

.sport-card:hover .sport-card-scan { opacity: 1; }

@media (max-width: 1024px) {
  .sport-card-img-wrap::after {
    /* Bỏ corner decoration, thay bằng play button */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1.5px solid var(--primary);
    backdrop-filter: blur(4px);
    bottom: 10px;
    right: 10px;
    opacity: 1;
    /* Icon play bằng border trick */
    content: '';
    /* Dùng background-image cho icon play */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2370f2ff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    background-color: rgba(255,255,255,0.1);
  }

  .sport-card-img-wrap::before { display: none; }

}
.sport-card-gradient {
  display: none;
}

@media (max-width: 1024px) {
  .sport-card-gradient {
    display: block;
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    will-change: unset;
    transform: none !important;
  }
}

/* Dot indicator trên đầu card (như ảnh) */
.sport-card::before { content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); z-index: 3; opacity: 0; transition: opacity 0.3s; }

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

/* ── Text area (bottom) ─────────────── */
.sport-card-body { padding: 1.1rem 1.25rem 1.3rem; background: #ffffff; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; position: relative; }

/* Glow line top của body khi hover */
.sport-card-body::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0; transition: opacity 0.3s; }

.sport-card:hover .sport-card-body::before { opacity: 1; }

.sport-card-tag { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .18em; color: var(--primary); text-transform: uppercase; display: none; /* ẩn tag, chỉ dùng title+desc như ảnh */ }

.sport-card-title { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: #111; letter-spacing: .02em; line-height: 1.2; margin: 0; }

.sport-card-desc { font-family: var(--font-body); font-size: .78rem; color: #555; line-height: 1.7; margin: 0; }

/* Arrow action button */
.sport-card-action { position: absolute; top: 1rem; right: 1rem; width: 28px; height: 28px; background: rgba(0,200,215,.12); border: 1px solid rgba(0,200,215,.3); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: .75rem; opacity: 0; transform: scale(.7) rotate(-45deg); transition: all 0.3s var(--ease); }

.sport-card:hover .sport-card-action { opacity: 1; transform: scale(1) rotate(0deg); }

/* Grid — 4 cột như ảnh trên desktop */
.sports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

@media (max-width: 1024px) { .sports-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 576px) { .sports-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; } }


.sport-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

@media (max-width: 1024px) { .sport-mini-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 576px) { .sport-mini-grid { grid-template-columns: 1fr; } }

.sport-cursor { position:fixed; width:90px; height:90px; border-radius:50%; border:1.5px solid var(--primary); background:color-mix(in srgb, var(--bg-card) 80%, transparent);; display:flex; align-items:center; justify-content:center; pointer-events:none; z-index:99998; left:-200px; top:-200px; transform:translate(-50%,-50%) scale(0); opacity:0; font-size:0.65rem; font-weight:600; letter-spacing:0.08em; color:var(--primary); white-space:nowrap; text-replace: none;}
.video-modal { position:fixed; inset:0; background:rgb(4 8 16 / 36%); z-index:99999; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; backdrop-filter:blur(12px) saturate(1.2); -webkit-backdrop-filter:blur(12px) saturate(1.2); }
.video-modal-inner { position:relative; width:min(900px,92vw); aspect-ratio:16/9; background:#000; border-radius:16px; overflow:visible; box-shadow:0 0 0 1px rgba(112,242,255,0.2), 0 0 60px rgba(112,242,255,0.08), 0 40px 100px rgba(0,0,0,0.9); }
/* Cyan glow line trên viền */
.video-modal-inner::before { content:''; position:absolute; inset:-1px; border-radius:17px; background:linear-gradient(135deg, rgba(112,242,255,0.4) 0%, transparent 40%, transparent 60%, rgba(112,242,255,0.2) 100%); z-index:-1; pointer-events:none; }
/* Scan lines nhẹ bên trong */
.video-modal-inner::after { content:''; position:absolute; inset:0; border-radius:16px; background:repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,200,215,0.012) 3px, rgba(0,200,215,0.012) 4px); pointer-events:none; z-index:2; }
.video-modal-close { position:absolute; top:-52px; right:0; background:rgba(255,255,255,0.05); border:1px solid rgba(112,242,255,0.25); border-radius:50%; width:38px; height:38px; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.6); font-size:0.9rem; cursor:pointer; transition:all 0.25s ease; }
.video-modal-close:hover { background:rgba(112,242,255,0.12); border-color:var(--primary); color:var(--primary); box-shadow:0 0 12px rgba(112,242,255,0.3); transform:rotate(90deg); }
.video-modal-frame { width:100%; height:100%; border-radius:16px; overflow:hidden; position:relative; z-index:1; }
.video-modal-frame iframe { width:100%; height:100%; display:block; border:0; }

/* ════════════════════════════
   CINEMATIC SECTION — MP4 Video
════════════════════════════ */
.cinematic-section { position: relative; height: 90svh; overflow: hidden; }

/* Layer 1 — Video */
.cinematic-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.cinematic-video-wrap video { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw;    /* 16:9 */
  min-height: 100%; min-width: 177.78vh; transform: translate(-50%, -50%); object-fit: cover; pointer-events: none; will-change: transform; /* GSAP parallax target */ }

.cinematic-video-wrap iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw;    /* 16:9 */
  min-height: 100%; min-width: 177.78vh; transform: translate(-50%, -50%); object-fit: cover; pointer-events: none; will-change: transform; /* GSAP parallax target */ }

.video-poster { position:absolute; inset:0; background-size:cover; background-position:center; z-index:1; transition:opacity 0.8s ease; }

/* Layer 2 — Overlay */
.cinematic-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(
    90deg,
    rgba(8,14,24,.9) 0%,
    rgba(8,14,24,.35) 50%,
    rgba(8,14,24,.9) 100%
  ); /* GSAP target: opacity */ }

/* Layer 3 — Scan lines */
.cinematic-section::after { content: ''; position: absolute; inset: 0; z-index: 2; background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,0,0,.07) 2px, rgba(0,0,0,.07) 4px
  ); pointer-events: none; }

/* Layer 4 — Text content */
.cinematic-text { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; /* GSAP target: y, opacity trên children */ }

.cinematic-quote { font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 4.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; line-height: 1.05; color: var(--text-white); max-width: 900px; }

.cinematic-quote .c-accent { color: var(--primary); text-shadow: 0 0 40px var(--primary-glow); }


/* ════════════════════════════════════════════════════
   SECTION POINT
════════════════════════════════════════════════════ */
.section-point { background: var(--bg-darker); padding: 80px 0 60px; position: relative; overflow: hidden; }

/* Subtle grid bg */
.section-point::before { content: ''; position: absolute; inset: 0; background-image:
    linear-gradient(rgba(0,200,215,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,215,.025) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }

/* Title block */
.point-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }

.point-header-eyebrow { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .3em; color: var(--primary); text-transform: uppercase; margin-bottom: .5rem; }

/* POINT big title — như ảnh */
.point-header-title { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-white); line-height: 1; position: relative; display: inline-block; /* GSAP target: chars split */ }

/* 特長 badge bên dưới chữ POINT */
.point-header-sub { display: inline-block; background: var(--primary); color: var(--bg-darker); font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .12em; padding: 3px 16px; border-radius: 20px; margin-top: .5rem; /* GSAP target: scale, opacity */ }

/* ── Point list ──────────────────────── */
.point-list { display: flex; flex-direction: column; gap: 16px; max-width: 680px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* Item */
.point-item-v2 { position: relative; overflow: hidden; display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,.03); border: 1px solid var(--primary-glow); border-radius: 50px; padding: 16px 24px 16px 16px; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); cursor: default; }

/* Wipe background qua pseudo */
.point-item-v2::before { content: ''; position: absolute; inset: 0; background: rgba(0,200,215,.06); border-radius: inherit; transform: translateY(-100%); transition: transform 0.55s ease; pointer-events: none; z-index: 0; }

/* Đảm bảo content nằm trên pseudo */
.point-item-v2 > * { position: relative; z-index: 1; }

/* Hover */
.point-item-v2:hover::before { transform: translateY(0%); }
.point-item-v2:hover { border-color: var(--primary); box-shadow: 0 0 20px rgba(0,200,215,.1); }
.point-item-v2:hover .point-num-v2 { background: rgba(0,200,215,.1); box-shadow: 0 0 28px rgba(0,200,215,.4), inset 0 0 20px rgba(0,200,215,.1); color: var(--primary); }

/* Auto active 
.point-item-v2.is-auto-active::before { transform: translateY(0%); }
.point-item-v2.is-auto-active { border-color: var(--primary); box-shadow: 0 0 20px rgba(0,200,215,.1); }
.point-item-v2.is-auto-active .point-num-v2 { background: rgba(0,200,215,.1); box-shadow: 0 0 28px rgba(0,200,215,.4), inset 0 0 20px rgba(0,200,215,.1); color: var(--primary); }
*/
/* Number badge */
.point-num-v2 { text-align: center; flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text-white); box-shadow: 0 0 16px rgba(0,200,215,.2), inset 0 0 16px rgba(0,200,215,.05); transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease); }

/* Text */
.point-item-body { position: relative; padding-left: 12px; }
.point-item-body::before { content: ''; position: absolute; left: 0; top: 10%; height: 80%; width: 1px; background: linear-gradient(to bottom,transparent,var(--primary) 25%,var(--primary) 75%,transparent); border-radius: 999px; }
.point-item-title-v2 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; letter-spacing: .06em; color: var(--primary); margin-bottom: 4px; }
.point-item-desc-v2 { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 576px) {
  .point-item-title-v2{font-size: 1rem; }
  .point-item-desc-v2{font-size: .7rem; }
}
/* ════════════════════════════════════
   SECTION SIMULATOR
════════════════════════════════════ */
.section-simulator { background: var(--bg-darker); padding: 40px 0 60px; position: relative; overflow: hidden; }

/* ── Background images — sóng + glow ── */
/* dc1bg / dc2bg = glow blob, dc1 / dc2 = sóng lines */
.sim-bg-wrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.sim-bg-glow-left  { position: absolute; top: 0; left: 0; width: clamp(280px, 50%, 700px); height: auto; z-index: 0; pointer-events: none; opacity: 0.55; mix-blend-mode: screen; transform: translate(-15%, -10%); }
.sim-bg-wave-left  { position: absolute; top: -20%; left: 0; width: clamp(300px, 60%, 850px); height: auto; z-index: 0; pointer-events: none; opacity: 0.6;  mix-blend-mode: screen; transform: translate(-20%, 50%); }
.sim-bg-glow-right { position: absolute; bottom: 0; right: 0; width: clamp(280px, 50%, 700px); height: auto; z-index: 0; pointer-events: none; opacity: 0.45; mix-blend-mode: screen; transform: translate(15%, 10%) scaleX(-1); }
.sim-bg-wave-right { position: absolute; bottom: -18%; right: 5%; width: clamp(300px, 60%, 900px); height: auto; z-index: 0; pointer-events: none; opacity: 0.55; mix-blend-mode: screen; transform: translate(12%, 20%); }

@media (max-width: 1024px) {
   .sim-bg-wave-left{top: 0;}
   .sim-bg-wave-right{top: 25%;}
}
@media (max-width: 576px) {
   .sim-bg-wave-left{top: 0; left: -45%}
   .sim-bg-wave-right{top: 15%;}
}
/* ── Inner ─────────────────────────── */
.simulator-inner { position: relative; z-index: 1;           /* nổi lên trên bg images */
  max-width: 860px; margin: 0 auto; padding: 0 20px; }

.simulator-img-wrap { position: relative; z-index: 2; }

.simulator-img-wrap img { width: 100%; height: auto; filter: drop-shadow(0 20px 60px rgba(0,0,0,.6)); }

.simulator-arrows { position: absolute; inset: 0; pointer-events: none; z-index: 3; }

/* ── Arrow CSS ─────────────────────── */
.sim-arrow { position: absolute; display: flex; align-items: center; }

.sim-arrow__line { flex: 1; height: 4px; background: linear-gradient(90deg, var(--primary), rgba(0,200,215,.4)); transform-origin: left center; }

.sim-arrow--v { flex-direction: column; }
.sim-arrow--v .sim-arrow__line { width: 1.5px; height: auto; background: linear-gradient(180deg, var(--primary), rgba(0,200,215,.4)); transform-origin: top center; }

.sim-arrow__head { width: 0; height: 0; flex-shrink: 0; }
.sim-arrow__head--left  { border-top:5px solid transparent; border-bottom:5px solid transparent; border-right:8px solid var(--primary); }
.sim-arrow__head--right { border-top:5px solid transparent; border-bottom:5px solid transparent; border-left:8px solid var(--primary); }
.sim-arrow__head--up    { border-left:5px solid transparent; border-right:5px solid transparent; border-bottom:8px solid var(--primary); }
.sim-arrow__head--down  { border-left:5px solid transparent; border-right:5px solid transparent; border-top:8px solid var(--primary); }

/* ── Dot connector ─────────────────── */
.sim-dot-connector { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px var(--primary), 0 0 20px rgba(0,200,215,.4); transform: translate(-50%, -50%); z-index: 4; cursor: pointer; pointer-events: all; transition: transform 0.2s, box-shadow 0.2s; }
.sim-dot-connector:hover { transform: translate(-50%, -50%) scale(1.8); box-shadow: 0 0 16px var(--primary), 0 0 30px rgba(0,200,215,.6); }

/* Dot positions */
.sim-dot--width-left  { top: 2%;     left: 38%; }
.sim-dot--projector   { top: 2%;     left: 65%; }
.sim-dot--height-top  { top: 18%;    left: 70%; }
.sim-dot--note        { bottom: 55%; right: 16%; transform: translate(50%, 50%); }
.sim-dot--note:hover  { transform: translate(50%, 50%) scale(1.8); box-shadow: 0 0 16px var(--primary), 0 0 30px rgba(0,200,215,.6); }

/* ── Arrow positions ───────────────── */
.sim-arrow--width  { top: 10%; left: 4%;  width: 44%; }
.sim-arrow--height { top: 48%; left: 45%; width: 45%; rotate: 90deg; }

/* ── Label ─────────────────────────── */
.sim-label { position: absolute; display: inline-flex; align-items: flex-start; gap: 6px; background: rgba(8,14,24,.88); border: 2px solid var(--primary); border-radius: 25px; padding: 5px 14px; font-family: var(--font-body); font-size: 1.1rem; color: var(--text-white); white-space: normal; max-width: 200px; word-break: break-word; overflow-wrap: break-word; line-height: 1.55; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transform: translateY(-50%); pointer-events: none; }

/* Label positions — dùng top/left giống dot tương ứng */
.sim-label--width-left  { top: 2%;  left: calc(15% + 14px); }
.sim-label--projector   { top: 2%;  right: calc(12% + 14px); transform: translateY(-50%); }
.sim-label--height-top  { top: 17%; left: calc(71% + 14px); }
/* Note — dùng bottom/right nên transform khác */
.sim-label--note { bottom: 50%; right: calc(-24% + 14px); transform: translateY(50%); border-radius: 8px; font-size: 1.1rem; color: var(--text-muted); padding: 8px 12px; max-width: 300px; line-height: 1.6; }

/* ── RESPONSIVE ────────────────────── */
@media (max-width: 1024px) {
  .sim-dot--width-left  { top: 3%;     left: 32%; }
  .sim-dot--projector   { top: 3%;     left: 67%; }
  .sim-dot--height-top  { top: 15%;    left: 72%; }
  .sim-dot--note        { bottom: 55%; right: 15%; }
  .sim-arrow--width     { top: 9%;  left: 3%;  width: 46%; }
  .sim-arrow--height    { top: 46%; left: 46%; width: 43%; }

  .sim-label { font-size: 1rem; padding: 3px 10px; }
  .sim-label--width-left  { top: 0;  left: calc(12% + 12px); }
  .sim-label--projector   { top: 0;  right: calc(13% + 12px); }
  .sim-label--height-top  { top: 12%; left: calc(73% + 12px); }
  .sim-label--note        { bottom: 60%; right: calc(0% + 12px); max-width: 246px;}
}

@media (max-width: 768px) {
  .section-point, .section-simulator, .section-plan { padding: 50px 0 40px; }
  .sim-label { font-size: .68rem; padding: 3px 10px; }
  .sim-label--note, .sim-dot--note { display: none; }

  .sim-dot--width-left  { top: 0%;  left: 18%; }
  .sim-dot--projector   { top: 4%;  left: 68%; }
  .sim-dot--height-top  { top: 20%; left: 75%; }
  .sim-arrow--width     { top: 8%;  left: 2%;  width: 48%; }
  .sim-arrow--height    { top: 44%; left: 47%; width: 40%; }

  .sim-label--width-left  { left:  calc(20%  + 10px); top: -5%;}
  .sim-label--projector   { right: calc(0% + 10px); top: -2%;}
  .sim-label--height-top  { left:  calc(68% + 10px); top: 30%;}
}
/* ════════════════════════════════════════════════════
   SECTION PLAN
════════════════════════════════════════════════════ */
.section-plan { background: var(--bg-darker); padding: 60px 0 80px; position: relative; }

.section-plan::before { content: ''; position: absolute; inset: 0; background-image:
    linear-gradient(rgba(0,200,215,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,215,.02) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }

.plan-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* Header row */
.plan-header-row { display: flex; justify-content: center; align-items: center; gap: 32px; margin-bottom: 48px; }

/* Product image left */
.plan-product-img { flex-shrink: 0; width: 260px; }

.plan-product-img img { transform: scale(1.6); width: 100%; filter: brightness(1.6) drop-shadow(0 8px 2px rgba(0,0,0,.5)) drop-shadow(0 0 15px var(--primary-dark)) drop-shadow(0 0 1px rgba(0,200,215,.15)); }

/* Title + desc right */


.plan-header-label {display: flex;flex-direction: column; font-family: var(--font-body); font-size: clamp(1.6rem, 48px, 3.1rem);font-weight: 300; color: var(--text-white); margin-bottom: .75rem;overflow: hidden; /* GSAP: chars split */ }

.plan-header-label span { display: block; font-size: clamp(1.6rem, 50px, 3.2rem); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; line-height: 1.05; color: var(--primary);}

.plan-header-desc { font-size: clamp(.88rem, 1rem, 2rem); color: var(--text-white); line-height: 1.75; max-width: 800px; }

/* ── Plan cards grid ─────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

@media (max-width: 640px) {
  .plan-header-text {text-align: center;}
  .plan-grid { grid-template-columns: 1fr; }
  .plan-header-row { flex-direction: column; }
  .plan-product-img { width: 220px; }
}

/* Plan card */
.plan-card-v2 { background: var(--bg-light); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 15px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease); position: relative; overflow: hidden; /* GSAP: y 40→0, opacity */ }

.plan-card-v2:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: 0 0 30px rgba(0,200,215,.15), 0 16px 40px rgba(0,0,0,.4); }

/* Top glow line on hover */
.plan-card-v2::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0; transition: opacity var(--dur); }
.plan-card-v2:hover::before { opacity: 1; }

/* Card product image */
/*filter: drop-shadow(0 4px 16px var(--primary-glow)); */
.plan-card-img { width: 280px; height: 200px; object-fit: contain; transition: transform 0.4s var(--ease); /* GSAP: scale on hover (magnetic) */ }

.plan-card-v2:hover .plan-card-img { transform: scale(1.05) translateY(-4px); }

/* Card name */
.plan-card-name { font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; color: var(--text-black); letter-spacing: .04em; padding-bottom: 1em;}

/* Separator */
.plan-card-sep { width: 40px; height: 1px; background: var(--border); }

/* Price */
.plan-card-price { font-family: var(--font-body); font-size: clamp(1.6rem, 40px, 2.8rem); font-weight: 800; color: var(--text-dark); letter-spacing: .05em; /* GSAP: countup animation */ }

/* Sub text under price */
.plan-card-sub { font-family: var(--font-mono); font-size: 14px; letter-spacing: .15em; color: var(--text-black); }

/* CTA button */
.plan-card-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: .55rem 1.6rem; background: var(--primary); color: var(--bg-darker); border-radius: 5px; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease); margin-top: 4px; width: 50%; /* GSAP: magnetic hover */ }

.plan-card-btn:hover { transform: scale(1.04); box-shadow: 0 0 20px rgba(0,200,215,.5), 0 4px 12px rgba(0,0,0,.3); }

@media (max-width: 1024px) {
  .plan-card-v2{padding: 15px 0;}
}

/* ════════════════════════════
   POINT SECTION
════════════════════════════ */
.point-section{background:var(--bg-darker);position:relative;overflow:hidden;}
.point-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 25% 50%,rgba(0,200,215,.06) 0%,transparent 55%),radial-gradient(ellipse at 80% 20%,rgba(0,200,215,.04) 0%,transparent 45%);pointer-events:none;}
.point-grid-bg{position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(0,200,215,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(0,200,215,.025) 1px,transparent 1px);background-size:50px 50px;}
.point-item{display:flex;align-items:flex-start;gap:1rem;background:rgba(0,200,215,.035);border:1px solid var(--border);border-radius:var(--radius);padding:1rem 1.25rem;margin-bottom:.65rem;transition:all var(--dur) var(--ease);position:relative;z-index:1;}
.point-item:hover{background:rgba(0,200,215,.07);border-color:rgba(0,200,215,.3);}
.point-num{font-family:var(--font-mono);font-size:.63rem;letter-spacing:.1em;color:var(--primary);min-width:22px;padding-top:2px;}
.point-title{font-family:var(--font-heading);font-size:.93rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;margin-bottom:3px;}
.point-text{font-size:.77rem;color:var(--text-muted);line-height:1.6;}

/* Plan cards */
.plan-card{background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-lg);padding:1.5rem;text-align:center;transition:all var(--dur) var(--ease);position:relative;z-index:1;}
.plan-card:hover{border-color:var(--border);transform:translateY(-4px);box-shadow:var(--shadow-card);}
.plan-card.featured{border-color:var(--primary);box-shadow:0 0 30px var(--primary-glow);}
.plan-card.featured::before{content:'POPULAR';position:absolute;top:-11px;left:50%;transform:translateX(-50%);background:var(--primary);color:var(--bg-darker);font-family:var(--font-mono);font-size:.58rem;letter-spacing:.2em;padding:3px 12px;border-radius:2px;}
.plan-icon{width:56px;height:56px;margin:0 auto 1rem;object-fit:contain;filter:drop-shadow(0 0 12px var(--primary-glow));}
.plan-name{font-family:var(--font-heading);font-size:.85rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.5rem;}
.plan-price{font-family:var(--font-display);font-size:1.9rem;font-weight:600;color:var(--text-white);line-height:1;margin-bottom:.2rem;}
.plan-price.featured-price{color:var(--primary);text-shadow:0 0 20px var(--primary-glow);}
.plan-period{font-size:.72rem;color:var(--text-muted);margin-bottom:1rem;}

/* ════════════════════════════
   STATS
════════════════════════════ */
.stats-section{background:var(--bg-darker);border-top:1px solid var(--border-subtle);border-bottom:1px solid var(--border-subtle);position:relative;overflow:hidden;}
.stats-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 50% 50%,rgba(0,200,215,.05) 0%,transparent 65%);}
.stat-item{position:relative;z-index:1;text-align:center;}
.stat-number{font-family:var(--font-display);font-size:clamp(2.5rem,5vw,4rem);color:var(--primary);line-height:1;margin-bottom:.25rem;text-shadow:0 0 30px var(--primary-glow);}
.stat-label{font-family:var(--font-mono);font-size:.68rem;letter-spacing:.15em;color:var(--text-muted);text-transform:uppercase;}

/* ════════════════════════════
   SCHEDULE
════════════════════════════ */
.schedule-item{display:flex;align-items:center;gap:1rem;padding:.9rem 1.25rem;background:var(--bg-card);border:1px solid var(--border-subtle);border-left:2px solid transparent;border-radius:var(--radius);margin-bottom:.5rem;transition:all var(--dur) var(--ease);cursor:pointer;}
.schedule-item:hover{border-color:var(--border);border-left-color:var(--primary);transform:translateX(4px);}
.schedule-date-block{min-width:52px;text-align:center;background:var(--primary-faint);border:1px solid var(--border);border-radius:var(--radius);padding:.4rem .5rem;}
.schedule-day{font-family:var(--font-display);font-size:1.4rem;color:var(--primary);line-height:1;}
.schedule-month{font-family:var(--font-mono);font-size:.56rem;letter-spacing:.1em;color:var(--text-muted);text-transform:uppercase;}
.schedule-sport-tag{display:inline-block;padding:2px 8px;border-radius:2px;font-family:var(--font-mono);font-size:.58rem;font-weight:700;letter-spacing:.1em;}
.tag-football{background:rgba(46,204,113,.1);color:#2ecc71;border:1px solid rgba(46,204,113,.2);}
.tag-basketball{background:rgba(241,196,15,.1);color:#f1c40f;border:1px solid rgba(241,196,15,.2);}
.tag-baseball{background:rgba(52,152,219,.1);color:#3498db;border:1px solid rgba(52,152,219,.2);}
.tag-tennis{background:rgba(155,89,182,.1);color:#9b59b6;border:1px solid rgba(155,89,182,.2);}
.tag-swimming{background:rgba(0,200,215,.1);color:var(--primary);border:1px solid var(--border);}
.tag-athletics{background:rgba(231,76,60,.1);color:#e74c3c;border:1px solid rgba(231,76,60,.2);}

/* ════════════════════════════
   ATHLETE CARDS
════════════════════════════ */
.athlete-card{position:relative;border-radius:var(--radius-lg);overflow:hidden;cursor:pointer;border:1px solid var(--border-subtle);transition:all var(--dur) var(--ease);}
.athlete-card:hover{border-color:var(--border);transform:translateY(-5px);box-shadow:var(--shadow-card);}
.athlete-card-img{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:top;filter:brightness(.6) saturate(.75) grayscale(.2);transition:all .5s var(--ease);}
.athlete-card:hover .athlete-card-img{filter:brightness(.8) saturate(1) grayscale(0);transform:scale(1.04);}
.athlete-card-body{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(8,14,24,.97),rgba(8,14,24,.45) 70%,transparent);padding:2rem 1.25rem 1.25rem;color:var(--text-white);}
.athlete-number{font-family:var(--font-display);font-size:3.5rem;color:rgba(0,200,215,.06);position:absolute;top:.5rem;right:1rem;line-height:1;}
.athlete-sport{font-family:var(--font-mono);font-size:.6rem;letter-spacing:.18em;color:var(--primary);margin-bottom:4px;}
.athlete-name{font-family:var(--font-heading);font-size:1.1rem;font-weight:700;margin-bottom:2px;}
.athlete-role{font-size:.77rem;color:var(--text-muted);}

/* ════════════════════════════
   NEWS CARDS
════════════════════════════ */
.news-card{background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-lg);overflow:hidden;transition:all var(--dur) var(--ease);height:100%;}
.news-card:hover{border-color:var(--border);transform:translateY(-4px);box-shadow:var(--shadow-card);}
.news-card-img-wrap{position:relative;overflow:hidden;aspect-ratio:16/9;}
.news-card-img-wrap img{width:100%;height:100%;object-fit:cover;filter:brightness(.65) saturate(.8);transition:all .5s var(--ease);}
.news-card:hover .news-card-img-wrap img{filter:brightness(.85) saturate(1.05);transform:scale(1.04);}
.news-card-category{position:absolute;top:.75rem;left:.75rem;background:var(--primary);color:var(--bg-darker);font-family:var(--font-mono);font-size:.58rem;font-weight:700;letter-spacing:.15em;padding:3px 10px;border-radius:2px;}
.news-card-body{padding:1.25rem;}
.news-card-date{font-family:var(--font-mono);font-size:.65rem;letter-spacing:.1em;color:var(--text-muted);margin-bottom:.5rem;}
.news-card-title{font-family:var(--font-heading);font-size:.98rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase;line-height:1.3;margin-bottom:.5rem;color:var(--text-white);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;transition:color var(--dur) var(--ease);}
.news-card:hover .news-card-title{color:var(--primary);}
.news-card-excerpt{font-size:.78rem;color:var(--text-muted);line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}

/* ════════════════════════════════════
   SECTION CASES — 導入事例
════════════════════════════════════ */
.section-cases {
  background: var(--bg-light);
  position: relative;
}

/* ── Nền primary — background layer thật sự ── */
.cases-left-col {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  padding-top: 1em;
  background: var(--bg-mid);
  border-radius: 0 40px 40px 0;
  z-index: 0;
}

/* Title nằm trong nền primary */
.cases-left-col-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 72px 40px 80px;
}

.cases-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--text-black);
  line-height: 1;
  letter-spacing: .02em;
}

.cases-subtitle {
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(0,0,0,.55);
  margin-top: 8px;
}

/* ── Content layer — 100% width, nổi trên nền ── */
.cases-layout {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── Cases list — full width ─────────── */
.cases-right-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 25%;
  padding-top: 15%;
}

/* ── Case item ─────────────────────── */
.case-item {
  display: grid;
  grid-template-columns: 55% 1fr;
  min-height: 480px;
  position: relative;
}

.case-item:last-child {
  border-bottom: none;
}

/* ── Ảnh block ─────────────────────── */
.case-img-block {
  padding: 40px 24px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.case-img-main {
  width: 85%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.28);
  aspect-ratio: 4 / 3;
  will-change: transform;
}

.case-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* Dots */
.case-img-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.case-img-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  transition: all .3s;
}

.case-img-dot.is-active {
  background: var(--text-black);
  width: 18px;
  border-radius: 3px;
}

/* ── Text block ─────────────────────── */
.case-text-col {
  text-align: left;
  padding: 40px 40px 40px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--primary);
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.case-title-en {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.case-title-ja {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.65;
  margin-bottom: 12px;
}

.case-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-black);
  line-height: 1.85;
  margin-bottom: 20px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-black);
  text-decoration: none;
  border: 1.5px solid #bbb;
  border-radius: 50px;
  padding: 8px 20px;
  transition: all var(--dur) var(--ease);
}

.case-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ── RESPONSIVE ────────────────────── */
@media (max-width: 1024px) {
  /* Nền primary chạy ngang trên */
  .cases-left-col {
    width: 100%;
    height: auto;
      aspect-ratio: 440 / 300;
    margin-left: -15%;
  }

  .cases-left-col-content {
    position: relative;
    height: auto;
    padding: 48px 20px 40px;
  }

  /* Content không còn padding-left lớn */
  .cases-right-col {
      padding-left: 0;
      padding-top: 30%;
  }

  /* Stack dọc */
  .case-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }

  /* Ảnh full width, căn giữa viewport */
  .case-img-block {
    padding: 32px 0 0;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .case-img-main {
    width: 80%;
    max-width: 520px;
  }

  .case-img-dots {
    width: 85%;
    max-width: 520px;
  }

  .case-text-col {
   padding: 0 25%;
    order: 2;
  }
}

@media (max-width: 576px) {
  .case-text-col {padding: 0 10%;}
  .cases-swiper,
  .cases-swiper .swiper-wrapper,
  .cases-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cases-swiper { overflow: hidden; }
}
@media (min-width: 577px) {
  .cases-swiper { overflow: visible; }
  .cases-swiper .swiper-wrapper { 
    display: flex;
    flex-direction: column;
    transform: none !important; 
    gap: 0;
  }
  .cases-swiper .swiper-slide { 
    width: 100% !important;
    height: auto !important;
  }
  .cases-swiper-pagination { display: none; }
}
/* ════════════════════════════
   FORMS
════════════════════════════ */
.form-control,.form-select{background:var(--primary-faint);border:1px solid var(--border);border-radius:var(--radius);padding:.65rem 1rem;color:var(--text-white);font-family:var(--font-body);font-size:.88rem;transition:all var(--dur) var(--ease);}
.form-control:focus,.form-select:focus{background:rgba(0,200,215,.08);border-color:var(--primary);box-shadow:0 0 0 3px var(--primary-glow);color:var(--text-white);outline:none;}
.form-control::placeholder{color:var(--text-muted);}
.form-select{background-color:var(--primary-faint);color:var(--text-white);}
.form-select option{background:var(--bg-card);color:var(--text-white);}
.form-label{font-family:var(--font-mono);font-size:.68rem;letter-spacing:.15em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.4rem;}
.form-check-input:checked{background-color:var(--primary);border-color:var(--primary);}
.form-check-input{background-color:var(--primary-faint);border-color:var(--border);}

/* ════════════════════════════
   CONTACT PAGE
════════════════════════════ */
.contact-section { background: var(--bg-light); min-height: 100vh; padding: 80px 0; }
.contact-wrap { max-width: 1100px; margin: 0 auto; padding: 64px 32px; display: grid;  grid-template-columns: 1fr; gap: 80px; align-items: start; border: 2px solid var(--primary-dark); box-shadow:var(--shadow-card);}}

/* ── Left col ── */
.contact-left { position: static; top: 100px; }
.contact-eyebrow { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--primary); text-transform: uppercase; margin-bottom: 12px; }
.contact-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text-black); line-height: 1.1; margin-bottom: 16px; }
.contact-sub { font-size: 0.88rem; color: #666; line-height: 1.8; }

/* ── Form ── */
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.cf-group { display: flex; flex-direction: column; gap: 8px; }
.cf-label { font-size: 0.85rem; font-weight: 600; color: #333; display: flex; align-items: center; gap: 8px; }
.cf-required { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; background: var(--primary); color: var(--bg-darker); padding: 2px 8px; border-radius: 3px; font-weight: 700; }

.cf-input, .cf-select, .cf-textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 6px; font-family: var(--font-body); font-size: 0.9rem; color: #111; background: #fff; transition: border-color 0.25s ease, box-shadow 0.25s ease; outline: none; appearance: none; }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--primary); }
.cf-textarea { resize: vertical; min-height: 120px; }
.cf-select-wrap { position: relative; }
.cf-select { padding-right: 40px; cursor: pointer; }
.cf-select-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 0.75rem; color: #888; pointer-events: none; }
.cf-error { display: none; font-size: 0.78rem; color: #e74c3c; margin-top: 4px; }

/* Submit button */
.cf-submit-wrap {display: flex; justify-content: center; align-items: center; margin-top: 8px; }
.cf-submit { display: inline-flex; align-items: center; gap: 12px; padding: 14px 32px; background: var(--primary); color: var(--bg-darker); border: none; border-radius: 50px; font-family: var(--font-body); font-size: 1rem; font-weight: 700; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.cf-submit:hover { transform: scale(1.04); box-shadow: 0 0 20px rgba(112,242,255,0.4); }
.cf-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.cf-submit-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; }

/* Success state */
.cf-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 60px 20px; gap: 20px; }
.cf-success-icon { width: 80px; height: 80px; border-radius: 50%; border: 2px solid rgba(112,242,255,0.2); display: flex; align-items: center; justify-content: center; }
.cf-success-title { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: #111; }
.cf-success-msg { font-size: 0.88rem; color: #666; line-height: 1.8; }

/* Error banner */
.cf-error-banner { display: none; padding: 14px 20px; background: rgba(231,76,60,0.08); border: 1px solid rgba(231,76,60,0.3); border-radius: 8px; font-size: 0.88rem; color: #e74c3c; margin-bottom: 16px; }

/* Responsive */
@media (max-width: 768px) {
  .contact-wrap { gap: 40px; padding: 40px 20px; }
  .contact-left { position: static; }
  .contact-section { padding: 40px 0; }
}
/* ════════════════════════════
   PAGE BANNER
════════════════════════════ */
.page-banner{background:var(--bg-darker);position:relative;overflow:hidden;padding:5rem 0 3rem;border-bottom:1px solid var(--border-subtle);}
.page-banner::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%,rgba(0,200,215,.07),transparent 60%);}
.page-banner-bg-text{position:absolute;right:-2rem;top:50%;transform:translateY(-50%);font-family:var(--font-display);font-size:10rem;font-weight:700;color:rgba(0,200,215,.025);text-transform:uppercase;letter-spacing:.1em;white-space:nowrap;pointer-events:none;user-select:none;}
.page-banner-title{font-family:var(--font-display);font-size:clamp(2.5rem,7vw,5.5rem);font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--text-white);line-height:.95;position:relative;}
.page-banner-title .accent{color:var(--primary);}
.page-banner-subtitle{font-size:.88rem;color:var(--text-muted);max-width:480px;line-height:1.8;margin-top:1rem;position:relative;}
.breadcrumb-sport{display:flex;align-items:center;gap:8px;font-family:var(--font-mono);font-size:.65rem;letter-spacing:.1em;color:var(--text-dim);margin-bottom:1rem;position:relative;}
.breadcrumb-sport a{color:var(--text-muted);}
.breadcrumb-sport a:hover{color:var(--primary);}
.breadcrumb-sport .sep{color:var(--primary);}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.site-footer { background: var(--bg-darker); border-top: 1px solid var(--border-subtle); }
.footer-body { padding: 4rem 3rem 3rem; }

/* Layout 2 cột */
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; max-width: 1200px; margin: 0 auto; }

/* ── Cột trái ── */
.footer-left { display: flex; flex-direction: column; gap: 2rem; }

.footer-logo img { height: 73px; width: auto; object-fit: contain; }

.footer-logo-des { margin-top: 12px; display: flex; flex-direction: column; align-items: start; gap: 4px; }

.footer-logo-des-text { font-family: var(--font-body); font-size: 20px;font-weight: 700; color: var(--text-color-6); letter-spacing: 0.04em; }

.footer-logo-des-img { height: 25px !important; }
/* CTA buttons */
.footer-cta { display: flex; flex-direction: column; gap: 14px; }

.footer-btn { display: inline-flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0.75rem 0.75rem 0.75rem 1.75rem; background: transparent; border: 1.5px solid var(--primary); border-radius: 50px; color: var(--primary); font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; text-decoration: none; min-width: 280px; transition: all 0.3s ease; }

.footer-btn:hover { background: rgba(112,242,255,0.06); transform: scale(1.03); box-shadow: 0 0 16px rgba(112,242,255,0.25); color: var(--primary); }

.footer-btn-arrow { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: var(--bg-darker); flex-shrink: 0; transition: transform 0.3s ease; }

.footer-btn:hover .footer-btn-arrow { transform: translateX(3px); }

.footer-socials { display: flex; gap: 10px; }
/* Copyright */
.footer-copy {text-align: center; font-size: 0.88rem; color: var(--text-dim); margin: 0; padding: 10px}

/* ── Cột phải: Menu ── */
.footer-right { padding-top: 0.5rem; }

.footer-menu-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.25em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 1.25rem; }

.footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }

.footer-menu a { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--text-white); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s ease; }

.footer-menu a:hover { color: var(--primary); }

.footer-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; box-shadow: 0 0 6px var(--primary); transition: transform 0.2s ease; }

.footer-menu a:hover .footer-dot { transform: translateX(4px); }

/* ════════════════════════════
   BACK TO TOP
════════════════════════════ */
.back-to-top{position:fixed;bottom:2rem;right:2rem;width:42px;height:42px;background:transparent;border:1px solid var(--primary);border-radius:var(--radius);color:var(--primary);font-size:.9rem;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 0 16px var(--primary-glow);opacity:0;visibility:hidden;transform:translateY(10px);transition:all var(--dur) var(--ease);z-index:999;}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0);}
.back-to-top:hover{background:var(--primary);color:var(--bg-darker);box-shadow:0 0 30px var(--primary-glow);}

/* ════════════════════════════
   UTILITIES & ALERTS
════════════════════════════ */
.text-cyan{color:var(--primary)!important;}
.text-muted-ms{color:var(--text-muted)!important;}
.badge-ms{background:rgba(0,200,215,.1);color:var(--primary);border:1px solid var(--border);font-family:var(--font-mono);font-size:.6rem;letter-spacing:.12em;padding:3px 10px;border-radius:2px;}
.divider-cyan{width:40px;height:1px;background:var(--primary);box-shadow:0 0 8px var(--primary);margin:1rem 0;}
.swiper-pagination-bullet{background:var(--text-muted)!important;opacity:1!important;}
.swiper-pagination-bullet-active{background:var(--primary)!important;width:18px!important;border-radius:1px!important;}
.alert-success{background:rgba(46,204,113,.1);border:1px solid rgba(46,204,113,.3);color:#2ecc71;border-radius:var(--radius);}
.alert-danger{background:rgba(231,76,60,.1);border:1px solid rgba(231,76,60,.3);color:#e74c3c;border-radius:var(--radius);}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media(max-width:991.98px){:root{--section-py:60px;}
  .hero-title{font-size:clamp(2.2rem,8vw,4rem);}
  .cinematic-section{height:350px;}
  .featured-sport{min-height:380px;} }
@media(max-width:767.98px){:root{--section-py:48px;}
  .cinematic-section{height:280px;}
  .cinematic-quote{font-size:clamp(1.5rem,6vw,2.5rem);}
   .footer-body { padding: 3rem 1.5rem 2rem; }
  .footer-inner { flex-direction: column-reverse; gap: 2.5rem; }
  .footer-left{width: 100%;}
  .footer-btn { min-width: 100%; }
  .footer-menu { gap: 0.65rem; }
  .footer-menu a { font-size: 0.95rem; }
  .footer-logo-des-text{font-size: 16px;}

   }
@media(max-width:575.98px){ .hero-actions{flex-direction:column;}
  .btn-hero{width:100%;justify-content:center;}
  .navbar-content-cus{margin:0 20px; padding: 0 20px;}
  .hero-desc{display: none; font-size: 12px;line-height: unset; }
  .hero-title-2{font-size: 1.5rem; margin-bottom: 0.2rem}
  .hero-title{font-size: 1.8rem;margin-bottom: 1rem}
  .btn-hero-outline{font-size: 20px; height: 50px; }
  .section-subtitle {font-size: 12px;}
}

/* ════════════════════════════════════════════

/* ════════════════════════════════════════════
   GSAP ANIMATION SUPPORT STYLES
════════════════════════════════════════════ */

/* Scroll progress bar */
#gsap-scroll-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; z-index: 99999; pointer-events: none;
}

/* Page loader — GSAP controls everything */
#page-loader {
  transform-origin: center center;
  will-change: transform, opacity;
  /* No CSS transition — GSAP handles it */
}
/* Fallback nếu GSAP chưa load */
#page-loader.loaded { display: none !important; }

/* Ensure brand-logo can receive GSAP transform */
.navbar-brand .brand-logo,
.navbar-brand {
  will-change: transform, filter;
  display: inline-block;
}

/* Title chars — perspective */
.section-title span,
.section-title-dark-bg span,
.hero-title span,
.hero-title-2 span,
.plan-header-label span,
.case-title-en span {
  display: inline-block;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Sport cards — magnifier */
.sport-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.sport-card-img {
  will-change: transform;
  transform-origin: center center;
}

/* Simulator dots — pointer events on */
.sim-dot-connector {
  pointer-events: auto !important;
  cursor: pointer;
  z-index: 10;
  will-change: transform, box-shadow;
}
/* Arrows & labels: GSAP will manage opacity */
.sim-arrow,
.sim-label {
  will-change: opacity;
}
.sim-arrow__line {
  will-change: transform;
  transform-origin: center center;
}

/* Simulator image — no animation, static */
.simulator-img-wrap {
  will-change: opacity;
  /* Remove CSS animation if any */
  animation: none !important;
}

/* Cases left col */
.cases-left-col {
  will-change: transform, opacity;
}

/* Case image main — GSAP scale */
.case-img-main {
  will-change: transform;
  transform-origin: center center;
}
.case-img-main img {
  will-change: transform;
}

/* Plan cards */
.plan-card-v2 {
  will-change: transform, opacity;
}
.plan-product-img {
  will-change: transform, opacity;
}

/* Buttons — magnetic */
.btn-primary-sport,
.btn-hero,
.plan-card-btn {
  will-change: transform;
  position: relative;
  overflow: hidden;
}

/* Point items */
.point-item-v2 {
  will-change: transform, opacity;
}
.point-num-v2 {
  will-change: transform, color, text-shadow;
  display: inline-block;
}

/* About cards */
.about-card {
  will-change: transform, opacity;
}

/* Featured content */
.featured-content {
  position: absolute;
  bottom: 10%; left: 5%;
  z-index: 10;
  color: white;
  max-width: 580px;
}
.featured-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(0,200,215,0.3);
}

/* Cinematic overlay + text */
.cinematic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,14,24,0.85) 0%, rgba(8,14,24,0.4) 60%, transparent 100%);
  z-index: 2; pointer-events: none;
}
.cinematic-text {
  position: absolute; z-index: 10;
  left: 6%; top: 50%;
  transform: translateY(-50%);
  max-width: 560px;
}
.cinematic-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
}
.cinematic-quote .c-accent {
  color: var(--primary);
  text-shadow: 0 0 30px var(--primary-glow);
}

/* Eyebrow animated line */
.gsap-eyebrow-line {
  display: inline-block;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  vertical-align: middle;
}

@media (max-width: 768px) {
  .featured-content { left: 4%; right: 4%; max-width: 100%; }
  .cinematic-text   { left: 4%; right: 4%; max-width: 100%; }
  .featured-title   { font-size: clamp(2rem, 8vw, 3rem); }
}
