:root {
  --ink: #000000;
  --muted: #6f6570;
  --paper: #fbf7fb;
  --surface: #ffffff;
  --line: #eaddec;
  --wb-purple: #7f30e3;
  --wb-pink: #f90479;
  --wb-orange: #fe5f00;
  --wb-lavender: #e5a6e7;
  --wb-lime: #94e330;
  --rose: #ffe4f2;
  --radius: 10px;
  --shadow: 0 24px 70px rgba(127, 48, 227, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(249, 4, 121, 0.14), transparent 28%),
    radial-gradient(circle at 84% 0%, rgba(127, 48, 227, 0.14), transparent 24%),
    rgba(251, 247, 251, 0.92);
  border-bottom: 1px solid rgba(233, 224, 230, 0.82);
  box-shadow: 0 10px 34px rgba(127, 48, 227, 0.08);
  backdrop-filter: blur(18px);
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--wb-purple), var(--wb-pink), var(--wb-orange));
}

.brand,
.nav,
.header-actions,
.hero-actions,
.hero-proof,
.tabs,
.footer,
.footer-socials {
  display: flex;
  align-items: center;
}

.brand {
  position: relative;
  z-index: 1;
  gap: 12px;
  font-weight: 800;
  transition: transform 220ms ease;
}

.brand:hover {
  transform: scale(1.035);
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--wb-purple), var(--wb-pink));
  border-radius: 50%;
  font-size: 13px;
  box-shadow: 0 10px 26px rgba(249, 4, 121, 0.24);
}

.brand-title {
  position: relative;
  display: grid;
  line-height: 0.92;
}

.brand-title span:first-child {
  color: var(--wb-pink);
  font-family: "Marck Script", cursive;
  font-size: 24px;
  font-weight: 400;
  transform: rotate(-5deg) translateY(4px);
  transform-origin: left center;
}

.brand-title span:last-child {
  color: var(--ink);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

.nav {
  position: relative;
  z-index: 1;
  gap: 34px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(234, 221, 236, 0.82);
  border-radius: 999px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(127, 48, 227, 0.08);
}

.nav a {
  position: relative;
  display: inline-block;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--wb-purple), var(--wb-pink));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.nav a:hover {
  color: var(--wb-purple);
  transform: scale(1.07);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.footer a:hover {
  color: var(--wb-purple);
}

.header-actions,
.footer-socials {
  position: relative;
  z-index: 1;
  gap: 10px;
}

.social-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(127, 48, 227, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-link:hover {
  color: #fff;
  filter: saturate(1.08);
  transform: translateY(-2px) scale(1.08) rotate(-4deg);
  box-shadow: 0 16px 32px rgba(249, 4, 121, 0.2);
}

.social-link.instagram {
  background: radial-gradient(circle at 30% 110%, #ffdb70 0 18%, #ff4f67 38%, #b737d9 68%, #6337ff 100%);
}

.social-link.telegram {
  background: linear-gradient(135deg, #2aabee, #229ed9);
}

.header-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font: 800 14px/1 "Manrope", sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 22px;
  color: #fff;
  background: var(--ink);
}

.button {
  padding: 0 24px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px) scale(1.03);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--wb-purple), var(--wb-pink));
  box-shadow: 0 16px 36px rgba(249, 4, 121, 0.24);
}

.button-soft {
  color: var(--wb-purple);
  background: var(--rose);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 4.6vw, 58px);
  align-items: center;
  padding: clamp(22px, 3.4vw, 38px) 0 clamp(24px, 3vw, 34px);
}

.hero-copy,
.portrait-wrap {
  min-width: 0;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  color: var(--wb-pink);
  background: var(--rose);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-topline .eyebrow {
  margin-bottom: 0;
}

.wb-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 6px 14px 6px 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(127, 48, 227, 0.12);
  color: var(--ink);
  font: 800 15px/0.96 "Unbounded", "Manrope", sans-serif;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.wb-badge:hover {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 0 18px 42px rgba(249, 4, 121, 0.18);
}

.wb-badge small {
  display: block;
  color: var(--muted);
  font: 700 10px/1 "Manrope", sans-serif;
}

.wb-badge-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--wb-purple), var(--wb-pink));
  border-radius: 50%;
  font: 800 11px/1 "Manrope", sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(44px, 5vw, 72px);
}

