/* ===================================================================
   Mindly — ШІ для менеджерів в IT
   Reproduction of the Framer landing page, rebuilt as a clean static site.
   =================================================================== */

:root {
  /* Surfaces */
  --cream: #f2f1ee;
  --cream-2: #eae8e2;
  --white: #ffffff;
  --dark: #0a0a0a;
  --dark-2: #0e0e0e;
  --dark-card: #161616;
  --dark-card-2: #1d1d1d;

  /* Ink */
  --ink: #0c0c0c;
  --ink-soft: #2a2a2a;
  --muted: #6e6c68;          /* muted text on light */
  --muted-dark: #9b9b9b;     /* muted text on dark */

  /* Accent */
  --orange: #ff6f00;
  --orange-soft: rgba(255, 111, 0, .14);
  --red: #ff3b30;

  /* Lines */
  --line-light: rgba(0, 0, 0, .09);
  --line-lighter: rgba(0, 0, 0, .06);
  --line-dark: rgba(255, 255, 255, .10);
  --line-darker: rgba(255, 255, 255, .06);

  /* Radius */
  --r-btn: 9px;
  --r-card: 16px;
  --r-lg: 20px;
  --r-section: 30px;
  --r-pill: 100px;

  /* Layout */
  --container: 1240px;
  --gutter: 24px;

  --font: "Inter Tight", "Inter Tight Placeholder", system-ui, -apple-system, Arial, sans-serif;
  --hand: "Gloria Hallelujah", cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

/* ---------- Shared type ---------- */
.eyebrow {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.1px;
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--muted-dark); }

.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1.6px;
  color: var(--ink);
  margin-bottom: 28px;
}
.section-title--light { color: var(--white); }
.o { color: var(--orange); }

.handwriting { font-family: var(--hand); }

.section { padding: 92px 0; position: relative; }

/* dark sections are large rounded cards inset from the page edges */
.section--dark {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-section);
  margin: 0 12px;
  width: auto;
  overflow: hidden;
}

/* =========================== BUTTON =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.2px;
  border-radius: var(--r-btn);
  padding: 5px 5px 5px 18px;
  height: 46px;
  white-space: nowrap;
  transition: transform .12s ease, filter .12s ease;
}
.btn:hover { filter: brightness(1.05); }
.btn:active { transform: scale(.97); }
.btn__arrow {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 6px;
  display: grid; place-items: center;
  flex: none;
}
.btn__arrow img { width: 14px; height: 12px; }
.btn--block { display: flex; justify-content: space-between; width: 100%; }
.btn--inline { align-self: flex-start; }

/* =========================== NAV =========================== */
.nav {
  position: fixed;
  top: 28px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-inline: var(--gutter);
  pointer-events: none;
}
.nav__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 16px;
  padding: 8px 8px 8px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.10), 0 1px 0 rgba(0,0,0,.04);
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { width: 34px; height: 34px; }
.nav__links {
  display: flex;
  gap: 26px;
  margin: 0 18px;
}
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.2px;
  transition: color .15s;
}
.nav__links a:hover { color: var(--orange); }
.nav__cta { height: 42px; }
.nav__burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav__burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

