:root {
  --bg: #FAF9FD;
--panel: #FFFFFF;
--ink: #171522;
--ink2: #454052;
--muted: #747080;
--faint: #A9A5B5;

--violet: #6C4CF1;
--violet-deep: #5636D8;

--navy: #19152B;
--navy-deep: #12101D;

--grad: linear-gradient(120deg, #8B6CF6, #6C4CF1 55%, #4630B8);

--buy: #6C4CF1;
--buy-grad: linear-gradient(
  110deg,
  #6C4CF1,
  #8B6CF6 25%,
  #7C3AED 45%,
  #A78BFA 60%,
  #8B6CF6 78%,
  #6C4CF1
);

--line: rgba(25, 21, 43, .09);
--line2: rgba(25, 21, 43, .16);
}

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

html {
  scroll-behavior: smooth
}

body {
  background: #FAF9FD;
  color: var(--ink);
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden
}

/* old decorative gradient replaced by layered decor below */
a {
  color: inherit;
  text-decoration: none
}

h1,
h2,
h3,
h4,
.u {
  font-family: 'Unbounded', sans-serif
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1), box-shadow .3s cubic-bezier(.2, .7, .2, 1);
  white-space: nowrap
}

.btn-buy {
  background: var(--buy-grad);
  background-size: 240% 100%;
  color: #fff;
  text-shadow: 0 1px 2px rgba(2, 44, 22, .4);
  box-shadow: 0 14px 30px -8px rgba(109, 77, 224, .5);
  animation: shimmer 3s linear infinite, glow 2.6s ease-in-out infinite
}

.btn-buy:hover {
  transform: translateY(-2px)
}

@keyframes shimmer {
  0% {
    background-position: 0 50%
  }

  100% {
    background-position: 240% 50%
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 14px 30px -8px rgba(109, 77, 224, .4)
  }

  50% {
    box-shadow: 0 14px 46px -8px rgba(52, 211, 153, .62)
  }
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line2)
}

.btn-line:hover {
  border-color: var(--violet);
  color: var(--violet-deep)
}

.btn-sm {
  padding: 11px 20px;
  font-size: 11px;
  border-radius: 11px
}

/* top progress + urgency */
.urgbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: var(--navy-deep);
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 9px 16px;
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap
}

.urgbar b {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  color: #a78bfa
}

header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(251, 250, 255, .72);
  backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid var(--line)
}

.nav .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--navy)
}

.logo .d {
  color: var(--violet)
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 14px;
  color: var(--muted)
}

.nav-links a:hover {
  color: var(--ink)
}

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

  .nav .btn {
    margin-left: auto
  }
}

/* left section rail */
.rail {
  position: fixed;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.rail a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600
}

.rail a .bar {
  width: 22px;
  height: 2px;
  background: var(--line2);
  border-radius: 2px;
  transition: all .25s
}

.rail a .lbl {
  opacity: 0;
  transform: translateX(-6px);
  transition: all .25s
}

.rail a:hover .lbl,
.rail a.active .lbl {
  opacity: 1;
  transform: none
}

.rail a.active {
  color: var(--violet-deep)
}

.rail a.active .bar {
  width: 40px;
  background: var(--grad)
}

@media(max-width:1360px) {
  .rail {
    display: none
  }
}

/* section base */
section {
  padding: 92px 0;
  position: relative
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin-bottom: 18px
}

.kicker::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--violet)
}

.h-sec {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--navy-deep);
  margin-bottom: 18px
}

.sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 46px
}

/* HERO */
.hero {
  padding: 112px 0 70px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--navy-deep);
  margin-bottom: 24px
}

.hero .lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.6
}

.urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(108, 76, 241, .06);
  border: 1px solid rgba(109, 77, 224, .28);
  color: #6d4de0;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px
}

.urgency .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--buy);
  animation: pp 2s infinite
}

.urgency b {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700
}

@keyframes pp {
  0% {
    box-shadow: 0 0 0 0 rgba(109, 77, 224, .5)
  }

  70% {
    box-shadow: 0 0 0 8px rgba(109, 77, 224, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(109, 77, 224, 0)
  }
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px
}

.hero-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px
}

.hm .n {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 24px
}

.hm .l {
  font-size: 12px;
  color: var(--muted)
}

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line2);
  box-shadow: 0 40px 90px -30px rgba(30, 25, 80, .5);
  animation: floaty 7.5s ease-in-out infinite
}

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

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.p-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 30px -8px rgba(30, 25, 80, .4)
}

.p-badge .amt {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1
}

.p-badge .l {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3
}

.p-chip {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--navy-deep);
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 30px
}

/* manifesto */
.manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0
}

.manifesto p {
  font-family: 'Unbounded', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--navy-deep);
  max-width: 900px
}

