/* Standard draft shell and shared mobile theme. */
:root {
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Microsoft YaHei",sans-serif;
  color:#111827;
  background:#fafbfc;
  font-size:16px;
  --red:#ed001b;
  --ink:#181e29;
  --muted:#7a7f8c;
  --line:#f0f1f4;
  --surface:#fff;
  --soft:#f6f6f8;
  --radius:16px;
  --button-radius:10px;
  --space:16px;
  --button-height:50px;
  --shadow:0 2px 12px #25274704;
  --safe-bottom:env(safe-area-inset-bottom,0px);
  --bottom-nav-height:60px;
  --bottom-nav-offset:10px;
  --bottom-clearance:calc(var(--bottom-nav-height) + var(--bottom-nav-offset) + var(--safe-bottom) + 24px);
}
* {
  box-sizing:border-box;
}
body {
  margin:0;
}
a {
  color:inherit;
  text-decoration:none;
}
button,input,select {
  font:inherit;
}
button,a {
  -webkit-tap-highlight-color:transparent;
}
button {
  cursor:pointer;
}
button:disabled {
  opacity:.5;
  cursor:default;
}
:focus-visible {
  outline:3px solid #ed001b55;
  outline-offset:3px;
}
[hidden] {
  display:none!important;
}
.app {
  max-width:480px;
  min-height:100dvh;
  margin-inline:auto;
  background:#fdfdfe;
}
.topbar {
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  margin:calc(8px + env(safe-area-inset-top,0px)) 7px 0; padding:7px 15px;
  min-height:51px; border:1px solid var(--line); border-radius:11px;
  box-shadow:0 2px 8px #25274703; background:var(--surface);
}
.brand {
  display:block;
  flex-shrink:0;
}
.logo-crop {
  display:block; width:58px; height:26px; overflow:hidden; position:relative;
}
.logo-crop img {
  position:absolute; width:73px; height:auto; max-width:none; inset-inline-start:-7px; top:-21px;
}
.brand small {
  display:block; color:#55565c; font-size:8px; line-height:1.4; letter-spacing:.2px;
}
.language-entry {
  display:flex; align-items:center; gap:8px; min-height:36px; font-size:12px;
}
.language-entry .ui-icon:first-child {
  width:18px; height:18px;
}
.language-entry .ui-icon:last-child {
  width:12px; height:12px;
}
.ui-icon {
  width:24px;
  height:24px;
  flex:none;
  vertical-align:middle;
}
.bottom {
  position:fixed; inset-inline-start:50%; transform:translateX(-50%); bottom:calc(var(--bottom-nav-offset) + var(--safe-bottom));
  display:grid; grid-template-columns:repeat(4,1fr); width:calc(100% - 28px); max-width:452px; padding:7px 6px;
  background:#fffffff8; border:1px solid #f3f3f6; border-radius:20px; box-shadow:0 3px 15px #25274705; z-index:10;
}
.bottom a {
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  color:#7d8191; font-size:11px; min-height:44px;
}
.bottom .ui-icon {
  width:23px; height:23px; stroke-width:1.8;
}
.bottom a.active {
  color:var(--red);
}
.bottom a.active[data-nav="home"] svg,.bottom a.active[data-nav="me"] svg {
  fill:currentColor;
}
.bottom a.active[data-nav="orders"] rect {
  fill:currentColor;
}
.bottom a.active[data-nav="orders"] path {
  stroke:white;
}
main {
  padding:0 20px var(--bottom-clearance);
  outline:none;
}
.page-heading {
  margin:26px 2px 18px;
}
h1 {
  font-size:26px; line-height:1.3; letter-spacing:0; margin:0 0 7px; font-weight:700;
}
h2 {
  font-size:21px;
  line-height:1.45;
  margin:0 0 12px;
}
h3 {
  font-size:16px; line-height:1.45; margin:0 0 8px;
}
p {
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
  margin:8px 0 14px;
}
.page-heading p {
  font-size:15px;
  margin:0;
}
.card {
  background:var(--surface); padding:14px; margin:10px 0; border:1px solid #f5f5f8;
  border-radius:13px; box-shadow:0 1px 8px #25274703;
}
.primary,.secondary,.quiet {
  display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:10px 14px; min-height:44px; border:0; border-radius:8px; font-weight:500; text-align:center; line-height:1.5;
}
.primary {
  background:var(--ink);
  color:white;
}
.secondary {
  color:#5f6571;
  background:var(--soft);
  font-size:14px;
}
.quiet {
  color:var(--muted);
  background:transparent;
  font-size:14px;
}
.full {
  width:100%;
}
.stack {
  display:grid;
  gap:10px;
  margin-block-start:16px;
}
.primary .ui-icon {
  width:20px;
  height:20px;
}
.hero {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  margin:18px 0 14px;
  padding:30px 16px;
  min-height:182px;
  background:linear-gradient(120deg,#f6f6f8,#fff 70%);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero h1 {
  position:relative;
  font-size:clamp(22px,6.2vw,29px);
  line-height:1.48;
  letter-spacing:-.7px;
}
.hero h1 span {
  color:var(--red);
}
.hero p {
  color:#222731;
  font-size:13px;
  margin:8px 0;
}
.hero-art {
  position:absolute;
  inset-block:0;
  inset-inline-end:-10px;
  width:53%;
  height:100%;
  z-index:-1;
  opacity:.94;
}
.hero h1,.hero p {
  max-width:76%;
  text-shadow:0 1px 5px #fff;
}
.home-action {
  background:var(--red);
}
.service-card h3 {
  font-size:16px;
}
.service-summary {
  display:flex;
  align-items:center;
  gap:14px;
  padding:8px 0;
}
.service-summary>.ui-icon {
  width:38px;
  height:38px;
  color:var(--red);
}
.service-summary p {
  margin:3px 0;
  font-size:13px;
}
.flow-hint {
  display:flex;
  justify-content:space-between;
  gap:8px;
  border-top:1px solid var(--line);
  padding-top:13px;
  font-size:12px;
  color:var(--muted);
}
.grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:10px;
  margin:14px 0;
}
.shortcut {
  display:flex;
  align-items:center;
  gap:10px;
  min-height:86px;
  background:white;
  padding:12px;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
}
.shortcut>.ui-icon {
  color:#858995;
  width:29px;
  height:29px;
}
.shortcut strong {
  display:block;
  font-size:15px;
}
.shortcut small {
  display:block;
  font-size:11px;
  color:var(--muted);
  margin-top:5px;
}
.shortcut .chevron {
  width:12px;
  height:16px;
  margin-inline-start:auto;
}
.section-title {
  font-size:17px;
  margin:24px 0 12px;
}
.label-row {
  display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:12px;
}
.label-row h3 {
  margin:0;
}
.label-row a {
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-size:12px;
  color:var(--muted);
}
.label-row .ui-icon {
  width:16px;
  height:16px;
}
.row-link {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0;
  min-height:48px;
  border-bottom:1px solid var(--line);
}
.row-link:last-child {
  border:0;
}
.row-link small {
  display:block;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
  margin-top:5px;
}
.row-link>span {
  min-width:0;
}
.disabled {
  color:var(--muted);
}
.tag {
  display:inline-block;
  flex-shrink:0;
  color:var(--muted);
  background:var(--soft);
  font-size:11px;
  padding:3px 6px;
  border-radius:5px;
}
.menu-card {
  padding:6px 17px; margin-top:14px;
}
.menu-row {
  display:flex; align-items:center; gap:19px; min-height:55px; padding:12px 0; border-bottom:1px solid var(--line);
}
.menu-row:last-child {
  border:0;
}
.menu-row>.ui-icon {
  color:#777d8a;
  width:26px;
  height:26px;
}
.menu-row>span {
  flex:1;
  font-size:16px;
}
.menu-row small {
  font-size:13px;
  color:var(--muted);
}
.menu-row .chevron {
  color:var(--ink);
  width:15px;
  height:18px;
}
.balance-card {
  display:flex; align-items:center; justify-content:space-between; gap:12px; padding:18px 20px; min-height:84px;
}
.balance-card p {
  margin:0 0 5px;
}
.balance-card strong {
  font-size:29px; overflow-wrap:anywhere; line-height:1.25;
}
.balance-card strong small {
  font-size:20px; color:var(--muted); font-weight:500;
}
.balance-card .secondary {
  min-height:38px;
  padding:8px 10px;
  flex-shrink:0;
}
.balance-card .ui-icon {
  width:14px;
  height:16px;
}
.notice {
  background:#f6f6f9; color:#797d87; padding:14px; font-size:13px; line-height:1.7;
  border-radius:10px; margin:14px 0; overflow-wrap:anywhere;
}
.notice strong {
  color:var(--ink);
}
.error {
  background:#fff1f3;
  color:#bc0a23;
}
.micro {
  font-size:12px;
  color:var(--muted);
  line-height:1.65;
}
.center {
  text-align:center;
}
.preline {
  white-space:pre-line;
}
.price {
  color:var(--red); font-size:42px; line-height:1.25; font-weight:700; margin:8px 0 10px; overflow-wrap:anywhere;
}
.price small {
  font-size:22px; color:#717783; font-weight:500;
}
dl {
  margin:0;
}
dl div {
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:11px 0;
  border-bottom:1px solid var(--line);
}
dl div:last-child {
  border:0;
}
dt {
  color:var(--muted);
  font-size:13px;
  flex-shrink:0;
}
dd {
  margin:0;
  text-align:end;
  font-size:14px;
  overflow-wrap:anywhere;
}
.quote-facts {
  background:var(--soft);
  border-radius:10px;
  padding:4px 12px;
}
.quote-facts dl div {
  border:0;
  padding:8px 0;
}
.address {
  font-size:12px; overflow-wrap:anywhere; word-break:break-all; line-height:1.6; color:#343946;
}
.address-box {
  display:flex; align-items:center; gap:8px; background:transparent; border-radius:8px;
}
.address-box .address {
  display:block; flex:1; min-width:0; padding:9px 8px; background:var(--soft); border-radius:7px;
  white-space:nowrap; overflow-x:auto; font-size:12px; line-height:1.6; word-break:normal;
}
.icon-button {
  display:grid; place-items:center; min-width:38px; min-height:38px; border:0; background:var(--soft); color:var(--muted); border-radius:7px;
}
.icon-button .ui-icon {
  width:21px;
  height:21px;
}
label {
  display:block;
  font-size:15px;
  font-weight:600;
  margin-bottom:10px;
}
input,select {
  width:100%;
  min-height:50px;
  padding:13px 12px;
  background:var(--soft);
  border:1px solid #e8e8ec;
  border-radius:10px;
  color:var(--ink);
  font-size:16px;
}
select {
  margin-bottom:12px;
}
.choices {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin:14px 0;
}
.choices label {
  display:flex;
  align-items:center;
  gap:7px;
  padding:12px 8px;
  margin:0;
  border:1px solid var(--line);
  border-radius:10px;
  font-size:13px;
  font-weight:500;
}
.choices input {
  width:17px;
  height:17px;
  min-height:0;
  accent-color:var(--red);
  flex:none;
}
.choices label:has(input:checked) {
  background:#fff5f6;
  border-color:#f9cfd5;
  color:var(--red);
}
.steps {
  display:flex;
  gap:8px;
  margin:14px 0 20px;
  color:#9397a2;
  font-size:11px;
}
.steps span {
  flex:1;
  border-top:2px solid var(--line);
  padding-top:7px;
}
.steps .on {
  border-color:var(--red);
  color:var(--red);
}
.success-icon,.status-icon {
  display:grid;
  place-items:center;
  width:72px;
  height:72px;
  border-radius:50%;
  margin:24px auto;
  font-size:34px;
  color:#148458;
  background:#eaf8f1;
}
.status-icon {
  color:#6e7380; background:#f4f5f7;
}
.spinner {
  width:26px;
  height:26px;
  border:3px solid #ed001b25;
  border-top-color:var(--red);
  border-radius:50%;
  animation:spin 1s linear infinite;
}
.timeline {
  padding:0;
  list-style:none;
  counter-reset:stage;
}
.timeline li {
  position:relative;
  padding:10px 0 10px 32px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}
