/* ============================================================
   GAMBIT CHESS CLUB — STYLE.CSS v2
   ============================================================ */
:root {
  --black: #080808;
  --dark: #0f0f0f;
  --dark-2: #181818;
  --dark-3: #222;
  --gold: #c9a227;
  --gold-l: #e8c84a;
  --gold-d: #8a6f1a;
  --white: #ffffff;
  --off-white: #f8f5ef;
  --gray-100: #f2efe9;
  --gray-200: #e5e1d8;
  --gray-400: #a09a8e;
  --gray-600: #6b6560;
  --dark-text: #1a1714;
  --font: 'Cairo', 'Tajawal', sans-serif;
  --tr: 0.38s cubic-bezier(.25, .46, .45, .94);
  --tr-f: 0.18s ease;
  --r: 12px;
  --r-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none
}

body.page-achievements,
body.page-training {
  background: var(--off-white)
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

button {
  font-family: var(--font);
  cursor: pointer
}

::-webkit-scrollbar {
  width: 3px
}

::-webkit-scrollbar-track {
  background: var(--dark)
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px
}

/* ===== CURSOR ===== */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s, background .2s;
  mix-blend-mode: difference
}

.cursor-follower {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(201, 162, 39, .5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .16s, opacity .2s;
  opacity: .5
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity .6s, visibility .6s
}

.loader.hidden {
  opacity: 0;
  visibility: hidden
}

.loader-chess {
  position: relative;
  margin-bottom: 24px
}

.lc-piece {
  font-size: 56px;
  display: block;
  animation: lPieceAnim 1s ease-in-out infinite alternate
}

.lc-shadow {
  width: 40px;
  height: 6px;
  background: rgba(201, 162, 39, .15);
  border-radius: 50%;
  margin: 8px auto 0;
  animation: lShadow 1s ease-in-out infinite alternate
}

.loader-progress {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, .08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px
}

.lp-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width .05s linear
}

.loader-text {
  font-size: 13px;
  letter-spacing: 6px;
  color: rgba(201, 162, 39, .7);
  text-transform: uppercase;
  font-weight: 700
}

@keyframes lPieceAnim {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-12px)
  }
}

@keyframes lShadow {
  from {
    transform: scaleX(1);
    opacity: .3
  }

  to {
    transform: scaleX(.7);
    opacity: .1
  }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--tr), padding var(--tr), border-color var(--tr)
    /* background-color: white; */
}

.nav.scrolled {
  background: rgba(8, 8, 8, .94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 162, 39, .12);
  padding: 10px 0
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--white)
}

.nav-logo em {
  color: var(--gold);
  font-style: normal
}

.logo-chess {
  font-size: 24px;
  color: var(--gold)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, .65);
  transition: color var(--tr-f), background var(--tr-f);
  position: relative
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--tr);
  transform-origin: right
}

.nav-link:hover,
.nav-link.active {
  color: var(--white)
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left
}

.nav-cta {
  padding: 8px 20px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 8px;
  transition: background var(--tr-f), transform var(--tr-f);
  letter-spacing: .3px
}

.nav-cta:hover {
  background: var(--gold-l);
  transform: translateY(-1px)
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #c9a226;
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr)
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, .98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--tr), visibility var(--tr)
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible
}

.mob-close {
  position: absolute;
  top: 24px;
  left: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  opacity: .6;
  transition: opacity var(--tr-f)
}

.mob-close:hover {
  opacity: 1
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center
}

.mob-link {
  font-size: 26px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  transition: color var(--tr-f)
}

.mob-link:hover {
  color: var(--gold)
}

.mob-cta {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--black);
  border-radius: 10px;
  font-weight: 800;
  font-size: 18px;
  margin-top: 8px
}

/* ===== WHITE SECTIONS ===== */
.white-section {
  background: var(--white) !important
}

.section-tag-dark {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 3px;
  margin-bottom: 18px
}

.section-title-dark {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  color: var(--dark-text);
  line-height: 1.1;
  margin-bottom: 16px
}

/* ===== COMMON ===== */
.section {
  padding: 100px 0
}

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

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 3px;
  margin-bottom: 18px
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px
}

.section-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .55);
  font-weight: 300
}

.gold {
  color: var(--gold)
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0)
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  transition: background var(--tr-f), transform var(--tr-f), box-shadow var(--tr-f)
}