h1 span {
  display: block;
  color: var(--wb-pink);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 76px);
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  max-width: 650px;
}

.hero-proof span {
  position: relative;
  min-width: 0;
  padding: 16px 18px 17px;
  overflow: hidden;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(127, 48, 227, 0.38), rgba(249, 4, 121, 0.44)) border-box;
  border: 1px solid rgba(249, 4, 121, 0.2);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-proof span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: linear-gradient(180deg, var(--wb-purple), var(--wb-pink));
}

.hero-proof small {
  display: block;
  margin-bottom: 4px;
  color: var(--wb-purple);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof span:hover {
  border-color: var(--wb-lavender);
  box-shadow: 0 14px 28px rgba(127, 48, 227, 0.12);
  transform: translateY(-3px);
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.05;
}

.portrait-wrap {
  position: relative;
  min-height: 360px;
  isolation: isolate;
}

.portrait-wrap::before {
  position: absolute;
  inset: 42px -20px -18px 58px;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 14% 18%, var(--wb-lavender), transparent 34%),
    linear-gradient(135deg, var(--wb-purple), var(--wb-pink) 58%, var(--wb-orange));
  border-radius: 52% 48% 10% 10%;
  filter: saturate(1.08);
}

.portrait-wrap img {
  width: 100%;
  height: clamp(340px, 36vw, 430px);
  object-fit: cover;
  object-position: 47% 45%;
  border-radius: 8px 8px 180px 180px;
  box-shadow: var(--shadow);
  transition: transform 500ms ease, filter 300ms ease;
}

.portrait-wrap:hover img {
  filter: saturate(1.06);
  transform: scale(1.015);
}

.portrait-badge {
  position: absolute;
  width: min(205px, 44vw);
  padding: 13px 15px;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translate3d(0, calc(var(--badge-shift, 0) * 1px), 0);
  transition: transform 500ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms ease;
  animation: badgeFloat 5.5s ease-in-out infinite;
}

.portrait-badge span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  opacity: 0.78;
}

.portrait-badge strong {
  font-size: 16px;
}

.badge-blue {
  top: auto;
  right: 24px;
  bottom: -18px;
  background: var(--wb-purple);
}

.badge-pink {
  left: 24px;
  bottom: -18px;
  background: var(--wb-pink);
  animation-delay: -2.4s;
}

@keyframes badgeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.intro-band,
.pricing-band,
.faq-band {
  padding: clamp(54px, 7vw, 92px) 0;
}

.intro-band {
  padding: clamp(28px, 4vw, 52px) 0;
  background:
    linear-gradient(135deg, rgba(127, 48, 227, 0.08), rgba(249, 4, 121, 0.04)),
    #fff;
  border-block: 1px solid var(--line);
}

.split-intro,
.feature-layout,
.faq-layout,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.split-intro {
  align-items: center;
}

.section-heading p:not(.script-word),
.contact-copy p:not(.script-word),
.faq-layout > div:first-child p:not(.script-word) {
  color: var(--muted);
  font-size: 18px;
}

.script-word {
  margin-bottom: -6px;
  color: var(--wb-pink);
  font-family: "Marck Script", cursive;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1;
  text-shadow: 0 8px 24px rgba(249, 4, 121, 0.16);
  transform: rotate(-4deg);
  transform-origin: left center;
}

.intro-title h2 {
  max-width: 460px;
  margin-bottom: 0;
}

.pathway-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pathway-stack p {
  font-size: 15px;
}