.timeline li::before {
  counter-increment:stage;
  content:counter(stage);
  position:absolute;
  inset-inline-start:0;
  top:12px;
  display:grid;
  place-items:center;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--soft);
  font-size:12px;
}
.timeline li.done::before {
  content:'✓';
  color:#168757;
  background:#eaf8f1;
}
.timeline li.current::before {
  color:white;
  background:var(--red);
}
.order {
  display:block;
}
.order .label-row {
  margin-bottom:4px;
  font-size:12px;
  color:var(--muted);
}
.order-reference {
  color:var(--muted);
  font-size:11px;
  overflow-wrap:anywhere;
  margin:0 0 14px;
}
.order-columns {
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:0;
}
.order-columns>div+div {
  border-inline-start:1px solid #e4e5e9;
  padding-inline-start:16px;
}
.order-columns strong {
  font-size:14px; font-weight:600; white-space:nowrap;
}
.order-columns small {
  display:block;
  color:var(--muted);
  font-size:11px;
  margin-top:3px;
}
.state-good {
  color:#168757;
}
.state-bad {
  color:var(--red);
}
.state-wait {
  color:#637086;
}
.recharge-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.recharge-row h3 {
  font-size:16px;
  margin:0;
}
.recharge-row p {
  font-size:12px;
  margin:5px 0 0;
}
.recharge-value {
  text-align:end;
}
.recharge-value strong {
  color:#168757;
  font-size:16px;
  overflow-wrap:anywhere;
}
.empty {
  text-align:center;
  padding:32px 16px;
}
.empty>b,.empty>.ui-icon {
  display:block;
  width:40px;
  height:40px;
  margin:10px auto 18px;
  color:#aeb3bd;
  font-size:34px;
}
.retain {
  position:relative;
  background:#f7f7fa;
  border:0;
}
.retain .icon {
  float:inline-end;
  width:44px;
  height:44px;
  border-radius:11px;
}
.retain p {
  font-size:13px;
}
.retain .secondary {
  background:white;
  border:1px solid #e8e8ec;
}
.contact-card {
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 16px;
  background:#eff8fe;
  border:0;
}
.contact-card:nth-child(3n) {
  background:#fff9ed;
}
.contact-card:nth-child(4n) {
  background:#f5f1ff;
}
.contact-card>.ui-icon {
  width:42px;
  height:42px;
  color:#25a7dd;
}
.contact-card div {
  min-width:0;
  flex:1;
}
.contact-card h3 {
  margin:0 0 5px;
}
.contact-card p {
  font-size:12px;
  margin:3px 0 0;
}
.contact-card .chevron {
  width:20px;
  height:20px;
}
.language-option {
  display:flex; align-items:center; justify-content:space-between; width:100%; gap:12px; padding:13px 11px; min-height:63px; background:transparent; border:0; border-bottom:1px solid var(--line); text-align:start;
}
.language-option strong {
  font-size:18px; font-weight:500;
}
.language-option small {
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:5px;
}
.language-option.selected {
  background:#fff5f6;
  border:0;
  border-radius:10px;
}
.language-option .radio {
  width:23px;
  height:23px;
  border:1px solid #9a9fac;
  border-radius:50%;
  flex:none;
}
.language-option.selected .radio {
  border:2px solid var(--red);
  box-shadow:inset 0 0 0 3px white;
  background:var(--red);
}
.info-feature {
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.info-feature>.ui-icon {
  width:30px;
  height:30px;
  color:#777d8a;
  margin-top:3px;
}
.info-feature div {
  flex:1;
  min-width:0;
}
.info-feature p {
  margin-bottom:0;
}
.article-warning {
  background:#fff4f5;
}
.article-warning h3,.article-warning>.ui-icon {
  color:#c6142d;
}
.tutorial-card {
  margin:0;
  padding:14px;
}
.tutorial-card .ui-icon {
  color:#747b88;
}
.tutorial-card h3 {
  font-size:15px;
  margin-top:10px;
}
.tutorial-card p {
  font-size:12px;
}
.install-hero {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:12px;
  align-items:center;
  min-height:200px;
}
.install-hero h2 {
  font-size:27px;
}
.install-hero p {
  font-size:14px;
}
.phone-demo {
  border:5px solid #222833;
  border-radius:26px;
  min-height:207px;
  background:linear-gradient(145deg,#e1edff,#f9e6eb);
  transform:rotate(8deg);
  display:grid;
  place-content:center;
  gap:8px;
  text-align:center;
  box-shadow:3px 6px 12px #1111;
}
.phone-demo img {
  width:51px;
  height:51px;
  border-radius:12px;
  margin:auto;
}
.phone-demo span {
  font-size:12px;
}
.address-option {
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  background:white;
  border:1px solid var(--line);
  border-radius:10px;
  width:100%;
  text-align:start;
  margin-top:8px;
}
.address-option>span {
  flex:1;
  min-width:0;
}
.address-option small {
  display:block;
  color:var(--muted);
  font-size:11px;
}
.address-option .ui-icon {
  width:18px;
  height:18px;
  color:#b2b5bd;
}
.address-option.selected {
  background:var(--soft);
}
.address-option.selected .ui-icon {
  color:var(--ink);
}
.preview-notice {
  margin:7px 20px 0;
  font-size:10px;
  text-align:center;
  color:#94775d;
}
#network {
  margin:12px 20px;
  padding:12px;
  color:#805719;
  background:#fff4dd;
  border-radius:10px;
  font-size:13px;
}
#toast {
  position:fixed;
  bottom:calc(104px + var(--safe-bottom));
  inset-inline-start:50%;
  transform:translateX(-50%);
  width:max-content;
  max-width:86vw;
  padding:13px 18px;
  color:white;
  background:#242832;
  border-radius:12px;
  z-index:100;
  font-size:14px;
}
.error-box:empty {
  display:none;
}
.updated {
  font-size:11px;
  text-align:center;
  margin:16px 0;
}
dialog {
  width:calc(100% - 28px);
  max-width:450px;
  max-height:88dvh;
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  color:var(--ink);
  box-shadow:0 20px 80px #1113;
}
dialog::backdrop {
  background:#161a2466;
  backdrop-filter:blur(4px);
}
dialog .close {
  float:inline-end;
  width:34px;
  height:34px;
  font-size:24px;
  border:0;
  border-radius:50%;
  background:var(--soft);
}
.eyebrow {
  color:var(--red);
  font-size:12px;
}
.guide-step {
  display:flex;
  gap:14px;
  align-items:center;
  padding:16px 0;
  border-top:1px solid var(--line);
}
.guide-symbol {
  display:grid;
  place-items:center;
  width:60px;
  height:60px;
  flex:none;
  background:#fff1f3;
  color:var(--red);
  font-size:28px;
  border-radius:12px;
}
.guide-symbol svg {
  width:32px;
  height:32px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
}
.guide-step strong {
  font-size:15px;
}
.guide-step p,.guide-note {
  font-size:12px;
  line-height:1.7;
  margin:5px 0 0;
}
.copy-url {
  margin:14px 0;
}
.skeleton {
  height:250px;
  margin-top:24px;
  border-radius:var(--radius);
  background:linear-gradient(100deg,#f1f2f5 20%,#fff 50%,#f1f2f5 80%);
  background-size:200%;
  animation:shimmer 1.3s infinite;
}
html {
  scroll-padding-bottom:var(--bottom-clearance);
}
button,input,select {
  scroll-margin-bottom:var(--bottom-clearance);
}
@keyframes spin {
  to {
    transform:rotate(360deg);
  }
}
@keyframes shimmer {
  to {
    background-position:-200% 0;
  }
}
@media(max-width:359px) {
  main {
    padding-inline:14px;
  }
  .topbar {
    padding-inline:12px;
  }
  .shortcut {
    gap:7px;
    padding:10px;
  }
  .shortcut>.ui-icon {
    width:23px;
    height:23px;
  }
  .shortcut strong {
    font-size:13px;
  }
  .hero {
    padding-inline:12px;
  }
  .balance-card strong {
    font-size:25px;
  }
  .price {
    font-size:35px;
  }
  .menu-row {
    gap:12px;
  }
}
@media(prefers-reduced-motion:reduce) {
  * {
    animation:none!important;
    scroll-behavior:auto!important;
  }
}
/* Strict page bodies: proportions measured from each supplied page draft.
   The standard bars above intentionally supersede headers inside page JPGs. */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.draft-art{display:block;width:100%;height:100%}
.draft-banner{margin:18px 0 10px;aspect-ratio:548/280;border-radius:12px;overflow:hidden}
main[data-page="home"]{padding-inline:15px}
.market-card{padding:14px 15px 12px}.market-card h2{font-size:15px;margin:0 0 14px;font-weight:650}.market-summary{display:grid;grid-template-columns:1fr 1fr;gap:12px;align-items:center}.market-summary label{font-size:11px;margin:0;color:#1b2029;font-weight:500}.market-summary>div>strong{font-size:39px;font-weight:700;color:var(--red);line-height:1.25}.market-summary strong small{font-size:21px;color:#747b88;font-weight:600}.market-summary dl{padding-inline-start:14px;border-inline-start:1px solid #e4e5e9}.market-summary dl div{border:0;padding:5px 0;gap:8px}.market-summary dt,.market-summary dd{font-size:10px}.market-plot{height:91px;display:flex;gap:10px;margin-top:13px}.plot-axis{display:flex;flex-direction:column;justify-content:space-between;font-size:9px;color:var(--muted)}.plot-grid{flex:1;border-inline-start:1px solid #eff0f3;border-bottom:1px solid #eff0f3;display:grid;place-items:center;color:#9095a0;font-size:12px}.plot-times{display:flex;justify-content:space-between;padding-inline-start:22px;font-size:9px;color:#7b808b;margin-top:7px}
.draft-shortcuts{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:16px}.draft-shortcut{display:flex;align-items:center;gap:12px;background:white;box-shadow:var(--shadow);border:1px solid #fafafa;border-radius:10px;min-height:75px;padding:10px 12px}.draft-shortcut>.ui-icon{width:33px;height:33px;color:#858a96}.draft-shortcut>span{min-width:0;flex:1;position:relative}.draft-shortcut strong{display:block;font-size:15px;white-space:nowrap;font-weight:650}.draft-shortcut small{display:block;font-size:10px;color:var(--muted);margin-top:4px;white-space:nowrap}.draft-shortcut>.ui-icon:last-child{width:13px;height:18px;color:#111827}.draft-shortcut em{display:block;width:max-content;background:#ed001b;border-radius:12px;padding:1px 8px;color:white;font-size:9px;line-height:1.4;font-style:normal;margin:-2px 0 4px}
.text-control{border:0;background:none;padding:5px 0;display:inline-flex;align-items:center;gap:4px;font-size:11px;color:var(--muted);min-height:28px}.text-control .ui-icon{width:14px;height:14px}.text-control:disabled{opacity:.7}.red-text{color:var(--red)}.draft-subline{font-size:13px;margin:-11px 2px 19px;color:#777e89}.draft-address-card{padding:15px 15px 10px}.draft-address-card label{margin:0;font-size:16px}.address-note{display:flex;align-items:center;gap:7px;font-size:10px;margin:8px 0 3px}.address-note .ui-icon{width:13px;height:13px;flex:none;fill:#7c818e;color:white}.draft-address-input{display:flex;align-items:center;gap:7px}.draft-address-input input{min-width:0;flex:1;min-height:39px;padding:10px 8px;font-size:12px;border:1px solid #eeeef1;white-space:nowrap;background:var(--soft);border-radius:7px}.draft-address-input .text-control{min-width:45px;justify-content:center;color:#171b23;font-size:13px}.draft-quote-card{padding:15px}.draft-quote-card .label-row{margin-bottom:0}.draft-quote-card .quote-facts{padding:4px 10px}.draft-datum{display:flex;align-items:center;gap:12px;padding:7px 0;color:#7b818d;font-size:12px;min-height:32px}.draft-datum>.ui-icon{width:20px;height:20px;color:#7b818d}.draft-datum>span{flex:1}.draft-datum>strong{font-size:14px;font-weight:400;color:#1b2029;min-width:40%;text-align:start}.quote-balance{padding:15px}.quote-balance .label-row{margin-bottom:12px}.quote-balance p{font-size:11px;margin:0 0 2px}.quote-balance>strong{font-size:17px;font-weight:400}.draft-note{display:flex;align-items:flex-start;gap:12px}.draft-note>.ui-icon{width:23px;height:23px;flex:none;color:#7e8490;margin-top:1px}.draft-note>div{flex:1;min-width:0}.draft-note h3{font-size:14px;margin:0 0 4px;color:#141924}.draft-note p{font-size:12px;line-height:1.6;margin:0}.draft-note ol{padding-inline-start:16px;font-size:11px;margin:3px 0 0;line-height:1.8}
.logout-card{width:100%;display:flex;align-items:center;justify-content:center;gap:14px;min-height:53px;color:#747c89;font-size:16px;margin-top:15px}.logout-card:disabled{opacity:1;cursor:default}.logout-card .ui-icon{width:24px;height:24px}.account-card{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:91px;padding:18px 16px}.account-card h3{font-size:17px;margin:0 0 3px}.account-card p{font-size:12px;line-height:1.6;margin:0}.account-card>div:first-child{min-width:0;flex:1}.account-card>strong{font-size:19px}.account-value{display:flex;align-items:center;gap:7px;font-size:18px;flex:none}.account-value .icon-button{background:none;min-width:24px}.account-telegram{flex-direction:column;align-items:flex-end;gap:6px}.account-telegram>span{color:#747c88;font-size:17px}.account-telegram small{font-size:12px;color:#858a96}.account-telegram .ui-icon{width:15px;height:15px}.account-card+section.draft-note,main[data-page="account"]>.draft-note{margin-top:26px}
.addresses-card{padding:15px 13px}.draft-address-row{display:flex;align-items:center;gap:3px;border:1px solid #ececf0;border-radius:8px;margin-top:5px;min-height:44px;padding:5px 8px}.draft-address-row.selected{background:#f7f7f9;min-height:48px}.draft-address-row>button:first-child{display:flex;align-items:center;gap:12px;border:0;background:none;flex:1;min-width:0;padding:0;text-align:start}.selection-circle{width:19px;height:19px;border:1px solid #8a8e99;border-radius:50%;flex:none;display:grid;place-items:center}.selection-circle .ui-icon{width:14px;height:14px}.selected .selection-circle{background:#181e29;border-color:#181e29;color:white}.draft-address-row .address{white-space:nowrap;overflow-x:auto;font-size:11px;word-break:normal}.draft-address-row small{display:block;font-size:10px;color:#858995}.address-options{display:grid;place-items:center;border:0;background:none;min-width:24px;min-height:32px;color:#111827}.address-options .ui-icon{width:13px;height:17px}.other-address-card{padding:15px 13px}.other-address-card h3{margin-bottom:3px}.other-address-card h3 .ui-icon{width:15px;height:15px;color:#818691}.other-address-card p{font-size:11px;margin:0 0 12px}.other-address-card .primary{margin-top:12px}.other-address-card .draft-address-input{border:1px solid #e5e5e9;border-radius:7px;gap:0;padding-right:5px}.other-address-card input{background:white;border:0}.other-address-card .text-control{border-inline-start:1px solid #e2e3e7;min-height:22px}
.draft-order{display:block;line-height:1.4;padding:11px 13px 13px}.order-top{display:flex;align-items:center;gap:12px;margin-bottom:11px}.order-top>div{flex:1;min-width:0}.order-top time{font-size:12px;color:#717886}.order-top p{font-size:9px;color:#858b98;margin:2px 0 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.order-top>span{font-size:10px;white-space:nowrap}.order-top>.ui-icon{width:13px;height:17px}.draft-order .order-columns>div{min-width:0}.draft-order .order-columns>div+div{border-inline-start:1px solid #e5e6e9;padding-inline-start:12px}.draft-order .order-columns small{font-size:10px;margin-top:2px}.draft-recharge{padding:12px 13px}.draft-recharge>a{display:flex;align-items:center;gap:14px}.draft-recharge>a>div:first-child{flex:1;min-width:0}.draft-recharge h3{font-size:15px;margin:0 0 3px}.draft-recharge p{font-size:11px;margin:0;color:#858a95}.draft-recharge .recharge-value strong{font-size:14px;font-weight:650;white-space:nowrap}.draft-recharge .recharge-value p{font-size:12px;margin-top:8px}.draft-recharge>a>.ui-icon{width:13px;height:20px;color:#858a95}.recharge-tx{font-size:10px;color:#858a95;display:flex;align-items:center;gap:6px}.recharge-tx .ui-icon{width:12px;height:12px}.list-end{text-align:center;font-size:12px;color:#8b909b;margin:17px 0}
.free-heading>div{display:flex;align-items:center;justify-content:space-between;gap:10px}.free-heading h1{white-space:nowrap;margin:0}.free-heading .secondary{padding:6px 9px;font-size:10px;gap:4px;min-height:33px;white-space:nowrap}.free-heading .secondary .ui-icon{width:18px;height:18px}.free-heading .secondary .ui-icon:last-child{width:10px;height:13px}.free-heading p{margin-top:9px}.free-source-card{padding:17px 15px}.free-source-card h3{font-size:18px}.free-source-card>p{font-size:14px;margin:20px 0 4px}.free-copy{display:flex;gap:8px;align-items:stretch}.free-copy .address-box{min-width:0;flex:1}.free-copy .secondary{padding:7px 10px;min-height:38px;font-size:12px;gap:7px}.free-copy .secondary svg{width:20px;height:20px}.free-copy .address-box .address{font-size:11px;padding:10px 8px}.free-facts{border-top:1px solid #efeff3;margin-top:17px;padding-top:8px}.free-facts .draft-datum{min-height:34px;font-size:13px}.free-facts .draft-datum strong{min-width:auto;text-align:end;font-size:14px;color:#737987}.free-facts .draft-datum:first-child strong{color:#111827}
.draft-contact{display:flex;align-items:center;gap:16px;border-radius:11px;margin:9px 0;padding:15px 13px;min-height:97px}.contact-blue{background:#f0f8ff;--contact:#20afe2;--disc:#22b4e9}.contact-green{background:#f0faf6;--contact:#12513e;--disc:#dff6ee}.contact-gold{background:#fffaf0;--contact:#ed9a13;--disc:#fff2d6}.contact-purple{background:#f5f2ff;--contact:#6033d9;--disc:#e7ddfc}.contact-symbol{display:grid;place-items:center;width:53px;height:53px;border-radius:50%;background:var(--disc);color:var(--contact);flex:none}.contact-blue .contact-symbol{color:white}.contact-symbol svg{width:33px;height:33px}.draft-contact>div{flex:1;min-width:0}.draft-contact h3{font-size:17px;font-weight:650;margin:0 0 1px}.draft-contact strong{color:#747d8d;font-size:14px;font-weight:500}.draft-contact p{font-size:11px;line-height:1.55;margin:2px 0 0}.contact-go{width:35px;height:35px;flex:none;display:grid;place-items:center;border-radius:50%;background:#ffffff77;color:#2aace0}.contact-go svg{width:20px;height:20px}.contact-notice{min-height:70px;align-items:center}.contact-notice>.ui-icon{color:#17202c;width:29px;height:29px}
.about-intro{padding:16px}.about-intro .logo-crop{width:103px;height:41px}.about-intro .logo-crop img{width:128px;top:-38px;left:-12px}.about-intro p{font-size:14px;line-height:1.7;margin:8px 0 0}.about-intro .about-tagline{font-size:11px;margin-top:0}.about-feature{display:flex;gap:16px;align-items:center;padding:11px 13px;min-height:69px}.feature-disc{display:grid;place-items:center;border-radius:50%;width:49px;height:49px;flex:none}.feature-disc svg{width:27px;height:27px}.feature-red{background:#fff3f4;color:#f16670}.feature-blue{background:#eff8fc;color:#299fda}.feature-green{background:#ecf9f2;color:#27a779}.feature-purple{background:#f0edfe;color:#6950dd}.about-feature h3{font-size:17px;margin:0 0 3px}.about-feature p{font-size:12px;margin:0}.about-notice{align-items:center}.about-notice>.ui-icon{width:43px;height:34px;padding-right:12px;border-right:1px solid #d5d6de;color:#111827}.about-notice h3{font-size:14px;font-weight:500}.about-notice p{font-size:11px}
.language-card{padding:8px 10px}.language-card .language-option{padding:12px 10px;min-height:65px}.language-card .language-option small{font-size:12px;margin-top:3px}.language-card .language-option.selected{background:#fff6f7}.language-card+.draft-note{margin-top:17px;align-items:center}.language-card+.draft-note>.ui-icon{width:27px;height:27px}
.tutorial-feature{position:relative;aspect-ratio:650/220;overflow:hidden;border-radius:12px}.poster-action{position:absolute;inset:0;width:100%;height:100%;border:0;background:transparent;cursor:pointer}.video-duration{position:absolute;bottom:6px;right:6px;border-radius:5px;padding:2px 5px;font-size:11px;background:#4b4f57;color:white;pointer-events:none}.tutorial-label{margin:14px 0 7px}.tutorial-label h2{font-size:17px;margin:0}.tutorial-label>span{font-size:10px;color:#858b96}.tutorial-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}.tutorial-tile{padding:8px;background:white;border:1px solid #f4f4f7;box-shadow:var(--shadow);border-radius:10px;overflow:hidden}.tutorial-title{display:flex;gap:6px;align-items:center;min-height:39px;margin-bottom:5px}.tutorial-title>span{flex:none;display:grid;place-items:center;width:25px;height:25px;background:#f2f3f6;border-radius:50%;font-size:12px;color:#252b36}.tutorial-title>div{min-width:0}.tutorial-title h3{font-size:10px;font-weight:650;line-height:1.4;margin:0}.tutorial-title p{font-size:9px;line-height:1.4;margin:2px 0 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tutorial-poster{position:relative;aspect-ratio:300/112;overflow:hidden;border-radius:8px}.tutorial-poster .video-duration{font-size:9px;bottom:3px;right:3px}.tutorial-help{background:#f7f7fa;padding:13px 10px 9px}.tutorial-help>div{display:flex;align-items:center;gap:10px}.tutorial-help h3{font-size:16px;margin:0}.tutorial-help p{font-size:11px;margin:6px 0}.tutorial-help .primary{min-height:35px;font-size:12px;padding:7px}
/* Rebuilt add-to-home body; all measurements share the supplied 589px canvas. */
.ath-page { --ath-u: calc(min(100vw, 480px) / 589); width: calc(100% + 40px); margin-inline: -20px; padding-bottom: calc(46 * var(--ath-u)); }
.ath-title { padding: calc(20 * var(--ath-u)) 0 calc(31 * var(--ath-u)); text-align: center; }
.ath-title h1 { margin: 0; font-size: calc(22 * var(--ath-u)); line-height: calc(30 * var(--ath-u)); font-weight: 600; }
.ath-hero { display: grid; grid-template-columns: minmax(0, 282fr) minmax(0, 307fr); height: calc(471 * var(--ath-u)); overflow: hidden; background: linear-gradient(#fdfdfe, #f7f8fb); }
.ath-copy { grid-column: 1; grid-row: 1; z-index: 1; width: calc(332 * var(--ath-u)); padding: calc(34 * var(--ath-u)) 0 0 calc(32 * var(--ath-u)); }
.ath-copy h2 { margin: 0; font-size: calc(40 * var(--ath-u)); line-height: calc(46 * var(--ath-u)); font-weight: 700; }
.ath-copy > p { margin: calc(10 * var(--ath-u)) 0 0; font-size: calc(19 * var(--ath-u)); line-height: calc(27 * var(--ath-u)); white-space: nowrap; color: #777e89; }
.ath-phone { grid-column: 2; grid-row: 1; width: 100%; height: 100%; margin: 0; min-width: 0; }
.ath-phone .draft-art { display: block; width: 100%; height: 100%; }
.ath-features { display: grid; gap: calc(16 * var(--ath-u)); list-style: none; padding: 0; margin: calc(15 * var(--ath-u)) 0 0; }
.ath-features li { display: flex; align-items: center; gap: calc(20 * var(--ath-u)); margin: 0; padding: 0; height: calc(58 * var(--ath-u)); }
.ath-feature-icon { display: grid; place-items: center; flex: none; width: calc(58 * var(--ath-u)); height: calc(58 * var(--ath-u)); background: white; color: #757e89; border-radius: 50%; box-shadow: 0 2px 7px #11111109; }
.ath-feature-icon .ui-icon { width: calc(34 * var(--ath-u)); height: calc(34 * var(--ath-u)); }
.ath-features li:first-child .ui-icon { fill: currentColor; stroke-width: 1; }
.ath-features li:last-child .ui-icon path:first-child { fill: currentColor; }
.ath-features li:last-child .ui-icon path:last-child { stroke: white; }
.ath-features h3 { margin: 0; font-size: calc(22 * var(--ath-u)); line-height: calc(29 * var(--ath-u)); font-weight: 600; }
.ath-features p { margin: calc(3 * var(--ath-u)) 0 0; font-size: calc(17 * var(--ath-u)); line-height: calc(24 * var(--ath-u)); white-space: nowrap; color: #858b96; }
.ath-guide { width: calc(543 * var(--ath-u)); margin: 0 auto; padding: calc(25 * var(--ath-u)) calc(14 * var(--ath-u)) calc(17 * var(--ath-u)); border-radius: calc(22 * var(--ath-u)); background: white; box-shadow: 0 2px 9px #25274703; }
.ath-guide > h2 { margin: 0 calc(3 * var(--ath-u)); padding-inline-start: calc(13 * var(--ath-u)); border-inline-start: calc(5 * var(--ath-u)) solid var(--red); font-size: calc(20 * var(--ath-u)); line-height: calc(28 * var(--ath-u)); font-weight: 700; }
.ath-guide > h2 button { display: block; border: 0; padding: 0; margin: 0; background: transparent; color: inherit; font: inherit; text-align: start; cursor: pointer; }
.ath-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: calc(10 * var(--ath-u)); margin: calc(15 * var(--ath-u)) 0 0; padding: 0; list-style: none; }
.ath-steps li,.ath-steps figure { margin: 0; padding: 0; min-width: 0; }
.ath-steps .draft-art { width: 100%; height: auto; aspect-ratio: 165 / 161; border-radius: calc(14 * var(--ath-u)); }
.ath-steps figcaption { min-height: calc(48 * var(--ath-u)); margin-top: calc(13 * var(--ath-u)); text-align: center; font-size: calc(16.5 * var(--ath-u)); line-height: calc(24 * var(--ath-u)); white-space: normal; overflow-wrap: anywhere; color: #161b24; }
.ath-tip { display: flex; align-items: flex-start; min-height: calc(107 * var(--ath-u)); margin-top: calc(11 * var(--ath-u)); padding: calc(16 * var(--ath-u)) calc(20 * var(--ath-u)); gap: calc(20 * var(--ath-u)); background: #f6f6fa; border-radius: calc(18 * var(--ath-u)); }
.ath-tip > .ui-icon { flex: none; width: calc(40 * var(--ath-u)); height: calc(48 * var(--ath-u)); margin-top: calc(6 * var(--ath-u)); }
.ath-tip > div { min-width: 0; }
.ath-tip h3 { margin: 0 0 calc(3 * var(--ath-u)); font-size: calc(18 * var(--ath-u)); line-height: calc(25 * var(--ath-u)); font-weight: 600; }
.ath-tip p { margin: 0; font-size: calc(16 * var(--ath-u)); line-height: calc(24 * var(--ath-u)); }

.safety-panel{display:flex;gap:9px;padding:14px 11px;border-radius:12px;background:#f7f8fa;margin:9px 0;align-items:flex-start}.safety-disc{display:grid;place-items:center;width:51px;height:51px;flex:none;border-radius:50%;background:#eff1f5;color:#202935;margin-top:3px}.safety-disc svg{width:30px;height:30px}.safety-number{width:20px;height:20px;display:grid;place-items:center;border-radius:50%;background:#7e8590;color:white;font-size:13px;flex:none}.safety-panel>div{flex:1;min-width:0}.safety-panel h3{font-size:15px;margin:1px 0 6px;line-height:1.35}.safety-panel p{font-size:11px;line-height:1.7;margin:0 0 5px}.safety-panel ul{margin:0 0 5px;padding-inline-start:17px;font-size:11px;line-height:1.7;color:#777e89}.safety-panel li::marker{color:var(--red);font-size:11px}.safety-red{background:#fff6f7}.safety-red h3{color:#bd112b}.safety-red .safety-disc{background:#fcecef;color:#d2122a}.safety-red .safety-number{background:#d65f69}.safety-emphasis{display:block;background:#fbe9ee;color:#c51831;padding:8px 10px;border-radius:7px;font-size:12px;line-height:1.7}.safety-panel:nth-of-type(2) .safety-disc{background:#fceef1;color:#d21c30}
@media(max-width:359px){.topbar{padding-inline:14px}.draft-shortcut{padding:9px;gap:8px}.draft-shortcut>.ui-icon{width:25px;height:25px}.draft-shortcut strong{font-size:13px}.draft-shortcut small{font-size:9px}.free-heading h1{font-size:23px}.free-heading .secondary{font-size:9px;padding:5px}.account-card h3{font-size:15px}.account-card p{font-size:10px}.draft-datum{gap:9px;font-size:11px}.draft-order .order-columns strong{font-size:12px}.draft-order .order-columns>div+div{padding-inline-start:8px}.draft-contact{gap:10px;padding:12px}.draft-contact h3{font-size:15px}.contact-symbol{width:42px;height:42px}.contact-go{width:27px;height:27px}.safety-disc{width:37px;height:37px}.safety-disc svg{width:25px;height:25px}.safety-panel{gap:6px;padding:11px 8px}}

.safety-panel li{margin:0}.draft-recharge .recharge-value p.state-good{color:#16865e}

.draft-quote-card{padding:13px}.draft-quote-card .text-control{min-height:24px;padding-block:2px}.draft-quote-card .price{line-height:1.1}.draft-quote-card .draft-datum{padding-block:5px}
.order-top time,.draft-order .order-columns strong{display:block}.draft-order .order-top{margin-bottom:8px}
.draft-shortcuts{grid-template-columns:repeat(2,minmax(0,1fr))}.draft-shortcut{min-width:0}.draft-shortcut small{overflow:hidden;text-overflow:ellipsis}
.draft-shortcut{gap:8px}.draft-shortcut small{font-size:9px}
/* Only wrapping, minimum height and direction needed by translated text. */
html:not([lang="zh-CN"]):not([lang="zh-TW"]) .draft-shortcut small { white-space: normal; overflow: visible; }
html:not([lang="zh-CN"]):not([lang="zh-TW"]) .draft-shortcut strong { white-space: normal; }
html:not([lang="zh-CN"]):not([lang="zh-TW"]) .topbar .brand small { white-space: normal; }
html:not([lang="zh-CN"]):not([lang="zh-TW"]) .text-control { white-space: normal; }
html:not([lang="zh-CN"]):not([lang="zh-TW"]) .ath-copy p,
html:not([lang="zh-CN"]):not([lang="zh-TW"]) .ath-features small { white-space: normal; }
html:not([lang="zh-CN"]):not([lang="zh-TW"]) .ath-hero { height: auto; min-height: calc(471 * var(--ath-u)); }
html:not([lang="zh-CN"]):not([lang="zh-TW"]) .ath-features li { height: auto; min-height: calc(58 * var(--ath-u)); }
html:not([lang="zh-CN"]):not([lang="zh-TW"]) .ath-tip { height: auto; min-height: calc(107 * var(--ath-u)); }
[dir="rtl"] .address, [dir="rtl"] input[name="address"], [dir="rtl"] #other-address,
[dir="rtl"] .price, [dir="rtl"] .balance-card strong, [dir="rtl"] .quote-balance strong,
[dir="rtl"] .logo-crop { direction: ltr; unicode-bidi: isolate; }
[dir="rtl"] .ath-guide h2 { border-left: 0; border-right: calc(5 * var(--ath-u)) solid var(--red); }
[dir="rtl"] .ath-copy { padding-left: 0; padding-right: calc(32 * var(--ath-u)); }
[dir="rtl"] .chevron { transform: scaleX(-1); }
.language-option[role="button"] { cursor: pointer; }
[dir="rtl"] .bottom { transform: translateX(50%); }
[dir="rtl"] .draft-datum strong, [dir="rtl"] .order-columns strong,
[dir="rtl"] .recharge-value strong, [dir="rtl"] time { direction: ltr; unicode-bidi: isolate; }

/* Shared fixed-navigation clearance follows its actual rendered height. */
.account-fact { font-weight:400; }
.account-card > .account-fact { font-size:19px; }
.plot-times span { white-space:pre-line; text-align:center; }
.plot-grid { position:relative; min-width:0; }
.market-tooltip { position:absolute; bottom:100%; inset-inline:0; background:var(--surface); color:var(--ink); border:1px solid var(--line); border-radius:6px; padding:4px; font-size:11px; text-align:center; pointer-events:none; z-index:1; }
.market-update-note { display:inline-block; margin-inline-start:8px; font-size:10px; font-weight:400; color:var(--muted); white-space:nowrap; }