/* numbered rows (pain) */
.rows {
  border-top: 1px solid var(--line)
}

.row-item {
  display: grid;
  grid-template-columns: 64px 1fr 1.3fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline
}

.row-item .rn {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--faint)
}

.row-item .rt {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-deep)
}

.row-item .rd {
  font-size: 15px;
  color: var(--muted)
}

/* explain */
.explain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.steps-min {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.stp {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line)
}

.stp:first-child {
  border-top: 1px solid var(--line)
}

.stp .sn {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--violet);
  min-width: 28px
}

.stp .st {
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 2px
}

.stp .sd {
  font-size: 14px;
  color: var(--muted)
}

/* program accordion */
.prog {
  border-top: 1px solid var(--line2)
}

details.mod {
  border-bottom: 1px solid var(--line);
  overflow: hidden
}

details.mod summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  gap: 20px;
  align-items: center;
  padding: 26px 4px
}

details.mod summary::-webkit-details-marker {
  display: none
}

details.mod .mn {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 22px;
  background: linear-gradient(120deg, #8B6CF6, #6C4CF1 60%, #5636D8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

details.mod .mtitle {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-deep)
}

details.mod .pl {
  justify-self: end;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(22, 163, 74, .4);
  background: rgba(22, 163, 74, .1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6C4CF1;
  font-weight: 800;
  font-size: 18px;
  transition: transform .25s, background .25s, color .25s
}

details.mod[open] .pl {
  transform: rotate(45deg);
  background: linear-gradient(120deg, #6C4CF1, #8B6CF6);
  border-color: transparent;
  color: #fff
}

details.mod .mbody {
  padding: 0 4px 26px 80px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 760px
}

details.mod .mbody .mintro {
  margin-bottom: 16px
}

details.mod .mlessons {
  list-style: none;
  display: grid;
  gap: 8px
}

details.mod .mlessons li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink2);
  font-size: 14.5px
}

details.mod .mlessons li .ln {
  flex: none;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  background: linear-gradient(120deg, #6C4CF1, #8B6CF6);
  border-radius: 8px;
  padding: 5px 12px;
  margin-top: 1px;
  box-shadow: 0 5px 12px -5px rgba(22, 163, 74, .6)
}

details.mod .newbadge {
  flex: none;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .05em;
  color: #fff;
  background: linear-gradient(120deg, #6C4CF1, #8B6CF6);
  border-radius: 100px;
  padding: 4px 10px;
  margin-left: 2px;
  box-shadow: 0 6px 14px -6px rgba(22, 163, 74, .6)
}

details.mod.is-new {
  border-color: rgba(22, 163, 74, .4);
  background: linear-gradient(180deg, rgba(22, 163, 74, .05), transparent 60%)
}

details.mod .exlabel {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  color: #6C4CF1;
  margin: 2px 0 12px
}

details.mod .mlessons li.ex .ln {
  background: linear-gradient(120deg, #5636D8, #6C4CF1);
  box-shadow: 0 5px 12px -5px rgba(15, 157, 99, .7)
}

.prog-newnote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(22, 163, 74, .16), rgba(34, 197, 94, .06));
  border: 1.5px solid rgba(22, 163, 74, .45);
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 16px
}

.prog-newnote .dot {
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6C4CF1;
  box-shadow: 0 0 0 5px rgba(22, 163, 74, .2);
  animation: pulseDot 1.8s ease-in-out infinite
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(22, 163, 74, .28)
  }

  50% {
    box-shadow: 0 0 0 9px rgba(22, 163, 74, 0)
  }
}

.prog-new-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 8px 0 26px;
  padding: 22px 26px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #6C4CF1, #4630B8);
  box-shadow: 0 22px 46px -22px rgba(22, 163, 74, .75);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap
}

.prog-new-banner::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  right: -70px;
  top: -90px
}

.prog-new-banner .pnb-tag {
  flex: none;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .1em;
  background: #fff;
  color: #5636D8;
  padding: 8px 16px;
  border-radius: 100px;
  position: relative;
  z-index: 1
}

.prog-new-banner .pnb-txt {
  position: relative;
  z-index: 1;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  line-height: 1.45
}

.prog-new-banner .pnb-txt b {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800
}

@media(max-width:560px) {
  .prog-new-banner {
    padding: 18px 18px
  }

  .prog-new-banner .pnb-txt {
    font-size: 15px
  }
}

@media(max-width:560px) {
  details.mod .mbody {
    padding-left: 4px
  }
}

.prog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 26px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #6C4CF1, #4630B8);
  box-shadow: 0 22px 46px -22px rgba(22, 163, 74, .8);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden
}

.prog-cta::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  right: -80px;
  top: -100px
}

.prog-cta-txt {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  max-width: 60%
}

