/* ═══════════════════════════════════════════════════════════════
   Gerasimov Trading — Apple-style Design System
   ═══════════════════════════════════════════════════════════════ */

/* SF Pro — use system font stack (Apple devices render native SF Pro;
   other platforms fall back to BlinkMacSystemFont / Helvetica Neue). */

:root {
  /* ─ Colors ─ */
  --c-black:       #000000;
  --c-light:       #f5f5f7;
  --c-near-black:  #1d1d1f;
  --c-white:       #ffffff;

  --c-blue:        #0071e3;   /* primary CTA + focus */
  --c-link:        #0066cc;   /* inline links on light */
  --c-link-dark:   #2997ff;   /* links on dark bg */

  --c-text-light:  #1d1d1f;
  --c-text-dark:   #f5f5f7;
  --c-muted-light: rgba(0, 0, 0, 0.72);
  --c-muted-dark:  rgba(245, 245, 247, 0.72);
  --c-tertiary:    rgba(0, 0, 0, 0.48);

  --c-border-light: rgba(0, 0, 0, 0.12);
  --c-border-dark:  rgba(255, 255, 255, 0.16);

  /* ─ Fonts ─ */
  --f-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --f-text:    'SF Pro Text',    -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --container: 980px;
  --container-wide: 1440px;
}

/* ─ Reset ──────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--f-text);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.374px;
  color: var(--c-text-light);
  background: var(--c-white);
  overflow-x: hidden;
}

/* Глобально: убираем рези­но­вый overscroll-bounce, чтобы лендинг не «отскакивал» */
html, body { overscroll-behavior: none; }
.tm-track-wrap, .cal-months,
.mobile-nav, .mega-menu { overscroll-behavior: contain; }

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

/* ─ Typography classes ────────────────────────────────────────── */
.t-display {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.005em;
}
@media (max-width: 734px) { .t-display { font-size: 40px; letter-spacing: 0; } }
@media (max-width: 480px) { .t-display { font-size: 32px; } }

.t-hero {
  font-family: var(--f-display);
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.t-section {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.003em;
}
@media (max-width: 734px) { .t-section { font-size: 32px; } }

.t-tile {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}
@media (max-width: 734px) { .t-tile { font-size: 28px; } }

.t-eyebrow {
  font-family: var(--f-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.t-eyebrow.on-dark { color: var(--c-link-dark); }

.t-sub {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.009em;
  max-width: 660px;
  margin: 0 auto;
}
@media (max-width: 734px) { .t-sub { font-size: 19px; } }

.t-body { font-size: 17px; line-height: 1.47; letter-spacing: -0.022em; }
.t-caption { font-size: 14px; line-height: 1.43; letter-spacing: -0.016em; color: var(--c-muted-light); }
.t-caption.on-dark { color: var(--c-muted-dark); }
.t-micro { font-size: 12px; line-height: 1.33; letter-spacing: -0.01em; }

.on-dark { color: var(--c-text-dark); }
.center { text-align: center; }

/* ─ Links: "Подробнее ›" — on hover, a dash extends from the text
   and the chevron slides forward, so the link literally becomes
   an arrow (Подробнее ── ›). No underline anywhere. ─────────── */
.a-link {
  color: var(--c-link);
  font-size: 17px;
  line-height: 1.24;
  letter-spacing: -0.022em;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
}
.a-link.on-dark { color: var(--c-link-dark); }
.a-link::before {
  content: '';
  order: 1;
  align-self: center;
  width: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  margin: 0;
  transform: translateY(-1px);
  transition: width .42s cubic-bezier(0.22, 1, 0.36, 1),
              margin .42s cubic-bezier(0.22, 1, 0.36, 1),
              opacity .25s ease-out;
  opacity: 0;
}
.a-link::after {
  content: '›';
  order: 2;
  font-size: 1.1em;
  line-height: 1;
  margin-left: 4px;
  transition: transform .42s cubic-bezier(0.22, 1, 0.36, 1);
}
.a-link:hover,
.a-link:focus-visible { text-decoration: none; }
.a-link:hover::before,
.a-link:focus-visible::before {
  width: 12px;
  margin: 0 4px 0 6px;
  opacity: 1;
}
.a-link:hover::after,
.a-link:focus-visible::after { transform: translateX(2px); }

/* ─ Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 26px;
  border-radius: 980px;
  font-family: var(--f-text);
  font-size: 17px;
  line-height: 1.17;
  letter-spacing: -0.022em;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--c-blue);
  color: var(--c-white);
  border-color: var(--c-blue);
}
.btn-primary:hover { background: #0077ed; border-color: #0077ed; }

.btn-ghost {
  background: transparent;
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.btn-ghost:hover { background: rgba(0, 113, 227, 0.06); }

.btn-ghost.on-dark {
  color: var(--c-link-dark);
  border-color: var(--c-link-dark);
}
.btn-ghost.on-dark:hover { background: rgba(41, 151, 255, 0.12); }

.btn:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 2px; }

/* ─ Layout primitives ─────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 22px; }

.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 1100px) { .section { padding: 100px 0; } }
@media (max-width: 734px)  { .section { padding: 72px 0; } }

.section--hero {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 64px);
  min-height: 720px;
}
@media (max-width: 734px) {
  .section--hero {
    height: calc(100svh - 64px);
    min-height: 620px;
  }
}
.section--hero .hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section--dark { background: var(--c-black); color: var(--c-text-dark); }
.section--light { background: var(--c-light); color: var(--c-text-light); }
.section--white { background: var(--c-white); color: var(--c-text-light); }

/* Alternating section pairs get a micro gap (apple.com's signature "tile stack") */
.tile-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px 22px;
  background: var(--c-light);
  max-width: var(--container-wide);
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 1100px) { .tile-stack { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 734px)  { .tile-stack { grid-template-columns: repeat(2, 1fr); padding: 8px; gap: 8px; } }
@media (max-width: 480px)  { .tile-stack { grid-template-columns: 1fr; } }

.tile {
  position: relative;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
  transition: transform .35s cubic-bezier(0.16,1,0.3,1);
}
.tile:hover { transform: translateY(-4px); }
@media (max-width: 734px) {
  .tile { min-height: 340px; padding: 28px 18px; border-radius: 14px; }
}
@media (max-width: 480px) {
  .tile { min-height: 280px; padding: 26px 18px; }
}
.tile--dark { background: var(--c-black); color: var(--c-text-dark); }
.tile--light { background: var(--c-white); color: var(--c-text-light); }
.tile--gray  { background: var(--c-light); color: var(--c-text-light); }

.tile-copy { position: relative; z-index: 2; max-width: 720px; }
.tile-eyebrow {
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--c-tertiary);
}
.tile--dark .tile-eyebrow { color: rgba(245,245,247,0.5); }

.tile-title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.003em;
  margin-bottom: 6px;
}
@media (max-width: 480px) { .tile-title { font-size: 26px; } }

.tile-sub {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.011em;
  margin-bottom: 18px;
}

.tile-ctas { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.tile .btn { padding: 9px 16px; font-size: 14px; min-height: 36px; }

/* Hero candle "product" */
.tile-product {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 30px;
  pointer-events: none;
}

/* ─ Nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  height: 64px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: var(--c-white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 600px) { .nav { height: 56px; } }
.nav-inner {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 600px) { .nav-inner { padding: 0 18px; } }
.nav-logo {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: #fff;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; }
.nav-links { display: flex; gap: 0; flex-wrap: nowrap; flex: 1; justify-content: center; }
.nav-links a {
  display: inline-flex; align-items: center;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.005em;
  color: #f5f5f7;
  height: 100%;
  transition: color .2s;
}
.nav-links a:hover { color: var(--c-white); text-decoration: none; }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-link-dark);
  padding: 0 14px;
  height: 100%;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { color: #fff; text-decoration: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta.hide-mobile { display: none; }
}

/* ─ Reveal animation ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(0.16,1,0.3,1), transform .8s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─ Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--c-light);
  color: var(--c-tertiary);
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: -0.01em;
  padding: 24px 0 20px;
  border-top: 1px solid var(--c-border-light);
}

/* Master pricing (single premium card) */
.master-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .master-grid { grid-template-columns: 1fr; gap: 48px; } }
.master-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px; margin-bottom: 8px; }
.master-amount {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--c-text-dark);
}
.master-amount i { font-style: normal; font-size: 0.5em; color: var(--c-muted-dark); font-weight: 500; margin-left: 4px; }
.master-crossed { font-family: var(--f-display); font-size: 22px; color: var(--c-muted-dark); text-decoration: line-through; opacity: 0.55; }
.master-discount {
  background: var(--c-link-dark);
  color: var(--c-black);
  font-family: var(--f-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 980px;
  line-height: 1;
  align-self: center;
}
.master-meta { font-family: var(--f-text); font-size: 15px; color: var(--c-muted-dark); letter-spacing: -0.01em; }
.master-right {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border-dark);
  border-radius: 18px;
  padding: 36px 32px;
}
@media (max-width: 600px) { .master-right { padding: 28px 22px; border-radius: 14px; } }
.master-features-title {
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-link-dark);
  margin-bottom: 20px;
}
.master-features { display: flex; flex-direction: column; gap: 14px; }
.master-features li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  font-family: var(--f-text);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.022em;
  color: var(--c-text-dark);
}
.master-features li svg { margin-top: 2px; flex-shrink: 0; }
.footer-inner { max-width: 980px; margin: 0 auto; padding: 0 22px; }
.footer-legal { padding: 16px 0 0; border-top: 1px solid var(--c-border-light); margin-top: 16px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ─ FAQ accordion ──────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--c-border-light); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.011em;
  color: var(--c-text-light);
}
@media (max-width: 734px) { .faq-q { font-size: 17px; padding: 18px 0; } }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease-out, background .2s;
  color: var(--c-text-light);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--c-blue); color: #fff; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(0.16,1,0.3,1);
  color: var(--c-muted-light);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.022em;
}
.faq-a-inner { padding: 0 0 24px; max-width: 720px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ─ Candle viz (hero) ───────────────────────────────────── */
.candle-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  height: 180px;
  padding-top: 10px;
}
@media (max-width: 734px) { .candle-wrap { height: 120px; } }

