:root {
  --bg: #fff7ee;
  --card: #ffffff;
  --ink: #101b38;
  --muted: #7d8798;
  --line: #f0e3d6;
  --mint: #22c9bb;
  --mint-dark: #0fa99d;
  --mint-soft: #dffbf7;
  --orange: #ff8b47;
  --orange-soft: #fff0e5;
  --purple: #8b64f6;
  --purple-soft: #efe8ff;
  --yellow: #ffd56c;
  --yellow-soft: #fff4d5;
  --blue: #3b9cff;
  --shadow: 0 20px 55px rgba(31, 36, 62, .1);
  --shadow-soft: 0 12px 28px rgba(31, 36, 62, .08);
  --radius-xl: 30px;
  --nav-h: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(34, 201, 187, .18), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(255, 213, 108, .28), transparent 25%),
    linear-gradient(180deg, #fff8ef 0%, #fff9f1 45%, #f2fbf5 100%);
  min-height: 100vh;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  height: var(--nav-h);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 239, .82);
  border-bottom: 1px solid rgba(238, 226, 214, .72);
}

.topbar-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.logo,
.mascot-big {
  position: relative;
  background: var(--mint);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(34, 201, 187, .28);
}

.logo {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  font-size: 22px;
}

.logo::before,
.logo::after,
.mascot-big::before,
.mascot-big::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.logo::before {
  width: 16px;
  height: 16px;
  background: var(--orange);
  left: -5px;
  top: 10px;
}

.logo::after {
  width: 14px;
  height: 14px;
  background: var(--yellow);
  right: 8px;
  top: -7px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  padding: 9px 15px;
  border-radius: 999px;
  color: #687082;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
}

.main-nav a.active {
  background: var(--mint);
  color: white;
  box-shadow: 0 10px 24px rgba(34, 201, 187, .24);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 2px;
  border: 1px solid rgba(34, 201, 187, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  padding: 3px;
  box-shadow: 0 8px 18px rgba(31, 36, 62, .05);
}

.language-switcher button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #657083;
  font-size: 12px;
  font-weight: 900;
}

.language-switcher button.active {
  background: var(--mint);
  color: white;
  box-shadow: 0 8px 18px rgba(34, 201, 187, .2);
}

.language-switcher-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.language-switcher-row .legal-back-link {
  margin-bottom: 0;
}

.auth-menu {
  position: relative;
}

.auth-pill {
  border: 1px solid #c9f2ee;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--mint-dark);
  min-height: 38px;
  max-width: 190px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth-pill.ready {
  border-color: #bfe8dd;
  background: #effdf7;
}

.auth-pill.loading {
  color: #6a573d;
  background: var(--yellow-soft);
  border-color: #f6e5ae;
}

.auth-pill.error {
  color: #ff6b28;
  background: var(--orange-soft);
  border-color: #ffdac3;
}

.auth-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: white;
  font-size: 12px;
  font-weight: 900;
  object-fit: cover;
}

.auth-avatar.empty {
  background: #eef4f3;
  border: 1px solid #c8d8d5;
  color: transparent;
}

.auth-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-popover {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 80;
  width: 190px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
}

.auth-popover[hidden] {
  display: none;
}

.auth-popover::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 26px;
  width: 12px;
  height: 12px;
  background: white;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}

.auth-popover-title {
  padding: 6px 8px 4px;
  color: #657083;
  font-size: 13px;
  font-weight: 900;
}

.auth-popover button {
  border: 0;
  border-radius: 14px;
  background: #f8fafb;
  color: #303949;
  padding: 10px 12px;
  text-align: left;
  font-weight: 900;
}

.auth-popover button:hover {
  background: var(--mint-soft);
  color: var(--mint-dark);
}

.auth-popover button.danger {
  color: #ff6b28;
  background: var(--orange-soft);
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 27, 56, .34);
  backdrop-filter: blur(12px);
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal-panel {
  position: relative;
  width: min(100%, 360px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
}

.auth-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f4f6f8;
  color: #657083;
  font-size: 22px;
  line-height: 1;
}

.wechat-badge {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(34, 201, 187, .24);
}

.auth-modal h2 {
  margin: 0;
  font-size: 24px;
}

.auth-modal p {
  margin: 8px 0 16px;
  color: #657083;
  line-height: 1.5;
  font-weight: 760;
}

.wecom-card-panel {
  position: relative;
  width: min(100%, 420px);
  max-height: calc(100svh - 40px);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.wecom-modal .auth-modal-close {
  right: 12px;
  top: 12px;
  background: rgba(255, 255, 255, .92);
  color: #0f1a34;
  box-shadow: 0 10px 22px rgba(16, 27, 56, .16);
  z-index: 2;
}

.wecom-card-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72svh, 700px);
  object-fit: contain;
  background: #eef4f6;
}

.wecom-card-caption {
  padding: 14px 20px 18px;
  text-align: center;
}

.wecom-card-caption p {
  margin: 0;
  color: #657083;
  font-weight: 760;
  line-height: 1.45;
}

.mini-program-modal-panel {
  position: relative;
  width: min(100%, 360px);
  padding: 24px;
  border: 1px solid rgba(208, 231, 226, .95);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fffd 100%);
  box-shadow: var(--shadow);
  text-align: center;
}

.mini-program-modal .auth-modal-close {
  right: 12px;
  top: 12px;
  background: rgba(244, 246, 248, .96);
}

.mini-program-modal-code {
  display: block;
  width: min(224px, 70vw);
  aspect-ratio: 1;
  margin: 6px auto 18px;
  border: 1px solid rgba(208, 231, 226, .95);
  border-radius: 24px;
  object-fit: cover;
  background: #eef8f5;
  box-shadow: 0 16px 32px rgba(31, 36, 62, .10);
}

.mini-program-modal-copy {
  display: grid;
  gap: 8px;
}

.mini-program-modal-copy h2 {
  margin: 0;
  color: #101b38;
  font-size: 22px;
  line-height: 1.2;
}

.mini-program-modal-copy p {
  margin: 0;
  color: #556174;
  font-weight: 850;
  line-height: 1.5;
}

.mini-program-modal-copy small {
  display: block;
  color: #8a94a3;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}

.wechat-share-guide {
  align-items: start;
  justify-items: end;
  padding: max(18px, env(safe-area-inset-top)) 16px 16px;
}

.wechat-share-guide-panel {
  position: relative;
  width: min(330px, calc(100vw - 32px));
  margin-top: 12px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(208, 231, 226, .95);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
  color: #101b38;
}

.wechat-share-guide-panel::before {
  content: "";
  position: absolute;
  right: 26px;
  top: -10px;
  width: 18px;
  height: 18px;
  border-left: 1px solid rgba(208, 231, 226, .95);
  border-top: 1px solid rgba(208, 231, 226, .95);
  background: white;
  transform: rotate(45deg);
}

.wechat-share-guide-mark {
  width: 54px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #e8fbf7;
  color: var(--mint-dark);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.wechat-share-guide-panel h2 {
  margin: 0 36px 8px 0;
  font-size: 22px;
  line-height: 1.2;
}

.wechat-share-guide-panel p {
  margin: 0;
  color: #556174;
  font-weight: 820;
  line-height: 1.55;
}

.billing-modal-panel {
  position: relative;
  width: min(100%, 392px);
  max-height: calc(100svh - 40px);
  overflow: auto;
  background: white;
  border: 1px solid rgba(217, 225, 232, .92);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(16, 27, 56, .22);
  padding: 28px 24px 24px;
  text-align: center;
}

.billing-modal-panel h2 {
  margin: 0 42px 22px;
  color: #101b38;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.billing-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  text-align: left;
  min-height: 128px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #dfeeea;
  background: linear-gradient(180deg, #fbfffe 0%, #f6fcfa 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.billing-product-info {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.billing-product-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.billing-product-name {
  color: #556174;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.billing-product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e8fbf7;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 900;
}

.billing-product-card strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #102044;
  line-height: 1;
  white-space: nowrap;
}

.billing-product-card strong em {
  font-style: normal;
  font-size: 32px;
  font-weight: 950;
  letter-spacing: 0;
}

.billing-product-card strong span {
  font-size: 17px;
  font-weight: 900;
}

.billing-product-card small {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid #e4ecea;
  border-radius: 999px;
  background: white;
  color: #687487;
  font-size: 13px;
  font-weight: 820;
}

.billing-product-price {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 6px;
  min-height: 82px;
  padding-left: 18px;
  border-left: 1px solid #e2efec;
}

.billing-product-price span {
  color: #8a94a3;
  font-size: 12px;
  font-weight: 850;
}

.billing-product-card b {
  color: var(--mint-dark);
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
}

.billing-pay-box {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #edf1ef;
  border-radius: 20px;
  background: #fafdfc;
}

.billing-pay-qr {
  width: 220px;
  height: 220px;
  display: block;
  margin: 0 auto 10px;
  border-radius: 12px;
}

.billing-pay-box p,
.billing-modal-note {
  color: #657083;
  line-height: 1.5;
  font-weight: 800;
}

.billing-modal-status {
  margin: 12px 0 0;
  color: #657083;
  line-height: 1.45;
  font-weight: 820;
}

.billing-modal-status.warning {
  color: #bd6b16;
}

.billing-modal-status.muted {
  color: #7c8797;
}

.billing-pay-button {
  min-height: 52px;
  margin-top: 20px;
  font-size: 17px;
}

.billing-open-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #eafbf8;
  color: var(--mint-dark);
  font-weight: 950;
  text-decoration: none;
}

.billing-error {
  margin: 14px 0 0;
  color: #9a5a28;
  font-size: 14px;
  font-weight: 820;
  line-height: 1.45;
}

.billing-success-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 4px auto 12px;
  border-radius: 50%;
  background: var(--mint);
  color: white;
  font-size: 38px;
  font-weight: 950;
}

.wechat-qr-box {
  min-height: 260px;
  border-radius: 20px;
  border: 1px solid #edf1ef;
  background: #f8fafb;
  margin-bottom: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.wechat-qr-box iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
}

.wechat-qr-mark,
.wechat-qr-loading {
  width: 160px;
  height: 160px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px dashed #d8e3e1;
  color: var(--mint-dark);
  font-weight: 900;
}