.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 162, 39, .28)
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition: border-color var(--tr-f), background var(--tr-f)
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .06)
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  transition: background var(--tr-f), color var(--tr-f)
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black)
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black)
}

#chessCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom, rgba(8, 8, 8, .45) 0%, transparent 30%, transparent 65%, rgba(8, 8, 8, .98) 100%), linear-gradient(to right, rgba(8, 8, 8, .7) 0%, transparent 40%, transparent 60%, rgba(8, 8, 8, .7) 100%) */
}

.hero-pieces-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.hpb {
  position: absolute;
  font-size: clamp(60px, 12vw, 140px);
  color: rgb(201 162 39 / 18%);
  animation: hpbFloat 8s ease-in-out infinite
}

.hpb1 {
  top: 8%;
  right: 5%;
  animation-delay: 0s
}

.hpb2 {
  top: 12%;
  left: 6%;
  animation-delay: 1.5s
}

.hpb3 {
  bottom: 22%;
  right: 3%;
  animation-delay: 3s
}

.hpb4 {
  bottom: 18%;
  left: 4%;
  animation-delay: 2s
}

.hpb5 {
  top: 45%;
  left: 48%;
  font-size: clamp(120px, 20vw, 260px);
  opacity: .025;
  animation-delay: 4s
}

.hpb6 {
  top: 30%;
  right: 25%;
  animation-delay: 5s;
  font-size: 60px
}

@keyframes hpbFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-18px) rotate(4deg)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 130px 24px 80px;
  max-width: 920px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border: 1px solid rgba(201, 162, 39, .35);
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 162, 39, .07);
  letter-spacing: .5px;
  margin-bottom: 28px
}

.hero-title {
  font-size: clamp(54px, 11vw, 95px);
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 20px;
  letter-spacing: -1px
}

.ht-line {
  display: block
}

.ht-gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201, 162, 39, .35)
}

.hero-sub {
  font-size: clamp(15px, 2.5vw, 21px);
  color: rgba(255, 255, 255, .55);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: .5px
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap
}

.hstat {
  text-align: center
}

.hstat-n {
  display: block;
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1
}

.hstat-l {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, .45);
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.hstat-sep {
  width: 1px;
  height: 44px;
  background: rgba(201, 162, 39, .2)
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
  font-size: 22px
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* ===== ABOUT ===== */
.about {
  background: var(--white)
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.about-lead-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--dark-text);
  margin-bottom: 20px;
  position: relative;
  padding-right: 20px
}

.about-lead-text::before {
  content: '';
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 6px;
  width: 3px;
  background: var(--gold);
  border-radius: 2px
}

.about-drop-cap {
  font-size: 2.6em;
  font-weight: 900;
  line-height: .8;
  float: right;
  margin-left: 6px;
  margin-bottom: -2px;
  color: var(--gold)
}

.gold-mark {
  background: rgba(201, 162, 39, .15);
  color: var(--gold-d);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-style: normal
}

.about-body {
  font-size: 15.5px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px
}

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

.af-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-100);
  border-radius: 12px;
  border-right: 3px solid transparent;
  transition: border-color var(--tr), background var(--tr)
}

.af-item:hover {
  border-right-color: var(--gold);
  background: var(--gray-200)
}

.af-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(201, 162, 39, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0
}

.af-icon-wrap svg {
  width: 20px;
  height: 20px
}

.af-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 2px
}

.af-text span {
  font-size: 13px;
  color: var(--gray-600)
}

.logo-img {
  height: 64px;
}

/* فقط للويب (شاشات أكبر من 768px) */
@media (min-width: 768px) {
  .logo-img {
    margin-right: 37px;
  }
}

/* Chess board deco */
.about-board-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px
}

.board-wrap {
  position: relative;
  width: 300px
}

.board-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, .12), transparent 70%);
  border-radius: 50%;
  z-index: 0
}

.chess-board-deco {
  width: 300px;
  height: 300px;
  position: relative;
  z-index: 1
}

.board-inner {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(201, 162, 39, .35);
  overflow: hidden;
  border-radius: 4px
}

.board-rows {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
  height: 100%
}

.cell {
  aspect-ratio: 1
}

.cell.dark {
  background: rgba(201, 163, 39, 0.333)
}

.cell.light {
  background: rgba(201, 162, 39, .04)
}

.board-label {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  color: rgba(201, 162, 39, .5);
  letter-spacing: 1px
}

.board-label-tl {
  top: -18px;
  right: 0
}

