body.landing-root-active {
  background: #fff7f1;
  color: #21142d;
  padding: 0;
}

body.landing-root-active #app {
  max-width: none;
  min-height: 100dvh;
  padding-bottom: 0;
  overflow-x: hidden;
}

body.landing-root-active #navbar {
  display: none !important;
}

.landing-page {
  --landing-ink: #21142d;
  --landing-muted: #74627d;
  --landing-soft: #fff7f1;
  --landing-card: rgba(255, 255, 255, 0.84);
  --landing-line: rgba(108, 48, 92, 0.16);
  --landing-pink: #ff3b9c;
  --landing-pink-dark: #b21361;
  --landing-plum: #281334;
  --landing-violet: #7b4dff;
  --landing-gold: #ffc857;
  --landing-mint: #3fc89c;
  --landing-blue: #2f88ff;
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 5%, rgba(255, 126, 196, 0.32), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(123, 77, 255, 0.26), transparent 32%),
    linear-gradient(180deg, #fff7f1 0%, #fff3f8 34%, #fffaf4 68%, #1b1026 100%);
  color: var(--landing-ink);
  font-family: var(--font-body);
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
  box-sizing: border-box;
}

.landing-page p {
  color: var(--landing-muted);
  font-weight: 750;
  line-height: 1.58;
}

.landing-page img {
  max-width: 100%;
}

.landing-page a:focus-visible,
.landing-page button:focus-visible,
.landing-page summary:focus-visible {
  outline: 3px solid rgba(47, 136, 255, 0.42);
  outline-offset: 4px;
}

.landing-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.42;
}

.orb-one {
  top: 160px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(255, 59, 156, 0.24);
  animation: orbFloat 14s ease-in-out infinite;
}

.orb-two {
  top: 520px;
  right: -140px;
  width: 320px;
  height: 320px;
  background: rgba(47, 136, 255, 0.16);
  animation: orbFloat 18s ease-in-out infinite reverse;
}

.landing-nav {
  position: relative;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--landing-ink);
  font-weight: 950;
  font-size: 1.08rem;
}

.landing-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(181, 31, 115, 0.14));
}

.landing-brand span {
  font-family: var(--font-logo);
  letter-spacing: 0;
}

.landing-nav-links {
  display: none;
  align-items: center;
  gap: 22px;
}

.landing-nav-links a {
  color: rgba(33, 20, 45, 0.72);
  font-size: 0.94rem;
  font-weight: 900;
}

.landing-nav-cta,
.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 16px;
  padding: 0 18px;
  font-size: 0.96rem;
  font-weight: 950;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.landing-nav-cta,