.prog-cta-btn {
  position: relative;
  z-index: 1;
  flex: none;
  background: #fff;
  color: #5636D8;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 14px;
  transition: transform .16s, box-shadow .16s;
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, .35)
}

.prog-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .4)
}

@media(max-width:560px) {
  .prog-cta-txt {
    max-width: 100%;
    font-size: 16px
  }
}

/* transformation A->B */
.ab {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line)
}

.ab-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line)
}

.ab-a {
  color: var(--muted);
  font-size: 16px
}

.ab-arrow {
  justify-self: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px
}

.ab-b {
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 16px
}

/* how horizontal */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel)
}

.flow-c {
  padding: 28px 24px;
  border-right: 1px solid var(--line)
}

.flow-c:last-child {
  border-right: none
}

.flow-c .fn {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  background: var(--grad);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.flow-c .ft {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-deep);
  margin-bottom: 8px
}

.flow-c .fd {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55
}

@media(max-width:820px) {
  .flow {
    grid-template-columns: 1fr 1fr
  }

  .flow-c:nth-child(2) {
    border-right: none
  }

  .flow-c:nth-child(1),
  .flow-c:nth-child(2) {
    border-bottom: 1px solid var(--line)
  }
}

/* author editorial */
.author {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center
}

.a-photo {
  aspect-ratio: 1;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line2);
  box-shadow: 0 30px 70px -28px rgba(30, 25, 80, .45)
}

.a-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%
}

.a-quote {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.02em;
  color: var(--navy-deep);
  margin-bottom: 22px
}

.a-name {
  font-weight: 700;
  color: var(--navy-deep)
}

.a-role {
  font-size: 13px;
  color: var(--violet-deep);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px
}

.author p {
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6
}

.a-facts {
  display: flex;
  gap: 30px;
  margin-top: 14px;
  flex-wrap: wrap
}

.a-facts .n {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 24px
}

.a-facts .l {
  font-size: 12px;
  color: var(--muted)
}

.a-hl {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 22px
}

.a-hl .hl {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4C1D95, #312E81);
  color: #fff;
  box-shadow: 0 16px 34px -18px rgba(76, 29, 149, .7);
  position: relative;
  overflow: hidden
}

.a-hl .hl::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(139, 108, 246, .22);
  right: -40px;
  top: -50px
}

.a-hl .hl .big {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  position: relative;
  z-index: 1
}

.a-hl .hl .cap {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  opacity: .94;
  position: relative;
  z-index: 1
}

/* reviews minimal */
.rev {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.rev-c {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 16px
}

.rev-vid {
  aspect-ratio: 16/10;
  border-radius: 12px;
  background: linear-gradient(160deg, #efeafd, #e6ebf9);
  display: flex;
  align-items: center;
  justify-content: center
}

.rev-play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.rev-who {
  display: flex;
  align-items: center;
  gap: 12px
}

.rev-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9e5f8;
  border: 1px solid var(--line2)
}

.rev-nm {
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 14px
}

.rev-sub {
  font-size: 12px;
  color: var(--muted)
}

.rev-txt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6
}

.ph-tag {
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--violet-deep);
  border: 1px dashed var(--line2);
  border-radius: 6px;
  padding: 3px 8px;
  width: fit-content
}

/* pricing TABLE */
.ptable-scroll {
  overflow-x: auto
}

.ptable {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel)
}

.ptable th,
.ptable td {
  padding: 18px 22px;
  text-align: center;
  border-bottom: 1px solid var(--line)
}

.ptable thead th {
  vertical-align: top
}

.ptable .rowlabel {
  text-align: left;
  color: var(--ink2);
  font-weight: 500;
  font-size: 14px
}

.ptable .pcol-pop {
  background: rgba(22, 163, 74, .06);
  position: relative
}

.ptable thead .pcol-pop {
  box-shadow: inset 0 3px 0 #6C4CF1
}

.ptable thead .pname {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-deep);
  margin-bottom: 6px
}

.ptable thead .pfor {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  margin-bottom: 12px;
  min-height: 32px
}

.ptable thead .old {
  font-size: 13px;
  color: var(--faint);
  text-decoration: line-through
}

.ptable thead .price {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--navy-deep)
}