/* ─ Pricing cards ─────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; align-items: stretch; }
@media (max-width: 1100px) { .price-grid { gap: 14px; margin-top: 36px; } }
@media (max-width: 900px)  { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--c-white);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: 0 4px 20px -8px rgba(0,0,0,0.08);
  border: 1px solid var(--c-border-light);
}
@media (max-width: 1100px) { .price-card { padding: 28px 22px; } }
@media (max-width: 600px)  { .price-card { padding: 24px 20px; border-radius: 14px; } }
/* Master plan spans both cols in 2-col mode */
@media (max-width: 900px) and (min-width: 601px) {
  .price-card--hi { grid-column: 1 / -1; }
}
.price-card--hi { border: 2px solid var(--c-blue); box-shadow: 0 8px 30px -8px rgba(0,113,227,0.25); }
.price-amount { font-family: var(--f-display); font-size: 34px; font-weight: 600; letter-spacing: -0.003em; line-height: 1; margin: 14px 0 4px; }
@media (max-width: 1100px) { .price-amount { font-size: 28px; } }
@media (max-width: 900px)  { .price-amount { font-size: 32px; } }
.price-crossed { font-size: 15px; color: var(--c-tertiary); text-decoration: line-through; margin-right: 8px; }
.price-features { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-features li { font-size: 15px; color: var(--c-muted-light); padding-left: 22px; position: relative; line-height: 1.4; }
.price-features li::before {
  content: '';
  position: absolute;
  left: 2px; top: 7px;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--c-blue);
  border-bottom: 1.5px solid var(--c-blue);
  transform: rotate(-45deg);
}

/* ─ Million Story (scroll-pinned) ─────────────────────────── */
.ms {
  height: 500vh;
  position: relative;
  background: var(--c-black);
}
.ms-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ms-track { position: relative; width: 100%; text-align: center; padding: 0 22px; }
.ms-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  pointer-events: none;
  padding: 0 22px;
}
.ms-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.ms-huge {
  font-family: var(--f-display);
  font-size: clamp(64px, 14vw, 180px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--c-text-dark);
}
.ms-huge .blue { color: var(--c-link-dark); }
.ms-caption {
  font-family: var(--f-display);
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.011em;
  color: var(--c-muted-dark);
  max-width: 680px;
  margin-top: 24px;
}
.ms-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.ms-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background .3s, transform .3s;
}
.ms-dot.active { background: var(--c-link-dark); transform: scale(1.35); }

/* Story (editorial) */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px)  { .story-grid { gap: 48px; } }
@media (max-width: 600px)  { .story-grid { gap: 36px; } }
.story-huge {
  font-family: var(--f-display);
  font-size: clamp(48px, 13vw, 152px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--c-text-dark);
  margin-bottom: 24px;
  white-space: nowrap;
}
@media (max-width: 360px) { .story-huge { font-size: 44px; } }
.story-caption {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.005em;
  color: var(--c-muted-dark);
  max-width: 460px;
}
.story-right { padding-top: 40px; }
@media (max-width: 900px) { .story-right { padding-top: 0; } }
.story-body {
  font-family: var(--f-text);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.022em;
  color: var(--c-muted-dark);
  margin-bottom: 20px;
  max-width: 480px;
}
.story-body:last-of-type { margin-bottom: 24px; }

/* Million Story (static stats) */
.ms-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid var(--c-border-dark);
}
@media (max-width: 734px) {
  .ms-stats { grid-template-columns: 1fr; }
}
.ms-stat {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--c-border-dark);
}
.ms-stat:last-child { border-right: none; }
@media (max-width: 734px) {
  .ms-stat { border-right: none; border-bottom: 1px solid var(--c-border-dark); }
  .ms-stat:last-child { border-bottom: none; }
}
.ms-stat span {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--c-link-dark);
  margin-bottom: 14px;
}
.ms-stat span i { font-style: normal; font-size: 0.55em; vertical-align: 0.18em; margin-left: 2px; color: var(--c-muted-dark); font-weight: 500; }
.ms-stat p {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--c-muted-dark);
  letter-spacing: 0.011em;
  line-height: 1.3;
}
@media (max-width: 734px) {
  .hide-mobile { display: none; }
}

/* ─ Calendar (inherits compact mobile from previous work) ─── */
.cal-wrap {
  border: 1px solid var(--c-border-light);
  border-radius: 18px;
  background: var(--c-white);
  overflow: hidden;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 320px;
}
@media (max-width: 900px) { .cal-wrap { grid-template-columns: 1fr; } }

.cal-months { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .cal-months { grid-template-columns: 1fr 1fr; } }

.cal-month {
  padding: 20px 18px 22px;
  border-right: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
}
.cal-month h4 { font-family: var(--f-display); font-size: 19px; font-weight: 600; letter-spacing: -0.022em; margin-bottom: 12px; }
@media (max-width: 900px) {
  .cal-month { padding: 14px 12px 16px; }
  .cal-month h4 { font-size: 15px; margin-bottom: 8px; }
  .cal-month:nth-child(2n), .cal-month:last-child { border-right: none; }
}

.dow-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.dow-row span { font-size: 10px; color: var(--c-tertiary); text-align: center; letter-spacing: 0.05em; font-weight: 500; }
@media (max-width: 900px) { .dow-row span { font-size: 8px; } }

