:root {
  --paper: #FFFFFF;
  --paper-alt: #F7F4FF;
  --ink: #17181C;
  --ink-soft: #574B6D;
  --ink-faint: #9A9C9F;
  --cobalt: #0096FF;
  --cobalt-deep: #0075C7;
  --cobalt-glow: #8FD1FF;
  --amber: #FF9300;
  --green: #22A559;
  --red: #D8402F;
  --line: #E2E8F2;

  --violet: #8128FF;
  --violet-deep: #6826C5;
  --gradient-brand: linear-gradient(135deg, #9420BE 0%, #6826C5 45%, #1C83C3 100%);

  --gutter: 48px;
  --radius: 14px;
}

@media (max-width: 900px) {
  :root {
    --gutter: 24px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
}

.hl {
  color: var(--violet);
}

.glow-blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}

.glow-blob--violet {
  background: #8128FF;
}

.glow-blob--blue {
  background: #1C83C3;
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 962 / 586;
  overflow: hidden;
  background: #0B0C10;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(11, 12, 16, 0) 0%, #0B0C10 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-text-zone {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-title {
  position: absolute;
  left: 52%;
  right: 3%;
  top: 40%;
  transform: translateY(-50%);
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.22;
  font-size: clamp(20px, 4vw, 58px);
  color: #FFFFFF;
}

.hero-title .line {
  display: block;
  white-space: nowrap;
}

.hero-title .hl {
  color: var(--cobalt);
}

.floating-phrase {
  position: absolute;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.82);
  pointer-events: none;
  will-change: opacity, transform;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes phraseCycleFade {
  0%   { opacity: 0; transform: scale(0.82); }
  55%  { opacity: var(--phrase-opacity, 0.6); transform: scale(1); }
  88%  { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1); }
}

@keyframes phraseCycleShrink {
  0%   { opacity: 0; transform: scale(0.82); }
  55%  { opacity: var(--phrase-opacity, 0.6); transform: scale(1); }
  88%  { opacity: 0; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(0.08); }
}

.floating-phrase.anim-fade { animation-name: phraseCycleFade; }
.floating-phrase.anim-shrink { animation-name: phraseCycleShrink; }

.floating-phrase.is-white { color: #FFFFFF; }
.floating-phrase.is-cobalt { color: var(--cobalt-glow); }

@media (prefers-reduced-motion: reduce) {
  .floating-phrase.anim-fade,
  .floating-phrase.anim-shrink {
    animation-name: phraseCycleFade;
    animation-duration: 1.2s !important;
  }
}

@media (max-width: 760px) {
  .hero {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    max-height: none;
    overflow: visible;
  }

  .hero-photo {
    position: static;
    aspect-ratio: 4 / 5;
    object-position: 2% center;
  }

  .hero::after {
    display: none;
  }

  .hero-text-zone {
    position: static;
  }

  .floating-phrase {
    display: none;
  }

  .hero-title {
    position: static;
    display: block;
    padding: 28px 6% 32px;
    background: #0B0C10;
    transform: none;
    white-space: normal;
    font-size: clamp(22px, 7vw, 32px);
    text-align: center;
  }
}

.site-nav {
  width: 100%;
  height: 3cm;
  background: #0B0C10;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: height .25s ease, box-shadow .25s ease;
}

.site-nav.is-scrolled {
  height: 2.2cm;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.site-nav.is-scrolled .site-nav-logo {
  height: 40px;
}

.site-nav-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--gutter);
}

.site-nav-logo {
  height: 55px;
  width: auto;
  display: block;
  transition: height .25s ease;

  filter: brightness(0) invert(1);
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 38px;
  margin-right: auto;
}

.site-nav-link {
  position: relative;
  padding-bottom: 3px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .25s ease;
}

.site-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: #FFFFFF;
  transition: right .25s ease;
}

.site-nav-link:hover {
  opacity: .75;
}

.site-nav-link:hover::after {
  right: 0;
}

.site-nav-link-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, .45);
}

.site-nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav-social-link {
  display: flex;
  color: #FFFFFF;
  opacity: 1;
  transition: opacity .25s ease, transform .25s ease;
}

.site-nav-social-link:hover {
  opacity: .75;
  transform: translateY(-1px);
}

.site-nav-social-link svg {
  width: 31px;
  height: 31px;
  display: block;
  fill: currentColor;
}

.site-nav-social-link--envelope svg {
  fill: none;
  stroke: currentColor;
}

.site-nav-login {
  display: inline-flex;
  align-items: center;
  padding: 11px 29px;
  border-radius: 999px;
  background: #0B0C10;
  border: 1.5px solid #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.site-nav-login:hover {
  background: #FFFFFF;
  color: #0B0C10;
  transform: translateY(-1px);
}

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

