*,*: :before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}


html {
  scroll-behavior: smooth;
  font-size: 16px
}


body {
  font-family: 'DM Sans',sans-serif;
  background: #040b16;
  color: #e8f0fe;
  overflow-x: hidden;
  line-height: 1.6
}



/* ── CSS VARS ── */
:root {
  --navy: #040b16;
  --deep: #07132a;
  --blue: #0a4dff;
  --electric: #00b4d8;
  --electric-glow: rgba(0, 180, 216, 0.4);
  
  --orange: #f97316;
  --orange-glow: rgba(249, 115, 22, 0.4);
  --gold: #fbbf24;
  --green: #22c55e;
  --white: #f0f6ff;
  
  --muted: #a0aec0;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  
  --sky: #0ea5e9;
  --pink: #ec4899;
  --purple: #a855f7;

  --font-main: 'DM Sans', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}



/* ── GRID BG ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  
  background-image: linear-gradient(rgba(0,180,216,.025) 1px,transparent 1px),
  linear-gradient(90deg,rgba(0,180,216,.025) 1px,transparent 1px);
  
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0
}

body::after {
  content: '';
  position: fixed;
  top: 10%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  animation: float 20s infinite alternate;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-10%, 10%); }
}



/* ── NAV ── */
nav {
  position: fixed;
  top: 20px;
  left: 5vw;
  right: 5vw;
  z-index: 1000;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  padding: 0 30px;
  height: 70px;
  
  background: rgba(4, 11, 22, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(4, 11, 22, 0.8);
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}


.nav-logo img {
  height: 34px;
  width: 34px;
  object-fit: contain;
  border-radius: 6px
}


.nav-logo span {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  
  color: var(--white);
  letter-spacing: .06em
}


.nav-logo span em {
  color: var(--electric);
  font-style: normal
}


.nav-links {
  display: flex;
  gap: 28px;
  list-style: none
}


.nav-links a {
  font-size: .82rem;
  color: var(--muted);
  text-decoration: none;
  
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s
}


.nav-links a:hover {
  color: var(--electric)
}


.nav-btn {
  padding: 9px 22px;
  background: var(--electric);
  color: var(--navy);
  
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .2s
}


.nav-btn:hover {
  background: #fff;
  transform: translateY(-1px)
}


@media(max-width:768px) {
  .nav-links {
    display: none
  }
}



/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  padding: 100px 5vw 60px;
  position: relative;
  overflow: hidden
}


.hero-bg {
  position: absolute;
  inset: 0;
  
  background-image: url('../assets/images/img_0a22a77e.jpg');
  
  background-size: cover;
  background-position: center;
  z-index: 0
}


.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  
  background: linear-gradient(110deg,rgba(4,11,22,.97) 0%,rgba(4,11,22,.8) 55%,rgba(4,11,22,.45) 100%)
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px
}


.hero-eyebrow {
  font-family: 'JetBrains Mono',monospace;
  font-size: .72rem;
  
  letter-spacing: .2em;
  color: var(--electric);
  text-transform: uppercase;
  
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  
  animation: fadeUp .8s ease both
}


.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--electric)
}


h1.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  
  font-size: clamp(60px, 12vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  
  color: var(--white);
  text-shadow: 0 0 40px rgba(0, 180, 216, 0.2);
  animation: fadeUp 1s 0.1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

h1.hero-title span {
  color: var(--electric);
  position: relative;
  display: inline-block;
}

h1.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.1em;
  background: var(--electric);
  opacity: 0.3;
  transform: skewX(-15deg);
}


.hero-sub {
  font-size: clamp(.95rem,2vw,1.15rem);
  color: var(--muted);
  
  max-width: 520px;
  margin: 22px 0 36px;
  animation: fadeUp .8s .2s ease both;
  line-height: 1.7
}


.hero-sub strong {
  color: var(--white);
  font-weight: 600
}


.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: var(--font-main);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric), #00d2ff);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.5);
  background: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  border-color: var(--electric);
  color: var(--electric);
  background: rgba(0, 180, 216, 0.05);
  transform: translateY(-3px);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), #ff8c00);
  color: #fff;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-orange:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
  background: #fff;
  color: var(--orange);
}


.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  margin-top: 48px;
  
  animation: fadeUp .8s .4s ease both;
  flex-wrap: wrap
}


.hstat {
  text-align: left
}


.hstat-n {
  font-family: var(--font-heading);
  font-weight: 900;
  
  font-size: 3rem;
  color: var(--electric);
  line-height: 1;
  text-shadow: 0 0 20px var(--electric-glow);
}