.day-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.day {
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--c-muted-light);
  border-radius: 6px;
  position: relative;
  transition: background .2s;
}
@media (max-width: 900px) { .day { font-size: 10px; border-radius: 4px; } }
.day.past { color: rgba(0,0,0,0.25); }
.day.start {
  background: var(--c-blue);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.day.start:hover { background: #0077ed; }
.day.run { background: rgba(0, 113, 227, 0.08); color: var(--c-text-light); }
.day.today {
  outline: 2px solid var(--c-near-black);
  outline-offset: -2px;
  font-weight: 700;
  color: var(--c-near-black);
}
.day.today.start { outline-color: #fff; color: #fff; }

.cal-side { padding: 28px 26px; border-left: 1px solid var(--c-border-light); display: flex; flex-direction: column; }
@media (max-width: 900px) { .cal-side { border-left: none; border-top: 1px solid var(--c-border-light); padding: 20px; } }

.cal-side h3 { font-family: var(--f-display); font-size: 28px; font-weight: 600; letter-spacing: -0.003em; line-height: 1.1; margin-bottom: 6px; }
.cal-side p { font-size: 15px; color: var(--c-muted-light); line-height: 1.47; }

.cal-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.cal-meta > div { border-top: 1px solid var(--c-border-light); padding-top: 10px; }
.cal-meta span { display: block; font-size: 11px; color: var(--c-tertiary); letter-spacing: 0.04em; margin-bottom: 3px; text-transform: uppercase; }
.cal-meta strong { font-family: var(--f-display); font-size: 15px; font-weight: 500; color: var(--c-text-light); white-space: nowrap; }
.cal-meta strong em { font-style: normal; font-weight: 400; color: var(--c-tertiary); margin-left: 2px; }

.cal-picker { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; margin-bottom: 0; }
.cal-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 980px;
  border: 1px solid var(--c-border-light);
  background: #fff;
  font-size: 13px;
  color: var(--c-muted-light);
  transition: all .2s;
}
.cal-pill.active { background: var(--c-near-black); color: #fff; border-color: var(--c-near-black); }
.cal-pill:hover:not(.active) { border-color: var(--c-near-black); }

/* ─ Workshop page specifics ────────────────────────────── */
.ws-hero {
  background: var(--c-black);
  color: var(--c-text-dark);
  padding: 72px 0 80px;
  text-align: center;
}
@media (max-width: 734px) { .ws-hero { padding: 48px 0 56px; } }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 48px 0 0;
  border-top: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
}
.spec-grid > div { padding: 28px 22px; border-right: 1px solid var(--c-border-light); }
.spec-grid > div:last-child { border-right: none; }
@media (max-width: 734px) {
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .spec-grid > div { border-bottom: 1px solid var(--c-border-light); }
  .spec-grid > div:nth-child(2n) { border-right: none; }
  .spec-grid > div:nth-last-child(-n+2) { border-bottom: none; }
}
.spec-grid span { display: block; font-size: 12px; color: var(--c-tertiary); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.spec-grid strong { font-family: var(--f-display); font-size: 21px; font-weight: 500; letter-spacing: -0.022em; color: var(--c-text-light); }

.program-list { max-width: 720px; margin: 48px auto 0; border-top: 1px solid var(--c-border-light); }
.program-item { padding: 24px 0; border-bottom: 1px solid var(--c-border-light); display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: baseline; }
@media (max-width: 734px) { .program-item { grid-template-columns: 40px 1fr; gap: 16px; padding: 18px 0; } }
.program-num { font-family: var(--f-display); font-size: 40px; font-weight: 300; color: var(--c-tertiary); letter-spacing: -0.003em; line-height: 1; }
.program-body h4 { font-family: var(--f-display); font-size: 21px; font-weight: 500; letter-spacing: 0.011em; line-height: 1.19; }

/* ─ Workshops lineup row ────────────────────────────── */
.lineup { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 48px; }
@media (max-width: 900px) { .lineup { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lineup { grid-template-columns: 1fr; } }
.lineup-card {
  background: var(--c-white);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--c-border-light);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column; align-items: center;
}
.lineup-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px -10px rgba(0,0,0,0.1); text-decoration: none; }
.lineup-card h5 { font-family: var(--f-display); font-size: 20px; font-weight: 600; letter-spacing: -0.022em; color: var(--c-text-light); margin: 12px 0 4px; }
.lineup-card p { font-size: 14px; color: var(--c-muted-light); letter-spacing: -0.01em; line-height: 1.4; margin-bottom: 16px; }
.lineup-num {
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  color: var(--c-blue); letter-spacing: 0.05em;
}
.lineup-link {
  color: var(--c-link);
  font-size: 14px;
  margin-top: auto;
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}
.lineup-link::before {
  content: '';
  order: 1;
  align-self: center;
  width: 0;
  height: 1.2px;
  background: currentColor;
  border-radius: 1px;
  margin: 0;
  transform: translateY(-1px);
  opacity: 0;
  transition: width .42s cubic-bezier(0.22, 1, 0.36, 1),
              margin .42s cubic-bezier(0.22, 1, 0.36, 1),
              opacity .25s ease-out;
}
.lineup-link::after {
  content: '›';
  order: 2;
  font-size: 1.15em;
  line-height: 1;
  margin-left: 4px;
  transition: transform .42s cubic-bezier(0.22, 1, 0.36, 1);
}
.lineup-card:hover .lineup-link::before {
  width: 10px;
  margin: 0 3px 0 5px;
  opacity: 1;
}
.lineup-card:hover .lineup-link::after { transform: translateX(2px); }

/* ═══════════════════════ STATS STRIP ═══════════════════════ */
.stats-section { padding: 64px 0; border-top: 1px solid var(--c-border-light); border-bottom: 1px solid var(--c-border-light); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 22px;
}
.stat { padding: 8px 28px; border-right: 1px solid var(--c-border-light); }
.stat:last-child { border-right: none; }
.stat-v {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--c-text-light);
  margin-bottom: 10px;
}
.stat-u {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text-light);
  margin-bottom: 4px;
}
.stat-note {
  font-size: 12px;
  color: var(--c-tertiary);
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .stat { padding: 20px 18px; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--c-border-light); padding: 18px 12px; }
  .stat:last-child { border-bottom: none; }
}

/* ═══════════════════════ WORKSHOPS INTRO ═══════════════════════ */
.wsi { padding-top: 100px; padding-bottom: 60px; }
.wsi-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 8px auto 0;
  max-width: 1080px;
}
.wsi-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--c-border-light);
  border-radius: 999px;
  background: var(--c-white);
}
.wsi-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.wsi-num { font-weight: 700; font-size: 13px; letter-spacing: 0.02em; }
.wsi-title { font-size: 15px; font-weight: 500; color: var(--c-text-light); }
@media (max-width: 600px) {
  .wsi-step { padding: 8px 14px; gap: 8px; }
  .wsi-title { font-size: 14px; }
}

/* ═══════════════════════ FINAL CTA ═══════════════════════ */
.final-cta { padding: 120px 0; text-align: center; }
@media (max-width: 734px) { .final-cta { padding: 88px 0; } }

/* ═══════════════════════ AUTHOR INTRO ═══════════════════════ */
.author-intro { padding: 96px 0; }
.author-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.author-photo {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: linear-gradient(180deg, #f5f5f7 0%, #ebebed 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(0, 0, 0, 0.28);
  text-align: center;
  padding: 24px;
}
.photo-placeholder .ph-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-tertiary);
  letter-spacing: -0.01em;
}
.photo-placeholder .ph-sub {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.32);
  letter-spacing: -0.005em;
}
.author-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.author-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--c-text-light);
}
.author-facts li svg { flex-shrink: 0; }
@media (max-width: 900px) {
  .author-grid { grid-template-columns: 1fr; gap: 40px; }
  .author-photo { max-width: 320px; margin: 0 auto; width: 100%; }
  .author-facts { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 734px) {
  .author-intro { padding: 72px 0; }
}

/* ═══════════════════════ TRADER PAINS ═══════════════════════ */
.pains { padding: 96px 0; }
.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.pain-card {
  background: #f5f5f7;
  border-radius: 18px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--c-border-light);
}
.pain-num {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: 0.04em;
}
.pain-card p {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--c-text-light);
  margin: 0;
}
@media (max-width: 734px) {
  .pains { padding: 72px 0; }
  .pains-grid { grid-template-columns: 1fr; }
  .pain-card p { font-size: 16px; }
}

/* ═══════════════════════ TRADES ═══════════════════════ */
.trades { padding: 96px 0; }
.trades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.trade-card {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(0.16,1,0.3,1), box-shadow .3s;
}
.trade-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.12);
}
.trade-chart {
  aspect-ratio: 16 / 7;
  border-radius: 10px;
  background: #fafafa;
  overflow: hidden;
}
.trade-chart svg { width: 100%; height: 100%; display: block; }
.trade-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.trade-ticker {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-text-light);
}
.trade-dir {
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.trade-dir.long  { background: rgba(48, 209, 88, 0.12); color: #1f8d3b; }
.trade-dir.short { background: rgba(255, 69, 58, 0.12); color: #c2362c; }
.trade-date { color: var(--c-tertiary); margin-left: auto; }
.trade-pnl {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-text-light);
}
.trade-card.long  .trade-pnl { color: #1f8d3b; }
.trade-card.short .trade-pnl { color: #c2362c; }
.trade-ph-note {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 900px) { .trades-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .trades-grid { grid-template-columns: 1fr; } .trades { padding: 72px 0; } }

/* ═══════════════════════ TESTIMONIALS ═══════════════════════ */
.testimonials { padding: 96px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.testimonial-card {
  background: #f5f5f7;
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--c-border-light);
}
.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-light);
  letter-spacing: -0.01em;
}
.t-date {
  font-size: 11px;
  color: var(--c-tertiary);
  letter-spacing: 0.02em;
}
.t-quote {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--c-text-light);
  margin: 0;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } .testimonials { padding: 72px 0; } }

/* ═══════════════════════ LEAD MAGNET (Mytopia 7-day pass) ═══════════════════════ */
.lead-magnet { padding: 96px 0; }
.lm-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f7 100%);
  border: 1px solid var(--c-border-light);
  border-radius: 28px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.lm-right { display: flex; justify-content: center; }
.lm-ticket {
  width: 240px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(175, 82, 222, 0.35), 0 4px 12px -4px rgba(0, 0, 0, 0.08);
  transform: rotate(-3deg);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #0a0414;
}
.lm-ticket svg, .lm-ticket img { display: block; width: 100%; height: 100%; object-fit: cover; }
.lm-card:hover .lm-ticket { transform: rotate(0deg) scale(1.02); }
@media (max-width: 900px) {
  .lm-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
  .lm-right { order: -1; }
  .lm-ticket { transform: rotate(-2deg); }
}
@media (max-width: 600px) {
  .lead-magnet { padding: 72px 0; }
}

/* ═══════════════════════ TILE ARTWORK ═══════════════════════ */
.tile-art {
  width: 78%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  margin-top: 4px;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 734px) {
  .tile-art { width: 64%; max-width: 200px; }
}
@media (max-width: 480px) {
  .tile-art { width: 56%; max-width: 160px; }
}

/* ═══════════════════════ BLOG PREVIEW (on main) ═══════════════════════ */
.blog-preview { padding: 96px 0; }
.bp-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .blog-preview { padding: 72px 0; }
  .bp-head { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════ BLOG INDEX + CARDS ═══════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #f5f5f7;
  border: 1px solid var(--c-border-light);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--c-text-light);
  text-decoration: none;
  transition: transform .3s cubic-bezier(0.16,1,0.3,1), box-shadow .3s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}