.ptable .pbadge {
  display: inline-block;
  background: linear-gradient(120deg, #6C4CF1, #8B6CF6);
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  box-shadow: 0 8px 18px -8px rgba(22, 163, 74, .7)
}

.ptable .lim {
  display: inline-block;
  background: linear-gradient(120deg, #6C4CF1, #5636D8);
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
  margin-bottom: 10px
}

.ptable .pcol-pop .price {
  background: linear-gradient(120deg, #6C4CF1, #5636D8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

#pricing .btn-buy {
  background: linear-gradient(
  110deg,
  #6C4CF1,
  #8B6CF6 25%,
  #7C3AED 45%,
  #A78BFA 60%,
  #8B6CF6 78%,
  #6C4CF1
);
  background-size: 240% 100%;
  color: #fff;
  text-shadow: 0 1px 2px rgba(2, 44, 22, .4);
  box-shadow: 0 14px 30px -8px rgba(22, 163, 74, .55)
}

.ptable td.yes {
  color: var(--buy);
  font-weight: 700
}

.ptable td.no {
  color: var(--faint)
}

.ptable .pseats {
  margin: 12px 0 2px;
  text-align: left
}

.ptable .pseats .pseats-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink2);
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px
}

.ptable .pseats .pseats-lbl b {
  color: #5636cf
}

.ptable .pseats-bar {
  height: 6px;
  border-radius: 100px;
  background: rgba(109, 77, 224, .12);
  overflow: hidden
}

.ptable .pseats-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #7c3aed, #8b6cf6)
}

.ptable td.val {
  color: var(--ink2);
  font-size: 14px
}

.ptable tbody tr:last-child td {
  border-bottom: none;
  padding-top: 22px;
  padding-bottom: 26px
}

.ptable .btn {
  width: 100%;
  min-width: 150px
}

/* FOMO */
.fomo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  padding: 18px 22px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(120deg, #5636cf, #7c3aed);
  box-shadow: 0 18px 40px -20px rgba(86, 54, 207, .6);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap
}

.fomo::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  right: -70px;
  top: -80px
}

.fomo .fi {
  flex: none;
  font-size: 26px;
  position: relative;
  z-index: 1;
  animation: fomoPulse 1.6s ease-in-out infinite
}

@keyframes fomoPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.16)
  }
}

.fomo .ft {
  position: relative;
  z-index: 1;
  font-family: 'Onest', sans-serif;
  font-size: 15.5px;
  line-height: 1.45;
  flex: 1;
  min-width: 220px
}

.fomo .ft b {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800
}

.fomo .fbtn {
  position: relative;
  z-index: 1;
  flex: none;
  background: #fff;
  color: #5636cf;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 12px;
  transition: transform .16s
}

.fomo .fbtn:hover {
  transform: translateY(-2px)
}

/* TRUST */
.trust {
  padding: 64px 0
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px
}

.trust-c {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm, 0 8px 26px -18px rgba(49, 46, 129, .4));
  position: relative;
  overflow: hidden
}

.trust-c::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--violet-deep, #6d4de0), #6d4de0)
}

.trust-c .tic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: rgba(109, 77, 224, .1);
  margin-bottom: 16px
}

.trust-c h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
  line-height: 1.25
}

.trust-c p {
  font-family: 'Onest', sans-serif;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5
}

@media(max-width:900px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {
  .trust-grid {
    grid-template-columns: 1fr
  }
}

/* honesty */
.honesty {
  border: 1px solid var(--line2);
  border-radius: 22px;
  padding: 44px 46px;
  background: linear-gradient(150deg, #f2effd, #eaeef9)
}

.honesty .tag {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin-bottom: 16px;
  display: inline-block
}

.honesty h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 14px
}

.honesty p {
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 10px
}

/* after payment */
.after {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.after-c {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: var(--panel);
  position: relative
}

.after-c .an {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--faint);
  margin-bottom: 12px
}

.after-c .at {
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px
}

.after-c .ad {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55
}

@media(max-width:820px) {
  .after {
    grid-template-columns: 1fr 1fr
  }
}

/* faq */
.faq {
  max-width: 860px;
  margin: 0 auto
}

details.qa {
  border-bottom: 1px solid var(--line)
}

details.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-deep)
}

details.qa summary::-webkit-details-marker {
  display: none
}

details.qa .pl {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1.5px solid rgba(22, 163, 74, .4);
  background: rgba(22, 163, 74, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6C4CF1;
  font-weight: 800;
  transition: transform .25s, background .25s, color .25s;
  font-size: 16px
}

details.qa[open] summary {
  color: #6C4CF1
}

details.qa[open] .pl {
  transform: rotate(45deg);
  background: linear-gradient(120deg, #6C4CF1, #8B6CF6);
  border-color: transparent;
  color: #fff
}

details.qa .ans {
  padding: 0 4px 24px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 760px
}

/* final */
.final {
  background: linear-gradient(150deg, #21174A, #12101D 62%);
  border-radius: 28px;
  padding: 70px 44px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.final::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 56%;
  height: 180%;
  background: radial-gradient(circle, rgba(124, 92, 240, .5), transparent 60%)
}

.final h2 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.05
}

.final p {
  font-size: 18px;
  color: #c2c6ea;
  max-width: 560px;
  margin: 0 auto 22px;
  position: relative
}

.final .sc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  color: #d7d9f4;
  margin-bottom: 28px;
  position: relative
}

.final .sc .d {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  animation: pp 2s infinite
}

.final .hero-cta {
  position: relative;
  justify-content: center
}

footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 44px;
  margin-top: 24px
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap
}

.foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted)
}

.foot-links a:hover {
  color: var(--ink)
}

.disc {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--faint);
  line-height: 1.7;
  max-width: 960px
}

.mcta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 130;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 250, 255, .78);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line2)
}

.mcta .btn {
  width: 100%
}

/* reveal animation disabled: content is always visible */
.reveal {
  opacity: 1;
  transform: none
}

.reveal.in {
  opacity: 1;
  transform: none
}

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

  .hero-photo,
  .btn-buy,
  .urgency .d {
    animation: none
  }
}

@media(max-width:960px) {

  .hero-grid,
  .explain,
  .author {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .hero-photo,
  .a-photo {
    max-width: 420px;
    margin: 0 auto
  }

  .rev {
    grid-template-columns: 1fr
  }

  .row-item {
    grid-template-columns: 44px 1fr;
    gap: 14px
  }

  .row-item .rd {
    grid-column: 1/-1;
    padding-left: 58px
  }
}

@media(max-width:720px) {
  body {
    padding-bottom: 78px
  }

  .wrap {
    padding: 0 20px
  }

  .hero {
    padding: 100px 0 50px
  }

  .hero h1 {
    font-size: 40px
  }

  section {
    padding: 60px 0
  }

  .h-sec {
    font-size: 29px
  }

  .manifesto p {
    font-size: 22px
  }

  .final {
    padding: 44px 22px
  }

  .final h2 {
    font-size: 30px
  }

  .hero-cta .btn {
    flex: 1
  }

  .mcta {
    display: block
  }

  .ab-row {
    grid-template-columns: 1fr 40px 1fr;
    gap: 10px
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px
}

::-webkit-scrollbar-thumb {
  background: #c9c2ec;
  border-radius: 4px
}

::-webkit-scrollbar-track {
  background: transparent
}

.rev-c.real {
  border-color: rgba(22, 163, 74, .4);
  box-shadow: 0 18px 40px -24px rgba(22, 163, 74, .5)
}

.rev-proof {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
  line-height: 0;
  border: 1px solid var(--line)
}

.rev-proof img {
  width: 100%;
  display: block
}

.rev-proof .pf-lbl {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(0, 0, 0, .62);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  font-family: 'Onest', sans-serif;
  line-height: 1.2
}

.rev-c .verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, #6C4CF1, #8B6CF6);
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 8px 18px -8px rgba(22, 163, 74, .6)
}

.rev-proof {
  cursor: zoom-in
}

#lb {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 24, .93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px
}

#lb.open {
  display: flex
}

#lb .lb-scroll {
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px
}

#lb img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  cursor: zoom-in;
  border-radius: 12px;
  user-select: none
}

#lb img.zoomed {
  max-width: none;
  max-height: none;
  width: 1100px;
  cursor: zoom-out
}

#lb .lb-close {
  position: fixed;
  top: 16px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  border: none
}

#lb .lb-hint {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, .72);
  font-family: 'Onest', sans-serif;
  font-size: 13px;
  pointer-events: none
}

.rev-vidplayer {
  width: 100%;
  display: block;
  border-radius: 12px;
  margin-bottom: 14px;
  background: #000;
  border: 1px solid var(--line);
  aspect-ratio: 1/1;
  object-fit: cover
}

.rev-c .verified.vid {
  background: linear-gradient(120deg, #5636cf, #8b6cf6);
  box-shadow: 0 8px 18px -8px rgba(86, 54, 207, .6)
}




/* ===== GC WIDGET MODAL ===== */
.gcm {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  background: rgba(16, 12, 40, .66);
  backdrop-filter: blur(6px);
  padding: 24px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch
}

.gcm.open {
  display: flex
}

.gcm-card {
  background: #fff;
  border-radius: 22px;
  max-width: 560px;
  width: 100%;
  margin: auto;
  position: relative;
  box-shadow: 0 40px 90px -30px rgba(30, 20, 80, .55);
  overflow: hidden;
  animation: gcmIn .28s cubic-bezier(.2, .8, .2, 1)
}

@keyframes gcmIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.gcm-head {
  padding: 24px 28px 20px;
  background: linear-gradient(120deg, #5636cf, #7c3aed);
  color: #fff;
  position: relative;
  overflow: hidden
}

.gcm-head::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  right: -80px;
  top: -90px
}

.gcm-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  margin-bottom: 10px
}

.gcm-h {
  position: relative;
  z-index: 1;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: 1.22;
  margin: 0 0 6px
}

.gcm-sub {
  position: relative;
  z-index: 1;
  font-size: 14px;
  opacity: .92;
  line-height: 1.5
}

.gcm-price {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 10px
}

.gcm-price .np {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 23px
}

