:root {
  --bg: #f8f4e9;
  --paper: #fffdf7;
  --ink: #172817;
  --muted: #6f7568;
  --green: #55764b;
  --green2: #7f9c72;
  --line: #e9e0cf;
  --orange: #ef7949;
  --gold: #f4a915;
  --danger: #c83e3e;
  --shadow: 0 12px 30px rgba(72, 62, 40, 0.1);
  font-family:
    -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  letter-spacing: 0;
  overflow-x: hidden;
}
button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}
button,
a {
  touch-action: manipulation;
}
.topbar {
  height: calc(76px + env(safe-area-inset-top, 0px));
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(248, 244, 233, 0.93);
  border-bottom: 1px solid rgba(85, 118, 75, 0.12);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.topbar nav {
  display: flex;
  gap: 6px;
  margin: auto;
}
.topbar nav button,
.categories button,
.task-filters button,
.login-tabs button {
  border: 0;
  background: transparent;
  padding: 10px 16px;
  color: #3f483b;
  cursor: pointer;
  border-radius: 6px;
}
.topbar nav button.active,
.categories button.active,
.task-filters button.active,
.login-tabs button.active {
  background: var(--green);
  color: white;
}
.mobile-only {
  display: none;
}
.account-chip {
  min-width: 72px;
  min-height: 38px;
  border: 1px solid #9ba59f;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
  border-radius: 5px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--ink);
}
.avatar-mini {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}
.topbar .account-chip .avatar-mini {
  display: none;
}
.mobile-menu-toggle { display: none; }
.page {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 90px;
}
.page.active {
  display: block;
}
.home-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.hero-copy {
  padding: 64px;
  z-index: 1;
}
.hero-copy h1 {
  font-size: 64px;
  line-height: 1;
  margin: 0 0 20px;
  color: #244824;
}
.hero-copy p {
  font-size: 28px;
  color: var(--green);
  margin: 0 0 34px;
}
.hero-visual {
  height: 520px;
  display: grid;
  place-items: end center;
  background: #dcebf0;
  position: relative;
  overflow: hidden;
}
.hero-visual:before {
  content: "";
  position: absolute;
  width: 75%;
  height: 38%;
  right: -8%;
  bottom: -5%;
  background: #eef0cf;
  border-radius: 50% 45% 0 0;
}
.hero-art {
  width: min(92%, 520px);
  height: 490px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.hero-actions,
.download-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.primary,
.secondary {
  min-height: 46px;
  border-radius: 6px;
  border: 1px solid var(--green);
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.primary {
  background: var(--green);
  color: white;
}
.secondary {
  background: transparent;
  color: var(--green);
}
.primary:hover {
  background: #46663e;
}
.secondary:hover {
  background: #edf3e9;
}
.disabled {
  opacity: 0.55;
  pointer-events: none;
}
.announcement {
  width: 100%;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 7px 18px rgba(72, 62, 40, 0.07);
  min-height: 58px;
  color: #433f35;
  text-align: left;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 650;
}
.announcement:before {
  content: "◖";
  color: var(--gold);
  margin-right: 12px;
}
.home-band {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 70px 10px 46px;
  border-bottom: 1px solid var(--line);
}
h1,
h2,
p {
  letter-spacing: 0;
}
.home-band h2,
.section-title h2,
.download-band h2 {
  font-size: 30px;
  margin: 0 0 10px;
}
.home-band p,
.section-title p,
.download-band p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
  line-height: 1.7;
}
.platforms {
  display: flex;
  gap: 8px;
}
.platforms span {
  padding: 8px 12px;
  background: #e8efe2;
  color: var(--green);
  border-radius: 5px;
}
.featured {
  padding: 48px 0;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-title button {
  border: 0;
  background: none;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
}
.featured-tools {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.featured-tool,
.tool-card {
  width: 100%;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  box-shadow: 0 7px 20px rgba(72, 62, 40, 0.07);
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.featured-tool:hover,
.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.featured-tool img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.featured-tool div {
  padding: 16px;
}
.featured-tool strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}
.featured-tool span {
  color: var(--muted);
}
.home-slot {
  margin: 0 0 36px;
}
.slot-ad {
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}
.slot-ad img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  background: white;
  display: block;
}
.slot-task {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
}
.slot-task h2 {
  margin: 0 0 8px;
}
.slot-task p {
  margin: 0;
  color: var(--muted);
}
.download-band {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: #e8efe2;
  border-top: 1px solid #d1ddca;
  border-bottom: 1px solid #d1ddca;
}
.download-band img {
  width: 110px;
  border-radius: 23px;
}

/* Editorial website home, based on the approved fashion-story concept. */
.desktop-home {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
}
.topbar {
  height: clamp(64px, 6.46vw, 99px);
  padding-right: max(45px, calc((100vw - 1400px) / 2));
  padding-left: max(45px, calc((100vw - 1400px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: #edf0eb;
}
.topbar .brand {
  color: #1d432e;
  font-size: 19px;
  padding: 0;
}
.topbar nav button.active {
  color: #173d29;
  background: transparent;
  box-shadow: inset 0 -2px #f0c84d;
}
.topbar nav .nav-recharge {
  min-width: 78px;
  color: #183c29;
  background: #f3d35c;
  box-shadow: none;
}
.editorial-hero {
  position: relative;
  width: min(1536px, 100%);
  min-height: clamp(494px, 50vw, 768px);
  margin: 0 auto;
  overflow: hidden;
  background: #eaf5fb;
}
.editorial-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-hero-copy {
  position: absolute;
  z-index: 2;
  top: 10.5%;
  left: max(50px, calc((100% - 1398px) / 2));
  width: min(520px, 38%);
  color: #173d29;
}
.editorial-hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(58px, 6.25vw, 96px);
  line-height: 0.95;
  font-weight: 850;
}
.editorial-hero-copy p {
  margin: 0 0 28px;
  font-size: clamp(17px, 1.55vw, 25px);
  line-height: 1.65;
  font-weight: 620;
}
.editorial-hero-copy small,
.download-copy small {
  display: block;
  margin-top: 14px;
  color: #40584a;
}
.gold-button {
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid #e4bd37;
  border-radius: 6px;
  color: #183c29;
  background: #f3d35c;
  font-weight: 750;
  cursor: pointer;
}
.hero-note {
  position: absolute;
  z-index: 2;
  top: 10%;
  right: 9%;
  color: #35523d;
  font: 500 19px/1.55 "Kaiti SC", "STKaiti", serif;
  transform: rotate(-5deg);
}
.hero-note-en {
  position: absolute;
  z-index: 2;
  bottom: 12%;
  left: 5%;
  color: #35523d;
  font: 500 17px/1.35 "Bradley Hand", "Comic Sans MS", cursive;
  transform: rotate(-6deg);
}
.editorial-announcement {
  display: flex;
  align-items: center;
  width: min(1400px, calc(100% - 90px));
  min-height: clamp(54px, 5.45vw, 84px);
  margin: 0 auto;
  padding: 0 8px;
  border: 0;
  border-bottom: 1px solid #edf0eb;
  box-shadow: none;
  background: #fff;
}
.editorial-announcement:before { display: none; }
.editorial-announcement strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: 24px;
  color: #173d29;
}
.editorial-announcement strong svg { width: 20px; height: 20px; fill: #f1c745; stroke: #f1c745; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.editorial-announcement span {
  color: #2d3d33;
  font-weight: 560;
}
.editorial-announcement time {
  margin-left: auto;
  color: #89918c;
  font-weight: 450;
}
.editorial-announcement em {
  margin-left: 80px;
  color: #173d29;
  font-style: normal;
  font-weight: 750;
}
.creative-showcase {
  display: grid;
  grid-template-columns: minmax(210px, 0.68fr) minmax(0, 2.32fr);
  gap: clamp(18px, 2.4vw, 38px);
  width: min(1400px, calc(100% - 80px));
  height: clamp(342px, 34.55vw, 531px);
  margin: 0 auto;
  padding: clamp(26px, 3.25vw, 50px) 0;
}
.showcase-copy {
  align-self: center;
}
.showcase-copy > span,
.story-copy > span,
.download-copy > span {
  color: #8a9d94;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
}
.showcase-copy h2,
.story-copy h2,
.download-copy h2 {
  margin: 16px 0 22px;
  color: #173d29;
  font-size: clamp(31px, 3.1vw, 52px);
  line-height: 1.16;
}
.showcase-copy h2 {
  white-space: nowrap;
}
.showcase-copy p,
.story-copy p,
.download-copy p {
  color: #526056;
  font-size: 16px;
  line-height: 1.9;
}
.showcase-copy button {
  margin-top: 20px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid #173d29;
  color: #173d29;
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}
.case-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  align-items: stretch;
  min-width: 0;
}
.case-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-right: 2px solid #fff;
  background: #fff;
  cursor: pointer;
}
.case-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.case-card:hover img { transform: scale(1.025); }
.editorial-download {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  height: clamp(311px, 31.4vw, 482px);
  min-height: 311px;
  overflow: hidden;
  background: #f2f3ee url("/site-assets/website-download-bg-v4.jpg") center / cover no-repeat;
}
.phone-stage {
  position: relative;
  align-self: stretch;
  min-height: 311px;
  background: transparent;
}
.phone {
  position: absolute;
  bottom: 0;
  width: clamp(132px, 10.94vw, 168px);
  height: clamp(287px, 23.76vw, 365px);
  padding: 6px;
  overflow: hidden;
  border: 5px solid #151a18;
  border-radius: 30px;
  background: #111;
  box-shadow: 0 25px 45px rgba(23, 44, 31, 0.23);
}
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.phone-front { left: 15.5%; z-index: 2; transform: rotate(-5deg); }
.phone-back { left: 50%; z-index: 1; transform: rotate(8deg) translateY(24px); }
.download-copy {
  position: relative;
  padding: clamp(28px, 3vw, 46px) clamp(38px, 7vw, 120px);
  padding-left: clamp(8px, 2vw, 31px);
}
.download-note,
.story-note {
  color: #66766a;
  font-family: "Bradley Hand", "Comic Sans MS", cursive;
  font-style: normal;
  line-height: 1.35;
  transform: rotate(-6deg);
}
.download-note {
  position: absolute;
  top: 88px;
  right: 2%;
  font-size: 18px;
}
.download-actions { margin-top: 28px; }
.store-button {
  display: grid;
  min-width: 145px;
  min-height: 64px;
  padding: 10px 20px;
  border: 1px solid #7b8a80;
  border-radius: 6px;
  color: #172817;
  text-decoration: none;
  background: rgba(255,255,255,.7);
}
.store-button b { font-size: 17px; }
.store-button span { color: #657067; font-size: 12px; }
.brand-story {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52% 48%;
  height: clamp(267px, 27vw, 415px);
  min-height: 267px;
  background: linear-gradient(90deg, #fbfaf6 0 52%, #eaf5fa 52% 100%);
}
.story-copy { align-self: center; padding: clamp(22px, 2.85vw, 44px) max(46px, calc((100vw - 1400px) / 2)); padding-right: 40px; }
.story-copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 2.35vw, 38px);
}
.story-copy p {
  margin: 3px 0;
  font-size: clamp(13px, .91vw, 14px);
  line-height: 1.5;
}
.story-copy em { display: block; margin-top: 10px; color: #45584a; font-style: normal; text-align: right; }
.story-image {
  position: relative;
  height: calc(100% - 28px);
  min-height: 0;
  margin: 14px 55px 14px 8px;
  overflow: hidden;
  border-radius: 48% 52% 45% 55% / 39% 44% 56% 61%;
}
.story-photo { width: 100%; height: 100%; object-fit: cover; }
.story-flower {
  position: absolute;
  z-index: 2;
  right: -32px;
  bottom: -24px;
  width: clamp(108px, 12vw, 184px);
  height: auto;
}
.story-note {
  position: absolute;
  top: 34px;
  right: 52px;
  color: #31584a;
  font-size: 17px;
  text-align: center;
}
.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
  width: min(1400px, calc(100% - 90px));
  min-height: clamp(57px, 5.75vw, 88px);
  margin: 0 auto;
  color: #415047;
}
.site-footer strong { color: #173d29; font-size: 18px; }
.site-footer nav { display: flex; gap: 8px; }
.site-footer button,
.site-footer a { padding: 8px; border: 0; color: #536158; background: transparent; text-decoration: none; cursor: pointer; }
.site-footer > div { display: flex; gap: 4px; }
#page-home { max-width: none; padding: 0; }
.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  min-height: 58px;
}
.page-heading h1 {
  font-size: 38px;
  margin: 0;
  color: #244824;
}
.page-heading p {
  color: var(--muted);
  margin: 7px 0 0;
}
.credits-badge {
  min-width: 86px;
  text-align: center;
  background: var(--paper);
  border: 1px solid white;
  box-shadow: var(--shadow);
  padding: 12px 17px;
  border-radius: 24px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 800;
}
.credits-badge:before {
  content: "BBQB";
  font-size: 10px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  vertical-align: middle;
}
.categories,
.task-filters,
.login-tabs {
  display: flex;
  background: var(--paper);
  padding: 6px;
  border: 1px solid var(--line);
  margin-bottom: 22px;
  overflow: auto;
  gap: 4px;
}
.categories button {
  min-width: 90px;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tool-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.tool-card-copy {
  padding: 17px;
  position: relative;
}
.tool-card h3 {
  margin: 0 0 7px;
  font-size: 20px;
}
.tool-card p {
  margin: 0;
  color: var(--muted);
  min-height: 44px;
  line-height: 1.45;
}
.tool-price {
  position: absolute;
  right: 14px;
  top: 14px;
  color: var(--green);
  font-weight: 700;
}
.tool-price.paid {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
  box-shadow: 0 2px 7px #b78b39;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
}
.round-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid white;
  background: var(--paper);
  box-shadow: var(--shadow);
  font-size: 24px;
  cursor: pointer;
  color: var(--green);
}
.tool-heading {
  justify-content: flex-start;
  gap: 16px;
}
.tool-heading .credits-badge {
  margin-left: auto;
}
.blocks {
  display: grid;
  gap: 14px;
}
.block {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: 0 6px 18px rgba(72, 62, 40, 0.06);
}
.block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.block-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.block-index {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 700;
}
.block h3 {
  margin: 0;
  font-size: 20px;
}
.block small {
  color: var(--orange);
  font-weight: 700;
}
.upload-zone {
  position: relative;
  overflow: hidden;
  border: 1px dashed #aebca5;
  background: #f5f7ef;
  padding: 24px;
  min-height: 130px;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
  color: var(--green);
}
.upload-zone input {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.upload-zone > span {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.upload-zone.has-files {
  border-style: solid;
  border-color: #7f9c72;
  background: #eef4e9;
}
.upload-zone strong {
  font-size: 18px;
}
.file-list {
  display: flex;
  gap: 10px;
  overflow: auto;
  margin-top: 12px;
}
.file-preview {
  flex: 0 0 112px;
  display: grid;
  gap: 5px;
  min-width: 0;
  position: relative;
}
.file-preview > button:first-child {
  width: 112px;
  height: 84px;
  padding: 0;
  border: 1px solid var(--line);
  background: #edf2e8;
  overflow: hidden;
  cursor: pointer;
}
.file-preview img,
.file-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.file-preview > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 12px;
}
.asset-reference {
  min-height: 30px;
  border: 1px solid #b8c7b0;
  color: var(--green);
  background: white;
  cursor: pointer;
}
.file-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #454b42;
  background: rgba(244, 242, 234, .9);
  font-size: 18px;
  cursor: pointer;
}
.file-icon {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--green);
  font-size: 25px;
}
.file-pill {
  min-width: 90px;
  max-width: 140px;
  background: #edf2e8;
  padding: 9px;
  color: #4a5945;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.single-image-preview {
  margin-top: 12px;
}
.single-image-preview button {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  padding: 0;
  background: #edf2e8;
  cursor: zoom-in;
}
.single-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.annotation-empty {
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px dashed #aebca5;
  background: #f5f7ef;
  color: var(--muted);
  text-align: center;
}
.annotation-editor canvas {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #edf2e8;
  border: 1px solid var(--line);
  cursor: crosshair;
  touch-action: none;
}
.annotation-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}
.annotation-toolbar label {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}
.annotation-size {
  width: 100%;
  accent-color: var(--green);
}
.annotation-editor p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.motion-picker {
  margin-top: 12px;
}
.motion-picker video {
  width: 100%;
  max-height: 360px;
  display: block;
  background: #111;
}
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}
.motion-range {
  width: 100%;
  accent-color: var(--green);
}
.motion-frame-status,
.picker-help {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.motion-duration-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.dual-submit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dual-submit button {
  width: 100%;
  min-height: 58px;
}
.selector-grid.submit-selector-grid {
  margin-bottom: 12px;
  grid-template-columns: 1fr;
}
.block-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.flow-steps {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: start;
  gap: 8px;
}
.flow-step {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 48px;
}
.flow-step span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--green);
  background: #e5eddf;
  font-weight: 900;
}
.flow-step.active span { color: white; background: var(--green); }
.flow-step.completed span { color: white; background: #78936d; }
.flow-step.completed strong { color: var(--green); }
.flow-step strong { font-size: 13px; white-space: nowrap; }
.flow-steps > i {
  height: 1px;
  margin-top: 15px;
  background: #c9d4c2;
}
.single-result-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82%, 430px);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 3px;
}
.single-result {
  aspect-ratio: 3/4;
  scroll-snap-align: center;
  border: 2px solid transparent;
  background: #edf2e8;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.single-result.selected {
  border-color: var(--green);
}
.single-result img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.field {
  display: grid;
  gap: 7px;
}
.field textarea,
.field input,
.field select,
.login-form input {
  border: 1px solid #d9d1c2;
  background: white;
  padding: 12px 13px;
  outline: none;
  width: 100%;
  border-radius: 5px;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.script-modal {
  width: min(920px, calc(100vw - 32px));
  height: min(760px, calc(100vh - 40px));
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf7;
}
.script-modal::backdrop { background: rgba(31, 39, 28, .58); }
.script-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.script-modal-head h2 { margin: 0; color: var(--green-dark); }
.script-modal-head .round-icon { width: 42px; height: 42px; }
#fullScreenScript {
  display: block;
  width: 100%;
  height: calc(100% - 62px);
  padding: 18px;
  border: 1px solid #d9d1c2;
  border-radius: 10px;
  outline: none;
  resize: none;
  font: inherit;
  line-height: 1.75;
}
#fullScreenScript:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(85, 118, 75, .1);
}
.field textarea:focus,
.field input:focus,
.field select:focus,
.login-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(85, 118, 75, 0.1);
}
.selector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.submit-block .primary {
  width: 100%;
  min-height: 58px;
  font-size: 19px;
}
.submit-block .status {
  margin: 12px 0 0;
  color: var(--muted);
}
.progress {
  height: 7px;
  background: #e7e4dc;
  margin-top: 12px;
  overflow: hidden;
}
.progress i {
  display: block;
  height: 100%;
  background: var(--green);
  transition: width .35s ease;
}
.task-list {
  display: grid;
  gap: 12px;
}
.task-card {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px;
  min-height: 112px;
}
.task-thumb {
  width: 90px;
  height: 82px;
  background: #e9eee4;
  object-fit: cover;
  cursor: pointer;
}
.task-thumb-button {
  width: 90px;
  height: 82px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #e9eee4;
  cursor: pointer;
}
.task-card h3 {
  margin: 0 0 5px;
  font-size: 18px;
}
.task-card p {
  margin: 2px 0;
  color: var(--muted);
}
.task-card .success {
  color: var(--green);
}
.task-card .failed {
  color: var(--danger);
}
.task-card .running {
  color: var(--orange);
}
.task-actions {
  display: flex;
  gap: 7px;
}
.task-actions button,
.task-actions a {
  width: 38px;
  height: 38px;
  border: 1px solid #cfd8c9;
  color: var(--green);
  background: white;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
}
.compact {
  min-height: 38px;
  padding: 0 14px;
}
.loading,
.empty {
  padding: 50px;
  text-align: center;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
}
.account-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
}
.profile-side {
  background: #e6edde;
  padding: 28px;
  text-align: center;
  align-self: start;
}
.profile-side img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--gold);
}
.profile-side h2 {
  margin: 12px 0 4px;
}
.profile-side p {
  color: var(--muted);
}
.wallet-number {
  font-size: 38px;
  color: var(--orange);
  font-weight: 800;
  margin: 22px 0 3px;
}
.account-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
}
.account-panel h2 {
  margin: 0 0 18px;
}
.account-rows {
  display: grid;
}
.account-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.account-row span {
  color: var(--muted);
}
.account-row button {
  border: 0;
  background: none;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
}
.account-utilities {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.danger {
  border-color: #dfa6a6;
  color: var(--danger);
}
.modal {
  width: min(460px, calc(100vw - 28px));
  border: 0;
  padding: 30px;
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}
.modal::backdrop,
.media-modal::backdrop {
  background: rgba(24, 29, 21, 0.52);
  backdrop-filter: blur(4px);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #e9e6dd;
  font-size: 24px;
  cursor: pointer;
}
.community-dialog h2 {
  margin: 0 44px 8px 0;
  color: var(--green-dark);
}
.community-dialog .dialog-intro {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
}
.community-dialog .dialog-form {
  display: grid;
  gap: 15px;
}
.community-dialog .dialog-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}
.community-dialog .dialog-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.community-dialog .recipient-card,
.community-dialog .invite-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}
.community-dialog .recipient-card strong,
.community-dialog .invite-code {
  display: block;
  color: var(--green-dark);
  font-size: 22px;
}
.community-dialog .recipient-card span,
.community-dialog .invite-stats {
  color: var(--muted);
}
.community-dialog .invite-link {
  margin-top: 10px;
  overflow-wrap: anywhere;
  color: var(--green);
}
.community-dialog .dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.community-dialog .dialog-actions .primary:only-child {
  grid-column: 1 / -1;
}
.community-dialog .form-message {
  min-height: 20px;
  margin: 0;
  color: var(--danger);
}
.invite-register-dialog {
  max-height: min(780px, calc(100dvh - 24px));
  overflow-y: auto;
}
.locked-inviter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
}
.locked-inviter strong { color: var(--green-dark); }
.invite-downloads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 18px;
  text-align: center;
}
.invite-downloads span { grid-column: 1 / -1; color: var(--muted); font-size: 13px; }
.invite-downloads a {
  padding: 11px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
}
.login-brand {
  text-align: center;
}
.login-brand img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.login-brand h2 {
  margin: 4px 0 6px;
}
.login-brand p {
  margin: 0 0 18px;
  color: var(--orange);
}
.login-tabs button {
  padding: 9px 10px;
  flex: 1;
}
.login-form {
  display: grid;
  gap: 14px;
}
.login-form label {
  display: grid;
  gap: 6px;
}
.code-row {
  display: flex;
  gap: 8px;
}
.code-row button {
  white-space: nowrap;
  border: 1px solid var(--green);
  background: white;
  color: var(--green);
  padding: 0 12px;
}
.consent {
  display: flex !important;
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
}
.consent input {
  width: auto !important;
  margin-top: 2px;
}
.consent a {
  color: var(--green);
}
.wide {
  width: 100%;
}
.form-message {
  min-height: 20px;
  color: var(--danger);
  text-align: center;
  margin: 0;
}
.media-modal {
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border: 0;
  background: #111;
  padding: 0;
}
.media-modal .light {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.media-modal #mediaViewer {
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.comparison-viewer {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.comparison-viewer::-webkit-scrollbar { display: none; }
.comparison-page {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
  overflow: hidden;
}
.comparison-page .zoom-stage { touch-action: pan-x pinch-zoom; }
.comparison-page > span {
  position: absolute;
  left: 50%;
  bottom: max(34px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  color: white;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
}
.before-after-viewer {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111;
  touch-action: none;
  cursor: ew-resize;
}
.before-after-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.before-after-layer.before {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}
.before-after-layer img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}
.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  transform: translateX(-1px);
  background: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,.55);
  pointer-events: none;
}
.before-after-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  color: #273226;
  font-size: 19px;
  font-weight: 800;
  box-shadow: 0 3px 12px rgba(0,0,0,.32);
}
.before-after-labels {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: max(34px, env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.before-after-labels span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.zoom-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
}
.zoom-stage:active { cursor: grabbing; }
.zoom-stage:not(.is-zoomed) { cursor: zoom-in; }
.media-modal .zoom-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 32px);
  max-height: calc(100% - 32px);
  object-fit: contain;
  transform-origin: center;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}