.blog-card-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-tertiary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.blog-card-title {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--c-text-light);
  margin: 0;
}
.blog-card-desc {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--c-muted-light);
  margin: 0;
  flex: 1;
}
.blog-card .a-link { margin-top: 4px; font-size: 15px; }

/* ═══════════════════════ BLOG ARTICLE PAGE ═══════════════════════ */
.blog-index { padding: 96px 0 120px; }
.blog-post { padding: 64px 0 120px; }
.blog-narrow { max-width: 720px; }
.blog-breadcrumbs {
  font-size: 13px;
  color: var(--c-tertiary);
  letter-spacing: -0.005em;
}
.blog-breadcrumbs a { color: var(--c-tertiary); }
.blog-breadcrumbs a:hover { color: var(--c-link); }
.blog-body { margin-top: 12px; }
.blog-body h1 {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 12px 0 32px;
  color: var(--c-text-light);
}
.blog-body h2 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 56px 0 16px;
  color: var(--c-text-light);
}
.blog-body h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
  color: var(--c-text-light);
}
.blog-body p {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  margin: 0 0 22px;
  color: var(--c-text-light);
}
.blog-body ul, .blog-body ol {
  margin: 0 0 28px;
  padding-left: 22px;
}
.blog-body li {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  margin-bottom: 10px;
  list-style: disc;
}
.blog-body ol li { list-style: decimal; }
.blog-body strong { font-weight: 600; }
.blog-body a {
  color: var(--c-link);
  border-bottom: 1px solid rgba(0, 102, 204, 0.25);
  transition: border-color .2s;
}
.blog-body a:hover { border-color: var(--c-link); }
.blog-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
  background: #f5f5f7;
  padding: 2px 6px;
  border-radius: 4px;
}
.blog-body blockquote {
  border-left: 3px solid var(--c-blue);
  padding-left: 22px;
  margin: 28px 0;
  color: var(--c-muted-light);
  font-style: italic;
}
@media (max-width: 734px) {
  .blog-body h1 { font-size: 32px; }
  .blog-body h2 { font-size: 22px; }
  .blog-body h3 { font-size: 19px; }
  .blog-body p, .blog-body li { font-size: 16px; }
}

/* ═══════════════════════ COOKIE BANNER ═══════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  background: rgba(15, 15, 17, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.35);
  padding: 18px 22px;
  animation: cookieIn .4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: var(--container-wide);
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}
.cookie-text a { color: #2997ff; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 10px 20px; font-size: 14px; min-height: 40px; border-radius: 980px; }
.cookie-btn.btn-ghost {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}
.cookie-btn.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }
@media (max-width: 600px) {
  .cookie-banner { padding: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .cookie-btn { flex: 1; }
}


/* ═══════════════════════ FOOTER REVAMPED ═══════════════════════ */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 4px; }
.footer-h {
  font-weight: 600;
  color: var(--c-text-light);
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: -0.005em;
}
.footer-a {
  display: block;
  padding: 3px 0;
  color: var(--c-muted-light);
  font-size: 12px;
  letter-spacing: -0.005em;
  text-decoration: none;
}
.footer-a:hover { color: var(--c-link); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--c-muted-light);
  color: var(--c-muted-light);
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0;
}
.footer-reqs {
  border-top: 1px solid var(--c-border-light);
  padding: 18px 0 12px;
}
.footer-reqs p {
  font-size: 11px;
  line-height: 1.55;
  color: var(--c-tertiary);
  margin: 0;
  letter-spacing: -0.003em;
}
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ═══════════════════════ PRICE LADDER ═══════════════════════ */
.price-ladder { padding: 120px 0; }
.ladder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
.ladder-card {
  background: #1a1a1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  color: var(--c-text-dark);
}
.ladder-card--hi {
  background: linear-gradient(180deg, #1c1c1e 0%, #0c0c0d 100%);
  border: 1px solid rgba(41, 151, 255, 0.35);
  box-shadow: 0 24px 60px -20px rgba(0, 113, 227, 0.4), 0 0 0 1px rgba(41, 151, 255, 0.12);
  transform: translateY(-8px);
}
.ladder-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.ladder-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--c-blue);
  color: #fff;
  padding: 5px 12px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ladder-title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--c-text-dark);
}
.ladder-sub {
  font-size: 14px;
  color: var(--c-muted-dark);
  margin: -6px 0 0;
  letter-spacing: -0.005em;
}
.ladder-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.ladder-amount {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}
.ladder-amount i { font-style: normal; font-size: 22px; font-weight: 500; opacity: 0.7; }
.ladder-crossed {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}
.ladder-discount {
  background: rgba(48, 209, 88, 0.18);
  color: #5dd57a;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ladder-features {
  list-style: none;
  padding: 0;
  margin: 14px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ladder-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.82);
}
.ladder-features li svg { flex-shrink: 0; margin-top: 3px; }
.ladder-card .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}
.ladder-payments {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.payments-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}
.payments-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
}
.pay-chip svg { color: rgba(255, 255, 255, 0.5); }
.payments-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
}
@media (max-width: 1000px) {
  .ladder-grid { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }
  .ladder-card--hi { transform: none; }
  .ladder-badge { left: 24px; }
}
@media (max-width: 600px) {
  .price-ladder { padding: 88px 0; }
  .ladder-card { padding: 28px 24px 24px; }
  .ladder-amount { font-size: 36px; }
}

/* ═══════════════════════ STICKY MOBILE CTA ═══════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 22, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 12px 16px;
  z-index: 99;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
  box-shadow: 0 -8px 20px -4px rgba(0, 0, 0, 0.25);
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.sticky-cta.visible { transform: translateY(0); }
.sc-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sc-price {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.sc-amount {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: #fff;
}
.sc-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-btn {
  padding: 10px 20px;
  min-height: 42px;
  font-size: 15px;
  flex-shrink: 0;
}
@media (max-width: 734px) {
  .sticky-cta { display: block; }
  /* Push cookie banner up so it doesn't overlap sticky CTA on mobile */
  .cookie-banner { bottom: 76px; }
}

/* ═══════════════════════════════════════════════════════════════
   REDESIGN 2026-05-22 — Hero · TrustMarquee · ProductVisual
   · AllProducts · MegaMenu · Numbered sections · Workshop canvas
   ═══════════════════════════════════════════════════════════════ */

/* ─ Extended tokens ─ */
:root {
  --c-glow: rgba(0, 113, 227, 0.15);
  --c-grid: rgba(255, 255, 255, 0.06);
  --c-grid-light: rgba(0, 0, 0, 0.06);
  --c-card-dark: #141416;
  --c-card-dark-2: #1a1a1c;
}

html { scroll-behavior: smooth; }

/* ═══════════════════════ HERO REBUILD ═══════════════════════ */
.hero-bg {
  position: relative;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.18) 0%, rgba(0, 113, 227, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(41, 151, 255, 0.10) 0%, rgba(41, 151, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 0;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: center;
  align-content: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 28px 24px;
  box-sizing: border-box;
}
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 22px 16px;
    text-align: left;
  }
}

/* Левая колонка — плотный вертикальный ритм, без растяжения */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-copy-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-copy .hero-headline { margin: 0; }
.hero-copy .hero-benefit { margin: 22px 0 30px; }
.hero-copy .hero-ctas { margin-top: 4px; }

