@import url("https://fonts.googleapis.com/css2?family=Coming+Soon&family=Inter:wght@400;500;700&family=Syne:wght@400;600&display=swap");

:root {
  --lavender: #e6e1f9;
  --lavender-2: #f4f1ff;
  --charcoal: #333333;
  --charcoal-2: #4a4a4a;
  --white: #ffffff;
  --surface: #fbfbfd;
  --muted: #757575;
  --muted-2: #9a9a9a;
  --border: rgba(51, 51, 51, 0.12);
  --shadow: 0 12px 28px rgba(51, 51, 51, 0.08);
  --shadow-soft: 0 8px 18px rgba(51, 51, 51, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tabbar-height: 82px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: linear-gradient(180deg, #f7f4ff 0%, #ede8ff 100%);
  color: var(--charcoal);
  font-family: var(--font);
}

body {
  min-height: 100svh;
  font-size: 15px;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.app-shell {
  min-height: 100svh;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, #f7f4ff 0%, #ece7ff 100%);
  box-shadow: 0 0 0 1px rgba(51, 51, 51, 0.04), 0 20px 60px rgba(51, 51, 51, 0.1);
  overflow: hidden;
}

.app {
  min-height: 100svh;
  position: relative;
}

.screen {
  min-height: 100svh;
  padding: 18px 18px calc(var(--tabbar-height) + 20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.screen--center {
  justify-content: center;
}

.screen--figma-welcome {
  justify-content: center;
  align-items: center;
  background: #e7e3f6;
  padding: 0;
}

.figma-welcome-frame {
  width: min(357px, calc(100vw - 36px));
  min-height: calc(100svh - 32px);
  margin: 16px 0;
  border: 2px solid #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 112px 18px 108px;
}

.figma-welcome-stack {
  display: grid;
  gap: 12px;
}

.figma-welcome-stack--screen2 {
  margin-top: 56px;
  gap: 14px;
}

.figma-welcome-stack--screen3 {
  margin-top: 70px;
  gap: 14px;
}

.figma-back {
  border: 0;
  background: transparent;
  color: #0a0a0a;
  font-size: 2.3rem;
  line-height: 1;
  width: 42px;
  text-align: left;
  padding: 0;
}

.figma-back--screen3 {
  margin-left: 10px;
}

.figma-welcome-title {
  margin: 0;
  font-family: "Syne", var(--font);
  font-weight: 600;
  font-size: clamp(2rem, 7vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #000;
}

.figma-welcome-title--screen3 {
  font-weight: 500;
  font-size: clamp(1.95rem, 5.8vw, 2.4rem);
  line-height: 1.1;
}

.figma-welcome-rule {
  width: 100%;
  height: 2px;
  background: #0a0a0a;
}

.figma-welcome-subtitle {
  margin: 4px 0 0;
  font-family: "Syne", var(--font);
  font-weight: 400;
  font-size: clamp(2rem, 5.8vw, 2.5rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #000;
  text-align: right;
}

.figma-welcome-copy {
  margin: 84px 0 0;
  font-family: "Inter", var(--font);
  font-weight: 400;
  font-size: clamp(1.9rem, 5.8vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1.26;
  color: #0a0a0a;
}

.figma-welcome-copy--screen3 {
  margin-top: 22px;
  font-size: clamp(1.75rem, 5.45vw, 2.2rem);
}

.figma-welcome-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.figma-welcome-footer--screen3 {
  padding-bottom: 6px;
}

.figma-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.figma-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7c7c7c;
}

.figma-dot.is-active {
  background: #0a0a0a;
}

.figma-welcome-button {
  align-self: center;
  border: 0;
  color: #fff;
  background: #3c3949;
  border-radius: 999px;
  min-width: 220px;
  padding: 14px 28px;
  font-size: 2rem;
  line-height: 1;
  transform: rotate(1.1deg);
  font-weight: 400;
  box-shadow: 0 8px 18px rgba(10, 10, 10, 0.14);
}

.figma-welcome-button:active {
  transform: rotate(1.1deg) translateY(1px);
}

.home5 {
  margin: -18px -18px 0;
  background: #e7e3f6;
  min-height: calc(100svh - var(--tabbar-height));
}

.home5-header {
  background: #5d448b;
  border-radius: 0 0 27px 27px;
  padding: 34px 16px 10px;
  color: #e7e3f6;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.home5-title {
  margin: 0;
  font-family: "Syne", var(--font);
  font-weight: 600;
  font-size: 2.45rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.home5-date {
  margin: 10px 0 0;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
}

.home5-profile {
  display: grid;
  justify-items: end;
  align-content: end;
  gap: 8px;
}

.home5-profile img {
  width: 71px;
  height: 71px;
  border-radius: 50%;
  object-fit: cover;
}

.home5-profile p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.2;
  text-align: left;
}

.home5-overview {
  background: #c3b7e7;
  border-radius: 0 0 27px 27px;
  padding: 22px 24px 18px;
}

.home5-week {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.home5-week-line {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 16px;
  height: 2px;
  background: #3f7e1a;
}

.home5-week-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.home5-week-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #a7a1bd;
  border: 3px solid rgba(0, 0, 0, 0.2);
}

.home5-week-dot.is-active {
  background: #4f9a13;
}

.home5-week-day {
  font-family: "Syne", var(--font);
  font-size: 0.9rem;
}

.home5-rule {
  margin-top: 22px;
  border-top: 2px solid rgba(93, 68, 139, 0.72);
}

.home5-task {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.home5-ring {
  --progress: 80;
  width: 66px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#06a451 calc(var(--progress) * 1%), #6ec998 0);
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.home5-ring::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #c3b7e7;
}

.home5-ring span {
  position: relative;
  z-index: 1;
  font-size: 0.86rem;
}

.home5-task-kicker {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 1.55rem;
  line-height: 1;
}

.home5-task-title {
  margin: 8px 0 0;
  font-size: 1.9rem;
  line-height: 1.2;
}

.home5-content {
  padding: 24px 24px 8px;
  display: grid;
  gap: 26px;
}

.home5-section {
  display: grid;
  gap: 12px;
}

.home5-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home5-section-head h3 {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 1.8rem;
  font-weight: 400;
}

.home5-section-head button {
  border: 0;
  background: transparent;
  color: #8a8a8a;
  font-size: 1rem;
  padding: 0;
}

.home5-card-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  touch-action: pan-x;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.home5-card-row::-webkit-scrollbar {
  display: none;
}

.home5-card {
  width: 122px;
  min-width: 122px;
  flex: 0 0 auto;
  border-radius: 10px;
  border: 0;
  text-align: left;
  background: #f2f2f2;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.23);
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.home5-card.is-peek {
  width: 47px;
  min-width: 47px;
}

.home5-card-image {
  width: 100%;
  height: 78px;
  object-fit: cover;
}

.home5-card-body {
  padding: 8px 6px 10px;
}

.home5-card-body h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home5-card-body p {
  margin: 8px 0 0;
  display: grid;
  gap: 2px;
  color: #808080;
  font-size: 0.83rem;
  line-height: 1.15;
}

.home5-card-body p span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.explore119 {
  margin: -18px -18px 0;
  min-height: calc(100svh - var(--tabbar-height));
  background: #e7e3f6;
}

.explore119-cap {
  position: relative;
  min-height: 131px;
  background: #5d448b;
  border-radius: 0 0 27px 27px;
  overflow: hidden;
}

.explore119-header {
  position: absolute;
  inset: 0;
  padding: 24px 28px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.explore119-title {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 1.56rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #e7e3f6;
}

.explore119-search {
  width: min(100%, 255px);
  align-self: center;
  height: 23px;
  border-radius: 3px;
  background: #e7e3f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore119-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #4d4d4d;
  text-align: center;
  font-family: "Inter", var(--font);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
}

.explore119-search input::placeholder {
  color: #5b5b5b;
  opacity: 1;
}

.explore119-body {
  padding: 10px 18px 18px;
  display: grid;
  gap: 16px;
}

.explore119-categories {
  display: grid;
  gap: 10px;
}

.explore119-section-title {
  margin: 0;
  color: #111111;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 400;
}

.explore119-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.explore119-category {
  display: grid;
  justify-items: center;
  gap: 7px;
}

.explore119-category-tile {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.explore119-category-tile img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.explore119-category-label {
  margin: 0;
  color: #111111;
  font-size: 0.56rem;
  line-height: 1.1;
  text-align: center;
}

.explore119-category.is-materials .explore119-category-tile {
  background: #f1b2e1;
}

.explore119-category.is-styles .explore119-category-tile {
  background: #aeedf1;
}

.explore119-category.is-difficulty .explore119-category-tile {
  background: #a2e6af;
}

.explore119-category.is-time .explore119-category-tile {
  background: #f1dd7b;
}

.explore119-sections {
  display: grid;
  gap: 13px;
  padding-bottom: 86px;
}

.explore119-section {
  display: grid;
  gap: 12px;
}

.explore119-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.explore119-section-name {
  margin: 0;
  color: #111111;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 400;
}

.explore119-view-all {
  color: #666666;
  font-size: 0.52rem;
  line-height: 1;
  white-space: nowrap;
}

.explore119-list {
  display: grid;
  gap: 18px;
}

.explore119-card {
  display: grid;
  grid-template-columns: 109px 1fr;
  gap: 14px;
  align-items: start;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.explore119-card-image {
  width: 109px;
  height: 78px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.explore119-card-title {
  margin: 0;
  color: #111111;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 500;
}

.explore119-card-copy {
  display: grid;
  gap: 4px;
  align-content: start;
}

.explore119-card-tags {
  margin-top: 2px;
  color: #9d9d9d;
  font-size: 0.62rem;
  line-height: 1.16;
}

.explore119-card-tags p {
  margin: 0;
}

.explore119-card:focus-visible {
  outline: 2px solid rgba(93, 68, 139, 0.35);
  outline-offset: 3px;
  border-radius: 10px;
}

.journal1898 {
  margin: -18px -18px 0;
  min-height: calc(100svh - var(--tabbar-height));
  background: #e7e3f6;
  padding-bottom: 18px;
  position: relative;
}

.journal1898-header {
  background: #5d448b;
  border-radius: 0 0 27px 27px;
  padding: 36px 26px 26px;
  color: #e7e3f6;
}

.journal1898-header h2 {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 2.8rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.journal1898-header p {
  margin: 6px 0 0;
  font-size: 1.1rem;
  opacity: 0.95;
}

.journal1898-grid {
  padding: 18px 20px 86px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.journal1898-card {
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  text-align: left;
  padding: 0;
}

.journal1898-image {
  width: 100%;
  height: 95px;
  object-fit: cover;
  display: block;
}

.journal1898-meta {
  background: #e7e7e7;
  min-height: 52px;
  padding: 7px 8px 8px;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  align-items: flex-start;
}

.journal1898-meta h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
  color: #111;
}

.journal1898-meta p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: #111;
  line-height: 1.2;
}

.journal1898-meta span {
  color: #3d3d3d;
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 2px;
}

.journal1898-add {
  position: absolute;
  right: 24px;
  bottom: 82px;
  border: 0;
  background: transparent;
  color: #5d448b;
  font-size: 4rem;
  line-height: 1;
  padding: 0;
}

.journal-detail1571 {
  margin: -18px -18px 0;
  min-height: calc(100svh - var(--tabbar-height));
  background: #e7e3f6;
}

.journal-detail1571-header {
  position: relative;
  background: #5d448b;
  border-radius: 0 0 27px 27px;
  color: #e7e3f6;
  padding: 34px 18px 20px;
  text-align: center;
}

.journal-detail1571-header h2 {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
}

.journal-detail1571-back {
  position: absolute;
  left: 18px;
  top: 27px;
  border: 0;
  background: transparent;
  color: #e7e3f6;
  font-size: 2.2rem;
  line-height: 1;
  padding: 0;
}

.journal-detail1571-body {
  padding: 20px 24px calc(var(--tabbar-height) + 16px);
}

.journal-detail1571-photo-wrap {
  width: 170px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.journal-detail1571-photo {
  width: 100%;
  height: 208px;
  object-fit: cover;
  display: block;
}

.journal-detail1571-meta {
  margin: 10px auto 14px;
  text-align: center;
  position: relative;
  width: fit-content;
  min-width: 160px;
}

.journal-detail1571-meta p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.journal-detail1571-meta span {
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #3d3d3d;
}

.journal-detail1571-notes {
  margin-top: 8px;
  border-radius: 6px;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 60px,
      rgba(45, 45, 45, 0.55) 61px,
      transparent 62px
    );
}

.journal-detail1571-notes textarea {
  width: 100%;
  min-height: 470px;
  border: 0;
  resize: vertical;
  outline: 0;
  background: transparent;
  color: #111;
  font-family: "Coming Soon", cursive;
  font-size: 2.95rem;
  line-height: 61px;
  padding: 6px 4px;
}

.journal-detail1571 .row {
  margin-top: 18px;
}

.profile1984 {
  margin: -18px -18px 0;
  min-height: calc(100svh - var(--tabbar-height));
  background: #e7e3f6;
}

.profile1984-header {
  background: #5d448b;
  border-radius: 0 0 27px 27px;
  color: #e7e3f6;
  text-align: center;
  padding: 38px 22px 18px;
}

.profile1984-avatar {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.profile1984-header h2 {
  margin: 12px 0 0;
  font-family: "Syne", var(--font);
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 700;
}

.profile1984-header p {
  margin: 2px 0 0;
  font-size: 1.25rem;
  line-height: 1.2;
  opacity: 0.98;
}

.profile1984-header p span {
  font-size: 1.2rem;
  color: #ecff42;
}

.profile1984-body {
  padding: 20px 26px calc(var(--tabbar-height) + 18px);
}

.profile1984-cookies {
  margin: 0;
  font-size: 1.95rem;
  color: #121212;
}

.profile1984-cookies strong {
  margin-left: 8px;
}

.profile1984-section-title {
  margin: 14px 0 10px;
  font-family: "Syne", var(--font);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  color: #111;
}

.profile1984-achievements {
  display: grid;
  gap: 24px;
}

.profile1984-achievement-card {
  border-radius: 12px;
  background: #b9ade4;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.17);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.profile1984-achievement-card h4 {
  margin: 0;
  color: #ecff42;
  font-family: "Syne", var(--font);
  font-size: 1.85rem;
  line-height: 1.2;
  font-weight: 700;
}

.profile1984-achievement-card p {
  margin: 2px 0 0;
  color: #5d448b;
  font-size: 1.6rem;
  line-height: 1.25;
}

.profile1984-achievement-card span {
  color: #111;
  font-size: 1.7rem;
  white-space: nowrap;
  align-self: center;
}

.profile1984-section-title--skills {
  margin-top: 32px;
}

.profile1984-skills {
  display: grid;
  gap: 20px;
}

.profile1984-skill-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.profile1984-check {
  font-size: 1.8rem;
  line-height: 1;
  color: #121212;
  margin-top: 2px;
}

.profile1984-skill-row h4 {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 500;
  color: #111;
}

.profile1984-skill-row p {
  margin: 5px 0 0;
  font-size: 1.3rem;
  line-height: 1.25;
  color: #111;
  max-width: 280px;
}

.lesson1779 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 16px;
}

.lesson1779-bg-cap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 194px;
  background: #5d448b;
  border-radius: 0 0 27px 27px;
}

.lesson1779-frame {
  position: relative;
  z-index: 1;
  width: min(357px, calc(100vw - 36px));
  min-height: calc(100svh - 32px);
  border: 2px solid #0a0a0a;
  display: flex;
  flex-direction: column;
}

.lesson1779-top {
  height: 165px;
  background: #5d448b;
  color: #e7e3f6;
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lesson1779-back {
  border: 0;
  background: transparent;
  color: #e7e3f6;
  font-size: 2.2rem;
  line-height: 1;
  width: 32px;
  padding: 0;
}

.lesson1779-top p {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 2rem;
  font-weight: 400;
}

.lesson1779-body {
  flex: 1;
  padding: 10px 28px 92px;
  display: flex;
  flex-direction: column;
}

.lesson1779-rule {
  border-top: 2px solid #0a0a0a;
}

.lesson1779-body h1 {
  margin: 16px 0 0;
  font-family: "Syne", var(--font);
  font-size: 40px;
  line-height: 38px;
  letter-spacing: -1px;
  color: #160b2c;
  font-weight: 700;
}

.lesson1779-meta {
  margin-top: 120px;
  display: grid;
  gap: 22px;
}

.lesson1779-meta p {
  margin: 0;
  font-size: 14px;
  line-height: 50px;
  color: #111;
}

.lesson1779-start {
  margin-top: auto;
  align-self: center;
  border: 0;
  width: 219px;
  min-height: 62px;
  border-radius: 999px;
  background: #3c3949;
  color: #fff;
  padding: 10px 18px;
  font-family: "Inter", var(--font);
  font-size: 24px;
  line-height: 38px;
  font-weight: 200;
  transform: rotate(1.1deg);
}

.lesson1673 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 12px;
}

.lesson1673-frame {
  width: min(357px, calc(100vw - 36px));
  min-height: calc(100svh - 24px);
  border: 2px solid #0a0a0a;
  padding: 44px 22px 56px;
  display: flex;
  flex-direction: column;
}

.lesson1673-frame h2 {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 24px;
  line-height: 20px;
  font-weight: 500;
  color: #111;
}

.lesson1673-timeline {
  position: relative;
  margin-top: 28px;
  display: grid;
  gap: 24px;
}

.lesson1673-line {
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 22px;
  width: 1px;
  background: #5b4f78;
}

.lesson1673-item {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 18px;
  align-items: start;
}

.lesson1673-dot {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 1px solid #5b4f78;
  color: #453b5f;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: grid;
  place-items: center;
  background: #e7e3f6;
  position: relative;
  z-index: 1;
}

.lesson1673-content h3 {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #453b5f;
}

.lesson1673-content p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 24px;
  color: #453b5f;
  max-width: 225px;
}

.lesson1673-actions {
  margin-top: auto;
  display: flex;
  gap: 16px;
}

.lesson1673-btn {
  width: 137px;
  height: 39px;
  border-radius: 999px;
  border: 0;
  font-family: "Coming Soon", cursive;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

.lesson1673-btn--home {
  background: #d4c7d7;
  color: #111;
}

.lesson1673-btn--next {
  background: #37323d;
  color: #e7e3f6;
}

.lesson1637 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
}

.lesson1637-frame {
  width: min(357px, calc(100vw - 36px));
  min-height: calc(100svh - 20px);
  border: 2px solid #0a0a0a;
  padding: 40px 26px 28px;
  display: flex;
  flex-direction: column;
}

.lesson1637-frame h2 {
  margin: 0;
  text-align: center;
  font-family: "Syne", var(--font);
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
}

.lesson1637-video {
  margin-top: 34px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border-bottom: 3px solid #ff3f45;
}

.lesson1637-video img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.lesson1637-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #f13838;
  font-size: 5.2rem;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.14);
}

.lesson1637-time {
  position: absolute;
  right: 4px;
  bottom: 4px;
  border-radius: 6px;
  background: rgba(65, 65, 65, 0.8);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 4px 6px;
}

.lesson1637-steps {
  margin-top: 24px;
  border: 1px solid #0a0a0a;
  border-radius: 15px;
  background: #c3b7e7;
  padding: 20px 18px;
  min-height: 309px;
}

.lesson1637-steps p {
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  color: #111;
}

.lesson1637-steps ol {
  margin: 16px 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.lesson1637-steps li {
  font-size: 16px;
  line-height: 46px;
  color: #111;
}

.lesson1637-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.lesson1637-btn {
  width: 137px;
  height: 39px;
  border: 0;
  border-radius: 999px;
  font-family: "Coming Soon", cursive;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

.lesson1637-btn--back {
  background: #cbbde2;
  color: #111;
}

.lesson1637-btn--next {
  background: #37323d;
  color: #fff;
}

.lesson1696 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 12px;
}

.lesson1696-frame {
  width: min(357px, calc(100vw - 36px));
  min-height: calc(100svh - 24px);
  border: 2px solid #0a0a0a;
  padding: 52px 34px 28px;
  display: flex;
  flex-direction: column;
}

.lesson1696-kicker {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #111;
}

.lesson1696-title {
  margin: 10px 0 0;
  font-family: "Syne", var(--font);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #111;
}

.lesson1696-photo {
  width: 272px;
  object-fit: cover;
  display: block;
}

.lesson1696-photo--top {
  margin-top: 24px;
  height: 202px;
  border: 2px solid #0a0a0a;
}

.lesson1696-photo--bottom {
  margin-top: 24px;
  height: 202px;
}

.lesson1696-copy {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #111;
}

.lesson1696-tip {
  margin-top: 16px;
  border: 1px solid #0a0a0a;
  background: #c3b7e7;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 20px;
  color: #111;
}

.lesson1696-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.lesson1696-btn {
  width: 137px;
  height: 39px;
  border: 0;
  border-radius: 999px;
  font-family: "Coming Soon", cursive;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

.lesson1696-btn--back {
  background: #cbbde2;
  color: #111;
}

.lesson1696-btn--next {
  background: #37323d;
  color: #fff;
}

.lesson1732 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 12px;
}

.lesson1732-frame {
  width: min(357px, calc(100vw - 36px));
  min-height: calc(100svh - 24px);
  border: 2px solid #0a0a0a;
  padding: 46px 32px 28px;
  display: flex;
  flex-direction: column;
}

.lesson1732-kicker {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #111;
}

.lesson1732-title {
  margin: 10px 0 0;
  font-family: "Syne", var(--font);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #111;
}

.lesson1732-photo {
  width: 272px;
  height: 202px;
  object-fit: cover;
  display: block;
  margin-top: 24px;
}

.lesson1732-copy {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #111;
}

.lesson1732-tip {
  margin-top: 16px;
  border: 1px solid #0a0a0a;
  background: #c3b7e7;
  padding: 10px 10px;
  font-size: 16px;
  line-height: 20px;
  color: #111;
}

.lesson1732-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.lesson1732-btn {
  height: 39px;
  border: 0;
  border-radius: 999px;
  font-family: "Coming Soon", cursive;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  padding: 0 14px;
}

.lesson1732-btn--back {
  width: 137px;
  background: #cbbde2;
  color: #111;
}

.lesson1732-btn--next {
  width: 137px;
  background: #37323d;
  color: #fff;
}

.lesson1714 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 12px;
}

.lesson1714-frame {
  width: min(357px, calc(100vw - 36px));
  min-height: calc(100svh - 24px);
  border: 2px solid #0a0a0a;
  padding: 46px 32px 28px;
  display: flex;
  flex-direction: column;
}

.lesson1714-kicker {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #111;
}

.lesson1714-title {
  margin: 10px 0 0;
  font-family: "Syne", var(--font);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #111;
}

.lesson1714-photo {
  width: 272px;
  height: 202px;
  object-fit: cover;
  display: block;
  margin-top: 24px;
}

.lesson1714-copy {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #111;
}

.lesson1714-tip {
  margin-top: 16px;
  border: 1px solid #0a0a0a;
  background: #c3b7e7;
  padding: 10px 6px;
  font-size: 16px;
  line-height: 20px;
  color: #111;
}

.lesson1714-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.lesson1714-btn {
  width: 137px;
  height: 39px;
  border: 0;
  border-radius: 999px;
  font-family: "Coming Soon", cursive;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

.lesson1714-btn--back {
  background: #cbbde2;
  color: #111;
}

.lesson1714-btn--next {
  background: #37323d;
  color: #fff;
}

.lesson1750 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 12px;
}

.lesson1750-frame {
  width: min(357px, calc(100vw - 36px));
  min-height: calc(100svh - 24px);
  border: 2px solid #0a0a0a;
  padding: 46px 32px 28px;
  display: flex;
  flex-direction: column;
}

.lesson1750-kicker {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #111;
}

.lesson1750-title {
  margin: 10px 0 0;
  font-family: "Syne", var(--font);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #111;
}

.lesson1750-photo {
  width: 272px;
  height: 202px;
  object-fit: cover;
  display: block;
  margin-top: 24px;
}

.lesson1750-copy {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #111;
}

.lesson1750-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.lesson1750-btn {
  height: 39px;
  border: 0;
  border-radius: 999px;
  font-family: "Coming Soon", cursive;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  padding: 0 14px;
}

.lesson1750-btn--back {
  width: 137px;
  background: #cbbde2;
  color: #111;
}

.lesson1750-btn--next {
  width: 137px;
  background: #37323d;
  color: #fff;
}

.quiz2193 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.quiz2193-frame {
  width: min(362px, calc(100vw - 32px));
  min-height: 782px;
  border: 2px solid #0a0a0a;
  display: flex;
  flex-direction: column;
}

.quiz2193-head {
  background: #5d448b;
  border-bottom: 2px solid #0a0a0a;
  padding: 16px;
  color: #e7e3f6;
}

.quiz2193-head h2 {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.quiz2193-head p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: #f1f0f0;
}

.quiz2193-body {
  flex: 1;
  padding: 62px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quiz2193-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.quiz2193-progress span {
  height: 8px;
  border: 1px solid #d1d5dc;
  background: #fff;
}

.quiz2193-progress span.is-active {
  background: #997f8e;
  border-color: #08285f;
}

.quiz2193-question {
  border: 2px solid #0a0a0a;
  background: #997f8e;
  color: #e7e3f6;
  padding: 16px;
  font-size: 16px;
  line-height: 24px;
}

.quiz2193-options {
  display: grid;
  gap: 12px;
}

.quiz2193-option {
  min-height: 55px;
  border: 2px solid #0a0a0a;
  background: #c6b9dc;
  text-align: left;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  white-space: normal;
  word-break: normal;
}

.quiz2193-option.is-selected {
  background: #b19ec6;
}

.quiz2193-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px 26px;
}

.quiz2193-btn {
  width: 137px;
  height: 39px;
  border-radius: 999px;
  border: 0;
  padding: 0 10px;
  font-family: "Coming Soon", cursive;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

.quiz2193-btn--back {
  background: #c6b9dc;
  color: #111;
}

.quiz2193-btn--confirm {
  background: #37323d;
  color: #fbfbfb;
}

.quiz2193-btn[disabled] {
  opacity: 0.5;
}

.quiz2217 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.quiz2217-frame {
  width: min(362px, calc(100vw - 32px));
  min-height: 766px;
  border: 2px solid #0a0a0a;
  display: flex;
  flex-direction: column;
}

.quiz2217-head {
  background: #5d448b;
  border-bottom: 2px solid #0a0a0a;
  padding: 16px;
  color: #e7e3f6;
}

.quiz2217-head h2 {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.quiz2217-head p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: #f1f0f0;
}

.quiz2217-body {
  flex: 1;
  padding: 55px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quiz2217-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.quiz2217-progress span {
  height: 8px;
  border: 1px solid #0a0a0a;
}

.quiz2217-progress span.is-dark {
  background: #000;
}

.quiz2217-progress span.is-mid {
  background: #d1d5dc;
  border-color: #99a1af;
}

.quiz2217-question {
  border: 2px solid #0a0a0a;
  background: #997f8e;
  color: #e7e3f6;
  padding: 16px;
  font-size: 16px;
  line-height: 24px;
}

.quiz2217-options {
  display: grid;
  gap: 12px;
}

.quiz2217-option {
  min-height: 55px;
  border: 2px solid #0a0a0a;
  background: #c6b9dc;
  text-align: left;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  white-space: normal;
  word-break: normal;
}

.quiz2217-option.is-selected {
  background: #b19ec6;
}

.quiz2217-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px 26px;
}

.quiz2217-btn {
  width: 137px;
  height: 39px;
  border-radius: 999px;
  border: 0;
  padding: 0 10px;
  font-family: "Coming Soon", cursive;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

.quiz2217-btn--back {
  background: #c6b9dc;
  color: #111;
}

.quiz2217-btn--confirm {
  background: #37323d;
  color: #fbfbfb;
}

.quiz2217-btn[disabled] {
  opacity: 0.5;
}

.quiz2241 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.quiz2241-frame {
  width: min(362px, calc(100vw - 32px));
  min-height: 770px;
  border: 2px solid #0a0a0a;
  display: flex;
  flex-direction: column;
}

.quiz2241-head {
  background: #5d448b;
  border-bottom: 2px solid #0a0a0a;
  padding: 16px;
  color: #e7e3f6;
}

.quiz2241-head h2 {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.quiz2241-head p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: #f1f0f0;
}

.quiz2241-body {
  flex: 1;
  padding: 42px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quiz2241-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.quiz2241-progress span {
  height: 8px;
  border: 1px solid #0a0a0a;
}

.quiz2241-progress span.is-dark {
  background: #000;
}

.quiz2241-progress span.is-mid {
  background: #d1d5dc;
  border-color: #99a1af;
}

.quiz2241-question {
  border: 2px solid #0a0a0a;
  background: #997f8e;
  color: #e7e3f6;
  padding: 16px;
  font-size: 16px;
  line-height: 24px;
}

.quiz2241-options {
  display: grid;
  gap: 12px;
}

.quiz2241-option {
  min-height: 55px;
  border: 2px solid #0a0a0a;
  background: #c6b9dc;
  text-align: left;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  white-space: normal;
  word-break: normal;
}

.quiz2241-option.is-selected {
  background: #b19ec6;
}

.quiz2241-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px 26px;
}

.quiz2241-btn {
  width: 137px;
  height: 39px;
  border-radius: 999px;
  border: 0;
  padding: 0 10px;
  font-family: "Coming Soon", cursive;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

.quiz2241-btn--back {
  background: #c6b9dc;
  color: #111;
}

.quiz2241-btn--confirm {
  background: #37323d;
  color: #fbfbfb;
}

.quiz2241-btn[disabled] {
  opacity: 0.5;
}

.results133175 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 14px;
}

.results133175-frame {
  width: min(357px, calc(100vw - 36px));
  min-height: calc(100svh - 28px);
  border: 2px solid #0a0a0a;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.results133175-summary {
  background: #c6b9dc;
  padding: 18px;
}

.results133175-summary p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #111;
}

.results133175-summary > p:first-child {
  font-family: "Syne", var(--font);
  font-size: 16px;
  line-height: 36px;
}

.results133175-summary h1 {
  margin: 10px 0 12px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
}

.results133175 > .results133175-frame > h2 {
  margin: 24px 4px 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

.results133175-list {
  display: grid;
  gap: 18px;
}

.results133175-card {
  border: 2px solid #0a0a0a;
  padding: 10px 12px 12px;
}

.results133175-question,
.results133175-label,
.results133175-answer,
.results133175-status {
  margin: 0;
  color: #111;
}

.results133175-question {
  font-size: 14px;
  line-height: 20px;
}

.results133175-label {
  margin-top: 8px;
  font-size: 12px;
  line-height: 16px;
}

.results133175-answer {
  margin-top: 2px;
  font-size: 14px;
  line-height: 20px;
}

.results133175-status {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.results133175-dots {
  margin: 14px 0 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.results133175-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bcbcbc;
}

.results133175-dots span.is-active {
  background: #111;
}

.results133175-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.results133175-home {
  width: 137px;
  height: 39px;
  border-radius: 999px;
  border: 0;
  background: #37323d;
  color: #fbfbfb;
  font-family: "Coming Soon", cursive;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
}

.success138303 {
  margin: -18px -18px 0;
  min-height: 100svh;
  background: #e7e3f6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 14px;
}

.success138303-frame {
  width: min(357px, calc(100vw - 36px));
  min-height: calc(100svh - 28px);
  border: 2px solid #0a0a0a;
  padding: 34px 20px 26px;
  display: flex;
  flex-direction: column;
}

.success138303-frame h1 {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  letter-spacing: 0.55px;
  color: #111;
  max-width: 286px;
}

.success138303-subtitle {
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 27px;
  color: #111;
}

.success138303-checklist {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.success138303-checkitem {
  border: 2px solid #0a0a0a;
  background: #c6b9dc;
  padding: 10px 10px;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: center;
}

.success138303-checkitem span {
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  background: #000;
}

.success138303-checkitem p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #111;
}

.success138303-achievements {
  margin-top: 14px;
  background: #c6b9dc;
  border-radius: 7px;
  padding: 14px;
  min-height: 210px;
}

.success138303-achievements h2 {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 15px;
  line-height: 27px;
  font-weight: 500;
  color: #111;
}

.success138303-achievements p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 27px;
  font-weight: 500;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.success138303-achievements p strong {
  margin-left: auto;
  font-weight: 500;
}

.success138303-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.success138303-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bcbcbc;
}

.success138303-dots span.is-active {
  background: #111;
}

.success138303-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.success138303-home {
  width: 137px;
  height: 39px;
  border-radius: 999px;
  border: 0;
  background: #37323d;
  color: #fbfbfb;
  font-family: "Coming Soon", cursive;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.h1,
.h2,
.h3,
.p {
  margin: 0;
}

.h1 {
  font-size: 2rem;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.h2 {
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h3 {
  font-size: 1.05rem;
  line-height: 1.15;
}

.p {
  color: var(--muted-2);
  line-height: 1.45;
  font-size: 0.97rem;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.card--pad {
  padding: 18px;
}

.card--soft {
  background: rgba(255, 255, 255, 0.8);
}

.hero-card {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 242, 255, 0.95));
  border-radius: 30px;
  border: 1px solid rgba(51, 51, 51, 0.08);
  box-shadow: var(--shadow);
}

.hero-card__art {
  height: 188px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.85) 0 18%, transparent 19%),
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.6) 0 12%, transparent 13%),
    linear-gradient(180deg, #f4d8e7 0%, #e6e1f9 100%);
  border: 1px solid rgba(51, 51, 51, 0.05);
  position: relative;
  overflow: hidden;
}

.hero-card__art::before,
.hero-card__art::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
}

.hero-card__art::before {
  width: 124px;
  height: 124px;
  background: rgba(255, 255, 255, 0.45);
  right: -10px;
  top: 20px;
}

.hero-card__art::after {
  width: 180px;
  height: 72px;
  background: rgba(51, 51, 51, 0.1);
  left: -8px;
  bottom: 14px;
  transform: rotate(-10deg);
}

.phone-mock {
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(51, 51, 51, 0.72);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.pill {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.pill:active {
  transform: translateY(1px);
}

.pill--primary {
  background: var(--charcoal);
  color: white;
}

.pill--secondary {
  background: rgba(51, 51, 51, 0.08);
  color: var(--charcoal);
}

.pill--light {
  background: white;
  color: var(--charcoal);
  border: 1px solid var(--border);
}

.pill--ghost {
  background: transparent;
  color: var(--charcoal);
  padding-inline: 10px;
}

.pill[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.pill--full {
  width: 100%;
}

.row {
  display: flex;
  gap: 12px;
}

.row--between {
  justify-content: space-between;
  align-items: center;
}

.row--center {
  align-items: center;
  justify-content: center;
}

.row--wrap {
  flex-wrap: wrap;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stack--lg {
  gap: 18px;
}

.stack--xl {
  gap: 24px;
}

.dot-row {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(51, 51, 51, 0.16);
}

.dot.is-active {
  width: 26px;
  background: var(--charcoal);
}

.progress-ring {
  width: 112px;
  height: 112px;
  position: relative;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-ring__track {
  stroke: rgba(51, 51, 51, 0.08);
  stroke-width: 10;
  fill: none;
}

.progress-ring__bar {
  stroke: var(--charcoal);
  stroke-width: 10;
  fill: none;
  stroke-linecap: round;
  transition: stroke-dashoffset 240ms ease;
}

.progress-ring__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.progress-ring__label strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.progress-ring__label span {
  font-size: 0.78rem;
  color: var(--muted);
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar__day {
  padding: 10px 0;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(51, 51, 51, 0.08);
  color: var(--muted-2);
  font-size: 0.8rem;
}

.calendar__day.is-active {
  background: var(--charcoal);
  color: white;
}

.scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.scroller::-webkit-scrollbar {
  display: none;
}

.lesson-card,
.course-card,
.journal-card,
.badge,
.checklist-card,
.quiz-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(51, 51, 51, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.lesson-card {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.lesson-card__art,
.course-card__art,
.journal-card__art,
.detail-photo,
.video-frame {
  border-radius: 20px;
  background: linear-gradient(180deg, #f0e6ff, #fff4f6);
  border: 1px solid rgba(51, 51, 51, 0.08);
  overflow: hidden;
  position: relative;
}

.lesson-card__art {
  height: 140px;
}

.course-card {
  padding: 16px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
}

.course-card__art {
  height: 112px;
}

.course-card__art::after,
.lesson-card__art::after,
.journal-card__art::after,
.detail-photo::after,
.video-frame::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
}

.course-card__art::after {
  width: 78px;
  height: 78px;
  right: -18px;
  top: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.journal-card__art {
  height: 96px;
}

.journal-card__art::after {
  width: 56px;
  height: 56px;
  right: 10px;
  bottom: 10px;
  background: rgba(51, 51, 51, 0.08);
}

.detail-photo {
  min-height: 170px;
}

.detail-photo--before {
  background: linear-gradient(180deg, #f3e1eb, #fff8fb);
}

.detail-photo--after {
  background: linear-gradient(180deg, #e9e4fb, #fdfcff);
}

.video-frame {
  min-height: 200px;
  background: linear-gradient(180deg, #111111, #5b516f);
  color: white;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
}

.video-frame__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  pointer-events: none;
}

.video-frame__overlay span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}

.tag,
.filter-chip,
.step-pill {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.tag {
  background: rgba(51, 51, 51, 0.08);
  color: var(--charcoal);
}

.filter-chip {
  background: rgba(51, 51, 51, 0.06);
  color: var(--charcoal-2);
  border: 1px solid transparent;
}

.filter-chip.is-active {
  background: var(--charcoal);
  color: white;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.search-box input {
  border: 0;
  background: transparent;
  width: 100%;
  outline: 0;
}

.grid {
  display: grid;
  gap: 12px;
}

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

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

.journal-card {
  padding: 12px;
  display: grid;
  gap: 10px;
}

.journal-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3d7eb, #d9d2fb);
  border: 2px solid white;
  box-shadow: var(--shadow-soft);
}

.stat {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.8rem;
}

.badge {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffe1d1, #ffc8ec);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.checklist-card {
  padding: 14px 16px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--charcoal);
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(51, 51, 51, 0.08);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
}

.check.is-done {
  background: var(--charcoal);
  color: white;
}

.tip,
.warning,
.notice {
  border-radius: 18px;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.45;
  border: 1px solid transparent;
}

.tip {
  background: #f2ecff;
  color: #43377a;
  border-color: rgba(67, 55, 122, 0.12);
}

.warning {
  background: #fff0e6;
  color: #8b4a1d;
  border-color: rgba(139, 74, 29, 0.12);
}

.notice {
  background: #ffeef5;
  color: #8e335b;
  border-color: rgba(142, 51, 91, 0.12);
}

.lined-paper {
  min-height: 200px;
  border-radius: 22px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 252, 0.98)),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 28px,
      rgba(51, 51, 51, 0.07) 29px
    );
  border: 1px solid rgba(51, 51, 51, 0.08);
}

.lined-paper textarea {
  width: 100%;
  min-height: 176px;
  border: 0;
  outline: 0;
  resize: vertical;
  background: transparent;
  color: var(--charcoal);
  line-height: 28px;
  font-size: 0.97rem;
}

.navbar {
  position: sticky;
  bottom: 0;
  margin-top: auto;
  height: var(--tabbar-height);
  padding: 10px 12px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.92) 24%);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(51, 51, 51, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.nav-item {
  border-radius: 18px;
  background: transparent;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 8px 6px;
}

.nav-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.nav-item.is-active {
  background: rgba(51, 51, 51, 0.08);
  color: var(--charcoal);
}

.nav-item[disabled] {
  opacity: 0.35;
}

.lesson-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 18px 24px;
}

.lesson-stage {
  flex: 1;
  display: grid;
  align-items: start;
}

.lesson-panel {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.lesson-panel--center {
  align-content: center;
}

.lesson-hero {
  min-height: 192px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f6eefe 0%, #e6e1f9 100%);
  border: 1px solid rgba(51, 51, 51, 0.08);
  position: relative;
  overflow: hidden;
}

.lesson-hero::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  right: -36px;
  top: -20px;
}

.lesson-hero::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 72px;
  border-radius: 999px;
  background: rgba(51, 51, 51, 0.12);
  bottom: 18px;
  left: -18px;
  transform: rotate(-8deg);
}

.lesson-image {
  min-height: 200px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(51, 51, 51, 0.08);
  background: linear-gradient(180deg, #f6f0ff 0%, #fff7fb 100%);
}

.lesson-image__label,
.lesson-hero__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: rgba(51, 51, 51, 0.7);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}

.quiz-option {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  background: rgba(255, 255, 255, 0.95);
  text-align: left;
  color: var(--charcoal);
}

.quiz-option.is-selected {
  border-color: var(--charcoal);
  background: rgba(51, 51, 51, 0.05);
}

.review-line {
  padding: 14px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  display: grid;
  gap: 6px;
}

.review-line:last-child {
  border-bottom: 0;
}

.review-line strong {
  font-size: 0.95rem;
}

.review-line span {
  color: var(--muted);
  font-size: 0.9rem;
}

.slide-in {
  animation: slideIn 240ms ease;
}

.fade-in {
  animation: fadeIn 220ms ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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