.wechat-qr-mark {
  font-size: 38px;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
}

.btn.primary {
  background: var(--mint);
  color: white;
  box-shadow: 0 12px 28px rgba(34, 201, 187, .3);
}

.btn.light {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(31, 36, 62, .05);
}

.share-button {
  align-items: center;
  gap: 5px;
}

.share-button::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%225%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Ccircle%20cx%3D%226%22%20cy%3D%2212%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%2219%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Cpath%20d%3D%22M8.7%2010.7L15.3%206.3M8.7%2013.3L15.3%2017.7%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%225%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Ccircle%20cx%3D%226%22%20cy%3D%2212%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%2219%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Cpath%20d%3D%22M8.7%2010.7L15.3%206.3M8.7%2013.3L15.3%2017.7%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn.orange {
  background: var(--orange-soft);
  color: #ff6b28;
  border: 1px solid #ffdac3;
}

.btn.full {
  width: 100%;
}

.page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px 24px;
}

.view {
  display: none;
  scroll-margin-top: calc(var(--nav-h) + 16px);
  animation: fadeUp .22s ease both;
}

.view.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 2px 0 12px;
  gap: 18px;
}

.section-title h1 {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0;
}

.section-title p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-soft);
  color: var(--purple);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  max-width: 100%;
}

.hero-view {
  min-height: calc(100svh - var(--nav-h) - 42px);
  display: none;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 24px;
  align-items: stretch;
}

.hero-view.active {
  display: grid;
}

.hero-card {
  background: linear-gradient(135deg, #e3fbff 0%, #eef9df 62%, #fff4d6 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card > div,
.prompt-box {
  position: relative;
  z-index: 1;
}

.spark {
  position: absolute;
  border-radius: 50%;
  opacity: .9;
  z-index: 0;
}

.spark.s1 {
  width: 20px;
  height: 20px;
  background: var(--purple);
  right: 120px;
  top: 88px;
}

.spark.s2 {
  width: 34px;
  height: 34px;
  background: var(--yellow);
  right: 76px;
  top: 36px;
}

.spark.s3 {
  width: 22px;
  height: 22px;
  background: var(--orange);
  right: 210px;
  top: 120px;
}

.hero-card h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 14px 0;
  max-width: 760px;
}

.hero-card h1 em {
  font-style: normal;
  color: var(--mint-dark);
}

.hero-sub {
  font-size: 18px;
  color: #687082;
  line-height: 1.62;
  margin: 0;
  max-width: 760px;
  font-weight: 700;
}

.prompt-box {
  margin-top: 24px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 30px;
  padding: 12px;
  box-shadow: 0 22px 45px rgba(31, 36, 62, .08);
}

.prompt-input,
.compose-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 10px 10px 10px 18px;
  box-shadow: 0 10px 22px rgba(31, 36, 62, .04);
}

.prompt-input input,
.compose-inner input,
.compose-inner textarea,
.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
}

.compose-inner {
  align-items: center;
}

.compose-inner textarea {
  line-height: 1.45;
  max-height: calc(1.45em * 5);
  min-height: calc(1.45em + 2px);
  overflow-y: hidden;
  padding: 1px 0;
  resize: none;
}

.prompt-input input::placeholder,
.compose-inner input::placeholder,
.compose-inner textarea::placeholder,
.search-box input::placeholder {
  color: #9aa2ad;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.quick-chip {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 8px 10px;
  text-align: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  border: 1px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--mint-dark);
  background: var(--mint-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-chip:nth-child(2) {
  color: #fb6c2a;
  background: var(--orange-soft);
  border-color: #ffdec9;
}

.quick-chip:nth-child(3) {
  color: var(--purple);
  background: var(--purple-soft);
  border-color: #e2d6ff;
}

.hero-side {
  display: grid;
  gap: 14px;
  grid-template-rows: auto auto;
  align-content: start;
  min-width: 0;
}

.generation-panel {
  min-height: 0;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(240, 227, 214, .86);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 10px;
  overflow: hidden;
}

.generation-head,
.slice-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--mint-soft);
  border: 1px solid #c9f2ee;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(34, 201, 187, .14);
  animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
  50% {
    transform: scale(.82);
    box-shadow: 0 0 0 8px rgba(34, 201, 187, .08);
  }
}

.generation-time {
  color: #8b95a3;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.prompt-preview {
  border-radius: 18px;
  border: 1px solid #e9f3ef;
  background: linear-gradient(135deg, #f4fffd 0%, #fff8e4 100%);
  padding: 12px 14px;
}

.slice-title span,
.cover-tile span,
.vote-kicker {
  display: block;
  color: #8b95a3;
  font-size: 12px;
  font-weight: 900;
}

.prompt-preview b {
  display: block;
  color: #17233f;
  font-size: 15px;
  line-height: 1.36;
}

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

.build-step {
  min-height: 36px;
  border-radius: 15px;
  border: 1px solid #eef0f3;
  background: #f8fafb;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: #5f6978;
  font-size: 13px;
  font-weight: 900;
}

.build-step i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #dfe5eb;
  box-shadow: inset 0 0 0 4px white;
}

.build-step.done {
  background: #f0fffb;
  border-color: #c9f2ee;
}

.build-step.done i {
  background: var(--mint);
}

.build-step.active {
  background: #fffaf0;
  border-color: #f7e4ba;
}

.build-step.active i {
  background: var(--yellow);
}

.stage-preview {
  min-height: 168px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fffd 0%, #ffffff 100%);
  border: 1px solid #dcefeb;
  padding: 8px;
  box-shadow: 0 12px 26px rgba(16, 27, 56, .07);
  overflow: hidden;
}

.vote-mini {
  min-height: 150px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f3fffb 100%);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.vote-mini h2 {
  margin: 0;
  color: #13203c;
  font-size: 18px;
  line-height: 1.2;
}

.vote-kicker {
  color: var(--mint-dark);
}

.vote-option {
  min-height: 34px;
  border-radius: 12px;
  background: #f0f3f7;
  padding: 0 11px;
  color: #3f4a5b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
}

.vote-option::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  background: rgba(34, 201, 187, .16);
}

.vote-option:nth-child(4)::before {
  width: 36%;
  background: rgba(255, 139, 71, .16);
}

.vote-option:nth-child(5)::before {
  width: 28%;
  background: rgba(139, 100, 246, .14);
}

.vote-option.active {
  background: #ebfffb;
  color: var(--mint-dark);
}

.vote-option.active::before {
  width: 58%;
  background: rgba(34, 201, 187, .25);
}

.vote-option span,
.vote-option b {
  position: relative;
  z-index: 1;
}

.mascot-big {
  width: 154px;
  height: 136px;
  border-radius: 44px;
  font-size: 66px;
  margin: 0 auto 14px;
}

.mascot-big.small {
  width: 136px;
  height: 122px;
  font-size: 56px;
  margin: 0;
}

.mascot-big.latin {
  font-size: 72px;
  letter-spacing: 0;
}

.mascot-big.small.latin {
  font-size: 62px;
}

.mascot-big::before {
  width: 34px;
  height: 34px;
  background: var(--orange);
  left: -14px;
  top: 46px;
}

.mascot-big::after {
  width: 36px;
  height: 36px;
  background: var(--purple);
  right: -12px;
  top: 42px;
}

.work-slice-board {
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(240, 227, 214, .86);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  overflow: hidden;
}

.slice-title {
  margin-bottom: 10px;
}

.slice-title span {
  color: #7b8594;
}

.slice-title a {
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.slice-title a:hover {
  text-decoration: underline;
}

.featured-wall {
  min-height: 330px;
  position: relative;
}

.cover-tile {
  aspect-ratio: 1 / 1.56;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #eef6f4;
  box-shadow:
    0 22px 42px rgba(31, 36, 62, .16),
    0 0 0 1px rgba(255, 255, 255, .8);
}

.cover-tile:focus-visible {
  outline: 3px solid rgba(34, 201, 187, .42);
  outline-offset: 3px;
}

.cover-tile-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-wall.is-collage {
  height: clamp(300px, 34vw, 390px);
  min-height: 300px;
  isolation: isolate;
  overflow: hidden;
}

.featured-wall.is-collage::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7%;
  height: 18%;
  border-radius: 999px;
  background: rgba(17, 28, 48, .12);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.collage-tile {
  position: absolute;
  width: 26%;
  max-width: 176px;
  min-width: 112px;
  z-index: 1;
  transform-origin: 50% 72%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.collage-tile:hover {
  z-index: 8;
  box-shadow:
    0 28px 52px rgba(31, 36, 62, .22),
    0 0 0 1px rgba(255, 255, 255, .86);
}

.collage-tile.placeholder,
.collage-tile.image-failed {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(244, 249, 248, .82)),
    linear-gradient(135deg, #dffbf7 0%, #fff5db 100%);
}

.collage-tile.placeholder::before,
.collage-tile.image-failed::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 10%;
  height: 9%;
  border-radius: 999px;
  background: rgba(34, 201, 187, .22);
  box-shadow:
    0 18px 0 rgba(23, 32, 60, .88),
    0 34px 0 rgba(112, 124, 142, .24),
    0 60px 0 rgba(255, 255, 255, .78),
    0 78px 0 rgba(23, 32, 60, .18);
}

.collage-tile.placeholder::after,
.collage-tile.image-failed::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  height: 44%;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 31%, rgba(145, 159, 178, .28) 31% 33%, transparent 33% 65%, rgba(145, 159, 178, .28) 65% 67%, transparent 67%),
    linear-gradient(180deg, transparent 31%, rgba(145, 159, 178, .28) 31% 33%, transparent 33% 65%, rgba(145, 159, 178, .28) 65% 67%, transparent 67%),
    rgba(255, 255, 255, .62);
  box-shadow: inset 0 0 0 1px rgba(145, 159, 178, .24);
}

.collage-tile.image-failed .cover-tile-image {
  display: none;
}