@media (max-width: 760px) {
  .site-nav {
    height: auto;
    min-height: 2.2cm;
  }

  .site-nav.is-scrolled {
    height: auto;
    min-height: 1.7cm;
  }

  .site-nav.is-scrolled .site-nav-logo {
    height: 26px;
  }

  .site-nav-wrap {
    gap: 14px;
  }

  .site-nav-logo {
    height: 34px;
  }

  .site-nav-right {
    gap: 14px;
  }

  .site-nav-social {
    gap: 12px;
  }

  .site-nav-login {
    padding: 10px 18px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .site-nav-social {
    display: none;
  }
}

.statement {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: 100px var(--gutter) 90px;
}

.statement .glow-blob--violet {
  width: 760px;
  height: 760px;
  top: -360px;
  left: 50%;
  transform: translateX(-50%);
  opacity: .14;
}

@media (max-width: 640px) {
  .statement {
    padding: 50px 24px 44px;
  }
}

.statement-text-v2 {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
  font-size: clamp(29px, 3.6vw, 43px);
  line-height: 1.5;
  color: var(--ink-soft);
}

.statement-v2-lead {
  color: var(--cobalt);
}

.intro {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
  padding: 130px var(--gutter) 90px;
}

.intro-wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
}

.intro-text {
  text-align: justify;
}

.intro-text p {
  margin: 0 0 26px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.7;
  color: #5C5E63;
  text-align: justify;
}

.intro-text p:last-of-type {
  margin-bottom: 0;
}

.intro-photo {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.intro-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: .85;
  mask-image: linear-gradient(to bottom, #000 0%, #000 95%, rgba(0, 0, 0, .5) 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 95%, rgba(0, 0, 0, .5) 98%, transparent 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

@media (max-width: 900px) {
  .intro {
    padding: 90px 24px 130px;
  }

  .intro-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-photo {
    min-height: 320px;
  }
}

.courses {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: 110px var(--gutter) 130px;
}

@media (max-width: 720px) {
  .courses {
    padding: 64px 24px 72px;
  }
}

.courses-blob-a {
  width: 460px;
  height: 460px;
  top: 60px;
  right: -180px;
  opacity: .22;
}

.courses-blob-b {
  width: 400px;
  height: 400px;
  bottom: 40px;
  left: -160px;
  opacity: .22;
}

.courses-wrap {
  position: relative;
  z-index: 1;
}

.courses-logo {
  display: block;
  height: clamp(70px, 22vw, 264px);
  width: auto;
  max-width: 90%;
  margin: 0 auto 24px;
}

.section-lead {
  margin: 0 auto 94px;
  max-width: 720px;
  text-align: center;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.6;
  color: var(--ink-soft);
}

.section-lead .hl {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  color: inherit;
  font-weight: inherit;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1100px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

.course-tier {
  position: relative;
  margin-top: 108px;
}

.course-tier:first-of-type {
  margin-top: 64px;
}

.tier-header {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
}

.tier-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(25px, 2.6vw, 35px);
}

.tier-heading svg {
  flex: none;
}

.tier-desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
}

.tier-badge {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 16px;
  border-radius: var(--radius-pill, 100px);
  border: 1px solid currentColor;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.course-tier--flagship .tier-heading {
  color: var(--ink);
}

.course-tier--flagship .tier-desc {
  color: var(--ink-soft);
}

.course-tier--flagship::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -80px;
  left: 50%;
  width: 1200px;
  max-width: 100%;
  height: 460px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(129, 40, 255, .14) 0%, rgba(129, 40, 255, 0) 72%);
  pointer-events: none;
}

.course-tier--important .tier-heading {
  color: var(--ink);
}

.course-tier--important .tier-desc {
  color: var(--ink-soft);
}

.course-tier--secret {
  background: linear-gradient(165deg, #170F26 0%, #1E1235 55%, #0D0A16 100%);
  border-radius: 28px;
  padding: 72px 40px 64px;
}

.course-tier--secret .tier-heading {
  color: #FFFFFF;
}

.course-tier--secret .tier-heading svg {
  color: #C6B2FF;
}

.course-tier--secret .tier-desc {
  color: #FFFFFF;
}

.course-tier--secret .tier-badge {
  color: #C6B2FF;
  border-color: rgba(198, 178, 255, .5);
}

.course-tier--legendary .tier-heading {
  color: var(--ink);
}

.course-tier--legendary .tier-desc {
  color: var(--ink-soft);
}

.course-tier--legendary .tier-badge {
  color: #FFFFFF;
  background: var(--red);
  border-color: var(--red);
}

.courses-grid--flagship,
.courses-grid--important,
.courses-grid--legendary {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .courses-grid--flagship,
  .courses-grid--important,
  .courses-grid--legendary {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .courses-grid--flagship,
  .courses-grid--important,
  .courses-grid--legendary {
    grid-template-columns: 1fr;
  }

  .course-tier {
    margin-top: 64px;
  }

  .course-tier:first-of-type {
    margin-top: 40px;
  }

  .tier-header {
    margin-bottom: 32px;
  }

  .course-tier--secret {
    padding: 48px 24px 40px;
    border-radius: 20px;
  }

  .courses-grid {
    gap: 24px;
  }
}

.course-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(23, 24, 28, .04),
    0 30px 60px -18px rgba(129, 40, 255, .32),
    0 12px 24px -12px rgba(23, 24, 28, .16);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  border-color: rgba(129, 40, 255, .45);
  box-shadow:
    0 2px 4px rgba(23, 24, 28, .04),
    0 50px 90px -20px rgba(129, 40, 255, .4),
    0 20px 40px -16px rgba(23, 24, 28, .2);
}

.course-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 1;
  width: 100%;
  padding: 30px;
  background: #FFFFFF;
  border: none;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.course-thumb img {
  width: 78%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .4s ease;
}

.course-card:hover .course-thumb img {
  transform: scale(1.05);
}

.course-thumb--cover {
  padding: 0;
  background: #0B0C10;
}

.course-thumb--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--violet);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  box-shadow: 0 6px 8px rgba(129, 40, 255, .35);
}