.landing-button.primary {
  color: #fff;
  background: linear-gradient(180deg, #ff66bd 0%, #df167c 100%);
  box-shadow: 0 14px 30px rgba(217, 22, 120, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.landing-button.primary {
  min-height: 54px;
}

.landing-button.secondary {
  min-height: 54px;
  color: var(--landing-ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--landing-line);
  box-shadow: 0 10px 24px rgba(39, 19, 55, 0.08);
}

.landing-button.secondary.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.landing-nav-cta:hover,
.landing-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.landing-button.primary:hover {
  box-shadow: 0 18px 42px rgba(217, 22, 120, 0.34), 0 0 0 6px rgba(255, 59, 156, 0.08);
}

.landing-hero {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100dvh - 76px);
  margin: 0 auto;
  padding: 38px 0 72px;
  display: grid;
  align-items: center;
  gap: 36px;
}

.landing-hero-copy {
  max-width: 690px;
}

.landing-eyebrow {
  margin-bottom: 12px;
  color: var(--landing-pink) !important;
  font-size: 0.78rem;
  font-weight: 1000 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-hero h1 {
  max-width: 720px;
  color: var(--landing-ink);
  font-size: clamp(2.55rem, 9vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.landing-hero-sub {
  max-width: 640px;
  margin-top: 24px;
  font-size: clamp(1.02rem, 2.6vw, 1.32rem);
}

.landing-cta-row,
.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.landing-cta-row {
  margin-top: 30px;
}

.landing-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(106, 45, 89, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #5b4564;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(70, 28, 85, 0.06);
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-stat {
  min-height: 112px;
  border: 1px solid var(--landing-line);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 38px rgba(51, 26, 62, 0.08);
}

.hero-stat strong {
  display: block;
  color: var(--landing-ink);
  font-size: 2rem;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--landing-muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.landing-hero-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.landing-phone {
  border-radius: 34px;
  padding: 12px;
  background: #130b21;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(49, 20, 61, 0.3);
}

.hero-phone-main {
  width: min(340px, 76vw);
  z-index: 2;
  transform: rotate(-2deg);
  animation: phoneFloat 7s ease-in-out infinite;
}

.hero-phone-side {
  position: absolute;
  right: 0;
  bottom: 52px;
  width: min(230px, 52vw);
  z-index: 3;
  transform: rotate(5deg);
  animation: phoneFloat 8s ease-in-out infinite 0.4s;
}

.landing-floating-report,
.hero-task-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(35, 15, 48, 0.94), rgba(126, 27, 83, 0.9));
  box-shadow: 0 22px 48px rgba(62, 23, 78, 0.28);
  color: #fff;
}

.landing-floating-report {
  left: 0;
  top: 50px;
  width: min(260px, 60vw);
  padding: 18px;
  animation: cardFloat 6s ease-in-out infinite;
}

.landing-floating-report span,
.landing-floating-report p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
}

.landing-floating-report strong {
  display: block;
  margin: 4px 0;
  font-size: 1.16rem;
}

.hero-task-card {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 950;
}

.hero-task-card.card-a {
  top: 22px;
  right: 42px;
  animation: cardFloat 7s ease-in-out infinite 0.2s;
}

.hero-task-card.card-b {
  left: 18px;
  bottom: 164px;
  animation: cardFloat 7.5s ease-in-out infinite 0.5s;
}

.landing-hero-jamchik {
  position: absolute;
  left: 4%;
  bottom: 10px;
  z-index: 5;
  width: min(160px, 36vw);
  filter: drop-shadow(0 18px 22px rgba(115, 24, 73, 0.34));
  animation: jamchikIdle 4.2s ease-in-out infinite;
}

.landing-section {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.landing-section-head {
  max-width: 740px;
  margin-bottom: 32px;
}

.landing-section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.landing-section h2,
.landing-final-cta h2,
.builder-card h2 {
  color: var(--landing-ink);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.landing-section-head > p:not(.landing-eyebrow) {
  margin-top: 14px;
  font-size: 1.04rem;
}

.how-grid,
.engine-grid,
.different-grid,
.price-grid {
  display: grid;
  gap: 16px;
}

.how-card,
.engine-card,
.different-card,
.price-card,
.landing-faq-item {
  border: 1px solid var(--landing-line);
  background: var(--landing-card);
  box-shadow: 0 18px 44px rgba(45, 22, 58, 0.08);
}

.how-card {
  min-height: 300px;
  border-radius: 28px;
  padding: 22px;
  overflow: hidden;
}

.how-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.how-card-top span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #24172f;
  color: #fff;
  font-weight: 1000;
}

.how-card-top img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(143, 35, 103, 0.16));
}

.how-card h3,
.engine-card h3,
.different-card h3,
.price-card h3,
.gallery-slide-copy h3 {
  color: var(--landing-ink);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.how-card p,
.engine-card p,
.different-card p {
  margin-top: 10px;
}

.exam-prep-section,
.gallery-section {
  width: 100%;
  max-width: none;
  padding: 86px max(16px, calc((100% - 1180px) / 2));
}

.exam-prep-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 200, 87, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 237, 247, 0.8));
}

.exam-prep-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.exam-prep-layout .landing-button {
  margin-top: 22px;
}

.exam-pack-board {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--landing-line);
  border-radius: 32px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 58px rgba(47, 25, 58, 0.1);
}

.exam-pack-board > img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 28px;
  background: #fff7f1;
}

.exam-pack-board ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.exam-feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 247, 251, 0.92);
}

.exam-feature > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #21142d;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 1000;
}

.exam-feature strong {
  color: var(--landing-ink);
}

.exam-feature p {
  margin-top: 3px;
  font-size: 0.86rem;
}

.engine-card {
  position: relative;
  min-height: 340px;
  border-radius: 30px;
  padding: 22px;
  overflow: hidden;
}

.engine-art {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin-bottom: 18px;
  border-radius: 30px;
  background: linear-gradient(145deg, #fff1f8, #eef5ff);
}

.engine-art img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.engine-card > span,
.price-card > span {
  color: var(--landing-pink);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.engine-progress {
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(33, 20, 45, 0.08);
  overflow: hidden;
}

.engine-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--landing-pink), var(--landing-violet));
}

.engine-card > strong {
  display: block;
  margin-top: 10px;
  color: var(--landing-ink);
}

.gallery-section {
  background: #1b1026;
  color: #fff;
}

.gallery-section .landing-eyebrow {
  color: #ff8fd0 !important;
}

.gallery-section h2,
.gallery-section .landing-section-head p:not(.landing-eyebrow) {
  color: #fff;
}

