:root {
  color-scheme: dark;
  --bg: #242424;
  --surface: rgba(39, 39, 42, 0.6);
  --surface-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a1a1aa;
  --accent: #789a8a;
  --shadow: rgba(120, 154, 138, 0.6);
  --radius-pill: 9999px;
  --radius-card: 16px;
  --radius-tile: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

.viewport {
  height: 100svh;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.screen {
  width: 100%;
  max-width: 430px;
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.button {
  appearance: none;
  border: 0;
  border-radius: var(--radius-pill);
  font: inherit;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  padding: 18px 18px 20px;
  width: 100%;
  cursor: pointer;
}

.button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.button--primary {
  background: var(--accent);
  color: var(--text);
}

.button--secondary {
  background: rgba(58, 58, 60, 1);
  color: rgba(255, 255, 255, 0.45);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 1;
}

.splash-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  gap: 10px;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stat-row__leaf {
  width: 34px;
  height: 70px;
}

.stat-row__leaf--left {
  transform: rotate(180deg);
}

.stat-row__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-row__number {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.65px;
}

.stat-row__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: var(--muted);
}

.reviews {
  position: relative;
  width: 196px;
  height: 70px;
}

.reviews__laurel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reviews__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 6px;
  padding-top: 8px;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars__star {
  width: 16px;
  height: 16px;
}

.reviews__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: var(--muted);
}

.hero {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-icon {
  width: 300px;
  height: 150px;
  position: relative;
}

.hero-icon__blur {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.12;
  filter: blur(60px);
}

.hero-icon__tile {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: 128px;
  height: 128px;
  border-radius: var(--radius-tile);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 12px 36px -12px rgba(120, 154, 138, 0.6);
  background-image: linear-gradient(181.25deg, #6e8a7d 9.59%, #131c18 93.93%);
  overflow: hidden;
}

.hero-icon__tile-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-tile);
  padding: 9px 10px 20px 22px;
  background-image: linear-gradient(181.25deg, #6e8a7d 9.59%, #131c18 93.93%);
}

.hero-icon__pattern {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  padding: 8px 29px 14px 5px;
  background-image: url("./assets/mo1mhjrv-bh5sulw.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
}

.hero-icon__yarn {
  width: 62px;
  height: 77px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.hero-text__title {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.7px;
  line-height: 42px;
}

.hero-text__subtitle {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: var(--muted);
}

.features {
  margin-top: auto;
  padding-top: 18px;
}

.features__scroller {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.features__scroller::-webkit-scrollbar {
  display: none;
}

.features__track {
  display: flex;
  gap: 12px;
  will-change: transform;
}

.feature-card {
  flex: 0 0 auto;
  width: 92px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-card);
  background: rgba(39, 39, 42, 0.6);
  backdrop-filter: blur(6px);
  padding: 10px 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(120, 154, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon img {
  width: 20px;
  height: 20px;
}

.feature-card__label {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  color: rgba(228, 228, 231, 1);
  text-align: center;
}

.bottom-cta {
  margin-top: 12px;
  padding-top: 20px;
  position: sticky;
  bottom: 0;
  background-image: linear-gradient(0deg, var(--bg) 0%, var(--bg) 50%, rgba(36, 36, 36, 0) 100%);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.progress {
  margin: 4px 0 28px;
  height: 3px;
  width: 100%;
  border-radius: var(--radius-pill);
  background: rgba(58, 58, 60, 1);
  overflow: hidden;
}

.progress__bar {
  height: 100%;
  width: var(--progress, 16%);
  background: var(--accent);
  border-radius: var(--radius-pill);
}

.onboarding {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.onboarding__icon {
  width: 238px;
  height: 238px;
  margin-top: 36px;
}

.onboarding__title {
  margin: 44px 0 0;
  max-width: 325px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.7px;
  line-height: 36px;
}

.onboarding__subtitle {
  margin: 0;
  max-width: 325px;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: var(--muted);
}

.onboarding-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 22px;
  background-image: linear-gradient(0deg, var(--bg) 0%, var(--bg) 50%, rgba(36, 36, 36, 0) 100%);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.screen--onboarding-flow {
  padding-top: 20px;
}

.onboarding-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.icon-button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99999px;
  background: rgba(0, 0, 0, 0.38);
  padding: 10px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.icon-button__icon {
  width: 20px;
  height: 20px;
}

.progress--top {
  margin: 0;
}

.onboarding-step {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
}

.step-title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.7px;
  line-height: 28px;
  max-width: 325px;
}

.step-subtitle {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: var(--muted);
  max-width: 382px;
}

.option-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option {
  appearance: none;
  border: 0;
  border-radius: 12px;
  background: rgba(46, 46, 46, 1);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.option:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.option--disabled,
.option:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.option__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.option__icon--sm {
  width: 18px;
  height: 18px;
}

.option__icon--md {
  width: 31px;
  height: 24px;
}

.option__label {
  flex: 1 1 auto;
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
}

.option__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.option__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
}

.option__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(171, 172, 165, 1);
  text-align: left;
}

.option__check-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  opacity: 0;
}

.option--selected {
  background: rgba(120, 154, 138, 0.33);
}

.option--selected .option__check-icon {
  opacity: 1;
}

.step-actions {
  margin-top: auto;
  padding-top: 22px;
  position: sticky;
  bottom: 0;
  background-image: linear-gradient(0deg, var(--bg) 0%, var(--bg) 50%, rgba(36, 36, 36, 0) 100%);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.step-actions .button--secondary:disabled {
  background: rgba(58, 58, 60, 1);
  color: rgba(255, 255, 255, 0.4);
}

.step-actions--primary {
  padding-top: 67px;
}

.benefit-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit {
  appearance: none;
  border: 0;
  border-radius: 12px;
  background: rgba(46, 46, 46, 1);
  padding: 0 16px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.benefit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.benefit--active {
  background: rgba(120, 154, 138, 0.33);
}

.benefit__left {
  padding: 16px 8px 16px 0;
  display: inline-flex;
}

.benefit__round {
  width: 40px;
  height: 40px;
  border-radius: 360px;
  background: rgba(36, 36, 36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit__round-image {
  width: 40px;
  height: 40px;
  border-radius: 360px;
  flex: 0 0 auto;
  margin-right: 8px;
}

.benefit__icon {
  width: 24px;
  height: 24px;
}

.benefit__text {
  flex: 1 1 auto;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.34px;
  line-height: 23px;
}

.benefit__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(171, 172, 165, 1);
}

.benefit__check {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  opacity: 0;
}

.benefit--active .benefit__check {
  opacity: 1;
}

.option__icon--lg {
  width: 30px;
  height: 30px;
}

.option__icon--xl {
  width: 40px;
  height: 40px;
}

.story {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.story-card {
  width: 100%;
  border-radius: 16px;
  background: rgba(120, 154, 138, 0.13);
  padding: 72px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
}

.story-card__icon {
  width: 132px;
  height: 132px;
}

.story-card__icon--sm {
  width: 114px;
  height: 114px;
}

.story-card__title {
  margin: 0;
  opacity: 0.4;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.7px;
  line-height: 36px;
  text-align: center;
  max-width: 260px;
}

.story-card__text {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  max-width: 332px;
}

.badge {
  width: 40px;
  height: 40px;
  border-radius: 360px;
  background: rgba(120, 154, 138, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  flex: 0 0 auto;
}

.option--compact {
  padding: 16px 20px;
}

.option__icon--craft {
  width: 41px;
  height: 41px;
}

.option__icon--craft-sm {
  width: 30px;
  height: 30px;
}

.story-card--perfect {
  padding-top: 72px;
}

.story-card--tip {
  padding-top: 72px;
}

.tip-icon {
  width: 237px;
  height: 237px;
}

.tip-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.7px;
  text-align: center;
}

.tip-text {
  margin: 0;
  max-width: 332px;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  text-align: center;
}

.perfect-art {
  position: relative;
  width: 260px;
  height: 242px;
}

.perfect-art__a {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
}

.perfect-art__b {
  position: absolute;
  left: 50%;
  top: 64px;
  transform: translateX(-50%);
  width: 152px;
  height: 152px;
}

.perfect-art__c {
  position: absolute;
  right: 0;
  top: 190px;
  width: 52px;
  height: 52px;
}

.perfect-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.perfect-copy__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.7px;
}

.perfect-copy__lead {
  margin: 0;
  max-width: 332px;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  text-align: center;
  color: rgba(255, 255, 255, 1);
}

.perfect-copy__sub {
  margin: 0;
  max-width: 332px;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  text-align: center;
  color: rgba(171, 172, 165, 1);
}

.accent {
  color: rgba(120, 154, 138, 1);
  font-weight: 700;
}

.muted {
  color: rgba(171, 172, 165, 1);
}

.all-set {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.all-set__icon {
  width: 169px;
  height: 169px;
  margin-top: 16px;
}

.all-set__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.7px;
  text-align: center;
}

.summary-card {
  width: 100%;
  border-radius: 16px;
  background: rgba(39, 39, 42, 0.6);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.summary-row__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.summary-row__icon--calendar {
  width: 18px;
  height: 20px;
}

.summary-row__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: rgba(255, 255, 255, 1);
}

.summary-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.summary-note {
  margin: 0;
  font-size: 15px;
  line-height: 23px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.all-set__sub {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: rgba(171, 172, 165, 1);
  text-align: center;
}

.social-proof {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  text-align: center;
  padding-top: 18px;
}

.stars-panel {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 12px;
  padding: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stars-panel__star {
  width: 40px;
  height: 40px;
}

.social-proof__title {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  line-height: 40px;
  max-width: 334px;
}

.social-proof__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatars__item {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  border: 4px solid rgba(14, 14, 14, 1);
  overflow: hidden;
  background: rgba(14, 14, 14, 1);
}

.avatars__item + .avatars__item {
  margin-left: -16px;
}

.avatars__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-proof__subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.5);
}

.testimonials {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  border-radius: 12px;
  background: rgba(46, 46, 46, 1);
  padding: 20px;
  text-align: left;
}

.testimonial__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.testimonial__user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
  flex: 0 0 auto;
}

.testimonial__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
}

.testimonial__star {
  width: 12px;
  height: 12px;
}

.testimonial__text {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.done {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.done__icon {
  width: 240px;
  height: 240px;
}

.done__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.7px;
}

.done__subtitle {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: rgba(171, 172, 165, 1);
}

.profile {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.profile__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin-top: 10px;
}

.profile__badge {
  width: 128px;
  height: 128px;
  border-radius: 9999px;
  background: rgba(120, 154, 138, 0.16);
  border: 1px solid rgba(120, 154, 138, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.profile__badge-icon {
  width: 45px;
  height: 45px;
}

.profile__kicker {
  font-size: 15px;
  line-height: 23px;
  color: rgba(171, 172, 165, 1);
}

.profile__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.7px;
}

.insights__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.insights__sparkle {
  width: 28px;
  height: 28px;
}

.insights-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.insight-card {
  border-radius: 12px;
  background: rgba(46, 46, 46, 1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-height: 130px;
}

.insight-card__icon {
  width: 32px;
  height: 32px;
}

.insight-card__label {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: rgba(171, 172, 165, 1);
}

.insight-card__value {
  font-size: 17px;
  font-weight: 700;
  line-height: 21px;
}

.upgrade {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 18px;
}

.upgrade__badge {
  width: 128px;
  height: 128px;
  border-radius: 9999px;
  border: 1px solid rgba(120, 154, 138, 0.2);
  background: rgba(120, 154, 138, 0.23);
  display: flex;
  align-items: center;
  justify-content: center;
}

.upgrade__badge-icon {
  width: 45px;
  height: 45px;
}

.upgrade__title {
  margin: 18px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.7px;
}

.upgrade__subtitle {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: rgba(255, 255, 255, 1);
}

.upgrade__section {
  margin-top: 34px;
  width: 100%;
  text-align: left;
}

.upgrade__section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.upgrade__sparkle {
  width: 28px;
  height: 28px;
}

.toolkit-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.toolkit-card {
  border-radius: 12px;
  background: rgba(46, 46, 46, 1);
  padding: 28px 16px 16px;
  min-height: 127px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: center;
}

.toolkit-card__icon {
  width: 35px;
  height: 35px;
}

.toolkit-card__icon--lg {
  width: 68px;
  height: 68px;
}

.toolkit-card__icon--xl {
  width: 38px;
  height: 38px;
}

.toolkit-card__label {
  font-size: 17px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.34px;
}

.loading {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 36px;
}

.loading__dots {
  display: flex;
  gap: 8px;
}

.loading__dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(120, 154, 138, 1);
  animation: loading-bounce 0.9s infinite ease-in-out;
}

.loading__dot:nth-child(2) {
  animation-delay: 0.12s;
}

.loading__dot:nth-child(3) {
  animation-delay: 0.24s;
}

.loading__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.7px;
}

.screen--trial {
  padding: 0;
}

.trial-hero {
  position: relative;
  height: 399px;
  width: 100%;
  z-index: 0;
}

.trial-hero__image {
  position: absolute;
  inset: 0;
  background-image: url("./assets/mo1q92is-sghvv49.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.trial-hero__gradient {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 520px;
  background-image: linear-gradient(0deg, rgba(36, 36, 36, 1) 27.76%, rgba(14, 14, 14, 0.4) 63.88%, rgba(14, 14, 14, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.trial {
  margin-top: -40px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.trial__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.7px;
  text-align: center;
}

.trial__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 3px;
}

.trial__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trial__bullet {
  width: 20px;
  height: 24px;
  flex: 0 0 auto;
}

.trial__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(255, 255, 255, 1);
}

.plan-picker {
  display: flex;
  --plan-gap: 16px;
  gap: var(--plan-gap);
  margin-top: 4px;
  margin-bottom: 18px;
  width: 100%;
  max-width: 100%;
}

.plan {
  flex: 1 1 0;
  width: calc((100% - var(--plan-gap)) / 2);
  min-width: 0;
  border-radius: 12px;
  background: rgba(46, 46, 46, 1);
  border: 1px solid rgba(118, 117, 117, 1);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.plan:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.plan--selected {
  border-color: rgba(120, 154, 138, 1);
}

.plan__radio {
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  border: 2px solid rgba(118, 117, 117, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan--selected .plan__radio {
  border-color: rgba(120, 154, 138, 1);
}

.plan__radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(120, 154, 138, 1);
  opacity: 0 !important;
  transform: scale(0.7);
  transition: opacity 160ms ease, transform 160ms ease;
}

.plan--selected .plan__radio-dot {
  opacity: 1 !important;
  transform: scale(1);
}

.plan__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1 1 auto;
}

.plan__type {
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  color: rgba(255, 255, 255, 1);
}

.plan__price {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: rgba(173, 170, 170, 0.8);
}

.trial-footer {
  margin-top: auto;
  padding: 0 24px 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background-image: linear-gradient(0deg, var(--bg) 0%, var(--bg) 50%, rgba(36, 36, 36, 0) 100%);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  position: relative;
  z-index: 2;
}

.legal {
  display: flex;
  justify-content: center;
  gap: 16px;
  opacity: 0.6;
  padding-top: 8px;
  flex-wrap: wrap;
}

.legal__link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(173, 170, 170, 1);
  text-decoration: none;
}

.legal__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.legal__sep {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(173, 170, 170, 1);
}

.screen--paywall {
  padding: 0;
}

.paywall-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.paywall-topbar__left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.paywall-topbar__label {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.5);
}

.paywall-topbar__time {
  font-size: 22px;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: rgba(255, 255, 255, 1);
}

.paywall-topbar__cta {
  width: auto;
  padding: 10px 14px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.paywall-hero {
  width: 100%;
  padding: 10px 0 0;
}

.paywall-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.paywall-main {
  padding: 18px 20px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.paywall-title {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.3px;
}

.paywall-plans {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.paywall-plan {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(46, 46, 46, 1);
  border-radius: 15px;
  padding: 14px 12px;
  width: 100%;
  color: var(--text);
  cursor: pointer;
  position: relative;
  text-align: left;
}

.paywall-plan:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.paywall-plan.plan--selected {
  border-color: rgba(120, 154, 138, 1);
}

.paywall-plan__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  padding: 2px 10px;
  border-radius: 9999px;
  background: rgba(120, 154, 138, 1);
  color: rgba(255, 255, 255, 1);
}

.paywall-plan__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.paywall-plan__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}

.paywall-plan__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex: 0 0 auto;
  position: relative;
}

.paywall-plan.plan--selected .paywall-plan__check {
  border-color: rgba(120, 154, 138, 1);
}

.paywall-plan.plan--selected .paywall-plan__check::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(120, 154, 138, 1);
}

.paywall-plan__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.paywall-plan__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.paywall-plan__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 9999px;
  background: rgba(120, 154, 138, 1);
}

.paywall-plan__prices {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.paywall-plan__was {
  text-decoration: line-through;
}

.paywall-plan__arrow {
  width: 12px;
  height: 8px;
  display: block;
}

.paywall-plan__now {
  color: rgba(255, 255, 255, 0.55);
}

.paywall-plan__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 auto;
}

.paywall-plan__perday {
  font-size: 22px;
  font-weight: 800;
  line-height: 28px;
}

.paywall-plan__perdayLabel {
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.paywall-cta {
  margin-top: 4px;
}

.paywall-payments {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: 6px;
}

.paywall-payments__icon {
  height: 26px;
  width: auto;
  display: block;
}

.paywall-includes {
  padding: 18px 20px 10px;
}

.paywall-subtitle {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.paywall-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.paywall-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.paywall-list__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.paywall-social {
  padding: 16px 20px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.paywall-social__leaf {
  width: 22px;
  height: 44px;
}

.paywall-social__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.paywall-social__big {
  font-size: 18px;
  font-weight: 900;
  line-height: 24px;
}

.paywall-social__small {
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.65);
}

.paywall-testimonial {
  padding: 8px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.paywall-testimonial__card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(46, 46, 46, 0.7);
  padding: 14px;
}

.paywall-testimonial__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.paywall-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.paywall-testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.paywall-testimonial__name {
  font-size: 14px;
  font-weight: 800;
  line-height: 18px;
}

.paywall-testimonial__stars {
  display: flex;
  gap: 4px;
}

.paywall-testimonial__stars img {
  width: 16px;
  height: 16px;
  display: block;
}

.paywall-testimonial__quote {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.paywall-guarantee {
  border-radius: 16px;
  padding: 14px;
}

.paywall-guarantee__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.paywall-guarantee__icon {
  width: 18px;
  height: 18px;
  display: block;
}

.paywall-guarantee__title {
  font-size: 14px;
  font-weight: 900;
  line-height: 18px;
}

.paywall-guarantee__text {
    text-align: center;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.75);
}

@keyframes loading-bounce {
  0%,
  80%,
  100% {
    transform: translateY(8px);
    opacity: 0.55;
  }
  40% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