.board-label-br {
  bottom: -18px;
  left: 0
}

.board-float {
  position: absolute;
  font-size: 54px;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, .45));
  z-index: 2
}

.bf1 {
  top: -20px;
  right: -20px;
  animation: hpbFloat 6s ease-in-out infinite
}

.bf2 {
  top: -20px;
  left: -20px;
  animation: hpbFloat 7s ease-in-out infinite 1s
}

.bf3 {
  bottom: -20px;
  right: -20px;
  animation: hpbFloat 5s ease-in-out infinite 2s
}

.bf4 {
  bottom: -20px;
  left: -20px;
  animation: hpbFloat 8s ease-in-out infinite .5s
}

.board-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center
}

.bchip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--black);
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700
}

/* ===== VISION ===== */
.vision {
  background: var(--dark);
  position: relative;
  overflow: hidden
}

.vision-bg-king {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: clamp(200px, 35vw, 500px);
  color: rgba(255, 255, 255, .014);
  pointer-events: none;
  line-height: 1;
  z-index: 0
}

.vision-scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, .006) 3px, rgba(255, 255, 255, .006) 4px);
  pointer-events: none;
  z-index: 0
}

.vision .container {
  position: relative;
  z-index: 1
}

.vision-statement {
  position: relative;
  text-align: center;
  padding: 40px 0 48px;
  margin: 32px 0
}

.vs-deco-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 162, 39, .4), transparent);
  margin: 16px 0
}

.vs-text {
  font-size: clamp(17px, 2.5vw, 24px);
  line-height: 1.85;
  color: rgba(255, 255, 255, .65);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300
}

.vs-highlight {
  color: var(--gold);
  font-weight: 600
}

.mission-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(201, 162, 39, .12);
  border-radius: var(--r-lg);
  overflow: hidden
}

.ms-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(201, 162, 39, .1);
  position: relative;
  background: rgba(255, 255, 255, .015);
  transition: background var(--tr)
}

.ms-item:last-child {
  border-right: none
}

.ms-item:hover {
  background: rgba(201, 162, 39, .05)
}

.ms-num {
  font-size: 42px;
  font-weight: 900;
  color: rgba(201, 162, 39, .08);
  line-height: 1;
  margin-bottom: 12px
}

.ms-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(201, 162, 39, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 12px
}

.ms-icon-wrap svg {
  width: 18px;
  height: 18px
}

.ms-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px
}

.ms-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6
}

/* ===== ACHIEVEMENTS HOME ===== */
.achievements-home {
  background: var(--white)
}

.ach-home-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px
}

.ach-chess-banner {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 65px;
  color: rgba(224, 177, 21, 0.771);
  letter-spacing: 4px;
  /* margin-bottom: 40px; */
  overflow: hidden;
  /* animation: bannerDrift 20s linear infinite */
}

@keyframes bannerDrift {
  0% {
    letter-spacing: 4px;
    opacity: .15
  }

  50% {
    letter-spacing: 12px;
    opacity: .1
  }

  100% {
    letter-spacing: 4px;
    opacity: .15
  }
}

/* Home timeline */
.home-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  position: relative
}

.home-timeline::before {
  content: '';
  position: absolute;
  right: 1101px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 162, 39, .15));
  border-radius: 2px
}

.htl-item {
  display: grid;
  grid-template-columns: 1fr 68px;
  gap: 18px;
  align-items: stretch;
  padding: 18px 0;
  position: relative
}

.htl-item:last-child {
  border-bottom: none
}

.htl-node {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 30px;
  position: relative;
  z-index: 1
}

.htl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(201, 162, 39, .25);
  border: 3px solid var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
  transition: background var(--tr), box-shadow var(--tr);
  box-shadow: 0 0 10px rgba(201, 162, 39, .2)
}

.htl-dot-gold,
.htl-item.htl-featured .htl-dot {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(201, 162, 39, .4)
}

.htl-content {
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--white), rgba(201, 162, 39, .03));
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .04);
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr)
}

.htl-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(201, 162, 39, .12), transparent 45%);
  pointer-events: none
}

.htl-content::after {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  right: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 162, 39, .08));
  border-radius: 4px
}

.htl-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap
}

.htl-year {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 1px
}

.htl-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .5px
}

.htl-tour {
  background: rgba(201, 162, 39, .1);
  color: var(--gold-d)
}