.pathway-stack article {
  position: relative;
  min-height: 176px;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #2d1237 55%, var(--wb-purple));
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(127, 48, 227, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.pathway-stack article:nth-child(2) {
  background: linear-gradient(135deg, var(--wb-purple), var(--wb-pink) 68%, var(--wb-orange));
}

.pathway-stack article::after {
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  content: "";
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.pathway-stack article:hover {
  box-shadow: 0 28px 68px rgba(249, 4, 121, 0.18);
  transform: translateY(-5px) rotate(-1deg);
}

.pathway-stack span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.pathway-stack h3 {
  max-width: 280px;
  margin-bottom: 8px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 20px;
}

.pathway-stack p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.chooser-section {
  padding: clamp(32px, 5vw, 64px) 0 28px;
}

.chooser-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 18px;
}

.chooser-head .script-word {
  margin-bottom: -6px;
}

.chooser-head h2 {
  margin-bottom: 0;
}

.ios-switch {
  position: relative;
  display: flex;
  width: 236px;
  gap: 0;
  padding: 5px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(127, 48, 227, 0.12);
}

.ios-switch::before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  content: "";
  background: linear-gradient(135deg, var(--wb-purple), var(--wb-pink));
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(249, 4, 121, 0.22);
  transition: transform 380ms cubic-bezier(.16,1,.28,1);
}

.ios-switch.seller-active::before {
  transform: translateX(100%);
}

.ios-switch button {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: 900 14px/1 "Manrope", sans-serif;
  font-weight: 900;
  text-align: center;
  transition: color 180ms ease, transform 180ms ease;
}

.ios-switch button.active {
  color: #fff;
}

.ios-switch button:hover {
  transform: scale(1.04);
}

.choice-board {
  position: relative;
  display: grid;
  min-height: 410px;
  padding: 0 86px 58px 0;
  perspective: 1200px;
  overflow: visible;
}

.choice-card,
.feature-panel,
.program-grid article,
.price-card,
.trust-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: opacity 420ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.choice-card {
  position: relative;
  min-height: 330px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.choice-panel {
  grid-area: 1 / 1;
  transform-origin: center bottom;
  transition:
    z-index 0ms linear 240ms,
    opacity 560ms ease,
    transform 760ms cubic-bezier(.16,1,.28,1),
    filter 560ms ease,
    box-shadow 560ms ease;
}

.choice-panel.active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  filter: saturate(1);
  transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  transition-delay: 0ms;
}

.choice-panel:not(.active) {
  z-index: 1;
  opacity: 0.96;
  pointer-events: none;
  filter: saturate(0.96);
  box-shadow: 0 18px 48px rgba(127, 48, 227, 0.1);
  transform: translateX(72px) translateY(36px) rotate(1.8deg) scale(0.96);
}

.choice-panel:not(.active)::before {
  position: absolute;
  top: 18px;
  left: 34px;
  z-index: 2;
  padding: 8px 14px;
  content: "следующий путь";
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-card::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 190px;
  height: 190px;
  content: "";
  background: linear-gradient(135deg, rgba(127, 48, 227, 0.08), rgba(249, 4, 121, 0.12));
  border-radius: 50%;
}

.choice-card:hover,
.feature-panel:hover,
.program-grid article:hover,
.price-card:hover,
.trust-grid article:hover,
details:hover {
  border-color: var(--wb-lavender);
  box-shadow: 0 20px 46px rgba(127, 48, 227, 0.13);
  transform: translateY(-5px);
}

.choice-seller {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #2b1035 48%, var(--wb-purple));
  border-color: rgba(255, 255, 255, 0.2);
}

.choice-seller::after {
  background: rgba(255, 255, 255, 0.16);
}

.choice-kicker {
  display: inline-block;
  margin-bottom: 34px;
  padding: 8px 12px;
  color: var(--wb-pink);
  background: var(--rose);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-seller .choice-kicker {
  color: var(--ink);
  background: #fff;
}

.choice-card h3 {
  max-width: 560px;
  margin-bottom: 22px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
}

.choice-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.choice-seller ul {
  color: rgba(255, 255, 255, 0.74);
}

.choice-card li::before {
  content: "+ ";
  color: var(--wb-pink);
  font-weight: 900;
}

.content-section {
  padding: clamp(54px, 8vw, 104px) 0 28px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.compact-heading {
  margin-inline: auto;
  text-align: center;
}

.feature-panel {
  padding: clamp(24px, 3vw, 34px);
}

.learning-board,
.seller-roadmap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  margin-bottom: 20px;
}

.learning-card,
.seller-core,
.seller-points div {
  position: relative;
  min-height: 170px;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.learning-card:hover,
.seller-core:hover,
.seller-points div:hover {
  border-color: var(--wb-lavender);
  box-shadow: 0 20px 46px rgba(127, 48, 227, 0.13);
  transform: translateY(-5px);
}

.learning-main,
.seller-core {
  grid-row: span 2;
  color: #fff;
  background: linear-gradient(145deg, var(--wb-purple), var(--wb-pink) 68%, var(--wb-orange));
}

.manager-roadmap .seller-core {
  background: linear-gradient(145deg, var(--ink), #2d1237 50%, var(--wb-purple));
}

.learning-accent {
  color: #fff;
  background: var(--ink);
}

.learning-card span,
.seller-core span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: var(--wb-pink);
  background: var(--rose);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.learning-main span,
.learning-accent span,
.seller-core span {
  color: var(--ink);
  background: #fff;
}

.learning-card h3,
.seller-core h3,
.seller-points strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.learning-card p,
.seller-core p,
.seller-points p {
  margin-bottom: 0;
  color: var(--muted);
}

.learning-main p,
.learning-accent p,
.seller-core p {
  color: rgba(255, 255, 255, 0.78);
}

.seller-roadmap {
  grid-template-columns: 0.9fr 1.1fr;
}

.seller-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.seller-points div:nth-child(2),
.seller-points div:nth-child(3) {
  background: var(--rose);
}

.panel-blue {
  background: linear-gradient(135deg, rgba(127, 48, 227, 0.12), rgba(229, 166, 231, 0.42));
  border-color: rgba(127, 48, 227, 0.16);
}

.panel-pink {
  background: var(--rose);
  border-color: #ffc6df;
}

.check-list,
.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.price-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before,
.price-card li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--wb-pink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #fff;
}

.program-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: minmax(138px, auto);
  gap: 14px;
  margin-top: 20px;
}

.program-grid article {
  display: grid;
  align-content: space-between;
  padding: 24px;
}

.program-grid article:nth-child(1),
.program-grid article:nth-child(6) {
  grid-row: span 2;
  background: linear-gradient(145deg, #fff, rgba(229, 166, 231, 0.28));
}

.program-grid article:nth-child(3) {
  border-radius: 34px;
}

.program-grid article:nth-child(4) {
  color: #fff;
  background: var(--ink);
}

.program-grid article:nth-child(4) p {
  color: rgba(255, 255, 255, 0.72);
}

.program-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--wb-purple);
  font-weight: 800;
}

.program-grid p,
.trust-grid span {
  color: var(--muted);
}

.seller-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.steps {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.steps div {
  min-height: 130px;
  padding: 20px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  transition: opacity 420ms ease, transform 220ms ease, background 220ms ease;
}

.steps div:nth-child(1),
.steps div:nth-child(4) {
  grid-column: span 5;
}

.steps div:nth-child(2),
.steps div:nth-child(5) {
  grid-column: span 4;
}

.steps div:nth-child(3),
.steps div:nth-child(6) {
  grid-column: span 3;
}

.steps div:hover {
  background: linear-gradient(135deg, var(--wb-purple), var(--wb-pink));
  transform: translateY(-5px) rotate(-1deg);
}

.steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--ink);
  background: var(--wb-lime);
  border-radius: 50%;
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
  font-weight: 700;
}