/* Портрет — центрирован, чуть шире для веса */
.hero-grid > .hero-portrait {
  align-self: center;
  max-width: 420px;
  width: 100%;
}
@media (max-width: 1000px) {
  .hero-grid > .hero-portrait { max-width: 300px; }
}
@media (max-width: 600px) {
  .hero-grid > .hero-portrait { display: none; }
}

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(44px, 7.2vw, 104px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.028em;
  color: var(--c-text-dark);
  margin: 18px 0 22px;
  max-width: 880px;
}
@media (max-width: 500px) {
  .hero-headline {
    font-size: 36px;
    line-height: 1.08;
    overflow-wrap: break-word;
    hyphens: manual;
  }
}
.hero-ctas { row-gap: 14px; }
@media (max-width: 500px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-ctas .btn-primary { width: 100%; }
}
.hero-benefit {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.005em;
  color: var(--c-muted-dark);
  margin-bottom: 28px;
  max-width: 580px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-ctas .btn-primary { padding: 16px 30px; font-size: 17px; min-height: 52px; }
.hero-scroll-hint {
  color: var(--c-link-dark);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s, opacity .25s;
}
.hero-scroll-hint:hover { gap: 10px; text-decoration: none; }
.hero-scroll-hint::after {
  content: '↓';
  font-size: 1.05em;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-scroll-hint:hover::after { transform: translateY(3px); }

/* Hero right column — photo */
.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #1c1c1e 0%, #0c0c0e 100%);
  border: 1px solid var(--c-border-dark);
  box-shadow: 0 40px 80px -30px rgba(0, 113, 227, 0.35), 0 0 0 1px rgba(41, 151, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(41, 151, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
/* Когда внутри hero-portrait настоящая картинка — растягиваем её на всю карточку. */
.hero-portrait--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-portrait--img::before { z-index: 1; }
.hero-portrait--img .hero-portrait-caption { position: relative; z-index: 2; }
.hero-portrait-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(245, 245, 247, 0.45);
  text-align: center;
  padding: 28px;
  position: relative;
  z-index: 1;
}
.hero-portrait-ph svg { opacity: 0.4; }
.hero-portrait-ph .ph-label {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-muted-dark);
  letter-spacing: -0.01em;
}
.hero-portrait-ph .ph-sub {
  font-size: 11px;
  color: rgba(245, 245, 247, 0.35);
  letter-spacing: 0.02em;
}
.hero-portrait-caption {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(20, 20, 22, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  z-index: 2;
}
.hero-portrait-caption .hpc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-dark);
  letter-spacing: -0.005em;
}
.hero-portrait-caption .hpc-role {
  font-size: 11px;
  color: var(--c-muted-dark);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Hero trust line — pills, left-aligned (no separator) */
.hero-trust-line {
  margin-top: auto;
  padding: 24px 28px 48px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media (max-width: 734px) {
  .hero-trust-line { padding: 16px 22px 32px; }
}
.htl-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--c-muted-dark);
  font-size: 14px;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.htl-num {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text-dark);
  letter-spacing: -0.015em;
}
.htl-sep { display: none; }
@media (max-width: 1000px) {
  .hero-trust-line { padding: 0 22px; gap: 8px; }
  .htl-item { padding: 9px 14px; font-size: 13px; }
  .htl-num { font-size: 15px; }
}

/* ═══════════════════════ TRUST MARQUEE ═══════════════════════ */
.trust-marquee {
  background: var(--c-light);
  border-bottom: 1px solid var(--c-border-light);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.trust-marquee-head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-tertiary);
  text-align: center;
  margin-bottom: 18px;
}
.tm-track-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.tm-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 40s linear infinite;
  align-items: center;
}
.tm-item {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tm-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .tm-track { animation: none; }
}

/* ═══════════════════════ NUMBERED SECTIONS ═══════════════════════ */
.section-numbered { position: relative; }
.section-num {
  position: absolute;
  top: 48px;
  right: 32px;
  font-family: var(--f-display);
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-text-light);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.section--dark .section-num { color: var(--c-text-dark); opacity: 0.06; }
.section-numbered > * { position: relative; z-index: 1; }
@media (max-width: 734px) {
  .section-num { top: 24px; right: 16px; font-size: 64px; }
}

/* ═══════════════════════ PRODUCT VISUAL (unified) ═══════════════════════ */
.product-visual {
  position: relative;
  background: linear-gradient(180deg, #0c0c0e 0%, #000 100%);
  border: 1px solid var(--c-border-dark);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.product-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}
.product-visual--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* На mobile (горизонтальные карточки) визуал — квадрат 116×116, картинку центрируем. */
.ws-card-visual .product-visual--img img { object-position: center; }
.product-visual-mini {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  width: 100%;
  max-width: 96px;
}
.product-visual-label { display: none; }
.product-visual-glow {
  position: absolute;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--c-glow) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 1;
}

/* ═══════════════════════ ALL PRODUCTS (ecosystem) ═══════════════════════ */
.all-products { padding: 96px 0; background: var(--c-white); }
.ap-head { text-align: center; margin-bottom: 56px; }
.ap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 900px) { .ap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ap-grid { grid-template-columns: 1fr; } }

.ap-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: 22px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--c-text-light);
  text-decoration: none !important;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.ap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 113, 227, 0.3);
}
.ap-card-visual {
  margin: -28px -26px 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid var(--c-border-dark);
}
.ap-card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.ap-card-eyebrow.special { color: #ff9f0a; }
.ap-card-eyebrow.community { color: #af52de; }
.ap-card-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--c-text-light);
  margin: -6px 0 0;
}
.ap-card-take {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--c-muted-light);
  margin: 0;
  flex: 1;
}
.ap-card-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: gap .25s;
}
.ap-card:hover .ap-card-cta { gap: 10px; }
.ap-card-cta::after { content: '→'; transition: transform .25s; }

/* ═══════════════════════ MEGA-MENU ═══════════════════════ */
.nav-products-trigger {
  cursor: pointer;
  position: relative;
}
.mega-menu {
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(15, 15, 17, 0.98);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  padding: 32px 0 40px;
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .mega-menu { display: none; }
}
.mega-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--c-text-dark);
  text-decoration: none !important;
  transition: background .2s, border-color .2s, transform .2s;
}
.mega-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(41, 151, 255, 0.3);
  transform: translateY(-2px);
}
.mega-card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-link-dark);
}
.mega-card-eyebrow.special { color: #ff9f0a; }
.mega-card-eyebrow.community { color: #af52de; }
.mega-card-eyebrow.master { color: #2997ff; }
.mega-card-eyebrow.individual { color: #ffb84d; }
.mega-card-title {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--c-text-dark);
  margin: 0;
}
.mega-card-take {
  font-size: 12px;
  line-height: 1.4;
  color: var(--c-muted-dark);
  margin: 0;
}

/* Mobile full-screen nav */
.mobile-nav-toggle {
  display: none;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-nav-toggle svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .mobile-nav-toggle { display: inline-flex; }
}
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  height: 100svh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-header {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #000;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav-logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.mobile-nav-logo img { height: 22px; width: auto; display: block; }
.mobile-nav-body {
  padding: 24px 22px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-nav-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted-dark);
  margin-bottom: 8px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--c-text-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav-link:hover { text-decoration: none; color: var(--c-link-dark); }
.mobile-nav-link::after { content: '›'; opacity: 0.4; font-size: 24px; }

/* ═══════════════════════ FOOTER — Products column ═══════════════════════ */
@media (min-width: 901px) {
  .footer-cols { grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; }
}

/* ═══════════════════════ WORKSHOP PAGE — Canvas sections ═══════════════════════ */
.ws-canvas-section { padding: 96px 0; }
@media (max-width: 734px) { .ws-canvas-section { padding: 64px 0; } }

.pain-list, .result-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 48px auto 0;
}
@media (max-width: 600px) {
  .pain-list, .result-list { grid-template-columns: 1fr; }
}
.pain-row, .result-row {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: var(--c-light);
  border: 1px solid var(--c-border-light);
  border-radius: 16px;
  align-items: flex-start;
}
.pain-row .ico, .result-row .ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.1);
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
}
.result-row .ico { background: rgba(48, 209, 88, 0.12); color: #1f8d3b; }
.pain-row p, .result-row p {
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--c-text-light);
  margin: 0;
}

.who-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 48px auto 0;
}
@media (max-width: 600px) { .who-for-grid { grid-template-columns: 1fr; } }
.who-for-card {
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid var(--c-border-light);
}
.who-for-card.fit { background: rgba(48, 209, 88, 0.05); border-color: rgba(48, 209, 88, 0.2); }
.who-for-card.not-fit { background: rgba(255, 69, 58, 0.04); border-color: rgba(255, 69, 58, 0.18); }
.who-for-card h4 {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.who-for-card.fit h4 { color: #1f8d3b; }
.who-for-card.not-fit h4 { color: #c2362c; }
.who-for-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.who-for-card li {
  font-size: 15px;
  line-height: 1.45;
  color: var(--c-text-light);
  padding-left: 22px;
  position: relative;
  list-style: none;
}
.who-for-card.fit li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: #1f8d3b;
  font-weight: 700;
}
.who-for-card.not-fit li::before {
  content: '×';
  position: absolute;
  left: 2px; top: -1px;
  color: #c2362c;
  font-weight: 700;
  font-size: 18px;
}

/* ═══════════════════════ MYTOPIA + BONDS shared canvas ═══════════════════════ */
.canvas-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 48px auto 0;
}
@media (max-width: 600px) { .canvas-grid-4 { grid-template-columns: 1fr; } }
.canvas-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.canvas-card-num {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0.4;
}
.canvas-card h4 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--c-text-light);
  margin: 0;
}
.canvas-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-muted-light);
  margin: 0;
}
.canvas-card ul {
  padding-left: 18px;
}
.canvas-card li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-muted-light);
  margin-bottom: 6px;
  list-style: disc;
}

