/* =========================================================
   Let's Fly Paragliding Club — letsfly.pk
   Aesthetic: light, airy "sky & clouds" theme — soft light-blue
   sky and white cloud panels you drift through as you scroll,
   with brand blues + a golden-hour accent and navy text.
   (The --ink-* / --white / --mist variable NAMES are kept for
   history; under this theme they alias to light surfaces / navy
   text — see the alias block in :root.)
   ========================================================= */

:root {
  /* ---- Light "sky & clouds" theme (from the logo + golden-hour accent) ---- */
  --cloud-0: #ffffff;   /* card surface            */
  --cloud-1: #f2f8fd;   /* near-white cloud panel   */
  --cloud-2: #e7f1f9;   /* soft cloud grey-blue     */
  --sky-1:   #d8e9f8;   /* light blue sky           */
  --sky-2:   #c4dcf1;   /* deeper light sky         */
  --ink:     #10314f;   /* headings                 */
  --ink-soft:#3f5a74;   /* body text                */
  --sky-deep:#125f97;   /* labels/eyebrows on light */
  --ocean:   #17568c;
  --sky-500: #2e93d4;
  --sky-400: #5ab4ec;
  --gold-500:#df9316;
  --gold-400:#f3af35;
  --gold-glow: rgba(223, 147, 22, .38);

  --line: rgba(23, 86, 140, .15);
  --line-strong: rgba(23, 86, 140, .30);

  /* aliases — existing rules keep working under the light theme */
  --ink-900: var(--cloud-2);
  --ink-850: var(--cloud-1);
  --ink-800: var(--cloud-0);
  --ink-700: var(--sky-1);
  --ink-600: var(--sky-2);
  --sky-300: var(--sky-deep);
  --mist:    var(--ink-soft);
  --white:   var(--ink);

  /* type */
  --f-display: 'Bricolage Grotesque', 'Sora', system-ui, sans-serif;
  --f-body: 'Sora', system-ui, -apple-system, sans-serif;
  --f-mono: 'Space Mono', ui-monospace, monospace;

  --maxw: 1180px;
  --pad: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 18px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--ink-soft);
  background: var(--cloud-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* fixed sky + drifting clouds behind everything */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1100px 460px at 14% 12%, rgba(255,255,255,.95), transparent 62%),
    radial-gradient(1000px 420px at 88% 26%, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(1300px 560px at 62% 72%, rgba(255,255,255,.85), transparent 62%),
    radial-gradient(900px 420px at 20% 92%, rgba(255,255,255,.7), transparent 62%),
    linear-gradient(180deg, var(--sky-2) 0%, var(--cloud-1) 34%, var(--sky-1) 62%, var(--cloud-2) 100%);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--white); line-height: 1.04; letter-spacing: -.02em; font-weight: 800; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 780px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold-500); color: #2a1a05; padding: .6rem 1rem; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; border-radius: 4px; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .32em;
  color: var(--sky-300); text-transform: uppercase; font-weight: 700;
  display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--sky-400); display: inline-block; }

