/* ═══════════════════════════════════════════════════
   course.css — dedicated styles for course.php
   ═══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   COURSE HERO
══════════════════════════════════════════════════ */
.cp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper) 0%, var(--warm) 58%, #c9d2cf 100%);
  color: var(--ink);
  padding: clamp(120px, 14vw, 180px) var(--pad) clamp(80px, 10vw, 130px);
}
.cp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23,23,22,.045) 1px, transparent 1px),
    linear-gradient(rgba(23,23,22,.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 92%);
  z-index: 0;
}

/* Animated background blobs */
.cp-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.cp-hero__glow--1 {
  width: 600px; height: 600px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(95,113,120,.18), transparent 70%);
  animation: heroGlow1 9s ease-in-out infinite alternate;
}
.cp-hero__glow--2 {
  width: 500px; height: 500px;
  bottom: -80px; left: 10%;
  background: radial-gradient(circle, rgba(154,119,64,.12), transparent 70%);
  animation: heroGlow2 11s ease-in-out infinite alternate;
}
@keyframes heroGlow1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 40px) scale(1.15); }
}
@keyframes heroGlow2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -30px) scale(1.1); }
}

/* Grain overlay */
.cp-hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.cp-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: auto;
}

/* breadcrumb + badge row */
.cp-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.cp-breadcrumb:hover { color: var(--ink); }
.cp-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(23,23,22,.03);
  backdrop-filter: blur(8px);
}

/* title */
.cp-hero__title {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, var(--ink) 30%, var(--olive) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
html[dir="rtl"] .cp-hero__title {
  font-family: Cairo, Inter, sans-serif;
  font-size: clamp(46px, 8vw, 102px);
  line-height: 1.02;
}

.cp-hero__sub {
  margin: 0 0 16px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--ink);
  max-width: 800px;
  line-height: 1.3;
}
.cp-hero__desc {
  margin: 0 0 38px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: #4c5552;
  max-width: 680px;
  line-height: 1.65;
}
.cp-hero__price-highlight {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  padding: 10px 20px;
  background: rgba(23, 23, 22, 0.045);
  border: 1px solid rgba(23, 23, 22, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.cp-hero__price-highlight .price-amount {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
html[dir="rtl"] .cp-hero__price-highlight .price-amount {
  font-family: Cairo, Inter, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
}
.cp-hero__price-highlight .price-meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
html[dir="rtl"] .cp-hero__price-highlight .price-meta {
  letter-spacing: 0;
}

.cp-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 58px;
}
.cp-hero__primary-cta {
  min-width: clamp(240px, 28vw, 340px);
  justify-content: center;
}
.cp-hero .btn--line {
  border-color: var(--line-strong);
  color: var(--ink);
}
.cp-hero .btn--line:hover {
  border-color: var(--ink);
}

/* stats strip */
.cp-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  padding-top: 32px;
}
.cp-stat {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.cp-stat:last-child { border-right: 0; }
html[dir="rtl"] .cp-stat { padding-right: 0; padding-left: 24px; border-right: 0; border-left: 1px solid var(--line); }
html[dir="rtl"] .cp-stat:last-child { border-left: 0; }
.cp-stat strong {
  display: block;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.cp-stat span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}
html[dir="rtl"] .cp-stat span { letter-spacing: 0; }

/* ══════════════════════════════════════════════════
   FOUNDER SECTION
══════════════════════════════════════════════════ */
.cp-founder {
  position: relative;
}
.cp-founder__inner {
  width: min(100%, var(--max));
  margin: auto;
}
.cp-founder__intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.cp-founder__toggle-wrap {
  display: flex;
  justify-content: center;
}
.cp-founder__toggle {
  width: min(100%, 720px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line-strong);
  border-radius: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.68), rgba(255,255,255,.34)),
    color-mix(in srgb, var(--paper) 86%, white);
  color: var(--ink);
  box-shadow: 0 20px 54px rgba(32,29,24,.08);
  transition:
    transform .28s cubic-bezier(.16, 1, .3, 1),
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}
.cp-founder__toggle:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 24px 64px rgba(32,29,24,.12);
}
.cp-founder__toggle[aria-expanded="true"] {
  border-color: var(--ink);
  box-shadow: 0 24px 70px rgba(32,29,24,.14);
}
.cp-founder__toggle-copy {
  display: grid;
  gap: 6px;
  text-align: center;
  flex: 1;
}
.cp-founder__toggle-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.02;
}
html[dir="rtl"] .cp-founder__toggle-title {
  font-family: Cairo, Inter, sans-serif;
  line-height: 1.2;
}
.cp-founder__toggle-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
html[dir="rtl"] .cp-founder__toggle-sub {
  letter-spacing: 0;
}
.cp-founder__toggle-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(23,23,22,.04);
  color: var(--ink);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.cp-founder__toggle[aria-expanded="true"] .cp-founder__toggle-icon {
  transform: rotate(180deg);
  border-color: var(--line-strong);
  background: rgba(23,23,22,.07);
}
.cp-founder__panel {
  margin-top: 22px;
}
.cp-founder__card {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line-strong);
  border-radius: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.42)),
    color-mix(in srgb, var(--paper) 88%, white);
  box-shadow: 0 28px 74px rgba(32,29,24,.11);
}
.cp-founder__media {
  position: relative;
}
.cp-founder__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(23,23,22,.08);
  box-shadow: 0 20px 48px rgba(32,29,24,.12);
}
.cp-founder__copy h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
  color: var(--ink);
}
html[dir="rtl"] .cp-founder__copy h3 {
  font-family: Cairo, Inter, sans-serif;
  line-height: 1.25;
}
.cp-founder__copy p:not(.kicker) {
  margin: 0 0 20px;
  color: #4c5552;
  font-size: 16px;
  line-height: 1.75;
}
.cp-founder__achievements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.cp-founder__achievements li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(251,248,242,.72);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}
html[dir="rtl"] .cp-founder__achievements li {
  text-align: right;
}
.mobile-cta--single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}
.mobile-cta--single .btn {
  width: 100%;
}