.htl-train {
  background: rgba(46, 139, 87, .1);
  color: #2e7a4f
}

.htl-event {
  background: rgba(100, 100, 220, .1);
  color: #4444aa
}

.htl-piece {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, .92);
  color: var(--gold);
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(8, 8, 8, .18);
  border: 1px solid rgba(201, 162, 39, .2)
}

.htl-piece-gold {
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  color: var(--black)
}

.htl-item h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1.45;
  margin: 10px 0 6px 72px
}

.htl-item p {
  font-size: 13px;
  color: var(--gray-600)
}

.htl-item:hover .htl-content {
  transform: translateX(-4px);
  border-color: rgba(201, 162, 39, .35);
  box-shadow: 0 18px 34px rgba(201, 162, 39, .08)
}

.htl-item:hover .htl-dot {
  background: var(--gold)
}

.htl-item.htl-featured .htl-content {
  position: relative;
  border-color: rgba(201, 162, 39, .35)
}

.ach-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 12px
}

.ach-stat {
  background: var(--gray-100);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: border-color var(--tr), transform var(--tr)
}

.ach-stat:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px)
}

.as-n {
  font-size: 46px;
  font-weight: 900;
  color: var(--dark-text);
  line-height: 1
}

.ach-stat sup {
  font-size: 32px;
  color: var(--gold);
  font-weight: 900
}

.as-l {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 4px;
  font-weight: 600
}

/* ===== PARTNERS ===== */
.partners {
  background: var(--black);
  padding-bottom: 80px
}

.partners .container {
  padding-bottom: 0
}

.partners .reveal-up,
.partners-visible {
  opacity: 1 !important;
  transform: none !important
}

.marquee-wrap {
  overflow: hidden;
  padding: 10px 0;
  position: relative
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2
}

.marquee-wrap::before {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent)
}

.marquee-wrap::after {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent)
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content
}

.marquee-fwd {
  animation: marqueeForward 32s linear infinite
}

.marquee-rev {
  animation: marqueeReverse 28s linear infinite
}

.marquee-track:hover {
  animation-play-state: paused
}

@keyframes marqueeForward {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes marqueeReverse {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

.mq-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 162, 39, .12);
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color var(--tr-f), color var(--tr-f), background var(--tr-f)
}

.mq-logo:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, .06)
}

.mq-logo svg {
  color: rgba(201, 162, 39, .5);
  flex-shrink: 0
}

/* ===== TEAM ===== */
.team {
  background: var(--white)
}

.president-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 48px 0;
  position: relative
}

.president-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 162, 39, .3))
}

.president-line:first-child {
  background: linear-gradient(to left, transparent, rgba(201, 162, 39, .3))
}

.president-orb {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.pres-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: presRing 3s linear infinite
}

.pres-ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 162, 39, .3);
  border-radius: 50%
}

@keyframes presRing {
  0% {
    transform: rotate(0);
    border-color: var(--gold)
  }

  50% {
    border-color: var(--gold-l)
  }

  100% {
    transform: rotate(360deg)
  }
}

.pres-piece {
  font-size: 60px;
  color: var(--gold);
  position: relative;
  z-index: 1;
  animation: hpbFloat 3s ease-in-out infinite
}

.president-info {
  text-align: center;
  flex-shrink: 0
}

.pres-role {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700
}

.pres-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark-text);
  margin: 4px 0 8px
}

.pres-bar {
  height: 2px;
  width: 80px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 2px
}

.team-organic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 40px 0
}

.torg-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: 16px;
  background: var(--gray-100);
  border: 1.5px solid transparent;
  transition: border-color var(--tr), transform var(--tr), background var(--tr);
  position: relative;
  overflow: hidden
}

.torg-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--tr);
  transform-origin: center
}

.torg-item:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, .25);
  background: var(--gray-200)
}

.torg-item:hover::before {
  transform: scaleX(1)
}

.torg-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  color: rgba(255, 255, 255, .7);
  border: 2px solid rgba(255, 255, 255, .08);
  transition: transform var(--tr), box-shadow var(--tr)
}

.torg-ring span {
  font-size: 40px;
  line-height: 1
}

.torg-gold {
  background: rgba(201, 162, 39, .12);
  color: var(--gold);
  border-color: rgba(201, 162, 39, .3)
}

.torg-item:hover .torg-ring {
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(201, 162, 39, .2)
}

.torg-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px
}