.hstat-l {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em
}



/* ── SECTION BASE ── */
section {
  position: relative;
  padding: 80px 5vw;
  z-index: 1
}


.sec-label {
  font-family: 'JetBrains Mono',monospace;
  font-size: .7rem;
  
  letter-spacing: .2em;
  color: var(--electric);
  text-transform: uppercase;
  
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}


.sec-label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--electric)
}


.sec-title {
  font-family: var(--font-heading);
  font-weight: 800;
  
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--white);
}


.sec-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75
}


.dark-bg {
  background: var(--deep)
}



/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  margin-top: 52px
}


@media(max-width:900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr
  }
}


.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 40px 30px;
  backdrop-filter: blur(4px);
  
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 180, 216, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-8px);
  border-color: var(--electric);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.why-card:hover::before {
  opacity: 1;
}


.why-icon {
  font-size: 1.8rem;
  margin-bottom: 12px
}


.why-ttl {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 8px
}


.why-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65
}



/* ── PROGRAM TOGGLE ── */
.program-toggle {
  display: flex;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  
  border-radius: 6px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px
}


.ptab {
  padding: 10px 28px;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 600;
  
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
  
  transition: all .25s;
  font-family: 'DM Sans',sans-serif
}


.ptab.active {
  background: var(--electric);
  color: var(--navy)
}


.ptab.active-orange {
  background: var(--orange);
  color: #fff
}


.program-panel {
  display: none
}


.program-panel.active {
  display: block
}



/* ── PROGRAM CARDS ── */
.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 4px
}


@media(max-width:700px) {
  .prog-grid {
    grid-template-columns: 1fr
  }
}


.prog-card {
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.prog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--electric);
  opacity: 0.5;
  transition: opacity 0.4s;
}

.prog-card:hover {
  transform: translateY(-10px);
  border-color: var(--electric);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.prog-card:hover::after {
  opacity: 1;
}

.prog-card.feat {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249,115,22, 0.05);
}

.prog-card.feat::after {
  background: var(--orange);
}

.prog-card.feat:hover {
  border-color: var(--orange);
}


.prog-tag {
  display: inline-block;
  font-family: 'JetBrains Mono',monospace;
  font-size: .62rem;
  
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  
  background: rgba(0,180,216,.12);
  color: var(--electric);
  margin-bottom: 20px
}


.prog-tag.org {
  background: rgba(249,115,22,.14);
  color: var(--orange)
}


.prog-name {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 2rem;
  font-weight: 800;
  
  letter-spacing: .04em;
  margin-bottom: 4px
}


.prog-sub {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 22px
}


.photo-strip {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.photo-strip img {
  width: 50%;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  transition: transform 0.4s ease;
}

.photo-strip img:hover {
  transform: scale(1.03);
  border-color: var(--electric);
}


.prog-detail {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .86rem
}


.prog-detail:last-of-type {
  border-bottom: none
}


.pdl {
  color: var(--muted);
  min-width: 80px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em
}


.pdv {
  color: var(--white);
  font-weight: 500
}






/* ── KIDS SECTION ── */
.kids-section {
  background: linear-gradient(160deg,#0c1f3a 0%,#071428 60%,#040b16 100%)
}


.kids-hero-banner {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0ea5e9, #0284c7, #4f46e5);
  background-size: 200% 200%;
  animation: gradientBG 15s ease infinite;
  
  padding: 60px 50px;
  position: relative;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(2, 132, 199, 0.3);
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.kids-hero-banner::after {
  content: '✈️';
  position: absolute;
  right: 40px;
  top: 50%;
  
  transform: translateY(-50%);
  font-size: 5rem;
  opacity: .15
}


.kids-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 5px 14px;
  
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 14px
}


.kids-title {
  font-family: 'Barlow Condensed',sans-serif;
  font-weight: 900;
  
  font-size: clamp(36px,5vw,58px);
  color: #fff;
  line-height: .95;
  margin-bottom: 12px
}


.kids-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  line-height: 1.6
}


.kids-stats {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap
}


.kstat {
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 12px 18px;
  text-align: center
}


.kstat-n {
  font-family: 'Barlow Condensed',sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1
}


.kstat-l {
  font-size: .68rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .1em
}



/* ── AIRCRAFT CARDS ── */
.aircraft-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 36px
}


@media(max-width:900px) {
  .aircraft-grid {
    grid-template-columns: 1fr
  }
}


.aircraft-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.aircraft-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--white);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

.ac-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.aircraft-card:hover .ac-img {
  transform: scale(1.1);
}