.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section__head { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section__title { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-top: 1rem; }
.section__sub { margin-top: 1.1rem; color: var(--mist); font-size: 1.05rem; opacity: .85; }
.editable { color: var(--gold-400); font-style: italic; opacity: .9; }

/* ---------- buttons ---------- */
.btn {
  --bg: transparent; --fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--f-body); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--gold {
  --bg: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  --fg: #2a1a05;
  box-shadow: 0 8px 26px -8px var(--gold-glow);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px var(--gold-glow); }
.btn--ghost {
  border-color: var(--line-strong); --fg: var(--white);
  background: rgba(134,210,245,.04);
}
.btn--ghost:hover { border-color: var(--sky-400); background: rgba(79,176,232,.12); transform: translateY(-2px); }
.btn__wa { color: var(--gold-500); }
.btn--gold .btn__wa { color: inherit; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(247, 251, 254, .82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(23,86,140,.5);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto; padding: .8rem var(--pad);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.nav__brand img { width: 42px; height: 42px; }
.nav__brand-text { font-family: var(--f-display); font-weight: 800; color: var(--white); font-size: 1.1rem; line-height: 1; display: flex; flex-direction: column; gap: .18rem; }
.nav__brand-text small { font-family: var(--f-mono); font-weight: 400; font-size: .55rem; letter-spacing: .28em; color: var(--sky-300); }

.nav__links { display: flex; gap: 1.6rem; }
.nav__links a { font-size: .92rem; color: var(--mist); position: relative; padding: .3rem 0; opacity: .82; transition: opacity .2s, color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--gold-500); transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--white); opacity: 1; }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: inline-flex; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .4rem; cursor: pointer; }
.nav__toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= HERO ================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 7rem var(--pad) clamp(3rem, 7vw, 5rem);
  overflow: hidden; isolation: isolate;
}
.hero__sky {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(255,224,160,.6), transparent 46%),
    linear-gradient(180deg, #aed4f2 0%, #c9e3f7 38%, #e6f2fb 72%, #f5fafd 100%);
}
.hero__sun {
  position: absolute; top: 11%; right: 12%; width: 210px; height: 210px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,246,214,.98), rgba(255,222,150,.4) 44%, transparent 70%);
  filter: blur(3px); z-index: -1; animation: floaty 9s ease-in-out infinite;
}
.hero__contours { position: absolute; bottom: 0; left: 0; width: 100%; height: 46%; z-index: -1; }
.hero__contours path { fill: rgba(255,255,255,.6); }
.hero__contours path:last-child { fill: rgba(255,255,255,.9); }
.hero__glider {
  position: absolute; top: 17%; left: auto; right: 24%; color: rgba(16,49,79,.82);
  animation: glide 16s ease-in-out infinite; z-index: -1;
}

@keyframes glide {
  0%   { transform: translate(0,0) rotate(-3deg); }
  50%  { transform: translate(40px, 30px) rotate(4deg); }
  100% { transform: translate(0,0) rotate(-3deg); }
}
/* mobile: gentle vertical-only drift so the glider stays in its corner */
@keyframes glideMobile {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(16px) rotate(3deg); }
}
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(14px);} }

/* altimeter signature */
.altimeter {
  position: absolute; right: var(--pad); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem; z-index: 2;
  font-family: var(--f-mono); color: var(--sky-300);
}
.altimeter__label, .altimeter__val { font-size: .68rem; letter-spacing: .2em; }
.altimeter__val { color: var(--white); font-size: .9rem; }
.altimeter__val small { color: var(--sky-300); font-size: .62rem; }
.altimeter__scale { display: flex; flex-direction: column; gap: 9px; align-items: flex-end; }
.altimeter__scale i { display: block; height: 1px; background: var(--sky-300); opacity: .5; width: 14px; }
.altimeter__scale i:nth-child(odd) { width: 26px; opacity: .85; }

.hero__content { position: relative; max-width: 760px; z-index: 3; }
.hero__title {
  font-size: clamp(3rem, 9.5vw, 6.4rem); font-weight: 800; margin: 1.4rem 0 0;
  letter-spacing: -.03em; line-height: .95;
}
.hero__title span { display: block; }
.hero__title em { font-style: normal; color: var(--gold-400); }
.hero__lede { margin-top: 1.6rem; font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 40ch; color: var(--ink-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__ticks {
  list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.2rem;
  font-family: var(--f-mono); font-size: .78rem; letter-spacing: .04em; color: var(--sky-300);
}
.hero__ticks li { display: flex; align-items: center; gap: .5rem; }
.hero__ticks li::before { content: "✦"; color: var(--gold-500); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .3em; color: var(--sky-300); z-index: 3;
}
.hero__scroll svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(6px);} }