.featured-wall.is-placeholder .tile-2,
.featured-wall.is-placeholder .tile-6,
.collage-tile.image-failed.tile-2,
.collage-tile.image-failed.tile-6 {
  background:
    linear-gradient(180deg, rgba(22, 31, 48, .94), rgba(35, 46, 57, .94)),
    linear-gradient(135deg, #17203c, #2f3b45);
}

.featured-wall.is-placeholder .tile-2::before,
.featured-wall.is-placeholder .tile-6::before,
.collage-tile.image-failed.tile-2::before,
.collage-tile.image-failed.tile-6::before {
  background: rgba(255, 213, 108, .72);
  box-shadow:
    0 18px 0 rgba(255, 255, 255, .84),
    0 46px 0 rgba(255, 255, 255, .14),
    0 82px 0 rgba(255, 213, 108, .72);
}

.featured-wall.is-placeholder .tile-3,
.featured-wall.is-placeholder .tile-5,
.collage-tile.image-failed.tile-3,
.collage-tile.image-failed.tile-5 {
  background:
    linear-gradient(180deg, rgba(248, 249, 251, .92), rgba(226, 232, 238, .86)),
    linear-gradient(135deg, #f8fbff, #dce6ed);
}

.collage-tile.tile-1 {
  left: 2%;
  top: 7%;
  width: 31%;
  max-width: 205px;
  z-index: 3;
  transform: rotate(-5deg);
}

.collage-tile.tile-1:hover {
  transform: rotate(-3deg) translateY(-5px);
}

.collage-tile.tile-2 {
  left: 28%;
  top: 0;
  width: 32%;
  max-width: 214px;
  z-index: 5;
  transform: rotate(2deg);
}

.collage-tile.tile-2:hover {
  transform: rotate(1deg) translateY(-6px);
}

.collage-tile.tile-3 {
  right: 4%;
  top: 6%;
  width: 30%;
  max-width: 200px;
  z-index: 4;
  transform: rotate(5deg);
}

.collage-tile.tile-3:hover {
  transform: rotate(3deg) translateY(-5px);
}

.collage-tile.tile-4 {
  left: 11%;
  bottom: 4%;
  width: 26%;
  z-index: 2;
  transform: rotate(4deg);
}

.collage-tile.tile-4:hover {
  transform: rotate(2deg) translateY(-5px);
}

.collage-tile.tile-5 {
  left: 43%;
  bottom: 2%;
  width: 27%;
  z-index: 3;
  transform: rotate(-4deg);
}

.collage-tile.tile-5:hover {
  transform: rotate(-2deg) translateY(-5px);
}

.collage-tile.tile-6 {
  right: 10%;
  bottom: 4%;
  width: 24%;
  z-index: 2;
  transform: rotate(3deg);
}

.collage-tile.tile-6:hover {
  transform: rotate(1deg) translateY(-5px);
}

.featured-wall-state {
  min-height: 112px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #f8fafb;
  color: #8b95a3;
  font-weight: 900;
}

.featured-wall-state.error {
  color: #ff6b28;
  background: var(--orange-soft);
}

.gallery-shell,
.frame,
.about-shell {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(240, 227, 214, .8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 20px;
}

.gallery-shell {
  background: linear-gradient(180deg, #edf8ed 0%, #f7fbf2 100%);
}

.gallery-hero {
  min-height: 132px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff1b8, #ffead0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  margin-bottom: 16px;
  overflow: hidden;
}

.gallery-hero h2 {
  font-size: 32px;
  line-height: 1.1;
  margin: 0;
}

.gallery-hero h2 span {
  color: var(--orange);
}

.gallery-hero p {
  font-weight: 800;
  color: #6a573d;
}

.gallery-toolbar {
  display: grid;
  gap: 10px;
}

.search-box {
  background: white;
  border: 1px solid #edf1ef;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-box span {
  color: var(--mint-dark);
  font-weight: 900;
}

.category-row {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding-bottom: 4px;
}

.category {
  border: 0;
  background: white;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 900;
  color: #303949;
  box-shadow: 0 8px 18px rgba(31, 36, 62, .06);
  white-space: nowrap;
}

.category.active {
  background: var(--mint);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.work-card {
  background: white;
  border-radius: 28px;
  padding: 20px;
  display: flex;
  align-items: stretch;
  gap: 22px;
  box-shadow: 0 12px 36px rgba(15, 29, 58, .08);
  border: 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.work-card:focus-visible {
  outline: 3px solid rgba(34, 201, 187, .38);
  outline-offset: 3px;
}

.work-cover {
  flex: 0 0 132px;
  width: 132px;
  aspect-ratio: 1 / 1.56;
  border-radius: 24px;
  border: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  text-align: center;
  padding: 16px;
  overflow: hidden;
  line-height: 1.35;
}

.work-cover.has-image {
  padding: 0;
  background: #eef6f4;
}

.work-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cover-mint {
  background: linear-gradient(180deg, #e6fff9, #fff4d5);
  color: var(--mint-dark);
}

.cover-dark {
  background: linear-gradient(180deg, #1d2630, #3c474a);
  color: var(--yellow);
}

.cover-space {
  background: linear-gradient(180deg, #151832, #252947);
  color: var(--yellow);
}

.cover-purple {
  background: linear-gradient(180deg, #efe8ff, #fff);
  color: var(--purple);
}

.work-body {
  flex: 1;
  min-width: 0;
  padding: 4px 0;
  display: flex;
  flex-direction: column;
}

.work-title {
  color: #0f1d3a;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
  margin: 0;
}

.work-subtitle {
  margin: 8px 0 0;
  color: #697386;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 760;
}

.work-desc {
  margin: 10px 0 0;
  color: #697386;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 720;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.work-foot {
  margin-top: auto;
  padding-top: 18px;
}

.game-action-row {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  overflow: visible;
}

.game-action-capsule {
  position: relative;
  flex: 0 0 calc((100% - 9px) / 2.55);
  min-width: 0;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 620;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
}

.game-action-play {
  background: #ecfaf8;
  border-color: #c9f0ec;
}

.game-action-like {
  background: #fff4de;
  border-color: #ffe0b8;
}

.game-action-like.is-liked {
  background: #ffecd0;
  border-color: #ffd39a;
}

.game-action-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #5f6678;
  line-height: 1;
  white-space: nowrap;
}

.game-action-number {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.game-action-icon {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.game-action-icon.eye {
  background-image: url("game-item/icon-eye-teal.svg");
}

.game-action-icon.heart {
  background-image: url("game-item/icon-unlike-coral.svg");
}

.game-action-like.is-liked .game-action-icon.heart {
  background-image: url("game-item/icon-like-coral.svg");
}

.empty-state {
  margin-top: 16px;
  background: white;
  border-radius: 24px;
  padding: 24px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.empty-state b,
.empty-state span {
  display: block;
}

.empty-state span {
  margin-top: 8px;
  color: #9aa2ad;
  font-size: 14px;
}

.gallery-empty-action {
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--mint);
  color: white;
  font-weight: 900;
}

.create-mobile-tabs {
  display: none;
}

.workspace {
  --workspace-min-height: 680px;
  --workspace-max-height: calc(100svh - var(--nav-h) - 96px);
  height: var(--workspace-max-height);
  min-height: var(--workspace-min-height);
  max-height: var(--workspace-max-height);
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 420px;
  gap: 14px;
}

.panel {
  background: var(--card);
  border-radius: 24px;
  border: 1px solid #f0e7de;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 0;
}

.side-panel {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}

.side-section-title {
  font-size: 13px;
  color: #9aa2ad;
  font-weight: 900;
  margin: 8px 6px 2px;
}

.billing-card {
  border: 1px solid #d7f2ed;
  border-radius: 16px;
  background: linear-gradient(135deg, #effdfa, #fff8ec);
  padding: 14px;
  color: #102044;
  display: grid;
  gap: 10px;
}

.billing-card-hero {
  min-width: 0;
}

.billing-card-main {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.billing-card-kicker,
.billing-card-meta {
  color: #697386;
  font-size: 12px;
  font-weight: 850;
}

.billing-card-deal {
  display: block;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

.billing-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.3;
}

.billing-card-action {
  display: flex;
  justify-content: center;
}

.billing-buy-button,
.billing-link-button {
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  color: #fff;
  font-weight: 950;
  padding: 10px 15px;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(34, 201, 187, .18);
}

.billing-buy-button {
  width: min(100%, 180px);
  min-height: 34px;
  padding: 6px 18px;
  font-size: 15px;
}

.billing-link-button {
  width: 100%;
  margin-top: 8px;
}

.billing-card-status {
  color: #697386;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.billing-card-status.error {
  color: #d95d32;
}

.project-list {
  display: grid;
  gap: 9px;
}

.project-row {
  width: 100%;
  text-align: left;
  padding: 11px 12px;
  border-radius: 16px;
  background: #f9fafb;
  border: 1px solid #eef0f3;
  font-weight: 900;
  color: #4f5968;
}

.project-row span,
.project-row small {
  display: block;
}

.project-row small {
  margin-top: 3px;
  color: #9aa2ad;
  font-size: 12px;
  font-weight: 800;
}

.project-row.active {
  background: var(--mint-soft);
  border-color: #c9f2ee;
  color: var(--mint-dark);
}

.project-empty {
  border-radius: 16px;
  background: #f9fafb;
  border: 1px dashed #e1e7eb;
  color: #8d97a5;
  font-weight: 800;
  line-height: 1.5;
  padding: 12px;
}

.chat-panel {
  display: flex;
  flex-direction: column;
  background: #fffaf4;
}

.chat-header {
  height: 54px;
  border-bottom: 1px solid #f0e7de;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: white;
}

.chat-body {
  flex: 1;
  padding: 16px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bubble {
  max-width: 78%;
  border-radius: 20px;
  padding: 13px 15px;
  line-height: 1.52;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(31, 36, 62, .04);
}

.bubble.user {
  align-self: flex-end;
  background: var(--mint);
  color: white;
  border-bottom-right-radius: 8px;
}

.bubble.ai {
  align-self: flex-start;
  background: white;
  border: 1px solid #f0e7de;
  border-radius: 18px;
  border-bottom-left-radius: 12px;
  color: #526071;
}

.bubble.ai.error {
  border-color: #ffd5ce;
  background: #fffaf8;
  border-radius: 16px;
  color: #4f5e72;
  box-shadow: 0 8px 18px rgba(255, 91, 91, .08);
}

.bubble.confirmed-summary {
  white-space: pre-line;
}

.plan-card {
  background: white;
  border: 1px solid #f0e7de;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 10px 20px rgba(31, 36, 62, .04);
}

.intent-card,
.clarify-card,
.refine-card {
  width: min(100%, 620px);
  align-self: flex-start;
  background: white;
  border: 1px solid #f0e7de;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 10px 20px rgba(31, 36, 62, .04);
}

.clarify-card-waiting {
  position: relative;
  overflow: hidden;
}

.clarify-card-waiting::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(34, 201, 187, .10) 42%, rgba(255, 213, 108, .16) 50%, rgba(34, 201, 187, .10) 58%, transparent 100%);
  transform: translateX(-110%);
  animation: clarify-card-sweep 1.9s ease-in-out infinite;
  pointer-events: none;
}

.clarify-card-waiting > * {
  position: relative;
  z-index: 1;
}

.clarify-waiting-motion {
  width: fit-content;
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.clarify-waiting-motion span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(34, 201, 187, .08);
  animation: clarify-dot-bounce 1.05s ease-in-out infinite;
}

.clarify-waiting-motion span:nth-child(2) {
  animation-delay: .14s;
}

.clarify-waiting-motion span:nth-child(3) {
  animation-delay: .28s;
}

@keyframes clarify-card-sweep {
  0% {
    transform: translateX(-110%);
  }

  55%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes clarify-dot-bounce {
  0%,
  80%,
  100% {
    opacity: .38;
    transform: translateY(0) scale(.82);
  }

  38% {
    opacity: 1;
    transform: translateY(-4px) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clarify-card-waiting::before,
  .clarify-waiting-motion span {
    animation: none;
  }
}

.intent-card p,
.clarify-card p {
  margin: 8px 0 12px;
  color: #657083;
  font-weight: 780;
  line-height: 1.5;
}

.intent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.clarify-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  align-items: start;
  gap: 16px;
}

.clarify-head-main {
  min-width: 0;
}

.clarify-kicker,
.clarify-progress {
  display: block;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 900;
}

.clarify-kicker {
  margin-bottom: 5px;
}

.clarify-title {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.28;
}

.clarify-progress {
  width: 76px;
  min-height: 38px;
  border-radius: 999px;
  background: #f2fffc;
  border: 1px solid #c7f5ed;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  justify-self: end;
}

.clarify-options {
  display: grid;
  gap: 8px;
  margin: 10px 0;
}

.clarify-option {
  border: 1px solid #eef0f3;
  border-radius: 16px;
  background: #fbfcfd;
  padding: 11px 12px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.clarify-option:hover,
.clarify-option:focus-visible,
.clarify-custom-entry:hover,
.clarify-custom-entry:focus-visible {
  border-color: #c7f5ed;
  box-shadow: 0 10px 22px rgba(34, 201, 187, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.clarify-option.primary {
  background: #f2fffc;
  border-color: #c7f5ed;
}

.clarify-option.orange {
  background: #fff6ee;
  border-color: #ffdabb;
}

.clarify-option.purple {
  background: #f6f0ff;
  border-color: #e0d2ff;
}

.clarify-option-icon,
.clarify-custom-entry-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--mint-dark);
  font-size: 15px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(34, 201, 187, .18);
}

.clarify-option-main,
.clarify-custom-entry-main {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.clarify-option strong,
.clarify-option small,
.clarify-custom-entry strong,
.clarify-custom-entry small {
  display: block;
}

.clarify-option strong,
.clarify-custom-entry strong {
  color: #263247;
  font-size: 14px;
}

.clarify-option small,
.clarify-custom-entry small {
  margin-top: 4px;
  color: #6c7789;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 760;
}

.clarify-custom-entry {
  width: 100%;
  border: 1px dashed #c7f5ed;
  border-radius: 16px;
  background: #f7fffd;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.clarify-custom-panel {
  border-radius: 18px;
  background: #fbfcfd;
  border: 1px solid #e9f0ee;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.clarify-custom-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.clarify-custom-title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.clarify-custom-hint,
.clarify-custom-count {
  color: #7d8796;
  font-size: 12px;
  font-weight: 780;
}

.clarify-custom-count {
  white-space: nowrap;
}

.clarify-custom-textarea {
  width: 100%;
  min-height: 74px;
  border: 1px solid #e6eee9;
  border-radius: 14px;
  background: white;
  color: var(--ink);
  padding: 11px 12px;
  resize: vertical;
  font: inherit;
  font-weight: 760;
  line-height: 1.45;
}

.clarify-custom-textarea:focus {
  border-color: #9ee8dd;
  outline: 3px solid rgba(34, 201, 187, .14);
}

.clarify-custom-actions,
.clarify-footer,
.clarify-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.clarify-custom-cancel,
.clarify-custom-submit {
  border: 1px solid #e8eee9;
  border-radius: 999px;
  padding: 9px 14px;
  background: white;
  color: #5f6a79;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.clarify-custom-submit {
  background: var(--mint);
  border-color: var(--mint);
  color: white;
}

.clarify-custom-submit.disabled,
.clarify-custom-submit:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.clarify-picked {
  color: #7d8796;
  font-size: 12px;
  font-weight: 820;
}

.steps {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.step {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  color: #5c6573;
}

.process-card {
  width: min(100%, 680px);
  align-self: flex-start;
}

.process-step {
  align-items: flex-start;
  border-radius: 16px;
  border: 1px solid #eef0f3;
  background: #fbfcfd;
  padding: 10px;
}

.process-step.current {
  border-color: #c9f2ee;
  background: #f0fffc;
}

.process-main {
  min-width: 0;
  flex: 1;
  width: 100%;
  display: grid;
  gap: 5px;
}

.process-line {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.process-line b {
  min-width: 0;
  color: #263247;
  font-size: 14px;
  line-height: 1.25;
}

.process-line em {
  color: var(--mint-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 112px;
  text-align: right;
}

.process-line em span {
  color: #8993a2;
}

.process-line em strong {
  color: inherit;
  font: inherit;
}

.process-step.current .process-line em {
  color: var(--mint-dark);
}

.process-step.current .process-line em span {
  color: #5e6a7a;
}

.process-detail {
  color: #667386;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 760;
}

.process-points {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.process-points i {
  border-radius: 999px;
  background: #f3f7f7;
  color: #7b8594;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  padding: 4px 7px;
}

.dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mint-soft);
  display: grid;
  place-items: center;
  color: var(--mint-dark);
  font-size: 13px;
}

.dot.done {
  background: var(--mint);
  color: white;
}

.process-dot.done {
  background: var(--mint);
  color: white;
}

.process-dot.running,
.process-dot.retry {
  background: var(--yellow);
  color: #8a5c00;
}

.process-dot.failed {
  background: #ffe4dc;
  color: #d84a22;
}

.process-dot.skipped {
  background: #eef0f3;
  color: #8a93a0;
}

.refine-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.refine-head span {
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

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

.refine-option {
  min-height: 86px;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  background: #fbfcfd;
  padding: 10px;
  text-align: left;
}

.refine-option strong,
.refine-option small {
  display: block;
}

.refine-option strong {
  color: #263247;
  font-size: 14px;
}

.refine-option small {
  margin-top: 5px;
  color: #6c7789;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 760;
}

.refine-option.orange {
  background: #fff7ed;
  border-color: #ffe0bd;
}

.refine-option.purple {
  background: #f7f2ff;
  border-color: #e7dbff;
}

.chat-compose {
  padding: 10px 12px;
  background: white;
  border-top: 1px solid #f0e7de;
}

.preview-panel {
  display: flex;
  flex-direction: column;
  background: #f6fbfa;
}

.preview-tools {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid #e6eeee;
  background: white;
}

.preview-share-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mint-soft);
  border: 1px solid #c9f2ee;
  color: var(--mint-dark);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  max-width: min(64%, 240px);
  padding: 7px 10px;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.detail-share-button {
  justify-self: flex-start;
  color: var(--mint-dark);
}

.preview-share-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.preview-share-hint[hidden] {
  display: none;
}

.preview-share-hint:disabled {
  cursor: default;
  opacity: .72;
}

.preview-share-tip {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 4;
  width: max-content;
  max-width: min(260px, calc(100vw - 48px));
  border: 1px solid #c9f2ee;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(18, 34, 63, 0.12);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  opacity: 0;
  padding: 8px 12px;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.preview-share-tip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.preview-canvas {
  flex: 1;
  padding: 16px;
  display: grid;
  place-items: center;
  min-height: 0;
}

.preview-frame {
  aspect-ratio: 9 / 16;
  width: auto;
  max-width: min(100%, 360px);
  height: min(100%, 640px);
  min-height: 0;
  border: 0;
  border-radius: 26px;
  background: white;
  box-shadow: 0 22px 46px rgba(20, 22, 40, .22);
}

.game-card {
  width: min(100%, 320px);
  min-height: 520px;
  border-radius: 26px;
  background: #1a1d33;
  color: white;
  padding: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 22px 46px rgba(20, 22, 40, .28);
}

.game-title {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  margin: 14px 0 12px;
}

.game-box {
  flex: 1;
  min-height: 260px;
  border: 2px solid rgba(255, 213, 108, .7);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-weight: 900;
  text-align: center;
  padding: 16px;
}

.game-btn {
  margin-top: 14px;
  background: var(--yellow);
  color: #1a1d33;
  border-radius: 999px;
  text-align: center;
  padding: 12px;
  font-weight: 900;
}

.about-shell {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .86) 0%, rgba(243, 251, 244, .92) 100%);
}

.about-hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 380px;
  gap: 18px;
  align-items: stretch;
}

.about-hero-main {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #e6fbff 0%, #f4fbe6 58%, #fff0d9 100%);
  box-shadow: var(--shadow);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-hero-main::before,
.about-hero-main::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-main::before {
  width: 230px;
  height: 230px;
  right: -76px;
  top: -66px;
  background: rgba(34, 201, 187, .13);
}

.about-hero-main::after {
  width: 150px;
  height: 150px;
  left: 38%;
  bottom: -80px;
  background: rgba(139, 100, 246, .12);
}

.about-hero-main > * {
  position: relative;
  z-index: 1;
}

.about-hero h2 {
  max-width: 720px;
  margin: 18px 0;
  color: var(--ink);
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-hero h2 em {
  color: var(--mint-dark);
  font-style: normal;
}

.about-lead {
  max-width: 780px;
  margin: 0;
  color: #687082;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 680;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.principle {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .96);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(31, 36, 62, .05);
}

.principle b {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.principle span {
  display: block;
  margin-top: 6px;
  color: #6f7b8e;
  font-weight: 720;
  line-height: 1.55;
}

.about-side-card {
  background: white;
  border: 1px solid #edf0f3;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.about-side-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-side-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -48px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 213, 108, .28);
}

.about-side-card > * {
  position: relative;
  z-index: 1;
}

.about-mascot {
  width: 160px;
  height: 142px;
  font-size: 68px;
  margin-bottom: 20px;
}

.about-side-card h2,
.about-footer h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.about-side-card p,
.vision-card p,
.goal p,
.about-footer p {
  margin: 12px 0 0;
  color: #6f7b8e;
  font-weight: 700;
  line-height: 1.72;
}

.product-entry-card {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mini-program-entry,
.app-download-entry {
  border: 1px solid #eef0f3;
  border-radius: 22px;
  background: #f8fafb;
  padding: 14px;
}

.mini-program-entry {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #f2fffc 0%, #fffdf5 100%);
}

.mini-program-code {
  width: 128px;
  aspect-ratio: 1;
  border-radius: 22px;
  background: white;
  box-shadow: inset 0 0 0 1px #e0ece9;
  overflow: hidden;
}

.mini-program-code img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-program-entry small,
.app-download-entry small {
  color: #98a0ac;
  font-size: 12px;
  font-weight: 900;
}

.mini-program-entry b,
.app-download-entry b {
  display: block;
  margin-top: 5px;
  color: #303949;
  font-size: 18px;
  line-height: 1.28;
}

.mini-program-entry em,
.app-download-entry span {
  display: block;
  margin-top: 7px;
  color: #7a8493;
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.4;
}

.app-download-entry {
  background: linear-gradient(135deg, #fff8ef 0%, #f6f0ff 100%);
  display: grid;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.app-download-entry::after {
  content: "即将开放";
  display: block;
  width: fit-content;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(255, 139, 71, .22);
  color: #fb6c2a;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.download-body {
  background: #f7f8f4;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.download-page {
  flex: 1;
  min-height: 0;
  padding: max(24px, env(safe-area-inset-top)) 22px max(28px, env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
  min-width: 0;
}

.download-body .site-legal-footer {
  flex-shrink: 0;
}

.download-body .download-topbar .topbar-inner {
  max-width: 1120px;
}

.download-shell {
  width: min(820px, 100%);
  max-width: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid #e9eee9;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(31, 36, 62, .07);
  padding: clamp(22px, 4vw, 42px);
}

.download-hero {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.download-app-icon {
  width: 72px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: block;
  filter: drop-shadow(0 12px 20px rgba(16, 184, 170, .12));
}

.download-copy {
  min-width: 0;
  max-width: 100%;
}

.download-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--mint-dark);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
}

.download-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.2vw, 40px);
  font-weight: 820;
  line-height: 1.16;
  letter-spacing: 0;
  white-space: nowrap;
}

.download-copy p {
  margin: 0;
  max-width: 520px;
  color: #657083;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.55;
}

.download-intro {
  margin: 14px 0 0;
  max-width: 640px;
  min-width: 0;
  color: #667285;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.download-section-list {
  margin-top: 26px;
  display: grid;
  gap: 20px;
  min-width: 0;
}

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

.download-section-card {
  border: 1px solid #e7eceb;
  border-radius: 18px;
  background: #fff;
  padding: 20px;
  display: block;
  min-width: 0;
}

.download-platform-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.download-app-primary-card {
  border-color: #c8efea;
  background: linear-gradient(145deg, #f6fffd 0%, #ffffff 64%, #fffdf8 100%);
  box-shadow: 0 12px 28px rgba(31, 36, 62, .045);
}

.download-app-primary-card .download-card-button {
  width: min(100%, 260px);
  min-height: 44px;
  border-color: #a7e3dc;
  background: #eafbf8;
}

.download-mini-program-card {
  grid-column: 1 / -1;
  border-color: #edf0ed;
  background: #fff;
  box-shadow: none;
}

.download-mini-program-inner {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.download-mini-program-code {
  width: 92px;
  aspect-ratio: 1;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px #dcecea,
    0 10px 20px rgba(31, 36, 62, .045);
  overflow: hidden;
}

.download-mini-program-code img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-mini-program-copy small {
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 820;
}

.download-mini-program-copy b {
  margin-top: 6px;
  font-size: 16px;
}

.download-mini-program-copy em {
  display: block;
  margin-top: 6px;
  color: #6f7b8e;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
}

.download-section-card b {
  display: block;
  margin: 0;
  color: #303949;
  font-size: 20px;
  font-weight: 820;
  line-height: 1.2;
}

.download-section-card p {
  margin: 8px 0 0;
  color: #6f7b8e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.download-card-button {
  width: min(100%, 220px);
  max-width: 100%;
  margin-top: 14px;
  margin-inline: auto;
  min-height: 38px;
  border: 1px solid #bde9e4;
  border-radius: 999px;
  background: #f0fbf9;
  color: var(--mint-dark);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: none;
}

.download-button-icon {
  width: 24px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  fill: currentColor;
}

.download-card-button:hover {
  border-color: #9fe0d9;
  background: #e5f8f5;
}

body[data-language="en"] .download-card-button {
  width: min(100%, 260px);
  font-size: 12px;
}

body[data-download-platform="ios"] [data-platform-card="android"],
body[data-download-platform="android"] [data-platform-card="ios"] {
  display: none;
}

.download-card-button.is-disabled {
  background: #eef1f4;
  color: #8a94a3;
  box-shadow: none;
  cursor: not-allowed;
}

.download-guide-open {
  overflow: hidden;
}

.download-browser-guide {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.download-browser-guide[hidden] {
  display: none;
}

.download-browser-guide-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 11%, rgba(26, 183, 170, .18), transparent 28%),
    rgba(22, 28, 42, .48);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.download-browser-guide-panel {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top));
  right: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.download-browser-menu-cue {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 54px 4px 0 0;
  padding: 6px 7px 6px 13px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(20, 28, 39, .18);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, .16),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.download-browser-menu-cue::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 198, 184, .28), rgba(26, 198, 184, .08) 66%, transparent 67%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .3),
    0 0 0 8px rgba(255, 255, 255, .06),
    0 12px 24px rgba(26, 198, 184, .2);
  transform: translateY(-50%);
}

.download-browser-menu-cue::after {
  content: "";
  position: absolute;
  right: 27px;
  bottom: -26px;
  width: 1px;
  height: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .56), rgba(255, 255, 255, 0));
}

.download-browser-menu-label,
.download-browser-menu-focus,
.download-browser-menu-arrow {
  position: relative;
  z-index: 1;
}

.download-browser-menu-label {
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.download-browser-menu-focus {
  width: 42px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
}

.download-browser-menu-focus span {
  transform: translateY(-2px);
}

.download-browser-menu-arrow {
  position: absolute;
  pointer-events: none;
  right: -5px;
  top: -54px;
  width: 92px;
  height: 64px;
  color: rgba(207, 255, 249, .94);
  filter: drop-shadow(0 9px 16px rgba(18, 157, 147, .22));
}

.download-browser-menu-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.download-browser-menu-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-browser-guide-card {
  width: min(100%, 360px);
  margin-top: 24px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .12));
  box-shadow: 0 16px 42px rgba(15, 23, 42, .18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
}

.download-browser-guide-card h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 820;
  letter-spacing: 0;
}

.download-browser-guide-card p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.58;
}

.download-browser-guide-steps {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.download-browser-guide-steps div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 760;
}

.download-browser-guide-steps b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--mint);
  color: #073331;
  font-size: 14px;
  font-weight: 900;
}

.download-wechat-panel {
  border-color: #d9efeb;
  background: #fbfefd;
}

.download-wechat-actions {
  display: grid;
  gap: 10px;
}

.download-wechat-copy,
.download-wechat-open {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
}

.download-wechat-copy {
  border: 0;
  background: var(--mint);
  color: white;
}

.download-wechat-open {
  border: 1px solid #bde9e4;
  background: #f0fbf9;
  color: var(--mint-dark);
}

.about-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
}

.about-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
}

.about-section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.mission-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 16px;
  align-items: stretch;
}

.vision-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 12%, rgba(34, 201, 187, .18), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(255, 213, 108, .22), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f2fffb 58%, #fff6df 100%);
  border: 1px solid rgba(240, 227, 214, .92);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vision-card::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(34, 201, 187, .12);
}

.vision-card::after {
  content: "妙";
  position: absolute;
  right: 30px;
  bottom: 20px;
  color: rgba(15, 169, 157, .1);
  font-size: 92px;
  font-weight: 950;
}

.vision-card > * {
  position: relative;
  z-index: 1;
}

.quote-mark {
  width: 54px;
  height: 42px;
  border-radius: 18px;
  background: var(--yellow-soft);
  color: #d39213;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 900;
  line-height: .8;
  box-shadow: inset 0 0 0 1px rgba(255, 213, 108, .46);
}

.vision-card h2 {
  margin: 10px 0 16px;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.22;
}

.vision-card p {
  color: #657083;
}

.vision-card > span {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid #c9f2ee;
  background: rgba(223, 251, 247, .72);
  color: var(--mint-dark);
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
}

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

.goal {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  border: 1px solid #edf0f3;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.goal-index {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--mint);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.goal:nth-child(2) .goal-index {
  background: var(--orange);
}

.goal:nth-child(3) .goal-index {
  background: var(--purple);
}

.goal:nth-child(4) .goal-index {
  background: var(--yellow);
  color: #714b00;
}

.goal h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.service-info-section {
  display: grid;
  gap: 16px;
  border: 1px solid #e6eef0;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
  box-shadow: var(--shadow-soft);
  padding: 26px;
}

.service-info-heading {
  margin-top: 0;
}

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

.service-info-card {
  border: 1px solid #edf0f3;
  border-radius: 22px;
  background: white;
  padding: 18px;
}

.service-info-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.service-info-card dl,
.service-info-card ul {
  margin: 0;
}

.service-info-card dl {
  display: grid;
  gap: 12px;
}

.service-info-card dt {
  color: #8b95a5;
  font-size: 12px;
  font-weight: 900;
}

.service-info-card dd {
  margin: 4px 0 0;
  color: #303949;
  font-weight: 760;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.service-info-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: #566173;
  font-weight: 720;
  line-height: 1.65;
}

.service-info-card a {
  color: var(--mint-dark);
  font-weight: 900;
  text-decoration: none;
}

.service-contact-button {
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  color: white;
  padding: 9px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(34, 201, 187, .18);
}

.service-contact-button:hover {
  filter: brightness(.96);
}

.about-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 30px;
  background: linear-gradient(135deg, #e4fbff, #fff3d8);
  box-shadow: var(--shadow-soft);
  padding: 26px 30px;
}

.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  align-items: start;
}

.play-area {
  background:
    radial-gradient(circle at 18% 12%, rgba(34, 201, 187, .16), transparent 28%),
    linear-gradient(180deg, #f9fffc 0%, #eef8f4 100%);
  border: 1px solid rgba(225, 239, 235, .95);
  border-radius: 30px;
  padding: 24px;
  height: clamp(620px, calc(100svh - var(--nav-h) - 96px), 760px);
  min-height: clamp(620px, calc(100svh - var(--nav-h) - 96px), 760px);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.play-frame {
  aspect-ratio: 9 / 16;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 712px;
  min-height: 0;
  border: 0;
  border-radius: 22px;
  background: white;
  box-shadow: 0 22px 46px rgba(31, 36, 62, .12);
}

.detail-loading {
  color: var(--ink);
  font-weight: 900;
}

.detail-loading.error {
  color: var(--yellow);
}

.detail-side {
  background: white;
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 20px;
  max-height: clamp(620px, calc(100svh - var(--nav-h) - 96px), 760px);
  overflow: auto;
}

.detail-side h2 {
  font-size: 25px;
  line-height: 1.16;
  margin: 0 0 10px;
}

.detail-side p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 12px;
}

.author-row span {
  color: #8a93a3;
  font-weight: 700;
}

.tiny-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffe0c9;
  color: var(--ink);
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  font-weight: 900;
  overflow: hidden;
}

.tiny-avatar-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 6px;
}

.detail-stat {
  min-width: 92px;
  min-height: 48px;
  border-radius: 999px;
  background: #f2fffc;
  border: 1px solid #c7f5ed;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--mint-dark);
}

.detail-like {
  appearance: none;
  cursor: pointer;
  font: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.detail-like:hover,
.detail-like:focus-visible {
  border-color: #ffd4be;
  box-shadow: 0 12px 24px rgba(255, 128, 82, 0.16);
  transform: translateY(-1px);
  outline: none;
}

.detail-like.is-liked {
  background: #fff3ec;
  border-color: #ffd0ba;
  color: var(--orange);
}

.detail-stat-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.detail-stat-eye {
  background-image: url("game-item/icon-eye-teal.svg");
}

.detail-stat-like-icon {
  background-image: url("game-item/icon-unlike-coral.svg");
}

.detail-like.is-liked .detail-stat-like-icon {
  background-image: url("game-item/icon-like-coral.svg");
}

.detail-stat-copy {
  display: flex;
  align-items: center;
  line-height: 1;
}

.detail-stat b {
  display: block;
  color: var(--mint-dark);
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
}

.detail-stat small {
  color: #738094;
  font-size: 11px;
  font-weight: 900;
}

.detail-like.is-liked b {
  color: var(--orange);
}

.detail-stat-comment-icon {
  position: relative;
  border: 2px solid currentColor;
  border-radius: 8px;
  color: var(--mint-dark);
}

.detail-stat-comment-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -5px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 0 4px;
  background: inherit;
  transform: skewY(-18deg);
}

.detail-stat-share-icon {
  background: currentColor;
  color: var(--mint-dark);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%225%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Ccircle%20cx%3D%226%22%20cy%3D%2212%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%2219%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Cpath%20d%3D%22M8.7%2010.7L15.3%206.3M8.7%2013.3L15.3%2017.7%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%225%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Ccircle%20cx%3D%226%22%20cy%3D%2212%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%2219%22%20r%3D%223%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22/%3E%3Cpath%20d%3D%22M8.7%2010.7L15.3%206.3M8.7%2013.3L15.3%2017.7%22%20stroke%3D%22black%22%20stroke-width%3D%222.3%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E") center / contain no-repeat;
}

.share-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 12px;
}

.detail-create-button {
  min-height: 46px;
}

.detail-share-button {
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
}

.toast {
  min-height: 22px;
  color: var(--mint-dark);
  font-weight: 900;
}

.detail-action-bar {
  display: none;
}

.site-legal-footer {
  padding: 18px 28px 28px;
}

.site-legal-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px;
  border-top: 1px solid rgba(240, 227, 214, .9);
  color: #657083;
  font-weight: 760;
}

.site-legal-footer-top,
.site-legal-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-legal-footer-brand {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.site-legal-footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 0 0 auto;
}

.site-legal-footer-nav a,
.site-legal-footer-meta a {
  color: #657083;
  text-decoration: none;
}

.site-legal-footer-record {
  min-width: 180px;
  min-height: 18px;
  display: inline-block;
  text-align: right;
}

.site-legal-footer-nav a:hover,
.site-legal-footer-meta a:hover,
.site-legal-footer-brand:hover {
  color: var(--mint-dark);
}

.site-legal-footer-meta {
  margin-top: 10px;
  font-size: 13px;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
}

.legal-card {
  background: white;
  border: 1px solid rgba(240, 227, 214, .85);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 28px;
}

.legal-back-link {
  display: inline-flex;
  color: var(--mint-dark);
  font-weight: 900;
  text-decoration: none;
  margin-bottom: 18px;
}

.legal-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #edf1ef;
}

.legal-eyebrow {
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
}

.legal-title {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.15;
}

.legal-summary {
  color: #657083;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 760;
  margin: 0;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: #8a93a3;
  font-size: 13px;
  font-weight: 800;
}

.legal-meta span {
  border-radius: 999px;
  background: #f8fafb;
  border: 1px solid #edf1ef;
  padding: 8px 10px;
}

.legal-content {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.legal-section h2 {
  margin: 0 0 10px;
  color: #0f1d3a;
  font-size: 21px;
}

.legal-section p,
.legal-list {
  color: #657083;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 720;
}

.legal-section p {
  margin: 0 0 10px;
}

.legal-section p:last-child,
.legal-list {
  margin-bottom: 0;
}

.legal-list {
  margin-top: 0;
  padding-left: 20px;
}

.legal-list li + li {
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .hero-view.active,
  .workspace,
  .about-hero,
  .mission-wrap,
  .service-info-grid,
  .detail {
    grid-template-columns: 1fr;
  }

  .workspace {
    height: auto;
    max-height: none;
  }

  .hero-side {
    min-height: 0;
  }

  .preview-panel {
    min-height: clamp(620px, calc(100svh - var(--nav-h) - 28px), 720px);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    overflow: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --mobile-bottom-nav-h: 66px;
  }

  .page {
    padding: 14px 14px calc(var(--mobile-bottom-nav-h) + 22px + env(safe-area-inset-bottom));
  }

  .topbar {
    height: auto;
    backdrop-filter: none;
    background: rgba(255, 248, 239, .96);
  }

  .topbar-inner {
    min-height: 60px;
    padding: 10px 14px;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    font-size: 21px;
  }

  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    flex: none;
    justify-content: stretch;
    min-height: calc(54px + env(safe-area-inset-bottom));
    padding: 6px 18px calc(6px + env(safe-area-inset-bottom));
    border: 1px solid rgba(208, 231, 226, .92);
    border-width: 1px 0 0;
    border-radius: 18px 18px 0 0;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 -10px 24px rgba(31, 36, 62, .10);
    backdrop-filter: blur(18px);
    overflow: visible;
  }

  .main-nav a {
    position: relative;
    min-width: 0;
    min-height: 42px;
    padding: 4px 2px 8px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #657083;
    background: transparent;
    box-shadow: none;
    font-size: 12px;
    line-height: 1.1;
  }

  .main-nav a.active {
    color: var(--mint-dark);
    background: transparent;
    box-shadow: none;
  }

  .main-nav a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: var(--mint);
    transform: translateX(-50%);
  }

  .nav-actions {
    gap: 8px;
    margin-left: auto;
  }

  .auth-pill {
    max-width: 150px;
    min-height: 36px;
    padding: 8px 11px;
  }

  .language-switcher {
    padding: 2px;
  }

  .language-switcher button {
    min-width: 30px;
    height: 28px;
    font-size: 11px;
  }

  .nav-actions .light {
    display: none;
  }

  body[data-route="wall"] .topbar,
  #wall.active .section-title,
  #wall.active .gallery-hero {
    display: none;
  }

  body[data-route="wall"] .page {
    padding-top: 8px;
  }

  #wall.active .gallery-shell {
    padding-top: 10px;
  }

  .hero-card,
  .gallery-shell,
  .frame,
  .about-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-view.active {
    gap: 12px;
    min-height: 0;
  }

  .hero-card {
    min-height: 0;
    justify-content: flex-start;
    gap: 18px;
  }

  .hero-card .spark {
    display: none;
  }

  .hero-card h1,
  .about-hero h2 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.5;
  }

  .prompt-box {
    margin-top: 0;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    border: 2px solid rgba(34, 201, 187, .22);
    box-shadow: 0 18px 38px rgba(15, 29, 58, .12);
  }

  .prompt-input {
    min-height: 54px;
    border-radius: 20px;
    border: 2px solid rgba(34, 201, 187, .32);
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9), 0 10px 24px rgba(34, 201, 187, .08);
  }

  .prompt-input:focus-within {
    border-color: var(--mint);
    box-shadow: 0 0 0 4px rgba(34, 201, 187, .14), 0 12px 26px rgba(34, 201, 187, .12);
  }

  .prompt-input input {
    min-height: 36px;
    color: #17233f;
  }

  .prompt-input input::placeholder {
    color: #697386;
  }

  .quick-chip {
    min-height: 40px;
    border-radius: 18px;
    line-height: 1.2;
    white-space: normal;
  }

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

  .gallery-grid,
  .about-principles {
    grid-template-columns: 1fr;
  }

  .hero-side {
    display: none;
  }

  .featured-wall.is-collage {
    height: 310px;
    min-height: 310px;
  }

  .collage-tile {
    min-width: 96px;
    border-radius: 20px;
  }

  .collage-tile.tile-1 {
    left: 1%;
    top: 9%;
    width: 34%;
  }

  .collage-tile.tile-2 {
    left: 27%;
    top: 2%;
    width: 35%;
  }

  .collage-tile.tile-3 {
    right: 1%;
    top: 10%;
    width: 33%;
  }

  .collage-tile.tile-4 {
    left: 8%;
    bottom: 1%;
    width: 30%;
  }

  .collage-tile.tile-5 {
    left: 39%;
    bottom: -2%;
    width: 31%;
  }

  .collage-tile.tile-6 {
    right: 6%;
    bottom: 1%;
    width: 28%;
  }

  .work-card {
    gap: 14px;
    padding: 14px;
    border-radius: 24px;
  }

  .work-cover {
    flex-basis: 104px;
    width: 104px;
    border-radius: 20px;
    padding: 12px;
  }

  .work-title {
    font-size: 19px;
  }

  .work-subtitle,
  .work-desc {
    font-size: 14px;
  }

  .game-action-capsule {
    height: 32px;
    padding: 0 8px;
  }

  .game-action-number {
    font-size: 13px;
  }

  .create-mobile-tabs {
    position: sticky;
    top: 72px;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin: -4px 0 12px;
    padding: 4px;
    border: 1px solid rgba(217, 235, 230, .92);
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
  }

  .create-mobile-tabs button {
    min-width: 0;
    min-height: 42px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: #657083;
    font-weight: 900;
  }

  .create-mobile-tabs button.active {
    background: var(--mint);
    color: #fff;
    box-shadow: 0 10px 22px rgba(34, 201, 187, .22);
  }

  .workspace {
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .workspace [data-create-panel] {
    display: none;
  }

  .workspace [data-create-panel].is-active {
    display: flex;
  }

  .workspace .chat-panel.is-active,
  .workspace .preview-panel.is-active,
  .workspace .side-panel.is-active {
    min-height: calc(100svh - var(--mobile-bottom-nav-h) - 150px - env(safe-area-inset-bottom));
  }

  .workspace .side-panel.is-active {
    max-height: none;
  }

  .chat-body {
    padding: 14px;
  }

  .bubble,
  .intent-card,
  .clarify-card,
  .refine-card {
    max-width: 100%;
  }

  .chat-compose {
    position: sticky;
    bottom: calc(var(--mobile-bottom-nav-h) + env(safe-area-inset-bottom));
    z-index: 3;
    padding: 10px;
  }

  .compose-inner {
    border-radius: 20px;
    padding: 9px 9px 9px 14px;
  }

  .section-title,
  .gallery-hero,
  .about-section-heading,
  .about-footer,
  .site-legal-footer-top,
  .site-legal-footer-meta {
    display: grid;
  }

  .section-title {
    gap: 8px;
    margin-bottom: 12px;
  }

  .section-title h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .section-title p {
    font-size: 15px;
    line-height: 1.45;
  }

  .service-info-section {
    padding: 20px;
  }

  .site-legal-footer {
    padding: 10px 14px calc(var(--mobile-bottom-nav-h) + 24px + env(safe-area-inset-bottom));
  }

  .site-legal-footer-inner {
    padding: 16px 0;
  }

  .site-legal-footer-nav {
    justify-content: flex-start;
  }

  .legal-page {
    padding: 16px 14px 24px;
  }

  .legal-card {
    padding: 20px;
    border-radius: 24px;
  }

  .legal-title {
    font-size: 30px;
  }

  .download-body .download-topbar {
    display: none;
  }

  .download-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: max(10px, env(safe-area-inset-top)) 10px max(14px, env(safe-area-inset-bottom));
    display: block;
  }

  .download-shell {
    width: calc(100vw - 20px);
    width: calc(100dvw - 20px);
    max-width: calc(100vw - 20px);
    max-width: calc(100dvw - 20px);
    min-width: 0;
    margin-inline: auto;
    min-height: auto;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }

  .download-body .site-legal-footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-inline: 10px;
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .download-body .site-legal-footer-inner {
    width: 100%;
    max-width: calc(100vw - 20px);
    max-width: calc(100dvw - 20px);
  }

  .download-body .site-legal-footer-top,
  .download-body .site-legal-footer-meta {
    justify-content: center;
    text-align: center;
  }

  .download-body .site-legal-footer-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .download-body .site-legal-footer-record {
    text-align: center;
  }

  .download-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 8px;
    align-items: flex-start;
  }

  .download-app-icon {
    width: 38px;
  }

  .download-copy h1 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: clamp(20px, 5.4vw, 23px);
    line-height: 1.18;
  }

  body[data-language="en"] .download-copy h1 {
    font-size: clamp(18px, 5vw, 21px);
    line-height: 1.2;
  }

  .download-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  .download-intro {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
  }

  .download-section-list {
    margin-top: 16px;
    gap: 12px;
  }

  .download-platform-list {
    grid-template-columns: 1fr;
  }

  .download-section-card {
    padding: 14px;
    border-radius: 16px;
  }

  .download-platform-card {
    min-height: auto;
    gap: 14px;
  }

  .download-app-primary-card {
    padding: 16px;
  }

  .download-app-primary-card .download-card-button {
    width: min(100%, 260px);
    min-height: 42px;
  }

  .download-mini-program-inner {
    grid-template-columns: 78px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
    gap: 10px;
  }

  .download-mini-program-code {
    width: 78px;
    border-radius: 13px;
  }

  .download-section-card b {
    font-size: 17px;
  }

  .download-section-card p {
    font-size: 13px;
  }

  .download-card-button {
    width: min(100%, 210px);
    min-height: 36px;
    margin-top: 10px;
    overflow-wrap: anywhere;
  }

  body[data-language="en"] .download-card-button {
    width: min(100%, 250px);
  }

  .download-mini-program-copy small {
    font-size: 12px;
  }

  .download-mini-program-copy b {
    font-size: 15px;
  }

  .download-mini-program-copy em {
    margin-top: 5px;
    font-size: 12px;
  }

  .download-browser-guide-panel {
    top: calc(14px + env(safe-area-inset-top));
    right: 12px;
    left: 12px;
  }

  .download-browser-menu-cue {
    margin-top: 50px;
  }

  .download-browser-guide-card h2 {
    font-size: 23px;
  }

  .preview-panel {
    min-height: calc(100svh - var(--mobile-bottom-nav-h) - 150px - env(safe-area-inset-bottom));
  }

  .preview-canvas {
    padding: 14px;
  }

  .preview-frame {
    width: min(100%, 340px);
    height: auto;
    max-height: none;
  }

  .game-card {
    width: min(100%, 300px);
    min-height: 500px;
  }

  .play-area {
    height: auto;
    min-height: clamp(560px, calc(100svh - var(--nav-h) - 24px), 700px);
    padding: 14px;
    border-radius: 24px;
  }

  .play-frame {
    width: min(100%, 360px);
    height: auto;
    max-height: none;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .page {
    padding-inline: 10px;
  }

  .topbar-inner {
    padding-inline: 10px;
    gap: 8px;
  }

  .brand > span:last-child {
    max-width: 108px;
  }

  .auth-pill {
    max-width: 132px;
    font-size: 12px;
  }

  .main-nav {
    left: 0;
    right: 0;
    padding-inline: 14px;
    border-radius: 18px 18px 0 0;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero-card,
  .gallery-shell,
  .frame,
  .about-shell {
    padding: 14px;
    border-radius: 22px;
  }

  .hero-card {
    min-height: 0;
  }

  .hero-card h1,
  .about-hero h2 {
    font-size: 28px;
  }

  .tag {
    font-size: 12px;
  }

  .prompt-input {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .prompt-input input,
  .compose-inner textarea,
  .search-box input {
    font-size: 16px;
  }

  .prompt-input .btn {
    width: 100%;
    min-height: 46px;
  }

  .gallery-hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 72px;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    margin-bottom: 12px;
  }

  .gallery-hero h2 {
    font-size: 24px;
    line-height: 1.08;
  }

  .gallery-hero p {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .gallery-hero .mascot-big.small {
    width: 72px;
    height: 68px;
    border-radius: 24px;
    font-size: 34px;
  }

  .gallery-hero .mascot-big.small::before,
  .gallery-hero .mascot-big.small::after {
    width: 18px;
    height: 18px;
  }

  .gallery-hero .mascot-big.small::before {
    left: -7px;
    top: 27px;
  }

  .gallery-hero .mascot-big.small::after {
    right: -7px;
    top: 25px;
  }

  .search-box {
    border-radius: 20px;
  }

  .work-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 22px;
  }

  .work-cover {
    width: 86px;
    flex-basis: auto;
    border-radius: 18px;
  }

  .work-title {
    font-size: 17px;
  }

  .work-desc {
    -webkit-line-clamp: 1;
  }

  .game-action-row {
    gap: 7px;
  }

  .game-action-capsule {
    flex: 1 1 0;
  }

  .create-mobile-tabs {
    top: 66px;
    margin-inline: -2px;
  }

  .workspace .chat-panel.is-active,
  .workspace .preview-panel.is-active,
  .workspace .side-panel.is-active,
  .preview-panel {
    min-height: calc(100svh - var(--mobile-bottom-nav-h) - 136px - env(safe-area-inset-bottom));
  }

  .compose-inner {
    gap: 8px;
  }

  .compose-inner .btn {
    padding-inline: 13px;
  }

  .about-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .brand > span:last-child {
    display: none;
  }

  .auth-pill {
    max-width: 118px;
  }
}

@media (max-width: 760px) {
  body[data-route="detail"] .topbar {
    display: none;
  }

  body[data-route="detail"] .page {
    padding: 0 0 calc(78px + env(safe-area-inset-bottom));
  }

  body[data-route="detail"] .main-nav {
    display: none;
  }

  #detail.active {
    margin: 0;
    animation: none;
    transform: none;
  }

  #detail.active .detail {
    gap: 12px;
  }

  #detail.active .play-area {
    min-height: 0;
    height: auto;
    padding: 8px;
    border-width: 0 0 1px;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 14px 32px rgba(31, 36, 62, .10);
    background:
      radial-gradient(circle at 18% 10%, rgba(34, 201, 187, .14), transparent 26%),
      linear-gradient(180deg, #f8fffd 0%, #edf8f5 100%);
  }

  #detail.active .play-frame {
    width: min(calc(100vw - 16px), 430px);
    height: auto;
    max-height: calc(100svh - 78px);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(31, 36, 62, .16);
    touch-action: manipulation;
  }

  #detail.active .detail-loading {
    min-height: min(560px, calc(100svh - 88px));
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
  }

  #detail.active .detail-side {
    margin: 0 14px;
    max-height: none;
    overflow: visible;
    border-radius: 22px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
  }

  #detail.active .detail-side h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  #detail.active .detail-side p {
    font-size: 14px;
    line-height: 1.55;
  }

  #detail.active .author-row {
    margin: 12px 0 10px;
  }

  #detail.active .tiny-avatar {
    width: 40px;
    height: 40px;
  }

  #detail.active .detail-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 12px 0 8px;
  }

  #detail.active .detail-stat {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 8px 6px;
    gap: 5px;
    border-radius: 18px;
    flex-direction: column;
  }

  #detail.active .detail-stat b {
    font-size: 20px;
  }

  #detail.active .detail-stat-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  #detail.active .share-actions {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  #detail.active .detail-share-button {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    justify-self: end;
  }

  #detail.active .toast {
    min-height: 0;
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.4;
  }

  #detail.active .detail-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(208, 231, 226, .95);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 -12px 30px rgba(31, 36, 62, .12);
    backdrop-filter: blur(18px);
  }

  .detail-action-button,
  .detail-action-primary,
  .detail-action-secondary {
    min-width: 0;
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
  }

  .detail-action-button {
    background: #f3fffc;
    color: var(--mint-dark);
    border: 1px solid #c7f5ed;
  }

  .detail-action-button b {
    font-size: 16px;
  }

  .detail-action-like.is-liked {
    background: #fff3ec;
    border-color: #ffd0ba;
    color: var(--orange);
  }

  .detail-action-primary {
    background: var(--mint);
    color: white;
    box-shadow: 0 10px 22px rgba(34, 201, 187, .24);
    width: 100%;
  }

  .detail-action-secondary {
    background: #f3fffc;
    color: var(--mint-dark);
    border: 1px solid #b8eee7;
  }
}

