.st-app {
  --st-bg: #f7f7f2;
  --st-surface: #ffffff;
  --st-ink: #1d2730;
  --st-muted: #647079;
  --st-line: #dfe5df;
  --st-green: #2f806f;
  --st-green-dark: #206252;
  --st-coral: #d6655a;
  --st-amber: #efb15f;
  --st-sky: #5d9ab0;
  --st-lilac: #8d7fb2;
  --st-shadow: 0 12px 30px rgba(22, 35, 44, 0.08);
  color: var(--st-ink);
  background: var(--st-bg);
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 430px;
  padding: 12px 12px 178px;
  width: min(430px, 100vw);
}

.wp-site-blocks > .st-app {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 430px !important;
}

body.home {
  background: #edf2ef;
  overflow-x: hidden;
}

body.home .wp-site-blocks {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.st-app *,
.st-app *::before,
.st-app *::after {
  box-sizing: border-box;
}

.st-app button,
.st-app input,
.st-app select {
  font: inherit;
  letter-spacing: 0;
}

.st-hero,
.st-band {
  background: var(--st-surface);
  border: 1px solid var(--st-line);
  border-radius: 8px;
  box-shadow: var(--st-shadow);
  margin: 0 0 18px;
}

.st-hero {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px 16px 16px;
  position: relative;
  overflow: hidden;
}

.st-hero::before {
  background: linear-gradient(90deg, var(--st-green), var(--st-sky), var(--st-coral));
  background-size: 220% 100%;
  animation: stAurora 7s ease-in-out infinite;
  content: "";
  height: 5px;
  inset: 0 0 auto;
  position: absolute;
}

.st-kicker,
.st-section-head p {
  color: var(--st-green);
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 8px;
}

.st-hero h1,
.st-section-head h2 {
  color: var(--st-ink);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0;
  overflow-wrap: anywhere;
  white-space: normal !important;
  word-break: normal;
}

.st-hero h1 {
  font-size: 30px;
  max-width: 850px;
}

.st-hero h1 span {
  display: inline;
}

.st-lead span,
.st-section-head h2 span {
  display: inline;
}

@media (min-width: 621px) {
  .st-hero h1 span:not(:last-child)::after,
  .st-lead span:not(:last-child)::after,
  .st-section-head h2 span:not(:last-child)::after {
    content: " ";
  }
}

.st-lead {
  color: var(--st-muted);
  font-size: 15px;
  margin: 16px 0 0;
  max-width: 760px;
  overflow-wrap: anywhere;
  white-space: normal !important;
  word-break: normal;
}

.st-hero-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: 22px;
}

.st-google-status {
  background: #f6faf8;
  border: 1px solid #d8e8df;
  border-radius: 8px;
  color: var(--st-green-dark);
  display: none;
  font-size: 13px;
  font-weight: 800;
  margin: 10px 0 0;
  padding: 10px 12px;
}

.st-google-status.is-visible {
  display: block;
}

.st-google-status.is-warning {
  background: #fff7e8;
  border-color: #f0d5a8;
  color: #805314;
}

.st-btn[hidden],
.st-account-chip[hidden] {
  display: none !important;
}

.st-account-chip {
  align-items: center;
  background:
    linear-gradient(135deg, #102f33 0%, #173f38 56%, #2d334e 100%);
  border: 1px solid rgba(123, 211, 182, .52);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(22, 35, 44, .18);
  color: #f8fff9;
  display: none;
  gap: 10px;
  grid-template-columns: auto 1fr;
  min-height: 48px;
  overflow: hidden;
  padding: 9px 12px;
  position: relative;
}

.st-account-chip.is-visible {
  display: grid;
}

.st-account-chip::before {
  animation: stPulseDot 1.8s ease-in-out infinite;
  background: #7bd3b6;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(123, 211, 182, .48);
  content: "";
  height: 11px;
  width: 11px;
}

.st-account-chip::after {
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.22), transparent);
  content: "";
  inset: -40% auto -40% -35%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-30%) skewX(-18deg);
  transition: transform .55s ease;
  width: 34%;
}

.st-account-chip:hover,
.st-account-chip.is-pressing {
  box-shadow: 0 0 28px rgba(123, 211, 182, .28), 0 14px 30px rgba(22, 35, 44, .2);
  transform: translateY(-1px);
}