.torg-item span {
  font-size: 12px;
  color: var(--gray-600);
  /* z-index: 1;
  animation: hpbFloat 5s ease-in-out infinite */
}

.torg-itemspanlogo {
  font-size: 40px;
  color: var(--gray-600)
}

.org-divider {
  text-align: center;
  margin: 40px 0 24px;
  position: relative
}

.org-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-200)
}

.org-divider span {
  position: relative;
  background: var(--white);
  padding: 0 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 3px;
  text-transform: uppercase
}

.org-wave {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap
}

.ow-item {
  text-align: center;
  padding: 24px 36px;
  background: var(--gray-100);
  border-radius: 16px;
  border: 1.5px solid transparent;
  transition: border-color var(--tr), transform var(--tr)
}

.ow-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, .3)
}

.ow-piece {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1
}

.ow-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px
}

.ow-item span {
  font-size: 12.5px;
  color: var(--gray-600)
}

/* ===== CONTACT ===== */
.contact {
  background: var(--dark-2);
  position: relative;
  overflow: hidden
}

.contact-board-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(rgba(201, 162, 39, .025) 0% 25%, transparent 0% 50%);
  background-size: 56px 56px;
  opacity: .6
}

.contact .container {
  position: relative;
  z-index: 1
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px
}

.cg-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 162, 39, .12);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform var(--tr), border-color var(--tr), background var(--tr)
}

.cg-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, .4);
  background: rgba(255, 255, 255, .06)
}

.cg-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0
}

.cg-whatsapp .cg-icon-wrap {
  background: rgba(37, 211, 102, .12);
  color: #25d366
}

.cg-email .cg-icon-wrap {
  background: rgba(201, 162, 39, .1);
  color: var(--gold)
}

.cg-location .cg-icon-wrap {
  background: rgba(200, 80, 80, .1);
  color: #d06060
}

.cg-text {
  flex: 1
}

.cg-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 4px
}

.cg-value {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  word-break: break-all
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black)
}

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px
}

.fg-brand {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px
}

.footer-logo em {
  color: var(--gold);
  font-style: normal
}

.fg-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px
}

.fsoc-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .45);
  transition: background var(--tr-f), color var(--tr-f), border-color var(--tr-f)
}

.fsoc-link:hover {
  background: rgba(201, 162, 39, .15);
  color: var(--gold);
  border-color: rgba(201, 162, 39, .3)
}

.fg-links h5,
.fg-contact h5 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px
}

.fg-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.fg-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .45);
  transition: color var(--tr-f)
}

.fg-links a:hover {
  color: var(--white)
}

.fg-contact {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.fg-contact h5 {
  margin-bottom: 4px
}

.fg-ci {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .4)
}

.fg-ci svg {
  color: var(--gold);
  flex-shrink: 0
}

.footer-bottom {
  padding: 20px 0
}

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

.footer-bot-inner>span:first-child {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .3)
}

.footer-credit {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .35)
}

.footer-credit .heart {
  color: #e55;
  margin: 0 2px font-size: 15px;
}

.footer-credit strong {
  color: var(--gold);
  font-weight: 700
}

/* ===== ACHIEVEMENTS PAGE ===== */
.page-achievements {
  background: var(--off-white)
}

.page-hero.white-hero,
.white-hero {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden
}

.ph-chess-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-size: clamp(100px, 20vw, 200px);
  letter-spacing: 20px;
  color: rgba(201, 162, 39, .05);
  pointer-events: none;
  white-space: nowrap
}

.ph-title {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  color: var(--dark-text);
  margin-bottom: 12px;
  position: relative
}

.ph-sub {
  font-size: 17px;
  color: var(--gray-600);
  position: relative;
  margin-bottom: 32px
}

.ph-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative
}

.phs {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-direction: column
}

.phs-n {
  font-size: 36px;
  font-weight: 900;
  color: var(--dark-text);
  line-height: 1
}

.phs sup {
  font-size: 18px;
  color: var(--gold);
  font-weight: 900
}

.phs-l {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px
}

/* Filter */
.filter-bar {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 60px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06)
}

.filter-tabs-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap
}

.ftab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 30px;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--tr-f)
}

.ftab:hover {
  border-color: var(--gold);
  color: var(--gold-d)
}

.ftab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold)
}

.ftab svg {
  flex-shrink: 0
}

/* Full timeline */
.full-timeline {
  background: var(--off-white)
}

.ftl-wrap {
  position: relative;
  padding-right: 48px
}