.course-stamp {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--red);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  transform: rotate(-4deg);
  box-shadow: 0 6px 10px rgba(216, 64, 47, .35);
}

.course-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
}

.course-title {
  margin: 0 0 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 22px;
  color: var(--ink);
}

.course-desc {
  margin: 0 0 20px;
  min-height: calc(3 * 1.6em);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.course-lessons {
  margin: 0 0 12px;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.course-lessons li {
  position: relative;
  padding: 0 0 10px 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.course-lessons li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.course-actions {
  display: flex;
  margin-top: auto;
}

@media (max-width: 720px) {
  .course-body {
    padding: 22px;
  }

  .course-desc {
    min-height: 0;
    margin-bottom: 18px;
  }

  .course-lessons {
    display: none;
  }
}

.course-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 7px 7px 7px 24px;
  border-radius: 999px;
  background: var(--gradient-brand);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(129, 40, 255, .35);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s cubic-bezier(.16, 1, .3, 1);
  isolation: isolate;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.course-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #16A34A;
  opacity: 0;
  z-index: -1;
  transition: opacity .3s cubic-bezier(.16, 1, .3, 1);
}

.course-cta:hover::before {
  opacity: 1;
}

.course-cta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.course-cta-icon-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  color: #FFFFFF;
  transition: color .3s ease;
}

.course-cta-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .95);
  opacity: 0;
  pointer-events: none;
}

.course-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 24px rgba(34, 197, 94, .55);
}

.course-cta:hover .course-cta-icon {
  background: #FFFFFF;
}

.course-cta:hover .course-cta-icon-inner {
  color: #16A34A;
}

.course-cta:hover .course-cta-icon::after {
  animation: ctaRipplePulse .55s ease-out forwards;
}

