:root {
  --cream: #FDFAF4;
  --parch: #F4EDD8;
  --parch2: #EAE0C8;
  --parch3: #D8CBA8;
  --vellum: #F9F4E8;
  --teal: #AA7C22;
  --teal2: #E8D5A0;
  --teal3: #F9EDCE;
  --teal-pale: #DFF2F2;
  --teal-soft: #EFF9F9;
  --gold: #8C6318;
  --gold2: #AA7C22;
  --gold3: #C99830;
  --gold-pale: #F9EDCE;
  --gold-soft: #FDF6E6;
  --sand: #E8D5A0;
  --sand2: #D4B86A;
  --sand3: #C4A44E;
  --ink: #1A2028;
  --ink2: #2D3A42;
  --ink3: #4E606C;
  --ink4: #849AAA;
  --beg-c: #15803D;
  --int-c: #1D4ED8;
  --adv-c: #7E22CE;
  --border: rgba(26, 32, 40, 0.09);
  --border2: rgba(26, 32, 40, 0.16);
  --border-gold: rgba(140, 99, 24, 0.28);
  --shadow-sm: 0 3px 12px rgba(26, 32, 40, 0.09);
  --shadow-md: 0 8px 28px rgba(26, 32, 40, 0.12);
  --shadow-lg: 0 20px 56px rgba(26, 32, 40, 0.18);
  --font-display: 'Cinzel', Georgia, serif;
  --font-arabic: 'Tajawal', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Crimson Pro', Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

body.dark {
  --cream: #0F1117;
  --parch: #161B26;
  --parch2: #1C2333;
  --parch3: #2A3347;
  --vellum: #131820;
  /* --teal:#3FCFCF; 
  --teal2:#2AABAB; 
  --teal3:#1D8E8E; */
  /* --teal: #895129;
  --teal2: #94623e;
  --teal3: #ac8569; */
  --teal: #cfb992;
  --teal2: #bfa06a;
  --teal3: #c69a4e;
  --teal-pale: #0B3333;
  --teal-soft: #0A2828;
  --gold: #cfb992;
  --gold2: #bfa06a;
  --gold3: #c69a4e;
  --gold-pale: #2A2010;
  --gold-soft: #1E1810;
  --sand: #2A2418;
  --sand2: #3A3020;
  --sand3: #4A3C28;
  --ink: #F0F4F8;
  --ink2: #C8D4E0;
  --ink3: #8A9AB0;
  --ink4: #566880;
  --border: rgba(255, 255, 255, 0.06);
  --border2: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(212, 160, 48, 0.3);
  --beg-c: #34D399;
  --int-c: #60A5FA;
  --adv-c: #C084FC;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  transition: background .3s, color .3s
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--parch)
}

::-webkit-scrollbar-thumb {
  background: var(--parch3);
  border-radius: 3px
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes glow {

  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(170, 124, 34, 0.4))
  }

  50% {
    filter: drop-shadow(0 0 20px rgba(170, 124, 34, 0.7))
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% center
  }

  100% {
    background-position: -200% center
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: .7
  }

  100% {
    transform: scale(1.5);
    opacity: 0
  }
}

@keyframes scroll-reveal {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ═══════════ STICKY NAV ═══════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 250, 244, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 1rem;
  box-shadow: 0 2px 20px rgba(26, 32, 40, 0.06);
  transition: background .3s;
}

body.dark .nav {
  background: rgba(15, 17, 23, 0.97)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  cursor: pointer
}

.nav-emblem {
  width: 32px;
  height: 32px
}

.nav-logo-ar {
  font-family: var(--font-arabic);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold2)
}

.nav-logo-en {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .04em
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto
}

.nav-link {
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink3);
  padding: .4rem .7rem;
  border-radius: 8px;
  transition: all .18s;
  cursor: pointer
}

.nav-link:hover {
  color: var(--teal);
  background: var(--teal-soft)
}

.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: white !important;
  padding: .42rem 1.1rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 4px 14px rgba(170, 124, 34, 0.3);
  transition: transform .18s, box-shadow .18s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(170, 124, 34, 0.4)
}

.theme-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border2);
  background: var(--parch);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: all .18s;
  flex-shrink: 0;
}

.theme-btn:hover {
  background: var(--teal-soft);
  border-color: var(--teal)
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
  }

  .nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--ink3);
    border-radius: 2px;
    transition: .2s
  }
}

.nav-logo img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--parch) 0%, var(--cream) 40%, var(--teal-soft) 100%);
}

.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0
}

.hero-geo svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .04;
  width: 800px;
  height: 800px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: .35rem 1rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
  animation: fadeUp .6s .1s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold3);
  border-radius: 50%;
  animation: pulse-ring 1.5s ease-out infinite
}