/* ================= STATS ================= */
.stats { background: var(--ink-850); border-block: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.stat { text-align: center; padding: .5rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--f-display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; color: var(--white); line-height: 1; }
.stat__plus { font-family: var(--f-display); font-size: 1.4rem; color: var(--gold-400); vertical-align: top; }
.stat__label { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .08em; color: var(--sky-300); margin-top: .7rem; text-transform: uppercase; }

/* ================= CARDS (experiences) ================= */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.card {
  background: linear-gradient(180deg, var(--cloud-0), var(--cloud-1));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem;
  position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  box-shadow: 0 14px 34px -22px rgba(23,86,140,.4);
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--sky-500), transparent); opacity: .7; }
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 26px 50px -26px rgba(23,86,140,.5); }
.card__icon { font-size: 1.9rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.28rem; margin-bottom: .6rem; }
.card p { font-size: .92rem; opacity: .82; }
.card__tag {
  display: inline-block; margin-top: 1.1rem; font-family: var(--f-mono); font-size: .64rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-400);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: .28rem .7rem;
}

/* ================= FLIGHT SITES ================= */
.site-list { display: flex; flex-direction: column; gap: 1.6rem; }
.site {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--cloud-0); transition: border-color .35s, box-shadow .35s;
  box-shadow: 0 18px 40px -26px rgba(23,86,140,.4);
}
.site:hover { border-color: var(--line-strong); box-shadow: 0 28px 54px -28px rgba(23,86,140,.5); }
.site--rev .site__media { order: 2; }
.site__media {
  position: relative; min-height: 320px; display: grid; place-items: center;
  background-size: cover; background-position: center; overflow: hidden;
  background: linear-gradient(160deg, var(--sky-1), var(--sky-2));
}
.site__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.site__media--khanpur { background:
  linear-gradient(180deg, rgba(6,19,33,.15), rgba(6,19,33,.55)),
  radial-gradient(120% 100% at 50% 0%, #86d2f5, #2e93d4 55%, #124a7c 100%); }
.site__media--tarbela { background:
  linear-gradient(180deg, rgba(6,19,33,.15), rgba(6,19,33,.55)),
  radial-gradient(120% 100% at 50% 0%, #ffc15e33, #2e93d4 45%, #0f2a45 100%); }
.site__media--swat { background:
  linear-gradient(180deg, rgba(6,19,33,.15), rgba(6,19,33,.55)),
  radial-gradient(120% 100% at 50% 0%, #9be0c9, #2e93d4 55%, #103b34 100%); }
.site__placeholder {
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; color: rgba(255,255,255,.75);
  border: 1px dashed rgba(255,255,255,.4); border-radius: 8px; padding: .5rem .9rem; text-transform: uppercase;
}
.site__body { padding: clamp(1.6rem, 3.5vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.site__readout {
  display: flex; flex-wrap: wrap; gap: 1.1rem; font-family: var(--f-mono); font-size: .68rem;
  letter-spacing: .1em; color: var(--sky-300); text-transform: uppercase; margin-bottom: 1rem;
}
.site__alt { color: var(--gold-400); }
.site__body h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .7rem; }
.site__body p { opacity: .84; }
.site__meta { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.4rem; }
.site__meta li { font-size: .85rem; }
.site__meta b { display: block; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em; color: var(--sky-300); text-transform: uppercase; margin-bottom: .2rem; font-weight: 700; }

/* ================= PACKAGES ================= */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.tier {
  background: linear-gradient(180deg, var(--cloud-0), var(--cloud-1));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem;
  display: flex; flex-direction: column; position: relative; transition: transform .35s var(--ease), box-shadow .35s;
  box-shadow: 0 16px 38px -24px rgba(23,86,140,.4);
}
.tier:hover { transform: translateY(-5px); box-shadow: 0 28px 54px -28px rgba(23,86,140,.5); }
.tier--feat {
  border-color: var(--gold-500);
  box-shadow: 0 26px 60px -28px var(--gold-glow), 0 14px 40px -26px rgba(23,86,140,.4);
  background: linear-gradient(180deg, #ffffff, #eaf3fb);
}
.tier__ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500)); color: #2a1a05;
  font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; padding: .32rem .9rem; border-radius: 999px; white-space: nowrap;
}
.tier__name { font-size: 1.4rem; }
.tier__for { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .06em; color: var(--sky-300); margin-top: .3rem; text-transform: uppercase; }
.tier__price { font-family: var(--f-display); font-size: 2.5rem; font-weight: 800; color: var(--white); margin: 1.2rem 0 .3rem; line-height: 1; }
.tier__cur { font-family: var(--f-mono); font-size: .8rem; color: var(--sky-300); letter-spacing: .05em; margin-right: .45rem; vertical-align: middle; }
.tier__list { list-style: none; padding: 0; margin: 1.3rem 0 1.8rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.tier__list li { position: relative; padding-left: 1.6rem; font-size: .92rem; opacity: .88; }
.tier__list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-400); font-weight: 700; }
.tier__list em { font-style: normal; color: var(--gold-400); }
.packages__note { text-align: center; margin-top: 2.2rem; font-size: 1rem; }
.packages__note a { color: var(--gold-400); border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
.packages__note a:hover { border-color: var(--gold-400); }

/* ================= TRAINER ================= */
.trainer { background: var(--ink-850); border-block: 1px solid var(--line); }
.trainer__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; }
.trainer__media {
  position: relative; min-height: 400px; border-radius: var(--radius); overflow: hidden;
  display: grid; place-items: center; border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--ocean), var(--ink-800) 72%);
}
.trainer__badge {
  position: absolute; right: 1.1rem; bottom: 1.1rem; z-index: 2; text-align: center;
  font-family: var(--f-mono); font-size: .64rem; letter-spacing: .1em; line-height: 1.6;
  color: #2a1a05; background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  padding: .7rem .95rem; border-radius: 12px; font-weight: 700;
  box-shadow: 0 10px 26px -10px var(--gold-glow);
}
.trainer__chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.6rem 0 2rem; }
.trainer__chips li {
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .03em; color: var(--mist);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: .5rem .95rem;
  display: flex; align-items: center; gap: .5rem;
}
.trainer__chips li::before { content: "✦"; color: var(--gold-500); }
.trainer__body .section__sub strong { color: var(--white); font-weight: 700; }
.trainer__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.trainer__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,19,33,.35)); pointer-events: none; }
.trainer__role { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .07em; color: var(--sky-300); text-transform: uppercase; margin-top: .6rem; }
.trainer__body .section__sub + .section__sub { margin-top: 1rem; }