/* Mytopia hero variant */
.hero-mytopia .hero-portrait {
  background: linear-gradient(135deg, #2c1d3d 0%, #0a0517 100%);
  box-shadow: 0 40px 80px -30px rgba(175, 82, 222, 0.35), 0 0 0 1px rgba(175, 82, 222, 0.12);
}
.hero-mytopia .hero-bg::before {
  background: radial-gradient(circle, rgba(175, 82, 222, 0.22) 0%, rgba(175, 82, 222, 0) 70%);
}
.hero-mytopia .hero-scroll-hint { color: #d785ff; }

/* Bonds hero variant */
.hero-bonds .hero-portrait {
  background: linear-gradient(135deg, #2d2517 0%, #150e02 100%);
  box-shadow: 0 40px 80px -30px rgba(255, 159, 10, 0.3), 0 0 0 1px rgba(255, 159, 10, 0.12);
}
.hero-bonds .hero-bg::before {
  background: radial-gradient(circle, rgba(255, 159, 10, 0.18) 0%, rgba(255, 159, 10, 0) 70%);
}
.hero-bonds .hero-scroll-hint { color: #ffb84d; }

/* ═══════════════════════ TIGHTENED FINAL CTA (one CTA) ═══════════════════════ */
.final-cta-tight .tile-ctas { justify-content: center; }
.final-cta-tight .a-link.on-dark { margin-top: 14px; display: inline-block; font-size: 15px; }

/* ═══════════════════════ NAV-LINKS button styled ═══════════════════════ */
.nav-products-trigger::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
  opacity: 0.9;
}
.nav-products-trigger.open::after {
  transform: translateY(1px) rotate(-135deg);
}

/* ═══════════════════════ NAV LOGO (SVG, two-line logotype) ═══════════════════════ */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 900px) { .nav-logo img { height: 36px; } }
@media (max-width: 600px) { .nav-logo img { height: 30px; } }

/* ═══════════════════════ FOOTER (redesigned — dark premium) ═══════════════════════ */
.footer {
  background: #0a0a0c;
  color: rgba(245, 245, 247, 0.7);
  font-size: 15px;
  line-height: 1.55;
  padding: 80px 0 32px;
  border-top: none;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -100px; left: 10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.10) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  align-items: flex-start;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; max-width: 280px; }
.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.88);
  letter-spacing: -0.005em;
}
.footer-socials { display: flex; gap: 8px; margin-top: 8px; }
.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--c-text-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .2s, border-color .2s, transform .2s;
  min-height: 38px;
}
.footer-chip:hover {
  background: rgba(41, 151, 255, 0.12);
  border-color: rgba(41, 151, 255, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--c-link-dark);
}
.footer-chip svg { width: 14px; height: 14px; }

/* Footer columns (re-themed for dark) */
.footer-cols {
  display: contents; /* let .footer-top grid place children */
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-h {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.95;
}
.footer-a {
  display: block;
  padding: 10px 0;
  color: rgba(245, 245, 247, 0.72);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: color .15s;
}
.footer-a:hover { color: var(--c-link-dark); text-decoration: none; }

/* Age badge on dark */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(245, 245, 247, 0.4);
  color: rgba(245, 245, 247, 0.78);
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  margin-top: 14px;
  letter-spacing: 0;
}

/* Footer reqs (dark version) */
.footer-reqs {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer-reqs p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(245, 245, 247, 0.5);
  margin: 0;
  letter-spacing: -0.003em;
  max-width: 920px;
}

/* Legal row */
.footer-legal {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(245, 245, 247, 0.5);
  letter-spacing: -0.003em;
}
.footer-legal span:first-child { font-weight: 500; color: rgba(245, 245, 247, 0.65); }

/* Responsive */
@media (max-width: 900px) {
  .footer { padding: 64px 0 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-brand { grid-column: 1 / -1; max-width: none; margin-bottom: 8px; }
}
@media (max-width: 600px) {
  .footer-inner { padding: 0 22px; }
  .footer { padding: 56px 0 24px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
    text-align: center;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    align-items: center;
    text-align: center;
    margin-bottom: 4px;
  }
  .footer-tagline { text-align: center; max-width: 320px; }
  .footer-socials { justify-content: center; flex-wrap: wrap; }
  .age-badge { margin-left: auto; margin-right: auto; }

  /* Mobile-only chip layout: links wrap as pills under each section header. */
  .footer-col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .footer-col > .footer-h {
    flex: 0 0 100%;
    margin-bottom: 6px;
    text-align: center;
  }
  .footer-col > .footer-a {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 980px;
    color: rgba(245, 245, 247, 0.85);
    font-size: 13px;
    line-height: 1;
    min-height: 34px;
    letter-spacing: -0.005em;
    transition: background .15s, border-color .15s, color .15s;
  }
  .footer-col > .footer-a:hover,
  .footer-col > .footer-a:active {
    background: rgba(41, 151, 255, 0.14);
    border-color: rgba(41, 151, 255, 0.32);
    color: var(--c-link-dark);
  }

  .footer-reqs { padding: 20px 0; }
  .footer-reqs p { text-align: center; font-size: 12px; line-height: 1.7; }
  .footer-legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 12px;
  }
}

/* ═══════════════════════ CATALOG (school products) ═══════════════════════ */
.catalog { padding: 120px 0 100px; background: var(--c-white); }
@media (max-width: 734px) { .catalog { padding: 80px 0 64px; } }

.catalog-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 600px) { .catalog-inner { padding: 0 22px; } }

.catalog-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
@media (max-width: 734px) { .catalog-head { margin-bottom: 40px; } }

.catalog-group { margin-top: 80px; }
.catalog-group:first-of-type { margin-top: 0; }
@media (max-width: 734px) { .catalog-group { margin-top: 56px; } }

.catalog-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border-light);
}
.catalog-group-title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--c-text-light);
}
@media (max-width: 734px) { .catalog-group-title { font-size: 22px; } }
.catalog-group-note {
  font-family: var(--f-text);
  font-size: 14px;
  color: var(--c-tertiary);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
@media (max-width: 480px) { .catalog-group-note { display: none; } }

/* — Workshops grid (5 tiles) — */
.ws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .ws-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  {
  .ws-grid { grid-template-columns: 1fr; gap: 12px; }
}

.ws-card {
  display: flex;
  flex-direction: column;
  background: #fafafa;
  border: 1px solid var(--c-border-light);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.ws-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.18);
  border-color: rgba(0,113,227,0.3);
  text-decoration: none;
}
.ws-card-visual {
  aspect-ratio: 16 / 10;
  background: #0a0a0e;
  position: relative;
  overflow: hidden;
}
.ws-card-visual .product-visual { border-radius: 0; aspect-ratio: 16/10; }
@media (max-width: 600px) {
  /* Mobile-only: горизонтальная раскладка карточки */
  .ws-card { flex-direction: row; align-items: stretch; min-height: 144px; }
  .ws-card-visual,
  .ws-card-visual .product-visual {
    aspect-ratio: auto;
    width: 144px;
    flex: 0 0 144px;
    height: auto;
    align-self: stretch;
  }
  /* На mobile тайле показываем выразительный фрагмент 3D-сцены, а не всю композицию */
  .ws-card-visual .product-visual--img img {
    transform: scale(1.55);
    transform-origin: center;
  }
  /* Чтобы не обрезать главное у footprint/cluster — точечная коррекция позиции */
  .ws-card[href*="footprint"] .product-visual--img img { transform-origin: 35% 50%; }
  .ws-card[href*="institutional"] .product-visual--img img { transform-origin: 72% 50%; }
  .ws-card[href*="volume"] .product-visual--img img { transform-origin: 30% 60%; }
  .ws-card[href*="delta"] .product-visual--img img { transform-origin: 25% 50%; }
  .ws-card[href*="psychology"] .product-visual--img img { transform-origin: 55% 60%; transform: scale(1.35); }
  .ws-card-num { top: 8px; left: 8px; font-size: 11px; }
}
.ws-card-num {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(245,245,247,0.65);
  z-index: 2;
}
.ws-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
@media (max-width: 600px) {
  .ws-card-body {
    padding: 14px 14px 14px 16px;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
  }
}

.ws-card-eyebrow {
  display: none;
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-tertiary);
  margin-bottom: 4px;
}
@media (max-width: 600px) {
  .ws-card-eyebrow { display: block; }
  .ws-card-num { display: none; }
}
.ws-card-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-bottom: 6px;
}
@media (max-width: 600px) {
  .ws-card-title { font-size: 22px; margin-bottom: 4px; }
}
.ws-card-sub {
  font-family: var(--f-text);
  font-size: 15px;
  color: var(--c-muted-light);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  min-height: 42px;
}
@media (max-width: 600px) {
  .ws-card-sub { display: none; }
}
.ws-card-meta {
  font-family: var(--f-text);
  font-size: 13px;
  color: var(--c-tertiary);
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: baseline;
}
.ws-card-meta b { color: var(--c-muted-light); font-weight: 500; }
.ws-card-meta i { font-style: normal; opacity: 0.5; }
@media (max-width: 600px) {
  .ws-card-meta { font-size: 14px; margin-bottom: 10px; line-height: 1.35; }
  .ws-meta-date { display: none; }
}
.ws-card-foot {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.ws-card-price {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--c-text-light);
}
.ws-card-price small { font-size: 0.75em; font-weight: 500; color: var(--c-tertiary); margin-left: 3px; }
@media (max-width: 600px) { .ws-card-price { font-size: 20px; } }
.ws-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}
.ws-card:hover .ws-card-arrow { transform: translateX(3px); }
@media (max-width: 600px) { .ws-card-arrow { width: 38px; height: 38px; font-size: 18px; } }