.gcm-price .op {
  font-size: 15px;
  opacity: .65;
  text-decoration: line-through
}

.gcm-body {
  padding: 8px 20px 20px;
  max-height: none
}

.gcm-slot {
  min-height: 120px
}

.gcm-slot.hide {
  display: none
}

.gcm-load {
  text-align: center;
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px
}

.gcm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .16s
}

.gcm-close:hover {
  background: rgba(255, 255, 255, .34)
}

@media(max-width:560px) {
  .gcm {
    padding: 10px
  }

  .gcm-head {
    padding: 20px 20px 16px
  }

  .gcm-h {
    font-size: 18px
  }

  .gcm-body {
    padding: 6px 12px 14px
  }
}


/* ===== MOBILE PRICING CARDS ===== */
.pcards {
  display: none
}

.pcard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 20px 20px;
  margin-bottom: 16px;
  position: relative
}

.pcard.pop {
  border-color: rgba(22, 163, 74, .5);
  box-shadow: 0 0 0 1px rgba(22, 163, 74, .25), 0 18px 40px -24px rgba(22, 163, 74, .5)
}

.pc-badge,
.pc-lim {
  display: inline-block;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 99px;
  margin-bottom: 10px
}

.pc-badge {
  background: linear-gradient(120deg, #6C4CF1, #8B6CF6)
}

.pc-lim {
  background: linear-gradient(120deg, #6C4CF1, #5636D8)
}

.pc-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-deep);
  margin-bottom: 5px
}

.pc-for {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px
}

.pc-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap
}

.pc-old {
  font-size: 14px;
  color: var(--faint);
  text-decoration: line-through
}

.pc-price {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 27px;
  color: var(--navy-deep)
}

.pcard .pseats {
  margin: 12px 0 16px;
  text-align: left
}

.pcard .pseats .pseats-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink2);
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px
}

.pcard .pseats .pseats-lbl b {
  color: #5636cf
}

.pcard .pseats-bar {
  height: 6px;
  border-radius: 100px;
  background: rgba(109, 77, 224, .12);
  overflow: hidden
}

.pcard .pseats-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #7c3aed, #8b6cf6)
}

.pc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  border-top: 1px solid var(--line2)
}

.pc-list li {
  position: relative;
  padding: 11px 0 11px 26px;
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px solid var(--line2);
  color: var(--ink2)
}

.pc-list li::before {
  position: absolute;
  left: 0;
  top: 11px;
  font-weight: 700
}

.pc-list li.y::before {
  content: "✓";
  color: var(--buy)
}

.pc-list li.n::before {
  content: "—";
  color: var(--faint)
}

.pc-list li.n {
  color: var(--faint)
}

.pcard .btn {
  width: 100%;
  justify-content: center
}

@media(max-width:820px) {
  .ptable-scroll {
    display: none
  }

  .pcards {
    display: block
  }
}


/* ===== MOBILE POLISH ===== */
@media(max-width:720px) {

  /* никаких горизонтальных выездов */
  html,
  body {
    max-width: 100%;
    overflow-x: hidden
  }

  img,
  video,
  iframe {
    max-width: 100%
  }

  /* таблицы/преформат не ломают ширину */
  table {
    max-width: 100%
  }

  /* модалка анкеты — на всю высоту, удобный скролл */
  .gcm {
    padding: 0;
    align-items: stretch
  }

  .gcm-card {
    border-radius: 0;
    max-width: 100%;
    min-height: 100%;
    margin: 0
  }

  .gcm-head {
    padding: 18px 18px 16px;
    padding-top: calc(18px + env(safe-area-inset-top))
  }

  .gcm-close {
    top: calc(10px + env(safe-area-inset-top));
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 22px
  }

  .gcm-h {
    font-size: 19px
  }

  .gcm-body {
    padding: 8px 10px calc(20px + env(safe-area-inset-bottom))
  }

  /* отзывы: скрины не режутся */
  .rev-proof img {
    width: 100%;
    height: auto
  }

  /* лайтбокс на телефоне */
  .lb-hint {
    font-size: 11px;
    padding: 0 12px;
    text-align: center
  }
}

@media(max-width:560px) {
  .hero h1 {
    font-size: 32px;
    line-height: 1.12
  }

  .h-sec {
    font-size: 25px
  }

  .final h2 {
    font-size: 25px
  }

  .manifesto p {
    font-size: 19px
  }

  .hero-cta {
    flex-direction: column
  }

  .hero-cta .btn {
    width: 100%
  }

  .hero-meta {
    gap: 14px
  }

  .fomo {
    padding: 16px 16px;
    gap: 12px
  }

  .fomo .ft {
    font-size: 14.5px;
    min-width: 100%
  }

  .fomo .fbtn {
    width: 100%;
    text-align: center
  }

  .wrap {
    padding: 0 16px
  }

  .pcard {
    padding: 20px 16px 18px
  }

  .pc-price {
    font-size: 24px
  }

  .pc-list li {
    font-size: 13.5px;
    padding-left: 24px
  }
}