/* ══════════════════════════════════════════════════
   LEARN SECTION — pillars
══════════════════════════════════════════════════ */
.cp-learn__inner {
  width: min(100%, var(--max));
  margin: auto;
}
.cp-learn {
  isolation: isolate;
}
.cp-learn::before,
.cp-for::before,
.cp-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.cp-learn__intro {
  max-width: 780px;
  margin: 0 auto 52px;
}

.cp-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cp-pillar {
  padding: 34px 28px;
  background: var(--fog);
  transition:
    transform .32s cubic-bezier(.16, 1, .3, 1),
    box-shadow .35s ease,
    border-color .28s ease,
    background .28s ease;
}
.cp-pillar:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(23,23,22,.08);
}
.cp-pillar__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--fog);
  margin-bottom: 20px;
}
.cp-pillar h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}
.cp-pillar p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   MODULES SECTION
══════════════════════════════════════════════════ */
.cp-modules__inner {
  width: min(100%, var(--max));
  margin: auto;
}
.cp-module-list {
  display: grid;
  gap: 1px;
  background: rgba(23,23,22,.16);
  border: 1px solid rgba(23,23,22,.16);
  border-radius: var(--radius);
  overflow: hidden;
}
.cp-module {
  display: grid;
  grid-template-columns: 90px 1fr;
  background: rgba(251,252,251,.72);
  transition:
    transform .32s cubic-bezier(.16, 1, .3, 1),
    box-shadow .35s ease,
    border-color .28s ease,
    background .28s ease;
}
.cp-module:hover {
  background: rgba(255,255,255,.92);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(23,23,22,.07);
}
.cp-module__num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 34px 0 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  border-right: 1px solid rgba(23,23,22,.12);
}
html[dir="rtl"] .cp-module__num { border-right: 0; border-left: 1px solid rgba(23,23,22,.12); }
.cp-module__body {
  padding: 30px 32px;
}
.cp-module__body h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.15;
}
.cp-module__body > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
}
.cp-module__topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.cp-module__topics li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--muted);
}
.cp-module__topics li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}
html[dir="rtl"] .cp-module__topics li { padding-left: 0; padding-right: 16px; }
html[dir="rtl"] .cp-module__topics li::before { left: auto; right: 0; content: "←"; }