/* — Master pack — 6th grid card (dark, premium) — */
.master-plashka {
  background: linear-gradient(140deg, #0a0a0e 0%, #1a1d2e 70%, #0f0f14 100%);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  color: var(--c-text-dark);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.master-plashka::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(41, 151, 255, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.master-plashka::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.master-plashka:hover {
  text-decoration: none;
  color: var(--c-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(0, 113, 227, 0.35);
}
.master-plashka-left { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.master-plashka-eyebrow {
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2997ff;
  margin: 0;
}
.master-plashka-title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.1;
  margin: 0;
}
.master-plashka-sub {
  font-family: var(--f-text);
  font-size: 15px;
  color: rgba(245, 245, 247, 0.72);
  line-height: 1.45;
  letter-spacing: -0.005em;
  margin: 0;
}
.master-plashka-right {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.master-plashka-prices { display: flex; flex-direction: column; gap: 4px; }
.master-plashka-price {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1;
}
.master-plashka-price small { font-size: 0.55em; font-weight: 500; opacity: 0.65; margin-left: 4px; }
.master-plashka-crossed {
  font-family: var(--f-text);
  font-size: 13px;
  color: rgba(245, 245, 247, 0.45);
  text-decoration: line-through;
}
.master-plashka-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--c-link-dark);
  color: #000;
  border-radius: 980px;
  font-family: var(--f-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .master-plashka { padding: 22px; }
  .master-plashka-title { font-size: 24px; }
  .master-plashka-price { font-size: 24px; }
}

/* — Product card (Mytopia / Individual) — */
.cat-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .cat-row { grid-template-columns: 1fr; } }

.product-card {
  background: #fafafa;
  border: 1px solid var(--c-border-light);
  border-radius: 18px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.18);
  border-color: rgba(0,113,227,0.3);
  text-decoration: none;
}
.product-card.mytopia {
  background: linear-gradient(140deg, #1d0d2e 0%, #110820 100%);
  color: var(--c-text-dark);
  border-color: rgba(215,133,255,0.2);
}
.product-card.mytopia:hover { color: var(--c-text-dark); border-color: rgba(215,133,255,0.4); }
.product-card.individual {
  background: linear-gradient(140deg, #0c0c0e 0%, #1c1f24 100%);
  color: var(--c-text-dark);
  border-color: rgba(255,184,77,0.18);
}
.product-card.individual:hover { color: var(--c-text-dark); border-color: rgba(255,184,77,0.4); }

.product-card-eyebrow {
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-card.mytopia .product-card-eyebrow { color: #d785ff; }
.product-card.individual .product-card-eyebrow { color: #ffb84d; }
.product-card-title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
@media (max-width: 734px) { .product-card-title { font-size: 22px; } }
.product-card-desc {
  font-family: var(--f-text);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245,245,247,0.78);
  letter-spacing: -0.005em;
  flex: 1;
}
.product-card.mytopia .product-card-desc,
.product-card.individual .product-card-desc { color: rgba(245,245,247,0.78); }
.product-card-foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.product-card-price {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.product-card-price small { font-size: 0.6em; font-weight: 500; opacity: 0.65; margin-left: 4px; }
.product-card-price s {
  display: block;
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.45;
  margin-top: 2px;
}
.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 980px;
  font-family: var(--f-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform .2s ease;
}
.product-card.mytopia .product-card-cta { background: #d785ff; color: #000; }
.product-card.individual .product-card-cta { background: #ffb84d; color: #000; }
.product-card:hover .product-card-cta { transform: translateX(2px); }
@media (max-width: 600px) {
  .product-card { padding: 26px 22px 24px; }
  .product-card-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ═══════════════════════ TRADES CAROUSEL ═══════════════════════ */
.trades-carousel-section { padding: 100px 0; background: var(--c-light); }
@media (max-width: 734px) { .trades-carousel-section { padding: 64px 0; } }

.trades-carousel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 0 64px;
  touch-action: pan-y;
}

.tc-viewport {
  overflow: hidden;
  border-radius: 22px;
  background: #0a0a0e;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.tc-track {
  display: flex;
  width: 100%;
  will-change: transform;
}

.tc-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.tc-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #050507;
  position: relative;
  overflow: hidden;
}
.tc-frame .product-visual { border-radius: 0; aspect-ratio: 16 / 10; height: 100%; }
.tc-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.tc-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  font-family: var(--f-text);
  font-size: 14px;
  color: rgba(245, 245, 247, 0.85);
  background: linear-gradient(180deg, #14141a 0%, #0a0a0e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}
.tc-cap-ticker {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--c-text-dark);
}
.tc-cap-dir {
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.06);
}
.tc-cap-dir.long  { color: #5dd57a; background: rgba(93, 213, 122, 0.12); }
.tc-cap-dir.short { color: #ff6058; background: rgba(255, 96, 88, 0.12); }
.tc-cap-pnl {
  margin-left: auto;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: #5dd57a;
}
.tc-cap-date {
  font-size: 13px;
  color: rgba(245, 245, 247, 0.45);
  letter-spacing: -0.005em;
}

/* Arrow buttons */
.tc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 32px)); /* shift up to center on the frame, not caption */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px -2px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  z-index: 2;
}
.tc-btn:hover {
  background: #fff;
  transform: translateY(calc(-50% - 32px)) scale(1.04);
  box-shadow: 0 6px 20px -2px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.tc-btn:active { transform: translateY(calc(-50% - 32px)) scale(0.96); }
.tc-btn:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 3px; }
.tc-btn-prev { left: -22px; }
.tc-btn-next { right: -22px; }
@media (max-width: 920px) {
  .tc-btn-prev { left: 10px; }
  .tc-btn-next { right: 10px; }
}
@media (max-width: 600px) {
  .tc-btn { width: 38px; height: 38px; }
  .tc-btn-prev { left: 8px; }
  .tc-btn-next { right: 8px; }
}

/* Dots */
.tc-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, width .2s ease, transform .15s ease;
}
.tc-dot:hover { background: rgba(0, 0, 0, 0.32); }
.tc-dot.active {
  width: 24px;
  background: var(--c-blue);
  border-radius: 999px;
}
.tc-dot:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 3px; }

/* ═══════════════════════ CALENDAR — MOBILE TIMELINE ═══════════════════════ */
/* Desktop остаётся как есть. На ≤600px показываем timeline вместо grid. */
.cal-timeline-mobile { display: none; }
@media (max-width: 600px) {
  .cal-desktop-only { display: none !important; }
  .cal-timeline-mobile { display: block; margin-top: 32px; text-align: left; }
}

.ctl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
/* Вертикальная связующая линия слева, проходящая через маркеры. */
.ctl-list::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--c-border-light);
  border-radius: 2px;
}

.ctl-item {
  position: relative;
  padding-left: 36px;
  padding-bottom: 16px;
}
.ctl-item:last-child { padding-bottom: 0; }

.ctl-marker {
  position: absolute;
  left: 4px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #999;
  box-shadow: 0 0 0 4px #fff;
  z-index: 1;
}

/* Card */
.ctl-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fafafa;
  border: 1px solid var(--c-border-light);
  border-radius: 16px;
  padding: 18px 20px 20px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  min-height: 64px;
}
.ctl-card:hover, .ctl-card:active {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.3);
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  color: inherit;
}

.ctl-eyebrow {
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-tertiary);
  margin-bottom: 10px;
}
.ctl-status {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ctl-date {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--c-text-light);
  margin-bottom: 6px;
}

.ctl-title {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--c-text-light);
  margin-bottom: 6px;
}

.ctl-meta {
  font-family: var(--f-text);
  font-size: 14px;
  color: var(--c-muted-light);
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}

.ctl-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 980px;
  background: var(--c-light);
  color: var(--c-text-light);
  font-family: var(--f-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid var(--c-border-light);
}

/* — Status: past — */
.ctl-past .ctl-card { opacity: 0.55; }
.ctl-past .ctl-marker {
  background: #c5c5c8 !important;
}