/* ===== AUTHOR PHOTO QUOTE ===== */
.a-pcol {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.a-pquote {
  background: var(--panel);
  border: 1px solid var(--line2);
  border-radius: 18px;
  padding: 22px 24px;
  position: relative;
  box-shadow: 0 20px 44px -28px rgba(30, 25, 80, .4)
}

.a-pquote::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 16px;
  font-family: 'Unbounded', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: rgba(109, 77, 224, .18);
  font-weight: 800
}

.a-pquote p {
  position: relative;
  z-index: 1;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink2);
  margin: 0 0 14px;
  font-style: italic
}

.a-pquote .a-psign {
  display: flex;
  align-items: center;
  gap: 10px
}

.a-pquote .a-psign .ln {
  flex: none;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #7c3aed, #8b6cf6)
}

.a-pquote .a-psign b {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-deep)
}

.a-pquote .a-psign span {
  font-size: 12.5px;
  color: var(--muted)
}

@media(max-width:820px) {
  .a-pcol {
    max-width: 420px;
    margin: 0 auto
  }
}

@media(max-width:560px) {
  .a-pquote {
    padding: 20px 18px
  }

  .a-pquote p {
    font-size: 14.5px
  }
}


/* ===== DECOR BACKGROUND ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(680px 480px at 12% -6%, rgba(124, 58, 237, .10), transparent 60%),
    radial-gradient(620px 520px at 92% 8%, rgba(108, 76, 241, .08), transparent 62%),
    radial-gradient(720px 560px at 80% 88%, rgba(139, 108, 246, .10), transparent 60%),
    radial-gradient(560px 460px at 6% 82%, rgba(108, 76, 241, .06), transparent 62%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22440%22%20height%3D%22440%22%20viewBox%3D%220%200%20440%20440%22%3E%3Cg%20fill%3D%22%231c1a4a%22%3E%3Ctext%20x%3D%2240%22%20y%3D%2270%22%20font-family%3D%22Georgia%2Cserif%22%20font-size%3D%2234%22%20transform%3D%22rotate%28-14%2040%2070%29%22%3E%24%3C%2Ftext%3E%3Ctext%20x%3D%22325%22%20y%3D%2260%22%20font-family%3D%22Georgia%2Cserif%22%20font-size%3D%2240%22%20transform%3D%22rotate%2810%20325%2060%29%22%3E%26%238383%3B%3C%2Ftext%3E%3Ctext%20x%3D%22180%22%20y%3D%22130%22%20font-family%3D%22Georgia%2Cserif%22%20font-size%3D%2230%22%20transform%3D%22rotate%286%20180%20130%29%22%3E%26%238372%3B%3C%2Ftext%3E%3Ctext%20x%3D%2290%22%20y%3D%22220%22%20font-family%3D%22Georgia%2Cserif%22%20font-size%3D%2244%22%20transform%3D%22rotate%28-8%2090%20220%29%22%3E%26%23926%3B%3C%2Ftext%3E%3Ctext%20x%3D%22378%22%20y%3D%22200%22%20font-family%3D%22Georgia%2Cserif%22%20font-size%3D%2228%22%20transform%3D%22rotate%2816%20378%20200%29%22%3E%24%3C%2Ftext%3E%3Ctext%20x%3D%22248%22%20y%3D%22250%22%20font-family%3D%22Georgia%2Cserif%22%20font-size%3D%2236%22%20transform%3D%22rotate%28-12%20248%20250%29%22%3E%26%23165%3B%3C%2Ftext%3E%3Ctext%20x%3D%2230%22%20y%3D%22350%22%20font-family%3D%22Georgia%2Cserif%22%20font-size%3D%2230%22%20transform%3D%22rotate%288%2030%20350%29%22%3E%26%238383%3B%3C%2Ftext%3E%3Ctext%20x%3D%22158%22%20y%3D%22330%22%20font-family%3D%22Georgia%2Cserif%22%20font-size%3D%2226%22%20transform%3D%22rotate%28-6%20158%20330%29%22%3E%26%238372%3B%3C%2Ftext%3E%3Ctext%20x%3D%22328%22%20y%3D%22360%22%20font-family%3D%22Georgia%2Cserif%22%20font-size%3D%2242%22%20transform%3D%22rotate%28-16%20328%20360%29%22%3E%24%3C%2Ftext%3E%3Ctext%20x%3D%22405%22%20y%3D%22300%22%20font-family%3D%22Georgia%2Cserif%22%20font-size%3D%2224%22%20transform%3D%22rotate%284%20405%20300%29%22%3E%26%23926%3B%3C%2Ftext%3E%3Ctext%20x%3D%22218%22%20y%3D%22410%22%20font-family%3D%22Georgia%2Cserif%22%20font-size%3D%2232%22%20transform%3D%22rotate%2812%20218%20410%29%22%3E%26%238383%3B%3C%2Ftext%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%231c1a4a%22%20stroke-width%3D%222%22%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%22140%22%20r%3D%2213%22%2F%3E%3Ccircle%20cx%3D%2270%22%20cy%3D%22150%22%20r%3D%229%22%2F%3E%3Ccircle%20cx%3D%22380%22%20cy%3D%22410%22%20r%3D%2211%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 440px 440px;
  opacity: .032;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 86%, transparent 100%);
}

@media(max-width:560px) {
  body::after {
    background-size: 320px 320px;
    opacity: .024
  }
}





/* ===== FIX: photos collapsing on mobile ===== */
.hero-photo,
.a-photo {
  width: 100%
}