.about-view .about-shell {
  display: grid;
  gap: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-view .about-hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
}

.about-view .about-hero-main {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid rgba(226, 235, 232, .96);
  border-radius: 26px;
  background:
    linear-gradient(120deg, rgba(246, 253, 251, .96) 0%, rgba(255, 253, 247, .98) 58%, rgba(255, 247, 232, .96) 100%);
  box-shadow: 0 18px 44px rgba(34, 46, 68, .08);
}

.about-view .about-hero-main::before,
.about-view .about-hero-main::after {
  content: none;
}

.about-view .about-eyebrow,
.about-view .about-section-label,
.about-view .about-focus-card > div > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(34, 201, 187, .22);
  border-radius: 999px;
  background: rgba(238, 252, 249, .78);
  color: #168d84;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.35;
}

.about-view .about-hero h1 {
  max-width: 820px;
  margin: 22px 0 18px;
  color: #111a2f;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-view .about-hero h1 em {
  color: #12a89d;
  font-style: normal;
}

.about-view .about-lead,
.about-view .about-section-heading p,
.about-view .about-flow-item p,
.about-view .service-info-card dd,
.about-view .service-info-card ul,
.about-view .about-footer p,
.about-view .about-focus-card p,
.about-view .about-focus-list em {
  color: #5f6b7b;
  font-weight: 450;
  line-height: 1.72;
}