.ftl-wrap::before {
  content: '';
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 162, 39, .08));
  border-radius: 2px
}

.ftl-year-block {
  margin-bottom: 56px
}

.ftl-year-marker {
  font-size: clamp(60px, 10vw, 100px);
  font-weight: 900;
  color: rgba(201, 163, 39, 0.545);
  line-height: 1;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  letter-spacing: -2px
}

.ftl-year-marker::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 50px;
  height: 2px;
  background: var(--gold)
}

.ftl-event {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 16px;
  transition: opacity .3s
}

.ftl-event.hidden {
  display: none
}

.ftl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(201, 162, 39, .2);
  border: 2px solid var(--gold);
  margin-top: 6px;
  justify-self: center;
  flex-shrink: 0;
  transition: background .2s;
  box-shadow: 0 0 8px rgba(201, 162, 39, .15)
}

.ftl-event:hover .ftl-dot {
  background: var(--gold)
}

.ftl-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  width: 100%;
  min-width: 0;
  border: 1.5px solid var(--gray-200);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr)
}

.ftl-card:hover {
  border-color: rgba(201, 162, 39, .35);
  transform: translateX(-4px);
  box-shadow: 0 4px 20px rgba(201, 162, 39, .08)
}

.ftl-card.ftl-featured {
  border-color: rgba(201, 162, 39, .35);
  background: linear-gradient(135deg, var(--white), rgba(201, 162, 39, .02))
}

.ftl-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap
}

.ftl-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 600
}

.ftl-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700
}

.ftl-b-tournament {
  background: rgba(201, 162, 39, .1);
  color: var(--gold-d)
}

.ftl-b-training {
  background: rgba(46, 120, 80, .1);
  color: #2e7850
}

.ftl-b-workshop {
  background: rgba(70, 100, 180, .1);
  color: #4464b4
}

.ftl-b-event {
  background: rgba(160, 70, 70, .1);
  color: #9a4444
}

.ftl-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.45;
  margin-bottom: 4px
}

.ftl-card p {
  font-size: 12.5px;
  color: var(--gray-600)
}

/* ===== TRAINING PAGE ===== */
.page-training {
  background: var(--off-white)
}

.training-hero {
  background: var(--black);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden
}

.th-bg-piece {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(200px, 35vw, 480px);
  color: rgba(201, 162, 39, .04);
  pointer-events: none;
  line-height: 1;
  animation: hpbFloat 10s ease-in-out infinite
}

.th-content {
  position: relative;
  z-index: 1;
  max-width: 640px
}

.th-title {
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 14px
}

.th-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 24px;
  font-weight: 300
}

.th-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.th-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(201, 162, 39, .25);
  border-radius: 20px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55)
}

.th-badges svg {
  color: var(--gold)
}

.programs {
  background: var(--white)
}

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

.prog-card {
  background: var(--gray-100);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  border: 1.5px solid transparent;
  transition: border-color var(--tr), transform var(--tr), background var(--tr);
  position: relative;
  overflow: hidden
}

.prog-card:hover {
  border-color: rgba(201, 162, 39, .3);
  transform: translateY(-6px);
  background: var(--white)
}

.prog-featured {
  border-color: rgba(201, 162, 39, .35);
  background: linear-gradient(135deg, var(--white), rgba(201, 162, 39, .03))
}

.prog-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 162, 39, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px
}

.prog-icon svg {
  width: 24px;
  height: 24px
}

.prog-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 10px
}

.prog-card p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px
}

.prog-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px
}

.prog-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark-text);
  font-weight: 500
}

.prog-list svg {
  color: var(--gold);
  flex-shrink: 0
}

.prog-level {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, .1);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block
}

.prog-level-adv {
  background: var(--gold);
  color: var(--black)
}

.prog-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px
}

.why-us {
  background: var(--dark)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px
}

.why-item {
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(201, 162, 39, .1);
  border-radius: var(--r);
  transition: border-color var(--tr), transform var(--tr)
}

.why-item:hover {
  border-color: rgba(201, 162, 39, .4);
  transform: translateY(-4px)
}

.wi-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 162, 39, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 16px
}

.wi-icon svg {
  width: 22px;
  height: 22px
}

.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px
}

.why-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, .4)
}

.registration {
  background: var(--white)
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start
}

.reg-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px
}

.reg-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px
}

.rs-step {
  display: flex;
  align-items: center;
  gap: 16px
}