.ac-body {
  padding: 30px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
}


.aircraft-card.jet {
  border-color: #22c55e
}


.aircraft-card.butterfly {
  border-color: #0ea5e9
}


.aircraft-card.quad {
  border-color: #f97316
}


.ac-tag {
  font-family: 'JetBrains Mono',monospace;
  font-size: .6rem;
  letter-spacing: .14em;
  
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px
}


.ac-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.ac-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}



/* ── FUN CARDS ── */
.fun-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 28px
}


@media(max-width:900px) {
  .fun-grid {
    grid-template-columns: 1fr 1fr
  }
}


.fun-card {
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.fun-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.fun-card.sky { border-color: var(--sky); }
.fun-card.green { border-color: var(--green); }
.fun-card.orange { border-color: var(--orange); }
.fun-card.purple { border-color: var(--purple); }
.fun-card.yellow { border-color: var(--gold); }
.fun-card.pink { border-color: var(--pink); }


.fun-emoji {
  font-size: 2rem;
  margin-bottom: 10px
}


.fun-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.fun-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}



/* ── TIMELINE ── */
.timeline {
  margin-top: 36px
}


.tl-step {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,180,216,.08)
}


.tl-step:last-child {
  border-bottom: none
}


.tl-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  
  justify-content: center;
  font-family: 'Barlow Condensed',sans-serif;
  font-weight: 900;
  
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0
}


.tl-content {
  flex: 1
}


.tl-time {
  font-family: 'JetBrains Mono',monospace;
  font-size: .68rem;
  color: var(--muted);
  
  letter-spacing: .1em;
  margin-bottom: 4px
}


.tl-title {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  
  color: var(--white);
  margin-bottom: 3px
}


.tl-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.55
}



/* ── CURRICULUM ── */
.days-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  margin-top: 44px
}


@media(max-width:900px) {
  .days-grid {
    grid-template-columns: 1fr 1fr
  }
}


.day-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 26px 22px;
  
  position: relative;
  transition: background .3s
}


.day-card:hover {
  background: rgba(0,180,216,.05)
}


.day-watermark {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: 'Barlow Condensed',sans-serif;
  
  font-weight: 900;
  font-size: 4.5rem;
  color: rgba(0,180,216,.06);
  line-height: 1
}


.day-lbl {
  font-family: 'JetBrains Mono',monospace;
  font-size: .6rem;
  color: var(--electric);
  
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px
}


.day-title {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--white)
}


.day-items {
  list-style: none;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.75
}


.day-items li::before {
  content: '→ ';
  color: var(--electric);
  font-weight: 700
}



/* ── FLEET ── */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px
}


@media(max-width:700px) {
  .fleet-grid {
    grid-template-columns: 1fr
  }
}


.fleet-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.fleet-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, var(--electric) 360deg);
  animation: rotate 10s linear infinite;
  opacity: 0.05;
  pointer-events: none;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.fleet-card:hover {
  border-color: var(--electric);
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.2);
  transform: translateY(-5px);
}


.fleet-hdr {
  padding: 22px 26px 16px;
  background: rgba(0,180,216,.04);
  
  border-bottom: 1px solid var(--border)
}


.fleet-tag {
  font-family: 'JetBrains Mono',monospace;
  font-size: .58rem;
  
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 6px
}


.fleet-name {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .04em
}


.fleet-body {
  padding: 22px 26px
}


.spec-row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .82rem
}


.spec-row:last-child {
  border-bottom: none
}


.spec-k {
  color: var(--muted);
  min-width: 130px;
  font-size: .75rem
}


.spec-v {
  color: var(--white)
}



/* ── REWARDS ── */
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 44px
}


@media(max-width:900px) {
  .rewards-grid {
    grid-template-columns: 1fr 1fr
  }
}


@media(max-width:600px) {
  .rewards-grid {
    grid-template-columns: 1fr
  }
}


.reward-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  
  background: var(--card);
  transition: transform .3s
}


.reward-card:hover {
  transform: translateY(-3px)
}


.reward-card.gold-card {
  border-color: var(--gold);
  background: rgba(251,191,36,.04)
}


.reward-icon {
  font-size: 2rem;
  margin-bottom: 14px
}


.reward-title {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  
  letter-spacing: .04em;
  margin-bottom: 8px
}


.reward-title.gold {
  color: var(--gold)
}


.reward-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65
}



/* ── SKILLS WALL ── */
.skills-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.skill-pill {
  padding: 10px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(4px);
}