/* — Status: live — */
.ctl-live .ctl-marker {
  animation: ctl-pulse 1.6s ease-out infinite;
}
.ctl-live .ctl-card {
  background: #fff;
  border-color: rgba(0, 113, 227, 0.18);
}
@keyframes ctl-pulse {
  0%   { box-shadow: 0 0 0 4px #fff, 0 0 0 4px rgba(0, 113, 227, 0.45); }
  70%  { box-shadow: 0 0 0 4px #fff, 0 0 0 14px rgba(0, 113, 227, 0); }
  100% { box-shadow: 0 0 0 4px #fff, 0 0 0 14px rgba(0, 113, 227, 0); }
}

/* — Status: next (главный акцент) — */
.ctl-next .ctl-card {
  background: #fff;
  border-width: 2px;
  padding: 22px 22px 24px;
  box-shadow: 0 18px 38px -22px rgba(0, 113, 227, 0.32);
}
.ctl-next .ctl-date { font-size: 32px; }
.ctl-next .ctl-title { font-size: 22px; }
.ctl-next .ctl-marker {
  width: 20px;
  height: 20px;
  left: 2px;
  top: 22px;
}
.ctl-next .ctl-cta {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
  padding: 10px 18px;
  font-size: 14px;
}

/* ═══════════════════════ WORKSHOP HERO — FULL-BLEED 3D BACKGROUND ═══════════════════════
   На страницах workshop.html картинка соответствующего product-* webp кладётся
   фоном hero-секции, поверх — тёмный градиент-overlay. На desktop hero-portrait
   карточка скрыта (картинка уже фоном). На mobile — картинка остаётся как
   hero-portrait блок (контраст лучше). */
.hero-bg--workshop {
  position: relative;
  isolation: isolate;
  background: #000;       /* база — поверх неё кладём картинку */
  overflow: hidden;
}
.hero-bg--workshop::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  background: var(--hero-bg, none) center right / cover no-repeat;
  filter: none;
  z-index: 0;             /* над body, под overlay */
  pointer-events: none;
}
.hero-bg--workshop[data-variant="volume-profile"]::before { transform: scaleX(-1); }
.hero-bg--workshop::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  background: linear-gradient(105deg,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.88) 35%,
    rgba(0,0,0,0.55) 65%,
    rgba(0,0,0,0.20) 100%);
  filter: none;
  z-index: 1;             /* над картинкой, под контентом */
  pointer-events: none;
}
.hero-bg--workshop .hero-inner { z-index: 2; }   /* контент на самом верху */
.hero-bg--workshop[data-variant="footprint"]      { --hero-bg: url('/img/product-footprint.webp'); }
.hero-bg--workshop[data-variant="delta"]          { --hero-bg: url('/img/product-delta.webp'); }
.hero-bg--workshop[data-variant="volume-profile"] { --hero-bg: url('/img/product-volume-profile.webp'); }
.hero-bg--workshop[data-variant="cluster"]        { --hero-bg: url('/img/product-cluster.webp'); }
.hero-bg--workshop[data-variant="orderflow"]      { --hero-bg: url('/img/product-orderflow.webp'); }

/* Desktop: hero-portrait скрыт, левая колонка раскрывается на всю ширину */
@media (min-width: 901px) {
  .hero-bg--workshop .hero-portrait { display: none; }
  .hero-bg--workshop .hero-grid { grid-template-columns: 1fr; max-width: 980px; margin: 0 auto; }
}
/* Mobile: фон гасим сильнее, остаётся атмосферное свечение, текст контрастный */
@media (max-width: 900px) {
  .hero-bg--workshop::after {
    background: linear-gradient(180deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.85) 50%,
      rgba(0,0,0,0.95) 100%);
  }
}

/* ═══════════════════════ METHOD BLOCK — creative redesign ═══════════════════════ */
.method-block .container { max-width: 1240px; }

.method-block .mb-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .method-block .mb-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
    margin-bottom: 40px;
  }
}

.method-block .mb-text { display: flex; flex-direction: column; }
.method-block .mb-headline {
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.method-block .mb-word {
  display: inline-block;
  white-space: pre;
}
.method-block .mb-sub {
  max-width: 560px;
  margin: 0;
}

/* SVG candle column */
.method-block .mb-candle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--c-text-light);
}
@media (max-width: 900px) {
  .method-block .mb-candle-wrap { align-items: flex-start; }
}
.method-block .mb-candle {
  width: 96px;
  height: auto;
  color: var(--c-text-light);
  opacity: 0.85;
}
.method-block .mb-candle path {
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: square;
  /* dasharray задан JS-нейтрально через keyframe */
}
.method-block .mb-candle-label {
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted-light);
  margin: 0;
}

/* Divider line — растёт слева направо */
.method-block .mb-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 56px;
  transform-origin: left;
  transform: scaleX(0);
}
@media (max-width: 900px) {
  .method-block .mb-divider { margin-bottom: 36px; }
}

/* «Что вижу я» — 3 минималистичные карточки-кусочки интерфейса */
.method-block .mb-iview {
  max-width: 1240px;
  margin: 0 auto 48px;
}
.method-block .mb-iview-eyebrow {
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted-light);
  margin: 0 0 24px;
  text-align: center;
}

.method-block .mb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .method-block .mb-cards { grid-template-columns: 1fr; gap: 12px; }
}

.method-block .mb-card {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: 16px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.method-block .mb-card-eyebrow {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-muted-light);
  margin: 0;
}
.method-block .mb-card-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-text-light);
  margin: 0 0 6px;
}
.method-block .mb-card-svg {
  width: 100%;
  height: auto;
  aspect-ratio: 240 / 96;
  display: block;
}
.method-block .mb-card-tag {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--c-muted-light);
  margin: 4px 0 0;
}
@media (max-width: 600px) {
  .method-block .mb-cards { gap: 10px; }
  .method-block .mb-card { padding: 12px 14px 12px; gap: 2px; border-radius: 12px; }
  .method-block .mb-card-eyebrow { font-size: 10px; }
  .method-block .mb-card-title { font-size: 14px; margin: 0; }
  .method-block .mb-card-svg { aspect-ratio: 240 / 56; margin-top: 2px; }
  .method-block .mb-card-tag { font-size: 9px; margin-top: 2px; }
  .method-block .mb-iview { margin-bottom: 28px; }
  .method-block .mb-iview-eyebrow { margin-bottom: 14px; font-size: 11px; }
}

.method-block .mb-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.method-block .mb-cta { font-size: 17px; }

/* Stagger reveal — родителю ставится .in через IntersectionObserver */
.method-block .mb-eyebrow,
.method-block .mb-word,
.method-block .mb-sub,
.method-block .mb-candle,
.method-block .mb-candle-label,
.method-block .mb-iview-eyebrow,
.method-block .mb-card,
.method-block .mb-cta {
  opacity: 0;
  transform: translateY(14px);
}
.method-block .mb-candle path { stroke-dasharray: 360; stroke-dashoffset: 360; }

.method-block.in .mb-eyebrow {
  animation: mb-rise .6s 0s forwards cubic-bezier(.16, 1, .3, 1);
}
.method-block.in .mb-word {
  animation: mb-rise .55s forwards cubic-bezier(.16, 1, .3, 1);
}
.method-block.in .mb-word:nth-child(1) { animation-delay: .12s; }
.method-block.in .mb-word:nth-child(2) { animation-delay: .18s; }
.method-block.in .mb-word:nth-child(3) { animation-delay: .24s; }
.method-block.in .mb-word:nth-child(4) { animation-delay: .32s; }
.method-block.in .mb-word:nth-child(5) { animation-delay: .38s; }
.method-block.in .mb-word:nth-child(6) { animation-delay: .44s; }
.method-block.in .mb-word:nth-child(7) { animation-delay: .52s; }
.method-block.in .mb-sub {
  animation: mb-rise .65s .56s forwards cubic-bezier(.16, 1, .3, 1);
}
.method-block.in .mb-candle {
  animation: mb-rise .6s .50s forwards cubic-bezier(.16, 1, .3, 1);
}
.method-block.in .mb-candle path {
  animation: mb-draw 1.1s .60s forwards ease-out;
}
.method-block.in .mb-candle path:nth-of-type(2) { animation-delay: .85s; }
.method-block.in .mb-candle path:nth-of-type(3) { animation-delay: 1.4s; }
.method-block.in .mb-candle-label {
  animation: mb-rise .55s 1.6s forwards cubic-bezier(.16, 1, .3, 1);
}
.method-block.in .mb-divider {
  animation: mb-grow-x .65s 1.2s forwards cubic-bezier(.16, 1, .3, 1);
}
.method-block.in .mb-iview-eyebrow {
  animation: mb-rise .55s 1.4s forwards cubic-bezier(.16, 1, .3, 1);
}
.method-block.in .mb-card {
  animation: mb-rise .55s forwards cubic-bezier(.16, 1, .3, 1);
}
.method-block.in .mb-card:nth-child(1) { animation-delay: 1.6s; }
.method-block.in .mb-card:nth-child(2) { animation-delay: 1.75s; }
.method-block.in .mb-card:nth-child(3) { animation-delay: 1.9s; }
.method-block.in .mb-cta {
  animation: mb-rise .6s 2.15s forwards cubic-bezier(.16, 1, .3, 1);
}

@keyframes mb-rise       { to { opacity: 1; transform: none; } }
@keyframes mb-rise-scale { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: none; } }
@keyframes mb-draw       { to { stroke-dashoffset: 0; } }
@keyframes mb-grow-x     { to { transform: scaleX(1); } }

@media (prefers-reduced-motion: reduce) {
  .method-block .mb-eyebrow,
  .method-block .mb-word,
  .method-block .mb-sub,
  .method-block .mb-candle,
  .method-block .mb-candle-label,
  .method-block .mb-iview-eyebrow,
  .method-block .mb-card,
  .method-block .mb-cta { opacity: 1; transform: none; }
  .method-block .mb-divider { transform: scaleX(1); }
  .method-block .mb-candle path { stroke-dashoffset: 0; }
  .method-block * { animation: none !important; }
}