.gallery-section .landing-section-head p:not(.landing-eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.gallery-shell {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.gallery-window {
  overflow: hidden;
  border-radius: 26px;
}

.gallery-track {
  display: flex;
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.gallery-slide {
  flex: 0 0 100%;
  display: grid;
  gap: 20px;
  align-items: center;
  min-width: 0;
  padding: 18px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 59, 156, 0.16), transparent 30%),
    #130b21;
}

.gallery-slide-copy {
  max-width: 430px;
}

.gallery-slide-copy span {
  color: #ff8fd0;
  font-size: 0.78rem;
  font-weight: 1000;
}

.gallery-slide-copy h3 {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.gallery-slide-copy p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.gallery-controls {
  justify-content: space-between;
  margin-top: 14px;
}

.gallery-controls button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
}

.gallery-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.gallery-dots button {
  min-width: 10px;
  width: 10px;
  height: 10px;
  min-height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.gallery-dots button.active {
  width: 34px;
  background: linear-gradient(90deg, var(--landing-pink), var(--landing-gold));
}

.product-shot {
  min-height: 430px;
  border-radius: 30px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(145deg, #0e0920 0%, #1d1031 52%, #341333 100%);
  border: 1px solid rgba(255, 107, 194, 0.2);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  overflow: hidden;
}

.product-shot.compact {
  min-height: 460px;
  border-radius: 26px;
}

.shot-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  border-radius: 16px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
}

.shot-topline strong,
.shot-repair-list strong {
  color: #fff;
}

.shot-pattern-stack,
.shot-choice-grid,
.shot-mode-list,
.shot-repair-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.shot-pattern-row {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.shot-pattern-row > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.shot-pattern-row span,
.shot-pattern-row small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
}

.shot-pattern-row small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.shot-progress,
.engine-progress {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.shot-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.shot-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.shot-progress .hot {
  background: linear-gradient(90deg, var(--landing-pink), var(--landing-gold));
}

.shot-progress .warm {
  background: linear-gradient(90deg, var(--landing-violet), var(--landing-pink));
}

.shot-progress .cool {
  background: linear-gradient(90deg, var(--landing-blue), var(--landing-mint));
}

.shot-bottom-note {
  margin-top: 14px;
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 59, 156, 0.14);
  color: #ffb8e0;
  font-size: 0.82rem;
  font-weight: 900;
}

.shot-hero-image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-top: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.roadmap-node-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.roadmap-node-row i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.14);
}

.roadmap-node-row i.done,
.roadmap-node-row i.active {
  background: linear-gradient(180deg, var(--landing-mint), var(--landing-blue));
}

.roadmap-node-row i.active {
  box-shadow: 0 0 0 8px rgba(63, 200, 156, 0.12);
}

.shot-equation {
  display: grid;
  place-items: center;
  min-height: 86px;
  margin-top: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1.52rem;
  font-weight: 1000;
}

.shot-theory-card,
.shot-trap-card,
.shot-repair-strip,
.shot-report-card {
  margin-top: 14px;
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.shot-theory-card strong,
.shot-repair-strip span,
.shot-report-card span,
.shot-trap-card span {
  display: block;
  color: #ff8fd0;
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shot-theory-card p,
.shot-trap-card p,
.shot-jamchik-note p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.shot-choice-grid button,
.shot-mode-list button {
  min-height: 42px;
  border-radius: 14px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  font-size: 0.86rem;
}

.shot-choice-grid button.selected,
.shot-mode-list button.active {
  background: linear-gradient(90deg, rgba(255, 59, 156, 0.88), rgba(123, 77, 255, 0.82));
  color: #fff;
}

.shot-trap-card {
  background: linear-gradient(145deg, rgba(255, 59, 156, 0.2), rgba(255, 200, 87, 0.1));
}

.shot-trap-card h3 {
  margin-top: 6px;
  color: #fff;
  font-size: 1.3rem;
}

.shot-repair-strip {
  display: grid;
  gap: 6px;
  background: rgba(63, 200, 156, 0.12);
}

.shot-repair-strip strong,
.shot-report-card strong {
  color: #fff;
  font-size: 0.98rem;
}

.shot-timer-ring {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 24px auto 18px;
  border-radius: 50%;
  background: conic-gradient(var(--landing-pink) 0 72%, rgba(255, 255, 255, 0.1) 72% 100%);
  box-shadow: inset 0 0 0 12px rgba(14, 9, 32, 0.94);
}

.shot-timer-ring span {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 1000;
  line-height: 0.9;
}

.shot-timer-ring small {
  margin-top: -34px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.shot-repair-list > div {
  display: grid;
  gap: 4px;
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.shot-repair-list span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 800;
}

.shot-jamchik-note {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  border-radius: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.shot-jamchik-note img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.shot-score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.shot-score-row div {
  border-radius: 16px;
  padding: 12px 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
}

.shot-score-row strong {
  display: block;
  color: #fff;
  font-size: 1.22rem;
}

.shot-score-row span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 900;
}

.shot-primary-button {
  width: 100%;
  min-height: 48px;
  margin-top: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ff63ba, #e1187e);
  color: #fff;
  font-weight: 1000;
}

.character-section {
  padding-top: 44px;
}

.character-card,
.landing-final-cta,
.builder-card {
  display: grid;
  gap: 26px;
  align-items: center;
  border: 1px solid var(--landing-line);
  border-radius: 34px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 56px rgba(47, 25, 58, 0.1);
}

.character-art-stack {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.character-main {
  width: min(250px, 64vw);
  filter: drop-shadow(0 24px 24px rgba(181, 31, 115, 0.18));
  animation: jamchikIdle 4.4s ease-in-out infinite;
}

.character-writing {
  position: absolute;
  right: 6%;
  bottom: 4%;
  width: 94px;
  height: 94px;
  object-fit: contain;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 30px rgba(47, 25, 58, 0.14);
}

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

.different-card {
  min-height: 190px;
  border-radius: 26px;
  padding: 22px;
}

.different-card span {
  display: block;
  width: 38px;
  height: 8px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--landing-pink), var(--landing-gold));
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 30px;
  padding: 26px;
}

.price-card.featured {
  background: linear-gradient(145deg, #21142d 0%, #45173d 100%);
  color: #fff;
}

.price-card h3 {
  color: var(--landing-ink);
  font-size: 3.3rem;
  line-height: 0.95;
}

.price-card h3 small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
}

.price-card.featured h3,
.price-card.featured p {
  color: #fff;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-card li {
  color: var(--landing-muted);
  font-weight: 850;
}

.price-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.price-card .landing-button {
  margin-top: auto;
}

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

.landing-faq-item {
  border-radius: 20px;
  overflow: hidden;
}

.landing-faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--landing-ink);
  font-size: 1rem;
  font-weight: 1000;
}