.course-cta:hover .course-cta-icon-inner svg {
  animation: ctaArrowFlyThrough .38s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes ctaArrowFlyThrough {
  0%   { transform: translateX(0); opacity: 1; }
  45%  { transform: translateX(18px); opacity: 0; }
  46%  { transform: translateX(-18px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes ctaRipplePulse {
  0%   { transform: scale(1); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}

:root {
  --dialog-max-h: min(90vh, 900px);
}

.program-dialog {
  width: min(920px, calc(100vw - 40px));
  max-height: var(--dialog-max-h);
  padding: 0;
  border: none;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 40px 80px rgba(23, 24, 28, .35);
  overflow: hidden;
}

.program-dialog::backdrop {
  background: rgba(20, 16, 31, .62);
  backdrop-filter: blur(4px);
}

.program-panel {
  display: flex;
  flex-direction: column;
  max-height: var(--dialog-max-h);
}

@media (min-width: 1240px) {
  .program-dialog {
    width: min(1180px, calc(100vw - 48px));
  }
}

.program-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 34px 22px;
  border-bottom: 1px solid var(--line);
}

.program-eyebrow {
  margin: 0 0 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--violet);
}

.program-title {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--ink);
}

.program-close {
  flex: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.program-close:hover {
  background: var(--paper-alt);
  border-color: var(--violet);
  color: var(--violet);
}

.program-body {
  flex: 1;
  overflow-y: auto;
  padding: 26px 34px 10px;
}

.program-group {
  margin-bottom: 26px;
}

.program-group-name {
  margin: 0 0 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

.program-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: lesson;
  columns: 2;
  column-gap: 34px;
}

.program-list li {
  counter-increment: lesson;
  break-inside: avoid;
  position: relative;
  padding: 0 0 12px 34px;
  font-size: 15px;
  line-height: 1.45;
}

.program-list li a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.program-list li a:hover {
  color: var(--violet);
  border-color: var(--violet);
}

.program-list li::before {
  content: counter(lesson);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper-alt);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--violet);
}

.program-foot {
  padding: 20px 34px 26px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

@media (min-width: 1240px) {
  .program-list {
    columns: 3;
    column-gap: 40px;
  }
}

@media (max-width: 720px) {
  .program-head,
  .program-body,
  .program-foot {
    padding-left: 22px;
    padding-right: 22px;
  }

  .program-list {
    columns: 1;
  }
}

.about-section {
  --cobalt: #1778FF;
  --cobalt-deep: #005FE6;
  --cobalt-glow: #7AB2FF;
  --aqua: #1778FF;
  --ink-soft: #55575F;
  --white: #FFFFFF;
  --radius-pill: 100px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: var(--white);
  padding-top: 10px;
}

.about-section .wrap-fluid {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1200px) {
  .about-section .wrap-fluid {
    padding: 0 48px;
  }
}

.wrap-fluid--mb-90 {
  margin-bottom: 90px;
}

.wrap-fluid--mb-56 {
  margin-bottom: 56px;
}

#doswiadczenie {
  margin-top: 55px;
  margin-bottom: 0;
}

.about-kinetic-strip {
  display: flex;
  gap: 8px;
  background: #F1F5F9;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px;
  height: 94px;
  margin-bottom: 55px;
  position: relative;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.tab-btn-kinetic {
  flex: 1;
  min-width: 90px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 6px 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  transition: flex 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.45s ease;
}

.tab-btn-kinetic.active {
  flex: 2;
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03);
}

.about-kinetic-strip:hover .tab-btn-kinetic.active:not(:hover) {
  flex: 1;
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

.about-kinetic-strip:hover .tab-btn-kinetic.active:not(:hover) .kinetic-desc {
  opacity: 0;
  max-height: 0;
}

.about-kinetic-strip:hover .tab-btn-kinetic.active:not(:hover) .kinetic-title {
  color: var(--ink);
  font-size: 20px;
}

.about-kinetic-strip:hover .tab-btn-kinetic.active:not(:hover) .kinetic-avatar-wrap {
  background: #E2E8F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tab-btn-kinetic:hover {
  flex: 2 !important;
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03) !important;
}

.tab-btn-kinetic:hover .kinetic-avatar-wrap {
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--aqua) 100%) !important;
  box-shadow: 0 0 16px rgba(23, 120, 255, 0.4) !important;
}

.tab-btn-kinetic:hover .kinetic-title {
  color: var(--cobalt) !important;
  font-size: 25px !important;
}

.tab-btn-kinetic:hover .kinetic-desc {
  opacity: 1 !important;
  max-height: 40px !important;
}

.kinetic-avatar-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2.5px;
  background: #E2E8F0;
  flex-shrink: 0;
  position: relative;
  transition: all 0.45s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tab-btn-kinetic.active .kinetic-avatar-wrap {
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--aqua) 100%);
  box-shadow: 0 0 16px rgba(23, 120, 255, 0.4);
}

.kinetic-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #FFFFFF;
}

.kinetic-avatar-img.is-logo {
  object-fit: contain;
  padding: 4px;
  background: #FFFFFF;
}

.kinetic-avatar-img.avatar-kim-jestem {
  object-position: 30% 50%;
}

.kinetic-info {
  flex-grow: 1;
  min-width: 0;
}

.kinetic-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.35s ease, font-size 0.45s ease;
}

.tab-btn-kinetic.active .kinetic-title {
  color: var(--cobalt);
  font-size: 25px;
}

.kinetic-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink-soft);
  margin: 3px 0 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: opacity 0.5s ease, max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn-kinetic.active .kinetic-desc {
  opacity: 1;
  max-height: 40px;
}

@media (max-width: 1350px) {
  .kinetic-desc {
    font-size: 13px;
  }
}

@media (max-width: 1100px) {
  .kinetic-avatar-wrap {
    width: 40px;
    height: 40px;
  }
  .kinetic-title {
    font-size: 17px;
  }
  .tab-btn-kinetic.active .kinetic-title {
    font-size: 22px;
  }
  .about-kinetic-strip:hover .tab-btn-kinetic.active:not(:hover) .kinetic-title {
    font-size: 17px;
  }
  .kinetic-desc {
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  .about-kinetic-strip {
    height: auto;
    flex-direction: column;
    border-radius: var(--radius);
    padding: 8px;
  }
  .tab-btn-kinetic {
    border-radius: 12px;
    padding: 10px 14px;
    flex: 1 !important;
  }
  .kinetic-avatar-wrap {
    width: 48px;
    height: 48px;
  }
  .kinetic-title,
  .about-kinetic-strip:hover .tab-btn-kinetic.active:not(:hover) .kinetic-title {
    font-size: 20px;
  }
  .kinetic-desc {
    opacity: 1;
    max-height: none;
    white-space: normal;
  }
}

.about-author-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

#about-tab-2 .about-author-grid {
  align-items: start;
}