.hero-emblem {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.6rem;
  position: relative;
  z-index: 1;
  animation: float 5s ease-in-out infinite, fadeUp .6s .15s both;
  filter: drop-shadow(0 8px 24px rgba(170, 124, 34, 0.35));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: .06em;
  color: var(--ink);
  position: relative;
  z-index: 1;
  margin-bottom: .5rem;
  animation: fadeUp .7s .2s both;
}

.hero-title .accent {
  color: var(--teal)
}

.hero-title .accent-gold {
  color: var(--gold2)
}

.hero-arabic {
  font-family: var(--font-arabic);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--gold2);
  direction: rtl;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
  opacity: .85;
  animation: fadeUp .7s .26s both;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink3);
  max-width: 580px;
  line-height: 1.85;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s .32s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s .38s both;
  margin-bottom: 3rem
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: white;
  padding: .85rem 2.2rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 8px 28px rgba(170, 124, 34, 0.35);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(170, 124, 34, 0.45)
}

.btn-secondary {
  background: var(--vellum);
  color: var(--teal);
  padding: .85rem 2.2rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1.5px solid var(--border-gold);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-secondary:hover {
  background: var(--teal-soft);
  border-color: var(--teal);
  transform: translateY(-2px)
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s .44s both;
}

.stat {
  text-align: center
}

.stat-n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1
}

.stat-l {
  font-size: .68rem;
  color: var(--ink4);
  margin-top: .25rem;
  letter-spacing: .06em;
  text-transform: uppercase
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border2);
  align-self: center
}

/* ═══════════ SECTION BASE ═══════════ */
.section {
  padding: 6rem 2rem
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: .28rem .8rem;
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: .8rem;
}

.section-title .accent {
  color: var(--teal)
}

.section-desc {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink3);
  max-width: 540px;
  line-height: 1.8
}

.alt-bg {
  background: var(--parch)
}

body.dark .alt-bg {
  background: var(--parch)
}

/* ═══════════ SECTION 2 — WHAT IS QVC ═══════════ */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem
}

@media(max-width:768px) {
  .what-grid {
    grid-template-columns: 1fr
  }
}

.what-visual {
  background: var(--vellum);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.what-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(170, 124, 34, 0.1), transparent 60%);
  border-radius: 50%;
}

.wv-arabic {
  font-family: var(--font-arabic);
  font-size: 3rem;
  font-weight: 900;
  color: var(--teal);
  direction: rtl;
  margin-bottom: 1rem;
  line-height: 1.2
}

.wv-quote {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--ink3);
  line-height: 1.75;
  border-left: 3px solid var(--gold3);
  padding-left: 1rem;
  text-align: left;
}

.wv-quote-source {
  font-size: .72rem;
  color: var(--gold2);
  font-weight: 600;
  font-style: normal;
  margin-top: .5rem;
  display: block
}

.what-points {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem
}

.what-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start
}

.wp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: var(--teal-soft);
  border: 1px solid var(--teal-pale)
}

.wp-text h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .25rem
}

.wp-text p {
  font-size: .82rem;
  color: var(--ink3);
  line-height: 1.6
}

/* ═══════════ WHY SECTION ═══════════ */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem
}

.why-card {
  background: var(--vellum);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .22s;
  background: radial-gradient(circle at 80% 10%, rgba(170, 124, 34, 0.05), transparent 60%);
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-pale)
}

.why-card:hover::after {
  opacity: 1
}

.wc-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  opacity: .15;
  line-height: 1;
  margin-bottom: .5rem
}

.wc-icon {
  font-size: 2rem;
  margin-bottom: .8rem
}

.wc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem
}

.wc-text {
  font-size: .84rem;
  color: var(--ink3);
  line-height: 1.7
}

.wc-stat {
  margin-top: 1rem;
  padding: .6rem .9rem;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold2);
}

/* ═══════════ JOURNEY / LEVELS ═══════════ */
.journey-track {
  position: relative;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.journey-track::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--beg-c), var(--int-c), var(--adv-c));
  opacity: .3;
}

.level-card {
  display: flex;
  gap: 1.5rem;
  position: relative;
  background: var(--vellum);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .22s, box-shadow .22s;
}

.level-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm)
}

.lc-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 3px solid;
  background: var(--cream);
}

.level-card.beg .lc-dot {
  border-color: var(--beg-c);
  box-shadow: 0 0 0 6px rgba(21, 128, 61, 0.1)
}

.level-card.int .lc-dot {
  border-color: var(--int-c);
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.1)
}

