:root {
  color-scheme: light;
  --ink: #07090f;
  --blue: #368df0;
  --purple: #7557ce;
  --white: #ffffff;
}

.mobile-bottom-nav,
.mobile-shop-footer {
  display: none;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  width: 100%;
  min-width: 1024px;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  color: var(--ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: #c9eafb;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 21% 37%, rgba(247, 193, 226, 0.9) 0, rgba(239, 201, 232, 0.62) 18%, transparent 44%),
    radial-gradient(circle at 52% 24%, rgba(225, 218, 247, 0.94) 0, rgba(206, 220, 246, 0.7) 23%, transparent 48%),
    radial-gradient(circle at 52% 79%, rgba(103, 202, 244, 0.82) 0, rgba(129, 207, 246, 0.46) 20%, transparent 45%),
    linear-gradient(115deg, #dfe9fa 0%, #bddff7 43%, #a9e8fa 100%);
}

.aurora {
  position: absolute;
  z-index: -1;
  inset: -10%;
  background:
    radial-gradient(ellipse at 78% 10%, rgba(163, 224, 253, 0.75), transparent 48%),
    radial-gradient(ellipse at 12% 95%, rgba(180, 227, 252, 0.82), transparent 45%),
    radial-gradient(ellipse at 75% 104%, rgba(44, 204, 243, 0.35), transparent 42%);
  filter: blur(42px);
}

.site-header {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 17px;
  left: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #11131a;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.25px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: white;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  background: #090a0e;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

.login-button {
  min-width: 60px;
  height: 36px;
  padding: 0 19px;
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 650;
  background: #20242b;
  transition: transform 160ms ease, background 160ms ease;
}

.login-button:hover {
  background: #090b10;
  transform: translateY(-1px);
}

.hero-content {
  position: absolute;
  top: 49.2%;
  left: 50%;
  display: flex;
  width: min(900px, 72vw);
  align-items: center;
  flex-direction: column;
  transform: translate(-50%, -50%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: clamp(42px, 3.15vw, 58px);
  font-weight: 900;
  letter-spacing: -2.7px;
  line-height: 1.08;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 4vw, 78px);
  font-weight: 900;
  letter-spacing: -3.3px;
  line-height: 1.08;
}

.page-view[hidden] {
  display: none !important;
}

body.shop-active {
  min-width: 1180px;
  overflow: auto;
  background: #fff;
}

.brand-button {
  padding: 0;
  background: transparent;
}

.shop-page {
  position: relative;
  min-width: 1180px;
  min-height: 100vh;
  color: #111;
  background: #fff;
}

.shop-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.shop-header .brand {
  font-size: 18px;
}

.shop-header .brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 7px;
  font-size: 22px;
}

.shop-login-button {
  position: relative;
  min-width: 88px;
  height: 44px;
  overflow: hidden;
  padding: 0 23px;
  border: 1px solid rgba(86, 157, 236, .55);
  border-radius: 999px;
  color: #176fc8;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .5px;
  background: linear-gradient(135deg, #edf7ff, #e8efff);
  box-shadow: 0 8px 22px rgba(48, 123, 209, .16), inset 0 1px 0 rgba(255,255,255,.9);
  transition: color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.shop-login-button::before {
  content: "";
  position: absolute;
  top: -65%;
  left: -48%;
  width: 34%;
  height: 230%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.88), transparent);
  transform: rotate(22deg);
  transition: left .58s ease;
}

.shop-login-button:hover {
  color: #fff;
  border-color: #328de9;
  background: linear-gradient(135deg, #258bef, #6c62e8);
  box-shadow: 0 12px 30px rgba(42, 125, 223, .38), 0 0 0 5px rgba(62, 145, 237, .1);
  transform: translateY(-2px);
}

.shop-login-button:hover::before {
  left: 125%;
}

.shop-login-button:active {
  box-shadow: 0 7px 18px rgba(42, 125, 223, .28);
  transform: translateY(0) scale(.97);
}

.shop-login-button:focus-visible {
  outline: 3px solid rgba(47, 141, 237, .22);
  outline-offset: 3px;
}

.account-area {
  position: relative;
}

.account-button {
  width: 42px;
  height: 42px;
  border: 1px solid #8fc7ff;
  border-radius: 50%;
  color: #111;
  font-weight: 650;
  background: #b9dcff;
  box-shadow: 0 5px 15px rgba(43, 137, 232, 0.18);
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.account-button:hover {
  background: #a7d2ff;
  box-shadow: 0 7px 18px rgba(43, 137, 232, 0.25);
  transform: translateY(-1px);
}

.account-menu {
  position: absolute;
  top: 54px;
  right: 0;
  width: 244px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid #dce9f6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(31, 79, 127, 0.15);
}

.account-menu button {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  gap: 13px;
  padding: 0 13px;
  border-radius: 11px;
  color: #272727;
  font-size: 14px;
  text-align: left;
  font-weight: 550;
  background: transparent;
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

.account-menu button:hover {
  color: #126dca;
  background: #edf6ff;
  transform: translateX(2px);
}

.account-menu button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: #176fc8;
  background: #e8f3ff;
  text-align: center;
}

.account-menu .logout-button {
  margin-top: 5px;
  border-top: 1px solid #edf0f3;
  border-radius: 0 0 11px 11px;
  color: #ec3d49;
}

.account-menu .logout-button span {
  color: #e73b48;
  background: #fff0f1;
}

.sidebar {
  position: fixed;
  z-index: 5;
  top: 90px;
  bottom: 20px;
  left: 20px;
  width: 237px;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.nav-item {
  width: 100%;
  height: 63px;
  padding: 0 17px;
  border-radius: 11px;
  color: #0b0c0e;
  font-size: 19px;
  text-align: left;
  background: transparent;
  transition: background 150ms ease;
}

.nav-item:hover {
  background: #efeeec;
}

.nav-item.active {
  font-weight: 650;
  background: #e4e3e0;
}

.shop-content {
  width: min(1100px, calc(100vw - 360px));
  min-width: 820px;
  margin-left: max(330px, calc((100vw - 1100px) / 2 + 115px));
  padding: 86px 0 70px;
}

.notice-row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.enterprise-card {
  position: relative;
  display: flex;
  width: 175px;
  min-height: 74px;
  flex: 0 0 175px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 12px 22px;
  overflow: hidden;
  border: 1px solid #cce4d8;
  border-radius: 16px;
  color: #111;
  text-align: left;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,250,246,.94));
  box-shadow: 0 10px 27px rgba(32, 121, 83, .09);
  cursor: pointer;
  isolation: isolate;
  transform: translateX(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.enterprise-card::after {
  position: absolute;
  z-index: 0;
  top: -50%;
  bottom: -50%;
  left: -42%;
  width: 28%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

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

.enterprise-card:hover,
.enterprise-card:focus-visible {
  border-color: #59c996;
  outline: none;
  transform: translateX(14px) translateY(-4px) scale(1.015);
  animation: enterprise-card-glow .9s ease-in-out infinite alternate;
}

.enterprise-card:hover::after,
.enterprise-card:focus-visible::after {
  opacity: 1;
  animation: enterprise-card-shine 1.25s ease-in-out infinite;
}

.enterprise-card span {
  color: #19a153;
  font-size: 13px;
}

.enterprise-card strong {
  margin-top: 3px;
  font-size: 20px;
}

@keyframes enterprise-card-glow {
  from { box-shadow: 0 13px 30px rgba(26, 161, 83, .16), 0 0 0 2px rgba(76, 199, 143, .08); }
  to { box-shadow: 0 18px 42px rgba(37, 136, 237, .25), 0 0 0 5px rgba(76, 199, 143, .15); }
}

@keyframes enterprise-card-shine {
  0% { left: -42%; }
  70%, 100% { left: 118%; }
}

.catalog-heading {
  position: relative;
  margin-top: 78px;
  border-bottom: 1px solid #e4e5e7;
  text-align: center;
}

.catalog-heading h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 0 13px;
  font-size: 18px;
  font-weight: 600;
}

.catalog-heading h1::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  border-radius: 6px;
  background: #378cf0;
  content: "";
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 258px;
  padding: 23px 21px;
  border: 3px solid #d9d9d9;
  border-radius: 24px;
  flex-direction: column;
  text-align: left;
  background: #fff;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  transition: border 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: #a8ccef;
  box-shadow: 0 7px 18px rgba(24, 49, 80, 0.1);
}

.product-card.selected {
  border-color: #3188ef;
  box-shadow: 0 3px 0 rgba(49, 136, 239, 0.18);
}

.product-icon {
  display: flex;
  height: 42px;
  align-items: center;
  margin-bottom: 8px;
  color: #17191e;
}

.product-icon svg,
.product-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.product-icon .multi-icons {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 32px;
}

.product-name {
  min-height: 22px;
  font-size: 16px;
  line-height: 1.25;
}

.product-type {
  margin-top: 4px;
  color: #8a8a8a;
  font-size: 13px;
}

.product-price {
  margin-top: 18px;
  font-size: 23px;
  font-weight: 800;
}

.product-price small {
  margin-left: 5px;
  color: #969696;
  font-size: 13px;
  font-weight: 400;
}

.product-description {
  margin: 20px 0 0;
  color: #7b7b7b;
  font-size: 13px;
  line-height: 1.5;
}

.faq-section {
  margin-top: 31px;
  padding-top: 0;
  border-top: 1px solid #e8e8e8;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 57px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: #222;
  font-size: 15px;
  text-align: left;
  background: transparent;
  transition: color 170ms ease;
}

.faq-arrow {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid #d8e5f1;
  border-radius: 50%;
  background: #f5f9fd;
  box-shadow: 0 4px 11px rgba(55, 114, 171, .07);
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.faq-arrow::before {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid #536b82;
  border-bottom: 2px solid #536b82;
  transform: rotate(45deg);
  content: "";
}

.faq-question:hover {
  color: #1879d7;
}

.faq-question:hover .faq-arrow,
.faq-question:focus-visible .faq-arrow {
  border-color: #8ec5fa;
  background: #eaf5ff;
  box-shadow: 0 6px 16px rgba(37, 136, 237, .18);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  border-color: #77b8f6;
  background: #e8f4ff;
}

.faq-answer {
  display: none;
  padding: 0 36px 20px 0;
  color: #747474;
  font-size: 14px;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-video {
  display: block;
  width: min(100%, 640px);
  margin-top: 14px;
  border-radius: 12px;
}

.shop-support {
  position: fixed;
  z-index: 50;
}

.member-view {
  min-height: 660px;
}

.invoice-view{padding-bottom:45px}.invoice-hero{position:relative;margin-bottom:20px;padding:30px 34px;border:1px solid #cae5dc;border-radius:24px;background:radial-gradient(circle at 88% 15%,rgba(83,211,165,.2),transparent 28%),linear-gradient(135deg,#f8fffc,#eef8ff);box-shadow:0 16px 40px rgba(37,117,92,.1)}.invoice-hero>span{color:#1a9e69;font-size:10px;font-weight:800;letter-spacing:.18em}.invoice-hero h1{margin:7px 0 7px;font-size:30px}.invoice-hero p{margin:0;color:#e13f4c;font-size:15px;font-weight:700;line-height:1.75}.invoice-back{position:absolute;top:25px;right:28px;padding:9px 14px;border:1px solid #cce0da;border-radius:10px;color:#38675a;background:rgba(255,255,255,.8)}.invoice-layout{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr);gap:20px}.invoice-form-card,.invoice-record-card{padding:25px;border:1px solid #dfe9e5;border-radius:22px;background:#fff;box-shadow:0 16px 42px rgba(34,78,64,.08)}.invoice-step{display:flex;align-items:center;gap:12px;margin:7px 0 13px}.invoice-step i{display:grid;width:34px;height:34px;flex:none;place-items:center;border-radius:11px;color:#fff;font-style:normal;font-weight:800;background:linear-gradient(145deg,#20aa72,#438ff0);box-shadow:0 7px 16px rgba(35,155,111,.2)}.invoice-step strong,.invoice-step small{display:block}.invoice-step strong{font-size:16px}.invoice-step small{margin-top:3px;color:#87938f;font-size:11px}.invoice-form-card textarea{width:100%;min-height:165px;margin-bottom:20px;padding:15px;border:1px solid #d6e4df;border-radius:14px;outline:0;resize:vertical;line-height:1.7;background:#fbfefd}.invoice-form-card textarea:focus,.invoice-amount-input:focus-within{border-color:#54bd91;box-shadow:0 0 0 4px rgba(52,180,126,.1)}.invoice-amount-input{display:flex;height:58px;align-items:center;margin-bottom:22px;border:1px solid #d6e4df;border-radius:14px;background:#fbfefd}.invoice-amount-input span{padding-left:18px;color:#1c9767;font-size:23px;font-weight:800}.invoice-amount-input input{width:100%;height:100%;padding:0 16px;border:0;outline:0;font-size:22px;font-weight:800;background:transparent}.invoice-calculation{padding:16px 18px;border-radius:16px;background:linear-gradient(145deg,#f3fbf7,#eef7ff)}.invoice-calculation p{display:flex;justify-content:space-between;margin:8px 0;color:#667871}.invoice-calculation hr{border:0;border-top:1px solid #d9e8e2}.invoice-calculation .invoice-total{color:#111;font-weight:800}.invoice-total strong{color:#138957;font-size:22px}.invoice-submit{position:relative;width:100%;height:52px;margin-top:18px;overflow:hidden;border-radius:13px;color:#fff;font-weight:800;background:linear-gradient(120deg,#151a1d,#14885c);box-shadow:0 10px 24px rgba(22,133,92,.2)}.invoice-submit:hover{transform:translateY(-2px);box-shadow:0 14px 31px rgba(22,133,92,.34)}.invoice-submit:disabled{opacity:.55;transform:none}.invoice-form-message{min-height:20px;margin:10px 0 0;color:#d74753;text-align:center;font-size:12px}.invoice-record-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}.invoice-record-head small{color:#2b9a70;font-size:9px;font-weight:800;letter-spacing:.15em}.invoice-record-head h2{margin:4px 0 0}.invoice-record-head button{padding:8px 12px;border:1px solid #d6e4df;border-radius:9px;color:#487166;background:#f8fcfa}.invoice-records{display:grid;gap:11px;max-height:650px;overflow:auto}.invoice-record{padding:15px;border:1px solid #e1ebe7;border-radius:14px;background:#fbfdfc}.invoice-record-top,.invoice-record-money,.invoice-record-actions{display:flex;align-items:center;justify-content:space-between;gap:10px}.invoice-record-top strong{font-size:13px}.invoice-record-top span{padding:5px 9px;border-radius:8px;color:#9a6d08;font-size:11px;background:#fff5d8}.invoice-record-top span.paid,.invoice-record-top span.processing{color:#1877cf;background:#e8f4ff}.invoice-record-top span.completed{color:#148556;background:#e7f8ef}.invoice-record-top span.failed{color:#d24450;background:#fff0f1}.invoice-record-money{margin:13px 0;color:#75817d;font-size:12px}.invoice-record-money strong{color:#17201d;font-size:15px}.invoice-record-info{max-height:75px;margin:10px 0;padding:10px;border-radius:9px;color:#697773;font-size:11px;line-height:1.6;white-space:pre-wrap;word-break:break-word;overflow:auto;background:#f1f6f4}.invoice-record-actions small{color:#89938f}.invoice-download,.invoice-pay-again{padding:8px 12px;border-radius:9px;color:#fff;text-decoration:none;background:#16895c}.invoice-spinner{display:inline-block;width:13px;height:13px;margin-right:5px;border:2px solid #9bcdf6;border-top-color:#197ad5;border-radius:50%;vertical-align:-2px;animation:spin .8s linear infinite}.invoice-empty{padding:70px 15px;color:#8c9894;text-align:center}.invoice-admin-note{margin:8px 0;color:#d63e49;font-size:12px;font-weight:700}@media(max-width:1050px){.invoice-layout{grid-template-columns:1fr}}

.service-notice {
  display: grid;
  min-height: 58px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 14px;
  color: #f5faff;
  background: linear-gradient(135deg, #082d4a, #0b3858);
  box-shadow: 0 9px 22px rgba(10, 38, 65, 0.12);
}

.service-notice-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid #2477a5;
  border-radius: 9px;
  color: #60d3ff;
  background: #0d3553;
}

.service-notice p {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.service-notice p strong {
  flex: none;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: #6fd4ff;
  font-size: 13px;
}

.service-notice p span {
  min-width: 0;
  color: #e6f1fa;
}

.service-notice button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(96, 211, 255, .42);
  border-radius: 9px;
  color: #81dcff;
  font-size: 12px;
  font-weight: 700;
  background: rgba(15, 64, 95, .7);
}

.view-toolbar,
.record-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-toolbar {
  height: 94px;
}

.orders-heading h1 {
  margin: 0;
  color: #142238;
  font-size: 25px;
}

.line-tabs {
  display: flex;
  align-items: center;
  gap: 28px;
}

.view-toolbar .line-tabs {
  gap: 6px;
  padding: 6px;
  border: 1px solid #d9e5f2;
  border-radius: 14px;
  background: #f5f8fb;
  box-shadow: inset 0 1px 2px rgba(32, 79, 126, 0.04);
}

.view-toolbar .line-tabs button {
  min-width: 132px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #66717f;
  font-size: 16px;
  font-weight: 600;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.view-toolbar .line-tabs button:hover {
  color: #176fc8;
  background: #fff;
}

.view-toolbar .line-tabs button.active {
  border-color: #9ecbfa;
  color: #0d68c5;
  background: #e9f4ff;
  box-shadow: 0 3px 10px rgba(40, 132, 224, 0.12);
}

.view-toolbar .line-tabs button.active::after {
  display: none;
}

.line-tabs button,
.profile-tabs button {
  position: relative;
  padding: 12px 0;
  color: #9297a0;
  font-size: 15px;
  background: transparent;
}

.line-tabs button.active,
.profile-tabs button.active {
  color: #111;
  font-weight: 650;
}

.line-tabs button.active::after,
.profile-tabs button.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 4px;
  background: #388cf0;
  content: "";
}

.outline-button,
.black-button {
  min-height: 45px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 14px;
}

.outline-button {
  border: 1px solid #dedede;
  color: #111;
  background: #fff;
}

.black-button {
  color: #fff;
  background: #111;
}

.black-button:hover {
  background: #000;
}

.data-table {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
}

.table-head {
  display: grid;
  min-height: 52px;
  align-items: center;
  padding: 0 20px;
  color: #7f8490;
  font-size: 13px;
  background: #fafafa;
}

.order-table .table-head {
  grid-template-columns: 1.25fr 2.15fr .8fr .8fr .8fr;
}

.order-row {
  display: grid;
  min-height: 82px;
  grid-template-columns: 1.25fr 2.15fr .8fr .8fr .8fr;
  align-items: center;
  padding: 0 20px;
  border-top: 1px solid #eeeeee;
  font-size: 13px;
}

.order-row > div {
  min-width: 0;
}

.order-product strong,
.order-number strong,
.order-amount strong {
  display: block;
  overflow-wrap: anywhere;
}

.order-product > span,
.order-number > span {
  display: block;
  margin-top: 6px;
  color: #8e939b;
}

.order-amount strong {
  font-size: 15px;
}

.order-field-label {
  display: none;
}

.order-row span > strong,
.order-row span > small {
  display: block;
}

.order-row span > small {
  margin-top: 6px;
  color: #8e939b;
}

.order-row > button {
  width: 104px;
  height: 40px;
  border: 1px solid #cbdcf0;
  border-radius: 10px;
  color: #2478d5;
  font-weight: 650;
  background: #edf6ff;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.order-row > button b {
  margin-left: 5px;
  font-size: 15px;
}

.order-row > button:hover {
  transform: translateY(-1px);
  color: #fff;
  background: #3189ef;
  box-shadow: 0 7px 16px rgba(49, 137, 239, .2);
}

.order-status {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 8px;
  color: #287fdc;
  background: #eaf4ff;
}

.order-status.success { color: #168553; background: #eaf9f1; }
.order-status.delivered { color: #168553; background: #eaf9f1; }
.order-status.delivery_failed { color: #d83f4b; background: #fff0f1; }
.order-status.failed { color: #d83f4b; background: #fff0f1; }
.order-status.awaiting_payment { color: #a4650b; background: #fff6df; }
.order-status.cancelled { color: #697482; background: #eef1f4; }

.empty-state {
  display: flex;
  min-height: 230px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #111;
}

.empty-state p {
  margin: 10px 0 0;
  color: #9b9b9b;
  font-size: 13px;
}

.empty-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #9da4ac;
  font-size: 21px;
  background: #f1f0ee;
}

.empty-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.record-count {
  margin: 17px 0;
  color: #8a8a8a;
  font-size: 13px;
}

.panel-card {
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.025);
}

.profile-card {
  width: min(900px, 100%);
  margin: 32px auto 0;
  overflow: hidden;
}

.profile-card > h1 {
  margin: 25px 25px 5px;
  font-size: 25px;
}

.profile-tabs {
  display: flex;
  gap: 5px;
  margin: 18px 25px 0;
  padding: 6px;
  border: 1px solid #dce7f2;
  border-radius: 14px;
  background: #f5f8fb;
}

.profile-tabs button {
  flex: 1;
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #74808d;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.profile-tabs button:hover {
  color: #176fc8;
  background: #fff;
}

.profile-tabs button.active {
  border-color: #a9d1f8;
  color: #0d68c5;
  background: #e9f4ff;
  box-shadow: 0 3px 9px rgba(40, 132, 224, 0.1);
}

.profile-tabs button.active::after {
  display: none;
}

.profile-panel {
  min-height: 260px;
  padding: 28px 25px;
}

.profile-panel[data-profile-panel="info"] {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.profile-avatar {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
  border: 1px solid #91c8ff;
  color: #111;
  background: #b9dcff;
  box-shadow: 0 7px 18px rgba(43, 137, 232, 0.17);
}

.profile-panel small,
.profile-panel strong {
  display: block;
}

.profile-panel small {
  margin-bottom: 9px;
  color: #8b8f98;
}

.profile-panel p {
  color: #737984;
  font-size: 14px;
  line-height: 1.7;
}

.settings-form h2 {
  margin: 0;
  font-size: 20px;
}

.settings-form > label {
  display: block;
  max-width: 510px;
  margin: 16px 0;
}

.settings-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 650;
}

.settings-form input {
  width: 100%;
  height: 45px;
  padding: 0 13px;
  border: 1px solid #d8dde5;
  border-radius: 9px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.settings-form input:focus {
  border-color: #72b4f5;
  box-shadow: 0 0 0 3px rgba(56, 140, 240, 0.12);
}

.empty-state.compact {
  min-height: 210px;
}

.toast {
  position: fixed;
  z-index: 130;
  top: 24px;
  left: 50%;
  max-width: calc(100vw - 32px);
  visibility: hidden;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  background: linear-gradient(135deg, #247fdc, #6c5ce7);
  box-shadow: 0 12px 35px rgba(34, 104, 190, .34);
  transform: translateX(-50%) translateY(-12px);
  transition: 170ms ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.purchase-wizard {
  padding-bottom: 20px;
}

.mobile-wizard-back {
  display: none;
}

.wizard-progress {
  display: grid;
  width: 820px;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  align-items: center;
  margin: 28px auto 0;
}

.wizard-progress button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #9a9fa7;
  background: transparent;
}

.wizard-progress button span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 2px solid #d5d8dc;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
}

.wizard-progress [data-progress-step="3"] span {
  width: 38px;
  font-size: 11px;
}

.wizard-progress button strong {
  font-size: 14px;
}

.wizard-progress button.active,
.wizard-progress button.completed {
  color: #171717;
}

.wizard-progress button.active span {
  border-color: #3189ef;
  color: #fff;
  background: #3189ef;
  box-shadow: 0 0 0 4px rgba(49, 137, 239, 0.1);
}

.wizard-progress button.completed span {
  border-color: #3189ef;
  color: #3189ef;
}

.wizard-progress > i {
  height: 2px;
  border-radius: 2px;
  background: #dfe2e6;
}

.wizard-progress.step-two > i:nth-of-type(1),
.wizard-progress.step-three > i:nth-of-type(1),
.wizard-progress.step-three > i:nth-of-type(2),
.wizard-progress.step-four > i {
  background: #3189ef;
}

.wizard-heading {
  margin: 28px 0 29px;
  text-align: center;
}

.wizard-heading > span {
  display: block;
  margin-bottom: 8px;
  font-size: 25px;
}

.wizard-heading h1 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
}

.wizard-heading p {
  margin: 9px 0 20px;
  color: #9297a0;
  font-size: 14px;
}

.wizard-heading small {
  color: #aaa;
}

.direct-info-heading {
  margin: 24px 0 18px;
  text-align: center;
}

.direct-info-heading p {
  margin: 0;
  color: #111820;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.duration-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.duration-card,
.plan-card {
  border: 3px solid #d8d8d8;
  color: #111;
  text-align: left;
  background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.duration-card {
  min-height: 200px;
  padding: 21px 24px;
  border-radius: 17px;
}

.duration-card:hover,
.plan-card:hover {
  transform: translateY(-2px);
  border-color: #9fc8f8;
}

.duration-card.selected,
.plan-card.selected {
  border-color: #338bf1;
  box-shadow: 0 8px 22px rgba(51, 139, 241, 0.08);
}

.wizard-openai-icon {
  display: grid;
  width: 51px;
  height: 51px;
  margin-bottom: 18px;
  place-items: center;
  font-size: 35px;
  font-weight: 700;
}

.wizard-openai-icon svg {
  width: 51px;
  height: 51px;
}

.duration-card small,
.plan-card small {
  display: block;
  margin-bottom: 10px;
  color: #8d939d;
  font-size: 13px;
}

.duration-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.duration-card p,
.plan-card p {
  margin: 0;
  color: #858a93;
  font-size: 13px;
  line-height: 1.6;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 293px;
  padding: 20px 23px;
  border-radius: 17px;
  flex-direction: column;
}

.plan-card h2 {
  min-height: 50px;
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.45;
}

.plan-card .plan-period {
  margin-top: 18px;
  color: #297ff0;
  font-weight: 650;
}

.plan-card .plan-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.plan-price {
  font-size: 27px;
  font-weight: 800;
}

.plan-stock {
  padding: 10px 13px;
  border-radius: 10px;
  color: #078838;
  font-size: 12px;
  font-weight: 650;
  background: #ecfbf3;
}

.plan-card.sold-out {
  cursor: not-allowed;
  opacity: .68;
  border-color: #dfe3e8;
  background: linear-gradient(145deg, #fbfbfc, #f2f4f6);
  box-shadow: none;
  filter: grayscale(.2);
}

.plan-card.sold-out:hover {
  border-color: #dfe3e8;
  box-shadow: none;
  transform: none;
}

.plan-stock.sold-out {
  color: #8a6268;
  background: #f6e9eb;
}

.plan-card.stock-reserved {
  border-color: #65a8ee;
  background: linear-gradient(145deg, #fff, #f1f8ff);
  box-shadow: 0 8px 22px rgba(59, 137, 222, .1);
}

.plan-stock.reserved {
  color: #176fc8;
  background: #e6f2ff;
}

.direct-info-step {
  max-width: 900px;
  margin: 0 auto;
}

.direct-info-product {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 18px;
  padding: 18px 22px;
  border: 1px solid #cfe4fa;
  border-radius: 18px;
  background: linear-gradient(135deg, #f5faff, #f4f1ff);
  box-shadow: 0 12px 30px rgba(48, 119, 196, .09);
}

.direct-info-product .wizard-openai-icon { flex: 0 0 auto; }
.direct-info-product small,.direct-info-product strong,.direct-info-product p { display: block; }
.direct-info-product small { color: #7e8d9e; font-size: 12px; }
.direct-info-product strong { margin: 4px 0; font-size: 18px; }
.direct-info-product p { margin: 0; color: #4384c7; font-size: 13px; }

.dynamic-order-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  border: 1px solid #dbe7f2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(31, 70, 109, .09);
}

.dynamic-order-field { display: block; }
.dynamic-order-field>span { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; color: #243448; font-size: 14px; font-weight: 750; }
.dynamic-order-field>span b { color: #ef4b57; }
.dynamic-order-field>span small { color: #91a0b0; font-size: 11px; font-weight: 500; }
.dynamic-order-field input,.dynamic-order-field select,.dynamic-order-field textarea { width: 100%; border: 1px solid #ccdceb; border-radius: 13px; outline: 0; background: #fbfdff; transition: .2s ease; }
.dynamic-order-field input,.dynamic-order-field select { height: 50px; padding: 0 15px; }
.dynamic-order-field textarea { min-height: 150px; padding: 14px 15px; resize: vertical; }
.dynamic-order-field input:focus,.dynamic-order-field select:focus,.dynamic-order-field textarea:focus { border-color: #3990ea; box-shadow: 0 0 0 4px rgba(57, 144, 234, .12); background: #fff; }
.dynamic-order-field em { display: block; margin-top: 7px; color: #8493a4; font-size: 12px; font-style: normal; line-height: 1.55; }

.checkout-product-intro {
  position: relative;
  margin-top: 18px;
  padding: 21px 23px 18px;
  overflow: hidden;
  border: 1px solid #cddff4;
  border-radius: 22px;
  color: #22344a;
  background:
    radial-gradient(circle at 92% 12%, rgba(111, 95, 232, .13), transparent 31%),
    linear-gradient(135deg, #f7fbff 0%, #f5f3ff 100%);
  box-shadow: 0 15px 38px rgba(41, 83, 137, .1);
}

.checkout-product-intro::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, #2d98ed, #765ee2);
  content: "";
}

.checkout-product-intro header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-intro-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  background: linear-gradient(135deg, #218fe9, #745fe3);
  box-shadow: 0 7px 17px rgba(70, 100, 220, .24);
}

.checkout-product-intro header small,
.checkout-product-intro header h2 {
  display: block;
  margin: 0;
}

.checkout-product-intro header small {
  margin-bottom: 2px;
  color: #6985a5;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 1.5px;
}

.checkout-product-intro header h2 {
  color: #17283c;
  font-size: 18px;
}

.checkout-product-intro > p {
  margin: 16px 0 2px;
  color: #25364a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .direct-info-step { padding-right: 16px; padding-left: 16px; }
  .direct-info-product { padding: 15px 16px; }
  .dynamic-order-form { padding: 18px 16px; border-radius: 18px; }
  .checkout-product-intro { margin-top: 12px; padding: 17px 16px 15px; border-radius: 18px; }
  .checkout-product-intro > p { margin: 12px 0 1px; font-size: 15px; line-height: 1.75; }
  .direct-info-actions { display: grid; grid-template-columns: 1fr 1.25fr; }
}

.tutorial-card {
  position: relative;
  display: flex;
  width: 640px;
  min-height: 130px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  margin: 40px auto 30px;
  padding: 19px 24px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  text-align: left;
  background:
    radial-gradient(ellipse at 85% 90%, rgba(66, 207, 245, .25), transparent 40%),
    radial-gradient(ellipse at 40% 110%, rgba(120, 102, 237, .18), transparent 43%),
    #fff;
  box-shadow: 0 11px 27px rgba(0, 0, 0, 0.09);
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tutorial-card::after {
  position: absolute;
  z-index: 0;
  top: -45%;
  bottom: -45%;
  left: -38%;
  width: 24%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .9), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

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

.tutorial-card:hover,
.tutorial-card:focus-visible {
  border-color: #70b3ff;
  outline: none;
  transform: translateY(-4px) scale(1.008);
  animation: tutorial-card-glow .9s ease-in-out infinite alternate;
}

.tutorial-card:hover::after,
.tutorial-card:focus-visible::after {
  opacity: 1;
  animation: tutorial-card-shine 1.25s ease-in-out infinite;
}

.tutorial-card:hover .tutorial-link,
.tutorial-card:focus-visible .tutorial-link {
  color: #0877ef;
  font-weight: 700;
  transform: translateX(5px);
}

.tutorial-card strong,
.tutorial-card small {
  display: block;
}

.tutorial-card strong {
  font-size: 17px;
}

.tutorial-card small {
  margin-top: 5px;
  color: #8d929a;
}

.tutorial-link {
  display: inline-block;
  color: #358bf0;
  font-size: 14px;
  transition: color 180ms ease, transform 180ms ease;
}

@keyframes tutorial-card-glow {
  from { box-shadow: 0 14px 32px rgba(37, 136, 237, .18), 0 0 0 2px rgba(73, 156, 243, .08); }
  to { box-shadow: 0 18px 42px rgba(37, 136, 237, .34), 0 0 0 5px rgba(73, 156, 243, .15); }
}

@keyframes tutorial-card-shine {
  0% { left: -38%; }
  70%, 100% { left: 118%; }
}

@media (prefers-reduced-motion: reduce) {
  .tutorial-card:hover,
  .tutorial-card:focus-visible,
  .tutorial-card:hover::after,
  .tutorial-card:focus-visible::after {
    animation: none;
  }
}

.wizard-actions {
  position: sticky;
  z-index: 6;
  bottom: 14px;
  display: grid;
  width: 704px;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(225, 225, 225, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

.wizard-actions button {
  height: 57px;
  border-radius: 12px;
  font-size: 16px;
}

.wizard-back {
  border: 1px solid #dedede;
  color: #111;
  background: #fff;
}

.wizard-next {
  color: #fff;
  background: #111;
}

.wizard-next:disabled {
  cursor: not-allowed;
  color: #fff;
  background: #a9a9a9;
}

.official-login-card {
  overflow: hidden;
  border: 1px solid #e2d9ca;
  border-radius: 13px;
  background: #f8f6f1;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.05);
}

.browser-bar {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-bottom: 1px solid #e6e0d6;
}

.browser-bar i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fd635c;
}

.browser-bar i:nth-child(2) { background: #f4b628; }
.browser-bar i:nth-child(3) { background: #29bf58; }

.browser-bar span {
  height: 30px;
  flex: 1;
  margin-left: 5px;
  padding: 7px 13px;
  border-radius: 18px;
  color: #262626;
  font-size: 12px;
  background: #fff;
}

.official-login-row {
  display: flex;
  min-height: 84px;
  align-items: center;
  padding: 0 20px;
}

.chatgpt-tile {
  display: grid;
  width: 45px;
  height: 45px;
  margin-right: 15px;
  place-items: center;
  border-radius: 11px;
  color: #061e19;
  font-size: 28px;
  background: #17b88b;
}

.chatgpt-tile svg {
  width: 27px;
  height: 27px;
}

.official-login-row > div {
  flex: 1;
}

.official-login-row strong {
  display: block;
  font-size: 16px;
}

.official-login-row p {
  margin: 7px 0 0;
  color: #767b84;
  font-size: 13px;
}

.official-login-row a {
  padding: 12px 19px;
  border-radius: 9px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  background: #111;
}

.step-two-actions {
  margin-top: 165px;
}

.dual-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 42px;
}

.guide-column > header {
  min-height: 108px;
  text-align: center;
}

.guide-column > header > span {
  display: block;
  margin-bottom: 9px;
  font-size: 25px;
}

.guide-column h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.guide-url-card,
.guide-image-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid #b8d7fb;
  border-radius: 25px;
}

.guide-url-card {
  display: flex;
  height: 96px;
  aspect-ratio: auto;
  align-items: center;
  justify-content: center;
  padding: 22px 30px;
  color: #176fcf;
  text-align: center;
  text-decoration: underline;
  background: #eaf4ff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.guide-url-card:hover {
  transform: translateY(-3px);
  border-color: #438fea;
  box-shadow: 0 14px 30px rgba(53, 128, 215, .16);
}

.guide-url-card:active,
.guide-url-card.opening {
  transform: translateY(-2px) scale(1.015);
  border-color: #2486fa;
  background: #deefff;
  box-shadow: 0 0 0 7px rgba(49, 137, 239, .13), 0 13px 32px rgba(49, 137, 239, .28);
}

.guide-link-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 19px;
  color: #fff;
  font-size: 32px;
  background: #3189ef;
  box-shadow: 0 10px 22px rgba(49, 137, 239, .24);
}

.guide-url-card small,
.guide-url-card strong,
.guide-url-card em {
  display: block;
}

.guide-url-card small {
  color: #78879a;
  font-size: 13px;
}

.guide-url-card strong {
  max-width: 100%;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.guide-url-card em {
  margin-top: 13px;
  color: #8b97a5;
  font-size: 12px;
  font-style: normal;
}

.guide-image-card {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f7f9fc, #edf3fa);
}

.guide-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-image-placeholder {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #7e8996;
}

.guide-image-placeholder span {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 20px;
  color: #3d8de9;
  font-size: 35px;
  background: #dfeeff;
}

.guide-image-placeholder strong {
  color: #36414e;
  font-size: 17px;
}

.guide-image-placeholder small {
  margin-top: 8px;
  font-size: 12px;
}

.guide-actions {
  margin-top: 30px;
}

.step-five-heading {
  margin-top: 48px;
}

.order-note-input {
  display: block;
  width: 100%;
  min-height: 255px;
  padding: 18px;
  resize: vertical;
  border: 3px solid #3189ef;
  border-radius: 17px;
  outline: none;
  color: #20242b;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.7;
  transition: box-shadow 150ms ease, border-color 150ms ease;
}

.order-note-input:focus {
  border-color: #217ae1;
  box-shadow: 0 0 0 5px rgba(49, 137, 239, .1);
}

.order-note-input.unsafe {
  border-color: #e44652;
  box-shadow: 0 0 0 5px rgba(228, 70, 82, .09);
}

.safe-input-error {
  min-height: 22px;
  margin: 10px 0;
  color: #d93c49;
  font-size: 13px;
  text-align: center;
}

.step-five-actions {
  margin-top: 78px;
}

.payment-view,
.status-view {
  display: grid;
  min-height: 760px;
  place-items: start center;
  padding: 35px 0 80px;
}

.payment-card {
  width: 460px;
  padding: 27px 28px 29px;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 13px 42px rgba(0, 0, 0, .11);
}

.payment-card > h1 {
  margin: 0 0 25px;
  font-size: 25px;
  text-align: center;
}

.payment-summary {
  padding: 20px;
  border-radius: 13px;
  background: #f7f7f7;
}

.payment-summary > p,
.price-breakdown p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  line-height: 2;
}

.payment-summary span {
  color: #727984;
  font-size: 13px;
}

.payment-summary strong {
  font-size: 13px;
}

.payment-summary hr {
  margin: 10px 0;
  border: 0;
  border-top: 1px solid #dedede;
}

.payment-summary .payment-total strong {
  font-size: 24px;
}

.price-breakdown {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  background: #effaf4;
}

.price-breakdown span,
.price-breakdown strong {
  color: #087c3a;
}

.payment-warning {
  margin-top: 23px;
  padding: 16px;
  border: 2px solid #ff3f4a;
  border-radius: 13px;
  color: #c92530;
  background: #fff2f2;
}


.payment-warning > strong {
  font-size: 15px;
}

.payment-warning p {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.7;
}

.checkout-methods {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #d7e6f5;
  border-radius: 16px;
  background: linear-gradient(145deg, #f9fcff, #f2f7fd);
  box-shadow: inset 0 1px 0 #fff;
}

.checkout-methods > strong {
  display: block;
  margin-bottom: 12px;
  color: #26374b;
  font-size: 14px;
  font-weight: 800;
}

.checkout-methods > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkout-method-option {
  position: relative;
  isolation: isolate;
  display: grid;
  min-width: 0;
  min-height: 64px;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 9px 11px;
  border: 1px solid #d7e2ef;
  border-radius: 13px;
  color: #35485e;
  text-align: left;
  background: rgba(255,255,255,.96);
  box-shadow: 0 7px 18px rgba(37, 68, 103, .07);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.checkout-method-option::after {
  position: absolute;
  z-index: -1;
  top: -65%;
  bottom: -65%;
  left: -45%;
  width: 32%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  content: "";
  opacity: 0;
}

.checkout-method-option > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(35, 81, 132, .17);
}

.checkout-method-option > span { min-width: 0; }
.checkout-method-option > span strong,
.checkout-method-option > span small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.checkout-method-option > span strong { color: #1e2e42; font-size: 14px; }
.checkout-method-option > span small { margin-top: 3px; color: #8a98a9; font-size: 10px; }
.checkout-method-option > b { display: grid; width: 21px; height: 21px; place-items: center; border: 1px solid #d6e1ec; border-radius: 50%; color: transparent; font-size: 11px; background: #f5f8fb; }
.checkout-method-wechat > i { background: linear-gradient(145deg, #34c779, #16a964); }
.checkout-method-alipay > i { background: linear-gradient(145deg, #3b9cff, #1672e8); }
.checkout-method-qqpay > i { background: linear-gradient(145deg, #8974ef, #654bd5); }

.checkout-method-option:hover,
.checkout-method-option:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.checkout-method-option:hover::after,
.checkout-method-option:focus-visible::after { opacity: 1; animation: checkout-method-shine 1s ease-in-out; }
.checkout-method-wechat:hover { border-color: #7bd7a8; box-shadow: 0 11px 23px rgba(28, 177, 104, .15); }
.checkout-method-alipay:hover { border-color: #83baf5; box-shadow: 0 11px 23px rgba(31, 123, 229, .16); }
.checkout-method-qqpay:hover { border-color: #aaa0ed; box-shadow: 0 11px 23px rgba(102, 76, 211, .15); }
.checkout-method-wechat.active { border-color: #35bf7a; background: linear-gradient(145deg, #f8fffb, #e8f9f0); box-shadow: 0 9px 22px rgba(28, 177, 104, .16), inset 0 0 0 1px rgba(44, 186, 118, .08); }
.checkout-method-alipay.active { border-color: #398de9; background: linear-gradient(145deg, #fbfdff, #e8f3ff); box-shadow: 0 9px 22px rgba(31, 123, 229, .17), inset 0 0 0 1px rgba(57, 141, 233, .08); }
.checkout-method-qqpay.active { border-color: #806ce4; background: linear-gradient(145deg, #fdfcff, #f0edff); box-shadow: 0 9px 22px rgba(102, 76, 211, .16), inset 0 0 0 1px rgba(128, 108, 228, .08); }
.checkout-method-wechat.active > b { border-color: #2db873; color: #fff; background: #2db873; }
.checkout-method-alipay.active > b { border-color: #2f83e3; color: #fff; background: #2f83e3; }
.checkout-method-qqpay.active > b { border-color: #735cda; color: #fff; background: #735cda; }

@keyframes checkout-method-shine {
  from { left: -45%; }
  to { left: 125%; }
}

.pay-now-button,
.payment-return {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 780;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, filter .18s ease;
}

.pay-now-button {
  margin-top: 17px;
  color: #fff;
  background: linear-gradient(125deg, #172235, #2368d5 68%, #4b83ef);
  box-shadow: 0 11px 25px rgba(36, 98, 206, .25);
}

.pay-now-button .pay-now-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255,255,255,.14);
}

.pay-now-button svg,
.payment-return svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pay-now-button b {
  position: absolute;
  right: 20px;
  font-size: 19px;
  transition: transform .18s ease;
}

.pay-now-button::after {
  position: absolute;
  top: -70%;
  bottom: -70%;
  left: -42%;
  width: 28%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.82), transparent);
  content: "";
  opacity: 0;
}

.pay-now-button:hover,
.pay-now-button:focus-visible {
  outline: none;
  filter: saturate(1.1);
  transform: translateY(-2px);
  box-shadow: 0 15px 31px rgba(36, 98, 206, .35);
}

.pay-now-button:hover::after,
.pay-now-button:focus-visible::after { opacity: 1; animation: pay-button-shine 1.1s ease-in-out infinite; }
.pay-now-button:hover b { transform: translateX(4px); }

@keyframes pay-button-shine {
  from { left: -42%; }
  68%, 100% { left: 124%; }
}

.pay-now-button:disabled {
  cursor: wait;
  filter: none;
  opacity: .82;
  background: linear-gradient(125deg, #4d5d72, #718198);
  box-shadow: 0 8px 18px rgba(54, 71, 94, .18);
  transform: none;
}

.pay-now-button.is-loading .pay-now-icon svg {
  border: 2px solid rgba(255,255,255,.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: payment-button-spin .72s linear infinite;
}

.pay-now-button.is-loading .pay-now-icon path { display: none; }
.pay-now-button.is-loading b { display: none; }

@keyframes payment-button-spin {
  to { transform: rotate(360deg); }
}

.payment-caption {
  margin: 11px 0;
  color: #969ba3;
  font-size: 12px;
  text-align: center;
}

.payment-return {
  border: 1px solid #d3dfed;
  color: #4d6178;
  background: linear-gradient(145deg, #fff, #f1f5fa);
  box-shadow: 0 7px 18px rgba(42, 68, 98, .08);
}

.payment-return:hover,
.payment-return:focus-visible {
  border-color: #93b9e3;
  color: #1f6fc5;
  outline: none;
  background: linear-gradient(145deg, #fff, #eaf4ff);
  box-shadow: 0 11px 23px rgba(42, 112, 190, .15);
  transform: translateY(-2px);
}

.payment-return:hover svg { transform: translateX(-3px); }
.payment-return svg { transition: transform .18s ease; }

.status-card {
  width: 520px;
  padding: 42px 35px 34px;
  border: 1px solid #e7e7e7;
  border-radius: 21px;
  text-align: center;
  background: #fff;
  box-shadow: 0 14px 45px rgba(0, 0, 0, .09);
}

.status-symbol {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: #e9f3ff;
}

.status-symbol.processing span {
  width: 34px;
  height: 34px;
  border: 4px solid #bcd8f8;
  border-top-color: #3189ef;
  border-radius: 50%;
  animation: status-spin .85s linear infinite;
}

.status-symbol.awaiting {
  color: #9a6816;
  font-size: 32px;
  font-weight: 750;
  background: #fff3d8;
}

.status-symbol.paid {
  color: #fff;
  font-size: 34px;
  font-weight: 750;
  background: #3189ef;
  box-shadow: 0 9px 24px rgba(49, 137, 239, .25);
}

.status-symbol.success {
  color: #fff;
  font-size: 36px;
  background: #2bb673;
}

.status-symbol.failed {
  color: #fff;
  font-size: 36px;
  background: #e54a55;
}

@keyframes status-spin { to { transform: rotate(360deg); } }

.status-card h1 {
  margin: 0;
  font-size: 25px;
}

.status-card > p {
  margin: 12px 0 24px;
  color: #7a8089;
  font-size: 14px;
  line-height: 1.7;
}

.status-card > .status-admin-note {
  margin: -8px 0 22px;
  padding: 13px 15px;
  border: 1px solid #ffb8bd;
  border-radius: 11px;
  color: #d92736;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  text-align: left;
  background: #fff1f2;
}

.delivery-result {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid #b9e3ce;
  border-radius: 15px;
  text-align: left;
  background: linear-gradient(145deg, #f2fcf7, #f7fbff);
  box-shadow: inset 0 1px 0 #fff;
}

.delivery-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.delivery-result-head span { color: #172c24; font-size: 16px; font-weight: 800; }
.delivery-result-head strong { padding: 5px 8px; border-radius: 8px; color: #168553; font-size: 10px; background: #def5e9; }
.delivery-instructions-box { margin-bottom: 13px; overflow: hidden; border: 1px solid rgba(122,196,159,.35); border-radius: 11px; background: rgba(255,255,255,.82); }
.delivery-instructions { padding: 12px 13px 8px; color: #324b41; font-size: 13px; line-height: 1.7; white-space: pre-wrap; overflow-wrap: anywhere; }
.delivery-instructions a { color: #1677e8; font-weight: 750; text-decoration: underline; text-decoration-color: rgba(22,119,232,.36); text-underline-offset: 3px; transition: color 160ms ease, text-decoration-color 160ms ease, background-color 160ms ease; }
.delivery-instructions a:hover, .delivery-instructions a:focus-visible { outline: none; color: #075fc5; text-decoration-color: currentColor; background: #eaf4ff; }
.delivery-code-box { position: relative; padding: 12px 88px 12px 13px; border: 1px dashed #7ac49f; border-radius: 11px; background: #fff; }
.delivery-code-box > span { display: block; margin-bottom: 5px; color: #778a82; font-size: 10px; }
.delivery-code-box code { display: block; color: #102b20; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 14px; font-weight: 750; line-height: 1.55; white-space: pre-wrap; overflow-wrap: anywhere; }
.delivery-copy-button { position: relative; isolation: isolate; min-height: 34px; overflow: hidden; padding: 0 12px; border: 1px solid #168553; border-radius: 9px; color: #fff; font-size: 11px; font-weight: 750; cursor: pointer; background: linear-gradient(135deg, #24a06c, #168553); box-shadow: 0 6px 14px rgba(22,133,83,.16); transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease; }
.delivery-copy-button::after { position: absolute; top: -70%; bottom: -70%; left: -50%; width: 38%; opacity: 0; transform: rotate(17deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent); content: ""; pointer-events: none; }
.delivery-copy-button:hover, .delivery-copy-button:focus-visible { outline: none; filter: saturate(1.14) brightness(1.06); box-shadow: 0 9px 21px rgba(22,133,83,.3), 0 0 0 4px rgba(36,160,108,.11); transform: translateY(-2px) scale(1.025); }
.delivery-copy-button:hover::after, .delivery-copy-button:focus-visible::after { opacity: 1; animation: delivery-copy-shine .9s ease-in-out infinite; }
.delivery-copy-button:active { transform: translateY(0) scale(.98); }
.delivery-instructions-copy { display: block; margin: 0 11px 11px auto; }
.delivery-code-box .delivery-copy-button { position: absolute; top: 50%; right: 10px; transform: translateY(-50%); }
.delivery-code-box .delivery-copy-button:hover, .delivery-code-box .delivery-copy-button:focus-visible { transform: translateY(calc(-50% - 2px)) scale(1.025); }
.delivery-code-box .delivery-copy-button:active { transform: translateY(-50%) scale(.98); }

@keyframes delivery-copy-shine {
  0% { left: -50%; }
  65%, 100% { left: 125%; }
}

@media (prefers-reduced-motion: reduce) {
  .delivery-copy-button:hover::after,
  .delivery-copy-button:focus-visible::after { animation: none; }
}

.status-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-radius: 11px;
  background: #f6f6f6;
}

.status-order span {
  color: #868b94;
  font-size: 13px;
}

.status-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
}

.status-action-button {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: .01em;
  box-shadow: 0 8px 20px rgba(41, 66, 99, .08);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.status-action-button > * {
  position: relative;
  z-index: 1;
}

.status-action-button svg {
  width: 19px;
  height: 19px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.status-action-button::after {
  position: absolute;
  z-index: 0;
  top: -70%;
  bottom: -70%;
  left: -48%;
  width: 34%;
  transform: rotate(17deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.82), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.status-action-button:hover,
.status-action-button:focus-visible {
  z-index: 2;
  outline: none;
  filter: saturate(1.08);
  transform: translateY(-3px);
  animation: status-action-glow .78s ease-in-out infinite alternate;
}

.status-action-button:hover::after,
.status-action-button:focus-visible::after {
  opacity: 1;
  animation: status-action-shine 1.05s ease-in-out infinite;
}

.status-action-button:hover svg,
.status-action-button:focus-visible svg {
  transform: scale(1.12);
}

.status-action-button:active {
  transform: translateY(0) scale(.985);
}

.status-actions.has-payment .status-continue-pay {
  color: #fff;
  background: linear-gradient(135deg, #172131, #245cc8 64%, #477fef);
  box-shadow: 0 11px 25px rgba(36, 92, 200, .25);
}

.status-cancel-order {
  border-color: #f3bdc3;
  color: #bd3442;
  background: linear-gradient(145deg, #fffafb, #fff0f2);
  box-shadow: 0 9px 22px rgba(198, 59, 73, .1);
}

.status-view-orders {
  border-color: #bcd8f8;
  color: #2366ad;
  background: linear-gradient(145deg, #fbfdff, #edf6ff);
  box-shadow: 0 9px 22px rgba(57, 126, 201, .1);
}

.status-contact-support {
  border-color: #d3c7f8;
  color: #6550bc;
  background: linear-gradient(145deg, #fdfcff, #f2efff);
  box-shadow: 0 9px 22px rgba(101, 80, 188, .11);
}

@keyframes status-action-shine {
  0% { left: -48%; }
  65%, 100% { left: 124%; }
}

@keyframes status-action-glow {
  from { box-shadow: 0 10px 24px rgba(57, 105, 190, .15), 0 0 0 0 rgba(85, 139, 239, .08); }
  to { box-shadow: 0 15px 30px rgba(57, 105, 190, .27), 0 0 0 5px rgba(85, 139, 239, .11); }
}

.status-symbol.cancelled {
  color: #66717e;
  background: #eef1f4;
}

.status-actions button:disabled,
.order-row > button:disabled {
  cursor: wait;
  opacity: .68;
}

.status-card > small {
  display: block;
  margin-top: 17px;
  color: #a1a5ac;
  font-size: 12px;
}

.gate-card {
  position: relative;
  z-index: 1;
  width: min(440px, calc(100vw - 32px));
  overflow: hidden;
  padding: 30px 30px 28px;
  border: 1px solid rgba(144, 190, 247, .48);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(242,248,255,.98));
  box-shadow: 0 28px 80px rgba(18, 52, 96, .28), inset 0 1px 0 #fff;
  transform: translateY(12px) scale(0.98);
  transition: transform 220ms ease;
}

.gate-card::before {
  content: "";
  position: absolute;
  top: -75px;
  left: -55px;
  width: 230px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(81, 157, 247, .22), transparent 68%);
  pointer-events: none;
}

.modal.open .gate-card {
  transform: translateY(0) scale(1);
}

.gate-card h2 {
  position: relative;
  margin: 7px 0 10px;
  color: #142942;
  font-size: 25px;
  letter-spacing: -.3px;
}

.gate-card > p {
  position: relative;
  margin: 0;
  max-width: 340px;
  color: #68788c;
  font-size: 14px;
  line-height: 1.75;
}

.gate-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #258cf0, #7163e9);
  box-shadow: 0 12px 27px rgba(45, 132, 231, .3);
}

.gate-eyebrow {
  position: absolute;
  top: 41px;
  left: 90px;
  color: #3c8ce4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.gate-card > .close-button {
  top: 17px;
  right: 17px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #d6e5f6;
  border-radius: 50%;
  color: #58708b;
  font-size: 24px;
  line-height: 1;
  background: #edf5ff;
  transition: .2s ease;
}

.gate-card > .close-button:hover {
  color: #fff;
  border-color: #348de9;
  background: #348de9;
  box-shadow: 0 8px 20px rgba(52, 141, 233, .32);
  transform: rotate(90deg);
}

.gate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 25px;
}

.gate-actions button {
  position: relative;
  height: 50px;
  overflow: hidden;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.gate-actions button::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -45%;
  width: 38%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
  transform: rotate(22deg);
  transition: left .55s ease;
}

.gate-actions button:hover::after {
  left: 120%;
}

.gate-actions button:hover {
  transform: translateY(-2px);
}

.gate-actions button:active {
  transform: translateY(0) scale(.98);
}

.gate-login {
  color: #fff;
  background: linear-gradient(135deg, #187ddd, #5968e9);
  box-shadow: 0 10px 24px rgba(42, 121, 221, .25);
}

.gate-login:hover {
  box-shadow: 0 13px 30px rgba(42, 121, 221, .4);
}

.gate-register {
  border: 1px solid #bcd9f7;
  color: #2378ce;
  background: rgba(239, 247, 255, .9);
}

.gate-register:hover {
  color: #fff;
  border-color: #4a93e5;
  background: linear-gradient(135deg, #5ba5ee, #746ce9);
  box-shadow: 0 12px 27px rgba(72, 139, 222, .3);
}

@media (max-width: 1420px) {
  .shop-content {
    width: calc(100vw - 330px);
    margin-left: 292px;
  }

  .product-grid {
    gap: 18px;
  }
}

.service-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 41px;
  margin-top: 32px;
}

.service-logo {
  width: 64px;
  height: 64px;
  color: #151821;
}

.claude-logo {
  width: 61px;
  height: 61px;
}

.x-logo {
  width: 62px;
  height: 62px;
}

.start-button {
  min-width: 160px;
  height: 49px;
  margin-top: 43px;
  padding: 0 29px;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  font-weight: 750;
  background: var(--blue);
  box-shadow: 0 10px 26px rgba(54, 141, 240, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.start-button:hover {
  background: #237fe8;
  box-shadow: 0 12px 30px rgba(54, 141, 240, 0.35);
  transform: translateY(-2px);
}

.support-button {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 18px;
  display: flex;
  height: 54px;
  align-items: center;
  gap: 9px;
  padding: 0 21px;
  overflow: hidden;
  border: 1px solid rgba(190, 188, 255, .42);
  border-radius: 999px;
  color: white;
  font-size: 15px;
  font-weight: 750;
  background: linear-gradient(115deg, #686ee5, #8552be);
  box-shadow: 0 9px 30px rgba(105, 82, 198, 0.3);
  cursor: pointer;
  isolation: isolate;
  animation: support-button-idle 2.2s ease-in-out infinite;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.support-button::after {
  position: absolute;
  z-index: 0;
  top: -70%;
  bottom: -70%;
  left: -48%;
  width: 30%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.support-button > * {
  position: relative;
  z-index: 1;
}

.support-button:hover,
.support-button:focus-visible {
  border-color: #b8e7ff;
  outline: none;
  filter: saturate(1.15);
  transform: translateY(-5px) scale(1.035);
  animation: support-button-hover .82s ease-in-out infinite alternate;
}

.support-button:hover::after,
.support-button:focus-visible::after {
  opacity: 1;
  animation: support-button-shine 1.1s ease-in-out infinite;
}

.support-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.support-button:hover svg,
.support-button:focus-visible svg {
  animation: support-icon-bounce .65s ease-in-out infinite alternate;
}

@keyframes support-button-idle {
  0%, 100% { box-shadow: 0 9px 27px rgba(105, 82, 198, .28), 0 0 0 0 rgba(116, 119, 239, .12); }
  50% { box-shadow: 0 12px 34px rgba(105, 82, 198, .4), 0 0 0 5px rgba(116, 119, 239, .08); }
}

@keyframes support-button-hover {
  from { box-shadow: 0 13px 31px rgba(105, 82, 198, .4), 0 0 0 3px rgba(118, 185, 255, .1); }
  to { box-shadow: 0 18px 44px rgba(79, 130, 236, .58), 0 0 0 7px rgba(132, 104, 226, .17); }
}

@keyframes support-button-shine {
  0% { left: -48%; }
  70%, 100% { left: 125%; }
}

@keyframes support-icon-bounce {
  from { transform: translateY(0) rotate(0); }
  to { transform: translateY(-2px) rotate(-5deg); }
}

/* 发票页返回按钮与费用展示 */
.invoice-back {
  min-width: 122px;
  height: 43px;
  padding: 0 17px;
  overflow: hidden;
  border-color: #bcded2;
  border-radius: 12px;
  color: #285f50;
  font-weight: 700;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(237,250,245,.92));
  box-shadow: 0 7px 18px rgba(29,124,91,.1);
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.invoice-back::after {
  position: absolute;
  z-index: 0;
  top: -65%;
  bottom: -65%;
  left: -48%;
  width: 30%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.96), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.invoice-back:hover,
.invoice-back:focus-visible {
  border-color: #54c99a;
  outline: 0;
  color: #0d8257;
  transform: translateY(-3px) scale(1.025);
  animation: invoice-back-glow .85s ease-in-out infinite alternate;
}

.invoice-back:hover::after,
.invoice-back:focus-visible::after {
  opacity: 1;
  animation: invoice-back-shine 1.15s ease-in-out infinite;
}

.invoice-calculation .invoice-fee-row {
  margin-top: 12px;
  padding-top: 13px;
  border-top: 1px solid #d9e8e2;
  color: #111;
  font-weight: 800;
}

.invoice-fee-row strong {
  color: #138957;
  font-size: 22px;
}

@keyframes invoice-back-glow {
  from { box-shadow: 0 10px 25px rgba(29,159,108,.18), 0 0 0 2px rgba(64,190,139,.08); }
  to { box-shadow: 0 15px 35px rgba(45,145,221,.3), 0 0 0 6px rgba(64,190,139,.14); }
}

@keyframes invoice-back-shine {
  0% { left: -48%; }
  70%, 100% { left: 125%; }
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 17, 30, 0.34);
  backdrop-filter: blur(9px);
}

.auth-card {
  position: relative;
  z-index: 1;
  width: 420px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 34px 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 24px 80px rgba(44, 68, 112, 0.24);
  transform: translateY(14px) scale(0.98);
  transition: transform 200ms ease;
}

.modal.open .auth-card {
  transform: translateY(0) scale(1);
}

.close-button {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #5d6471;
  font-size: 25px;
  line-height: 1;
  background: transparent;
}

.close-button:hover {
  background: #eef1f5;
}

.auth-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.auth-brand .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  font-size: 29px;
}

.auth-card h2 {
  margin: 0;
  font-size: 25px;
  text-align: center;
}

.auth-intro {
  margin: 8px 0 23px;
  color: #7a818d;
  font-size: 14px;
  text-align: center;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 21px;
  padding: 4px;
  border-radius: 11px;
  background: #edf0f4;
}

.auth-tab {
  height: 38px;
  border-radius: 8px;
  color: #737a85;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
}

.auth-tab.active {
  color: #111827;
  background: white;
  box-shadow: 0 2px 7px rgba(23, 32, 49, 0.1);
}

#authForm > label {
  display: block;
  margin-bottom: 15px;
}

#authForm label > span {
  display: block;
  margin-bottom: 7px;
  color: #303641;
  font-size: 13px;
  font-weight: 650;
}

#authForm input[type="email"],
#authForm input[type="password"],
#authForm input[type="text"] {
  width: 100%;
  height: 45px;
  padding: 0 13px;
  border: 1px solid #d8dde5;
  border-radius: 9px;
  outline: none;
  color: #111827;
  font-size: 14px;
  background: white;
  transition: border 150ms ease, box-shadow 150ms ease;
}

.verification-row {
  display: flex !important;
  align-items: center;
  gap: 9px;
  margin: 0 !important;
}

.verification-row input {
  min-width: 0;
  flex: 1;
}

.send-code-button {
  width: 112px;
  height: 45px;
  flex: 0 0 112px;
  border: 1px solid #cddcf0;
  border-radius: 9px;
  color: #287edc;
  font-size: 13px;
  font-weight: 650;
  background: #edf6ff;
  transition: background 150ms ease, color 150ms ease;
}

.send-code-button:hover:not(:disabled) {
  color: #176cc8;
  background: #e2f0ff;
}

.send-code-button:disabled {
  cursor: not-allowed;
  color: #929aa5;
  background: #f1f3f5;
}

#authForm input:focus {
  border-color: #5a9ef0;
  box-shadow: 0 0 0 3px rgba(54, 141, 240, 0.13);
}

.form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -1px 0 3px;
}

.remember {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #626a76;
  font-size: 13px;
}

.remember span {
  margin: 0 !important;
  color: inherit !important;
  font-weight: 400 !important;
}

.text-button {
  padding: 4px 0;
  color: #3588e6;
  font-size: 13px;
  background: transparent;
}

.form-message {
  min-height: 18px;
  margin: 5px 0 6px;
  color: #d94b56;
  font-size: 12px;
  text-align: center;
}

.submit-button {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-weight: 750;
  background: var(--blue);
}

.submit-button:hover {
  background: #287fdf;
}

@media (max-height: 720px) {
  .hero-content {
    transform: translate(-50%, -46%);
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 39px;
  }

  h1 {
    font-size: 57px;
  }

  .service-logos {
    margin-top: 22px;
  }

  .start-button {
    margin-top: 28px;
  }
}

.support-contact-card {
  position: relative;
  width: min(430px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(125, 175, 255, .38);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,249,255,.96));
  box-shadow: 0 28px 80px rgba(21, 53, 103, .25), inset 0 1px 0 #fff;
  text-align: center;
  animation: supportCardIn .28s ease both;
}
.support-contact-modal { z-index: 110; }

.direct-plan-card { min-height: 286px; }
.direct-plan-empty { grid-column: 1 / -1; display:flex; min-height:260px; padding:34px; align-items:center; justify-content:center; flex-direction:column; border:1px dashed #b9d7f4; border-radius:22px; color:#8292a6; text-align:center; background:linear-gradient(145deg,#f9fcff,#eef7ff); }
.direct-plan-empty span { display:grid; width:58px; height:58px; margin-bottom:13px; place-items:center; border-radius:18px; color:#368de8; font-size:30px; background:#e1f0ff; }
.direct-plan-empty strong { color:#2b415a; font-size:17px; }
.direct-plan-empty p { margin:8px 0 0; font-size:13px; }

.support-contact-card::before { content:""; position:absolute; inset:0 0 auto; height:110px; border-radius:28px 28px 45% 45%; background:radial-gradient(circle at 50% 0, rgba(92,159,255,.18), transparent 72%); pointer-events:none; }
.support-contact-close {
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #c8dcf6;
  border-radius: 50%;
  color: #35516f;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  background: rgba(238, 246, 255, .96);
  box-shadow: 0 7px 18px rgba(39, 91, 151, .16);
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.support-contact-close:hover {
  color: #fff;
  background: #2f8ded;
  border-color: #2f8ded;
  box-shadow: 0 9px 24px rgba(47, 141, 237, .36);
  transform: rotate(90deg) scale(1.06);
}
.support-contact-badge { position:relative; display:grid; place-items:center; width:54px; height:54px; margin:2px auto 10px; border-radius:18px; color:#fff; font-size:30px; font-weight:900; background:linear-gradient(135deg,#298df1,#7c64e9); box-shadow:0 12px 26px rgba(49,130,235,.3); }
.support-contact-eyebrow { position:relative; color:#378ce8; font-size:10px; font-weight:900; letter-spacing:2px; }
.support-contact-card h2 { position:relative; margin:5px 0 3px; font-size:27px; }
.support-contact-subtitle { position:relative; margin:0 0 18px; color:#687588; font-size:14px; }
.support-qr-frame { display:grid; place-items:center; width:230px; height:230px; margin:0 auto 18px; padding:12px; border:1px solid #cce2ff; border-radius:25px; background:linear-gradient(135deg,#fff,#edf6ff); box-shadow:0 12px 35px rgba(50,111,190,.12); }
.support-qr-frame img { width:100%; height:100%; object-fit:contain; border-radius:14px; background:#fff; }
.support-qr-frame.has-image { display:block; width:fit-content; max-width:100%; height:auto; overflow:hidden; padding:0; background:#fff; }
.support-qr-frame.has-image img { display:block; width:auto; max-width:min(330px,calc(100vw - 72px)); height:auto; max-height:min(430px,52vh); object-fit:contain; border-radius:24px; }
.support-qr-placeholder { display:flex; flex-direction:column; align-items:center; gap:6px; color:#6f8097; }
.support-qr-placeholder span { display:grid; place-items:center; width:62px; height:62px; border-radius:18px; color:#398ff0; font-size:38px; background:#dfedff; }
.support-qr-placeholder strong { color:#27384f; font-size:15px; }
.support-qr-placeholder small { font-size:12px; }
.support-wechat-row { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 16px; border:1px solid #dbe9f8; border-radius:16px; background:rgba(255,255,255,.78); text-align:left; }
.support-wechat-row div { min-width:0; display:flex; flex-direction:column; gap:3px; }
.support-wechat-row small { color:#8290a2; font-size:11px; }
.support-wechat-row strong { overflow:hidden; color:#17283e; font-size:16px; text-overflow:ellipsis; white-space:nowrap; }
.support-wechat-row button { flex:none; padding:10px 14px; border-radius:11px; color:#176fd0; font-weight:750; background:#e8f3ff; transition:.2s ease; }
.support-wechat-row button:hover { color:#fff; background:#2f8ded; box-shadow:0 8px 20px rgba(47,141,237,.28); transform:translateY(-1px); }
.support-hours-row { display:flex; align-items:center; justify-content:center; gap:10px; margin-top:14px; padding:14px 12px; border:1px solid #dceafa; border-radius:15px; color:#354d69; font-size:15px; background:#f1f6fc; }
.support-hours-row strong { font-size:15px; font-weight:750; letter-spacing:.2px; }
.support-hours-row span { color:#358be8; font-size:22px; }
.support-external-link { display:block; margin-top:12px; color:#277fdc; font-size:13px; font-weight:700; }
@keyframes supportCardIn { from { opacity:0; transform:translateY(12px) scale(.97); } to { opacity:1; transform:none; } }
@media (max-width:520px) { .support-contact-card { padding:24px 18px 20px; border-radius:23px; } .support-qr-frame:not(.has-image) { width:210px; height:210px; } }

/* 手机端布局 */
@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    min-height: 100%;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  body:not(.shop-active) {
    overflow: hidden;
  }

  .hero {
    width: 100%;
    min-width: 0;
    min-height: 100vh;
    min-height: 100svh;
    background:
      radial-gradient(circle at 15% 25%, rgba(247, 201, 232, .9) 0, rgba(239, 201, 232, .54) 22%, transparent 52%),
      radial-gradient(circle at 82% 20%, rgba(185, 220, 250, .9) 0, rgba(190, 218, 249, .54) 25%, transparent 53%),
      radial-gradient(circle at 56% 76%, rgba(79, 203, 246, .74) 0, rgba(105, 204, 245, .42) 25%, transparent 54%),
      linear-gradient(145deg, #e6e4fb 0%, #c8dbf7 48%, #84ddf7 100%);
  }

  .aurora {
    inset: -4%;
    filter: blur(26px);
  }

  .site-header {
    top: max(20px, env(safe-area-inset-top));
    right: 18px;
    left: 18px;
  }

  .site-header .brand {
    gap: 7px;
    font-size: 16px;
  }

  .site-header .brand-mark {
    width: 31px;
    height: 31px;
    border-radius: 7px;
    font-size: 23px;
  }

  .login-button {
    min-width: 72px;
    height: 45px;
    padding: 0 20px;
    font-size: 16px;
  }

  .hero-content {
    top: 50%;
    width: calc(100% - 30px);
    max-width: 390px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: clamp(32px, 9vw, 40px);
    letter-spacing: -1.7px;
  }

  .hero h1 {
    max-width: 370px;
    font-size: clamp(45px, 13vw, 58px);
    letter-spacing: -2.8px;
    line-height: .98;
  }

  .service-logos {
    gap: 30px;
    margin-top: 42px;
  }

  .service-logo {
    width: 52px;
    height: 52px;
  }

  .claude-logo,
  .x-logo {
    width: 50px;
    height: 50px;
  }

  .start-button {
    min-width: 154px;
    height: 56px;
    margin-top: 48px;
    border-radius: 12px;
    font-size: 19px;
  }

  .hero .support-button {
    right: 14px;
    bottom: max(22px, env(safe-area-inset-bottom));
  }

  body.shop-active,
  .shop-page {
    min-width: 0;
    width: 100%;
    background: #fff;
  }

  .shop-page {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .shop-header {
    position: relative;
    z-index: 12;
    height: 104px;
    padding: max(17px, env(safe-area-inset-top)) 19px 12px;
    background: #fff;
    backdrop-filter: none;
  }

  .shop-header .brand {
    gap: 8px;
    font-size: 20px;
  }

  .shop-header .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 9px;
    font-size: 28px;
  }

  .shop-login-button {
    min-width: 72px;
    height: 45px;
    padding: 0 20px;
    border-color: transparent;
    color: #15181d;
    font-size: 16px;
    background: #f4f4f3;
    box-shadow: none;
  }

  .account-button {
    width: 44px;
    height: 44px;
  }

  .account-menu {
    top: 52px;
    right: 0;
    width: 210px;
  }

  .sidebar {
    display: none;
  }

  .shop-content {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 2px 18px 34px;
  }

  #subscribeView {
    display: flex;
    padding-bottom: 0;
    flex-direction: column;
  }

  #subscribeView[hidden] {
    display: none !important;
  }

  #subscribeView .notice-row {
    display: contents;
  }

  #subscribeView .catalog-heading {
    order: 2;
  }

  #subscribeView .enterprise-card {
    order: 3;
  }

  #subscribeView .product-grid {
    order: 4;
  }

  #subscribeView .faq-section {
    order: 5;
  }

  #subscribeView .mobile-shop-footer {
    order: 6;
  }

  .catalog-heading {
    margin-top: 18px;
    text-align: left;
  }

  .catalog-heading h1 {
    margin-left: 18px;
    padding-bottom: 15px;
    font-size: 22px;
  }

  .catalog-heading h1::after {
    right: auto;
    width: 62px;
  }

  .enterprise-card {
    width: 100%;
    min-height: 70px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 12px;
    margin-top: 15px;
    padding: 11px 68px 11px 20px;
    border-radius: 15px;
    transform: none;
  }

  .enterprise-card::before {
    position: absolute;
    top: 50%;
    right: 15px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #bce6d2;
    border-radius: 50%;
    color: #118d59;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    content: "→";
    background: linear-gradient(145deg, #f7fffb, #dff7ed);
    box-shadow: 0 7px 17px rgba(28, 151, 100, .16);
    transform: translateY(-50%);
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
  }

  .enterprise-card:hover,
  .enterprise-card:focus-visible {
    transform: translateY(-3px) scale(1.01);
  }

  .enterprise-card:hover::before,
  .enterprise-card:focus-visible::before {
    color: #fff;
    background: linear-gradient(135deg, #20b576, #328ee8);
    box-shadow: 0 10px 24px rgba(35, 151, 122, .32);
    transform: translateY(-50%) translateX(3px) scale(1.06);
  }

  .enterprise-card span {
    display: inline-flex;
    width: fit-content;
    padding: 3px 8px;
    border-radius: 6px;
    background: #edf9f2;
  }

  .enterprise-card strong {
    margin-top: 0;
    font-size: 20px;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
    margin-top: 28px;
  }

  .product-card {
    display: grid;
    min-height: 190px;
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr auto;
    padding: 25px 22px;
    border-width: 3px;
    border-radius: 23px;
    color: #111820;
    box-shadow: 0 4px 0 rgba(0, 0, 0, .11);
    -webkit-appearance: none;
    appearance: none;
  }

  .product-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 54px;
    margin: 0;
    align-items: flex-start;
  }

  .product-icon svg,
  .product-icon img {
    width: 52px;
    height: 52px;
  }

  .product-icon .multi-icons {
    font-size: 33px;
  }

  .product-name {
    min-height: 0;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 20px;
    line-height: 1.25;
    color: #111820;
    overflow-wrap: anywhere;
  }

  .product-type {
    grid-column: 2;
    grid-row: 2;
    margin-top: 5px;
    font-size: 14px;
  }

  .product-price {
    grid-column: 2;
    grid-row: 3;
    align-self: center;
    justify-self: end;
    margin-top: 12px;
    color: #080b10;
    font-size: 30px;
  }

  .product-price small {
    font-size: 15px;
  }

  .product-description {
    grid-column: 2;
    grid-row: 4;
    justify-self: end;
    margin-top: 8px;
    font-size: 14px;
    text-align: right;
  }

  .faq-section {
    margin-top: 12px;
  }

  .mobile-shop-footer {
    display: block;
    padding: 44px 10px 26px;
    color: #38739f;
    text-align: center;
  }

  .mobile-shop-footer div {
    display: flex;
    justify-content: center;
    gap: 23px;
    font-size: 13px;
  }

  .mobile-shop-footer p {
    margin: 18px 0 0;
    font-size: 13px;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 64;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(72px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 8px 5px env(safe-area-inset-bottom);
    border-top: 1px solid #e8e8e8;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 -7px 24px rgba(34, 46, 63, .08);
    backdrop-filter: blur(16px);
  }

  .mobile-nav-item {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 2px;
    border-radius: 12px;
    color: #8d8d8d;
    font-size: 12px;
    background: transparent;
  }

  .mobile-nav-item i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #aaa;
  }

  .mobile-nav-item.active {
    color: #111;
    font-weight: 750;
  }

  .mobile-nav-item.active i {
    background: #343434;
    box-shadow: 0 0 0 4px rgba(54, 141, 240, .1);
  }

  .shop-support {
    right: 13px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    height: 50px;
    padding: 0 17px;
    overflow: visible;
    font-size: 14px;
    animation: none;
    box-shadow: 0 12px 31px rgba(91, 78, 196, .34), 0 4px 12px rgba(71, 104, 220, .16);
    transform: translateY(var(--support-drift, 0px));
    transition: transform .18s cubic-bezier(.22, .8, .3, 1), box-shadow .2s ease;
  }

  .shop-support::after {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: auto;
    bottom: auto;
    left: 41px;
    display: block;
    width: 6px;
    height: 6px;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 1;
    background: #4ee69a;
    box-shadow: 0 0 0 2px rgba(78, 230, 154, .12), 0 0 7px rgba(58, 218, 138, .5);
    transform: none;
    animation: none;
  }

  .shop-support::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    border: 1.5px solid rgba(116, 116, 232, .42);
    border-radius: inherit;
    content: "";
    pointer-events: none;
    animation: mobile-support-ripple 3.2s cubic-bezier(.2, .62, .34, 1) infinite;
  }

  .shop-support:hover,
  .shop-support:focus-visible {
    animation: none;
    transform: translateY(var(--support-drift, 0px));
  }

  .shop-support:hover::after,
  .shop-support:focus-visible::after {
    left: 41px;
    opacity: 1;
    transform: none;
    animation: none;
  }

  @keyframes mobile-support-ripple {
    0%, 10% {
      opacity: 0;
      transform: scale(.98);
    }
    17% {
      opacity: .48;
      transform: scale(1);
    }
    58% {
      opacity: 0;
      transform: scale(1.28);
    }
    59%, 100% {
      opacity: 0;
      transform: scale(1.28);
    }
  }

  .member-view:not(#subscribeView) {
    width: 100%;
    min-width: 0;
  }

  .invoice-layout,
  .dual-guide-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .auth-card {
    width: calc(100vw - 28px);
    max-width: 420px;
    padding: 30px 22px 24px;
    border-radius: 22px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-content {
    top: 49%;
  }

  .service-logos {
    gap: 25px;
  }

  .shop-content {
    padding-right: 14px;
    padding-left: 14px;
  }

  .product-card {
    min-height: 178px;
    grid-template-columns: 66px minmax(0, 1fr);
    padding: 22px 18px;
  }

  .product-name {
    font-size: 18px;
  }

  .product-price {
    font-size: 27px;
  }

  .mobile-nav-item {
    font-size: 13px;
  }
}

@media (max-width: 720px) {
  /* Keep form focus from triggering automatic zoom in iOS browsers. */
  input, textarea, select {
    font-size: 16px !important;
    max-width: 100%;
    min-width: 0;
  }
  .invoice-amount-input input { font-size: 22px !important; }
  .mobile-bottom-nav { gap: 4px; padding-top: 7px; border-top-color: #d5e2f0; }
  .mobile-nav-item { gap: 4px; color: #435268; font-size: 13px; font-weight: 650; }
  .mobile-nav-item svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-nav-item.active { color: #096bd5; background: #e8f2ff; box-shadow: inset 0 0 0 1px #c9e1ff; }
  .mobile-nav-item:focus-visible { outline: 2px solid #287de0; outline-offset: -2px; }
  .invoice-hero { padding: 22px 18px; }
  .invoice-hero h1 { font-size: 25px; }
  .invoice-hero p { line-height: 1.7; }
  .invoice-back { position: relative; top: auto; right: auto; display: block; margin: 0 0 16px; }
  .invoice-form-card, .invoice-record-card { min-width: 0; padding: 18px 15px; }
  .invoice-step > div, .invoice-amount-input, .profile-panel > div { min-width: 0; }
  .invoice-step small { font-size: 12px; line-height: 1.6; }
  .invoice-form-card textarea { display: block; font-family: inherit; }
  .invoice-record-top, .invoice-record-money, .invoice-record-actions { flex-wrap: wrap; }
  .invoice-record-top strong, .profile-panel strong { overflow-wrap: anywhere; }
  .profile-tabs { margin: 16px 12px 0; gap: 3px; }
  .profile-tabs button { min-width: 0; padding: 11px 5px; font-size: 13px; }
  .profile-panel { padding: 22px 16px; }
  .service-notice { min-height: 64px; grid-template-columns: 30px minmax(0, 1fr) auto; gap: 9px; padding: 10px 12px; border-radius: 15px; }
  .service-notice-icon { width: 30px; height: 30px; margin: 0; border-radius: 8px; }
  .service-notice p { display: block; margin: 0; line-height: 1.35; overflow-wrap: anywhere; }
  .service-notice p strong { display: block; margin-bottom: 3px; padding: 0; border: 0; font-size: 13px; white-space: nowrap; }
  .service-notice p span { display: -webkit-box; overflow: hidden; color: #dceaf5; font-size: 11px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .service-notice button { min-height: 32px; padding: 0 9px; white-space: nowrap; font-size: 11px; }
  .orders-toolbar { height: auto; min-height: 60px; gap: 12px; padding: 10px 2px; }
  .orders-heading h1 { font-size: 21px; }
  .orders-toolbar > .outline-button { min-height: 36px; padding: 0 12px; border-color: #cbdff3; border-radius: 10px; color: #176fc8; font-size: 12px; font-weight: 700; background: #f1f7ff; }
  .order-table { display: grid; gap: 12px; overflow: visible; border: 0; border-radius: 0; background: transparent; }
  .order-table .table-head { display: none; }
  .order-table .order-row {
    display: grid;
    min-width: 0;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "product state"
      "number number"
      "amount action";
    gap: 13px 12px;
    align-items: center;
    padding: 17px;
    border: 1px solid #dbe7f3;
    border-radius: 18px;
    background: linear-gradient(145deg, #fff 0%, #f8fbff 100%);
    box-shadow: 0 8px 23px rgba(38, 83, 126, .08);
  }
  .order-product { grid-area: product; }
  .order-product strong { color: #17263a; font-size: 16px; line-height: 1.45; }
  .order-product > span { margin-top: 4px; font-size: 12px; }
  .order-state { grid-area: state; align-self: start; }
  .order-number { grid-area: number; padding: 11px 0; border-top: 1px solid #e5edf5; border-bottom: 1px solid #e5edf5; }
  .order-number strong { color: #405168; font-size: 13px; font-weight: 650; letter-spacing: .1px; }
  .order-number > span { margin-top: 5px; font-size: 12px; }
  .order-amount { grid-area: amount; }
  .order-amount strong { color: #101b2b; font-size: 21px; }
  .order-field-label { display: block; margin-bottom: 5px; color: #92a0b1; font-size: 10px; font-weight: 750; letter-spacing: .7px; }
  .order-state .order-field-label { text-align: right; }
  .order-status { padding: 6px 9px; border-radius: 999px; font-size: 12px; font-weight: 700; white-space: nowrap; }
  .order-row > button { grid-area: action; width: auto; min-width: 106px; height: 42px; padding: 0 13px; border: 0; border-radius: 12px; color: #fff; background: linear-gradient(135deg, #228aec, #526be9); box-shadow: 0 7px 16px rgba(53, 114, 224, .2); }
  .order-row > button b { margin-left: 8px; }
  .order-table .empty-state { min-height: 190px; padding: 24px 18px; border: 1px solid #e1e8f0; border-radius: 18px; background: linear-gradient(145deg, #fff, #f9fbfd); box-shadow: 0 7px 20px rgba(29, 69, 109, .05); text-align: center; }
  .order-table .empty-state .empty-icon { width: 44px; height: 44px; margin-bottom: 13px; color: #7f94aa; background: #edf4fa; }
  .order-table .empty-state .empty-icon svg { width: 21px; height: 21px; }
  .order-table .empty-state strong { color: #1b2b3d; font-size: 16px; }
  .order-table .empty-state p { margin-top: 7px; color: #8995a3; font-size: 12px; }
  #ordersView .record-count { margin-top: 13px; padding-left: 3px; color: #8490a0; font-size: 13px; }
  .payment-view { min-height: 0; padding: 18px 0 calc(96px + env(safe-area-inset-bottom)); }
  .payment-card { width: 100%; padding: 23px 15px 20px; border-radius: 18px; }
  .payment-card > h1 { margin-bottom: 19px; font-size: 23px; }
  .payment-summary { padding: 17px 14px; }
  .payment-warning { margin-top: 17px; padding: 14px; border-width: 1px; }
  .checkout-methods { padding: 14px; }
  .checkout-methods > div { grid-template-columns: minmax(0, 1fr); }
  .checkout-method-option { min-height: 62px; }
  .pay-now-button, .payment-return { min-height: 52px; }
  .status-card { width: 100%; padding: 28px 16px 22px; border-radius: 18px; }
  .status-symbol { width: 62px; height: 62px; margin-bottom: 17px; }
  .status-card h1 { font-size: 22px; }
  .status-card > p { margin: 9px 0 18px; font-size: 13px; }
  .delivery-result { padding: 14px; border-radius: 14px; }
  .delivery-result-head { margin-bottom: 10px; }
  .delivery-result-head span { font-size: 15px; }
  .delivery-instructions { padding: 11px; font-size: 13px; }
  .delivery-instructions-copy { width: calc(100% - 22px); min-height: 42px; margin: 0 11px 11px; }
  .delivery-code-box { padding: 12px; }
  .delivery-code-box code { font-size: 14px; }
  .delivery-code-box .delivery-copy-button { position: static; width: 100%; min-height: 42px; margin-top: 12px; transform: none; }
  .delivery-code-box .delivery-copy-button:hover, .delivery-code-box .delivery-copy-button:focus-visible { transform: translateY(-2px) scale(1.01); }
  .delivery-code-box .delivery-copy-button:active { transform: scale(.98); }
  .status-order { gap: 12px; padding: 13px; }
  .status-order strong { min-width: 0; overflow-wrap: anywhere; text-align: right; }
  .status-actions { margin-top: 17px; }

  .purchase-wizard {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .mobile-wizard-back {
    position: relative;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
    padding: 0 17px 0 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .2px;
    background: linear-gradient(135deg, #238be9 0%, #526be9 58%, #775ddd 100%);
    box-shadow: 0 9px 23px rgba(57, 104, 220, .26), inset 0 1px 0 rgba(255, 255, 255, .24);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  }

  .mobile-wizard-back::before {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 9px;
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    content: "‹";
    background: rgba(255, 255, 255, .15);
  }

  .mobile-wizard-back:hover,
  .mobile-wizard-back:focus-visible {
    outline: none;
    filter: brightness(1.08);
    box-shadow: 0 12px 29px rgba(57, 104, 220, .34), 0 0 0 3px rgba(74, 139, 238, .14);
    transform: translateY(-2px);
  }

  .mobile-wizard-back:active {
    box-shadow: 0 6px 16px rgba(57, 104, 220, .24);
    transform: scale(.97);
  }

  .wizard-heading {
    margin: 14px 0 13px;
    text-align: left;
  }

  .wizard-heading > span {
    display: none;
  }

  .wizard-heading h1 {
    font-size: 23px;
    font-weight: 800;
    line-height: 1.35;
  }

  .wizard-heading p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.65;
  }

  .duration-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .duration-card {
    min-height: 145px;
    padding: 17px 15px;
    border-width: 2px;
    border-radius: 17px;
  }

  .duration-card .wizard-openai-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 11px;
  }

  .duration-card .wizard-openai-icon svg {
    width: 38px;
    height: 38px;
  }

  .duration-card small {
    display: none;
  }

  .duration-card strong {
    margin-bottom: 5px;
    font-size: 18px;
  }

  .duration-card p {
    font-size: 12px;
    line-height: 1.55;
  }

  .plan-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .plan-card,
  .direct-plan-card {
    display: grid;
    min-height: 160px;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto auto;
    gap: 3px 14px;
    padding: 18px;
    border-width: 2px;
    border-radius: 19px;
  }

  .plan-card .wizard-openai-icon {
    width: 48px;
    height: 48px;
    grid-column: 1;
    grid-row: 1 / 5;
    margin: 0;
  }

  .plan-card .wizard-openai-icon svg,
  .plan-card .wizard-openai-icon img {
    width: 46px;
    height: 46px;
  }

  .plan-card > small,
  .plan-card h2,
  .plan-card > p,
  .plan-card .plan-period,
  .plan-card .plan-bottom {
    grid-column: 2;
  }

  .plan-card > small {
    grid-row: 1;
    margin: 0;
    font-size: 12px;
  }

  .plan-card h2 {
    min-height: 0;
    grid-row: 2;
    margin: 2px 0 4px;
    font-size: 17px;
    line-height: 1.4;
  }

  .plan-card > p {
    grid-row: 3;
    font-size: 12px;
    line-height: 1.55;
  }

  .plan-card .plan-period {
    grid-row: 4;
    margin-top: 7px;
    font-size: 13px;
  }

  .plan-card .plan-bottom {
    grid-row: 5;
    margin-top: 10px;
  }

  .plan-price {
    font-size: 23px;
  }

  .plan-stock {
    padding: 7px 10px;
    font-size: 12px;
  }

  #wizardStep1 > .wizard-actions {
    display: none;
  }

  .direct-info-step .wizard-heading {
    margin: 15px 0 10px;
    text-align: center;
  }

  .direct-info-step .direct-info-heading p {
    margin: 0;
    color: #111820;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.65;
  }

  .direct-info-product {
    padding: 14px 15px;
    border-radius: 18px;
  }

  .dynamic-order-form {
    margin-top: 10px;
    padding: 15px;
    border: 1px solid #dce7f2;
    border-radius: 18px;
    background: #fff;
  }

  .direct-info-actions {
    position: static;
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .direct-info-actions .wizard-back {
    display: none;
  }

  .direct-info-actions .wizard-next {
    width: 100%;
    height: 54px;
    border-radius: 15px;
    font-weight: 800;
  }
}

/* 发票支付方式、继续支付与删除操作 */
.invoice-payment-step { margin-top: 20px; }
.invoice-checkout-methods { margin-top: 0; margin-bottom: 4px; }
.invoice-checkout-methods > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.invoice-retry-payment { margin-top: 13px; padding: 13px; border: 1px solid #dce9e3; border-radius: 13px; background: linear-gradient(145deg,#f8fcfa,#f3f8ff); }
.invoice-retry-payment > strong { display: block; margin-bottom: 10px; color: #344a42; font-size: 12px; }
.invoice-record-methods { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.invoice-record-methods .checkout-method-option { min-height: 54px; grid-template-columns: 32px minmax(0,1fr) 18px; padding: 7px 8px; }
.invoice-record-methods .checkout-method-option > i { width: 32px; height: 32px; border-radius: 10px; font-size: 14px; }
.invoice-record-methods .checkout-method-option > span strong { font-size: 12px; }
.invoice-record-methods .checkout-method-option > span small { font-size: 9px; }
.invoice-record-methods .checkout-method-option > b { width: 18px; height: 18px; }
.invoice-retry-actions { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; margin-top: 10px; }
.invoice-pay-again,.invoice-delete { min-height: 40px; padding: 8px 14px; border-radius: 10px; font-weight: 750; transition: .18s ease; }
.invoice-pay-again { color: #fff; background: linear-gradient(135deg,#138e5d,#25b779); box-shadow: 0 7px 17px rgba(20,143,94,.2); }
.invoice-pay-again:hover:not(:disabled),.invoice-pay-again:focus-visible { outline: none; transform: translateY(-2px); box-shadow: 0 11px 23px rgba(20,143,94,.3); }
.invoice-pay-again:disabled { opacity: .48; cursor: not-allowed; }
.invoice-delete { border: 1px solid #f1b9bf; color: #ce3d49; background: #fff7f8; }
.invoice-delete:hover,.invoice-delete:focus-visible { outline: none; color: #fff; background: #df4d59; box-shadow: 0 8px 18px rgba(214,63,76,.22); transform: translateY(-2px); }
.invoice-record-message { min-height: 0; margin: 8px 0 0; color: #d74753; font-size: 11px; text-align: center; }
.invoice-record-message:empty { display: none; }
.invoice-payment-unavailable { margin: 0; padding: 10px; border-radius: 9px; color: #8b6b20; font-size: 11px; text-align: center; background: #fff7dd; }
.invoice-success-view { display: grid; min-height: calc(100vh - 170px); place-items: center; padding: 35px 16px; }
.invoice-success-view[hidden] { display: none; }
.invoice-success-card { width: min(520px,100%); padding: 42px 38px; border: 1px solid #dce9e3; border-radius: 26px; text-align: center; background: radial-gradient(circle at 50% 0,rgba(48,199,127,.14),transparent 38%),#fff; box-shadow: 0 22px 60px rgba(33,100,76,.13); }
.invoice-success-icon { display: grid; width: 76px; height: 76px; margin: 0 auto 20px; place-items: center; border-radius: 50%; color: #fff; font-size: 42px; background: linear-gradient(145deg,#34c77f,#18a764); box-shadow: 0 13px 30px rgba(28,174,105,.28); }
.invoice-success-card h1 { margin: 0 0 10px; font-size: 30px; }
.invoice-success-card > p { margin: 0 auto 24px; color: #687a74; line-height: 1.75; }
.invoice-success-order { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; padding: 14px 16px; border-radius: 13px; background: #f3f8f5; }
.invoice-success-order span { color: #7f8e89; font-size: 12px; }
.invoice-success-order strong { overflow-wrap: anywhere; font-size: 14px; }
.invoice-success-primary,.invoice-success-secondary { width: 100%; min-height: 48px; border-radius: 13px; font-weight: 800; transition: .18s ease; }
.invoice-success-primary { color: #fff; background: linear-gradient(135deg,#138e5d,#2bbe7e); box-shadow: 0 9px 22px rgba(20,143,94,.22); }
.invoice-success-secondary { margin-top: 10px; border: 1px solid #d8e4df; color: #49645b; background: #fff; }
.invoice-success-primary:hover,.invoice-success-secondary:hover { transform: translateY(-2px); filter: brightness(1.03); }
.invoice-attachment-view { padding: 28px 16px 48px; }
.invoice-attachment-card { width: min(980px,100%); margin: 0 auto; padding: 24px; border: 1px solid #dce6ee; border-radius: 24px; background: #fff; box-shadow: 0 20px 55px rgba(36,72,103,.12); }
.invoice-attachment-head { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 18px; margin-bottom: 18px; text-align: center; }
.invoice-attachment-head button { min-height: 42px; padding: 0 15px; border: 1px solid #d7e4ee; border-radius: 11px; color: #3e5d74; background: #f7fbfe; transition: .18s ease; }
.invoice-attachment-head button:hover { color: #fff; background: #328fe8; box-shadow: 0 8px 19px rgba(50,143,232,.25); transform: translateY(-1px); }
.invoice-attachment-head div { grid-column: 2; }
.invoice-attachment-head h1 { margin: 0; font-size: 25px; }
.invoice-attachment-head p { margin: 5px 0 0; color: #82909d; font-size: 12px; overflow-wrap: anywhere; }
.invoice-attachment-stage { display: grid; width: 100%; min-height: 540px; place-items: center; overflow: auto; padding: 18px; border: 1px solid #d8e3eb; border-radius: 17px; background: linear-gradient(145deg,#eef3f7,#f8fafc); }
.invoice-attachment-stage img { display: block; width: auto; max-width: 100%; height: auto; max-height: 72vh; margin: auto; border-radius: 8px; object-fit: contain; box-shadow: 0 10px 32px rgba(27,51,73,.15); }
.invoice-attachment-stage iframe { display: block; width: min(820px,100%); height: 72vh; min-height: 520px; margin: auto; border: 0; border-radius: 10px; background: #fff; box-shadow: 0 10px 32px rgba(27,51,73,.14); }
.invoice-attachment-stage img[hidden],.invoice-attachment-stage iframe[hidden],.invoice-pdf-mobile-card[hidden] { display: none !important; }
.invoice-pdf-mobile-card { display: none; }
.invoice-attachment-download { display: flex; width: min(360px,100%); min-height: 50px; align-items: center; justify-content: center; margin: 18px auto 0; border-radius: 13px; color: #fff; font-weight: 800; text-decoration: none; background: linear-gradient(135deg,#138e5d,#2bbe7e); box-shadow: 0 10px 24px rgba(20,143,94,.24); transition: .18s ease; }
.invoice-attachment-download:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(20,143,94,.32); }

@media (max-width: 720px) {
  .invoice-checkout-methods > div,.invoice-record-methods { grid-template-columns: 1fr; }
  .invoice-record-methods .checkout-method-option { min-height: 58px; }
  .invoice-retry-actions { grid-template-columns: 1fr 1fr; }
  .invoice-pay-again,.invoice-delete { width: 100%; padding-right: 8px; padding-left: 8px; }
  .invoice-success-view { min-height: calc(100vh - 130px); padding: 20px 14px; }
  .invoice-success-card { padding: 34px 20px; border-radius: 22px; }
  .invoice-success-card h1 { font-size: 27px; }
  .invoice-attachment-view { padding: 12px 10px 30px; }
  .invoice-attachment-card { padding: 14px; border-radius: 19px; }
  .invoice-attachment-head { grid-template-columns: 1fr; gap: 12px; }
  .invoice-attachment-head button,.invoice-attachment-head div { grid-column: 1; }
  .invoice-attachment-head button { width: 100%; }
  .invoice-attachment-head h1 { font-size: 23px; }
  .invoice-attachment-stage { min-height: 390px; padding: 10px; border-radius: 14px; }
  .invoice-attachment-stage img { max-height: 64vh; }
  .invoice-attachment-stage iframe { display: none; }
  .invoice-pdf-mobile-card { display: flex; width: 100%; min-height: 370px; align-items: center; justify-content: center; flex-direction: column; padding: 32px 20px; border-radius: 12px; text-align: center; background: linear-gradient(155deg,#fff,#f7faff); box-shadow: inset 0 0 0 1px rgba(210,222,233,.75); }
  .invoice-pdf-icon { display: grid; width: 82px; height: 96px; place-items: center; margin-bottom: 24px; border-radius: 10px 20px 10px 10px; color: #fff; font-size: 22px; font-weight: 900; letter-spacing: 1px; background: linear-gradient(145deg,#ef5350,#d9363e); box-shadow: 0 14px 30px rgba(217,54,62,.22); }
  .invoice-pdf-mobile-card strong { color: #17283b; font-size: 21px; }
  .invoice-pdf-mobile-card p { margin: 8px 0 23px; color: #83909e; font-size: 14px; }
  .invoice-pdf-mobile-card a { display: flex; min-width: 210px; min-height: 46px; align-items: center; justify-content: center; border: 1px solid #b9d9fa; border-radius: 12px; color: #1477d4; font-weight: 800; text-decoration: none; background: #eef7ff; box-shadow: 0 8px 20px rgba(39,131,218,.12); }
  .invoice-pdf-mobile-card a:active { transform: scale(.98); background: #e3f1ff; }
}

body.modal-open { overflow: hidden; }
.announcement-modal { z-index: 260; }
.announcement-modal .modal-backdrop { background: rgba(9,18,32,.58); backdrop-filter: blur(12px); }
.announcement-dialog { position:relative; z-index:1; width:min(610px,calc(100vw - 32px)); max-height:calc(100vh - 30px); padding:30px 34px 28px; overflow:hidden; border:1px solid rgba(255,255,255,.8); border-radius:28px; text-align:center; background:radial-gradient(circle at 50% 0,rgba(83,164,255,.18),transparent 33%),linear-gradient(155deg,#fff,#f4f8ff); box-shadow:0 28px 90px rgba(15,37,73,.32); transform:translateY(14px) scale(.98); transition:transform .22s ease; }
.announcement-modal.open .announcement-dialog { transform:translateY(0) scale(1); }
.announcement-dialog-mark { display:grid; width:54px; height:54px; margin:0 auto 10px; place-items:center; border-radius:17px; color:#fff; font-size:28px; font-weight:900; background:linear-gradient(145deg,#258cef,#7162e9); box-shadow:0 12px 26px rgba(63,126,229,.28); }
.announcement-dialog-label { display:inline-flex; padding:5px 11px; border-radius:9px; color:#247dd1; font-size:10px; font-weight:850; letter-spacing:.12em; background:#e5f2ff; }
.announcement-dialog h2 { margin:11px 0 5px; color:#14243a; font-size:28px; }
.announcement-dialog-intro { margin:0 0 17px; color:#8190a2; font-size:13px; }
.announcement-scroll { height:min(350px,42vh); padding:20px 21px 0; overflow-y:auto; border:1px solid #d7e5f0; border-radius:17px; outline:0; text-align:left; background:rgba(255,255,255,.86); scrollbar-color:#8dbce9 #eef5fb; scrollbar-width:thin; }
.announcement-scroll:focus { border-color:#88bbea; box-shadow:0 0 0 4px rgba(52,143,230,.1); }
.announcement-public-content { min-height:calc(100% + 85px); color:#34475d; font-size:15px; font-weight:550; line-height:1.9; white-space:pre-wrap; overflow-wrap:anywhere; }
.announcement-read-end { display:flex; align-items:center; justify-content:center; gap:7px; margin:0 -21px; padding:15px; border-top:1px dashed #cfe0ec; color:#178a5c; font-size:12px; font-weight:800; background:#f1fbf6; }
.announcement-read-end span { display:grid; width:22px; height:22px; place-items:center; border-radius:50%; color:#fff; background:#24ae75; }
.announcement-scroll-hint { display:flex; align-items:center; justify-content:center; gap:7px; min-height:35px; color:#76889b; font-size:12px; transition:.18s ease; }
.announcement-scroll-hint span { animation:announcementArrow 1.1s ease-in-out infinite; }
.announcement-scroll-hint.complete { color:#168a5d; }
.announcement-scroll-hint.complete span { animation:none; }
.announcement-scroll-hint.complete span { font-size:0; }
.announcement-scroll-hint.complete span:after { font-size:13px; content:'✓'; }
.announcement-acknowledge { position:relative; width:100%; min-height:52px; overflow:hidden; border-radius:14px; color:#fff; font-size:16px; font-weight:850; background:linear-gradient(135deg,#278ef0,#725fe9); box-shadow:0 12px 27px rgba(64,120,226,.28); transition:.2s ease; }
.announcement-acknowledge:not(:disabled):before { position:absolute; top:0; bottom:0; left:-40%; width:30%; background:linear-gradient(90deg,transparent,rgba(255,255,255,.42),transparent); content:''; animation:announcementShine 2.2s ease-in-out infinite; transform:skewX(-18deg); }
.announcement-acknowledge:not(:disabled):hover { transform:translateY(-2px); filter:brightness(1.04); box-shadow:0 16px 34px rgba(64,120,226,.38); }
.announcement-acknowledge:disabled { color:#98a5b3; background:#e6ebf0; box-shadow:none; cursor:not-allowed; }
@keyframes announcementArrow { 50% { transform:translateY(4px); } }
@keyframes announcementShine { 0%,55% { left:-40%; } 100% { left:130%; } }
@media(max-width:720px){.announcement-dialog{width:calc(100vw - 24px);max-height:calc(100dvh - 20px);padding:22px 16px 18px;border-radius:23px}.announcement-dialog-mark{width:48px;height:48px;border-radius:15px;font-size:24px}.announcement-dialog h2{font-size:24px}.announcement-scroll{height:min(390px,45dvh);padding:17px 16px 0;border-radius:15px}.announcement-public-content{min-height:calc(100% + 80px);font-size:14px;line-height:1.85}.announcement-read-end{margin:0 -16px}.announcement-acknowledge{min-height:50px}}