.author-text p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width: 960px) {
  .about-author-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-author-grid > * {
    min-width: 0;
  }
  .specjal-foto-box {
    min-height: 0;
    aspect-ratio: 1.26;
  }
}

.specjal-foto-box {
  position: relative;
  min-height: 620px;
  width: 100%;
}

.specjal-foto-class-1,
.specjal-foto-class-2,
.specjal-foto-class-3 {
  position: absolute;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  animation: pulsePhoto 20s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

.specjal-foto-class-1 {
  top: 0;
  left: 0;
  width: 68%;
  animation-delay: 1s;
  z-index: 1;
}

.specjal-foto-class-2 {
  bottom: 0;
  right: 8%;
  width: 66%;
  animation-delay: 7s;
  z-index: 3;
}

.specjal-foto-class-3 {
  top: 4%;
  right: 0;
  width: 30%;
  animation-delay: 13s;
  z-index: 2;
}

@keyframes pulsePhoto {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.07) translateY(-8px); }
  100% { transform: scale(1) translateY(0); }
}

.studio-cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 268px;
  aspect-ratio: 574 / 119;
  margin: 32px auto 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.studio-cta-btn:hover {
  transform: translateY(-3px) rotate(-1.5deg) scale(1.02);
}

.studio-cta-btn:active {
  transform: translateY(1px) rotate(0deg) scale(0.98);
  transition: transform 0.1s ease;
}

.studio-cta-btn-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.studio-cta-btn-label {
  position: relative;
  z-index: 1;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
}

.studio-cta-btn-light {
  font-weight: 500;
}

.v-marquee-wrapper {
  position: relative;
  width: 100%;
  height: 820px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 10px 4px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
}

.v-marquee-col {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.v-marquee-col .v-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  will-change: transform;
}

.v-col-down .v-marquee-track {
  animation: vMarqueeScrollDown 34s linear infinite;
}

.v-col-up .v-marquee-track {
  animation: vMarqueeScrollUp 34s linear infinite;
}

.v-marquee-col:hover .v-marquee-track {
  animation-play-state: paused;
}

.v-product-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.v-product-card:hover {
  transform: translateY(-6px) scale(1.03);
  z-index: 5;
}

.v-product-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #FFFFFF;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.09), 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.v-product-card:hover .v-product-img {
  border-color: #CBD5E1;
  box-shadow: 0 26px 54px -10px rgba(15, 23, 42, 0.16), 0 8px 20px rgba(0, 0, 0, 0.05);
}

.v-product-year {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--green);
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
  z-index: 10;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v-product-card:hover .v-product-year {
  transform: rotate(0deg) scale(1.06);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

@keyframes vMarqueeScrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0%); }
}

@keyframes vMarqueeScrollUp {
  0% { transform: translateY(0%); }
  100% { transform: translateY(-50%); }
}

.nl-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nl-photo {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 24px 40px rgba(17, 18, 22, 0.18);
}

.nl-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 76px;
}

.nl-perk-card {
  --perk-color: var(--cobalt);
  --perk-fade: rgba(23, 120, 255, 0.25);
  background: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--perk-color);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nl-perk-card:nth-child(2) {
  --perk-color: var(--amber);
  --perk-fade: rgba(255, 147, 0, 0.25);
}

.nl-perk-card:hover {
  background: #FFFFFF;
  border-color: var(--perk-fade);
  border-left-color: var(--perk-color);
}

.nl-perk-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.nl-perk-icon {
  font-size: 15px;
  color: var(--perk-color);
  flex-shrink: 0;
}

.nl-perk-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin: 0;
}

.nl-perk-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.nl-signup-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.nl-signup-info {
  background: rgba(23, 120, 255, 0.06);
  border: 1px solid rgba(23, 120, 255, 0.14);
  border-radius: 20px;
  padding: 44px 40px;
}

.nl-signup-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 28px;
}

.about-section .aqua {
  color: var(--cobalt);
}

.nl-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.nl-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.nl-info-icon {
  flex-shrink: 0;
  width: 26px;
  font-size: 22px;
  line-height: 1.1;
  margin-top: 1px;
  text-align: center;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nl-info-list h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}

.nl-info-list p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

.nl-info-footer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(23, 120, 255, 0.16);
  color: var(--ink-soft);
  font-size: 13px;
}

.nl-info-footer i {
  color: var(--cobalt);
  font-size: 15px;
  margin-top: 2px;
}

.nl-info-footer p {
  margin: 0;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
}

.nl-signup-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px 24px;
  box-shadow: 0 16px 40px rgba(17, 18, 22, 0.06);
}

.nl-signup-headline {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
  margin: 0 0 34px;
}

.nl-signup-headline .sep {
  color: var(--line);
  font-weight: 400;
  margin: 0 2px;
}

.nl-mailerlite-wrap {
  display: flex;
  justify-content: center;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
}