.level-card.adv .lc-dot {
  border-color: var(--adv-c);
  box-shadow: 0 0 0 6px rgba(126, 34, 206, 0.1)
}

.lc-body {
  flex: 1
}

.lc-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .22rem .65rem;
  border-radius: 100px;
  margin-bottom: .6rem;
}

.beg .lc-badge {
  background: rgba(21, 128, 61, .1);
  color: var(--beg-c);
  border: 1px solid rgba(21, 128, 61, .3)
}

.int .lc-badge {
  background: rgba(29, 78, 216, .1);
  color: var(--int-c);
  border: 1px solid rgba(29, 78, 216, .3)
}

.adv .lc-badge {
  background: rgba(126, 34, 206, .1);
  color: var(--adv-c);
  border: 1px solid rgba(126, 34, 206, .3)
}

.lc-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .35rem
}

.lc-subtitle {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--gold2);
  margin-bottom: .8rem
}

.lc-desc {
  font-size: .84rem;
  color: var(--ink3);
  line-height: 1.7;
  margin-bottom: 1rem
}

.lc-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.lc-chip {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink3);
  background: var(--parch);
  border: 1px solid var(--border2);
  padding: .25rem .65rem;
  border-radius: 100px;
}

.lc-chip span {
  color: var(--ink);
  font-weight: 700
}

.lc-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal);
  border: 1.5px solid var(--teal-pale);
  background: var(--teal-soft);
  padding: .4rem 1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .18s;
  margin-top: .8rem;
}

.lc-cta:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal)
}

/* ═══════════ COMPETITION STRUCTURE ═══════════ */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem
}

.comp-card {
  background: var(--vellum);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}

.comp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.comp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px
}

.comp-card.local::before {
  background: var(--beg-c)
}

.comp-card.regional::before {
  background: var(--int-c)
}

.comp-card.national::before {
  background: var(--adv-c)
}

.comp-card.global::before {
  background: linear-gradient(90deg, var(--gold2), var(--gold3))
}

.cc-icon {
  font-size: 2rem;
  margin-bottom: .8rem
}

.cc-level {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .4rem
}

.comp-card.local .cc-level {
  color: var(--beg-c)
}

.comp-card.regional .cc-level {
  color: var(--int-c)
}

.comp-card.national .cc-level {
  color: var(--adv-c)
}

.comp-card.global .cc-level {
  color: var(--gold2)
}

.cc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem
}

.cc-desc {
  font-size: .82rem;
  color: var(--ink3);
  line-height: 1.65;
  margin-bottom: 1rem
}

.cc-meta {
  font-size: .75rem;
  color: var(--ink4)
}

.cc-meta strong {
  color: var(--ink2);
  font-weight: 600
}

.cc-progress {
  height: 4px;
  background: var(--parch3);
  border-radius: 2px;
  margin-top: .8rem
}

.comp-card.local .cc-progress-bar {
  height: 100%;
  width: 25%;
  background: var(--beg-c);
  border-radius: 2px
}

.comp-card.regional .cc-progress-bar {
  height: 100%;
  width: 50%;
  background: var(--int-c);
  border-radius: 2px
}

.comp-card.national .cc-progress-bar {
  height: 100%;
  width: 75%;
  background: var(--adv-c);
  border-radius: 2px
}

.comp-card.global .cc-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold2), var(--gold3));
  border-radius: 2px
}

/* ═══════════ GLOBAL CHAMPIONSHIP HIGHLIGHT ═══════════ */
.champ-highlight {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: black;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.champ-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.12), transparent 50%);
  pointer-events: none;
}

.ch-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  padding: .28rem .8rem;
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.ch-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: .7rem;
  position: relative
}

.ch-desc {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  opacity: .85;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.8
}

.ch-formats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem
}

.cf-item {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: .8rem 1.2rem;
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  min-width: 130px
}

.cf-icon {
  font-size: 1.5rem;
  margin-bottom: .3rem
}

.ch-cta {
  background: var(--gold3);
  color: black;
  padding: .9rem 2.4rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.ch-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15)
}

/* ═══════════ STUDY TOOLS ═══════════ */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem
}

@media(max-width:640px) {
  .tools-grid {
    grid-template-columns: 1fr
  }
}

.tool-card {
  background: var(--vellum);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: transform .22s, box-shadow .22s;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.tc-icon-big {
  font-size: 3rem;
  margin-bottom: 1rem
}

.tc-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .2rem
}

.tc-subtitle {
  font-size: .75rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .8rem
}

.tc-desc {
  font-size: .85rem;
  color: var(--ink3);
  line-height: 1.7;
  margin-bottom: 1.2rem
}