.about-view .about-lead {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
}

.about-view .about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-view .about-hero-actions .btn {
  min-height: 44px;
  padding-inline: 18px;
  font-weight: 680;
}

.about-view .about-focus-card {
  display: grid;
  align-content: space-between;
  gap: 24px;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(226, 235, 232, .96);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(34, 46, 68, .07);
}

.about-view .about-app-mark {
  position: relative;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: var(--mint);
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(34, 201, 187, .22);
}

.about-view .about-app-mark::before,
.about-view .about-app-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.about-view .about-app-mark::before {
  width: 22px;
  height: 22px;
  left: -9px;
  top: 30px;
  background: var(--orange);
}

.about-view .about-app-mark::after {
  width: 20px;
  height: 20px;
  right: 8px;
  top: -8px;
  background: var(--yellow);
}

.about-view .about-focus-card h2 {
  margin: 14px 0 10px;
  color: #111a2f;
  font-size: 25px;
  font-weight: 620;
  line-height: 1.22;
  letter-spacing: 0;
}

.about-view .about-focus-card p {
  margin: 0;
}

.about-view .about-focus-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #edf1f0;
}

.about-view .about-focus-list li {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid #edf1f0;
}

.about-view .about-focus-list span {
  color: #15213a;
  font-size: 15px;
  font-weight: 600;
}