.rs-num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0
}

.rs-step strong {
  display: block;
  font-size: 14.5px;
  color: var(--dark-text);
  font-weight: 700
}

.rs-step span {
  font-size: 13px;
  color: var(--gray-600)
}

.reg-contact-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 12px 16px;
  border-radius: 10px;
  border-right: 3px solid var(--gold)
}

.reg-contact-note svg {
  color: var(--gold);
  flex-shrink: 0
}

.reg-contact-note a {
  color: var(--gold);
  font-weight: 700
}

.form-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .08)
}

.form-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  font-weight: 700;
  color: var(--dark-text);
  font-size: 15px
}

.form-card-header svg {
  color: var(--gold)
}

.form-card-desc {
  padding: 16px 24px 0;
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6
}

.form-btn {
  margin: 14px 24px;
  display: inline-flex
}

.form-embed-wrap {
  padding: 0;
  border-top: 1px solid var(--gray-200);
  background: linear-gradient(180deg, #fff, #faf8f2)
}

.form-embed-wrap iframe {
  display: block;
  background: var(--white);
  min-height: 820px
}

.page-achievements .nav-logo,
.page-achievements .nav-link,
.page-achievements .menu-toggle span,
.page-training .nav-logo,
.page-training .nav-link,
.page-training .menu-toggle span {
  color: var(--dark-text)
}

.page-achievements .nav.scrolled,
.page-training .nav.scrolled {
  background: white;
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.page-achievements .nav-link,
.page-training .nav-link {
  color: rgba(26, 23, 20, .72)
}

.page-achievements .nav-link:hover,
.page-achievements .nav-link.active,
.page-training .nav-link:hover,
.page-training .nav-link.active {
  color: var(--dark-text)
}

.page-achievements .mobile-menu,
.page-training .mobile-menu {
  background: rgba(255, 255, 255, .98)
}

.page-achievements .mob-link,
.page-achievements .mob-close,
.page-training .mob-link,
.page-training .mob-close {
  color: var(--dark-text)
}

.page-achievements .mob-link:hover,
.page-training .mob-link:hover {
  color: var(--gold)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .about-board-side {
    display: flex
  }

  .mission-strip {
    grid-template-columns: repeat(3, 1fr)
  }

  .ms-item:nth-child(3) {
    border-right: none
  }

  .team-organic {
    grid-template-columns: repeat(3, 1fr)
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .reg-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media(max-width:900px) {
  .about-board-side {
    display: none
  }

  .ach-stats-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .ftl-wrap {
    padding-right: 32px
  }

  .ftl-event {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px
  }

  .home-timeline::before {
    right: 353px
  }

  .htl-item {
    grid-template-columns: 1fr 56px
  }

  .htl-piece {
    width: 48px;
    height: 48px;
    font-size: 24px
  }

  .htl-item h4 {
    margin-left: 56px
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .menu-toggle {
    display: flex
  }

  .section {
    padding: 72px 0
  }

  .container {
    padding: 0 20px
  }

  .mission-strip {
    grid-template-columns: 1fr
  }

  .ms-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 162, 39, .1)
  }

  .team-organic {
    grid-template-columns: repeat(2, 1fr)
  }

  .programs-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .home-timeline::before {
    right: 353px
  }

  .ftl-wrap::before {
    right: 13px
  }

  .ftl-event {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 14px
  }

  .htl-item {
    grid-template-columns: 1fr 36px
  }

  .htl-node {
    padding-top: 26px
  }

  .htl-content {
    padding: 18px 18px 18px 20px
  }

  .htl-piece {
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    font-size: 20px;
    border-radius: 12px
  }

  .htl-item h4 {
    font-size: 15.5px;
    margin-left: 44px
  }

  .ach-stats-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:520px) {
  .hero-stats {
    gap: 16px
  }

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

  .btn-gold,
  .btn-outline-white {
    justify-content: center
  }

  .team-organic {
    grid-template-columns: 1fr 1fr
  }

  .president-wrap {
    flex-direction: column
  }

  .president-line {
    display: none
  }

  .torg-ring {
    width: 84px;
    height: 84px
  }

  .torg-ring span {
    font-size: 46px
  }

  .ow-item {
    padding: 22px 26px
  }

  .ow-piece {
    font-size: 46px
  }

  /* Keep board visible on mobile as requested */
  .about-board-side {
    display: flex
  }
}