.st-account-chip:hover::after,
.st-account-chip.is-pressing::after {
  transform: translateX(440%) skewX(-18deg);
}

.st-account-chip span,
.st-account-chip strong {
  display: block;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.st-account-chip span {
  color: #a8e7d0;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
}

.st-account-chip strong {
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.st-google-dashboard {
  background:
    radial-gradient(circle at 12% 8%, rgba(93, 154, 176, .28), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(239, 177, 95, .24), transparent 30%),
    linear-gradient(145deg, #122f33 0%, #173136 58%, #2b2842 100%);
  border: 1px solid rgba(247, 212, 141, .34);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(22, 35, 44, .18);
  color: #f7fff9;
  display: none;
  font-size: 14px;
  line-height: 1.35;
  margin: 12px 0 0;
  overflow: hidden;
  padding: 10px;
  position: relative;
  z-index: 60;
}

.st-google-dashboard.is-visible {
  display: grid;
  gap: 8px;
}

.st-google-dashboard::before {
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.14), transparent);
  content: "";
  inset: 0 auto 0 -70%;
  pointer-events: none;
  position: absolute;
  transform: skewX(-18deg);
  transition: transform .55s ease;
  width: 42%;
}

.st-google-dashboard:hover::before {
  transform: translateX(420%) skewX(-18deg);
}

.st-google-dashboard > p:empty {
  display: none;
}

.st-dashboard-top,
.st-dashboard-cards,
.st-dashboard-chart,
.st-biorhythm {
  position: relative;
  z-index: 1;
}

.st-dashboard-top {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
}

.st-dashboard-top span,
.st-dashboard-card span,
.st-bio-card span {
  color: #f7d48d;
  display: block;
  font-size: 11px;
  font-weight: 950;
}

.st-dashboard-top strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.st-dashboard-top em {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  padding: 6px 8px;
  white-space: nowrap;
}

.st-dashboard-cards {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.st-dashboard-card,
.st-bio-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  overflow: hidden;
  padding: 7px;
  position: relative;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.st-dashboard-card:hover,
.st-bio-card:hover,
.st-dashboard-card.is-pressing,
.st-bio-card.is-pressing {
  background: rgba(255,255,255,.14);
  border-color: rgba(247, 212, 141, .55);
  box-shadow: 0 0 18px rgba(247, 212, 141, .16);
  transform: translateY(-1px);
}

.st-dashboard-card strong {
  color: #fff;
  display: block;
  font-size: 17px;
  line-height: 1.1;
  margin-top: 3px;
}

.st-dashboard-chart {
  align-items: end;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  height: 50px;
  padding-top: 3px;
}

.st-chart-day {
  align-items: center;
  display: grid;
  gap: 4px;
  grid-template-rows: 1fr auto;
  height: 100%;
  min-width: 0;
}

.st-chart-day i {
  align-self: end;
  background: linear-gradient(180deg, #f7d48d, #5d9ab0);
  border-radius: 999px 999px 4px 4px;
  box-shadow: 0 0 12px rgba(247, 212, 141, .24);
  display: block;
  min-height: 8px;
  transition: height .35s ease;
  width: 100%;
}

.st-chart-day b {
  color: rgba(255,255,255,.78);
  display: block;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.st-biorhythm {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.st-bio-card strong {
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 1.1;
  margin: 2px 0 5px;
}

.st-bio-card div {
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
}

.st-bio-card i {
  background: linear-gradient(90deg, #f7d48d, #7bd3b6);
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width .35s ease;
  width: 0;
}

.st-btn,
.st-segment button,
.st-plan-buttons button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  overflow: hidden;
  padding: 10px 15px;
  position: relative;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.st-btn:hover,
.st-segment button:hover,
.st-plan-buttons button:hover {
  box-shadow: 0 12px 24px rgba(29, 39, 48, .12);
  transform: translateY(-2px);
}

.st-btn:active,
.st-segment button:active,
.st-plan-buttons button:active,
.st-btn.is-pressing,
.st-segment button.is-pressing,
.st-plan-buttons button.is-pressing {
  transform: translateY(0) scale(.98);
}

.st-btn-primary {
  background: var(--st-green);
  box-shadow: 0 10px 22px rgba(47, 128, 111, .25);
  color: #fff;
}

.st-btn-primary::after {
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.34), transparent);
  content: "";
  inset: -60% auto -60% -40%;
  opacity: 0;
  position: absolute;
  transform: translateX(-20%);
  transition: opacity .2s ease, transform .45s ease;
  width: 38%;
}

.st-btn-primary:hover::after,
.st-btn-primary:focus-visible::after {
  opacity: 1;
  transform: translateX(360%);
}

.st-btn-primary:hover {
  background: var(--st-green-dark);
}

.st-btn-ghost {
  background: #eef5f2;
  border-color: #cfe1da;
  color: var(--st-green-dark);
}

.st-btn-google.is-connected {
  background: #ecf7ef;
  border-color: #a7dcc0;
  color: #18603c;
}

.st-btn-google.is-connected::before {
  animation: stPulseDot 1.7s ease-in-out infinite;
  background: #2ab86f;
  border-radius: 999px;
  content: "";
  height: 9px;
  margin-right: 8px;
  width: 9px;
}

.st-full {
  width: 100%;
}

.st-score-panel {
  align-self: stretch;
  background: #19342e;
  border-radius: 8px;
  color: #f8fff9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 168px;
  padding: 22px;
}

.st-score-label {
  color: #a8d9c8;
  font-size: 13px;
  font-weight: 900;
}

.st-score-panel strong {
  font-size: 52px;
  line-height: 1;
  margin: 8px 0;
}

.st-score-panel p,
.st-score-panel span:last-child {
  margin: 8px 0 0;
}

.st-install-banner {
  align-items: center;
  background:
    linear-gradient(135deg, #102f33 0%, #17463d 52%, #332f4f 100%);
  border: 1px solid rgba(247, 218, 144, .62);
  border-radius: 8px;
  box-shadow:
    0 0 28px rgba(239, 177, 95, .38),
    0 18px 44px rgba(22, 35, 44, .28);
  color: #f9fff8;
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  min-height: 82px;
  overflow: hidden;
  padding: 12px 12px;
  position: fixed;
  left: 50%;
  bottom: 66px;
  transform: translateX(-50%);
  width: min(406px, calc(100vw - 20px));
  z-index: 65;
}

.st-install-banner::before {
  animation: stInstallShine 4.2s ease-in-out infinite;
  background: linear-gradient(115deg, transparent 0%, transparent 34%, rgba(255, 255, 255, .28) 50%, transparent 66%, transparent 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
}

.st-install-banner::after {
  animation: stInstallGlow 2.8s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: inherit;
  content: "";
  inset: 4px;
  pointer-events: none;
  position: absolute;
}

.st-install-mark {
  background:
    linear-gradient(135deg, #f7d48d, #fff4bf);
  border-radius: 8px;
  box-shadow: inset 0 -8px 16px rgba(23, 49, 54, .18), 0 0 18px rgba(247, 212, 141, .42);
  display: block;
  grid-column: 1;
  grid-row: 1;
  height: 42px;
  position: relative;
  width: 42px;
  z-index: 1;
}

.st-install-mark::before,
.st-install-mark::after {
  background: #173136;
  border-radius: 999px;
  content: "";
  position: absolute;
}

.st-install-mark::before {
  height: 18px;
  left: 12px;
  top: 9px;
  width: 18px;
}

.st-install-mark::after {
  background: #f7d48d;
  height: 18px;
  left: 17px;
  top: 6px;
  width: 18px;
}

.st-install-copy,
.st-install-mark,
.st-install-action,
.st-install-cta {
  position: relative;
  z-index: 1;
}

.st-app .st-install-copy span {
  color: #f7d48d;
  display: block;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
  margin-bottom: 4px;
}

.st-install-copy {
  grid-column: 2;
  grid-row: 1;
}

.st-install-action {
  grid-column: 3;
  grid-row: 1;
}

.st-app .st-install-copy strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.st-app .st-install-copy small {
  color: rgba(248,255,249,.78);
  display: block;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.st-app .st-install-cta {
  align-items: center;
  background: #f7d48d;
  border: 0;
  border-radius: 8px;
  color: #173136;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 950;
  justify-content: center;
  line-height: 1.2;
  min-height: 44px;
  padding: 10px 14px;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
  white-space: nowrap;
}

.st-app .st-install-cta.is-ready,
.st-app .st-install-banner.is-ready .st-install-cta {
  background: #ffffff;
  box-shadow: 0 0 22px rgba(255, 255, 255, .36);
}

.st-install-banner.is-installed {
  display: none;
}

.st-install-banner:hover,
.st-install-banner.is-pressing {
  box-shadow: 0 0 34px rgba(239, 177, 95, .5), 0 16px 36px rgba(22, 35, 44, .24);
  transform: translateX(-50%) translateY(-2px) scale(1.01);
}

.st-install-cta:hover,
.st-install-cta.is-pressing {
  background: #fff2ba;
  box-shadow: 0 0 24px rgba(247, 212, 141, .46);
  transform: translateY(-1px);
}

@keyframes stInstallShine {
  0%,
  42% {
    transform: translateX(-130%);
  }
  72%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes stInstallGlow {
  0%,
  100% {
    box-shadow: inset 0 0 0 rgba(247, 212, 141, 0), 0 0 0 rgba(247, 212, 141, 0);
  }
  50% {
    box-shadow: inset 0 0 18px rgba(247, 212, 141, .2), 0 0 22px rgba(247, 212, 141, .24);
  }
}

@keyframes stAurora {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes stPulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(42, 184, 111, .42);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(42, 184, 111, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .st-install-banner::before,
  .st-install-banner::after {
    animation: none;
  }

  .st-hero::before,
  .st-btn-google.is-connected::before,
  .st-account-chip::before {
    animation: none;
  }
}

.st-meter,
.st-progress {
  background: rgba(255,255,255,.28);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
  width: 100%;
}

.st-meter span,
.st-progress span {
  background: linear-gradient(90deg, var(--st-amber), #fff0b4);
  display: block;
  height: 100%;
  width: 0;
}

.st-main-grid,
.st-columns {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  padding: 16px;
}

.st-tool {
  min-width: 0;
}

.st-section-head {
  margin-bottom: 16px;
}

.st-section-head h2 {
  font-size: 24px;
  line-height: 1.25;
}

.st-quick-start {
  background:
    radial-gradient(circle at 20% 0%, rgba(239, 177, 95, .2), transparent 34%),
    linear-gradient(135deg, #123a37 0%, #173136 58%, #392d3d 100%);
  border: 1px solid rgba(247, 212, 141, .38);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(22, 35, 44, .16);
  color: #f7fff9;
  display: grid;
  font-size: 14px;
  gap: 10px;
  grid-auto-rows: max-content;
  line-height: 1.35;
  margin: 0 0 14px;
  overflow: hidden;
  padding: 12px;
  position: relative;
}

.st-hero-copy .st-quick-start {
  margin: 14px 0 0;
}

.st-quick-start::before {
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.18), transparent);
  content: "";
  inset: 0 auto 0 -70%;
  position: absolute;
  transform: skewX(-18deg);
  transition: transform .55s ease;
  width: 44%;
}

.st-quick-start:hover::before {
  transform: translateX(410%) skewX(-18deg);
}

.st-quick-head,
.st-quick-step,
.st-quick-options,
.st-quick-options button {
  position: relative;
  z-index: 1;
}

.st-quick-start > p:empty,
.st-quick-step > p:empty {
  display: none;
}

.st-quick-head span,
.st-quick-step > span {
  color: #f7d48d;
  display: block;
  font-size: 12px;
  font-weight: 950;
}

.st-quick-head strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  margin-top: 3px;
}

.st-quick-step {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-auto-rows: max-content;
  grid-template-columns: 62px 1fr;
}

.st-quick-options {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, 1fr);
  min-width: 0;
}

.st-quick-options[data-quick-time] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.st-quick-options[data-quick-preset] {
  display: flex;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.st-quick-options[data-quick-preset]::-webkit-scrollbar {
  display: none;
}

.st-quick-options button {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
  overflow: hidden;
  padding: 6px 8px;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.st-quick-options[data-quick-time] button {
  min-width: 0;
}

.st-quick-options[data-quick-preset] button {
  min-width: 64px;
}

.st-quick-options button:hover,
.st-quick-options button:focus-visible {
  background: rgba(255,255,255,.16);
  border-color: rgba(247, 212, 141, .7);
  box-shadow: 0 0 18px rgba(247, 212, 141, .22);
  transform: translateY(-2px);
}

.st-quick-options button:active,
.st-quick-options button.is-pressing {
  transform: translateY(0) scale(.98);
}

.st-quick-options button.is-active {
  background: #f7d48d;
  border-color: #f7d48d;
  box-shadow: 0 0 22px rgba(247, 212, 141, .42);
  color: #173136;
}

.st-segment,
.st-plan-buttons {
  background: #edf2ef;
  border-radius: 8px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 14px;
  padding: 4px;
}

.st-plan-buttons {
  grid-template-columns: repeat(4, 1fr);
}

.st-segment button,
.st-plan-buttons button {
  background: transparent;
  color: var(--st-muted);
  min-height: 40px;
  padding: 8px 10px;
}

.st-segment button.is-active,
.st-plan-buttons button.is-active {
  background: var(--st-surface);
  border-color: #d5e1dc;
  color: var(--st-green-dark);
  box-shadow: 0 6px 16px rgba(47, 128, 111, .12);
}

.st-form-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.st-form-grid > *,
.st-choice-block,
.st-form-grid label {
  margin: 0 !important;
}

.st-form-grid label,
.st-choice-block,
.st-rank-form {
  display: grid;
  gap: 6px;
}

.st-form-grid span,
.st-form-grid em {
  color: var(--st-muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
}

.st-form-grid input,
.st-rank-form input {
  background: #fbfcfa;
  border: 1px solid var(--st-line);
  border-radius: 8px;
  color: var(--st-ink);
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

.st-form-grid input:focus,
.st-rank-form input:focus {
  border-color: var(--st-green);
  outline: 3px solid rgba(47, 128, 111, .18);
}

.st-form-grid input[type="hidden"] {
  display: none;
}

.st-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.st-chip-group button,
.st-helper-strip button {
  background: #eef5f2;
  border: 1px solid #cfe1da;
  border-radius: 999px;
  color: var(--st-green-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  min-height: 40px;
  padding: 8px 12px;
  position: relative;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.st-chip-group button:hover,
.st-helper-strip button:hover {
  box-shadow: 0 8px 18px rgba(47, 128, 111, .16);
  transform: translateY(-1px);
}

.st-chip-group button.is-active,
.st-helper-strip button.is-active {
  background: var(--st-green);
  border-color: var(--st-green);
  box-shadow: 0 0 0 3px rgba(47, 128, 111, .12);
  color: #fff;
}

.st-results {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.st-result-row {
  align-items: center;
  background: #f6faf8;
  border: 1px solid #dcebe5;
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  overflow: hidden;
  padding: 12px;
  position: relative;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.st-result-row:hover,
.st-result-row:focus-visible {
  background: #ffffff;
  border-color: #b7ddd0;
  box-shadow: 0 12px 24px rgba(47, 128, 111, .13);
  transform: translateY(-2px);
}

.st-result-row.is-selected {
  background: #ecf7ef;
  border-color: #77c69e;
  box-shadow: 0 0 0 3px rgba(42, 184, 111, .12);
}

.st-result-row strong {
  color: var(--st-green-dark);
  font-size: 24px;
}

.st-result-row span {
  color: var(--st-muted);
  font-size: 13px;
}

.st-plan-summary {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-bottom: 12px;
}

.st-plan-summary div {
  background: #fbfcfa;
  border: 1px solid var(--st-line);
  border-radius: 8px;
  padding: 12px;
}

.st-plan-summary span {
  color: var(--st-muted);
  display: block;
  font-size: 13px;
  font-weight: 750;
}

.st-plan-summary strong {
  display: block;
  font-size: 20px;
  margin-top: 2px;
}

.st-progress {
  background: #e8eee9;
  margin-bottom: 16px;
}

.st-progress span {
  background: linear-gradient(90deg, var(--st-green), var(--st-sky));
}

.st-checklist {
  display: grid;
  gap: 10px;
}

.st-check-item {
  align-items: center;
  background: #fbfcfa;
  border: 1px solid var(--st-line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 28px 1fr;
  overflow: hidden;
  padding: 11px 12px;
  position: relative;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.st-check-item:hover,
.st-check-item.is-pressing {
  background: #ffffff;
  border-color: #c3ded4;
  box-shadow: 0 10px 22px rgba(47, 128, 111, .1);
  transform: translateY(-1px);
}

.st-check-item input {
  accent-color: var(--st-green);
  height: 22px;
  width: 22px;
}

.st-check-item strong {
  display: block;
  font-size: 15px;
}

.st-check-item span {
  color: var(--st-muted);
  font-size: 13px;
}

.st-check-item em {
  background: #fff3dd;
  border-radius: 999px;
  color: #8a5615;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  padding: 5px 8px;
  width: fit-content;
}

.st-helper-strip {
  align-items: center;
  background: #fffaf0;
  border: 1px solid #f1d7a9;
  border-radius: 8px;
  color: #513c1c;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin: 0 0 18px;
  min-height: 86px;
  padding: 14px 18px;
}

.st-helper-strip p {
  color: #a36a1f;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 3px;
}

.st-helper-strip h2 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
}

.st-helper-strip label {
  align-items: center;
  background: #fff;
  border: 1px solid #f3dfb9;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 7px;
  min-height: 44px;
  padding: 9px 11px;
  white-space: nowrap;
}

.st-helper-strip input {
  accent-color: var(--st-green);
  height: 18px;
  width: 18px;
}

.st-helper-strip-alt {
  background: #f8fbfc;
  border-color: #d8e8ee;
  color: #214956;
}

.st-helper-strip-alt p {
  color: #2c6e84;
}

.st-helper-strip-alt button {
  border-radius: 8px;
}

.st-neck-grid {
  grid-template-columns: 1fr;
}

.st-neck-result {
  background: #f8fbfc;
  border: 1px solid #d8e8ee;
  border-radius: 8px;
  margin-top: 14px;
  padding: 14px;
}

.st-neck-result strong {
  color: #2c6e84;
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.st-neck-result ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.st-rank-form {
  grid-template-columns: 1fr;
  margin-bottom: 14px;
}

.st-rank-list {
  display: grid;
  gap: 8px;
}

.st-rank-row {
  align-items: center;
  background: #fbfcfa;
  border: 1px solid var(--st-line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 42px 1fr;
  overflow: hidden;
  padding: 10px 12px;
  position: relative;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.st-rank-row b {
  color: var(--st-coral);
}

.st-rank-row span {
  color: var(--st-muted);
  font-size: 13px;
}

.st-roadmap {
  padding: 18px;
}

.st-roadmap-grid,
.st-post-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.st-roadmap-grid article,
.st-post-card {
  background: #fbfcfa;
  border: 1px solid var(--st-line);
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
  position: relative;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.st-roadmap-grid article:hover,
.st-post-card:hover,
.st-rank-row:hover {
  border-color: #c5dcd3;
  box-shadow: 0 12px 24px rgba(22, 35, 44, .1);
  transform: translateY(-2px);
}

.st-roadmap-grid article {
  padding: 16px;
}

.st-roadmap-grid span {
  color: var(--st-lilac);
  font-size: 13px;
  font-weight: 900;
}

.st-roadmap-grid h3 {
  font-size: 19px;
  margin: 4px 0 8px;
}

.st-roadmap-grid p {
  color: var(--st-muted);
  font-size: 14px;
  margin: 0;
}

.st-band > .st-section-head,
.st-band > .st-post-grid {
  margin-left: 18px;
  margin-right: 18px;
}

.st-band > .st-section-head:first-child {
  margin-top: 18px;
}

.st-band > .st-post-grid:last-child {
  margin-bottom: 18px;
}

.st-post-card {
  color: inherit;
  display: block;
  text-decoration: none;
}

.st-post-thumb {
  background: linear-gradient(135deg, #dcebe5, #e9e1f2);
  background-position: center;
  background-size: cover;
  display: block;
  aspect-ratio: 1.91 / 1;
}

.st-post-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  padding: 12px;
}

.st-dialog {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(0,0,0,.25);
  color: var(--st-ink);
  max-width: 560px;
  padding: 0;
  width: calc(100% - 32px);
}

.st-dialog::backdrop {
  background: rgba(20, 30, 35, .56);
}

.st-dialog form {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.st-dialog h2 {
  font-size: 24px;
  margin: 0;
}

.st-dialog p {
  color: var(--st-muted);
  margin: 0;
}

.st-dialog code {
  background: #f0f4f2;
  border: 1px solid var(--st-line);
  border-radius: 8px;
  display: block;
  font-size: 14px;
  overflow-wrap: anywhere;
  padding: 12px;
}

.st-dialog-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.st-mobile-dock {
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--st-line);
  border-radius: 8px;
  bottom: 10px;
  box-shadow: 0 10px 30px rgba(22, 35, 44, .16);
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(4, 1fr);
  left: 50%;
  max-width: calc(100vw - 20px);
  padding: 6px;
  position: fixed;
  transform: translateX(-50%);
  width: min(406px, calc(100vw - 20px));
  z-index: 50;
}

.st-mobile-dock a {
  background: #eef5f2;
  border-radius: 8px;
  color: var(--st-green-dark);
  font-size: 13px;
  font-weight: 900;
  min-height: 42px;
  padding: 10px 6px;
  text-align: center;
  text-decoration: none;
}

.st-mobile-dock a:focus,
.st-mobile-dock a:hover {
  background: var(--st-green);
  color: #fff;
}

.st-touch-wave {
  animation: stTouchWave .6s ease-out forwards;
  background: rgba(255, 255, 255, .34);
  border-radius: 999px;
  pointer-events: none;
  position: absolute;
  transform: scale(0);
  z-index: 2;
}

.st-toast {
  background: #173136;
  border: 1px solid rgba(247, 212, 141, .46);
  border-radius: 8px;
  bottom: 174px;
  box-shadow: 0 12px 28px rgba(22, 35, 44, .24);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  left: 50%;
  max-width: calc(100vw - 32px);
  opacity: 0;
  padding: 10px 14px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
  width: fit-content;
  z-index: 70;
}

.st-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes stTouchWave {
  to {
    opacity: 0;
    transform: scale(2.8);
  }
}

.single .adsg-ad-slot {
  border-color: #e4e8e3 !important;
  border-radius: 8px !important;
  color: #6a716c !important;
  font-size: 12px !important;
  margin: 18px auto !important;
  min-height: 72px !important;
}

.single .adsg-slot-in-article-3 {
  display: none !important;
}

@media (max-width: 900px) {
  .st-app {
    padding: 12px 12px 178px;
  }

  .st-hero,
  .st-main-grid,
  .st-columns {
    grid-template-columns: 1fr;
  }

  .st-score-panel {
    min-height: 170px;
  }

  .st-neck-grid,
  .st-roadmap-grid,
  .st-post-grid {
    grid-template-columns: 1fr 1fr;
  }

  .st-helper-strip {
    grid-template-columns: 1fr 1fr;
  }

  .st-helper-strip > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .st-hero {
    padding: 24px 16px 18px;
  }

  .st-hero h1 {
    font-size: 28px;
    line-height: 1.22;
  }

  .st-hero h1 span {
    display: block;
  }

  .st-lead span,
  .st-section-head h2 span {
    display: block;
  }

  .st-section-head h2 {
    font-size: 23px;
    line-height: 1.24;
  }

  .st-hero-actions,
  .st-dialog-actions {
    flex-direction: column;
  }

  .st-btn {
    width: 100%;
    white-space: normal;
  }

  .st-install-banner {
    gap: 8px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 72px;
    padding: 9px;
  }

  .st-app .st-install-cta {
    font-size: 13px;
    grid-column: auto;
    min-height: 38px;
    padding: 9px 12px;
    width: auto;
  }

  .st-install-mark {
    height: 34px;
    width: 34px;
  }

  .st-install-mark::before,
  .st-install-mark::after {
    height: 15px;
    width: 15px;
  }

  .st-install-mark::before {
    left: 10px;
    top: 8px;
  }

  .st-install-mark::after {
    left: 15px;
    top: 5px;
  }

  .st-app .st-install-copy strong {
    font-size: 14px;
  }

  .st-app .st-install-copy small {
    display: none;
  }

  .st-plan-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .st-result-row,
  .st-check-item,
  .st-rank-row {
    grid-template-columns: 1fr;
  }

  .st-result-row strong {
    font-size: 22px;
  }

  .st-neck-grid,
  .st-roadmap-grid,
  .st-post-grid,
  .st-helper-strip,
  .st-plan-summary,
  .st-rank-form {
    grid-template-columns: 1fr;
  }
}

/* Mobile-only product decision: keep the whole app in one phone-width column on every viewport. */
.st-hero,
.st-main-grid,
.st-columns,
.st-neck-grid,
.st-roadmap-grid,
.st-post-grid,
.st-plan-summary,
.st-rank-form,
.st-helper-strip {
  grid-template-columns: 1fr !important;
}