.about-view .about-focus-list em {
  font-size: 14px;
  font-style: normal;
}

.about-view .about-flow,
.about-view .service-info-section {
  display: grid;
  gap: 24px;
  padding: 30px 34px;
  border: 1px solid rgba(226, 235, 232, .96);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(34, 46, 68, .06);
}

.about-view .about-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin: 0;
}

.about-view .about-section-heading h2 {
  margin: 10px 0 0;
  color: #111a2f;
  font-size: 28px;
  font-weight: 620;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-view .about-section-heading p {
  max-width: 430px;
  margin: 0;
  font-size: 16px;
}

.about-view .about-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #edf1f0;
}

.about-view .about-flow-item {
  padding: 22px 22px 4px;
  border-left: 1px solid #edf1f0;
}

.about-view .about-flow-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.about-view .about-flow-item span {
  display: block;
  color: #13a99e;
  font-size: 13px;
  font-weight: 720;
  line-height: 1;
}

.about-view .about-flow-item h3 {
  margin: 12px 0 8px;
  color: #111a2f;
  font-size: 19px;
  font-weight: 620;
  line-height: 1.28;
}

.about-view .about-flow-item p {
  margin: 0;
  font-size: 15px;
}

.about-view .service-info-section {
  gap: 20px;
}

.about-view .service-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  border-top: 1px solid #edf1f0;
}

