* {
  box-sizing: border-box;
}

:root {
  --bg: #03040b;
  --panel: rgba(17, 19, 34, 0.78);
  --panel-strong: rgba(12, 14, 28, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: rgba(247, 242, 255, 0.95);
  --muted: rgba(174, 178, 197, 0.8);
  --soft: rgba(218, 215, 234, 0.86);
  --blue: #159fff;
  --purple: #a82cff;
  --magenta: #ef4cff;
  --orange: #ff5b21;
  --green: #4f8f45;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body.theme-light {
  --text: #111827;
  --soft: #374151;
  --muted: #4b5563;
  background: #f7fff4;
}

button,
a,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.site-login-agreement {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin: 2px 0 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.site-login-agreement input {
  width: 14px;
  height: 14px;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.site-login-agreement a,
.site-footer a {
  color: #87c9ff;
}

.legal-page {
  padding: 128px 24px 80px;
}

.legal-inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-inner h1 {
  margin: 12px 0 10px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.legal-updated {
  margin: 0 0 26px;
  color: var(--muted);
}

.legal-card {
  margin-top: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.legal-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.legal-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(148, 48, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 82% 8%, rgba(29, 89, 255, 0.24), transparent 32rem),
    linear-gradient(180deg, #03040b 0%, #070716 38%, #05030a 100%);
}

.site-page > main {
  flex: 1 0 auto;
}

.site-page.light {
  background: linear-gradient(180deg, #fff8ef 0%, #ffffff 44%, #f6fff4 100%);
}

.site-header {
  position: relative;
  z-index: 30;
  width: min(100% - 48px, 1260px);
  min-height: 90px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 183px;
  height: 35px;
  max-width: min(183px, 42vw);
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 23px;
  line-height: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.brand em {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  line-height: 10px;
  font-style: normal;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.theme-light .brand em {
  color: #d5411d;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.site-nav .nav-disabled {
  color: rgba(197, 201, 216, 0.72);
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
}

.site-nav .nav-disabled {
  cursor: default;
}

.site-nav a.active,
.theme-light .site-nav a.active {
  color: #b78cff;
}

.theme-light .site-nav a,
.theme-light .site-nav .nav-disabled {
  color: #181515;
}

.nav-cta,
.account-chip,
.btn.primary,
.consult-banner {
  color: #fff;
  background: linear-gradient(135deg, #8b2cff 0%, #d12bff 100%);
  box-shadow: 0 12px 28px rgba(192, 38, 211, 0.34);
}

.nav-cta {
  min-width: 150px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta.light {
  background: #d5411d;
  box-shadow: 0 14px 30px rgba(213, 65, 29, 0.22);
}

.section {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1260px);
  margin: 0 auto;
  padding: 78px 0;
}

.hero {
  min-height: 660px;
  display: grid;
  align-items: center;
  padding-top: 20px;
}

.hero.compact {
  min-height: 470px;
  align-items: end;
  padding-bottom: 72px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.hero-copy.center {
  max-width: 100%;
  text-align: center;
  justify-self: center;
}

.hero-copy.wide {
  max-width: 820px;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1 {
  font-size: clamp(56px, 10vw, 140px);
  line-height: 1.05;
  font-weight: 900;
  color: var(--text);
}

.product-hero h1,
.about-hero h1,
.service-hero h1,
.cases-hero h1,
.glow-hero h1 {
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.18;
  font-weight: 900;
  color: var(--text);
}

h3 {
  font-size: 24px;
  line-height: 1.24;
  color: var(--soft);
}

p {
  color: var(--muted);
}

.lead {
  margin-top: 22px;
  max-width: 820px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: var(--soft);
}

.lead.accent {
  position: relative;
  padding-left: 24px;
}

.lead.accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 5px;
  height: 1.25em;
  border-radius: 4px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 91, 33, 0.55);
}

.hero-bg,
.case-aurora,
.product-glow,
.glow-image {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.image-home {
  inset: -130px -80px auto -80px;
  height: 760px;
  background:
    linear-gradient(90deg, rgba(3, 4, 11, 0.48), rgba(3, 4, 11, 0.08), rgba(3, 4, 11, 0.38)),
    url("/figma-site/assets/figma/home-bg.png") center / cover no-repeat;
  filter: saturate(1.1);
}

.image-service {
  inset: 140px -120px auto -120px;
  height: 900px;
  background:
    linear-gradient(180deg, rgba(3, 4, 11, 0.2), rgba(3, 4, 11, 0.9)),
    url("/figma-site/assets/figma/service-bg.png") center 24% / cover no-repeat;
}

.case-aurora {
  inset: -60px -160px auto -160px;
  height: 760px;
  background:
    radial-gradient(circle at 78% 8%, rgba(246, 240, 255, 0.72), transparent 18rem),
    radial-gradient(circle at 40% 34%, rgba(122, 80, 255, 0.52), transparent 24rem),
    linear-gradient(160deg, #05030a 20%, #1a1248 58%, #070716 100%);
}

.product-glow {
  inset: -90px -140px auto -140px;
  height: 790px;
  background:
    radial-gradient(circle at 50% 48%, rgba(19, 168, 255, 0.92), transparent 18rem),
    radial-gradient(circle at 74% 12%, rgba(78, 63, 255, 0.68), transparent 22rem),
    linear-gradient(135deg, #060810 0%, #071a70 52%, #05030a 100%);
}

.product-hero {
  min-height: 810px;
  align-items: start;
  padding-top: 120px;
  padding-bottom: 0;
}

.product-copy {
  position: relative;
  z-index: 3;
  width: 100%;
}

.product-heading {
  max-width: none;
}

.product-heading h1 {
  font-size: clamp(58px, 5.98vw, 86px);
  line-height: 1.05;
  font-weight: 900;
  white-space: nowrap;
}

.product-heading .lead {
  margin-top: 18px;
  margin-left: 12px;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 38px;
}

.product-heading .lead.accent {
  padding-left: 12px;
}

.product-heading .lead.accent::before {
  top: 7px;
  height: 25px;
}

.product-center {
  margin-top: 69px;
  text-align: center;
}

.glow-image {
  right: calc((100vw - min(100% - 48px, 1260px)) / -2);
  top: -90px;
  width: min(62vw, 860px);
  height: 650px;
  background:
    linear-gradient(90deg, #fff8ef 0%, rgba(255, 248, 239, 0.28) 52%, rgba(255, 248, 239, 0) 100%),
    url("/figma-site/assets/figma/glow-hero.png") center / cover no-repeat;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin-top: 110px;
}

.stats strong {
  display: block;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  color: var(--text);
}

.stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 54px;
}

.product-actions {
  justify-content: center;
  gap: 45px;
  margin-top: 36px;
}

.btn {
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.product-pill {
  width: 175px;
  min-height: 48px;
  height: 48px;
  padding: 0 10px;
  border: 1px solid rgba(232, 232, 232, 0.28);
  border-radius: 24px;
  box-shadow: 0 6px 4.3px rgba(0, 0, 0, 0.23);
  font-size: 23px;
  font-weight: 400;
  line-height: 27px;
}

.product-pill.dark {
  color: rgba(218, 215, 234, 0.84);
  background: #0c1155;
  border-color: rgba(232, 232, 232, 0.28);
}

.product-pill.primary {
  color: rgba(255, 255, 255, 0.84);
  background: #9c10a6;
  border-color: rgba(232, 232, 232, 0.28);
}

.btn.ghost,
.btn.dark {
  background: rgba(8, 10, 20, 0.58);
  border: 1px solid rgba(167, 139, 250, 0.44);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.btn.product-pill.dark {
  color: rgba(218, 215, 234, 0.84);
  background: #0c1155;
  border-color: rgba(232, 232, 232, 0.28);
  box-shadow: 0 6px 4.3px rgba(0, 0, 0, 0.23);
}

.btn.product-pill.primary {
  color: rgba(255, 255, 255, 0.84);
  background: #9c10a6;
  border-color: rgba(232, 232, 232, 0.28);
  box-shadow: 0 6px 4.3px rgba(0, 0, 0, 0.23);
}

.card-grid {
  display: grid;
  gap: 28px;
  margin-top: 42px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.info-card,
.entry-card,
.target-card,
.case-card,
.team-card,
.panel-section,
.product-note,
.mini-plugin,
.plugin-panel,
.support-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(17, 19, 34, 0.82), rgba(7, 8, 19, 0.72));
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.11), 0 18px 42px rgba(0, 0, 0, 0.34);
}

.info-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.info-card::before,
.case-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--magenta), #6d28d9);
}

.info-card span {
  display: block;
  margin-bottom: 28px;
  color: rgba(174, 178, 197, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.info-card p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 34px;
  margin-top: 38px;
}

.entry-card {
  min-height: 132px;
  padding: 30px 36px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.entry-card strong {
  display: block;
  color: var(--text);
  font-size: 27px;
}

.entry-card em {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  font-size: 17px;
}

.entry-card b {
  font-size: 34px;
}

.bottom-consult {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 80px;
  align-items: center;
}

.consult-banner {
  min-height: 86px;
  padding: 0 38px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
}

.qr-card {
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}

.qr-card img,
.glow-process img {
  border: 1px solid var(--orange);
  border-radius: 18px;
  background: #fff;
}

.service-stat {
  position: absolute;
  right: 0;
  top: 205px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 34px;
  align-items: end;
}

.service-stat strong {
  color: #fff;
  font-size: 38px;
  line-height: 1;
}

.service-stat span {
  color: rgba(217, 217, 232, 0.78);
  font-size: 12px;
}

.step-line {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.step-card {
  min-height: 138px;
  border: 1px solid var(--line);
  border-radius: 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  background: linear-gradient(135deg, rgba(17, 19, 34, 0.82), rgba(7, 8, 19, 0.72));
}

.step-card strong {
  font-size: 34px;
  color: var(--text);
}

.step-card span {
  margin-top: 12px;
  color: var(--soft);
  font-weight: 800;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.target-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.target-card {
  min-height: 86px;
  padding: 24px 30px;
  border-radius: 22px;
}

.target-card strong {
  display: block;
  color: var(--soft);
  font-size: 22px;
}

.target-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.panel-section {
  padding: 38px;
  border-radius: 34px;
}

.panel-copy,
.product-note p {
  max-width: 1120px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.7;
}

.case-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
}

.case-card {
  position: relative;
  padding: 28px 32px;
  border-radius: 28px;
}

.case-thumb {
  height: 250px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--soft);
  font-size: 24px;
  font-weight: 900;
  background:
    radial-gradient(circle at 76% 50%, rgba(124, 58, 237, 0.18), transparent 8rem),
    linear-gradient(145deg, rgba(17, 19, 34, 0.82), rgba(7, 8, 19, 0.72));
}

.case-meta {
  margin-top: 10px;
  color: rgba(174, 178, 197, 0.76);
  font-size: 15px;
  font-weight: 800;
}

.case-card p:last-child {
  margin-top: 18px;
  line-height: 1.55;
}

.team-card {
  min-height: 270px;
  padding: 30px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.photo-slot {
  height: 190px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--soft);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 1.25;
  background: linear-gradient(135deg, rgba(17, 19, 34, 0.88), rgba(7, 8, 19, 0.8));
}

.team-card p:last-child {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.55;
}

.product-title {
  margin-top: 0;
  font-size: clamp(22px, 2.16vw, 31px);
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.product-title strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(52px, 5.42vw, 78px);
  line-height: 1.18;
  font-weight: 900;
}

.product-handwriting {
  display: block;
  width: min(934px, 65vw);
  height: min(110px, 7.65vw);
  margin: 60px auto 0;
  object-fit: fill;
}

.product-demo {
  padding-top: 26px;
}

.handwriting {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Comic Sans MS", "KaiTi", cursive;
  font-size: clamp(34px, 6vw, 70px);
  line-height: 1.2;
  transform: rotate(-3deg);
}

.handwriting.light {
  max-width: 660px;
  color: #1f2937;
  font-size: clamp(28px, 4vw, 48px);
}

.section-kicker {
  margin-bottom: 22px;
  text-align: center;
  color: var(--soft);
  font-size: 22px;
}

.plugin-stage {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(280px, 360px) minmax(180px, 0.8fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.plugin-side h3 {
  margin-bottom: 14px;
  text-align: center;
  font-size: 20px;
}

.mini-plugin,
.plugin-panel {
  border-radius: 18px;
  background: #1f1f1f;
}

.mini-plugin {
  min-height: 290px;
  padding: 16px;
}

.mini-head {
  padding: 10px 12px;
  border-radius: 12px;
  color: #dceeff;
  background: #283443;
  font-weight: 900;
}

.mini-drop {
  height: 180px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #969da8;
  background: #303640;
  font-weight: 800;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #969da8;
}

.mini-row strong {
  color: #fff;
}

.mini-plugin button {
  width: 100%;
  height: 40px;
  margin-top: 18px;
  border-radius: 10px;
  color: #fff;
  background: #0d99ff;
  font-weight: 900;
}

.plugin-panel {
  padding: 20px;
  color: #fff;
}

.plugin-header {
  padding: 14px;
  border: 1px solid rgba(91, 159, 229, 0.42);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  background: linear-gradient(145deg, rgba(25, 52, 87, 0.98), rgba(22, 38, 58, 0.96));
}

.plugin-icon {
  border-radius: 12px;
  background: radial-gradient(circle, #0d99ff 0 18%, rgba(13, 153, 255, 0.18) 20%);
}

.plugin-header strong,
.plugin-header span,
.plugin-header em {
  display: block;
}

.plugin-header span {
  margin-top: 3px;
  font-size: 12px;
}

.plugin-header em {
  margin-top: 3px;
  color: #8fd0ff;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.plugin-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 18px;
}

.plugin-tabs b,
.plugin-tabs span {
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #30343a;
  font-weight: 900;
}

.plugin-tabs b {
  background: #0d99ff;
}

.plugin-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.plugin-tools button {
  min-height: 84px;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plugin-tools i {
  display: block;
  font-style: normal;
  font-size: 24px;
  font-weight: 900;
}

.plugin-tools span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
}

.plugin-ring {
  height: 116px;
  margin: 18px 0;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #272b32, #1e2128);
}

.plugin-ring span {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, #0d99ff 0 10%, #bbe8ff 12% 23%, #253449 24% 48%, rgba(255, 255, 255, 0.12) 49% 100%);
}

.account-wrap {
  position: relative;
}

.account-chip {
  height: 51px;
  min-height: 51px;
  padding: 9.6px 11.4px;
  border: 0.723px solid rgba(255, 236, 236, 0.28);
  border-radius: 55.677px;
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  text-align: left;
  background: rgba(48, 52, 58, 0.2);
  box-shadow: none;
}

#accountLogin {
  width: 99px;
}

#accountTrigger {
  width: 188px;
  height: 56px;
  border-color: rgba(68, 13, 195, 0.28);
  justify-content: flex-start;
  padding-left: 20.4px;
  padding-right: 20.4px;
}

.account-avatar {
  width: 31.922px;
  height: 31.922px;
  border-radius: 885.947px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2f6bff 6.173%, #244fe0 93.827%);
  overflow: hidden;
  flex: 0 0 auto;
}

.account-avatar img {
  display: block;
  width: 31.922px;
  height: 31.922px;
  max-width: none;
}

.account-text {
  min-width: 0;
  max-width: 106px;
}

.account-text strong,
.account-text em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-text strong {
  color: #f7faff;
  font-size: 11.529px;
  font-weight: 400;
  line-height: 15.076px;
}

.account-text em {
  margin-top: 3px;
  color: #0d99ff;
  font-size: 8.868px;
  font-weight: 800;
  line-height: 12.416px;
  font-style: normal;
}

.account-state {
  max-width: 64px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #dffcff;
  background: rgba(0, 217, 255, 0.14);
  border: 1px solid rgba(126, 239, 255, 0.28);
  font-size: 10px;
  font-weight: 900;
}

.account-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  width: min(320px, calc(100vw - 32px));
  padding: 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(8, 12, 28, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.account-menu-item {
  min-height: 48px;
  width: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(218, 215, 234, 0.82);
  background: transparent;
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
  text-align: left;
}

.account-menu-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.account-menu-item span {
  width: 22px;
  display: inline-grid;
  place-items: center;
  color: rgba(218, 215, 234, 0.72);
  font-size: 17px;
}

.account-menu-divider {
  height: 1px;
  margin: 14px 0;
  background: rgba(255, 255, 255, 0.08);
}

.account-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-row span,
.account-row strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-row span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.account-row strong {
  color: #fff;
  font-size: 13px;
  text-align: right;
}

.gift-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 8px;
  margin-top: 12px;
}

.gift-form input,
.site-login-card input {
  min-width: 0;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.gift-form button,
.site-login-submit,
#siteSendCode {
  height: 40px;
  border-radius: 12px;
  color: #fff;
  background: #1769ff;
  font-weight: 900;
}

.account-menu-item.account-admin,
.account-menu-item.account-logout {
  width: 100%;
  margin-top: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.account-menu-item.account-admin {
  color: rgba(218, 215, 234, 0.88);
}

.account-menu-item.account-logout {
  color: rgba(248, 159, 159, 0.95);
}

.account-message,
.site-login-message {
  min-height: 18px;
  margin-top: 10px;
  color: #8fd4ff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}

.site-login-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.site-login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
}

.site-login-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(180deg, rgba(21, 27, 46, 0.98), rgba(9, 12, 28, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.site-footer {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1260px);
  margin: 0 auto;
  padding: 24px 0 32px;
  color: rgba(150, 157, 168, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 18px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: center;
}

.site-footer strong {
  color: rgba(218, 215, 234, 0.82);
  font-weight: 700;
}

.site-footer a:hover {
  color: #8fd0ff;
}

.theme-light .site-footer {
  color: rgba(75, 85, 99, 0.72);
  border-top-color: rgba(17, 24, 39, 0.08);
}

.theme-light .site-footer strong {
  color: rgba(17, 24, 39, 0.82);
}

.site-login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-login-card h2 {
  font-size: 24px;
  line-height: 32px;
}

.site-login-card p {
  margin: 8px 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 22px;
}

.site-login-card label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.site-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 10px;
  align-items: end;
  margin-top: 14px;
}

.site-login-submit {
  width: 100%;
  margin-top: 14px;
}

#siteSendCode:disabled,
.site-login-submit:disabled,
.activation-submit:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.site-activation-modal {
  position: fixed;
  inset: 0;
  z-index: 105;
  display: grid;
  place-items: center;
  padding: 20px;
}

.activation-card {
  position: relative;
  z-index: 1;
  width: min(878px, calc(100vw - 40px));
  min-height: 665px;
  padding: 57px 9px 20px;
  border: 1px solid rgba(191, 208, 255, 0.16);
  border-radius: 34px;
  color: #fff;
  background: rgba(6, 11, 29, 0.72);
  box-shadow: 0 32px 44px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.activation-title {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
}

.activation-subtitle {
  margin: 8px auto 0;
  color: #9eb0dc;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}

.activation-main {
  display: grid;
  grid-template-columns: 548px 274px;
  gap: 36px;
  align-items: start;
  width: 858px;
  margin: 42px auto 0;
}

.activation-form-card,
.activation-result {
  min-height: 497px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(7, 18, 38, 0.72);
}

.activation-form-card {
  padding: 34px 40px 38px;
}

.activation-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 95px;
  gap: 18px 22px;
  align-items: start;
}

.activation-account-grid > div:not(.activation-qr) {
  min-width: 0;
}

.activation-account-grid span {
  display: block;
  color: #93a9db;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.activation-account-grid strong {
  display: block;
  min-width: 0;
  margin-top: 8px;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activation-qr {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  text-align: center;
}

.activation-qr img {
  display: block;
  width: 95px;
  height: 94px;
  border-radius: 7px;
  object-fit: cover;
}

.activation-qr em {
  display: block;
  margin-top: 7px;
  color: rgba(247, 242, 255, 0.92);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
}

.activation-gift-label {
  display: block;
  margin-top: 58px;
  color: #93a9db;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.activation-gift-input {
  display: block;
  width: 100%;
  height: 58px;
  margin-top: 10px;
  padding: 0 18px;
  border: 1px solid rgba(91, 108, 149, 0.28);
  border-radius: 13px;
  outline: none;
  color: #fff;
  background: rgba(7, 18, 38, 0.78);
  font-size: 14px;
  line-height: 58px;
}

.activation-gift-input::placeholder {
  color: #aab8e3;
}

.activation-submit {
  display: block;
  width: 100%;
  height: 58px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(90deg, #00a7ff 0%, #5139ff 55%, #a832ff 100%);
  box-shadow: 0 18px 48px rgba(32, 93, 255, 0.34);
  font-size: 15px;
  font-weight: 500;
}

.activation-form-card .account-message {
  min-height: 18px;
  margin-top: 10px;
  color: #8fd4ff;
  font-size: 12px;
  line-height: 18px;
}

.activation-result {
  padding: 43px 26px 32px;
  overflow: visible;
  text-align: center;
}

.activation-result h3 {
  margin: 0 0 18px;
  color: #21b9ff;
  font-size: 27px;
  font-weight: 900;
  line-height: 47px;
  text-align: center;
}

.activation-days {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  text-align: center;
}

.activation-days img {
  position: absolute;
  top: -28px;
  left: -46px;
  width: 184px;
  height: 176px;
  max-width: none;
  pointer-events: none;
}

.activation-days b {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.activation-result > strong {
  display: block;
  margin-top: 22px;
  color: #8ff2bc;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.activation-result p {
  margin: 0 auto 24px;
  color: #9eb0dc;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

.activation-benefit {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 210px;
  height: 44px;
  margin: 16px auto 0;
  padding: 0 18px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 500;
}

.activation-benefit img {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.activation-benefit span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.glow-hero {
  min-height: 620px;
  color: #111827;
}

.mission-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 34px max(24px, calc((100vw - 1260px) / 2));
  border: 1px solid rgba(254, 215, 170, 0.45);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 42px rgba(249, 115, 22, 0.08);
}

.mission-strip strong,
.mission-strip span {
  display: block;
}

.mission-strip strong {
  color: #111827;
  font-size: 28px;
}

.mission-strip span {
  margin-top: 10px;
  color: #4b5563;
  font-size: 17px;
}

.mission-strip b {
  color: #f97316;
  font-size: 28px;
  line-height: 1.3;
}

.glow-support {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}

.support-card {
  min-height: 470px;
  padding: 44px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
}

.support-card.orange {
  border-color: rgba(254, 215, 170, 0.65);
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.12);
}

.support-card.green {
  border-color: rgba(187, 247, 208, 0.65);
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.1);
}

.support-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.support-head span {
  color: #f97316;
  font-size: 54px;
  font-weight: 900;
}

.support-card.green .support-head span {
  color: var(--green);
}

.support-card h3 {
  color: #111827;
  font-size: 32px;
}

.support-card b {
  display: inline-flex;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: #f97316;
}

.support-card.green b {
  background: var(--green);
}

.support-card p {
  margin-top: 34px;
  color: #374151;
  font-size: 18px;
  line-height: 1.65;
}

.support-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #374151;
}

.support-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  background: #f97316;
  font-size: 12px;
}

.support-card.green li::before {
  background: var(--green);
}

.light-section h2,
.light-section p {
  color: #111827;
}

.light-section p {
  margin-top: 14px;
  color: #4b5563;
  font-size: 20px;
}

.glow-targets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.glow-target {
  min-height: 135px;
  padding: 26px;
  border: 1px solid rgba(254, 215, 170, 0.7);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.glow-target b {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f97316;
  background: #fff4e8;
}

.glow-target strong {
  color: #111827;
  font-size: 21px;
}

.glow-target span {
  color: #4b5563;
}

.glow-process {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(360px, auto);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  color: #fff;
  background: #111827;
  box-shadow: 0 20px 52px rgba(17, 24, 39, 0.12);
}

.glow-process h2 {
  color: #fff;
  font-size: 32px;
}

.glow-process p {
  margin-top: 12px;
  color: #d1d5db;
  line-height: 1.6;
}

.glow-process ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
}

.glow-process li {
  min-height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0 0;
  }

  .site-nav {
    justify-content: flex-start;
    order: 3;
    width: 100%;
  }

  .nav-cta,
  .account-wrap {
    justify-self: start;
  }

  .stats,
  .card-grid.four,
  .step-line,
  .glow-targets {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.two,
  .case-grid,
  .team-grid,
  .target-grid.three,
  .glow-support {
    grid-template-columns: 1fr;
  }

  .service-stat {
    position: static;
    margin-top: 32px;
    justify-self: start;
  }

  .plugin-stage {
    grid-template-columns: 1fr;
  }

  .plugin-side {
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }

  .plugin-panel {
    max-width: 380px;
    width: 100%;
    justify-self: center;
  }

  .glow-process {
    grid-template-columns: 140px 1fr;
  }

  .glow-process ol {
    grid-column: 1 / -1;
  }
}

@media (max-width: 940px) {
  .activation-card {
    padding-right: 16px;
    padding-left: 16px;
  }

  .activation-main {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 18px;
  }

  .activation-form-card {
    padding: 30px 26px;
  }

  .activation-benefit {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .site-header,
  .section {
    width: min(100% - 28px, 1260px);
  }

  .section {
    padding: 54px 0;
  }

  .hero,
  .hero.compact,
  .glow-hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 60px;
  }

  h1 {
    font-size: clamp(42px, 16vw, 74px);
  }

  .product-hero h1,
  .about-hero h1,
  .service-hero h1,
  .cases-hero h1,
  .glow-hero h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .stats,
  .entry-grid,
  .target-grid,
  .bottom-consult,
  .glow-process,
  .glow-process ol {
    grid-template-columns: 1fr;
  }

  .card-grid.four,
  .step-line,
  .glow-targets {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .product-actions {
    align-items: stretch;
  }

  .product-hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .product-heading h1 {
    white-space: normal;
  }

  .product-heading .lead {
    margin-left: 0;
    line-height: 1.5;
  }

  .product-center {
    margin-top: 42px;
  }

  .product-title strong {
    line-height: 1.08;
  }

  .product-handwriting {
    width: min(100%, 88vw);
    height: clamp(42px, 10.35vw, 72px);
    margin-top: 30px;
  }

  .product-actions {
    gap: 14px;
    margin-top: 30px;
  }

  .hero-actions .btn,
  .product-actions .btn {
    width: 100%;
  }

  .image-home,
  .image-service,
  .case-aurora,
  .product-glow,
  .glow-image {
    inset: 0 -80px auto -80px;
    height: 520px;
  }

  .glow-image {
    opacity: 0.42;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .case-thumb {
    height: 180px;
    font-size: 18px;
  }

  .support-card {
    min-height: 0;
    padding: 28px;
  }

  .mission-strip {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .glow-process img {
    width: 130px;
  }

  .site-code-row,
  .gift-form {
    grid-template-columns: 1fr;
  }

  .site-activation-modal {
    align-items: start;
    overflow: auto;
    padding: 14px;
  }

  .activation-card {
    width: 100%;
    min-height: 0;
    padding: 42px 16px 24px;
    border-radius: 26px;
  }

  .activation-title {
    font-size: 28px;
    line-height: 36px;
  }

  .activation-subtitle {
    max-width: 300px;
    font-size: 13px;
    line-height: 20px;
  }

  .activation-main {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .activation-form-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .activation-account-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .activation-account-grid strong {
    font-size: 18px;
    line-height: 25px;
  }

  .activation-qr {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .activation-gift-label {
    margin-top: 30px;
  }

  .activation-result {
    min-height: 360px;
    padding: 26px 20px;
  }

  .account-panel {
    right: auto;
    left: 0;
  }
}

/* Figma V2 gift-code validation modal frame: 15:5081 */
.site-activation-modal {
  padding: 16px;
}

.site-activation-modal .site-login-backdrop {
  background: rgba(2, 3, 8, 0.82);
}

.activation-card {
  width: min(640px, calc(100vw - 24px));
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: #fff;
  background: rgba(23, 26, 33, 0.96);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(13, 153, 255, 0.2);
  overflow: hidden;
}

.activation-card .site-login-close {
  position: absolute;
  top: 21px;
  right: 25px;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
}

.activation-head {
  min-height: 76px;
  padding: 16px 80px 15px 24px;
}

.activation-title {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
}

.activation-subtitle {
  margin: 4px 0 0;
  max-width: none;
  color: rgba(150, 157, 168, 0.9);
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}

.activation-main {
  display: grid;
  grid-template-columns: minmax(0, calc(100% - 200px)) 200px;
  gap: 0;
  align-items: stretch;
  width: 100%;
  min-height: 466px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.activation-form-card,
.activation-result {
  min-height: 466px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.activation-form-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.activation-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  overflow: hidden;
  text-align: center;
  background: rgba(8, 10, 22, 0.62);
}

.activation-section-label {
  margin: 0;
  color: rgba(150, 157, 168, 0.86);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1.32px;
}

.activation-account-card {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.activation-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0d99ff 0%, #0a5cff 100%);
  font-size: 14px;
  font-weight: 700;
}

.activation-account-card div {
  min-width: 0;
  flex: 1 1 auto;
}

.activation-account-card strong,
.activation-account-card em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activation-account-card strong {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
}

.activation-account-card em {
  margin-top: 2px;
  color: rgba(150, 157, 168, 0.92);
  font-size: 11px;
  font-style: normal;
  line-height: 16px;
}

.activation-account-card b {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border: 1px solid rgba(34, 197, 94, 0.24);
  border-radius: 999px;
  color: #85f2aa;
  background: rgba(34, 197, 94, 0.1);
  font-size: 11px;
  font-weight: 500;
  line-height: 22px;
}

.activation-divider {
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.1);
}

.activation-result .activation-divider {
  width: 152px;
  margin: 20px auto;
}

.activation-gift-label {
  display: block;
  margin: 0;
  color: rgba(150, 157, 168, 0.86);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1.32px;
}

.activation-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
}

.activation-code-row.is-success {
  grid-template-columns: 1fr;
}

.activation-gift-input {
  display: block;
  width: 100%;
  height: 41px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-family: Consolas, "SFMono-Regular", "Microsoft YaHei", monospace;
  font-size: 13px;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: 0.65px;
}

.activation-gift-input::placeholder {
  color: rgba(150, 157, 168, 0.72);
}

.activation-card.is-success .activation-gift-input {
  border-color: rgba(34, 197, 94, 0.45);
  color: rgba(255, 255, 255, 0.95);
}

.activation-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 41px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #0a7fd4 0%, #0d99ff 100%);
  box-shadow: 0 8px 10px rgba(13, 153, 255, 0.28);
  font-size: 13px;
  font-weight: 500;
}

.activation-submit:disabled {
  opacity: 0.4;
}

.activation-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 41px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(218, 215, 234, 0.84);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 500;
}

.activation-form-card .account-message {
  min-height: 18px;
  margin-top: 8px;
  color: #8fd4ff;
  font-size: 11px;
  line-height: 18px;
}

.activation-gift-hint {
  margin: auto 0 0;
  padding-top: 12px;
  color: rgba(150, 157, 168, 0.86);
  font-size: 11px;
  line-height: 16px;
  text-align: center;
}

.activation-gift-hint code {
  color: #8fd0ff;
  font-family: Consolas, "SFMono-Regular", "Microsoft YaHei", monospace;
  font-size: 11px;
}

.activation-days {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 10px;
  border: 4px solid #8fd0ff;
  border-radius: 999px;
  text-align: center;
}

.activation-days b {
  position: static;
  display: block;
  color: #8fd0ff;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.activation-days span {
  display: block;
  margin-top: 2px;
  color: rgba(150, 157, 168, 0.9);
  font-size: 10px;
  line-height: 15px;
}

.activation-pills {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 0;
}

.activation-pills span {
  display: inline-flex;
  align-items: center;
  height: 23px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 500;
  line-height: 23px;
}

.activation-pills .is-active {
  color: #85f2aa;
  background: rgba(34, 197, 94, 0.14);
}

.activation-benefit {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 35px;
  margin: 8px 0 0;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 500;
}

.activation-benefit span {
  display: grid;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  color: #8fd0ff;
  background: rgba(59, 130, 246, 0.15);
  font-size: 10px;
  line-height: 16px;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.activation-benefit strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activation-form-card .activation-section-label {
  margin: 0;
  font-size: 11px;
  line-height: 17px;
}

.activation-result > .activation-section-label {
  margin: 0 0 20px;
  font-size: 11px;
  line-height: 17px;
  text-align: center;
}

.activation-result .activation-divider + .activation-section-label {
  width: 152px;
  margin: 0;
  padding-bottom: 0;
  text-align: left;
}

.activation-card.is-confirming .activation-main,
.activation-card.is-confirming .activation-form-card,
.activation-card.is-confirming .activation-result {
  min-height: 485px;
}

.activation-valid-card {
  width: 100%;
  min-height: 143px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.05);
}

.activation-valid-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.activation-valid-title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.activation-check {
  display: grid;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid rgba(0, 201, 80, 0.4);
  border-radius: 999px;
  color: #86efac;
  background: rgba(0, 201, 80, 0.15);
  font-size: 9px;
  font-weight: 700;
  line-height: 14px;
}

.activation-valid-title strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #86efac;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activation-valid-head b {
  flex: 0 0 auto;
  height: 22px;
  padding: 0 10px;
  border: 1px solid rgba(134, 239, 172, 0.19);
  border-radius: 999px;
  color: #86efac;
  background: rgba(134, 239, 172, 0.09);
  font-size: 11px;
  font-weight: 700;
  line-height: 22px;
}

.activation-valid-card p {
  margin: 10px 0 0;
  color: rgba(134, 239, 172, 0.45);
  font-size: 11px;
  line-height: 17px;
}

.activation-valid-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.activation-valid-tags span {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border: 1px solid rgba(143, 208, 255, 0.19);
  border-radius: 999px;
  color: #8fd0ff;
  background: rgba(143, 208, 255, 0.09);
  font-size: 11px;
  font-weight: 700;
  line-height: 22px;
  white-space: nowrap;
}

.activation-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  margin-top: auto;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(173deg, #1d4ed8 0%, #3b82f6 100%);
  box-shadow: 0 6px 10px rgba(59, 130, 246, 0.22);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.activation-confirm:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}

.activation-success-card {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 73px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.05);
}

.activation-success-icon {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.1);
  font-size: 20px;
  line-height: 28px;
}

.activation-success-card div {
  min-width: 0;
}

.activation-success-card strong,
.activation-success-card p {
  display: block;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activation-success-card strong {
  color: #86efac;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.activation-success-card p {
  margin-top: 2px;
  color: rgba(134, 239, 172, 0.5);
  font-size: 12px;
  line-height: 18px;
}

.activation-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

@media (max-width: 760px) {
  .site-activation-modal {
    align-items: start;
    overflow: auto;
    padding: 12px;
  }

  .activation-card {
    width: min(640px, calc(100vw - 24px));
    min-height: 0;
    padding: 0;
    border-radius: 16px;
  }

  .activation-head {
    padding: 25px 20px 15px;
  }

  .activation-title {
    font-size: 14px;
    line-height: 20px;
  }

  .activation-subtitle {
    max-width: none;
    font-size: 11px;
    line-height: 17px;
  }

  .activation-main {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
  }

  .activation-form-card {
    min-height: 0;
    padding: 18px 18px 16px;
  }

  .activation-result {
    min-height: 0;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .activation-card.is-confirming .activation-main,
  .activation-card.is-confirming .activation-form-card,
  .activation-card.is-confirming .activation-result {
    min-height: 0;
  }

  .activation-account-card {
    padding: 12px;
  }

  .activation-account-card b {
    padding: 0 8px;
  }

  .activation-code-row {
    grid-template-columns: 1fr;
  }

  .activation-submit {
    width: 100%;
  }

  .activation-reset {
    width: 100%;
  }

  .activation-confirm {
    margin-top: 24px;
  }

  .activation-continue {
    margin-top: 24px;
  }
}

/* Figma V2 home frame: 15:3893 */
.site-page.dark {
  background:
    radial-gradient(circle at 63% -11%, rgba(30, 58, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 50% 34%, rgba(13, 153, 255, 0.07), transparent 32rem),
    radial-gradient(circle at -10% 84%, rgba(16, 17, 29, 0.5), transparent 18rem),
    linear-gradient(180deg, #03040b 0%, #070716 32%, #05030a 64%, #02030a 100%);
}

.site-header {
  width: 100%;
  min-height: 56px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto minmax(130px, 1fr);
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 8, 15, 0.95);
}

.brand {
  gap: 10px;
  justify-self: start;
}

.brand-logo {
  display: none;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0a7fd4 0%, #0d99ff 100%);
  box-shadow: 0 2px 4px rgba(13, 153, 255, 0.4);
}

.brand-mark img {
  width: 12px;
  height: 12px;
}

.brand strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 22.5px;
  font-weight: 800;
}

.site-nav {
  justify-content: center;
  gap: 4px;
  overflow: visible;
}

.site-nav a,
.site-nav .nav-disabled {
  position: relative;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  color: rgba(150, 157, 168, 0.8);
  font-size: 13px;
  line-height: 19.5px;
}

.site-nav a.active,
.theme-light .site-nav a.active {
  color: rgba(255, 255, 255, 0.95);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #0d99ff;
  transform: translateX(-50%);
}

.site-nav a[href="#glow"],
.site-nav .nav-disabled + a[href="#glow"] {
  color: #8fd0ff;
}

.account-wrap {
  justify-self: end;
}

.account-chip {
  width: auto;
  min-width: 107px;
  height: 38px;
  min-height: 38px;
  padding: 6px 12px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(48, 52, 58, 0.2);
  box-shadow: none;
}

#accountLogin,
#accountTrigger {
  width: auto;
  height: 38px;
  padding: 6px 12px;
  justify-content: flex-start;
}

.account-avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #0a7fd4 0%, #0d99ff 100%);
}

.account-avatar img {
  display: none;
}

.account-text {
  max-width: 80px;
}

.account-text strong {
  color: rgba(218, 215, 234, 0.84);
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
}

.account-text em {
  margin-top: 0;
  color: #0d99ff;
  font-size: 10px;
  line-height: 14px;
}

.account-caret {
  width: 10px;
  height: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.account-caret img,
.page-home .entry-card b img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.account-panel {
  top: calc(100% + 8px);
  width: min(300px, calc(100vw - 32px));
  border-radius: 14px;
  background: rgba(8, 12, 28, 0.98);
}

.page-home .section {
  width: min(100%, 1024px);
  padding-right: 40px;
  padding-left: 40px;
}

.page-home .home-hero {
  min-height: 590px;
  align-items: start;
  padding-top: 80px;
  padding-bottom: 48px;
}

.page-home .hero-copy {
  max-width: 944px;
}

.page-home .home-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  letter-spacing: 0.325px;
}

.page-home .home-kicker span {
  width: 6px;
  height: 20px;
  border-radius: 999px;
  background: #ff5b21;
  box-shadow: 0 0 14px #ff5b21;
}

.page-home h1 {
  width: max-content;
  margin-top: 22px;
  color: transparent;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(141, 208, 255, 0.88) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 100px;
  line-height: 1.06;
  font-weight: 900;
}

.page-home .lead {
  margin-top: 26px;
  max-width: none;
  color: rgba(218, 215, 234, 0.84);
  font-size: 18px;
  line-height: 31.5px;
}

.page-home .hero-actions {
  gap: 12px;
  margin-top: 39px;
}

.page-home .btn {
  min-height: 52px;
  padding: 0 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}

.page-home .btn.primary {
  border: 1px solid rgba(13, 153, 255, 0.35);
  background: linear-gradient(161deg, #0a7fd4 0%, #0d99ff 100%);
  box-shadow: 0 8px 10px rgba(13, 153, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-home .btn.ghost {
  color: rgba(218, 215, 234, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.page-home .stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 944px;
  min-height: 101px;
  margin-top: 66px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.page-home .stats div {
  min-width: 0;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .stats div:last-child {
  border-right: 0;
}

.page-home .stats strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 30px;
  line-height: 36px;
  font-weight: 900;
}

.page-home .stats span {
  margin-top: 4px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 13px;
  line-height: 19.5px;
}

.page-home .home-method-section {
  padding-top: 48px;
  padding-bottom: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .home-service-section {
  padding-top: 0;
  padding-bottom: 80px;
}

.section-label {
  color: rgba(150, 157, 168, 0.8);
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
  letter-spacing: 1.32px;
  text-transform: uppercase;
}

.page-home h2 {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 30px;
  line-height: 36px;
  font-weight: 800;
}

.page-home .card-grid {
  margin-top: 40px;
  gap: 16px;
}

.page-home .card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-home .info-card {
  min-height: 142px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(31, 31, 31, 0.88);
  box-shadow: none;
}

.page-home .info-card::before {
  content: none;
}

.page-home .info-card span {
  margin-bottom: 12px;
  color: #0d99ff;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  line-height: 16.5px;
}

.page-home .info-card h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 22.5px;
}

.page-home .info-card p {
  margin-top: 8px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 13px;
  line-height: 21.125px;
}

.page-home .entry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.page-home .entry-card {
  min-height: 80px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(31, 31, 31, 0.88);
  box-shadow: none;
}

.page-home .entry-card strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 22.5px;
}

.page-home .entry-card em {
  margin-top: 4px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 13px;
  line-height: 19.5px;
}

.page-home .entry-card b {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.page-home .bottom-consult {
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 0;
  padding-bottom: 96px;
}

.page-home .consult-banner {
  width: 100%;
  min-height: 160px;
  padding: 48px;
  border: 1px solid rgba(13, 153, 255, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(170deg, rgba(10, 127, 212, 0.9) 0%, rgba(13, 153, 255, 0.9) 100%);
  box-shadow: 0 16px 40px rgba(13, 153, 255, 0.25);
}

.page-home .consult-banner strong,
.page-home .consult-banner em {
  display: block;
  font-style: normal;
}

.page-home .consult-banner strong {
  color: #fff;
  font-size: 24px;
  line-height: 32px;
}

.page-home .consult-banner em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 22.5px;
}

.page-home .consult-banner a {
  min-height: 46px;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 0 18px;
  }

  .site-nav {
    justify-content: center;
    order: initial;
    width: auto;
    overflow-x: auto;
  }

  .account-wrap {
    justify-self: end;
  }

  .page-home .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
    grid-template-columns: 1fr auto;
    padding: 12px 14px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .page-home .section {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-home .home-hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .page-home h1 {
    font-size: clamp(52px, 18vw, 78px);
    white-space: normal;
  }

  .page-home .stats,
  .page-home .entry-grid,
  .page-home .card-grid.four {
    grid-template-columns: 1fr;
  }

  .page-home .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .page-home .stats div:last-child {
    border-bottom: 0;
  }

  .page-home .hero-actions,
  .page-home .consult-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .page-home .hero-actions .btn,
  .page-home .consult-banner a {
    width: 100%;
  }

  .page-home .consult-banner {
    padding: 28px;
  }
}

/* Figma V2 cases frame: 15:4057 */
.page-cases .section {
  width: min(100%, 1024px);
  padding-right: 40px;
  padding-left: 40px;
}

.page-cases .cases-page {
  padding-top: 80px;
  padding-bottom: 96px;
}

.page-cases .cases-page h1 {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 80px;
  line-height: 86.4px;
  font-weight: 800;
}

.page-cases .cases-lead {
  width: min(576px, 100%);
  margin-top: 16px;
  color: rgba(218, 215, 234, 0.84);
  font-size: 16px;
  line-height: 24px;
}

.page-cases .figma-case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19.5px 20px;
  margin-top: 56px;
}

.page-cases .figma-case-card {
  min-height: 274px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(31, 31, 31, 0.88);
  box-shadow: none;
}

.page-cases .figma-case-card::before {
  content: none;
}

.page-cases .case-visual {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: var(--case-bg);
}

.page-cases .case-visual::before,
.page-cases .case-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-cases .case-visual::before {
  opacity: 0.34;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
}

.page-cases .case-visual::after {
  background:
    radial-gradient(circle at 32% 48%, rgba(var(--case-accent-rgb), 0.22), transparent 27%),
    radial-gradient(circle at 80% 18%, rgba(var(--case-accent-rgb), 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18));
}

.page-cases .case-marker {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(var(--case-accent-rgb), 0.28);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(var(--case-accent-rgb), 0.14);
}

.page-cases .case-marker i {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--case-accent);
}

.page-cases .case-bars {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.page-cases .case-bars b,
.page-cases .case-bars em {
  display: block;
  border-radius: 999px;
  background: var(--case-accent);
}

.page-cases .case-bars b {
  width: 202px;
  height: 6px;
}

.page-cases .case-bars em {
  width: 126px;
  height: 4px;
  opacity: 0.45;
}

.page-cases .case-body {
  padding: 20px;
}

.page-cases .case-meta {
  margin-top: 0;
  color: rgba(150, 157, 168, 0.8);
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
}

.page-cases .figma-case-card h3 {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 800;
  line-height: 22.5px;
}

.page-cases .figma-case-card p:last-child {
  margin-top: 6px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 13px;
  line-height: 19.5px;
}

@media (max-width: 760px) {
  .page-cases .section {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-cases .cases-page {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .page-cases .cases-page h1 {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 1.08;
  }

  .page-cases .figma-case-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .page-cases .case-bars b {
    width: min(202px, 58vw);
  }

  .page-cases .case-bars em {
    width: min(126px, 36vw);
  }
}

/* Figma V2 product frame: 15:4207 */
.page-product .section {
  width: min(100%, 1024px);
  padding-right: 40px;
  padding-left: 40px;
}

.page-product .product-page {
  padding-top: 80px;
  padding-bottom: 32px;
}

.page-product .product-page h1 {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 80px;
  line-height: 86.4px;
  font-weight: 800;
}

.page-product .product-lead {
  width: min(576px, 100%);
  margin-top: 16px;
  color: rgba(218, 215, 234, 0.84);
  font-size: 16px;
  line-height: 24px;
}

.page-product .product-tab-row {
  width: 944px;
  max-width: 100%;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-product .product-tabs {
  width: max-content;
  min-height: 46px;
  padding: 4.546px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
}

.page-product .product-tab {
  height: 37.092px;
  padding: 0 16.546px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(150, 157, 168, 0.8);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  white-space: nowrap;
}

.page-product .product-tab.active {
  color: #8fd0ff;
  border-color: rgba(13, 153, 255, 0.3);
  background: rgba(13, 153, 255, 0.15);
}

.page-product .product-intro {
  width: 944px;
  max-width: 100%;
  margin-top: 40px;
  padding-bottom: 80px;
}

.page-product .product-summary {
  min-height: 105.092px;
  padding: 24.546px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(31, 31, 31, 0.88);
}

.page-product .product-summary p {
  width: min(895px, 100%);
  color: rgba(218, 215, 234, 0.84);
  font-size: 15px;
  line-height: 28px;
}

.page-product .product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11.5px 12px;
  margin-top: 32px;
}

.page-product .product-feature-card {
  min-height: 73.092px;
  padding: 16.546px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(31, 31, 31, 0.88);
}

.page-product .product-feature-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #8fd0ff;
  background: rgba(59, 130, 246, 0.1);
  font-size: 16px;
  line-height: 24px;
}

.page-product .product-feature-card h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 700;
  line-height: 19.5px;
}

.page-product .product-feature-card p {
  margin-top: 2px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.page-product .product-download-panel,
.page-product .product-user-center {
  width: 944px;
  max-width: 100%;
  margin-top: 40px;
  padding-bottom: 80px;
}

.page-product .product-download-layout {
  display: grid;
  grid-template-columns: minmax(0, 512px) 148px;
  gap: 32px;
  align-items: start;
}

.page-product .product-download-main h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}

.page-product .product-download-main > p {
  width: min(512px, 100%);
  margin: 12px 0 32px;
  color: rgba(218, 215, 234, 0.84);
  font-size: 14px;
  line-height: 22.75px;
}

.page-product .product-download-main > p strong {
  color: #2dd4bf;
  font-weight: 800;
}

.page-product .product-download-button {
  width: 100%;
  height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(174.5deg, #1d4ed8 0%, #3b82f6 100%);
  box-shadow: 0 6px 10px rgba(59, 130, 246, 0.22);
  text-decoration: none;
  font-size: 14px;
  line-height: 21px;
  font-weight: 800;
}

.page-product .product-download-button:hover {
  background: linear-gradient(174.5deg, #2563eb 0%, #0d99ff 100%);
  transform: translateY(-1px);
}

.page-product .product-download-meta {
  width: 100%;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(31, 31, 31, 0.88);
  color: rgba(150, 157, 168, 0.8);
  font-family: Consolas, "SFMono-Regular", "Liberation Mono", monospace;
  font-size: 11px;
  line-height: 20px;
}

.page-product .product-download-meta p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-product .product-download-qr {
  width: 148px;
  padding: 20.546px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(31, 31, 31, 0.88);
}

.page-product .product-download-qr p {
  margin: 0;
  color: rgba(218, 215, 234, 0.84);
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.page-product .product-download-qr img {
  width: 128px;
  height: 128px;
  padding: 6px;
  border-radius: 12px;
  object-fit: contain;
  box-sizing: border-box;
  background: #fff;
}

.page-product .product-download-qr span {
  color: rgba(150, 157, 168, 0.8);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  white-space: normal;
}

.page-product .product-login-gate {
  width: min(420px, 100%);
  min-height: 252px;
  padding: 28px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(13, 153, 255, 0.18);
  border-radius: 14px;
  background: rgba(31, 31, 31, 0.88);
}

.page-product .product-login-gate span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #2f6bff 6.173%, #244fe0 93.827%);
  font-size: 18px;
  font-weight: 900;
}

.page-product .product-login-gate h2 {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 27px;
}

.page-product .product-login-gate p {
  margin-top: 8px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 13px;
  line-height: 20px;
}

.page-product .product-login-gate button {
  height: 40px;
  margin-top: 18px;
  padding: 0 20px;
  border: 1px solid rgba(13, 153, 255, 0.35);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(172.85deg, #0a7fd4 0%, #0d99ff 100%);
  box-shadow: 0 4px 8px rgba(13, 153, 255, 0.3);
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 800;
}

.page-product .user-center-main {
  display: grid;
  grid-template-columns: 307px minmax(0, 1fr);
  gap: 12px;
}

.page-product .user-days-card,
.page-product .user-info-card,
.page-product .user-benefit-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(31, 31, 31, 0.88);
}

.page-product .user-days-card {
  min-height: 274px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(14, 18, 36, 0.9);
}

.page-product .user-days-ring {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 4px solid #8fd0ff;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(13, 153, 255, 0.18);
}

.page-product .user-days-ring strong,
.page-product .user-days-ring span {
  display: block;
  text-align: center;
}

.page-product .user-days-ring strong {
  color: #8fd0ff;
  font-size: 30px;
  line-height: 30px;
  font-weight: 900;
}

.page-product .user-days-ring span {
  margin-top: 2px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 10px;
  line-height: 15px;
}

.page-product .user-status-pills {
  display: flex;
  gap: 6px;
  align-items: center;
}

.page-product .user-status-pills span {
  padding: 3px 10px;
  border: 1px solid rgba(143, 208, 255, 0.19);
  border-radius: 999px;
  color: #8fd0ff;
  background: rgba(143, 208, 255, 0.09);
  font-size: 11px;
  line-height: 16.5px;
  font-weight: 700;
}

.page-product .user-status-pills span.is-active {
  color: #86efac;
  border-color: rgba(134, 239, 172, 0.19);
  background: rgba(134, 239, 172, 0.09);
}

.page-product .user-days-card button {
  width: 100%;
  height: 36px;
  margin-top: 2px;
  border: 1px solid rgba(13, 153, 255, 0.22);
  border-radius: 10px;
  color: #8fd0ff;
  background: rgba(13, 153, 255, 0.12);
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 800;
}

.page-product .user-info-card {
  min-height: 274px;
  padding: 24px;
}

.page-product .user-info-card .section-label,
.page-product .user-benefits-label {
  margin: 0;
}

.page-product .user-info-list {
  padding-top: 12px;
}

.page-product .user-info-list div {
  min-height: 43px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-product .user-info-list span,
.page-product .user-info-list strong {
  font-size: 13px;
  line-height: 19.5px;
  white-space: nowrap;
}

.page-product .user-info-list span {
  color: rgba(150, 157, 168, 0.8);
  font-weight: 400;
}

.page-product .user-info-list strong {
  overflow: hidden;
  color: rgba(218, 215, 234, 0.84);
  font-weight: 600;
  text-align: right;
  text-overflow: ellipsis;
}

.page-product .user-info-list .username-row {
  align-items: flex-start;
}

.page-product .username-display,
.page-product .username-editor {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.page-product .username-display {
  flex: 1;
}

.page-product .username-display strong {
  min-width: 0;
}

.page-product .username-display button,
.page-product .username-editor button {
  flex: 0 0 auto;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(13, 153, 255, 0.24);
  border-radius: 8px;
  color: #8fd0ff;
  background: rgba(13, 153, 255, 0.1);
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}

.page-product .username-editor {
  flex: 1;
  flex-wrap: wrap;
}

.page-product .username-editor input {
  min-width: 170px;
  flex: 1 1 180px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  line-height: 19.5px;
  outline: none;
}

.page-product .username-editor input:focus {
  border-color: rgba(13, 153, 255, 0.52);
  box-shadow: 0 0 0 3px rgba(13, 153, 255, 0.12);
}

.page-product .username-editor button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.page-product .username-message {
  margin: 10px 0 0;
  color: #8fd0ff;
  font-size: 12px;
  line-height: 18px;
}

.page-product .user-benefits-label {
  padding-top: 32px;
}

.page-product .user-benefits-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-product .user-benefit-card {
  min-height: 45px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-color: rgba(59, 130, 246, 0.18);
}

.page-product .user-benefit-card span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  color: #8fd0ff;
  background: rgba(59, 130, 246, 0.15);
  font-size: 9px;
  line-height: 13.5px;
  font-weight: 800;
}

.page-product .user-benefit-card strong {
  min-width: 0;
  overflow: hidden;
  color: rgba(218, 215, 234, 0.84);
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-product .user-benefit-card.is-disabled {
  opacity: 0.35;
  border-color: rgba(255, 255, 255, 0.1);
}

.page-product .user-benefit-card.is-disabled span {
  color: rgba(150, 157, 168, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1100px) {
  .page-product .product-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-product .user-center-main {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .page-product .section {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-product .product-page {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .page-product .product-page h1 {
    font-size: 56px;
    line-height: 60px;
  }

  .page-product .product-tab-row {
    align-items: stretch;
  }

  .page-product .product-tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .page-product .product-tabs::-webkit-scrollbar {
    display: none;
  }

  .page-product .product-intro {
    width: 100%;
  }

  .page-product .product-download-panel,
  .page-product .product-user-center {
    width: 100%;
  }

  .page-product .product-download-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-product .product-download-qr {
    width: 100%;
    max-width: 220px;
  }

  .page-product .product-download-main > p {
    width: 100%;
  }

  .page-product .user-center-main,
  .page-product .user-benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-product .user-days-card,
  .page-product .user-info-card {
    min-height: 0;
  }

  .page-product .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .page-product .product-feature-card p {
    white-space: normal;
  }
}

/* Figma V2 about frame: 15:4339 */
.page-about .section {
  width: min(100%, 1024px);
  padding-right: 40px;
  padding-left: 40px;
}

.page-about .about-page {
  padding-top: 80px;
  padding-bottom: 96px;
}

.page-about .about-page h1 {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 80px;
  line-height: 86.4px;
  font-weight: 800;
}

.page-about .about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14.5px 16px;
  margin-top: 56px;
}

.page-about .about-person-card {
  height: 139.092px;
  min-height: 139.092px;
  padding: 20.546px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(31, 31, 31, 0.88);
}

.page-about .about-person-avatar {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--about-accent-rgb), 0.21);
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--about-accent);
  background: rgba(var(--about-accent-rgb), 0.13);
  font-size: 14px;
  font-weight: 800;
  line-height: 21px;
}

.page-about .about-person-copy {
  min-width: 0;
}

.page-about .about-person-copy h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 800;
  line-height: 22.5px;
}

.page-about .about-person-copy span {
  width: max-content;
  min-height: 22px;
  margin-top: 2px;
  padding: 2.546px 10.546px;
  border: 1px solid rgba(143, 208, 255, 0.19);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #8fd0ff;
  background: rgba(143, 208, 255, 0.09);
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
  white-space: nowrap;
}

.page-about .about-person-copy p {
  width: min(367px, 100%);
  margin-top: 8px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 13px;
  line-height: 21.125px;
}

.page-about .about-divider {
  width: 100%;
  height: 1px;
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.1);
}

.page-about .about-principle-label {
  margin-top: 48px;
}

.page-about .about-page h2 {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}

.page-about .about-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11.5px 12px;
  margin-top: 32px;
}

.page-about .about-principle-card {
  height: 124px;
  min-height: 124px;
  padding: 20.546px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(31, 31, 31, 0.88);
}

.page-about .about-principle-card span {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(13, 153, 255, 0.19);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #8fd0ff;
  background: rgba(13, 153, 255, 0.13);
  font-size: 11px;
  font-weight: 800;
  line-height: 16.5px;
}

.page-about .about-principle-card h3 {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 800;
  line-height: 21px;
}

.page-about .about-principle-card p {
  margin-top: 6px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 13px;
  line-height: 19.5px;
}

.page-about .about-location-card {
  min-height: 139.092px;
  margin-top: 56px;
  padding: 28.546px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(31, 31, 31, 0.88);
}

.page-about .about-location-card h2 {
  margin-top: 0;
  font-size: 20px;
  line-height: 28px;
}

.page-about .about-location-card p {
  width: min(887px, 100%);
  margin-top: 8px;
  color: rgba(218, 215, 234, 0.84);
  font-size: 14px;
  line-height: 22.75px;
}

@media (max-width: 1100px) {
  .page-about .about-principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-about .section {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-about .about-page {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .page-about .about-page h1 {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 1.08;
  }

  .page-about .about-team-grid,
  .page-about .about-principle-grid {
    grid-template-columns: 1fr;
  }

  .page-about .about-person-card {
    height: auto;
    min-height: 0;
  }

  .page-about .about-principle-card {
    height: auto;
  }
}

/* Figma V2 knowledge frame: 15:4489 */
.page-knowledge .knowledge-page {
  width: 100%;
  min-height: calc(100vh - 56px);
  padding: 0 24px;
  display: grid;
  place-items: center;
}

.page-knowledge .knowledge-center {
  width: min(360px, 100%);
  text-align: center;
}

.page-knowledge .knowledge-center h1 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 72px;
  line-height: 72px;
  font-weight: 800;
  white-space: nowrap;
}

.page-knowledge .knowledge-center p {
  margin-top: 16px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 760px) {
  .page-knowledge .knowledge-page {
    min-height: calc(100vh - 106px);
    padding: 0 20px;
  }

  .page-knowledge .knowledge-center h1 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 1.08;
    white-space: normal;
  }
}

/* Figma V2 glow frame, matched from high-resolution canvas crop */
.page-glow .site-page.light {
  background:
    radial-gradient(circle at 64% 10%, rgba(255, 113, 18, 0.12), transparent 23rem),
    radial-gradient(circle at 44% 56%, rgba(84, 141, 96, 0.08), transparent 23rem),
    linear-gradient(180deg, #fff8ef 0%, #fffaf5 45%, #ffffff 100%);
}

.page-glow .site-header {
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.page-glow .brand-mark {
  background: linear-gradient(135deg, #ff7a1a 0%, #ff5b21 100%);
  box-shadow: 0 2px 8px rgba(255, 91, 33, 0.28);
}

.page-glow .brand strong {
  color: #111827;
}

.page-glow .site-nav a,
.page-glow .site-nav .nav-disabled {
  color: rgba(17, 24, 39, 0.72);
}

.page-glow .site-nav a.active,
.page-glow .site-nav a[href="#glow"] {
  color: #111827;
}

.page-glow .site-nav a.active::after {
  background: #ff6b14;
}

.page-glow .account-chip {
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.page-glow .account-avatar {
  background: #111827;
}

.page-glow .account-text strong {
  color: rgba(17, 24, 39, 0.8);
}

.page-glow .glow-page {
  min-height: calc(100vh - 56px);
  color: #111827;
}

.page-glow .glow-page-shell {
  width: min(100%, 1024px);
  margin: 0 auto;
  padding: 80px 40px 96px;
}

.page-glow .glow-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
}

.page-glow .glow-kicker span {
  width: 6px;
  height: 20px;
  border-radius: 999px;
  background: #ff6b14;
  box-shadow: 0 0 14px rgba(255, 107, 20, 0.55);
}

.page-glow .glow-page h1 {
  margin-top: 22px;
  color: #111827;
  font-size: 80px;
  line-height: 86.4px;
  font-weight: 900;
}

.page-glow .glow-lead {
  width: min(650px, 100%);
  margin-top: 20px;
  color: rgba(17, 24, 39, 0.78);
  font-size: 18px;
  line-height: 32px;
}

.page-glow .glow-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 36px;
}

.page-glow .glow-button {
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.page-glow .glow-button.primary {
  color: #fff;
  background: #ff6b14;
  box-shadow: 0 18px 28px rgba(255, 107, 20, 0.24);
}

.page-glow .glow-button.secondary {
  color: #ff6b14;
  border: 1px solid rgba(255, 107, 20, 0.2);
  background: rgba(255, 107, 20, 0.06);
}

.page-glow .glow-mission-card {
  width: min(744px, 100%);
  min-height: 118px;
  margin-top: 48px;
  padding: 32px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 18px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 54px rgba(17, 24, 39, 0.08);
}

.page-glow .glow-mission-card h2 {
  color: #111827;
  font-size: 24px;
  line-height: 32px;
  font-weight: 900;
}

.page-glow .glow-mission-card p {
  margin-top: 10px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 14px;
  line-height: 22px;
}

.page-glow .glow-mission-card strong,
.page-glow .glow-mission-card span,
.page-glow .glow-mission-card em {
  display: block;
}

.page-glow .glow-mission-card strong {
  flex: 0 0 auto;
  min-width: 146px;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
}

.page-glow .glow-mission-card span {
  color: #ff6b14;
}

.page-glow .glow-mission-card em {
  color: #4f8f45;
  font-style: normal;
}

.page-glow .glow-support-grid {
  width: min(744px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.page-glow .glow-support-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
}

.page-glow .glow-support-card.orange {
  border: 1px solid rgba(255, 107, 20, 0.18);
}

.page-glow .glow-support-card.green {
  border: 1px solid rgba(79, 143, 69, 0.18);
}

.page-glow .glow-support-card span {
  color: var(--tone, #ff6b14);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
  font-weight: 800;
}

.page-glow .glow-support-card.orange {
  --tone: #ff6b14;
}

.page-glow .glow-support-card.green {
  --tone: #4f8f45;
}

.page-glow .glow-support-card b {
  width: max-content;
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  display: block;
  color: #fff;
  background: var(--tone);
  font-size: 13px;
  line-height: 19.5px;
}

.page-glow .glow-support-card h3 {
  margin-top: 24px;
  color: #111827;
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
}

.page-glow .glow-support-card p {
  margin-top: 10px;
  color: rgba(17, 24, 39, 0.66);
  font-size: 14px;
  line-height: 23px;
}

@media (max-width: 760px) {
  .page-glow .glow-page-shell {
    padding: 56px 20px 72px;
  }

  .page-glow .glow-page h1 {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 1.08;
  }

  .page-glow .glow-actions,
  .page-glow .glow-mission-card {
    align-items: stretch;
    flex-direction: column;
  }

  .page-glow .glow-button {
    width: 100%;
  }

  .page-glow .glow-support-grid {
    grid-template-columns: 1fr;
  }
}

/* Figma V2 login modal frame: 15:4722 */
.site-login-modal {
  padding: 16px;
  align-items: center;
  justify-items: center;
  overflow-y: auto;
  overflow-x: hidden;
}

.site-login-backdrop {
  background: rgba(2, 3, 8, 0.82);
  backdrop-filter: none;
}

.site-login-card {
  width: min(383.992px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  min-height: 451.297px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: #fff;
  background: rgba(23, 26, 33, 0.96);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.75);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: rgba(150, 157, 168, 0.45) transparent;
}

.site-login-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(13, 153, 255, 0.2);
}

.site-login-head {
  min-height: 87px;
  padding: 28px 28px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.site-login-head h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 28px;
  font-weight: 800;
}

.site-login-head p {
  margin: 4px 0 0;
  color: rgba(150, 157, 168, 0.8);
  font-size: 13px;
  line-height: 19.5px;
}

.site-login-close {
  position: static;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 10px;
  color: rgba(150, 157, 168, 0.9);
  background: transparent;
  font-size: 16px;
  line-height: 28px;
  display: grid;
  place-items: center;
}

.site-login-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.site-login-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.site-login-body {
  padding: 24px 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-login-tabs {
  height: 42px;
  padding: 2px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.site-login-tabs button {
  min-width: 0;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(150, 157, 168, 0.8);
  background: transparent;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 700;
}

.site-login-tabs button.active {
  color: #8fd0ff;
  border-color: rgba(13, 153, 255, 0.3);
  background: rgba(13, 153, 255, 0.15);
}

.site-login-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
}

.site-login-card input {
  width: 100%;
  height: 40.568px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  outline: none;
}

.site-login-card input::placeholder {
  color: rgba(255, 255, 255, 0.47);
}

.site-login-card input:focus {
  border-color: rgba(13, 153, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(13, 153, 255, 0.12);
}

.site-login-card .site-code-row {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 94px;
  gap: 8px;
  align-items: center;
}

.site-login-card #siteSendCode {
  width: 94px;
  height: 40.568px;
  border: 1px solid rgba(13, 153, 255, 0.3);
  border-radius: 10px;
  color: #8fd0ff;
  background: rgba(13, 153, 255, 0.15);
  font-size: 12px;
  font-weight: 800;
}

.site-login-note {
  margin: -4px 0 0;
  color: rgba(150, 157, 168, 0.78);
  font-size: 12px;
  line-height: 18px;
}

.site-login-submit {
  width: 100%;
  height: 42px;
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(172.85deg, #0a7fd4 0%, #0d99ff 100%);
  box-shadow: 0 4px 8px rgba(13, 153, 255, 0.3);
  font-size: 14px;
  line-height: 21px;
  font-weight: 800;
}

.site-login-message {
  min-height: 18px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  color: rgba(150, 157, 168, 0.8);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  word-break: break-word;
}

.site-login-message button {
  padding: 0;
  border: 0;
  color: #8fd0ff;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

#siteSendCode:disabled,
.site-login-submit:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .site-login-modal {
    padding: 12px;
  }

  .site-login-card {
    width: min(384px, calc(100vw - 24px));
  }

  .site-login-head {
    padding: 24px 22px 20px;
  }

  .site-login-body {
    padding: 20px 22px 18px;
  }

  .site-login-card .site-code-row {
    grid-template-columns: minmax(0, 1fr) 86px;
  }

  .site-login-card #siteSendCode {
    width: 86px;
    font-size: 11px;
  }
}

/* Figma V2 admin overview frame: 15:5768 */
.page-admin {
  background: #02030a;
}

.admin-page {
  min-height: 100vh;
  display: flex;
  color: rgba(218, 215, 234, 0.84);
  background:
    radial-gradient(circle at 83% -8%, rgba(13, 153, 255, 0.08), transparent 21rem),
    linear-gradient(180deg, #03040b 0%, #070716 32%, #05030a 64%, #02030a 100%);
  position: relative;
  overflow: hidden;
}

.admin-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 0.12%, transparent 0.12%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0%, transparent 0%);
}

.admin-sidebar,
.admin-workspace {
  position: relative;
  z-index: 1;
}

.admin-sidebar {
  width: 220px;
  min-height: 100vh;
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  background: rgba(8, 10, 20, 0.98);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-brand {
  min-height: 63px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-brand-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #0a7fd4 0%, #0d99ff 100%);
  box-shadow: 0 2px 4px rgba(13, 153, 255, 0.4);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.admin-brand strong,
.admin-brand em {
  display: block;
  white-space: nowrap;
}

.admin-brand strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  line-height: 16.25px;
  font-weight: 800;
}

.admin-brand em {
  margin-top: 1px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 10px;
  line-height: 12.5px;
  font-style: normal;
}

.admin-connection {
  padding: 12px 16px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 11px;
  line-height: 16.5px;
  font-weight: 600;
}

.admin-status span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ef4444;
}

.admin-status.is-connected {
  color: #86efac;
}

.admin-status.is-connected span {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.admin-connection p {
  margin: 8px 0 0;
  color: rgba(150, 157, 168, 0.72);
  font-size: 11px;
  line-height: 16.5px;
}

.admin-token-row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
}

.admin-token-row input,
.admin-token-row button {
  height: 30px;
  border-radius: 10px;
  font-size: 11px;
}

.admin-token-row input {
  min-width: 0;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  font-family: Cousine, Consolas, "SFMono-Regular", monospace;
  outline: none;
}

.admin-token-row input::placeholder {
  color: rgba(255, 255, 255, 0.47);
}

.admin-token-row button {
  padding: 0 11px;
  border: 1px solid rgba(13, 153, 255, 0.3);
  color: #8fd0ff;
  background: rgba(13, 153, 255, 0.15);
  font-weight: 800;
}

.admin-nav {
  flex: 1 1 auto;
  min-height: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  scrollbar-width: none;
}

.admin-nav::-webkit-scrollbar {
  display: none;
}

.admin-nav-item {
  width: 203px;
  min-height: 45px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(150, 157, 168, 0.8);
  background: transparent;
  text-decoration: none;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 700;
}

.admin-nav-item:disabled {
  cursor: default;
}

.admin-nav-item.active {
  color: #8fd0ff;
  border-color: rgba(13, 153, 255, 0.22);
  background: rgba(13, 153, 255, 0.12);
}

.admin-nav-icon {
  width: 16px;
  color: currentColor;
  opacity: 0.7;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.admin-back {
  min-height: 60px;
  margin-top: auto;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(150, 157, 168, 0.8);
  text-decoration: none;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 700;
}

.admin-back span {
  width: 14px;
  color: rgba(150, 157, 168, 0.9);
  font-size: 18px;
  line-height: 14px;
}

.admin-workspace {
  min-width: 0;
  flex: 1 1 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-page-header {
  min-height: 90px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-page-header p {
  margin: 0;
  color: rgba(150, 157, 168, 0.8);
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.admin-page-header h1 {
  margin: 0;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
}

.admin-page-header > span {
  color: rgba(150, 157, 168, 0.8);
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.admin-content {
  flex: 1 1 auto;
  padding: 24px 28px 32px;
  overflow: auto;
}

.admin-content.admin-route-adminUsers {
  padding-bottom: 0;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.admin-stat-card {
  height: 98px;
  min-height: 0;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(18, 20, 36, 0.85);
}

.admin-stat-card span,
.admin-stat-card strong,
.admin-stat-card em {
  display: block;
}

.admin-stat-card span {
  color: rgba(150, 157, 168, 0.8);
  font-size: 11px;
  line-height: 16.5px;
}

.admin-stat-card strong {
  margin-top: 6px;
  color: var(--admin-tone, #8fd0ff);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 24px;
  line-height: 29px;
  font-weight: 800;
}

.admin-stat-card em {
  color: rgba(150, 157, 168, 0.8);
  font-size: 11px;
  line-height: 16.5px;
  font-style: normal;
}

.tone-blue {
  --admin-tone: #8fd0ff;
}

.tone-orange {
  --admin-tone: #ff9f7c;
}

.tone-violet {
  --admin-tone: #c084fc;
}

.tone-amber {
  --admin-tone: #fcd34d;
}

.tone-green,
.tone-mint {
  --admin-tone: #86efac;
}

.admin-panels {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.admin-panel {
  min-height: 352px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(18, 20, 36, 0.85);
}

.admin-panel h2 {
  margin: 0;
  color: rgba(218, 215, 234, 0.84);
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 800;
}

.admin-audit-list,
.admin-order-list {
  margin-top: 16px;
}

.admin-audit-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-audit-row > span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #0d99ff;
}

.admin-audit-row strong,
.admin-audit-row em,
.admin-order-row strong,
.admin-order-row em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-audit-row strong {
  color: #8fd0ff;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.admin-audit-row em,
.admin-order-row em {
  color: rgba(150, 157, 168, 0.8);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  line-height: 16.5px;
  font-style: normal;
}

.admin-order-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-order-row strong {
  color: rgba(218, 215, 234, 0.84);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.admin-order-row > span {
  color: rgba(255, 255, 255, 0.95);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}

.admin-order-row b {
  padding: 3px 9px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
  font-size: 11px;
  line-height: 16.5px;
  white-space: nowrap;
}

.admin-order-row b.order-refunded {
  color: #ff9f7c;
  border-color: rgba(255, 91, 33, 0.3);
  background: rgba(255, 91, 33, 0.12);
}

.admin-order-row b.order-pending {
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.12);
}

.admin-codes-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.admin-filter-tabs {
  height: 36px;
  padding: 3px;
  display: inline-flex;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(18, 20, 36, 0.78);
}

.admin-filter-tabs button {
  height: 28px;
  min-width: 58px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(150, 157, 168, 0.8);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.admin-filter-tabs button.active {
  color: #8fd0ff;
  border-color: rgba(13, 153, 255, 0.3);
  background: rgba(13, 153, 255, 0.15);
}

.admin-primary-action {
  height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(13, 153, 255, 0.35);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(172.85deg, #0a7fd4 0%, #0d99ff 100%);
  box-shadow: 0 4px 8px rgba(13, 153, 255, 0.3);
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}

.admin-codes-table {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(5, 7, 16, 0.34);
  overflow: auto hidden;
  scrollbar-width: none;
}

.admin-codes-table::-webkit-scrollbar {
  display: none;
}

.admin-code-head,
.admin-code-row {
  min-width: 940px;
  display: grid;
  grid-template-columns: 48px minmax(330px, 2.1fr) 100px 68px minmax(340px, 1.7fr) 120px;
  align-items: center;
}

.admin-code-head {
  min-height: 34px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(18, 20, 36, 0.45);
  font-size: 11px;
  line-height: 16.5px;
}

.admin-code-head span {
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-code-row {
  min-height: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-code-check {
  width: 48px;
  min-height: 60px;
  display: grid;
  place-items: center;
}

.admin-code-check input {
  width: 14px;
  height: 14px;
  margin: 0;
  appearance: none;
  border: 1px solid rgba(150, 157, 168, 0.55);
  border-radius: 3px;
  background: transparent;
}

.admin-code-row > strong {
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  color: #8fd0ff;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-code-row > b {
  justify-self: start;
  padding: 3px 9px;
  border: 1px solid rgba(13, 153, 255, 0.3);
  border-radius: 8px;
  color: #8fd0ff;
  background: rgba(13, 153, 255, 0.12);
  font-size: 11px;
  line-height: 16.5px;
  white-space: nowrap;
}

.admin-code-row > b.code-destroyed {
  color: rgba(252, 165, 165, 0.9);
  border-color: rgba(239, 68, 68, 0.28);
  background: rgba(239, 68, 68, 0.1);
}

.admin-code-row > span {
  color: rgba(218, 215, 234, 0.84);
  font-size: 13px;
  line-height: 19.5px;
}

.admin-code-row > div:not(.admin-code-actions) {
  min-width: 0;
  padding: 0 12px;
}

.admin-code-row em,
.admin-code-row small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-code-row em {
  color: rgba(218, 215, 234, 0.84);
  font-size: 13px;
  line-height: 19.5px;
  font-style: normal;
}

.admin-code-row small {
  color: rgba(150, 157, 168, 0.8);
  font-size: 11px;
  line-height: 16.5px;
}

.admin-code-actions {
  padding: 0 12px;
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.admin-code-actions button {
  height: 22px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  line-height: 16.5px;
}

.admin-code-actions button.danger {
  color: rgba(252, 165, 165, 0.85);
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.08);
}

.admin-orders-table {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(5, 7, 16, 0.34);
  overflow: auto hidden;
  scrollbar-width: none;
}

.admin-orders-table::-webkit-scrollbar {
  display: none;
}

.admin-order-head,
.admin-order-table-row {
  min-width: 1120px;
  display: grid;
  grid-template-columns: 180px 180px minmax(380px, 1fr) 80px 100px 78px 130px;
  align-items: center;
}

.admin-order-head {
  min-height: 34px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(18, 20, 36, 0.45);
  font-size: 11px;
  line-height: 16.5px;
}

.admin-order-head span {
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-order-table-row {
  min-height: 61px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-order-table-row > strong {
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  color: #8fd0ff;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  line-height: 16.5px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-order-table-row > div:not(.admin-order-actions) {
  min-width: 0;
  padding: 0 12px;
}

.admin-order-table-row em,
.admin-order-table-row small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-order-table-row em {
  color: rgba(218, 215, 234, 0.84);
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
}

.admin-order-table-row small {
  color: rgba(150, 157, 168, 0.8);
  font-size: 11px;
  line-height: 16.5px;
}

.admin-order-table-row > span {
  color: rgba(255, 255, 255, 0.95);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 800;
}

.admin-order-table-row > b {
  justify-self: start;
  padding: 3px 9px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
  font-size: 11px;
  line-height: 16.5px;
  white-space: nowrap;
}

.admin-order-table-row > b.order-refunded {
  color: #ff9f7c;
  border-color: rgba(255, 91, 33, 0.3);
  background: rgba(255, 91, 33, 0.12);
}

.admin-order-table-row > b.order-pending,
.admin-order-table-row > b.invoice-pending {
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.12);
}

.admin-order-table-row > b.invoice-plain {
  color: rgba(150, 157, 168, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.admin-order-actions {
  padding: 0 12px;
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.admin-order-actions button {
  flex: 0 0 auto;
  height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  line-height: 16.5px;
  white-space: nowrap;
}

.admin-order-actions button.refund {
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.08);
}

.admin-redeems-table {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(5, 7, 16, 0.34);
  overflow: auto hidden;
  scrollbar-width: none;
}

.admin-redeems-table::-webkit-scrollbar {
  display: none;
}

.admin-redeem-head,
.admin-redeem-row {
  min-width: 760px;
  display: grid;
  grid-template-columns: 160px 200px 90px 80px 130px minmax(140px, 1fr);
  align-items: center;
}

.admin-redeem-head {
  min-height: 34px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(18, 20, 36, 0.45);
  font-size: 11px;
  line-height: 16.5px;
}

.admin-redeem-head span {
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-redeem-row {
  min-height: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-redeem-row > strong,
.admin-redeem-row > span,
.admin-redeem-row > em {
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-redeem-row > strong {
  color: #8fd0ff;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.admin-redeem-row > span {
  color: rgba(218, 215, 234, 0.84);
  font-size: 12px;
  line-height: 18px;
}

.admin-redeem-row > em {
  color: rgba(150, 157, 168, 0.8);
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
}

.admin-redeem-row > b {
  justify-self: start;
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  line-height: 16.5px;
  white-space: nowrap;
}

.admin-redeem-row > b.tier-pro {
  color: #8fd0ff;
  border-color: rgba(13, 153, 255, 0.3);
  background: rgba(13, 153, 255, 0.12);
}

.admin-redeem-row > b.tier-team {
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.12);
}

.admin-payments-grid {
  width: 100%;
  max-width: 1448px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.admin-payment-card {
  min-width: 0;
  min-height: 128px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(18, 20, 36, 0.85);
}

.admin-payment-head,
.admin-payment-title,
.admin-payment-callback {
  display: flex;
  align-items: center;
}

.admin-payment-head {
  min-width: 0;
  justify-content: space-between;
  gap: 20px;
}

.admin-payment-title {
  min-width: 0;
  gap: 10px;
}

.admin-payment-title > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(7, 193, 96, 0.25);
  border-radius: 10px;
  color: #07c160;
  background: rgba(7, 193, 96, 0.13);
  font-size: 14px;
  line-height: 21px;
  font-weight: 900;
}

.admin-payment-card.tone-alipay .admin-payment-title > span {
  color: #1677ff;
  border-color: rgba(22, 119, 255, 0.25);
  background: rgba(22, 119, 255, 0.13);
}

.admin-payment-title strong,
.admin-payment-title em {
  display: block;
  white-space: nowrap;
}

.admin-payment-title strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 21px;
  font-weight: 800;
}

.admin-payment-title em {
  color: rgba(150, 157, 168, 0.8);
  font-size: 11px;
  line-height: 16.5px;
  font-style: normal;
}

.admin-payment-head > b {
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  line-height: 16.5px;
  white-space: nowrap;
}

.admin-payment-callback {
  min-width: 0;
  gap: 8px;
}

.admin-payment-callback code {
  min-width: 0;
  height: 34px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(0, 0, 0, 0.3);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  line-height: 16.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-payment-callback button {
  height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  line-height: 16.5px;
  font-weight: 700;
}

.admin-payment-query {
  margin-top: 24px;
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(18, 20, 36, 0.85);
}

.admin-payment-query h2,
.admin-payment-query p {
  margin: 0;
}

.admin-payment-query h2 {
  color: rgba(218, 215, 234, 0.84);
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 800;
}

.admin-payment-query p {
  margin-top: 8px;
  color: rgba(150, 157, 168, 0.8);
  font-size: 13px;
  line-height: 19.5px;
}

.admin-payment-query code {
  color: #8fd0ff;
  font-family: Consolas, "SFMono-Regular", monospace;
}

.admin-audit-table {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(5, 7, 16, 0.34);
  overflow: auto hidden;
  scrollbar-width: none;
}

.admin-audit-table::-webkit-scrollbar {
  display: none;
}

.admin-audit-head,
.admin-audit-table-row {
  min-width: 760px;
  display: grid;
  grid-template-columns: 140px 88px 200px 172px minmax(120px, 1fr);
  align-items: center;
}

.admin-audit-head {
  min-height: 34px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(18, 20, 36, 0.45);
  font-size: 11px;
  line-height: 16.5px;
}

.admin-audit-head span {
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-audit-table-row {
  min-height: 59px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-audit-table-row > strong,
.admin-audit-table-row > code,
.admin-audit-table-row > span {
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-audit-table-row > strong {
  color: #8fd0ff;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.admin-audit-table-row > b {
  justify-self: start;
  margin-left: 12px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  line-height: 16.5px;
  white-space: nowrap;
}

.admin-audit-table-row > b.actor-admin {
  color: #8fd0ff;
  border-color: rgba(13, 153, 255, 0.3);
  background: rgba(13, 153, 255, 0.12);
}

.admin-audit-table-row > div {
  min-width: 0;
  padding: 0 12px;
}

.admin-audit-table-row em,
.admin-audit-table-row small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-audit-table-row em {
  color: rgba(150, 157, 168, 0.8);
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
}

.admin-audit-table-row small,
.admin-audit-table-row > code {
  color: rgba(150, 157, 168, 0.8);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  line-height: 16.5px;
}

.admin-audit-table-row > span {
  color: rgba(150, 157, 168, 0.8);
  font-size: 12px;
  line-height: 18px;
}

.admin-users-toolbar {
  margin-bottom: 14px;
}

.admin-users-toolbar input {
  width: 300px;
  max-width: 100%;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(218, 215, 234, 0.9);
  background: rgba(18, 20, 36, 0.78);
  font-size: 12px;
  outline: none;
}

.admin-users-toolbar input::placeholder {
  color: rgba(150, 157, 168, 0.68);
}

.admin-users-table {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(5, 7, 16, 0.34);
  overflow: auto hidden;
  scrollbar-width: none;
}

.admin-users-table::-webkit-scrollbar {
  display: none;
}

.admin-user-head,
.admin-user-row {
  min-width: 960px;
  display: grid;
  grid-template-columns: 150px 200px 90px 90px 110px 90px 60px minmax(100px, 1fr);
  align-items: center;
}

.admin-user-head {
  min-height: 34px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(18, 20, 36, 0.45);
  font-size: 11px;
  line-height: 16.5px;
}

.admin-user-head span {
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-user-row {
  min-height: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-user-row > strong,
.admin-user-row > span,
.admin-user-row > em {
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-user-row > strong {
  color: rgba(255, 255, 255, 0.95);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.admin-user-row > span {
  color: rgba(218, 215, 234, 0.84);
  font-size: 12px;
  line-height: 18px;
}

.admin-user-row > em {
  color: rgba(150, 157, 168, 0.8);
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
}

.admin-user-row > b {
  justify-self: start;
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  line-height: 16.5px;
  white-space: nowrap;
}

.admin-user-row > b.tier-pro {
  color: #8fd0ff;
  border-color: rgba(13, 153, 255, 0.3);
  background: rgba(13, 153, 255, 0.12);
}

.admin-user-row > b.tier-team {
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.12);
}

.admin-user-row > b.user-active {
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.admin-user-row > b.user-cancelled {
  color: rgba(252, 165, 165, 0.9);
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}

.admin-user-row > b.user-expired {
  color: rgba(150, 157, 168, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.admin-user-actions {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.admin-user-actions button {
  height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(150, 157, 168, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  line-height: 16.5px;
  white-space: nowrap;
}

.admin-user-actions button.extend {
  color: #8fd0ff;
  border-color: rgba(13, 153, 255, 0.22);
  background: rgba(13, 153, 255, 0.08);
}

@media (max-width: 1180px) {
  .admin-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .admin-page {
    min-height: 100vh;
    flex-direction: column;
    overflow: auto;
  }

  .admin-sidebar {
    width: 100%;
    min-height: 0;
    flex-basis: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .admin-workspace {
    min-height: 0;
  }

  .admin-brand,
  .admin-connection,
  .admin-back {
    flex-shrink: 0;
  }

  .admin-nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .admin-nav-item {
    width: auto;
    min-width: max-content;
  }

  .admin-back {
    min-height: 44px;
  }

  .admin-page-header {
    min-height: 78px;
    padding: 18px 20px;
  }

  .admin-page-header > span {
    display: none;
  }

  .admin-content {
    padding: 20px;
  }

  .admin-payments-grid {
    grid-template-columns: 1fr;
  }

  .admin-payment-card {
    min-height: 132px;
  }

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

  .admin-stat-card {
    min-height: 92px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .admin-token-row {
    grid-template-columns: minmax(0, 1fr) 58px;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    padding: 16px;
  }

  .admin-order-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .admin-order-row b {
    grid-column: 2;
  }
}