.a-pcol {
  width: 100%
}

.a-pcol .a-photo {
  width: 100%;
  flex: none
}

@media(max-width:960px) {

  .hero-photo,
  .a-photo {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto
  }
}

@media(max-width:820px) {
  .a-pcol {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto
  }

  .a-pcol .a-photo {
    width: 100%;
    max-width: 100%
  }
}


/* ===== FIX: GC form reachable on mobile ===== */
@media(max-width:720px) {

  /* модалка скроллится сама, карточка не обрезает контент */
  .gcm {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain
  }

  .gcm-card {
    min-height: auto;
    overflow: visible;
    padding-bottom: calc(30px + env(safe-area-inset-bottom))
  }

  .gcm-body {
    overflow: visible
  }

  .gcm-slot {
    overflow: visible
  }

  .gcm-slot iframe {
    min-height: 640px
  }
}


/* ===== MOBILE BURGER NAV ===== */
.burger {
  display: none;
  margin-left: auto;
  margin-right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, .7);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-deep);

  transition:
    transform .25s cubic-bezier(.2, .8, .2, 1),
    opacity .18s ease;
}

.burger.on span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.on span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.on span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mnav {
  position: fixed;
  inset: 0;
  z-index: 140;

  display: block;

  background: rgba(16, 12, 40, .55);
  backdrop-filter: blur(4px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .25s ease,
    visibility 0s linear .25s;
}

.mnav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
    opacity .25s ease,
    visibility 0s linear 0s;
}

.mnav-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  background: #fff;

  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;

  padding: calc(16px + env(safe-area-inset-top))
           18px
           20px;

  box-shadow:
    0 26px 60px -24px
    rgba(30, 20, 80, .5);

  transform: translateY(-25px);
  opacity: 0;

  transition:
    transform .3s cubic-bezier(.2, .8, .2, 1),
    opacity .2s ease;
}

.mnav.open .mnav-panel {
  transform: translateY(0);
  opacity: 1;
}

@keyframes mnavIn {
  from {
    opacity: 0;
    transform: translateY(-14px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.mnav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px
}

.mnav-head .logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy-deep)
}

.mnav-x {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f2f0fb;
  color: var(--navy-deep);
  font-size: 20px;
  line-height: 1;
  cursor: pointer
}

.mnav a.mlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line2);
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-deep)
}

.mnav a.mlink::after {
  content: "→";
  color: var(--faint);
  font-family: 'Onest', sans-serif
}

.mnav a.mlink:last-of-type {
  border-bottom: none
}

.mnav .mnav-cta {
  margin-top: 14px
}

.mnav .mnav-cta .btn {
  width: 100%;
  justify-content: center
}

@media(max-width:820px) {
  .burger {
    display: flex
  }
}

/*Animations !*/
.hero h1 {
  --start-color: rgb(0 0 0 / 0.67);

  color: transparent;
  background-color: transparent;

  background-image: linear-gradient(
    270deg in oklch,
    var(--start-color) 0%,
    rgba(44, 58, 110, 0.76) 7%,
    #b5d4eb 18%,
    #00ff40 32%,
    #c6f3ea 45%,
    #e0f4ec 62%,
    #6C4CF1 73%,
    #6C4CF1 99%,
    transparent
  );

  -webkit-background-clip: text;
  background-clip: text;

  background-size: 300% 100%;
  background-position: 160% 0;
  background-repeat: no-repeat;

  padding-bottom: .05em;
  margin-bottom: -.05em;
}

.hero h1 .grad-text {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: inherit;
  color: inherit;
}

.hero h1.apple-reveal {
  animation: appleTextReveal 3.5s linear forwards;
}


@keyframes appleTextReveal {
  from {
    background-position: 160% 0;
  }

  to {
    background-position: 0% 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.99);

  transition:
    opacity 1300ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);

  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}