.about-view .service-info-card {
  padding: 23px 0;
  border: 0;
  border-bottom: 1px solid #edf1f0;
  border-radius: 0;
  background: transparent;
}

.about-view .service-info-card:nth-child(odd) {
  padding-right: 34px;
  border-right: 1px solid #edf1f0;
}

.about-view .service-info-card h3 {
  margin: 0 0 14px;
  color: #111a2f;
  font-size: 19px;
  font-weight: 620;
}

.about-view .service-info-card dt {
  color: #8792a1;
  font-size: 12px;
  font-weight: 600;
}

.about-view .service-info-card dd {
  margin-top: 5px;
}

.about-view .service-info-card ul {
  gap: 9px;
  padding-left: 19px;
}

.about-view .service-info-card a {
  color: #108f86;
  font-weight: 620;
}

.about-view .service-contact-button {
  min-height: 36px;
  padding: 8px 13px;
  font-weight: 650;
  box-shadow: none;
}

.about-view .about-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 30px;
  border: 1px solid rgba(234, 226, 213, .96);
  border-radius: 26px;
  background: #fffaf0;
  box-shadow: none;
}

.about-view .about-footer h2 {
  margin: 0;
  color: #111a2f;
  font-size: 27px;
  font-weight: 620;
  line-height: 1.2;
}