/* ══════════════════════════════════════════════════
   FOR / NOT FOR
══════════════════════════════════════════════════ */
.cp-for__inner {
  width: min(100%, var(--max));
  margin: auto;
}
.cp-for__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cp-for__card {
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition:
    transform .32s cubic-bezier(.16, 1, .3, 1),
    box-shadow .35s ease,
    border-color .28s ease,
    background .28s ease;
}
.cp-for__card--yes {
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(240,248,244,.9));
}
.cp-for__card--no {
  background: linear-gradient(135deg, rgba(255,255,255,.5), rgba(248,244,240,.8));
}
.cp-for__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(23,23,22,.08);
}
.cp-for__tag {
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.cp-for__card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.cp-for__card li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.cp-for__card--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3a8a5c;
  font-weight: 900;
}
.cp-for__card--no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #a05050;
  font-weight: 900;
}
html[dir="rtl"] .cp-for__card li { padding-left: 0; padding-right: 22px; }
html[dir="rtl"] .cp-for__card--yes li::before,
html[dir="rtl"] .cp-for__card--no li::before { left: auto; right: 0; }

/* ══════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════ */
.cp-pricing__inner {
  width: min(100%, var(--max));
  margin: auto;
}
.cp-pricing__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #e8eeee);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  transition:
    transform .35s cubic-bezier(.16, 1, .3, 1),
    box-shadow .35s ease,
    border-color .3s ease,
    background .3s ease;
}
.cp-pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 78px rgba(23,23,22,.18);
}
.cp-includes {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}
.cp-includes li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--ink);
}
.cp-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
html[dir="rtl"] .cp-includes li { padding-left: 0; padding-right: 20px; }
html[dir="rtl"] .cp-includes li::before { left: auto; right: 0; }

.cp-pricing__card-right {
  min-width: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--fog);
  text-align: center;
}
.cp-price-label { color: rgba(251,252,251,.55); }
.cp-price-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin: 8px 0 12px;
  line-height: 1.1;
}
html[dir="rtl"] .cp-price-value { font-family: Cairo, Inter, sans-serif; }
.cp-price-note {
  font-size: 12px;
  color: rgba(251,252,251,.5);
  margin-bottom: 24px;
  line-height: 1.55;
}
.cp-pricing__card-right .btn--ink {
  background: var(--fog);
  color: var(--ink);
  width: 100%;
}
.cp-pricing__card-right .btn--ink:hover {
  background: var(--warm);
}

/* steps */
.cp-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 8px;
}
.cp-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.6);
  transition:
    transform .32s cubic-bezier(.16, 1, .3, 1),
    box-shadow .35s ease,
    border-color .28s ease,
    background .28s ease;
}
.cp-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(23,23,22,.08);
}
.cp-step__num {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--fog);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}
.cp-step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}
.cp-step p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.cp-step__arrow {
  align-self: center;
  color: var(--muted);
  font-size: 20px;
  padding-top: 4px;
  opacity: .72;
  transition: transform .25s ease, color .25s ease, opacity .25s ease;
}
.cp-steps:hover .cp-step__arrow {
  opacity: 1;
}

/* ══════════════════════════════════════════════════
   ENROLLMENT FORM SECTION
══════════════════════════════════════════════════ */
.cp-form-section__inner {
  width: min(100%, var(--max));
  margin: auto;
}
.form-grid__full {
  grid-column: 1 / -1;
}
.cp-form-footer {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cp-form-footer .form-note {
  margin: 0;
  max-width: 480px;
}

/* Difference Block */
.cp-diff-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}
.cp-diff-column {
  padding: 34px;
  background: var(--fog);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform .32s cubic-bezier(.16, 1, .3, 1),
    box-shadow .35s ease,
    border-color .28s ease,
    background .28s ease;
}
.cp-diff-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(23,23,22,.08);
}
.cp-diff-column--featured {
  background: var(--ink);
  color: var(--fog);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}