/* =========================== HERO =========================== */
.hero { padding-top: 12px; }
.hero__card {
  position: relative;
  margin: 0 12px;
  border-radius: var(--r-section);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, #1c1c1c 0%, #0a0a0a 45%, #060606 100%);
  color: #fff;
  padding: 150px 24px 70px;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url("assets/images/GGNg8KoV9Iwu1Z89UqqLzdQWx0.png") center top / cover no-repeat;
  opacity: .55;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 0%, transparent 75%);
}
.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-pill);
  padding: 6px 8px 6px 16px;
  font-size: 13px;
  margin-bottom: 30px;
}
.countdown__label { color: #d6d6d6; }
.countdown__time {
  background: #fff; color: #0a0a0a;
  font-weight: 600; font-variant-numeric: tabular-nums;
  border-radius: var(--r-pill);
  padding: 5px 12px; font-size: 12.5px; letter-spacing: .3px;
}

.hero__title {
  text-align: center;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -1.8px;
  max-width: 900px;
  margin-bottom: 34px;
}

/* chat composer */
.composer {
  width: 100%;
  max-width: 640px;
  background: rgba(20,20,20,.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 18px 18px 12px;
  margin-bottom: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.composer__text { color: #cfcfcf; font-size: 15.5px; text-align: left; padding: 4px 4px 22px; }
.composer__bar { display: flex; align-items: center; justify-content: space-between; }
.composer__left, .composer__right { display: flex; align-items: center; gap: 8px; }
.composer__icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  color: #c9c9c9; border: 1px solid var(--line-dark);
}
.composer__icon:hover { background: rgba(255,255,255,.06); }
.composer__tools {
  display: inline-flex; align-items: center; gap: 7px;
  height: 34px; padding: 0 14px; border-radius: 9px;
  border: 1px solid var(--line-dark); color: #d6d6d6; font-size: 14px;
}
.composer__send {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: #fff; color: #0a0a0a;
}

.hero__actions {
  display: flex; align-items: center; gap: 26px;
  flex-wrap: wrap; justify-content: center;
}
.social-proof { display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatars img {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; border: 2px solid #0a0a0a; margin-left: -10px;
}
.avatars img:first-child { margin-left: 0; }
.avatars--center { justify-content: center; margin: 0 auto 22px; }
.avatars--center img { border-color: var(--cream); }
.social-proof__text { font-size: 14px; color: #cfcfcf; line-height: 1.25; }

/* hero media (podcast image) */
.hero__media { margin-top: -40px; position: relative; z-index: 3; }
.hero__media img {
  width: 100%; border-radius: var(--r-lg);
  aspect-ratio: 16 / 7; object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,.18);
}

/* =========================== PAINS =========================== */
.pains { position: relative; }
.pains__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px 60px; max-width: 980px; margin: 40px auto 0;
}
.pain { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.pain__icon { width: 34px; height: 34px; }
.pain p { font-size: 16px; color: var(--ink-soft); max-width: 260px; }

/* scribbles (handwritten accents) */
.scribble { position: absolute; font-size: 17px; color: var(--ink); transform: rotate(-7deg); line-height: 1.2; }
.scribble--pains { top: 150px; right: 8%; }
.scribble--results { top: 150px; right: 10%; }
.scribble--pop { color: #cfcfcf; transform: rotate(-6deg); position: static; display: inline-block; margin-left: 6px; }
.scribble--final { color: var(--ink); position: static; transform: rotate(-5deg); }

/* =========================== INTRO (dark) =========================== */
.intro__grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: 22px; margin-top: 36px;
}
.intro__feature {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 0% 100%, rgba(255,111,0,.55) 0%, rgba(255,111,0,.05) 38%, transparent 60%), var(--dark-card);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
  min-height: 320px;
}
.intro__feature-title { font-size: 32px; font-weight: 500; line-height: 1.12; letter-spacing: -1px; margin-top: auto; }
.intro__feature-desc { color: var(--muted-dark); font-size: 15px; line-height: 1.55; }
.chip {
  display: inline-block; background: rgba(255,255,255,.08);
  border: 1px solid var(--line-dark); color: #fff;
  font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: var(--r-pill);
}
.chip--orange { background: var(--orange); border-color: transparent; color: #fff; }

.intro__points { display: flex; flex-direction: column; }
.intro__points li {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 6px;
  border-bottom: 1px solid var(--line-darker);
}
.intro__points li:first-child { padding-top: 6px; }
.intro__points li:last-child { border-bottom: none; }
.intro__points li > img {
  width: 52px; height: 52px; flex: none;
  background: var(--dark-card); border: 1px solid var(--line-dark);
  border-radius: 12px; padding: 9px;
}
.point__eyebrow { font-size: 12px; letter-spacing: .8px; color: var(--muted-dark); margin-bottom: 7px; }
.point__text { font-size: 17px; color: #e6e6e6; line-height: 1.35; }
.point__text strong { color: #fff; font-weight: 600; }

.intro__lead { text-align: center; color: var(--muted-dark); margin: 56px 0 22px; font-size: 17px; }

/* quote */
.quote {
  text-align: center; max-width: 760px; margin: 48px auto 0;
  border-top: 1px solid var(--line-darker); padding-top: 44px;
  display: flex; flex-direction: column; align-items: center;
}
.quote__mark { width: 40px; margin-bottom: 18px; }
.quote blockquote { font-size: 22px; line-height: 1.4; letter-spacing: -.4px; color: #f0f0f0; }
.quote__author { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 28px; }
.quote__author > img:first-child { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote__author strong { font-size: 16px; font-weight: 600; }
.quote__author span { font-size: 13px; color: var(--muted-dark); }
.quote__logo { height: 22px; width: auto; opacity: .8; margin-top: 6px; filter: brightness(0) invert(1); }

/* =========================== MARQUEE =========================== */
.marquee { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; width: max-content; animation: scroll 26s linear infinite; }
.marquee__track > * { margin-right: 40px; flex: none; }
.marquee__track--slow { animation-duration: 38s; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.role {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-dark);
  border-radius: var(--r-pill); padding: 8px 18px 8px 8px; font-size: 15px; white-space: nowrap;
}
.role img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }

/* =========================== CURRICULUM =========================== */
.curriculum__grid { display: grid; grid-template-columns: 1fr 0.84fr; gap: 24px; margin-top: 38px; align-items: start; }

.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc-item { background: var(--white); border: 1px solid var(--line-lighter); border-radius: var(--r-card); overflow: hidden; }
.acc-head {
  width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: 4px 16px; text-align: left; padding: 22px 24px;
}
.acc-title { font-size: 21px; font-weight: 500; letter-spacing: -.5px; grid-column: 1; }
.acc-week { grid-column: 1; grid-row: 2; color: var(--muted); font-size: 14px; }
.acc-toggle { grid-column: 2; grid-row: 1 / span 2; width: 30px; height: 30px; border-radius: 50%; background: var(--cream); position: relative; }
.acc-toggle::before, .acc-toggle::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: opacity .2s, transform .2s; }
.acc-toggle::before { width: 12px; height: 2px; }
.acc-toggle::after { width: 2px; height: 12px; }
.acc-item.open .acc-toggle::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-body ol { padding: 0 24px 8px; counter-reset: step; }
.acc-body ol li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line-lighter); font-size: 15.5px; color: var(--ink-soft); counter-increment: step; }
.acc-body ol li::before { content: counter(step, decimal-leading-zero); color: var(--muted); font-variant-numeric: tabular-nums; font-size: 13px; padding-top: 2px; }

/* syllabus — real module content (lectures + practice + bonus/result) */
.syllabus { padding: 4px 24px; }
.syllabus li { padding: 13px 0; border-top: 1px solid var(--line-lighter); font-size: 15.5px; line-height: 1.45; color: var(--ink-soft); }
.syllabus li:first-child { border-top: none; }
.syl-lec { font-weight: 600; color: var(--ink); margin-right: 3px; }
.syl-prac { font-weight: 600; color: var(--orange); margin-right: 3px; }
.syl-note { padding: 16px 24px; border-top: 1px solid var(--line-lighter); }
.syl-note__label { display: block; font-size: 11.5px; letter-spacing: .7px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 7px; }
.syl-note p { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.syl-note--result { background: var(--cream); }
.syl-note--result .syl-note__label { color: var(--orange); }
.syl-sub { display: block; margin-top: 6px; color: var(--muted); font-size: 14.5px; line-height: 1.45; }
.curriculum__note { text-align: center; max-width: 620px; margin: 36px auto 0; font-style: italic; font-size: 14.5px; color: var(--muted); }

/* join card */
.join-card { background: var(--dark); color: #fff; border-radius: var(--r-lg); padding: 28px; position: sticky; top: 90px; }
.join-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.join-card__badge { font-size: 14px; color: #fff; }
.join-card__title { font-size: 36px; font-weight: 500; letter-spacing: -1px; margin-bottom: 24px; }
.join-card__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; padding-bottom: 24px; border-bottom: 1px solid var(--line-dark); margin-bottom: 20px; }
.join-card__benefits span { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #e3e3e3; }
.join-card__benefits img { width: 22px; height: 22px; }
.join-card__label { font-size: 11.5px; letter-spacing: .8px; color: var(--muted-dark); margin-bottom: 16px; }

.checklist { display: flex; flex-direction: column; gap: 13px; }
.checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink-soft); }
.checklist li::before {
  content: ""; flex: none; width: 19px; height: 19px; border-radius: 50%; margin-top: 1px;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.checklist--dark li { color: #d8d8d8; }
.join-card .btn { margin-top: 24px; }

/* partners */
.partners { margin-top: 70px; }
.partners__label { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.partners .marquee__track img, .featured-logo { height: 30px; width: auto; opacity: .55; }

/* =========================== RESULTS =========================== */
.results { position: relative; }
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--cream-2); border: 1px solid var(--line-light); border-radius: var(--r-lg);
  overflow: hidden; margin-top: 40px;
}
.stat { padding: 40px 36px; text-align: center; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); display: flex; flex-direction: column; align-items: center; gap: 14px; }
.stat:nth-child(3n) { border-right: none; }
.stat:nth-child(n+4) { border-bottom: none; }
.stat img { width: 34px; height: 34px; }
.stat h3 { font-size: 22px; font-weight: 600; letter-spacing: -.5px; }
.stat p { font-size: 15px; color: var(--muted); max-width: 280px; }

/* =========================== TESTIMONIALS =========================== */
.testi-video { position: relative; margin: 8px 0 30px; border-radius: var(--r-lg); overflow: hidden; }
.testi-video > img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92); color: #0a0a0a;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.play svg { margin-left: 3px; }
.testi-video__card {
  position: absolute; right: 18px; bottom: 18px;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 12px; padding: 8px 14px 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.testi-video__card img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.testi-video__card strong { font-size: 14px; display: block; }
.testi-video__card span { font-size: 12px; color: var(--muted); }

.testi-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.testi-card { background: var(--cream-2); border: 1px solid var(--line-light); border-radius: var(--r-card); padding: 18px; }
.testi-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.testi-card__head > img:first-child { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; }
.testi-card__head strong { font-size: 14.5px; display: block; }
.testi-card__head span { font-size: 12px; color: var(--muted); }
.testi-card__logo { margin-left: auto; height: 18px; width: auto; opacity: .7; }
.testi-card__row { font-size: 13.5px; }
.testi-card__row p { color: var(--ink-soft); margin-top: 8px; }
.testi-card__row + .testi-card__row { margin-top: 14px; }
.testi-card__row--after { background: var(--dark); color: #fff; border-radius: 12px; padding: 14px; margin: 14px -2px 0; }
.testi-card__row--after p { color: #e0e0e0; }
.tag { font-size: 11px; font-weight: 600; letter-spacing: .6px; color: var(--muted); }
.tag--orange { color: var(--orange); }

/* =========================== PRICING =========================== */
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.price-card { background: var(--dark-card); border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 28px; }
.price-card--featured { background: var(--dark-card-2); }
.price-card__tier, .price-card__pop { display: flex; align-items: center; margin-bottom: 14px; }
.price-card__tier { font-size: 14px; background: rgba(255,255,255,.08); border: 1px solid var(--line-dark); border-radius: var(--r-pill); padding: 5px 14px; width: fit-content; }
.price-card__price { font-size: 48px; font-weight: 600; letter-spacing: -2px; }
.price-card__desc { color: var(--muted-dark); font-size: 15px; margin: 6px 0 24px; }
.price-card__label { font-size: 11.5px; letter-spacing: .8px; color: var(--muted-dark); padding-top: 20px; border-top: 1px solid var(--line-dark); margin-bottom: 16px; }
.price-card .btn { margin-top: 24px; }
.price-card__note { text-align: center; color: var(--muted-dark); font-size: 13px; margin-top: 14px; }

.bonuses { margin-top: 60px; text-align: center; }
.bonuses__title { color: var(--muted-dark); font-size: 24px; font-weight: 500; letter-spacing: -.6px; margin-bottom: 28px; }
.bonuses__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bonus { background: var(--dark-card); border: 1px solid var(--line-dark); border-radius: var(--r-card); padding: 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.bonus img { width: 30px; height: 30px; }
.bonus p { font-size: 15px; color: #e6e6e6; }
.bonus span { color: var(--muted-dark); }

/* =========================== FIT =========================== */
.fit__media { margin-bottom: 56px; }
.fit__media img { width: 100%; aspect-ratio: 24 / 9; object-fit: cover; border-radius: var(--r-lg); -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%); mask-image: linear-gradient(to bottom, #000 55%, transparent 100%); }
.fit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
.fit-col { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--r-card); overflow: hidden; }
.fit-col__head { font-size: 12px; font-weight: 600; letter-spacing: .8px; text-align: center; padding: 12px; color: #fff; }
.fit-col--yes .fit-col__head { background: var(--orange); }
.fit-col--no .fit-col__head { background: var(--dark); }
.fit-col ul { padding: 22px 26px 26px; display: flex; flex-direction: column; gap: 16px; }
.fit-col li { display: flex; align-items: center; gap: 13px; font-size: 16px; color: var(--ink-soft); }
.fit-col li img { width: 22px; height: 22px; flex: none; }

/* =========================== INSTRUCTOR =========================== */
.instructor__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 22px; margin-top: 38px; }
.instructor__video { position: relative; border: 3px solid var(--orange); border-radius: var(--r-lg); overflow: hidden; }
.instructor__video img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.bio { background: var(--dark); color: #fff; border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; }
.bio__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 26px; }
.bio__head strong { font-size: 20px; font-weight: 600; display: block; }
.bio__head span { font-size: 13px; color: var(--muted-dark); }
.bio__sign { font-size: 20px; opacity: .9; }
.bio__label { font-size: 11.5px; letter-spacing: .8px; color: var(--muted-dark); margin-bottom: 14px; }
.bio__text { font-size: 16px; color: #dcdcdc; line-height: 1.45; }
.bio__creds { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.bio__creds li { position: relative; padding-left: 20px; font-size: 13.5px; line-height: 1.4; color: #bdbdbd; }
.bio__creds li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 2px; background: var(--orange); }
.bio__creds strong { color: #fff; font-weight: 600; }
.bio__foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 28px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.07); border: 1px solid var(--line-dark); display: grid; place-items: center; }
.socials a img { width: 18px; height: 18px; }
.bio__followers { font-size: 14px; color: var(--muted-dark); }
.bio .socials a img { filter: brightness(0) invert(1); }

.featured-label { text-align: center; color: var(--muted); font-size: 14px; margin: 64px 0 26px; }

/* =========================== COMMUNITY =========================== */
.community { overflow: hidden; }
.community__grid-floor {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--line-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 60%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 60%);
}
.community .container { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.community__lead { text-align: center; color: var(--muted); max-width: 540px; margin: 0 auto 26px; font-size: 16px; }
.community__globe { margin-top: 36px; max-width: 780px; width: 100%; }
.community__globe img { width: 100%; }

/* =========================== FAQ (dark) =========================== */
.accordion--faq { gap: 0; margin-top: 36px; }
.acc-item--faq { background: var(--dark-card); border: none; border-radius: 12px; margin-bottom: 12px; }
.acc-item--faq .acc-head { padding: 22px 24px; }
.acc-q { font-size: 18px; font-weight: 500; color: #fff; letter-spacing: -.3px; }
.acc-item--faq .acc-toggle { background: rgba(255,255,255,.08); }
.acc-item--faq .acc-toggle::before, .acc-item--faq .acc-toggle::after { background: #fff; }
.acc-item--faq .acc-body p { padding: 0 24px 24px; color: var(--muted-dark); font-size: 15.5px; line-height: 1.5; max-width: 90%; }
.faq__foot { text-align: center; margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.faq__foot p { color: var(--muted-dark); font-size: 18px; }

/* =========================== FINAL CTA =========================== */
.final { overflow: hidden; }
.final .community__grid-floor { -webkit-mask-image: radial-gradient(120% 90% at 50% 100%, #000 0%, transparent 65%); mask-image: radial-gradient(120% 90% at 50% 100%, #000 0%, transparent 65%); }
.final__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.final__lead { text-align: center; color: var(--muted); max-width: 460px; margin: 0 auto 28px; }
.final__cta { display: flex; align-items: center; gap: 24px; margin-bottom: 44px; }
.final__features { display: flex; gap: 50px; flex-wrap: wrap; justify-content: center; }
.final__features span { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; font-size: 15px; color: var(--ink-soft); max-width: 200px; }
.final__features img { width: 26px; height: 26px; }
.final__deco { position: absolute; font-size: 38px; }
.final__deco--rocket { left: 6%; top: 80px; transform: rotate(-12deg); }
.final__deco--code { right: 6%; top: 70px; }

/* =========================== FOOTER =========================== */
.footer { background: var(--cream-2); padding: 70px 0 36px; margin-top: 12px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr 1.3fr; gap: 30px; }
.footer__logo { height: 34px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 14px; max-width: 230px; margin-bottom: 22px; }
.footer__brand .socials a { background: #fff; border-color: var(--line-light); }
.footer__brand .socials a img { filter: brightness(0); opacity: .7; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.footer__col a, .footer__col span { color: var(--muted); font-size: 14px; }
.footer__col a:hover { color: var(--orange); }
.footer__contact { color: var(--ink) !important; font-size: 16px !important; font-weight: 500; }
.footer__addr { line-height: 1.5; }
.footer__bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line-light); }
.footer__bottom span { color: var(--muted); font-size: 13px; }

/* ===================================================================
   MOTION & UI LAYER
   Scroll reveals, entrance choreography, micro-interactions and the
   blocks that support them (progress bar, sticky CTA, to-top, tools).
   All decorative motion is transform/opacity-only (mobile-friendly)
   and is disabled under prefers-reduced-motion.
   =================================================================== */

/* ---------- shared easing ---------- */
:root {
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --ease-swift: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- focus states ---------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- scroll progress bar ---------- */
.progress {
  position: fixed; inset: 0 0 auto 0; height: 3px;
  z-index: 120; pointer-events: none;
}
.progress__bar {
  height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--orange), #ffb37a);
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ---------- scroll reveal system ----------
   Elements with [data-reveal] start hidden (only when JS is present and
   motion is allowed) and transition in when they enter the viewport.
   Variants: default = rise, "left", "right", "scale".
   --rd holds the per-item stagger delay set from JS. */
@media (prefers-reduced-motion: no-preference) {
  html.js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity .7s var(--ease-out) var(--rd, 0ms),
      transform .7s var(--ease-out) var(--rd, 0ms);
  }
  html.js [data-reveal="left"]  { transform: translateX(-36px); }
  html.js [data-reveal="right"] { transform: translateX(36px); }
  html.js [data-reveal="scale"] { transform: scale(.94); }
  html.js [data-reveal].is-visible { opacity: 1; transform: none; }
}

/* highlight swipe under accented words in section titles */
.section-title .o {
  background: linear-gradient(0deg, var(--orange-soft), var(--orange-soft))
              no-repeat left 92% / 100% .32em;
}
@media (prefers-reduced-motion: no-preference) {
  html.js .section-title .o { transition: background-size .9s var(--ease-out) .35s; }
  html.js .section-title[data-reveal]:not(.is-visible) .o { background-size: 0% .32em; }
}

/* ---------- hero entrance choreography ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .nav__pill { animation: nav-drop .7s var(--ease-out) .15s both; }
  html.js .hero__inner > * { animation: hero-rise .85s var(--ease-out) both; }
  html.js .hero__inner > :nth-child(1) { animation-delay: .1s; }
  html.js .hero__inner > :nth-child(2) { animation-delay: .22s; }
  html.js .hero__inner > :nth-child(3) { animation-delay: .34s; }
  html.js .hero__inner > :nth-child(4) { animation-delay: .46s; }
  html.js .hero__media { animation: hero-rise .9s var(--ease-out) .55s both; }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); filter: blur(5px); }
  to   { opacity: 1; transform: none; filter: none; }
}
@keyframes nav-drop {
  from { opacity: 0; transform: translateY(-16px); }
}

/* ambient glow drifting behind the hero */
.hero__card::after {
  content: ""; position: absolute; z-index: 1; pointer-events: none;
  left: 50%; top: -120px; width: 760px; height: 560px; margin-left: -380px;
  background: radial-gradient(closest-side, rgba(255, 111, 0, .16), transparent 70%);
  animation: glow-drift 14s ease-in-out infinite alternate;
}
@keyframes glow-drift {
  from { transform: translate3d(-70px, 0, 0) scale(1); }
  to   { transform: translate3d(70px, 40px, 0) scale(1.18); }
}

/* live dot in the countdown pill */
.countdown__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); position: relative; flex: none;
}
.countdown__dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(255, 59, 48, .7);
  animation: ping 1.8s cubic-bezier(0, 0, .2, 1) infinite;
}
@keyframes ping {
  0%       { transform: scale(.55); opacity: 1; }
  75%, 100% { transform: scale(1.5); opacity: 0; }
}

/* typewriter caret in the composer */
.composer__caret {
  display: none; width: 2px; height: 1.05em;
  background: var(--orange); margin-left: 3px;
  vertical-align: -.18em; border-radius: 1px;
}
.composer__text.is-typing .composer__caret {
  display: inline-block;
  animation: caret-blink 1.1s steps(2) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }

/* ---------- buttons ---------- */
.btn { transition: transform .15s ease, filter .15s ease, box-shadow .3s ease; }
.btn .btn__arrow img { transition: transform .3s var(--ease-out); }
@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 12px 26px -10px rgba(255, 111, 0, .6);
  }
  .btn:hover .btn__arrow img { transform: translateX(3px); }
}
.btn:active { transform: translateY(0) scale(.97); box-shadow: none; }

/* ---------- nav behaviour ---------- */
.nav { transition: transform .35s var(--ease-swift); }
.nav--hidden { transform: translateY(calc(-100% - 18px)); }
.nav__pill { transition: box-shadow .3s ease; }
.nav--scrolled .nav__pill { box-shadow: 0 12px 40px rgba(0, 0, 0, .16), 0 1px 0 rgba(0, 0, 0, .05); }

.nav__pill.open .nav__links {
  animation: menu-in .35s var(--ease-out) both;
  transform-origin: top center;
}
.nav__pill.open .nav__links li { animation: menu-item .4s var(--ease-out) both; }
.nav__pill.open .nav__links li:nth-child(1) { animation-delay: .04s; }
.nav__pill.open .nav__links li:nth-child(2) { animation-delay: .08s; }
.nav__pill.open .nav__links li:nth-child(3) { animation-delay: .12s; }
.nav__pill.open .nav__links li:nth-child(4) { animation-delay: .16s; }
.nav__pill.open .nav__links li:nth-child(5) { animation-delay: .20s; }
@keyframes menu-in   { from { opacity: 0; transform: translateY(-10px) scale(.98); } }
@keyframes menu-item { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- marquees ---------- */
.marquee__track--reverse { animation-direction: reverse; }
@media (hover: hover) {
  .marquee:hover .marquee__track { animation-play-state: paused; }
}

/* ---------- tools section ---------- */
.tools { padding-top: 0; }
.tools__rows { display: flex; flex-direction: column; gap: 16px; margin-top: 14px; }
.marquee__track--tools { animation-duration: 32s; }
.marquee__track--tools > * { margin-right: 14px; }
.tool-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line-light);
  border-radius: var(--r-pill); padding: 11px 22px;
  font-size: 15.5px; font-weight: 500; letter-spacing: -.2px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.tool-pill__emoji { font-size: 17px; line-height: 1; }
@media (hover: hover) {
  .tool-pill:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 111, 0, .5);
    box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .25);
  }
}

/* ---------- accordion polish ---------- */
.acc-item { transition: border-color .3s ease, box-shadow .3s ease; }
.acc-item.open {
  border-color: rgba(0, 0, 0, .14);
  box-shadow: 0 14px 34px -22px rgba(0, 0, 0, .25);
}
.acc-toggle { transition: background-color .25s ease, transform .45s var(--ease-out); }
.acc-item.open .acc-toggle { background: var(--orange); transform: rotate(180deg); }
.acc-item.open .acc-toggle::before,
.acc-item.open .acc-toggle::after { background: #fff; }
.acc-body { transition: max-height .5s var(--ease-swift); }
.acc-body > * {
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.acc-item.open .acc-body > * { opacity: 1; transform: none; transition-delay: .12s; }
.acc-item--faq.open { border-color: transparent; box-shadow: none; background: var(--dark-card-2); }

/* ---------- card micro-interactions ---------- */
.testi-card, .price-card, .bonus, .fit-col {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
@media (hover: hover) {
  .testi-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -22px rgba(0, 0, 0, .28); }
  .price-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, .22); }
  .bonus:hover      { transform: translateY(-4px); border-color: rgba(255, 255, 255, .22); }
  .fit-col:hover    { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(0, 0, 0, .25); }
}

.socials a { transition: background-color .25s ease, transform .25s ease, border-color .25s ease; }
.socials a img { transition: filter .25s ease; }
@media (hover: hover) {
  .socials a:hover { background: var(--orange); border-color: transparent; transform: translateY(-2px); }
  .footer__brand .socials a:hover img { filter: brightness(0) invert(1); opacity: 1; }
}

.avatars img { position: relative; transition: transform .25s ease; }
@media (hover: hover) {
  .avatars img:hover { transform: translateY(-4px) scale(1.08); z-index: 2; }
}

/* ---------- featured pricing card: orbiting border ---------- */
@property --spin {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.price-card--featured { position: relative; border-color: rgba(255, 111, 0, .45); }
.price-card--featured::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--r-lg);
  padding: 1.5px; pointer-events: none;
  background: conic-gradient(from var(--spin),
    transparent 0turn, transparent .62turn,
    rgba(255, 111, 0, .75) .78turn, #ffb37a .82turn,
    rgba(255, 111, 0, .75) .86turn, transparent .98turn);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  animation: border-spin 5s linear infinite;
}
@keyframes border-spin { to { --spin: 1turn; } }

/* ---------- play buttons: pulsing ring ---------- */
.play { transition: transform .25s ease; }
.play::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .65); opacity: 0;
  animation: play-ping 2.4s cubic-bezier(0, 0, .2, 1) infinite;
}
@keyframes play-ping {
  0%        { transform: scale(.85); opacity: .9; }
  70%, 100% { transform: scale(1.45); opacity: 0; }
}
@media (hover: hover) {
  .play:hover { transform: translate(-50%, -50%) scale(1.07); }
}

/* ---------- handwritten accents sway ---------- */
.scribble { animation: sway 4.5s ease-in-out infinite; }
@keyframes sway {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(-3deg); }
}

/* ---------- floating decorations (final CTA) ---------- */
.final__deco { animation: float-deco 6s ease-in-out infinite; }
.final__deco--code { animation-delay: -3s; }
@keyframes float-deco {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

/* ---------- animated stat numbers ---------- */
.stat-num { color: var(--orange); font-variant-numeric: tabular-nums; }

/* ---------- parallax targets ---------- */
[data-parallax] { will-change: transform; }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed; left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(12, 12, 12, .94);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 10px 10px 10px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  transform: translateY(calc(100% + 28px));
  transition: transform .45s var(--ease-out);
}
.mobile-cta.is-shown { transform: translateY(0); }
.mobile-cta__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mobile-cta__info strong {
  font-size: 14.5px; letter-spacing: -.2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mobile-cta__info span {
  font-size: 12px; color: var(--muted-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mobile-cta__btn { height: 42px; flex: none; }
@media (max-width: 860px) { .mobile-cta { display: flex; } }

/* ---------- back to top ---------- */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--dark); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s, background-color .25s ease;
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
@media (hover: hover) {
  .to-top:hover { background: var(--orange); transform: translateY(-2px); }
}
@media (max-width: 860px) { .to-top { display: none; } }

/* ---------- reduced motion: kill decorative animation ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track,
  .hero__card::after,
  .scribble,
  .final__deco,
  .countdown__dot::after,
  .play::after,
  .price-card--featured::before { animation: none !important; }
  .composer__caret { display: none !important; }
}

/* =========================== RESPONSIVE =========================== */
@media (max-width: 1080px) {
  .section-title { font-size: 40px; }
  .hero__title { font-size: 46px; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__pill.open .nav__links { display: flex; position: absolute; top: 64px; left: var(--gutter); right: var(--gutter); flex-direction: column; background: #fff; border-radius: 16px; padding: 18px; gap: 14px; box-shadow: 0 12px 40px rgba(0,0,0,.12); }
  .intro__grid, .curriculum__grid, .pricing__grid, .fit__grid, .instructor__grid { grid-template-columns: 1fr; }
  .pains__grid, .stats, .testi-cards, .bonuses__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(3n) { border-right: 1px solid var(--line-light); }
  .join-card { position: static; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .tools { padding-top: 0; }
  .tools__rows { gap: 12px; }
  .tool-pill { padding: 9px 16px; font-size: 14px; }
  .section-title { font-size: 32px; letter-spacing: -1px; }
  .hero__title { font-size: 34px; letter-spacing: -1px; }
  .hero__card { padding: 130px 16px 50px; }
  .pains__grid, .stats, .testi-cards, .bonuses__grid, .final__features { grid-template-columns: 1fr; }
  .stat { border-right: none !important; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .final__cta { flex-direction: column; }
  .scribble { display: none; }
}