.nl-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nl-input {
  width: 100%;
  padding: 17px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nl-input:focus {
  outline: none;
  border-color: var(--cobalt);
}

.nl-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}

.nl-checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--cobalt);
}

.nl-submit-btn {
  margin-top: 6px;
  background: #DC3522;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 24px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(220, 53, 34, 0.3);
  transition: var(--transition);
}

.nl-submit-btn:hover {
  background: #C82310;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(220, 53, 34, 0.38);
}

.nl-submit-btn:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

.nl-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  animation: nlFadeIn 0.4s ease-out;
}

.nl-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(23, 120, 255, 0.1);
  color: var(--cobalt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.nl-success-title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nl-success-desc {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 380px;
  margin: 0;
}

.nl-success-desc strong {
  color: var(--ink);
}

.nl-error-msg {
  background: #fde8e8;
  color: #c81e1e;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 8px;
}

@keyframes nlFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .nl-perks-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .nl-signup-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .nl-signup-info,
  .nl-signup-form-card {
    padding: 32px 26px;
  }
}

#about-tab-3 .about-author-grid {
  margin-bottom: 56px;
  grid-template-columns: 52fr 48fr;
  gap: 26px;
}

#about-tab-3 .author-text p {
  font-size: 17px;
}

.books-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
}

.books-photo {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 24px 40px rgba(17, 18, 22, 0.18);
}

.p3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 26px;
  row-gap: 64px;
}