.cp-diff-column h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.5vw, 30px);
  margin: 0 0 16px;
}
html[dir="rtl"] .cp-diff-column h3 { font-family: Cairo, Inter, sans-serif; }
.cp-diff-column ul {
  padding-left: 20px;
  margin: 0;
}
html[dir="rtl"] .cp-diff-column ul { padding-left: 0; padding-right: 20px; }
.cp-diff-column li {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 10px;
}
.cp-diff-column--featured p {
  color: rgba(251,252,251,.7);
  font-size: 15px;
}
.ecosystem-flow {
  display: block;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--gold);
  margin-top: 18px;
  letter-spacing: .02em;
}

/* Reviews wall */
.cp-reviews__inner {
  width: min(100%, var(--max));
  margin: auto;
}
.cp-reviews__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cp-review-card {
  margin: 0;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--fog);
  box-shadow: 0 16px 40px rgba(23,23,22,.06);
}
.cp-review-card img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
}

.cp-reviews__actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.cp-reviews__toggle {
  display: none;
}

/* Intro video block */
.cp-intro-video {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
  padding: 30px;
  border: 1px solid rgba(23,23,22,.16);
  border-radius: var(--radius);
  background: rgba(251,252,251,.72);
  box-shadow: 0 18px 44px rgba(23,23,22,.08);
}
.cp-intro-video__copy h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}
html[dir="rtl"] .cp-intro-video__copy h3 {
  font-family: Cairo, Inter, sans-serif;
  line-height: 1.2;
}
.cp-intro-video__copy p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.cp-intro-video__player {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0b0b0b;
  box-shadow: var(--shadow);
}
.cp-intro-video__player video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  background: #000;
}

/* Mentorship Ad */
.cp-mentorship-ad {
  padding: clamp(60px, 8vw, 100px) var(--pad);
  text-align: center;
}
.cp-mentorship-ad__inner {
  max-width: 760px;
  margin: auto;
}
.cp-mentorship-ad h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
}
html[dir="rtl"] .cp-mentorship-ad h2 { font-family: Cairo, Inter, sans-serif; }
.cp-mentorship-ad p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.6;
}

/* Final Message Callout */
.cp-final-message {
  max-width: 760px;
  margin: 64px auto 38px;
  text-align: center;
}
.cp-final-p {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  text-align: left;
}
html[dir="rtl"] .cp-final-p {
  border-left: 0;
  border-right: 3px solid var(--gold);
  padding-left: 0;
  padding-right: 24px;
  text-align: right;
}

.cp-mode-banner {
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(23,23,22,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 30px rgba(23,23,22,.06);
}
.cp-mode-banner strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--ink);
}
.cp-mode-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.cp-mode-banner--soft {
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(244,248,246,.92));
}