/* ================= HOW ================= */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
.step { padding: 1.6rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cloud-0); position: relative; box-shadow: 0 14px 32px -24px rgba(23,86,140,.4); }
.step__num { font-family: var(--f-mono); font-size: 1.1rem; font-weight: 700; color: var(--gold-400); letter-spacing: .05em; }
.step h3 { font-size: 1.15rem; margin: .9rem 0 .5rem; }
.step p { font-size: .9rem; opacity: .82; }
.step:not(:last-child)::after {
  content: "→"; position: absolute; right: -.85rem; top: 2rem; color: var(--ocean); font-size: 1.1rem; z-index: 2;
}

/* ================= GALLERY ================= */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: .9rem; }
.ph {
  border-radius: 14px; display: grid; place-items: center; position: relative; overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--ink-700), var(--ocean));
}
.ph span { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em; color: rgba(255,255,255,.55); text-transform: uppercase; }
.ph--a { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, #124a7c, #2e93d4); }
.ph--b { background: linear-gradient(135deg, #0f2a45, #17568c); }
.ph--c { background: linear-gradient(135deg, #17568c, #86d2f5); }
.ph--d { grid-column: span 2; background: linear-gradient(135deg, #0f2a45, #2e93d4); }
.ph--e { background: linear-gradient(135deg, #124a7c, #ffc15e55); }

/* ================= REELS (video) ================= */
.reels__featured { max-width: 316px; margin: 0 auto clamp(2rem, 5vw, 3rem); }
.phone {
  position: relative; aspect-ratio: 9 / 16; border-radius: 30px; overflow: hidden; margin: 0;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, var(--ocean), var(--ink-850) 76%);
  box-shadow: 0 44px 90px -44px rgba(0,0,0,.8), inset 0 0 0 5px rgba(6,19,33,.5);
}
.phone__video, .reel__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #04101c; }
.phone__mute {
  position: absolute; right: .8rem; bottom: .8rem; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(6,19,33,.55); border: 1px solid rgba(255,255,255,.35); color: #fff;
  backdrop-filter: blur(6px); cursor: pointer; transition: background .25s, transform .25s var(--ease);
}
.phone__mute:hover { background: rgba(6,19,33,.8); transform: scale(1.06); }
.phone__mute[aria-pressed="true"] { background: linear-gradient(180deg, var(--gold-400), var(--gold-500)); color: #2a1a05; border-color: transparent; }

.reels__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; max-width: 860px; margin-inline: auto; }
.reel { position: relative; aspect-ratio: 9 / 16; border-radius: 22px; overflow: hidden; margin: 0; border: 1px solid var(--line); background: #04101c; }
.reel__poster {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; cursor: pointer;
  border: 0; padding: 0; color: #fff; width: 100%;
  background: linear-gradient(180deg, rgba(6,19,33,.06), rgba(6,19,33,.12) 55%, rgba(6,19,33,.38));
  transition: background .3s var(--ease);
}
.reel__poster:hover { background: linear-gradient(180deg, rgba(6,19,33,.14), rgba(6,19,33,.20) 55%, rgba(6,19,33,.46)); }
.reel__play {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.9); border: 1px solid #fff; color: var(--ocean);
  box-shadow: 0 10px 24px -8px rgba(23,86,140,.55); transition: transform .3s var(--ease); padding-left: 4px;
}
.reel__poster:hover .reel__play { transform: scale(1.12); background: #fff; }
.reel__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 2.4rem .9rem .8rem;
  background: linear-gradient(transparent, rgba(6,19,33,.92));
  font-family: var(--f-mono); font-size: .66rem; letter-spacing: .08em; color: #eaf4fb; pointer-events: none;
}
.reel.is-playing .reel__poster, .reel.is-playing .reel__cap { display: none; }
.reel__video[controls] { z-index: 3; }

/* ================= QUOTES ================= */
.quotes { background: var(--ink-850); border-block: 1px solid var(--line); }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; align-items: start; }
.quote {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.7rem;
  background: linear-gradient(180deg, var(--cloud-0), var(--cloud-1)); position: relative;
  box-shadow: 0 16px 38px -24px rgba(23,86,140,.4);
}
.quote::before { content: "\201C"; font-family: var(--f-display); font-size: 3.4rem; color: var(--ocean); opacity: .28; line-height: 0; position: absolute; top: 1.7rem; left: 1.3rem; }
.quote p { font-size: 1rem; color: var(--ink-soft); }
.quote p:first-of-type { padding-top: 1.2rem; }
.quote p + p { margin-top: .9rem; }
.quote--long p { font-size: .94rem; }
.quote footer { margin-top: 1.2rem; font-family: var(--f-mono); font-size: .74rem; letter-spacing: .06em; color: var(--sky-300); }
.quote footer span { color: var(--white); }

/* ================= FAQ ================= */
.acc { display: flex; flex-direction: column; gap: .7rem; }
.acc__item { border: 1px solid var(--line); border-radius: 14px; background: var(--cloud-0); overflow: hidden; transition: border-color .3s, box-shadow .3s; box-shadow: 0 10px 26px -22px rgba(23,86,140,.4); }
.acc__item[open] { border-color: var(--line-strong); }
.acc__item summary {
  cursor: pointer; padding: 1.15rem 1.4rem; font-family: var(--f-display); font-weight: 700; color: var(--white);
  font-size: 1.05rem; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary::after { content: "+"; font-family: var(--f-mono); color: var(--gold-400); font-size: 1.4rem; transition: transform .3s var(--ease); }
.acc__item[open] summary::after { transform: rotate(45deg); }
.acc__body { padding: 0 1.4rem 1.2rem; }
.acc__body p { opacity: .84; font-size: .96rem; }

/* ================= CTA BAND ================= */
.cta-band { position: relative; padding-block: clamp(4.5rem, 9vw, 7rem); text-align: center; overflow: hidden; isolation: isolate; }
.cta-band__sky {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 120% at 50% 118%, rgba(255,214,140,.55), transparent 56%),
    radial-gradient(70% 90% at 20% 0%, rgba(255,255,255,.9), transparent 60%),
    linear-gradient(180deg, var(--cloud-1) 0%, var(--sky-1) 55%, var(--sky-2) 100%);
}
.cta-band__inner { max-width: 720px; }
.cta-band h2 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); margin: 1rem 0; }
.cta-band__sub { margin: 0 auto 2rem; max-width: 46ch; opacity: .88; font-size: 1.08rem; }

/* ================= FOOTER ================= */
.footer { background: var(--ink-900); border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 3rem; }
.footer__brand img { margin-bottom: 1rem; }
.footer__brand p { font-size: .92rem; opacity: .78; max-width: 34ch; }
.footer__col h4, .footer__contact h4 { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sky-300); margin-bottom: 1.1rem; font-weight: 700; }
.footer__col a, .footer__col span { display: block; font-size: .92rem; opacity: .82; margin-bottom: .6rem; transition: color .2s, opacity .2s; }
.footer__col a:hover { color: var(--gold-400); opacity: 1; }
.footer__bar {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-block: 1.4rem; font-size: .8rem;
  font-family: var(--f-mono); letter-spacing: .05em; color: var(--sky-300);
}

/* ================= FLOATING WHATSAPP ================= */
.fab {
  position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem); z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, #2ec26b, #1faa57); color: #fff;
  box-shadow: 0 12px 30px -8px rgba(31,170,87,.6); transition: transform .3s var(--ease);
}
.fab:hover { transform: scale(1.08) translateY(-2px); }

/* ================= REVEAL ANIMATION ================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease) var(--d, 0s), transform .7s var(--ease) var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
/* hero reveals fire immediately (no observer wait) */
.hero .reveal { animation: heroIn .9s var(--ease) both; animation-delay: var(--d, 0s); opacity: 1; transform: none; }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { content: none; }
  .tiers, .quote-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .altimeter { display: none; }
  .trainer__grid { grid-template-columns: 1fr; }
  .trainer__media { min-height: 260px; order: -1; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open {
    background: rgba(247,251,254,.97); backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid var(--line); box-shadow: 0 10px 30px -18px rgba(23,86,140,.5);
  }
  .nav.is-open .nav__inner { flex-wrap: wrap; row-gap: 0; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 1.1rem;
    order: 3; width: 100%; padding: 1.2rem 0 .4rem; margin-top: .4rem;
    border-top: 1px solid var(--line);
  }
  .nav.is-open .nav__cta {
    display: inline-flex; order: 4; width: 100%; margin-bottom: 1.1rem;
  }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-right: 0; }
}
@media (max-width: 680px) {
  .hero__scroll { display: none; }
  .hero__glider { top: 7%; left: auto; right: 7%; animation: glideMobile 14s ease-in-out infinite; }
  .hero__glider svg { width: 82px; height: auto; }
  .hero__sun { width: 150px; height: 150px; top: 10%; }
  .site { grid-template-columns: 1fr; }
  .site--rev .site__media { order: 0; }
  .site__media { min-height: 220px; }
  .cards { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .ph--a { grid-row: span 1; }
  .reels__grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__ticks { gap: .9rem 1.2rem; }
}

/* ================= MOTION PREFERENCES ================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__sun, .hero__glider, .hero__scroll svg { animation: none; }
}
