@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;700;800&display=swap');

:root {
  --bg: #0a0a0b;
  --panel: #17171a;
  --panel-2: #1d1d21;
  --field: #242429;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f7f7;
  --muted: #9d9da5;
  --soft: #72727a;
  --danger: #ff5f69;
  --accent: #ff9f0a;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #000000;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
}

#app {
  min-height: 100vh;
}

.app-shell {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 16px 16px 32px;
  display: flex;
  flex-direction: column;
}

.app-shell--home {
  max-width: 800px;
}

/* Lock inner screens viewport to 100dvh */
.app-shell:not(.app-shell--home) {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  padding: 16px 16px env(safe-area-inset-bottom, 16px);
  overflow: hidden;
}

.app-shell:not(.app-shell--home) .screen {
  height: 100%;
  min-height: 0;
}

.app-shell:not(.app-shell--home) .screen-body {
  height: 100%;
  min-height: 0;
  gap: 0;
}

.app-shell:not(.app-shell--home) .preview-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 8px 0;
}

.app-shell:not(.app-shell--home) .panel-card {
  flex: none;
  margin-top: auto;
}

.app-shell:not(.app-shell--home) .tutorial-list {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}

/* Push / Pop page transition animations */
@keyframes push-enter {
  0% {
    transform: translateX(40%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pop-enter {
  0% {
    transform: translateX(-40%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.app-shell--push {
  animation: push-enter 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.app-shell--pop {
  animation: pop-enter 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.screen {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0 16px;
}

.screen-header__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.screen-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.back-button,
.back-placeholder {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  flex: none;
}

.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.back-button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
}

.tutorial-pill,
.tutorial-placeholder {
  min-width: 54px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  flex: none;
}

.tutorial-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.screen-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding: 0;
}

.landing-shell {
  width: min(calc(100% - 112px), 833px);
  margin: 0 auto;
  padding: 57px 0 36px;
}

.landing-list {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.landing-section {
  position: relative;
  display: block;
  min-height: 359px;
  padding: 0 34px;
  border-radius: 32px;
  background: #000;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.02) inset,
    0 18px 36px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  text-align: left;
}

.landing-section::before {
  content: none;
}

.landing-content {
  position: relative;
  display: flex;
  min-height: 359px;
  max-width: 470px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0 24px;
}

.landing-title {
  margin: 0 0 12px;
  font-size: 49px;
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.landing-desc {
  margin: 0;
  max-width: 420px;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #86868b;
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 130px;
  height: 42px;
  margin-top: 20px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 1);
  color: #f8f8f8;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
  cursor: pointer;
}

.landing-visual {
  display: block;
}

.landing-art {
  position: relative;
  width: 100%;
  min-height: 360px;
}

.landing-art__image {
  position: absolute;
  right: -12px;
  bottom: 0;
  display: block;
  max-width: none;
  user-select: none;
  pointer-events: none;
}

.landing-art--life .landing-art__image {
  width: 272px;
}

.landing-art--year .landing-art__image {
  width: 286px;
}

.landing-art--goal .landing-art__image {
  width: 300px;
}

.landing-mark {
  position: absolute;
  right: -18px;
  top: auto;
  bottom: 8px;
  transform: none;
  color: rgba(255, 255, 255, 0.07);
  z-index: 1;
  pointer-events: none;
}

.landing-mark--life {
  width: 324px;
  height: 324px;
}

.landing-mark--life .landing-mark__ring {
  position: absolute;
  inset: 22px;
  border: 34px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  transform: rotate(30deg);
}

.landing-mark--life .landing-mark__dot {
  position: absolute;
  top: 78px;
  right: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
}

.landing-mark--year {
  width: 324px;
  height: 274px;
}

.landing-mark--year .landing-mark__ticket {
  position: absolute;
  left: 62px;
  top: 72px;
  width: 176px;
  height: 122px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  transform: rotate(-28deg);
}

.landing-mark--year .landing-mark__ticket::before,
.landing-mark--year .landing-mark__ticket::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
}

.landing-mark--year .landing-mark__ticket::before {
  top: -8px;
  right: 22px;
}

.landing-mark--year .landing-mark__ticket::after {
  bottom: -8px;
  right: 22px;
}

.landing-mark--year .landing-mark__number {
  position: absolute;
  left: 88px;
  top: 106px;
  font-size: 66px;
  font-weight: 800;
  letter-spacing: -0.08em;
  transform: rotate(-28deg);
}

.landing-mark--goal {
  width: 324px;
  height: 292px;
}

.landing-mark__cup {
  position: absolute;
  inset: 52px 0 0 auto;
  width: 214px;
  height: 214px;
  fill: rgba(255, 255, 255, 0.07);
}


.home-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #161618 0%, #0e0e10 100%);
  text-align: left;
  cursor: pointer;
  min-height: 160px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 600px) {
  .home-card {
    padding: 32px 40px;
    min-height: 220px;
  }
}

.home-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.home-card__content {
  display: flex;
  flex-direction: column;
  max-width: 55%;
  z-index: 2;
}

.home-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}

.home-card__desc {
  font-size: 13px;
  line-height: 1.4;
  color: #8e8e93;
  margin: 0 0 16px 0;
}

@media (min-width: 600px) {
  .home-card__title {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .home-card__desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

.home-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 7px 18px;
  border-radius: 999px;
  background: #000000;
  border: 1.2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 600px) {
  .home-card__cta {
    padding: 9px 22px;
    font-size: 14px;
    border-width: 1.5px;
  }
}

.home-card:hover .home-card__cta {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

.home-card__visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.home-card__image {
  position: absolute;
  height: 145%;
  width: auto;
  object-fit: contain;
  display: block;
  user-select: none;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Life Calendar — moderate transparent padding, phone shadow extends bottom-left */
.home-card[data-case="life"] .home-card__image {
  right: -25px;
  bottom: -50px;
}

/* Year Calendar — more bottom transparent padding, slightly tilted */
.home-card[data-case="year"] .home-card__image {
  right: 0px;
  bottom: -50px;
}

/* Goal Calendar — widest transparent border, largest shadow area */
.home-card[data-case="goal"] .home-card__image {
  right: 5px;
  bottom: -50px;
}

.home-card:hover .home-card__image {
  transform: scale(1.03) translate(-2px, -2px);
}

.preview-stage {
  min-height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}

.wallpaper-device {
  position: relative;
  background: #1c1c1e;
  border-radius: 14cqw;
  padding: 2.2cqw;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  container-type: inline-size;
}

.wallpaper-device::before {
  content: "";
  position: absolute;
  top: 3.5%;
  left: 50%;
  width: 32%;
  height: 6.2%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000000;
  z-index: 3;
}

.wallpaper-device--hero {
  width: clamp(175px, 26vh, 220px);
}

.wallpaper-device--mini {
  width: 68px;
}

.wallpaper-device--landing {
  position: absolute;
  right: 2px;
  top: auto;
  bottom: -12px;
  width: 188px;
  box-shadow:
    0 0 48px rgba(255, 255, 255, 0.08),
    0 20px 34px rgba(0, 0, 0, 0.42);
  z-index: 2;
}

.wallpaper-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 2;
  overflow: hidden;
  border-radius: 12cqw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
  container-type: inline-size;
}

.wallpaper-preview__date {
  position: absolute;
  top: 9%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.8cqw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.wallpaper-preview__time {
  position: absolute;
  top: 13.5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 19.5cqw;
  font-weight: 800;
  font-family: 'Outfit', -apple-system, sans-serif;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.1;
}

.wallpaper-preview__events {
  position: absolute;
  top: 24.5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.2cqw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.wallpaper-preview__grid {
  display: grid;
  width: 80%;
  gap: 1.2cqw;
  margin: 49% auto 0;
}

.wallpaper-preview__grid--life {
  grid-template-columns: repeat(18, 1fr);
}

.wallpaper-preview__grid--year {
  grid-template-columns: repeat(16, 1fr);
}

.wallpaper-preview__dot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.wallpaper-preview__dot.is-filled {
  background: rgba(255, 255, 255, 0.88);
}

.wallpaper-preview__dot.is-current {
  background: var(--accent);
  box-shadow: 0 0 4px var(--accent);
}

.wallpaper-preview__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6%;
  text-align: center;
  font-size: 3.2cqw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
}

.panel-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(28, 28, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.stepper {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 6px;
}

.stepper__item {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.stepper__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--soft);
  flex: none;
}

.stepper__dot.is-active {
  background: #ffffff;
  border-color: #ffffff;
  color: #09090a;
}

.stepper__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
}

.stepper__line {
  border-top: 1.5px dashed rgba(255, 255, 255, 0.15);
}

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

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.text-field,
.select-trigger,
.url-field {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: none;
  background: #1c1c1e;
  color: var(--text);
  font-size: 13px;
  outline: none;
  transition: background 0.2s ease;
}

.text-field::placeholder {
  color: var(--soft);
}

.text-field:focus,
.select-trigger:focus,
.url-field:focus {
  background: #2c2c2e;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}

.select-trigger__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-trigger__chevron {
  width: 8px;
  height: 8px;
  border-right: 1.7px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1.7px solid rgba(255, 255, 255, 0.72);
  transform: rotate(45deg) translateY(-1px);
}

.field-error {
  font-size: 10px;
  font-weight: 600;
  color: var(--danger);
}

.button-primary,
.button-secondary {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.button-primary {
  background: #ffffff;
  color: #080808;
}

.button-primary:disabled {
  background: rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.86);
}

.button-secondary {
  border: none;
  background: #2c2c2e;
  color: #ffffff;
  transition: background 0.2s ease;
}

.button-secondary:hover {
  background: #3c3c3e;
}

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

.url-box {
  position: relative;
  display: block;
  width: 100%;
}

.url-field {
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 44px;
}

.copy-button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42px;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s ease;
}

.copy-button:hover {
  color: #ffffff;
}

.copy-button svg {
  width: 14px;
  height: 14px;
}

.instruction-box,
.tutorial-step {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.instruction-box {
  padding: 12px 14px;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--muted);
}

.helper-box {
  padding: 12px 14px;
  font-size: 11.5px;
  line-height: 1.5;
  color: #8e8e93;
  border-radius: 12px;
  background: #1c1c1e;
  text-align: center;
  transition: all 0.25s ease;
}

.helper-box.is-copied {
  background: rgba(255, 159, 10, 0.08);
  border: 1px solid rgba(255, 159, 10, 0.15);
  color: #ff9f0a;
}

.instruction-box strong {
  color: #ffffff;
}

/* Inline tutorial header styles */
.tutorial-header-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 16px;
}

.tutorial-heading {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
}

.bottom-sheet {
  width: min(100%, 430px);
  margin: 0 auto;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background: rgba(41, 41, 45, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -18px 36px rgba(0, 0, 0, 0.35);
}

.bottom-sheet__handle {
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  margin: 10px auto 8px;
}

.sheet-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  cursor: pointer;
}

.sheet-option:first-child {
  border-top: 0;
}

.sheet-option__check {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  flex: none;
}

.sheet-option.is-active .sheet-option__check {
  border-color: #ffffff;
  background:
    radial-gradient(circle, #ffffff 0 48%, transparent 49%);
}

.sheet-option__label {
  font-size: 12px;
}

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

.tutorial-step {
  padding: 12px;
}

.tutorial-step__title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
}

.tutorial-step__body {
  font-size: 11px;
  line-height: 1.55;
  color: var(--muted);
}

.tutorial-visual {
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #101013;
}

.tutorial-visual__top {
  height: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
}

.tutorial-visual__body {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.tutorial-visual__line,
.tutorial-visual__block,
.tutorial-visual__pill {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.tutorial-visual__line {
  min-height: 10px;
}

.tutorial-visual__block {
  min-height: 34px;
}

.tutorial-visual__pill {
  min-height: 30px;
}

.tutorial-visual--shortcut {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 88px;
  background:
    linear-gradient(135deg, rgba(255, 179, 136, 0.26), rgba(95, 90, 108, 0.3));
}

.tutorial-visual__app {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background:
    linear-gradient(135deg, #3f7cff, #8b57ff 58%, #ff9258);
}

.tutorial-visual__app-label {
  font-size: 10px;
  font-weight: 700;
}

.tutorial-visual--time .tutorial-visual__body,
.tutorial-visual--lock .tutorial-visual__body {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tutorial-code {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  word-break: break-all;
}

.tutorial-done {
  margin-top: 2px;
}

@media (max-width: 460px) {
  .app-shell {
    width: 100%;
    padding: 16px 12px 24px;
  }


}

@media (max-width: 900px) {
  .landing-shell {
    width: min(calc(100% - 48px), 833px);
    padding: 32px 0 24px;
  }

  .landing-list {
    gap: 18px;
  }

  .landing-section {
    min-height: 280px;
    padding: 0 28px;
  }

  .landing-content {
    min-height: 280px;
    max-width: 360px;
    padding: 22px 0 24px;
  }

  .landing-title {
    font-size: 40px;
  }

  .landing-desc {
    max-width: 360px;
    font-size: 16px;
  }

  .landing-cta {
    min-width: 130px;
    height: 42px;
    margin-top: 18px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .landing-shell {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 20px 0 24px;
  }

  .landing-list {
    min-height: auto;
    gap: 18px;
    justify-content: flex-start;
  }

  .landing-section {
    min-height: 190px;
    padding: 0 20px;
    border-radius: 22px;
  }

  .landing-content {
    min-height: 190px;
    max-width: 196px;
    padding: 18px 0 20px;
  }

  .landing-title {
    max-width: 196px;
    font-size: 28px;
    line-height: 0.96;
  }

  .landing-desc {
    font-size: 14px;
    line-height: 1.15;
    max-width: 174px;
  }

  .landing-cta {
    min-width: 120px;
    height: 38px;
    margin-top: 16px;
    padding: 0 18px;
    font-size: 13px;
  }
}

@media (min-width: 980px) {
  .app-shell {
    width: min(100%, 480px);
  }
}