.pricing-band {
  background: #fff;
  border-block: 1px solid var(--line);
}

.tabs {
  width: fit-content;
  gap: 6px;
  margin: 0 auto 26px;
  padding: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.tab {
  min-width: 128px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: 800 14px/1 "Manrope", sans-serif;
  cursor: pointer;
}

.tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--wb-purple), var(--wb-pink));
}

.price-grid {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-grid.active {
  display: grid;
}

.price-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border-color: var(--wb-pink);
  box-shadow: var(--shadow);
}

.price-kicker {
  color: var(--wb-pink);
  font-weight: 800;
}

.price-card ul {
  margin-bottom: auto;
}

.price {
  margin: 30px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.trust-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(64px, 8vw, 110px) max(18px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 80% 12%, rgba(249, 4, 121, 0.25), transparent 32%),
    radial-gradient(circle at 8% 88%, rgba(127, 48, 227, 0.28), transparent 34%),
    var(--ink);
}

.trust-section .section-heading p:not(.script-word) {
  color: rgba(255, 255, 255, 0.68);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 1fr;
  grid-auto-rows: minmax(190px, auto);
  gap: 14px;
}

.trust-card {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
}

.trust-card::after {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  content: "";
  background: linear-gradient(135deg, rgba(127, 48, 227, 0.14), rgba(249, 4, 121, 0.18));
  border-radius: 50%;
}

.trust-card.trust-hero {
  grid-row: span 2;
  display: grid;
  align-content: end;
  color: #fff;
  background: linear-gradient(145deg, var(--wb-purple), var(--wb-pink) 64%, var(--wb-orange));
  cursor: pointer;
  isolation: isolate;
}