.about-view .about-footer p {
  max-width: 680px;
  margin: 8px 0 0;
}

@media (max-width: 1100px) {
  .about-view .about-hero {
    grid-template-columns: 1fr;
  }

  .about-view .about-hero-main,
  .about-view .about-focus-card {
    min-height: 0;
  }

  .about-view .about-focus-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .about-view .about-focus-list {
    grid-column: 1 / -1;
  }

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

  .about-view .about-flow-item:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .about-view .about-flow-item:nth-child(n + 3) {
    border-top: 1px solid #edf1f0;
  }
}

@media (max-width: 760px) {
  .about-view .about-shell {
    gap: 14px;
    padding: 0;
  }

  .about-view .about-hero {
    gap: 14px;
  }

  .about-view .about-hero-main,
  .about-view .about-focus-card,
  .about-view .about-flow,
  .about-view .service-info-section,
  .about-view .about-footer {
    padding: 22px;
    border-radius: 22px;
  }

  .about-view .about-hero h1 {
    margin: 18px 0 14px;
    font-size: 34px;
    line-height: 1.12;
  }

  .about-view .about-lead,
  .about-view .about-section-heading p {
    font-size: 15px;
  }

  .about-view .about-focus-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-view .about-app-mark {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    font-size: 31px;
  }

  .about-view .about-focus-card h2 {
    margin-top: 12px;
    font-size: 22px;
  }

  .about-view .about-focus-list li {
    padding: 12px 0;
  }

  .about-view .about-section-heading,
  .about-view .about-footer {
    display: grid;
    align-items: start;
  }

  .about-view .about-section-heading h2 {
    font-size: 25px;
  }

  .about-view .about-section-heading p {
    max-width: none;
  }

  .about-view .about-flow-grid,
  .about-view .service-info-grid {
    grid-template-columns: 1fr;
  }

  .about-view .about-flow-item,
  .about-view .about-flow-item:first-child {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid #edf1f0;
  }

  .about-view .about-flow-item:first-child {
    border-top: 0;
  }

  .about-view .service-info-card,
  .about-view .service-info-card:nth-child(odd) {
    padding: 20px 0;
    border-right: 0;
  }

  .about-view .about-footer h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .about-view .about-hero-main,
  .about-view .about-focus-card,
  .about-view .about-flow,
  .about-view .service-info-section,
  .about-view .about-footer {
    padding: 18px;
    border-radius: 20px;
  }

  .about-view .about-hero h1 {
    font-size: 29px;
  }

  .about-view .about-eyebrow,
  .about-view .about-section-label,
  .about-view .about-focus-card > div > span {
    font-size: 12px;
  }
}