.cp-form-section .err {
  background: #431515;
  border: 1px solid #7d2727;
  color: #ffd2d2;
  padding: 14px 16px;
  border-radius: var(--radius);
}
.cp-form-section .err > div + div {
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .cp-pillars { grid-template-columns: repeat(2, 1fr); }
  .cp-reviews__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cp-steps {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .cp-step__arrow { display: none; }
  .cp-pricing__card { grid-template-columns: 1fr; }
  .cp-pricing__card-right { min-width: unset; }
  .cp-intro-video { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .cp-hero__actions {
    justify-content: center;
  }
  .cp-hero__primary-cta {
    width: min(100%, 340px);
    min-width: 0;
  }
  .cp-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .cp-stat { padding: 16px 12px; }
  .cp-founder__toggle {
    padding: 18px 18px 18px 20px;
    gap: 14px;
  }
  .cp-founder__toggle-title {
    font-size: clamp(20px, 6.2vw, 28px);
  }
  .cp-founder__toggle-sub {
    font-size: 12px;
  }
  .cp-founder__toggle-icon {
    width: 42px;
    height: 42px;
  }
  .cp-founder__card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 22px;
  }
  .cp-founder__media {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  .cp-founder__copy h3 {
    font-size: clamp(24px, 7vw, 34px);
  }
  .cp-founder__achievements {
    grid-template-columns: 1fr;
  }
  html[dir="rtl"] .cp-founder__copy,
  html[dir="rtl"] .cp-founder__achievements li {
    text-align: right;
  }
  .cp-pillars { grid-template-columns: 1fr; }
  .cp-diff-block { grid-template-columns: 1fr; gap: 14px; margin-top: 10px; }
  .cp-diff-column { padding: 22px; }
  .cp-diff-column h3 { font-size: 20px; margin-bottom: 12px; line-height: 1.15; }
  .cp-diff-column li { font-size: 14px; margin-bottom: 8px; }
  .cp-diff-column--featured p { font-size: 14px; margin-bottom: 10px; }
  .ecosystem-flow {
    font-size: 15px;
    line-height: 1.65;
    margin-top: 12px;
    letter-spacing: 0;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(200,169,110,.30);
    background: rgba(251,252,251,.06);
    word-break: break-word;
  }
  .cp-module { grid-template-columns: 1fr; }
  .cp-module__num {
    justify-content: flex-start;
    padding: 22px 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23,23,22,.08);
  }
  .cp-module__body { padding: 20px 24px 28px; }
  .cp-module__topics { grid-template-columns: 1fr; }
  .cp-for__grid { grid-template-columns: 1fr; }
  .cp-steps { grid-template-columns: 1fr; }
  .cp-pricing__card { padding: 24px; }
  .cp-form-footer { flex-direction: column; }
  .cp-hero__title { font-size: clamp(44px, 14vw, 72px); }
  .cp-reviews__track { grid-template-columns: 1fr; }
  .cp-review-card { min-height: 300px; padding: 14px; }
  .cp-reviews__toggle { display: inline-flex; }
  .cp-reviews:not(.is-expanded) .cp-review-card:nth-child(n+5) { display: none; }
  .cp-intro-video { padding: 22px; }
}

@media (max-width: 430px) {
  .cp-hero__stats { grid-template-columns: 1fr 1fr; }
  .cp-for__card { padding: 24px; }
}

/* ════════════════════════════════════════════════════════════
   DARK MODE — Course page
   ════════════════════════════════════════════════════════════ */

html[data-theme="dark"] .cp-hero {
  background: linear-gradient(135deg, var(--dm-s1) 0%, var(--dm-s2) 58%, var(--dm-s3) 100%);
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 76px 76px;
}
html[data-theme="dark"] .cp-hero__glow--1 {
  background: radial-gradient(circle, rgba(122,158,166,.14), transparent 70%);
}
html[data-theme="dark"] .cp-hero__glow--2 {
  background: radial-gradient(circle, rgba(80,110,100,.1), transparent 70%);
}
html[data-theme="dark"] .cp-hero__title {
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--dm-text) 92%, white) 58%, var(--dm-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.18));
}
html[data-theme="dark"] .cp-hero__sub {
  color: var(--dm-text-2);
}
html[data-theme="dark"] .cp-hero__desc {
  color: var(--dm-text-2);
}
html[data-theme="dark"] .cp-breadcrumb {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .cp-breadcrumb:hover {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-badge {
  border-color: var(--dm-line-strong);
  background: rgba(255,255,255,.04);
  color: var(--dm-accent);
}
html[data-theme="dark"] .cp-hero .btn--line {
  border-color: var(--dm-line-strong);
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-hero .btn--line:hover {
  border-color: var(--dm-text);
}
html[data-theme="dark"] .cp-hero__price-highlight {
  background: rgba(255,255,255,.06);
  border-color: var(--dm-line-strong);
  color: var(--dm-text);
}

/* Stats bar */
html[data-theme="dark"] .cp-hero__stats {
  border-top-color: var(--dm-line-strong);
}
html[data-theme="dark"] .cp-stat {
  border-right-color: var(--dm-line);
}
html[data-theme="dark"] .cp-stat strong {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-stat span {
  color: var(--dm-text-muted);
}

html[data-theme="dark"] .cp-founder__toggle {
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.018)),
    var(--dm-card);
  border-color: var(--dm-line-strong);
  color: var(--dm-text);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}
html[data-theme="dark"] .cp-founder__toggle:hover,
html[data-theme="dark"] .cp-founder__toggle[aria-expanded="true"] {
  border-color: var(--dm-text);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}
html[data-theme="dark"] .cp-founder__toggle-sub {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .cp-founder__toggle-icon {
  border-color: var(--dm-line);
  background: rgba(255,255,255,.04);
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-founder__toggle[aria-expanded="true"] .cp-founder__toggle-icon {
  border-color: var(--dm-line-strong);
  background: rgba(255,255,255,.08);
}
html[data-theme="dark"] .cp-founder__card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    var(--dm-card);
  border-color: var(--dm-line-strong);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26);
}
html[data-theme="dark"] .cp-founder__media img {
  border-color: var(--dm-line);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}
html[data-theme="dark"] .cp-founder__copy h3 {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-founder__copy p:not(.kicker) {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .cp-founder__achievements li {
  border-color: var(--dm-line);
  background: rgba(255,255,255,.03);
  color: var(--dm-text-2);
}

/* Content sections */
html[data-theme="dark"] .cp-content {
  background: var(--dm-base);
}
html[data-theme="dark"] .cp-section-label {
  color: var(--dm-text-muted);
}

/* Why ND Academy / Diff Block */
html[data-theme="dark"] .cp-diff-column {
  background: var(--dm-s1);
  border-color: var(--dm-line);
}
html[data-theme="dark"] .cp-diff-column h3 {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-diff-column li {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .cp-diff-column--featured {
  background: linear-gradient(145deg, #101614 0%, #151a18 100%);
  border-color: var(--dm-line-strong);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
html[data-theme="dark"] .cp-diff-column--featured h3 {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-diff-column--featured p {
  color: var(--dm-text-2);
}
html[data-theme="dark"] .ecosystem-flow {
  color: var(--dm-accent);
}

html[data-theme="dark"] .cp-review-card {
  background: var(--dm-card);
  border-color: var(--dm-line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
html[data-theme="dark"] .cp-review-card img {
  background: rgba(255,255,255,.04);
}
html[data-theme="dark"] .cp-intro-video {
  background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)), var(--dm-card);
  border-color: var(--dm-line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}
html[data-theme="dark"] .cp-intro-video__copy h3 {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-intro-video__copy p:not(.kicker) {
  color: var(--dm-text-muted);
}


/* Pillars */
html[data-theme="dark"] .cp-pillars {
  background: var(--dm-line);
  border-color: var(--dm-line);
}
html[data-theme="dark"] .cp-pillar {
  background: var(--dm-card);
}
html[data-theme="dark"] .cp-pillar:hover {
  background: linear-gradient(135deg, rgba(122,158,166,.08), rgba(255,255,255,.015)), var(--dm-s3);
}
html[data-theme="dark"] .cp-pillar__icon {
  background: var(--dm-text);
  color: var(--dm-base);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
html[data-theme="dark"] .cp-pillar h3 {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-pillar p {
  color: var(--dm-text-muted);
}

/* Modules */
html[data-theme="dark"] .cp-module-list {
  background: transparent;
  border-color: var(--dm-line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
html[data-theme="dark"] .cp-module {
  background: linear-gradient(135deg, rgba(255,255,255,.02), rgba(255,255,255,.01)), var(--dm-card);
}
html[data-theme="dark"] .cp-module:hover {
  background: linear-gradient(135deg, rgba(122,158,166,.08), rgba(255,255,255,.015)), var(--dm-s3);
}
html[data-theme="dark"] .cp-module__num {
  border-right-color: var(--dm-line);
  color: var(--dm-accent);
}
html[data-theme="dark"] .cp-module__body h3 {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-module__body p {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .cp-module__topics li {
  color: var(--dm-text-2);
}
html[data-theme="dark"] .cp-module__bottom {
  border-top-color: var(--dm-line);
}
html[data-theme="dark"] .cp-module__bottom span {
  color: var(--dm-text-muted);
}

/* For Who cards */
html[data-theme="dark"] .cp-for__grid {
  background: transparent;
  gap: 18px;
}
html[data-theme="dark"] .cp-for__card {
  background: linear-gradient(135deg, rgba(255,255,255,.02), rgba(255,255,255,.01)), var(--dm-card);
  border-color: var(--dm-line);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}
html[data-theme="dark"] .cp-for__card h3 {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-for__card p,
html[data-theme="dark"] .m-qual-sub {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .cp-for__card li {
  color: var(--dm-text-2);
}

/* Steps / process */
html[data-theme="dark"] .cp-steps {
  background: transparent;
}
html[data-theme="dark"] .cp-step {
  background: linear-gradient(135deg, rgba(255,255,255,.02), rgba(255,255,255,.01)), var(--dm-card);
  border-color: var(--dm-line);
}
html[data-theme="dark"] .cp-step strong {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-step p {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .cp-step__num {
  background: var(--dm-text);
  color: var(--dm-base);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
html[data-theme="dark"] .cp-step__arrow {
  color: var(--dm-text-muted);
}

/* Pricing card */
html[data-theme="dark"] .cp-pricing__card {
  background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)), var(--dm-card);
  border-color: var(--dm-line-strong);
}
html[data-theme="dark"] .cp-pricing__card-left {
  border-right-color: var(--dm-line);
}
html[data-theme="dark"] .cp-pricing__card-right {
  background: linear-gradient(135deg, var(--dm-s5), var(--dm-s1));
  border-color: var(--dm-line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
html[data-theme="dark"] .cp-includes li {
  color: var(--dm-text-2);
}
html[data-theme="dark"] .cp-price-label {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .cp-price-value {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-price-note {
  color: var(--dm-text-2);
}
html[data-theme="dark"] .cp-pricing__card-right .btn--ink {
  background: var(--dm-text);
  color: var(--dm-base);
}
html[data-theme="dark"] .cp-pricing__card-right .btn--ink:hover {
  background: var(--dm-accent);
  color: var(--dm-base);
}
html[data-theme="dark"] .cp-form-footer {
  border-top-color: var(--dm-line);
}
html[data-theme="dark"] .cp-form-footer p {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .cp-final-p {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-mode-banner {
  background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.015)), var(--dm-card);
  border-color: var(--dm-line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
html[data-theme="dark"] .cp-mode-banner strong {
  color: var(--dm-text);
}
html[data-theme="dark"] .cp-mode-banner p {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .cp-form-section .err {
  background: rgba(125,39,39,.22);
  border-color: rgba(200,90,90,.5);
  color: #ffd1d1;
}

html[data-theme="dark"] .cp-learn,
html[data-theme="dark"] .cp-for,
html[data-theme="dark"] .cp-form-section {
  background: linear-gradient(180deg, color-mix(in srgb, var(--dm-base) 98%, transparent), color-mix(in srgb, var(--dm-s1) 96%, transparent));
}
html[data-theme="dark"] .cp-learn::before,
html[data-theme="dark"] .cp-for::before,
html[data-theme="dark"] .cp-form-section::before {
  opacity: 1;
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.018), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.88), transparent 96%);
}

/* Theme refinement — Graphite */
html[data-site-theme="graphite"] .cp-hero {
  background: linear-gradient(135deg, #eef0f2 0%, #dde2e7 58%, #c7ced6 100%);
}
html[data-site-theme="graphite"] .cp-hero__title {
  background: linear-gradient(135deg, #111318 26%, #4d5769 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-site-theme="graphite"] .cp-badge,
html[data-site-theme="graphite"] .cp-hero__price-highlight {
  background: rgba(17,19,24,.04);
}

html[data-site-theme="graphite"][data-theme="dark"] .cp-hero {
  background: linear-gradient(135deg, #0c0d10 0%, #191c22 58%, #252830 100%);
}
html[data-site-theme="graphite"][data-theme="dark"] .cp-hero__title {
  background: linear-gradient(135deg, #ffffff 0%, #eef2f8 56%, #9eabc2 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-site-theme="graphite"][data-theme="dark"] .cp-hero__glow--1 {
  background: radial-gradient(circle, rgba(136,148,170,.18), transparent 70%);
}
html[data-site-theme="graphite"][data-theme="dark"] .cp-hero__glow--2 {
  background: radial-gradient(circle, rgba(90,100,120,.12), transparent 70%);
}
html[data-site-theme="graphite"][data-theme="dark"] .cp-badge,
html[data-site-theme="graphite"][data-theme="dark"] .cp-hero__price-highlight {
  background: rgba(136,148,170,.08);
}
html[data-site-theme="graphite"][data-theme="dark"] .cp-learn,
html[data-site-theme="graphite"][data-theme="dark"] .cp-for,
html[data-site-theme="graphite"][data-theme="dark"] .cp-form-section {
  background:
    radial-gradient(circle at 15% 12%, rgba(136,148,170,.05), transparent 26%),
    linear-gradient(180deg, #11141a 0%, #161a22 100%);
}
html[data-site-theme="graphite"][data-theme="dark"] .cp-learn::before,
html[data-site-theme="graphite"][data-theme="dark"] .cp-for::before,
html[data-site-theme="graphite"][data-theme="dark"] .cp-form-section::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(136,148,170,.045), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: auto, 88px 88px, 88px 88px;
}
html[data-site-theme="graphite"][data-theme="dark"] .cp-pillar:hover,
html[data-site-theme="graphite"][data-theme="dark"] .cp-module:hover,
html[data-site-theme="graphite"][data-theme="dark"] .cp-for__card:hover,
html[data-site-theme="graphite"][data-theme="dark"] .cp-step:hover,
html[data-site-theme="graphite"][data-theme="dark"] .cp-diff-column:hover {
  box-shadow: 0 22px 52px rgba(0,0,0,.28);
}

/* Theme refinement — Obsidian */
html[data-site-theme="obsidian"] .cp-hero {
  background: linear-gradient(135deg, #f8f8f7 0%, #efefed 58%, #d9d9d4 100%);
}
html[data-site-theme="obsidian"] .cp-hero__title {
  background: linear-gradient(135deg, #0a0a0a 30%, #4b4b47 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-site-theme="obsidian"] .cp-badge,
html[data-site-theme="obsidian"] .cp-hero__price-highlight {
  background: rgba(10,10,10,.03);
}

html[data-site-theme="obsidian"][data-theme="dark"] .cp-hero {
  background: linear-gradient(135deg, #050505 0%, #141414 58%, #202020 100%);
}
html[data-site-theme="obsidian"][data-theme="dark"] .cp-hero__title {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f3 58%, #d9d9d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-site-theme="obsidian"][data-theme="dark"] .cp-hero__glow--1 {
  background: radial-gradient(circle, rgba(224,224,220,.10), transparent 70%);
}
html[data-site-theme="obsidian"][data-theme="dark"] .cp-hero__glow--2 {
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
}
html[data-site-theme="obsidian"][data-theme="dark"] .cp-badge,
html[data-site-theme="obsidian"][data-theme="dark"] .cp-hero__price-highlight {
  background: rgba(255,255,255,.05);
}
html[data-site-theme="obsidian"][data-theme="dark"] .cp-learn,
html[data-site-theme="obsidian"][data-theme="dark"] .cp-for,
html[data-site-theme="obsidian"][data-theme="dark"] .cp-form-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(255,255,255,.022), transparent 24%),
    linear-gradient(180deg, #090909 0%, #0d0d0d 100%);
}
html[data-site-theme="obsidian"][data-theme="dark"] .cp-learn::before,
html[data-site-theme="obsidian"][data-theme="dark"] .cp-for::before,
html[data-site-theme="obsidian"][data-theme="dark"] .cp-form-section::before {
  background:
    radial-gradient(circle at 84% 16%, rgba(255,255,255,.018), transparent 24%),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: auto, 88px 88px, 88px 88px;
}
html[data-site-theme="obsidian"][data-theme="dark"] .cp-pillar:hover,
html[data-site-theme="obsidian"][data-theme="dark"] .cp-module:hover,
html[data-site-theme="obsidian"][data-theme="dark"] .cp-for__card:hover,
html[data-site-theme="obsidian"][data-theme="dark"] .cp-step:hover,
html[data-site-theme="obsidian"][data-theme="dark"] .cp-diff-column:hover {
  box-shadow: 0 24px 58px rgba(0,0,0,.34);
}