.trust-card.trust-dark {
  color: #fff;
  background: var(--ink);
}

.trust-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--wb-pink);
  background: var(--rose);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-card .trust-kicker {
  color: var(--wb-pink);
}

.trust-hero .trust-kicker,
.trust-dark .trust-kicker {
  color: var(--ink);
  background: #fff;
}

.trust-card .trust-kicker,
.trust-card strong,
.trust-card p {
  position: relative;
  z-index: 1;
}

.trust-grid strong {
  display: block;
  max-width: 360px;
  margin-bottom: 16px;
  color: var(--wb-purple);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.06;
}

.trust-hero strong,
.trust-dark strong {
  color: #fff;
}

.trust-card p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.64);
}

.trust-hero p,
.trust-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.money-pile {
  position: absolute;
  right: -190px;
  top: 104px;
  z-index: 0;
  width: min(142%, 780px);
  max-width: none;
  opacity: 0.9;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.trust-hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 64%;
  content: "";
  background: linear-gradient(0deg, rgba(127, 48, 227, 0.92), rgba(249, 4, 121, 0.62) 58%, transparent);
  pointer-events: none;
}

.coin-fly {
  position: absolute;
  left: var(--coin-x);
  top: var(--coin-y);
  z-index: 6;
  width: 54px;
  pointer-events: none;
  animation: coinBurst 900ms cubic-bezier(.18,.84,.24,1) forwards;
}

@keyframes coinBurst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25) rotate(0deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--coin-dx)), calc(-50% + var(--coin-dy))) scale(1.05) rotate(var(--coin-rotate));
  }
}

.faq-band {
  background:
    radial-gradient(circle at 86% 20%, rgba(249, 4, 121, 0.24), transparent 30%),
    linear-gradient(135deg, var(--ink), #21072a 58%, #070207);
  color: #fff;
}

.faq-layout > div:first-child p:not(.script-word) {
  color: rgba(255, 255, 255, 0.68);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(229, 166, 231, 0.28);
  border-radius: var(--radius);
  transition: opacity 420ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  padding: clamp(54px, 8vw, 96px) 0;
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: 600 15px/1 "Manrope", sans-serif;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(127, 48, 227, 0.38);
  outline-offset: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note[data-status="success"] {
  color: #137b3e;
}

.form-note[data-status="error"] {
  color: #c12b50;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.footer {
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
}

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

  .hero,
  .split-intro,
  .feature-layout,
  .faq-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .portrait-wrap {
    min-height: auto;
  }

  .portrait-wrap img {
    height: min(92vw, 660px);
  }

  .portrait-wrap::before {
    inset: 28px 0 -10px 34px;
  }

  .program-grid,
  .price-grid.active,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chooser-head,
  .choice-board,
  .learning-board,
  .seller-roadmap {
    grid-template-columns: 1fr;
  }

  .learning-main,
  .seller-core,
  .trust-card.trust-hero {
    grid-row: auto;
  }

  .program-grid article:nth-child(1),
  .program-grid article:nth-child(6) {
    grid-row: auto;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps div:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-title span:first-child {
    font-size: 21px;
  }

  .brand-title span:last-child {
    max-width: 128px;
    font-size: 12px;
    line-height: 1;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .header-actions {
    gap: 6px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .social-link svg {
    width: 19px;
    height: 19px;
  }

  .section-shell {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .direction-grid,
  .choice-board,
  .seller-points,
  .program-grid,
  .price-grid.active,
  .trust-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .badge-blue {
    right: auto;
  }

  .badge-pink {
    left: auto;
    bottom: auto;
  }

  .portrait-badge {
    position: static;
    width: 100%;
    padding: 12px 14px;
  }

  .portrait-wrap {
    display: grid;
    gap: 10px;
    overflow: visible;
  }

  .tabs {
    width: 100%;
  }

  .tab {
    min-width: 0;
    flex: 1;
  }

  .ios-switch {
    width: min(100%, 236px);
  }

  .ios-switch button {
    padding-inline: 10px;
  }

  .choice-board {
    overflow: hidden;
    padding: 0 28px 32px 0;
    border-radius: 28px;
  }

  .choice-panel:not(.active) {
    transform: translateX(24px) translateY(24px) rotate(1.2deg) scale(0.96);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .money-pile {
    opacity: 0.48;
  }

  .footer {
    gap: 14px;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
  min-height: 90px;