.zoom-controls {
  position: absolute;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(20, 20, 20, .72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}
.zoom-controls button {
  min-width: 42px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.zoom-controls button:hover { background: rgba(255, 255, 255, .14); }
.zoom-controls .zoom-level {
  min-width: 68px;
  font-size: 13px;
  font-weight: 700;
}
.media-modal img,
.media-modal video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 30px);
  opacity: 0;
  background: #233322;
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
  transition: 0.2s;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 820px) {
  .topbar {
    height: calc(64px + env(safe-area-inset-top, 0px));
    padding: 0 12px;
    padding-top: env(safe-area-inset-top, 0px);
    gap: 10px;
  }
  .brand strong {
    display: block;
    font-size: 16px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .topbar nav {
    position: absolute;
    top: 100%;
    right: 12px;
    display: none;
    width: 190px;
    height: auto;
    padding: 8px;
    border: 1px solid #dfe7e1;
    border-radius: 6px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 14px 32px rgba(23, 61, 41, .14);
  }
  .mobile-menu-open .topbar nav { display: grid; }
  .topbar nav button {
    display: block !important;
    width: 100%;
    padding: 11px 12px;
    font-size: 14px;
    text-align: left;
  }
  .topbar nav .nav-recharge { min-width: 0; }
  .mobile-only { display: none !important; }
  .account-chip {
    display: flex;
    margin-left: auto;
    min-width: 66px;
    max-width: 104px;
    min-height: 38px;
    overflow: hidden;
    padding: 6px 12px;
    justify-content: center;
  }
  .account-chip #accountLabel { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 10px 8px;
    border: 0;
    background: transparent;
    place-content: center;
    gap: 5px;
  }
  .mobile-menu-toggle span { display: block; width: 25px; height: 2px; background: #173d29; }
  .editorial-hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    background: #eaf5fb;
  }
  .editorial-hero > img {
    position: static;
    order: 2;
    height: 285px;
    object-position: 59% center;
  }
  .editorial-hero-copy {
    position: static;
    order: 1;
    width: 100%;
    padding: 30px 18px 24px;
  }
  .editorial-hero-copy h1 { margin-bottom: 14px; font-size: 42px; }
  .editorial-hero-copy p { max-width: 350px; margin-bottom: 18px; font-size: 14px; line-height: 1.6; }
  .editorial-hero-copy .hero-actions { max-width: 340px; gap: 7px; }
  .editorial-hero-copy .primary,
  .editorial-hero-copy .secondary,
  .editorial-hero-copy .gold-button { min-height: 40px; padding: 0 11px; font-size: 12px; }
  .hero-note { display: block; top: 260px; right: 16px; font-size: 12px; }
  .hero-note-en { bottom: 20px; left: 16px; font-size: 11px; }
  .editorial-announcement { width: 100%; min-height: 54px; margin: 0; padding: 0 16px; }
  .editorial-announcement time,
  .editorial-announcement em { display: none; }
  .editorial-announcement strong { margin-right: 12px; }
  .creative-showcase { display: block; width: calc(100% - 32px); height: auto; padding: 44px 0 48px; }
  .showcase-copy { margin-bottom: 30px; }
  .showcase-copy h2,
  .story-copy h2,
  .download-copy h2 { font-size: 32px; }
  .showcase-copy h2 { max-width: 340px; margin: 12px 0 16px; line-height: 1.18; }
  .showcase-copy p { margin: 0; font-size: 14px; line-height: 1.7; }
  .showcase-copy button { margin-top: 14px; }
  .case-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 168px;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .case-card { height: 403px; min-height: 403px; scroll-snap-align: start; }
  .editorial-download { grid-template-columns: 1fr; height: auto; }
  .phone-stage { min-height: 330px; }
  .phone { width: 140px; height: 304px; bottom: 0; border-width: 5px; border-radius: 26px; }
  .phone-front { left: 12%; }
  .phone-back { left: 45%; }
  .download-copy { padding: 42px 24px 48px; }
  .download-note { display: none; }
  .store-button { min-width: 148px; flex: 1; }
  .brand-story { grid-template-columns: 1fr; height: auto; background: #fbfaf6; }
  .story-copy { padding: 44px 24px 38px; }
  .story-image { height: 310px; min-height: 310px; margin: 0; border-radius: 0; }
  .story-note { top: 28px; right: 24px; font-size: 15px; }
  .story-flower { right: -22px; bottom: 20px; width: 112px; }
  .site-footer { grid-template-columns: 1fr; gap: 12px; width: calc(100% - 36px); padding: 24px 0; }
  .site-footer nav { flex-wrap: wrap; }
  .site-footer > div { flex-wrap: wrap; }
  .page {
    padding: 22px 14px 88px;
  }
  .home-hero {
    min-height: 590px;
    grid-template-columns: 1fr;
    align-content: start;
  }
  .hero-copy {
    padding: 34px 25px 16px;
  }
  .hero-copy h1 {
    font-size: 45px;
  }
  .hero-copy p {
    font-size: 22px;
  }
  .hero-visual {
    height: 350px;
  }
  .hero-art {
    height: 335px;
  }
  .home-band {
    display: block;
    padding: 45px 4px 34px;
  }
  .home-band > div,
  .section-title > div,
  .tool-card-copy {
    min-width: 0;
  }
  .platforms {
    margin-top: 18px;
  }
  .featured-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .download-band {
    grid-template-columns: 70px 1fr;
    padding: 22px;
    gap: 14px;
  }
  .download-band img {
    width: 70px;
  }
  .download-actions {
    grid-column: 1/-1;
  }
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .tool-card-copy {
    padding: 13px;
  }
  .tool-card h3 {
    font-size: 17px;
  }
  .tool-card p {
    font-size: 13px;
    min-height: 38px;
  }
  .page-heading h1 {
    font-size: 29px;
  }
  .selector-grid {
    grid-template-columns: 1fr;
  }
  .task-card {
    grid-template-columns: 68px 1fr;
  }
  .task-thumb {
    width: 68px;
    height: 68px;
  }
  .task-actions {
    grid-column: 2;
  }
  .account-shell {
    grid-template-columns: 1fr;
  }
  .profile-side {
    display: grid;
    grid-template-columns: 90px 1fr;
    text-align: left;
    align-items: center;
  }
  .profile-side img {
    width: 82px;
    height: 82px;
    grid-row: 1/4;
  }
  .profile-side h2,
  .profile-side p,
  .wallet-number {
    margin: 2px 0;
  }
  .wallet-number {
    font-size: 30px;
  }
  .account-row {
    grid-template-columns: 95px 1fr auto;
  }
  .page-heading.tool-heading {
    align-items: flex-start;
  }
  .tool-heading > div {
    flex: 1;
    min-width: 0;
  }
  .tool-heading h1 {
    font-size: 25px;
    white-space: nowrap;
  }
  .tool-heading .credits-badge {
    flex: 0 0 auto;
    font-size: 16px;
    padding: 8px;
  }
  .tool-heading .credits-badge:before {
    display: none;
  }
}
@media (min-width: 600px) and (max-width: 820px) {
  .showcase-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 42px;
    align-items: end;
  }
  .showcase-copy > span,
  .showcase-copy h2 { grid-column: 1; }
  .showcase-copy button { grid-column: 2; grid-row: 1 / 3; align-self: end; margin-bottom: 7px; }
}
@media (max-width: 430px) {
  .featured-tools,
  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-visual {
    height: 300px;
  }
  .hero-art {
    height: 288px;
  }
  .home-hero {
    min-height: 530px;
  }
  .featured-tool div {
    padding: 12px;
  }
  .featured-tool span {
    font-size: 13px;
  }
  .account-chip {
    padding-right: 9px;
  }
  .account-chip #accountLabel {
    display: inline;
  }
  .block {
    padding: 16px;
  }
  .categories button {
    min-width: 76px;
  }
  .task-filters button {
    padding: 9px 11px;
  }
  .page-heading {
    align-items: flex-start;
  }
  .download-band h2,
  .home-band h2,
  .section-title h2 {
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
/* Android uses the same authored canvas and interaction geometry as the iPhone app. */
.android-home,
.android-bottom { display: none; }
.android-shell body { background: #faf6e9; }
.android-shell .topbar { display: none; }
.android-shell main { width: 100%; max-width: none; padding: 0 0 88px; }
.android-shell #page-home { max-width: none; margin: 0; padding: 0; }
.android-shell .desktop-home { display: none !important; }
.android-shell .android-home { display: block; position: relative; width: 100%; height: calc(100vw * 1654 / 853); overflow: hidden; }
.android-shell .android-home > img { display: block; width: 100%; height: auto; }
.android-shell .home-hero,
.android-shell #page-home > .announcement,
.android-shell #page-home > .home-band,
.android-shell #page-home > .featured,
.android-shell #page-home > .home-slot,
.android-shell #page-home > .download-band { display: none !important; }
.android-hotspot { position: absolute; padding: 0; border: 0; background: transparent; box-shadow: none; }
.android-hotspot.profile { left: 75.0%; top: 8.0%; width: 21.3%; height: 5.1%; }
.android-hotspot.recharge { left: 6.8%; top: 29.3%; width: 13.4%; height: 10.0%; }
.android-hotspot.gift { left: 20.6%; top: 29.3%; width: 14.8%; height: 10.0%; }
.android-hotspot.invite { left: 35.6%; top: 29.3%; width: 15.5%; height: 10.0%; }
.android-hotspot.creation { left: 3.3%; top: 49.1%; width: 93.3%; height: 32.3%; }
.android-hotspot.tasks { left: 3.3%; top: 83.1%; width: 93.3%; height: 16.9%; }
.android-hotspot.tasks.slot-covered { pointer-events: none; }
.android-home-slot {
  position: absolute;
  z-index: 3;
  left: 3.3%;
  top: 83.1%;
  width: 93.3%;
  height: 16.1%;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 5.2vw;
  background: #fffdf7;
  box-shadow: 0 2.2vw 4.5vw rgba(86, 72, 43, .12);
}
.android-home-slot[hidden] { display: none; }
.android-home-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.android-balance { position: absolute; left: 8.4%; top: 21.1%; width: 32%; color: #566f48; font: 800 10.1vw/1 system-ui, sans-serif; letter-spacing: 0; }
.android-shell .android-bottom { display: grid; position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; height: min(102px, 22.3vw); grid-template-columns: repeat(5, 1fr); }
.android-shell .android-bottom img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; pointer-events: none; }
.android-shell .android-bottom button { position: relative; z-index: 1; border: 0; padding: 0; background: transparent; box-shadow: none; }
.android-shell .android-bottom #androidScan { transform: translateY(-18%); }
.android-shell .page:not(#page-home) { padding: 18px 14px 118px; }

/* Android app shell: mirrors the iPhone visual system while keeping tools server-driven. */
.android-shell,
.android-shell body,
.android-shell #app {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}
.android-shell body {
  background: #fbf8ee;
}
.android-shell main {
  min-height: 100vh;
  padding-bottom: calc(94px + env(safe-area-inset-bottom, 0px));
}
.android-shell .android-home {
  width: 100vw;
  max-width: 100%;
  height: auto;
  min-height: calc(100vw * 1654 / 852);
  overflow: visible;
}
.android-shell .android-home > img {
  width: 100vw;
  max-width: 100%;
}
.android-shell .android-bottom {
  width: 100vw;
  max-width: 100%;
  height: clamp(88px, 22.3vw, 102px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  filter: drop-shadow(0 -7px 18px rgba(74, 63, 39, .11));
}
.android-shell .android-bottom button::after {
  content: "";
  position: absolute;
  left: 34%;
  right: 34%;
  bottom: 10px;
  height: 3px;
  border-radius: 3px;
  background: transparent;
}
.android-shell .android-bottom button.active:not(#androidScan)::after {
  background: #64845a;
}
.android-shell .page:not(#page-home) {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: 100vh;
  margin: 0 auto;
  padding: max(24px, env(safe-area-inset-top, 0px)) 16px 126px;
}
.android-shell .page:not(#page-home)::before {
  content: "";
  position: fixed;
  z-index: -1;
  left: -80px;
  top: -90px;
  width: 235px;
  height: 210px;
  border-radius: 43% 57% 62% 38%;
  background: rgba(118, 149, 105, .22);
}
.android-shell #page-create::before {
  position: absolute;
  z-index: 0;
  left: 72px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(240, 190, 72, .78);
  box-shadow: 268px 20px 0 -1px rgba(240, 190, 72, .72);
}
.android-shell #page-create::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 26px;
  top: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(235, 145, 102, .48);
  border-top-color: transparent;
  border-radius: 50%;
}
.android-shell #page-create > * { position: relative; z-index: 1; }
.android-shell .page-heading {
  min-height: 64px;
  margin: 0 0 18px;
  align-items: center;
}
.android-shell .page-heading h1 {
  color: #466b3f;
  font-size: clamp(29px, 8vw, 36px);
  line-height: 1.08;
  font-weight: 900;
}
.android-shell .page-heading p {
  margin-top: 6px;
  font-size: 14px;
  color: #777266;
}
.android-shell #page-create .page-heading p { display: none; }
.android-shell #page-create {
  max-width: 430px;
  padding-top: 8px;
}
.android-shell #page-create .create-heading {
  justify-content: flex-start;
  gap: 6px;
  min-height: 44px;
  margin-bottom: 10px;
}
.android-shell #page-create .create-heading h1 {
  font-size: 19px;
  line-height: 1;
  white-space: nowrap;
}
.android-shell #page-create .create-back {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-width: 1px;
  font-size: 19px;
  box-shadow: 0 3px 9px rgba(80, 66, 38, .12);
}
.android-shell .create-heading-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.android-shell #page-create .credits-badge {
  min-width: 54px;
  height: 38px;
  padding: 3px 7px 3px 5px;
  font-size: 14px;
  border-radius: 19px;
  box-shadow: 0 3px 9px rgba(80, 66, 38, .12);
}
.android-shell #page-create .credits-badge::before {
  width: 21px;
  height: 21px;
  margin-right: 5px;
  font-size: 6px;
  box-shadow: inset 0 0 0 1px #ffd26b, 0 2px 5px rgba(170, 112, 18, .22);
}
.android-shell .create-task-shortcut {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 38px;
  padding: 0 7px;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 19px;
  color: #466b3f;
  background: rgba(255,253,247,.96);
  box-shadow: 0 3px 9px rgba(80, 66, 38, .12);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.android-shell .create-task-shortcut > span {
  position: relative;
  width: 15px;
  height: 17px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}
.android-shell .create-task-shortcut > span::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 4px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor;
}
.android-shell .credits-badge {
  min-width: 72px;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  color: #ed7b4b;
  font-size: 18px;
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 8px 20px rgba(80, 66, 38, .12);
}
.android-shell .credits-badge::before {
  width: 34px;
  height: 34px;
  margin-right: 7px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: inset 0 0 0 2px #ffd26b, 0 3px 8px rgba(170, 112, 18, .26);
}
.android-shell .categories,
.android-shell .task-filters,
.android-shell .login-tabs {
  width: 100%;
  gap: 2px;
  margin: 0 0 18px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 26px;
  background: rgba(255, 253, 247, .9);
  box-shadow: 0 7px 20px rgba(84, 68, 37, .08);
  scrollbar-width: none;
}
.android-shell #page-create .categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  height: 48px;
  margin-bottom: 10px;
  padding: 0 8px;
  border-radius: 20px;
}
.android-shell #page-create .categories button {
  position: relative;
  min-width: 0;
  min-height: 48px;
  padding: 0 4px;
  border-radius: 0;
  color: #282a25;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
}
.android-shell #page-create .categories button.active {
  color: #466b3f;
  background: transparent;
  font-weight: 800;
}
.android-shell #page-create .categories button.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 32px;
  height: 4px;
  border-radius: 4px;
  background: #7f9c72;
  transform: translateX(-50%);
}
.android-shell #page-create .categories button + button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 1px;
  height: 22px;
  background: #e9e0cf;
}
.android-shell .categories::-webkit-scrollbar,
.android-shell .task-filters::-webkit-scrollbar { display: none; }
.android-shell .categories button,
.android-shell .task-filters button,
.android-shell .login-tabs button {
  min-width: 76px;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 700;
}
.android-shell .tool-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 10px;
}
.android-shell .tool-card {
  border: 2px solid rgba(255,255,255,.96);
  border-radius: 16px;
  background: #fffdf7;
  box-shadow: 0 4px 12px rgba(80, 66, 38, .10);
  overflow: hidden;
}
.android-shell .tool-card:hover { transform: none; }
.android-shell .tool-card img {
  aspect-ratio: 1.72;
  border-radius: 14px 14px 0 0;
}
.android-shell .tool-card-copy {
  height: 50px;
  min-height: 50px;
  padding: 6px 10px;
}
.android-shell .tool-card h3 {
  margin: 0 0 4px;
  padding-right: 34px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.05;
  color: #25241f;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.android-shell .tool-card p {
  min-height: 0;
  padding-right: 36px;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.1;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.android-shell .tool-price { right: 9px; top: auto; bottom: 9px; }
.android-shell .tool-price.paid {
  width: 28px;
  height: 28px;
  border-width: 1px;
  box-shadow: inset 0 0 0 2px #ffd36c, 0 3px 8px rgba(173, 115, 22, .24);
}
.android-shell .tool-heading {
  gap: 12px;
  align-items: center;
}
.android-shell .tool-heading > div { min-width: 0; }
.android-shell .tool-heading h1 { font-size: clamp(25px, 7vw, 32px); }
.android-shell .tool-heading p { display: none; }
.android-shell .tool-heading .credits-badge::before { display: inline-grid; }
.android-shell .tool-heading .credits-badge.is-free::before { display: none; }
.android-shell .round-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border: 2px solid white;
  border-radius: 50%;
  color: #56774d;
  background: rgba(255,253,247,.94);
  font-size: 28px;
}
.android-shell .blocks { gap: 14px; }
.android-shell .block {
  min-width: 0;
  padding: 17px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 24px;
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 7px 18px rgba(84, 68, 37, .08);
}
.android-shell .block-head { margin-bottom: 14px; }
.android-shell .block-title { min-width: 0; gap: 9px; }
.android-shell .block-index {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: #57784e;
}
.android-shell .block h3 {
  font-size: 19px;
  line-height: 1.2;
  color: #292821;
}
.android-shell .upload-zone,
.android-shell .annotation-empty {
  min-height: 126px;
  padding: 18px;
  border-radius: 18px;
  border-color: #aec2a4;
  background: rgba(235, 240, 224, .7);
}
.android-shell .file-preview > button:first-child,
.android-shell .single-image-preview button,
.android-shell .annotation-editor canvas,
.android-shell .motion-picker video,
.android-shell .single-result {
  border-radius: 14px;
}
.android-shell .field textarea,
.android-shell .field input,
.android-shell .field select,
.android-shell .login-form input {
  border-radius: 13px;
  background: rgba(255,255,255,.9);
}
.android-shell .field textarea { min-height: 128px; }
.android-shell .selector-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}
.android-shell .submit-selector-grid {
  grid-template-columns: 1fr;
}
.android-shell .selector-grid .field { min-width: 0; font-size: 11px; }
.android-shell .selector-grid select {
  min-width: 0;
  padding: 10px 5px;
  font-size: 12px;
}
.android-shell .submit-block .primary,
.android-shell .dual-submit button {
  min-height: 58px;
  border-radius: 18px;
  font-weight: 800;
}
.android-shell .progress { border-radius: 9px; }
.android-shell .task-list,
.android-shell .embedded-tasks { gap: 10px; }
.android-shell #page-tasks {
  max-width: 560px;
  min-height: calc(100vh - 54px);
  margin-top: 54px;
  border-radius: 34px 34px 0 0;
  background: rgba(250, 247, 237, .98);
  box-shadow: 0 -10px 34px rgba(53, 55, 42, .14);
}
.android-shell #page-tasks::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 48px;
  height: 5px;
  border-radius: 5px;
  background: #bbb7ab;
  transform: translateX(-50%);
}
.android-shell #page-tasks .page-heading { padding-top: 10px; }
.android-shell .task-heading-actions { display: flex; align-items: center; gap: 8px; }
.android-shell .task-close {
  position: static;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: #5d6158;
  background: rgba(232,229,218,.9);
  font-size: 24px;
}
.android-shell .task-card {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 11px;
  min-height: 98px;
  padding: 12px;
  border: 2px solid white;
  border-radius: 21px;
  background: rgba(255,253,247,.94);
  box-shadow: 0 6px 16px rgba(84, 68, 37, .07);
}
.android-shell .task-thumb,
.android-shell .task-thumb-button { width: 72px; height: 72px; border-radius: 13px; }
.android-shell .task-card h3 { font-size: 16px; }
.android-shell .task-card p { font-size: 13px; }
.android-shell .task-actions { grid-column: auto; }
.android-shell .task-actions button,
.android-shell .task-actions a { width: 36px; height: 36px; }
.android-shell .loading,
.android-shell .empty {
  border: 2px solid white;
  border-radius: 22px;
  background: rgba(255,253,247,.9);
}
.android-shell .account-heading { margin-bottom: 4px; }
.android-shell .account-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.android-shell .profile-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 18px 16px;
  border: 0;
  border-radius: 24px;
  background: transparent;
}
.android-shell .avatar-editor { position: relative; display: block; cursor: pointer; }
.android-shell .avatar-editor img {
  width: 112px;
  height: 112px;
  border: 5px solid white;
  border-radius: 50%;
  object-fit: cover;
  background: #f6b52c;
  box-shadow: 0 8px 20px rgba(72,60,34,.15);
}
.android-shell .avatar-editor input { display: none; }
.android-shell .avatar-editor span {
  position: absolute;
  right: 2px;
  bottom: 7px;
  width: 34px;
  height: 34px;
  border: 3px solid white;
  border-radius: 50%;
  background: #5c8052;
  color: white;
  font-size: 0;
}
.android-shell .avatar-editor span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 13px;
  height: 9px;
  border: 2px solid white;
  border-radius: 3px;
}
.android-shell .avatar-editor span::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 13px;
  top: 12px;
  width: 5px;
  height: 5px;
  border: 2px solid white;
  border-radius: 50%;
}
.android-shell .wallet-caption { margin-top: 8px; font-weight: 800; }
.android-shell .wallet-number {
  margin: 3px 0 0;
  color: #ef7041;
  font-size: 42px;
  line-height: 1;
}
.android-shell .account-panel,
.android-shell .recharge-panel {
  padding: 10px 18px;
  border: 2px solid white;
  border-radius: 24px;
  background: rgba(255,253,247,.93);
  box-shadow: 0 7px 18px rgba(84,68,37,.08);
}
.android-shell .account-row {
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 8px;
  min-height: 54px;
  padding: 10px 0;
  font-size: 14px;
}
.android-shell .account-row span {
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.android-shell .account-row.static { grid-template-columns: 92px 1fr; }
.android-shell .account-row button { min-width: 40px; padding: 8px 0; }
.android-shell .recharge-panel { padding: 16px; }
.android-shell .recharge-panel h2 {
  margin: 0 0 12px;
  color: #46703f;
  font-size: 20px;
}
.android-shell .recharge-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.android-shell .recharge-options button {
  min-height: 76px;
  border: 1px solid #eadfca;
  border-radius: 15px;
  background: #fbf4de;
  color: #395b35;
}
.android-shell .recharge-options strong,
.android-shell .recharge-options span { display: block; }
.android-shell .recharge-options strong { font-size: 18px; }
.android-shell .recharge-options span { margin-top: 4px; color: #ee6e3f; font-weight: 800; }
.android-shell .community-actions,
.android-shell .account-utilities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; }
.android-shell .community-actions button,
.android-shell .account-utilities button {
  min-height: 50px;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 17px;
  background: rgba(255,253,247,.93);
  color: #517748;
  font-weight: 800;
  box-shadow: 0 5px 14px rgba(84,68,37,.06);
}
.android-shell .account-utilities .danger { color: #c83e3e; }
.android-shell .modal {
  width: calc(100vw - 28px);
  max-height: calc(100vh - 40px);
  padding: 24px 18px 22px;
  border-radius: 30px;
  background: #fffaf0;
}
.android-shell .login-brand img { width: 112px; height: 112px; }
.android-shell .login-brand h2 { color: #496e42; font-size: 27px; }
.android-shell .login-form .primary { min-height: 54px; border-radius: 17px; }
.android-shell .toast {
  bottom: calc(108px + env(safe-area-inset-bottom, 0px));
  max-width: calc(100vw - 36px);
  border-radius: 16px;
  text-align: center;
}
@media (max-width: 370px) {
  .android-shell .page:not(#page-home) { padding-left: 12px; padding-right: 12px; }
  .android-shell #page-create { padding-left: 16px; padding-right: 16px; }
  .android-shell .selector-grid { gap: 4px; }
}

/* Account and recharge: shared desktop/mobile visual system. */
#page-account { max-width: 1160px; margin: 0 auto; padding: 40px 24px 56px; }
#accountContent { color: #173f30; }
#accountContent .account-heading { margin: 0 0 26px; }
#accountContent .account-heading h1 { font-size: 38px; letter-spacing: -.8px; line-height: 1.2; margin: 0 0 10px; }
#accountContent .account-heading p { margin: 0; color: #6b8076; font-size: 16px; }
#accountContent .account-shell { display: grid; grid-template-columns: 272px minmax(0,1fr); gap: 20px; align-items: start; }
#accountContent .profile-side { display: flex; flex-direction: column; align-items: center; padding: 28px 24px 20px; background: #e6eddf; border: 0; border-radius: 22px; text-align: center; }
#accountContent .avatar-editor { position: relative; width: 108px; height: 108px; display: block; cursor: pointer; }
#accountContent .avatar-editor img { width: 108px; height: 108px; border: 4px solid #fffdf7; border-radius: 50%; object-fit: cover; }
#accountContent .avatar-editor input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
#accountContent .avatar-editor:focus-within { outline: 3px solid #6d9274; outline-offset: 4px; border-radius: 50%; }
#accountContent .avatar-editor span { display: grid; place-items: center; position: absolute; right: 0; bottom: 0; width: 32px; height: 32px; color: white; background: #6f8e75; border: 3px solid #fffdf7; border-radius: 50%; }
#accountContent .avatar-editor span::after,#accountContent .avatar-editor span::before { content: none; }
.account-icon { width: 22px; height: 22px; flex-shrink: 0; vertical-align: middle; }
#accountContent .avatar-editor .account-icon { width: 17px; height: 17px; }
#accountContent .profile-side h2 { font-size: 21px; margin: 16px 0 5px; }
#accountContent .profile-id { font-size: 13px; color: #6b8076; margin: 0; }
#accountContent .wallet-summary { border-top: 1px solid #cdd9c8; width: 100%; margin-top: 25px; padding-top: 21px; }
#accountContent .wallet-caption { font-size: 16px; font-weight: 600; margin: 0; }
#accountContent .wallet-number { font-size: clamp(38px,4vw,60px); font-weight: 750; color: #ed7845; letter-spacing: -1.8px; margin: 8px 0 2px; line-height: 1.15; font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }
#accountContent .wallet-summary p { font-size: 13px; margin: 0; color: #6b8076; }
#accountContent .wallet-mascot { width: 188px; height: 182px; object-fit: contain; border: 0; border-radius: 0; background: transparent; margin: 20px 0 0; box-shadow: none; }
#accountContent .account-main { min-width: 0; display: grid; gap: 16px; }
#accountContent .recharge-panel,#accountContent .account-panel { padding: 25px; border: 1px solid #eeeae1; background: #fffdf9; border-radius: 20px; box-shadow: none; }
#accountContent .recharge-panel h2,#accountContent .account-panel h2 { font-size: 25px; margin: 0 0 7px; line-height: 1.3; }
#accountContent .recharge-intro { color: #6b8076; margin: 0 0 20px; font-size: 15px; }
#accountContent .recharge-options { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
#accountContent .recharge-plan { display: flex; flex-direction: column; align-items: center; padding: 20px 14px 0; background: #fffdf9; border: 1px solid #dce3d9; border-radius: 15px; color: #173f30; cursor: pointer; transition: border-color .18s,box-shadow .18s,transform .18s; min-width: 0; }
#accountContent .recharge-plan:hover:not(:disabled) { border-color: #668971; box-shadow: 0 6px 20px #284d3610; transform: translateY(-2px); }
#accountContent button:focus-visible { outline: 3px solid #6d9274; outline-offset: 3px; }
#accountContent .recharge-plan:disabled { opacity: .55; cursor: not-allowed; }
#accountContent .plan-price { font-size: 45px; font-weight: 750; line-height: 1.1; letter-spacing: -1.5px; }
#accountContent .plan-price small { font-size: 26px; font-weight: 650; margin-right: 2px; }
#accountContent .plan-credits { font-size: 18px; margin-top: 8px; font-weight: 550; }
#accountContent .plan-bonus { color: #ed7845; font-size: 13px; margin-top: 5px; min-height: 20px; }
#accountContent .plan-action { display: flex; width: 100%; align-items: center; justify-content: center; gap: 8px; border-top: 1px solid #e3e7de; margin-top: 17px; padding: 15px 0; font-size: 15px; font-weight: 550; }
#accountContent .plan-action .icon-wechat { color: #16a331; width: 25px; height: 25px; }
#accountContent .plan-action .icon-arrow { width: 17px; height: 17px; margin-left: auto; }
#accountContent .recharge-loading { grid-column: 1/-1; color: #6b8076; padding: 30px 0; }
#accountContent .account-panel { padding-top: 20px; padding-bottom: 14px; }
#accountContent .account-panel h2 { font-size: 22px; margin-bottom: 7px; }
#accountContent .account-row { grid-template-columns: 120px minmax(0,1fr) auto; gap: 12px; min-height: 44px; padding: 9px 0; border-color: #eceee6; font-size: 14px; }
#accountContent .account-row:last-child { border-bottom: 0; }
#accountContent .account-row strong { font-weight: 550; }
#accountContent .account-row span { color: #63746b; overflow-wrap: anywhere; }
#accountContent .account-row button { display: flex; align-items: center; gap: 4px; font-size: 14px; padding: 5px 0 5px 10px; color: #d87044; font-weight: 500; }
#accountContent .account-row .account-icon { width: 14px; height: 14px; }
#accountContent .community-actions { display: grid; grid-template-columns: 1fr 1.12fr; gap: 14px; }
#accountContent .community-actions button { display: flex; align-items: center; gap: 14px; min-height: 65px; padding: 15px 20px; border: 0; border-radius: 16px; color: #173f30; background: #fbeadd; cursor: pointer; font-size: 16px; font-weight: 550; box-shadow: none; }
#accountContent .community-actions button+button { background: #e7efdf; }
#accountContent .community-actions button>.account-icon:first-child { width: 28px; height: 28px; color: #ed7845; }
#accountContent .community-actions button+button>.account-icon:first-child { color: #5e8760; }
#accountContent .community-actions button>.account-icon:last-child { margin-left: auto; width: 17px; height: 17px; }
#accountContent .account-utilities { display: flex; justify-content: center; gap: 0; margin: 6px 0 0; }
#accountContent .account-utilities button { padding: 3px 24px; border: 0; border-radius: 0; background: transparent; color: #748076; font-size: 13px; box-shadow: none; cursor: pointer; min-height: 30px; }
#accountContent .account-utilities button+button { border-left: 1px solid #d4dbcf; }
#accountContent .account-utilities .danger:hover { color: #c83e3e; }
.recharge-dialog { border-radius: 24px; text-align: center; padding: 30px; color: #173f30; max-height: calc(100dvh - 32px); overflow-y: auto; }
.recharge-dialog .payment-brand { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: #e7efdf; margin: 0 auto 16px; color: #16a331; }
.recharge-dialog .payment-brand svg { width: 31px; height: 31px; }
.recharge-dialog h2 { margin: 0 0 12px; font-size: 24px; }
.recharge-dialog [data-pay-info] { color: #63746b; font-size: 16px; }
.recharge-dialog [data-pay-qr] { border: 10px solid white; border-radius: 15px; box-shadow: 0 0 0 1px #e3e7de; }
.recharge-dialog [data-pay-status] { font-size: 14px; font-weight: 600; }
.recharge-dialog .dialog-intro { font-size: 12px; color: #788377; line-height: 1.8; margin: 18px 0 0; text-align: left; }
@media(max-width:760px) {
 #page-account { padding: 26px 16px 36px; }
 #accountContent .account-heading h1 { font-size: 30px; }
 #accountContent .account-heading p { font-size: 14px; }
 #accountContent .account-shell { grid-template-columns: minmax(0,1fr); gap: 16px; }
 #accountContent .profile-side { display: grid; grid-template-columns: 64px minmax(0,1fr) auto; column-gap: 14px; padding: 20px; text-align: left; position: relative; }
 #accountContent .avatar-editor,#accountContent .avatar-editor img { width: 64px; height: 64px; }
 #accountContent .avatar-editor { grid-column: 1; grid-row: 1/3; }
 #accountContent .avatar-editor span { width: 25px; height: 25px; border-width: 2px; }
 #accountContent .avatar-editor .account-icon { width: 14px; height: 14px; }
 #accountContent .profile-side h2 { grid-column: 2; margin: 0; font-size: 18px; align-self: end; }
 #accountContent .profile-id { grid-column: 2; margin-top: 5px; font-size: 12px; align-self: start; }
 #accountContent .wallet-summary { grid-column: 1/3; margin-top: 18px; padding-top: 16px; }
 #accountContent .wallet-number { font-size: 42px; margin: 5px 0; }
 #accountContent .wallet-caption { font-size: 13px; }
 #accountContent .wallet-summary p { font-size: 12px; }
 #accountContent .wallet-mascot { position: absolute; right: 17px; bottom: 15px; width: 110px; height: 110px; margin: 0; }
 #accountContent .recharge-panel,#accountContent .account-panel { padding: 20px 16px; border-radius: 18px; }
 #accountContent .recharge-panel h2 { font-size: 23px; }
 #accountContent .recharge-intro { font-size: 13px; margin-bottom: 18px; }
 #accountContent .recharge-options { gap: 8px; }
 #accountContent .recharge-plan { padding: 17px 7px 0; border-radius: 12px; }
 #accountContent .plan-price { font-size: 33px; }
 #accountContent .plan-price small { font-size: 20px; }
 #accountContent .plan-credits { font-size: 14px; white-space: nowrap; }
 #accountContent .plan-bonus { font-size: 11px; }
 #accountContent .plan-action { font-size: 12px; gap: 4px; padding: 12px 0; margin-top: 10px; }
 #accountContent .plan-action .icon-wechat { width: 18px; height: 18px; }
 #accountContent .plan-action .icon-arrow { display: none; }
 #accountContent .account-row { grid-template-columns: 80px minmax(0,1fr) auto; gap: 5px; font-size: 13px; }
 #accountContent .account-panel h2 { font-size: 21px; }
 #accountContent .community-actions { gap: 8px; }
 #accountContent .community-actions button { font-size: 13px; padding: 14px 10px; gap: 6px; min-height: 58px; }
 #accountContent .community-actions button>.account-icon:first-child { width: 20px; height: 20px; }
 #accountContent .community-actions button>.account-icon:last-child { display: none; }
}
@media(prefers-reduced-motion:reduce) { #accountContent .recharge-plan { transition: none; } }
body:has(#page-account.active) { background: #f8f5eb; }
body:has(#page-account.active) .topbar { height: 72px; padding-left: max(24px,calc((100vw - 1160px)/2)); padding-right: max(24px,calc((100vw - 1160px)/2)); background: #fff; }
@media(min-width:761px) {
 #page-account { max-width: 1208px; padding-top: 34px; }
 #accountContent .account-heading h1 { font-size: 44px; }
 #accountContent .account-heading p { font-size: 18px; }
 #accountContent .account-shell { grid-template-columns: 296px minmax(0,1fr); gap: 16px; }
 #accountContent .profile-side { padding: 30px 26px 24px; }
 #accountContent .avatar-editor,#accountContent .avatar-editor img { width: 136px; height: 136px; }
 #accountContent .profile-side h2 { font-size: 24px; }
 #accountContent .profile-id { font-size: 16px; }
 #accountContent .wallet-summary { margin-top: 28px; padding-top: 22px; }
 #accountContent .wallet-caption { font-size: 18px; }
 #accountContent .wallet-number { font-size: 66px; }
 #accountContent .wallet-summary p { font-size: 15px; }
 #accountContent .wallet-mascot { width: 222px; height: 224px; margin-top: 16px; }
 #accountContent .recharge-panel { padding: 24px 30px 22px; }
 #accountContent .recharge-panel h2 { font-size: 32px; }
 #accountContent .recharge-intro { font-size: 17px; }
 #accountContent .recharge-plan { padding-top: 21px; }
 #accountContent .plan-price { font-size: 64px; }
 #accountContent .plan-price small { font-size: 38px; }
 #accountContent .plan-credits { font-size: 21px; }
 #accountContent .plan-bonus { font-size: 15px; }
 #accountContent .plan-action { font-size: 17px; padding: 18px 0; }
 #accountContent .account-panel { padding: 22px 30px 14px; }
 #accountContent .account-panel h2 { font-size: 27px; }
 #accountContent .account-row { font-size: 16px; min-height: 44px; grid-template-columns: 30% minmax(0,1fr) auto; }
 #accountContent .account-row button { font-size: 16px; }
 #accountContent .community-actions button { min-height: 76px; font-size: 18px; padding: 16px 28px; }
 body:has(#page-account.active) .brand { font-size: 34px; }
}
#accountContent .account-row { line-height: 1.45; }
#accountContent .icon-people circle,#accountContent .icon-gift path:first-child { fill: currentColor; }
body:has(#page-account.active) .account-chip { border-radius: 24px; border-color: #e0e5dc; background: #f7f8f2; }
body:has(#page-account.active) .topbar nav button.active { color: #ed7845; border-bottom-color: #ed7845; }
@media(min-width:761px) { #accountContent .account-row button { padding-top: 2px; padding-bottom: 2px; line-height: 20px; } }