.tc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.tc-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8rem;
  color: var(--ink3)
}

.tc-list li::before {
  content: '✦';
  color: var(--gold3);
  font-size: .6rem;
  margin-top: .2rem;
  flex-shrink: 0
}

.tc-flashcard {
  background: linear-gradient(145deg, var(--parch), var(--vellum));
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.2rem;
  margin-top: 1.2rem;
  text-align: center;
}

.fc-arabic {
  font-family: var(--font-arabic);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  direction: rtl;
  margin-bottom: .3rem
}

.fc-english {
  font-size: .9rem;
  color: var(--ink3);
  font-style: italic
}

.fc-root {
  font-size: .72rem;
  color: var(--gold2);
  margin-top: .3rem;
  font-weight: 600
}

/* ═══════════ SCIENCE / METHODOLOGY ═══════════ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem
}

.method-card {
  background: var(--vellum);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.mc-icon {
  font-size: 1.8rem;
  margin-bottom: .7rem
}

.mc-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem
}

.mc-desc {
  font-size: .8rem;
  color: var(--ink3);
  line-height: 1.65
}

.method-bar {
  margin-top: 3rem;
  background: var(--vellum);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2rem
}

.mb-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.2rem;
  text-align: center
}

.mb-bars {
  display: flex;
  flex-direction: column;
  gap: .8rem
}

.mb-bar-item {
  display: flex;
  align-items: center;
  gap: .8rem
}

.mb-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink3);
  width: 80px;
  flex-shrink: 0;
  text-align: right
}

.mb-track {
  flex: 1;
  height: 10px;
  background: var(--parch3);
  border-radius: 5px;
  overflow: hidden
}

.mb-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease
}

.mb-fill.beg {
  background: var(--beg-c);
  width: 70%
}

.mb-fill.int {
  background: var(--int-c);
  width: 50%
}

.mb-fill.adv {
  background: var(--adv-c);
  width: 30%
}

.mb-val {
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink2);
  width: 40px;
  flex-shrink: 0
}

/* ═══════════ CURRICULUM ═══════════ */
.curr-tabs {
  display: flex;
  gap: .4rem;
  background: var(--parch);
  padding: .35rem;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 2rem;
  border: 1px solid var(--border2)
}

.curr-tab {
  padding: .45rem 1rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  background: none;
  color: var(--ink3);
  transition: all .18s;
}

.curr-tab.active {
  background: white;
  color: var(--teal);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border)
}

body.dark .curr-tab.active {
  background: var(--parch2)
}

.curr-tab:hover:not(.active) {
  color: var(--ink);
  background: var(--parch2)
}

.curr-content {
  display: none
}

.curr-content.active {
  display: block
}

.curr-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--vellum);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
}

.ch-emoji {
  font-size: 2.5rem
}

.ch-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink)
}

.ch-info p {
  font-size: .82rem;
  color: var(--ink3);
  margin-top: .25rem
}

.ch-badge {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 700;
  padding: .28rem .7rem;
  border-radius: 100px
}

.ch-badge.beg {
  background: rgba(21, 128, 61, .1);
  color: var(--beg-c);
  border: 1px solid rgba(21, 128, 61, .3)
}

.ch-badge.int {
  background: rgba(29, 78, 216, .1);
  color: var(--int-c);
  border: 1px solid rgba(29, 78, 216, .3)
}

.ch-badge.adv {
  background: rgba(126, 34, 206, .1);
  color: var(--adv-c);
  border: 1px solid rgba(126, 34, 206, .3)
}

.curr-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--vellum);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border)
}

.curr-table th {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink3);
  padding: .75rem 1rem;
  background: var(--parch);
  border-bottom: 1px solid var(--border2);
  text-align: left;
}

.curr-table td {
  font-size: .82rem;
  color: var(--ink2);
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--border)
}

.curr-table tr:last-child td {
  border-bottom: none
}

.curr-table tr:hover td {
  background: var(--parch)
}

/* ═══════════ ADMIN SECTION ═══════════ */
.admin-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem
}

.admin-feat {
  background: var(--vellum);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform .2s;
}

.admin-feat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm)
}

.af-icon {
  font-size: 1.8rem;
  margin-bottom: .7rem
}

.af-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem
}

.af-desc {
  font-size: .8rem;
  color: var(--ink3);
  line-height: 1.65
}

.admin-cta-box {
  background: linear-gradient(135deg, var(--parch), var(--vellum));
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}

.acb-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem
}

.acb-desc {
  font-size: .88rem;
  color: var(--ink3);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto
}