.p3-tile {
  --tone: var(--ink-soft);
  --tone-soft: #F1F3F6;
  --tone-shadow: rgba(85, 87, 95, .45);
  position: relative;
  border-radius: 22px;
  padding: 0 22px 24px;
  text-decoration: none;
  background: linear-gradient(165deg, var(--tone-soft) 0%, #FFFFFF 78%);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 10px 22px -14px var(--tone-shadow);
}

.p3-tone-cobalt { --tone: var(--cobalt); --tone-soft: #E6F4FF; --tone-shadow: rgba(0, 150, 255, .5); }
.p3-tone-red { --tone: var(--red); --tone-soft: #FDEEEC; --tone-shadow: rgba(216, 64, 47, .5); }
.p3-tone-purple { --tone: #7B2D8E; --tone-soft: #F3E8F6; --tone-shadow: rgba(123, 45, 142, .5); }
.p3-tone-orange { --tone: #C85A1E; --tone-soft: #FBE9DC; --tone-shadow: rgba(200, 90, 30, .5); }
.p3-tone-gold { --tone: #8B6F47; --tone-soft: #F3EEE3; --tone-shadow: rgba(139, 111, 71, .5); }
.p3-tone-black { --tone: var(--ink); --tone-soft: #EEEEF0; --tone-shadow: rgba(23, 24, 28, .45); }

.p3-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px -16px var(--tone-shadow);
}

.p3-cover {
  height: 168px;
  margin-top: -28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform .3s ease;
}

.p3-cover img {
  max-height: 168px;
  max-width: 88%;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 18px rgba(17, 18, 22, .20));
}

.p3-tile:hover .p3-cover {
  transform: scale(1.05);
}

.p3-label {
  text-align: center;
  padding-top: 16px;
  display: block;
}

.p3-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--tone);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 11px;
}

.p3-title {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.15;
}

.p3-desc {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  #about-tab-3 .about-author-grid {
    grid-template-columns: 1fr;
  }
  .p3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .p3-grid {
    grid-template-columns: 1fr;
  }
}

.perk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  --perk-color: #1778FF;
  --perk-fade: rgba(23, 120, 255, 0.25);
  background: #fff;
  border: 1px solid #D1D9E6;
  border-radius: var(--radius);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat-card:nth-child(1) { --perk-color: #1778FF; --perk-fade: rgba(23, 120, 255, 0.25); }
.stat-card:nth-child(2) { --perk-color: #22A559; --perk-fade: rgba(34, 165, 89, 0.25); }
.stat-card:nth-child(3) { --perk-color: #FF9300; --perk-fade: rgba(255, 147, 0, 0.25); }
.stat-card:nth-child(4) { --perk-color: #1778FF; --perk-fade: rgba(23, 120, 255, 0.25); }
.stat-card:nth-child(5) { --perk-color: #FF4757; --perk-fade: rgba(255, 71, 87, 0.25); }
.stat-card:nth-child(6) { --perk-color: #00B894; --perk-fade: rgba(0, 184, 148, 0.25); }

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(23, 24, 28, 0.08);
  border-color: var(--perk-fade);
}

.stat-card .perk-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 4px;
  background: var(--perk-color);
  border-radius: 4px;
}

.stat-card:hover .perk-accent {
  animation: runAround 2.5s linear infinite;
}

.stat-card .perk-num {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: #17181C;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.stat-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #17181C;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.stat-card h3::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--perk-color);
  margin: 8px auto 0;
  opacity: 0.45;
}

.stat-card:hover h3 {
  color: var(--perk-color);
}

.stat-card p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  color: #55575F;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
}

.stat-emphasis {
  color: var(--green);
  font-weight: 700;
}

.stat-card::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  border-top-left-radius: 100%;
  border-left: 1px solid rgba(23, 24, 28, 0.06);
  border-top: 1px solid rgba(23, 24, 28, 0.06);
  pointer-events: none;
  transition: border-color 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.stat-card:hover::after {
  width: 68px;
  height: 68px;
  border-left-color: var(--perk-fade);
  border-top-color: var(--perk-fade);
}

@keyframes runAround {
  0%     { top: 0; left: 0; width: 110px; height: 4px; }
  24.9%  { top: 0; left: calc(100% - 110px); width: 110px; height: 4px; }
  25%    { top: 0; left: calc(100% - 4px); width: 4px; height: 110px; }
  49.9%  { top: calc(100% - 110px); left: calc(100% - 4px); width: 4px; height: 110px; }
  50%    { top: calc(100% - 4px); left: calc(100% - 110px); width: 110px; height: 4px; }
  74.9%  { top: calc(100% - 4px); left: 0; width: 110px; height: 4px; }
  75%    { top: calc(100% - 110px); left: 0; width: 4px; height: 110px; }
  99.9%  { top: 0; left: 0; width: 4px; height: 110px; }
  100%   { top: 0; left: 0; width: 110px; height: 4px; }
}

@media (max-width: 960px) {
  .perk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .perk-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .stat-card .perk-accent,
  .stat-card::after,
  .stat-card h3 {
    transition: none;
  }
  .stat-card:hover .perk-accent {
    animation: none;
  }
}

#footer-v1 {
  --ink-soft: #55575F;
  --white: #FFFFFF;
  --radius-pill: 100px;
  background: #FFFFFF;
  color: #1F2937;
  position: relative;
  overflow: hidden;
  padding: 90px 0 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

#footer-v1 .wrap-fluid {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-v1-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-brand-card {
  background: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 28px 30px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.footer-brand-card:hover {
  background: #FFFFFF;
  border-color: #16A34A;
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06), 0 0 20px rgba(22, 163, 74, 0.1);
}

.f-brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.f-brand-logo {
  height: 28px;
  width: auto;
  filter: brightness(0);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-brand-card:hover .f-brand-logo {
  opacity: 1;
  transform: translateY(-1px);
}

.f-brand-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

.footer-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 30px;
}

.f-grand-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.f-grand-card:hover {
  border-color: rgba(22, 163, 74, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.f-col-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16A34A;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.f-publisher-address-card {
  background: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid #16A34A;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.f-publisher-address-card:hover {
  background: #FFFFFF;
  border-color: rgba(22, 163, 74, 0.25);
  border-left-color: #16A34A;
}

.f-address-left-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.f-publisher-social-channels {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-social-channel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.f-social-channel-btn:hover {
  transform: translateY(-2px);
  border-color: var(--cobalt);
  box-shadow: 0 4px 12px rgba(23, 120, 255, 0.2);
}

.f-social-channel-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

.f-social-channel-btn .fa-envelope {
  font-size: 17px;
  color: var(--amber);
}

.f-address-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16A34A;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.f-address-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.f-publisher-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #111827;
  margin: 0 0 2px 0;
  line-height: 1.15;
}

.f-address-line-primary {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #374151;
  display: block;
}

.f-address-line-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  color: #6B7280;
  display: block;
}

.f-note-card {
  background: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid #16A34A;
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.f-note-card:hover {
  background: #FFFFFF;
  border-color: rgba(22, 163, 74, 0.25);
  border-left-color: #16A34A;
}

.f-note-text {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.f-editorial-card-layout {
  display: flex;
  gap: 28px;
  align-items: stretch;
  height: 100%;
  width: 100%;
}

.f-editorial-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.f-depositphotos-link {
  color: #111827;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #16A34A;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.f-depositphotos-link:hover {
  color: #16A34A;
}

.f-credit-box {
  background: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid #16A34A;
  border-radius: var(--radius);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.f-credit-box:hover {
  background: #FFFFFF;
  border-color: rgba(22, 163, 74, 0.25);
  border-left-color: #16A34A;
}

.f-credit-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 20px;
}

.f-credit-group + .f-credit-group {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.f-credit-list {
  display: grid;
  grid-template-columns: 128px 1fr;
  column-gap: 14px;
  row-gap: 8px;
  width: 100%;
}

.f-credit-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #16A34A;
  line-height: 1.4;
  padding-top: 2px;
}

.f-credit-value {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: #374151;
}

@media (max-width: 640px) {
  .f-credit-list {
    grid-template-columns: 1fr;
    row-gap: 3px;
  }
  .f-credit-label {
    padding-top: 6px;
  }
  .f-credit-label:first-child {
    padding-top: 0;
  }
}

.f-legal-clean-links {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.f-legal-pill-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 500;
  color: #4B5563;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.25s ease;
}

.f-legal-pill-link:hover {
  background: #FFFFFF;
  border-color: #16A34A;
  color: #16A34A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.12);
}

.f-legal-pill-link i {
  color: #16A34A;
  font-size: 12px;
}

.f-legal-final {
  display: none;
}

@media (max-width: 992px) {
  .footer-v1-brand-grid {
    grid-template-columns: 1fr;
  }
  .footer-two-col-grid {
    grid-template-columns: 1fr;
  }
  .f-editorial-card-layout {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .f-grand-card {
    padding: 24px 20px;
  }
  .f-legal-clean-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .f-publisher-title {
    font-size: 17px;
  }
  .f-publisher-social-channels,
  .f-note-contact {
    display: none;
  }
  .f-card-publisher {
    order: 1;
  }
  .f-card-editorial {
    order: 2;
  }
  .f-credit-group .f-address-icon-wrap {
    display: none;
  }
  #cta-final {
    display: none;
  }
  .f-legal-clean-links:not(.f-legal-final) {
    display: none;
  }
  .f-legal-final {
    display: grid;
    margin-top: 24px;
  }
}

.footer-zenbox-banner {
  margin: 32px 0 0 0;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.footer-zenbox-banner:hover {
  border-color: rgba(56, 37, 107, 0.35);
  box-shadow: 0 10px 30px rgba(32, 19, 69, 0.08);
}

.f-zenbox-inner {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.f-zenbox-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 24px 36px;
  background: #FFFFFF;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 3;
  transition: background-color 0.4s ease;
}

.f-zenbox-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.footer-zenbox-banner:hover .f-zenbox-logo {
  transform: scale(1.03);
}

.f-zenbox-text-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex: 1;
  padding: 20px 36px;
  position: relative;
  overflow: hidden;
}

.f-zenbox-text-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.f-zenbox-btn-wrap {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.f-zenbox-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 7px 10px 7px 24px;
  background: #17181C;
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  cursor: pointer;
}

.f-zenbox-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.f-zenbox-btn-icon-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  font-size: 12px;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.f-zenbox-btn-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  opacity: 0;
  pointer-events: none;
}

.footer-zenbox-banner:hover .f-zenbox-action-btn {
  background: #16A34A;
  border-color: #22C55E;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.55);
}

.footer-zenbox-banner:hover .f-zenbox-btn-icon {
  background: #FFFFFF;
}

.footer-zenbox-banner:hover .f-zenbox-btn-icon-inner {
  color: #16A34A;
}

.footer-zenbox-banner:hover .f-zenbox-btn-icon::after {
  animation: ripplePulse 0.55s ease-out forwards;
}

.footer-zenbox-banner:hover .f-zenbox-btn-icon-inner i {
  animation: arrowFlyThrough 0.38s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.f-zenbox-text-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #38256B 0%, #201345 100%);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

.footer-zenbox-banner:hover .f-zenbox-text-wrap::before {
  transform: translateX(0);
}

.f-zenbox-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.f-zenbox-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.footer-zenbox-banner:hover .f-zenbox-title {
  color: #FFFFFF;
}

.footer-zenbox-banner:hover .f-zenbox-desc {
  color: rgba(255, 255, 255, 0.82);
}

@keyframes ripplePulse {
  0% { opacity: 1; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.4); }
}

@keyframes arrowFlyThrough {
  0% { transform: translateX(0); opacity: 1; }
  49% { transform: translateX(150%); opacity: 0; }
  50% { transform: translateX(-150%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@media (max-width: 860px) {
  .f-zenbox-inner {
    flex-direction: column;
    text-align: center;
  }
  .f-zenbox-logo-wrap {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 24px;
    width: 100%;
  }
  .f-zenbox-text-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px 20px;
    text-align: center;
  }
  .f-zenbox-text-content {
    width: 100%;
    min-width: 0;
  }
  .f-zenbox-logo {
    height: 32px;
  }
}

.hr {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

#cta-final {
  padding: 84px 0;
}

.cta-final-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

#cta-final h2 {
  margin: 0 0 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.2;
  font-size: 36px;
  color: var(--ink);
}

#cta-final .aqua {
  color: var(--cobalt);
}

.cta-final-sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 auto 28px;
  line-height: 1.65;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color .25s ease, transform .15s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-red {
  background: var(--red);
  color: #FFFFFF;
  box-shadow: 0 8px 20px -8px rgba(216, 64, 47, 0.45);
}

.btn-red:hover {
  background: var(--green) !important;
  box-shadow: 0 8px 22px -6px rgba(34, 165, 89, 0.55) !important;
}

.btn-lg {
  padding: 19px 40px;
  font-size: 16.5px;
}

@media (max-width: 640px) {
  #cta-final h2 {
    font-size: 26px !important;
  }
}