.skill-pill:hover {
  background: var(--electric);
  color: var(--navy);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px -5px rgba(0, 180, 216, 0.4);
  border-color: transparent;
}

.skill-dot {
  width: 6px;
  height: 6px;
  background: var(--electric);
  border-radius: 50%;
  transition: background 0.3s;
}

.skill-pill:hover .skill-dot {
  background: var(--navy);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



/* ── QUOTE ── */
.quote-section {
  background: linear-gradient(135deg,rgba(10,77,255,.12),rgba(0,180,216,.07));
  
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  
  padding: 70px 5vw;
  text-align: center
}


.quote-mark {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 5rem;
  font-weight: 900;
  
  color: var(--electric);
  opacity: .25;
  line-height: .8
}


.quote-text {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: clamp(1.4rem,3.5vw,2.4rem);
  
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--white);
  
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.1
}


.quote-attr {
  font-family: 'JetBrains Mono',monospace;
  font-size: .74rem;
  
  color: var(--electric);
  letter-spacing: .12em;
  text-transform: uppercase
}



/* ── AFTER WORKSHOP ── */
.after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px
}


@media(max-width:700px) {
  .after-grid {
    grid-template-columns: 1fr
  }
}


.after-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card)
}


.after-card.accent {
  border-color: var(--orange);
  background: rgba(249,115,22,.04)
}


.after-title {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  
  letter-spacing: .04em;
  margin-bottom: 12px
}


.after-title.org {
  color: var(--orange)
}


.after-body {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px
}


.feat-list {
  list-style: none;
  font-size: .83rem;
  color: var(--muted)
}


.feat-list li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px
}


.feat-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--electric);
  
  border-radius: 50%;
  flex-shrink: 0
}



/* ── JOIN ── */
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px
}


@media(max-width:700px) {
  .join-grid {
    grid-template-columns: 1fr
  }
}


.join-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  
  background: var(--card);
  position: relative
}


.join-num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: 'Barlow Condensed',sans-serif;
  
  font-weight: 900;
  font-size: 4.5rem;
  color: rgba(0,180,216,.07);
  line-height: 1
}


.join-title {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  
  color: var(--electric);
  margin-bottom: 4px
}


.join-subtitle {
  font-family: 'JetBrains Mono',monospace;
  font-size: .68rem;
  color: var(--muted);
  
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px
}


.join-body {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.75
}



/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}


@media(max-width:700px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
}


.contact-title {
  font-family: 'Barlow Condensed',sans-serif;
  font-weight: 900;
  
  font-size: clamp(44px,7vw,80px);
  line-height: .9;
  margin-bottom: 20px
}


.contact-title span {
  color: var(--electric)
}


.contact-lead {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 400px
}


.contact-items {
  margin-top: 16px
}


.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  
  border-bottom: 1px solid rgba(255,255,255,.05)
}


.contact-item:last-child {
  border-bottom: none
}


.ci-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px
}


.ci-label {
  font-family: 'JetBrains Mono',monospace;
  font-size: .64rem;
  color: var(--muted);
  
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 3px
}


.ci-val {
  font-size: .9rem;
  color: var(--white);
  font-weight: 500
}



/* ── PHOTO STRIPS ── */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 36px;
  border-radius: 8px;
  overflow: hidden
}


.photo-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block
}



/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg,var(--electric),transparent);
  
  margin: 0 5vw;
  opacity: .15
}



/* ── FOOTER ── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  
  padding: 32px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  flex-wrap: wrap;
  gap: 12px
}


.footer-brand {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 1.4rem;
  
  font-weight: 800;
  color: var(--white);
  letter-spacing: .1em
}


.footer-brand em {
  color: var(--electric);
  font-style: normal
}


footer small {
  font-size: .75rem;
  color: var(--muted);
  font-family: 'JetBrains Mono',monospace
}



/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

to {
    opacity: 1;
    transform: translateY(0)
  }
}



/* ── IMAGE SECTIONS ── */
.img-full {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 8px
}


.img-caption {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  
  font-style: italic;
  margin-top: 6px;
  font-family: 'JetBrains Mono',monospace
}



/* ── MOBILE FIXES ── */
@media(max-width:600px) {
  
  section {
    padding: 56px 5vw
  }


  .kids-hero-banner {
    padding: 24px 20px
  }


  .aircraft-grid {
    grid-template-columns: 1fr
  }


  .fun-grid {
    grid-template-columns: 1fr
  }


  .after-grid,.join-grid {
    grid-template-columns: 1fr
  }


  .fleet-grid,.prog-grid {
    grid-template-columns: 1fr
  }
}