/* ═══════════ FAQ ═══════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 2.5rem;
  max-width: 760px
}

.faq-item {
  background: var(--vellum);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .18s;
}

.faq-item.open {
  border-color: var(--teal-pale)
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-q:hover {
  color: var(--teal)
}

.faq-arrow {
  font-size: .7rem;
  color: var(--ink4);
  transition: transform .22s;
  flex-shrink: 0
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--teal)
}

.faq-a {
  display: none;
  padding: 0 1.4rem 1.1rem;
  font-size: .84rem;
  color: var(--ink3);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-a {
  display: block;
  animation: fadeUp .25s ease
}

/* ═══════════ SIGN UP MODAL ═══════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 32, 40, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex
}

.modal-box {
  background: var(--cream);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(26, 32, 40, 0.3);
  animation: fadeUp .3s ease;
}

body.dark .modal-box {
  background: var(--parch2)
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border2);
  background: var(--parch);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--ink3);
  transition: all .18s;
}

.modal-close:hover {
  background: var(--teal-soft);
  color: var(--teal)
}

.modal-emblem {
  text-align: center;
  margin-bottom: 1.2rem
}

.modal-emblem svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 4px 12px rgba(170, 124, 34, 0.3))
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: .4rem
}

.modal-subtitle {
  font-size: .84rem;
  color: var(--ink3);
  text-align: center;
  margin-bottom: 1.8rem;
  line-height: 1.6
}

.form-group {
  margin-bottom: 1rem
}

.form-label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  color: var(--ink2);
  margin-bottom: .4rem;
  letter-spacing: .04em;
  text-transform: uppercase
}

.form-input {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--parch);
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--ink);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}

.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(170, 124, 34, 0.12)
}

body.dark .form-input {
  background: var(--parch3)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: white;
  padding: .85rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 6px 20px rgba(170, 124, 34, 0.3);
  transition: transform .2s, box-shadow .2s;
  margin-top: 1.2rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(170, 124, 34, 0.4)
}

.form-note {
  font-size: .72rem;
  color: var(--ink4);
  text-align: center;
  margin-top: .9rem;
  line-height: 1.6
}

.form-note a {
  color: var(--teal);
  text-decoration: underline
}

/* ═══════════ FINAL CTA SECTION ═══════════ */
.final-cta {
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal2) 50%);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(140, 99, 24, 0.25), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 40%);
}

.fca-arabic {
  font-family: var(--font-arabic);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  direction: rtl;
  position: absolute;
  top: 2rem;
  right: 3rem;
  line-height: 1
}

.fca-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, .9);
  padding: .3rem .85rem;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  position: relative
}

.fca-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: black;
  margin-bottom: .8rem;
  position: relative;
  letter-spacing: .05em
}

.fca-sub {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: #000;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
  position: relative
}
[data-theme="light"] .fca-sub {
  color: rgb(203, 203, 203);
}

.fca-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}

.fca-btn-primary {
  background: var(--gold3);
  color: var(--ink);
  padding: 1rem 2.6rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.125);
  transition: transform .2s, box-shadow .2s;
}

.fca-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.225);
}

.fca-btn-secondary {
  background: rgba(255, 255, 255, .15);
  color: white;
  padding: 1rem 2.4rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all .2s;
}

.fca-btn-secondary:hover {
  background: rgba(255, 255, 255, .25)
}

.fca-mini-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  position: relative
}

.fca-stat {
  text-align: center;
  color: white
}

.fca-stat-n {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  opacity: .9
}

.fca-stat-l {
  font-size: .68rem;
  opacity: .6;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .2rem
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--parch);
  border-top: 1px solid var(--border2);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: .5rem
}

.footer-logo span {
  font-family: var(--font-arabic);
  color: var(--gold2);
  margin-right: .4rem
}

.footer-text {
  font-size: .78rem;
  color: var(--ink4);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto
}

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ═══════════ RESPONSIVE ═══════════ */
@media(max-width:640px) {
  .section {
    padding: 4rem 1.2rem
  }

  .hero {
    padding: 4rem 1.2rem 3rem
  }

  .stat-div {
    display: none
  }

  .hero-stats {
    gap: 1.5rem
  }

  .journey-track::before {
    display: none
  }

  .level-card {
    flex-direction: column
  }

  .lc-dot {
    width: 44px;
    height: 44px
  }

  .champ-highlight {
    padding: 2rem 1.2rem
  }

  .ch-formats {
    gap: .6rem
  }

  .cf-item {
    min-width: 110px;
    padding: .6rem .8rem
  }

  .modal-box {
    padding: 1.8rem
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .final-cta {
    padding: 5rem 1.2rem
  }

  .fca-arabic {
    display: none
  }
}