.landing-faq-item p {
  padding: 0 20px 18px;
}

.landing-final-cta,
.builder-section {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-final-cta {
  transform: translateY(-26px);
  background: linear-gradient(145deg, #21142d 0%, #461a43 72%, #6f1a50 100%);
}

.landing-final-cta h2,
.landing-final-cta p {
  color: #fff;
}

.landing-final-cta p:not(.landing-eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.builder-section {
  padding: 34px 0 76px;
}

.builder-card {
  background: rgba(255, 255, 255, 0.9);
}

.builder-card .landing-button[aria-disabled="true"] {
  opacity: 0.82;
}

.landing-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 580ms ease, transform 580ms ease;
  transition-delay: calc(var(--stagger, 0) * 70ms);
}

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

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(0deg); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes jamchikIdle {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(26px, -22px, 0) scale(1.08); }
}

@media (min-width: 640px) {
  .landing-button {
    min-width: 190px;
  }

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

@media (min-width: 860px) {
  .landing-nav-links {
    display: flex;
  }

  .landing-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  }

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

  .exam-prep-layout,
  .character-card,
  .landing-final-cta,
  .builder-card {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

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

  .gallery-slide {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
    min-height: 560px;
    padding: 26px;
  }

  .gallery-slide .product-shot {
    max-width: 450px;
    justify-self: center;
  }

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

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

@media (max-width: 640px) {
  .landing-nav {
    width: calc(100% - 24px);
    min-height: 68px;
  }

  .landing-nav-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .landing-hero,
  .landing-section,
  .landing-final-cta,
  .builder-section {
    width: calc(100% - 24px);
  }

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

  .hero-stat-row,
  .different-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero-visual {
    min-height: 520px;
  }

  .hero-phone-main {
    width: min(318px, 86vw);
  }

  .hero-phone-side {
    right: -12px;
    bottom: 36px;
    width: min(206px, 56vw);
  }

  .landing-floating-report {
    left: 2px;
    top: 14px;
    width: min(224px, 62vw);
  }

  .hero-task-card.card-a {
    top: 6px;
    right: 0;
  }

  .hero-task-card.card-b {
    left: 0;
    bottom: 136px;
  }

  .landing-hero-jamchik {
    left: 6px;
    bottom: 0;
  }

  .landing-section {
    padding: 56px 0;
  }

  .exam-prep-section,
  .gallery-section {
    padding: 60px 12px;
  }

  .exam-pack-board {
    grid-template-columns: 1fr;
  }

  .exam-pack-board > img {
    justify-self: center;
  }

  .gallery-slide {
    padding: 14px;
  }

  .product-shot {
    min-height: 400px;
  }

  .product-shot.compact {
    min-height: 430px;
  }

  .shot-score-row {
    gap: 6px;
  }

  .shot-score-row strong {
    font-size: 1rem;
  }

  .character-card,
  .landing-final-cta,
  .builder-card {
    padding: 20px;
  }

  .gallery-controls {
    justify-content: center;
  }
}

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

  .landing-reveal {
    opacity: 1;
    transform: none;
  }
}
