:root {
  --bg: #f8f7fa;
  --surface: #ffffff;
  --surface-soft: #f4f3ff;
  --text: #444050;
  --heading: #2f2b3d;
  --muted: #6f6b7d;
  --muted-2: #a8aaae;
  --border: #e6e6e8;
  --primary: #7367f0;
  --primary-dark: #5e50ee;
  --primary-soft: #f0efff;
  --cyan: #00cfe8;
  --green: #28c76f;
  --amber: #ff9f43;
  --red: #ea5455;
  --shadow-xs: 0 0.125rem 0.375rem rgba(47, 43, 61, 0.08);
  --shadow: 0 0.25rem 1.125rem rgba(47, 43, 61, 0.08);
  --shadow-lg: 0 0.75rem 2rem rgba(47, 43, 61, 0.12);
  --radius: 6px;
  --font: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

/* Vuexy fidelity refresh: local tokens, typography, icons, and dashboard polish. */
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../vendor/public-sans/files/public-sans-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../vendor/public-sans/files/public-sans-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../vendor/public-sans/files/public-sans-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../vendor/public-sans/files/public-sans-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../vendor/public-sans/files/public-sans-latin-800-normal.woff2") format("woff2");
}

:root {
  --bg: #f8f7fa;
  --surface: #fff;
  --surface-soft: #f3f2ff;
  --text: #5d596c;
  --heading: #2f2b3d;
  --muted: #6f6b7d;
  --muted-2: #a8aaae;
  --border: #dbdade;
  --border-soft: #ebeaf0;
  --primary: #7367f0;
  --primary-dark: #655bd3;
  --primary-soft: #eeecff;
  --cyan: #00cfe8;
  --green: #28c76f;
  --amber: #ff9f43;
  --red: #ea5455;
  --shadow-xs: 0 0.125rem 0.375rem rgba(47, 43, 61, 0.08);
  --shadow: 0 0.25rem 1.125rem rgba(47, 43, 61, 0.08);
  --shadow-lg: 0 0.875rem 2.25rem rgba(47, 43, 61, 0.14);
  --radius: 6px;
  --font: "Public Sans", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

body {
  background: #f8f7fa;
  color: var(--text);
  font-family: var(--font);
}

.ti {
  display: inline-block;
  font-size: 1.15em;
  line-height: 1;
  vertical-align: -0.125em;
}

.container {
  width: min(1280px, calc(100% - 52px));
}

.site-header {
  border-bottom-color: rgba(219, 218, 222, 0.72);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0.125rem 0.375rem rgba(47, 43, 61, 0.04);
}

.nav {
  min-height: 64px;
}

.brand-logo,
.brand {
  gap: 12px;
}

.brand-logo strong,
.brand > span:last-child {
  font-size: 16px;
  font-weight: 700;
}

.brand-logo small,
.brand small {
  color: #8a8798;
  font-size: 12px;
}

.logo-glyph,
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #7367f0 0%, #4f8cff 56%, #00cfe8 100%);
  box-shadow: 0 0.5rem 1.125rem rgba(115, 103, 240, 0.28);
  font-size: 23px;
}

.nav-links {
  gap: 8px;
  color: #5d596c;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 12px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(115, 103, 240, 0.08);
}

.nav-links a.active::after {
  bottom: -10px;
  right: 16px;
  left: 16px;
  height: 3px;
}

.btn {
  min-height: 38px;
  border-color: #dbdade;
  border-radius: 6px;
  padding: 0.5rem 1.125rem;
  color: #5d596c;
  background: #fff;
  box-shadow: 0 0.125rem 0.375rem rgba(47, 43, 61, 0.08);
  font-weight: 600;
}

.btn-primary {
  border-color: #7367f0;
  color: #fff;
  background: linear-gradient(135deg, #7367f0, #6658e9);
  box-shadow: 0 0.25rem 0.75rem rgba(115, 103, 240, 0.42);
}

.btn-outline {
  border-color: rgba(115, 103, 240, 0.45);
  color: #7367f0;
  background: #fff;
  box-shadow: none;
}

.vuexy-hero {
  padding: 58px 0 20px;
  background:
    radial-gradient(circle at 72% 28%, rgba(115, 103, 240, 0.1), transparent 24%),
    radial-gradient(circle at 92% 22%, rgba(0, 207, 232, 0.08), transparent 22%),
    linear-gradient(180deg, #fff 0%, #fbfbfd 58%, #f8f7fa 100%);
}

.vuexy-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.8fr);
  min-height: 350px;
  gap: 56px;
}

.hero-copy h1 {
  color: #171321;
  font-size: clamp(42px, 4.35vw, 58px);
  line-height: 1.08;
  font-weight: 800;
}

.hero-copy p {
  max-width: 560px;
  margin-top: 18px;
  color: #6f6b7d;
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 28px;
}

.orbit-demo {
  min-height: 350px;
}

.phone-mock {
  top: 10px;
  width: 154px;
  height: 292px;
  border-width: 8px;
  border-color: #efedf9;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #fbfbff);
  box-shadow: 0 1.25rem 3rem rgba(47, 43, 61, 0.14);
}

.phone-mock strong {
  font-size: 15px;
}

.play-button {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  font-size: 24px;
}

.coin {
  right: 22px;
  bottom: 38px;
  width: 48px;
  height: 48px;
  font-size: 17px;
}

.orbit-line {
  top: 80px;
  width: 200px;
  height: 164px;
}

.orbit-left {
  left: 12px;
}

.orbit-right {
  right: 8px;
}

.node-upload {
  top: 128px;
  left: 20px;
}

.node-user {
  top: 126px;
  right: 0;
}

.node-income {
  right: 162px;
  bottom: 10px;
}

.bubble-icon {
  width: 68px;
  height: 68px;
  border-color: rgba(115, 103, 240, 0.15);
  color: #7367f0;
  background: #fff;
  box-shadow: 0 0.75rem 1.75rem rgba(47, 43, 61, 0.1);
  font-size: 28px;
}

.orbit-node strong {
  color: #171321;
  font-size: 14px;
}

.section {
  padding: 56px 0;
}

.section-tight {
  padding: 28px 0;
}

.vuexy-section-card,
.stats-strip,
.admin-mini,
.card,
.panel,
.stat-card,
.table-card,
.split-card {
  border-color: rgba(219, 218, 222, 0.84);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0.25rem 1.125rem rgba(47, 43, 61, 0.08);
}

.vuexy-section-card {
  padding: 30px 26px;
}

.center-title h2,
.section-title h2,
.page-head h1 {
  color: #2f2b3d;
  font-weight: 800;
}

.center-title h2 {
  font-size: clamp(26px, 2.5vw, 34px);
}

.center-title p,
.section-title p,
.page-head p {
  color: #6f6b7d;
}

.process-card {
  min-height: 136px;
  border-color: #ebeaf0;
  box-shadow: 0 0.125rem 0.375rem rgba(47, 43, 61, 0.06);
}

.process-icon,
.icon,
.stat-dot {
  flex: none;
  color: #7367f0;
  background: #eeecff;
  box-shadow: none;
}

.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #7367f0, #8f85ff);
  box-shadow: 0 0.5rem 1.125rem rgba(115, 103, 240, 0.3);
  font-size: 24px;
}

.process-icon.green {
  color: #fff;
  background: linear-gradient(135deg, #28c76f, #1fba62);
}

.process-arrow {
  color: #7367f0;
  font-size: 24px;
}

.channel-card {
  border-color: #ebeaf0;
  box-shadow: 0 0.125rem 0.5rem rgba(47, 43, 61, 0.06);
}

.channel-card h3 {
  color: #2f2b3d;
  font-size: 19px;
}

.channel-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  font-size: 26px;
}

.stats-strip {
  padding: 20px 0;
}

.stats-strip strong {
  font-size: 25px;
}

.app-shell {
  grid-template-columns: 250px minmax(0, 1fr);
}

.sidebar {
  border-right-color: rgba(219, 218, 222, 0.7);
  padding: 18px 14px;
  background: #fff;
}

.sidebar .brand {
  margin: 0 8px 20px;
}

.side-section {
  margin: 20px 12px 8px;
  color: #a8aaae;
  font-size: 12px;
  font-weight: 700;
}

.side-link {
  min-height: 40px;
  border-radius: 6px;
  padding: 9px 12px;
  color: #5d596c;
  font-weight: 600;
}

.side-link .icon {
  width: 28px;
  height: 28px;
  color: currentColor;
  background: transparent;
  font-size: 18px;
}

.side-link:hover {
  color: #7367f0;
  background: rgba(115, 103, 240, 0.08);
}

.side-link.active {
  color: #fff;
  background: linear-gradient(135deg, #7367f0, #5e50ee);
  box-shadow: 0 0.25rem 0.875rem rgba(115, 103, 240, 0.34);
}

.topbar {
  min-height: 58px;
  margin: 14px 18px 0;
  border-color: rgba(219, 218, 222, 0.8);
  border-radius: 8px;
  box-shadow: 0 0.25rem 1.125rem rgba(47, 43, 61, 0.08);
}

.search {
  min-width: min(420px, 100%);
  border-color: transparent;
  background: #f8f7fa;
}

.search span {
  color: #a8aaae;
}

.page {
  padding: 22px 18px 28px;
}

.stat-grid {
  gap: 16px;
}

.stat-card {
  padding: 18px;
}

.stat-top .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #7367f0;
  background: #eeecff;
  font-size: 22px;
}

.stat-card:nth-child(2) .stat-top .icon {
  color: #00a8bf;
  background: rgba(0, 207, 232, 0.14);
}

.stat-card:nth-child(3) .stat-top .icon {
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.12);
}

.stat-card:nth-child(4) .stat-top .icon {
  color: #e36f00;
  background: rgba(255, 159, 67, 0.16);
}

.stat-value {
  color: #2f2b3d;
  font-size: 26px;
  font-weight: 700;
}

.trend {
  color: #28c76f;
  font-size: 12px;
}

.table-head {
  min-height: 54px;
}

th {
  background: #f8f7fa;
  color: #6f6b7d;
  font-size: 12px;
  letter-spacing: 0;
}

td {
  color: #5d596c;
}

.badge {
  border-radius: 6px;
}

.tabs {
  gap: 7px;
}

.tab {
  border-color: transparent;
  background: #f4f4f6;
  color: #6f6b7d;
  font-weight: 600;
}

.tab.active {
  color: #fff;
  background: #7367f0;
}

.timeline-item .icon,
.flowstep .icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.flowstep {
  border-color: #ebeaf0;
}

.admin-flow-card {
  min-height: 246px;
}

.flow-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.flow-tabs span {
  border-radius: 6px;
  padding: 7px 12px;
  color: #6f6b7d;
  background: #f4f4f6;
  font-size: 12px;
  font-weight: 700;
}

.flow-tabs .active {
  color: #fff;
  background: #7367f0;
}

.division-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(88px, 1fr));
  gap: 10px;
  align-items: end;
  padding: 18px 0 6px;
}

.division-node {
  min-height: 74px;
  border: 1px solid #dbdade;
  border-radius: 8px;
  padding: 10px 8px;
  background: #fff;
  text-align: center;
}

.division-node strong {
  display: block;
  color: #2f2b3d;
  font-size: 13px;
}

.division-node b {
  display: block;
  margin-top: 4px;
  color: #7367f0;
  font-size: 18px;
}

.division-node small {
  color: #6f6b7d;
  font-weight: 700;
}

.division-node.primary {
  border-color: rgba(115, 103, 240, 0.28);
  background: #f6f5ff;
}

.division-node.cyan {
  border-color: rgba(0, 207, 232, 0.36);
  background: rgba(0, 207, 232, 0.06);
}

.division-node.amber {
  border-color: rgba(255, 159, 67, 0.36);
  background: rgba(255, 159, 67, 0.06);
}

.division-node.green {
  border-color: rgba(40, 199, 111, 0.36);
  background: rgba(40, 199, 111, 0.06);
}

.division-node.promoter {
  align-self: start;
  border-color: rgba(234, 84, 85, 0.25);
  background: rgba(234, 84, 85, 0.06);
}

.settlement-list {
  display: grid;
  gap: 14px;
}

.settlement-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #ebeaf0;
  padding-bottom: 12px;
}

.settlement-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.settlement-list span {
  color: #6f6b7d;
  font-size: 13px;
}

.settlement-list strong {
  color: #2f2b3d;
}

.chart-card {
  min-height: 270px;
}

.line-chart {
  position: relative;
  height: 178px;
  margin-top: 18px;
  border-bottom: 1px solid #dbdade;
  background:
    linear-gradient(to bottom, rgba(115, 103, 240, 0.08), rgba(115, 103, 240, 0)),
    repeating-linear-gradient(to bottom, transparent 0, transparent 35px, #ebeaf0 36px);
  clip-path: polygon(0 58%, 14% 44%, 28% 64%, 42% 36%, 56% 46%, 70% 70%, 84% 58%, 100% 32%, 100% 100%, 0 100%);
}

.line-chart::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 6%, #7367f0 6% 7%, transparent 7% 20%, #7367f0 20% 21%, transparent 21% 34%, #7367f0 34% 35%, transparent 35% 48%, #7367f0 48% 49%, transparent 49% 62%, #7367f0 62% 63%, transparent 63% 76%, #7367f0 76% 77%, transparent 77%);
  opacity: 0.18;
  content: "";
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.mini-stat {
  border: 1px solid rgba(219, 218, 222, 0.84);
  border-radius: 8px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 0.25rem 1.125rem rgba(47, 43, 61, 0.07);
}

.mini-stat span {
  color: #6f6b7d;
  font-size: 12px;
  font-weight: 700;
}

.mini-stat strong {
  display: block;
  margin-top: 7px;
  color: #2f2b3d;
  font-size: 21px;
}

@media (max-width: 1040px) {
  .division-flow,
  .mini-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .vuexy-hero-grid {
    min-height: auto;
  }

  .mini-card-grid,
  .division-flow {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

a:not(.btn):not(.brand):not(.side-link):not(.card):not(.nav-links a) {
  color: var(--primary);
  transition: color 0.18s ease;
}

a:not(.btn):not(.brand):not(.side-link):not(.card):not(.nav-links a):hover {
  color: var(--primary-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(230, 230, 232, 0.68);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 0.25rem 0.875rem rgba(115, 103, 240, 0.35);
  font-size: 13px;
}

.brand small {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  border-radius: var(--radius);
  padding: 8px 11px;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(115, 103, 240, 0.08);
}

.nav-links a.active::after {
  position: absolute;
  right: 11px;
  bottom: 4px;
  left: 11px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  content: "";
}

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

.btn {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.48rem 1rem;
  cursor: pointer;
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-xs);
}

.btn-primary {
  color: #fff;
  border-color: var(--primary);
  background: linear-gradient(135deg, #7367f0 0%, #655bd3 100%);
  box-shadow: 0 0.25rem 0.875rem rgba(115, 103, 240, 0.4);
}

.btn-primary:hover {
  border-color: var(--primary-dark);
  background: linear-gradient(135deg, #655bd3 0%, #5e50ee 100%);
}

.btn-soft {
  color: var(--primary);
  border-color: rgba(115, 103, 240, 0.12);
  background: var(--primary-soft);
  box-shadow: none;
}

.btn-soft:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 44px;
  background:
    linear-gradient(180deg, rgba(115, 103, 240, 0.06), transparent 46%),
    radial-gradient(circle at 84% 20%, rgba(0, 207, 232, 0.1), transparent 30%),
    var(--bg);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-glyph {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #6c5ffc, #00cfe8);
  box-shadow: 0 0.25rem 0.875rem rgba(115, 103, 240, 0.35);
  font-weight: 800;
}

.brand-logo strong {
  display: block;
  color: var(--heading);
  line-height: 1.1;
}

.brand-logo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.btn-outline {
  color: var(--primary);
  border-color: rgba(115, 103, 240, 0.42);
  background: #fff;
  box-shadow: none;
}

.btn-outline:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.vuexy-hero {
  overflow: hidden;
  padding: 74px 0 34px;
  background:
    radial-gradient(circle at 70% 20%, rgba(115, 103, 240, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8f7fa 100%);
}

.vuexy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.8fr);
  gap: 54px;
  align-items: center;
  min-height: 430px;
}

.hero-copy h1 {
  margin: 0;
  color: #1f1b2d;
  font-size: clamp(42px, 5.4vw, 66px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.orbit-demo {
  position: relative;
  min-height: 420px;
}

.phone-mock {
  position: absolute;
  top: 34px;
  left: 50%;
  display: grid;
  width: 176px;
  height: 330px;
  place-items: center;
  transform: translateX(-50%);
  border: 8px solid #f1f0f8;
  border-radius: 34px;
  background: linear-gradient(180deg, #fff, #f7f6ff);
  box-shadow: 0 1.2rem 3rem rgba(47, 43, 61, 0.14);
  color: var(--heading);
  text-align: center;
}

.phone-notch {
  position: absolute;
  top: 10px;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: #dfdde9;
}

.phone-mock strong {
  align-self: end;
  font-size: 16px;
}

.phone-mock > span {
  align-self: start;
  margin-top: -20px;
  color: var(--muted);
  font-size: 13px;
}

.play-button {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #7367f0, #8f85ff);
  box-shadow: 0 0.65rem 1.6rem rgba(115, 103, 240, 0.38);
  font-size: 26px;
}

.coin {
  position: absolute;
  right: 34px;
  bottom: 48px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #7367f0, #5e50ee);
  box-shadow: 0 0.75rem 1.6rem rgba(115, 103, 240, 0.35);
  font-weight: 800;
}

.orbit-line {
  position: absolute;
  top: 112px;
  width: 220px;
  height: 180px;
  border: 2px dashed rgba(115, 103, 240, 0.45);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
}

.orbit-left {
  left: 12px;
  transform: rotate(-34deg);
}

.orbit-right {
  right: 10px;
  transform: rotate(145deg);
  border-color: rgba(0, 207, 232, 0.48);
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.orbit-node {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--heading);
  font-weight: 700;
}

.node-upload {
  top: 160px;
  left: 18px;
}

.node-user {
  top: 150px;
  right: 0;
}

.node-income {
  right: 184px;
  bottom: 24px;
}

.bubble-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(115, 103, 240, 0.16);
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 0.7rem 2rem rgba(47, 43, 61, 0.1);
  font-size: 28px;
}

.bubble-icon.cyan {
  color: var(--cyan);
}

.bubble-icon.primary {
  color: #fff;
  background: linear-gradient(135deg, #7367f0, #5e50ee);
}

.vuexy-section-card {
  border: 1px solid rgba(230, 230, 232, 0.95);
  border-radius: 10px;
  padding: 36px 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.center-title {
  margin-bottom: 28px;
  text-align: center;
}

.center-title h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
}

.center-title p {
  margin: 8px 0 0;
  color: var(--muted);
}

.process-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.process-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.process-card strong {
  color: var(--heading);
}

.process-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.process-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #7367f0, #8f85ff);
  box-shadow: 0 0.45rem 1.1rem rgba(115, 103, 240, 0.3);
  font-size: 22px;
  font-weight: 800;
}

.process-icon.green {
  background: linear-gradient(135deg, #28c76f, #1fba62);
  box-shadow: 0 0.45rem 1.1rem rgba(40, 199, 111, 0.28);
}

.process-arrow {
  color: var(--primary);
  font-size: 26px;
}

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

.channel-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.channel-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.channel-card h3 {
  margin: 18px 0 0;
  color: var(--heading);
  font-size: 22px;
}

.channel-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.channel-card li::before {
  margin-right: 8px;
  color: var(--primary);
  content: "✓";
}

.channel-logo {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.channel-logo.douyin {
  background: #111827;
}

.channel-logo.kuaishou {
  background: #ff7a1a;
}

.channel-logo.wechat {
  background: #16c768;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.stats-strip div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 6px 12px;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid var(--border);
}

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

.stats-strip strong {
  color: var(--heading);
  font-size: 28px;
  line-height: 1;
}

.stats-strip p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.stat-dot {
  display: grid;
  grid-row: span 2;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
}

.stat-dot.primary { background: var(--primary); }
.stat-dot.cyan { background: var(--cyan); }
.stat-dot.red { background: var(--red); }
.stat-dot.green { background: var(--green); }

.dashboard-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
}

.admin-mini {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 510px;
  gap: 42px;
  align-items: center;
}

.hero h1 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.proof-item,
.card,
.panel {
  border: 1px solid rgba(230, 230, 232, 0.95);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

a.card:hover,
.card:hover {
  border-color: rgba(115, 103, 240, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(47, 43, 61, 0.12);
}

.proof-item {
  padding: 16px;
}

.proof-item strong {
  display: block;
  color: var(--heading);
  font-size: 22px;
  line-height: 1.1;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
}

.hero-console {
  overflow: hidden;
  border: 1px solid rgba(230, 230, 232, 0.92);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(230, 230, 232, 0.9);
  padding: 12px 16px;
}

.dotset {
  display: flex;
  gap: 7px;
}

.dotset i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--border);
}

.dotset i:nth-child(1) { background: var(--red); }
.dotset i:nth-child(2) { background: var(--amber); }
.dotset i:nth-child(3) { background: var(--green); }

.console-body {
  padding: 16px;
}

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

.metric {
  border-radius: 8px;
  padding: 14px;
  background: #fbfbfc;
}

.metric b {
  display: block;
  color: var(--heading);
  font-size: 21px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.flowline {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.flowstep {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.flowstep:hover {
  border-color: rgba(115, 103, 240, 0.24);
  box-shadow: var(--shadow-xs);
}

.icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 7px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
  font-weight: 800;
}

.section-title p {
  max-width: 660px;
  margin: 8px 0 0;
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

.card,
.panel {
  padding: 1.25rem;
}

.card h3,
.panel h3 {
  margin: 12px 0 8px;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.card p,
.panel p {
  margin: 0;
  color: var(--muted);
}

.split-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.split-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.split-card h3 {
  margin: 0 0 14px;
}

.share-row {
  display: grid;
  grid-template-columns: 88px 1fr 54px;
  gap: 12px;
  align-items: center;
  margin: 12px 0;
  color: var(--muted);
  font-size: 14px;
}

.bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0eff5;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.bar.cyan span { background: var(--cyan); }
.bar.green span { background: var(--green); }
.bar.amber span { background: var(--amber); }
.bar.red span { background: var(--red); }

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.faq-item div {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}

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

.footer {
  border-top: 1px solid var(--border);
  padding: 34px 0;
  color: var(--muted);
  background: var(--surface);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.app-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 260px 1fr;
  background: var(--bg);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid rgba(230, 230, 232, 0.78);
  padding: 22px 16px;
  background: var(--surface);
}

.sidebar .brand {
  margin: 0 8px 24px;
}

.side-section {
  margin: 22px 10px 8px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.side-link {
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: var(--radius);
  margin: 4px 0;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.side-link:hover {
  color: var(--primary);
  background: var(--primary-soft);
  transform: translateX(2px);
}

.side-link.active {
  color: #fff;
  background: linear-gradient(135deg, #7367f0 0%, #655bd3 100%);
  box-shadow: 0 0.25rem 0.875rem rgba(115, 103, 240, 0.36);
}

.side-link.active .icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.app-main {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 16px 24px 0;
  border: 1px solid rgba(230, 230, 232, 0.8);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.search {
  display: flex;
  width: min(460px, 100%);
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 12px;
  background: #fbfbfc;
  color: var(--muted-2);
}

.search input {
  width: 100%;
  min-height: 38px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.search:focus-within {
  border-color: rgba(115, 103, 240, 0.5);
  box-shadow: 0 0 0 0.18rem rgba(115, 103, 240, 0.12);
}

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

.avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-weight: 700;
}

.page {
  padding: 24px;
}

.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.page-head h1 {
  margin: 0;
  color: var(--heading);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.page-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

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

.stat-card {
  border: 1px solid rgba(230, 230, 232, 0.95);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.stat-value {
  margin-top: 10px;
  color: var(--heading);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
}

.trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 18px;
  margin-top: 18px;
}

.table-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.table-head {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding: 0 1.25rem;
}

.table-head h2 {
  margin: 0;
  color: var(--heading);
  font-size: 18px;
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid #eeedf2;
  padding: 0.72rem 1.25rem;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  background: #fafafa;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

td {
  color: var(--text);
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background 0.18s ease;
}

tbody tr:hover {
  background: #fafaff;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.badge.green { color: #18864b; background: rgba(40, 199, 111, 0.14); }
.badge.amber { color: #a35b00; background: rgba(255, 159, 67, 0.16); }
.badge.red { color: #b92e38; background: rgba(234, 84, 85, 0.14); }
.badge.cyan { color: #008da0; background: rgba(0, 207, 232, 0.14); }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tab {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.48rem 0.8rem;
  cursor: pointer;
  color: var(--muted);
  background: var(--surface);
}

.tab.active {
  color: #fff;
  border-color: var(--primary);
  background: linear-gradient(135deg, #7367f0 0%, #655bd3 100%);
  box-shadow: 0 0.25rem 0.875rem rgba(115, 103, 240, 0.28);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.timeline-item strong {
  display: block;
}

.timeline-item span {
  color: var(--muted);
  font-size: 13px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 9px 12px;
  outline: 0;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(115, 103, 240, 0.55);
  box-shadow: 0 0 0 0.18rem rgba(115, 103, 240, 0.12);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.login-page {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) 430px;
  background: var(--bg);
}

.login-visual {
  display: grid;
  align-content: center;
  padding: 60px;
  background:
    linear-gradient(135deg, rgba(115, 103, 240, 0.12), rgba(0, 207, 232, 0.08)),
    var(--bg);
}

.login-card {
  align-self: center;
  margin: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.login-card h1 {
  margin: 22px 0 8px;
}

.login-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.mobile-menu {
  display: none;
}

@media (max-width: 1040px) {
  .hero-grid,
  .vuexy-hero-grid,
  .dashboard-preview-grid,
  .dashboard-grid,
  .split-map,
  .login-page {
    grid-template-columns: 1fr;
  }

  .orbit-demo {
    max-width: 540px;
    margin: 0 auto;
  }

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

  .process-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .stat-grid,
  .stats-strip,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-strip div:nth-child(2) {
    border-right: 0;
  }

  .stats-strip div {
    padding: 18px 24px;
  }

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

  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 46px;
  }

  .vuexy-hero {
    padding-top: 44px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .orbit-demo {
    min-height: 390px;
    transform: scale(0.86);
    transform-origin: top center;
    margin-bottom: -42px;
  }

  .vuexy-section-card {
    padding: 24px 14px;
  }

  .hero-proof,
  .grid-2,
  .grid-3,
  .grid-4,
  .stats-strip,
  .stat-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip div,
  .stats-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .section-title,
  .page-head,
  .footer .container,
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .page {
    padding: 18px 12px;
  }

  .topbar {
    top: 0;
    margin: 12px;
  }

  .table-card {
    overflow-x: auto;
  }

  table {
    min-width: 760px;
  }

  .login-visual {
    padding: 30px 20px;
  }

  .login-card {
    margin: 20px;
  }
}

/* Final Vuexy cascade guard. Keep this block at EOF so older rules cannot win. */
.container { width: min(1280px, calc(100% - 52px)); }
.site-header {
  border-bottom-color: rgba(219, 218, 222, 0.72);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0.125rem 0.375rem rgba(47, 43, 61, 0.04);
}
.nav { min-height: 64px; }
.brand-logo, .brand { gap: 12px; }
.brand-logo strong, .brand > span:last-child { color: #2f2b3d; font-size: 16px; font-weight: 700; }
.brand-logo small, .brand small { color: #8a8798; font-size: 12px; }
.logo-glyph, .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #7367f0 0%, #4f8cff 56%, #00cfe8 100%);
  box-shadow: 0 0.5rem 1.125rem rgba(115, 103, 240, 0.28);
  font-size: 23px;
}
.nav-links { gap: 8px; color: #5d596c; font-size: 14px; font-weight: 600; }
.nav-links a { padding: 8px 12px; }
.nav-links a:hover, .nav-links a.active { color: #7367f0; background: rgba(115, 103, 240, 0.08); }
.nav-links a.active::after { bottom: -10px; right: 16px; left: 16px; height: 3px; }
.btn {
  min-height: 38px;
  border-color: #dbdade;
  border-radius: 6px;
  padding: 0.5rem 1.125rem;
  color: #5d596c;
  background: #fff;
  box-shadow: 0 0.125rem 0.375rem rgba(47, 43, 61, 0.08);
  font-weight: 600;
}
.btn-primary {
  border-color: #7367f0;
  color: #fff;
  background: linear-gradient(135deg, #7367f0, #6658e9);
  box-shadow: 0 0.25rem 0.75rem rgba(115, 103, 240, 0.42);
}
.btn-outline { border-color: rgba(115, 103, 240, 0.45); color: #7367f0; background: #fff; box-shadow: none; }
.vuexy-hero {
  padding: 58px 0 20px;
  background:
    radial-gradient(circle at 72% 28%, rgba(115, 103, 240, 0.1), transparent 24%),
    radial-gradient(circle at 92% 22%, rgba(0, 207, 232, 0.08), transparent 22%),
    linear-gradient(180deg, #fff 0%, #fbfbfd 58%, #f8f7fa 100%);
}
.vuexy-hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.8fr); min-height: 350px; gap: 56px; }
.hero-copy h1 { color: #171321; font-size: clamp(42px, 4.35vw, 58px); line-height: 1.08; font-weight: 800; }
.hero-copy p { max-width: 560px; margin-top: 18px; color: #6f6b7d; font-size: 17px; line-height: 1.72; }
.hero-actions { margin-top: 28px; }
.orbit-demo { min-height: 350px; }
.phone-mock {
  top: 10px;
  width: 154px;
  height: 292px;
  border-width: 8px;
  border-color: #efedf9;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #fbfbff);
  box-shadow: 0 1.25rem 3rem rgba(47, 43, 61, 0.14);
}
.phone-mock strong { font-size: 15px; }
.play-button { width: 54px; height: 54px; border-radius: 13px; font-size: 24px; }
.coin { right: 22px; bottom: 38px; width: 48px; height: 48px; font-size: 17px; }
.orbit-line { top: 80px; width: 200px; height: 164px; }
.orbit-left { left: 12px; }
.orbit-right { right: 8px; }
.node-upload { top: 128px; left: 20px; }
.node-user { top: 126px; right: 0; }
.node-income { right: 162px; bottom: 10px; }
.bubble-icon {
  width: 68px;
  height: 68px;
  border-color: rgba(115, 103, 240, 0.15);
  color: #7367f0;
  background: #fff;
  box-shadow: 0 0.75rem 1.75rem rgba(47, 43, 61, 0.1);
  font-size: 28px;
}
.orbit-node strong { color: #171321; font-size: 14px; }
.section { padding: 56px 0; }
.section-tight { padding: 28px 0; }
.vuexy-section-card, .stats-strip, .admin-mini, .card, .panel, .stat-card, .table-card, .split-card {
  border-color: rgba(219, 218, 222, 0.84);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0.25rem 1.125rem rgba(47, 43, 61, 0.08);
}
.vuexy-section-card { padding: 30px 26px; }
.center-title h2 { color: #2f2b3d; font-size: clamp(26px, 2.5vw, 34px); font-weight: 800; }
.process-card { min-height: 136px; border-color: #ebeaf0; box-shadow: 0 0.125rem 0.375rem rgba(47, 43, 61, 0.06); }
.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #7367f0, #8f85ff);
  box-shadow: 0 0.5rem 1.125rem rgba(115, 103, 240, 0.3);
  font-size: 24px;
}
.process-icon.green { color: #fff; background: linear-gradient(135deg, #28c76f, #1fba62); }
.channel-card { border-color: #ebeaf0; box-shadow: 0 0.125rem 0.5rem rgba(47, 43, 61, 0.06); }
.channel-card h3 { color: #2f2b3d; font-size: 19px; }
.channel-logo { width: 52px; height: 52px; border-radius: 12px; font-size: 26px; }
.stats-strip { padding: 20px 0; }
.stats-strip strong { font-size: 25px; }
.app-shell { grid-template-columns: 250px minmax(0, 1fr); }
.sidebar { border-right-color: rgba(219, 218, 222, 0.7); padding: 18px 14px; background: #fff; }
.sidebar .brand { margin: 0 8px 20px; }
.side-section { margin: 20px 12px 8px; color: #a8aaae; font-size: 12px; font-weight: 700; }
.side-link { min-height: 40px; border-radius: 6px; padding: 9px 12px; color: #5d596c; font-weight: 600; }
.side-link .icon { width: 28px; height: 28px; color: currentColor; background: transparent; font-size: 18px; }
.side-link:hover { color: #7367f0; background: rgba(115, 103, 240, 0.08); }
.side-link.active { color: #fff; background: linear-gradient(135deg, #7367f0, #5e50ee); box-shadow: 0 0.25rem 0.875rem rgba(115, 103, 240, 0.34); }
.topbar { min-height: 58px; margin: 14px 18px 0; border-color: rgba(219, 218, 222, 0.8); border-radius: 8px; box-shadow: 0 0.25rem 1.125rem rgba(47, 43, 61, 0.08); }
.search { min-width: min(420px, 100%); border-color: transparent; background: #f8f7fa; }
.search span { color: #a8aaae; }
.page { padding: 22px 18px 28px; }
.stat-grid { gap: 16px; }
.stat-card { padding: 18px; }
.stat-top .icon { width: 42px; height: 42px; border-radius: 10px; color: #7367f0; background: #eeecff; font-size: 22px; }
.stat-card:nth-child(2) .stat-top .icon { color: #00a8bf; background: rgba(0, 207, 232, 0.14); }
.stat-card:nth-child(3) .stat-top .icon { color: #2f80ed; background: rgba(47, 128, 237, 0.12); }
.stat-card:nth-child(4) .stat-top .icon { color: #e36f00; background: rgba(255, 159, 67, 0.16); }
.stat-value { color: #2f2b3d; font-size: 26px; font-weight: 700; }
.trend { color: #28c76f; font-size: 12px; }
.table-head { min-height: 54px; }
th { background: #f8f7fa; color: #6f6b7d; font-size: 12px; letter-spacing: 0; }
td { color: #5d596c; }
.badge { border-radius: 6px; }
.tab { border-color: transparent; background: #f4f4f6; color: #6f6b7d; font-weight: 600; }
.tab.active { color: #fff; background: #7367f0; }
.timeline-item .icon, .flowstep .icon { width: 34px; height: 34px; border-radius: 8px; }
.flowstep { border-color: #ebeaf0; }
.mini-card-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.mini-stat { border: 1px solid rgba(219, 218, 222, 0.84); border-radius: 8px; padding: 15px; background: #fff; box-shadow: 0 0.25rem 1.125rem rgba(47, 43, 61, 0.07); }
.mini-stat span { color: #6f6b7d; font-size: 12px; font-weight: 700; }
.mini-stat strong { display: block; margin-top: 7px; color: #2f2b3d; font-size: 21px; }
.line-chart { height: 190px; margin-top: 18px; background: repeating-linear-gradient(to bottom, transparent 0, transparent 37px, #ebeaf0 38px); clip-path: none; }
.line-chart::after { content: none; }
.line-chart svg { display: block; width: 100%; height: 100%; overflow: visible; }
@media (max-width: 1040px) {
  .vuexy-hero-grid { grid-template-columns: 1fr; }
  .mini-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1280px); }
  body { overflow-x: hidden; }
  .nav { gap: 12px; }
  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
  }
  .nav-links a {
    min-width: 0;
    padding: 7px 6px;
    text-align: center;
    font-size: 13px;
  }
  .nav-links a.active::after { right: 12px; bottom: 2px; left: 12px; }
  .nav-actions { width: 100%; }
  .nav-actions .btn { flex: 1; }
  .vuexy-hero { padding: 34px 0 10px; }
  .hero-copy h1 { font-size: 38px; }
  .hero-copy p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }
  .vuexy-hero-grid { min-height: auto; }
  .orbit-demo {
    width: 100%;
    min-height: 330px;
    margin: 8px auto -10px;
    overflow: hidden;
    transform: none;
  }
  .phone-mock {
    top: 38px;
    left: 56%;
    width: 132px;
    height: 252px;
    border-radius: 26px;
  }
  .phone-mock strong { font-size: 12px; }
  .phone-mock > span { font-size: 11px; }
  .play-button { width: 46px; height: 46px; font-size: 20px; }
  .coin { right: 12px; bottom: 32px; width: 42px; height: 42px; }
  .orbit-line { top: 86px; width: 150px; height: 120px; }
  .orbit-left { left: 6px; }
  .orbit-right { right: 0; }
  .bubble-icon { width: 54px; height: 54px; font-size: 22px; }
  .orbit-node { gap: 6px; }
  .orbit-node strong {
    max-width: 78px;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
  }
  .node-upload { top: 112px; left: 8px; }
  .node-user { top: 134px; right: 0; }
  .node-income { right: auto; bottom: 22px; left: 20px; }
  .mini-card-grid { grid-template-columns: 1fr; }
}

/* Phone-width hardening: this must stay after the cascade guard. */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .site-header .container.nav {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-right: auto;
    margin-left: auto;
  }

  .site-header,
  main,
  section,
  .vuexy-hero,
  .footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .nav {
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 0;
  }

  .brand,
  .brand-logo {
    min-width: 0;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100% !important;
    max-width: 100%;
  }

  .nav-links a {
    min-width: 0;
    padding: 7px 6px;
    text-align: center;
    font-size: 13px;
  }

  .nav-links a.active::after {
    right: 16px;
    bottom: 2px;
    left: 16px;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100% !important;
    max-width: 100%;
  }

  .nav-actions .btn {
    width: 100%;
    min-width: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    white-space: nowrap;
  }

  .vuexy-hero {
    padding: 34px 0 12px;
  }

  .vuexy-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    min-height: auto;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 9.2vw, 38px);
  }

  .hero-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 12px;
  }

  .hero-actions .btn {
    min-width: 0;
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }

  .orbit-demo {
    width: 100%;
    min-height: 318px;
    margin: 8px auto 0;
    overflow: visible;
    transform: none;
  }

  .phone-mock {
    top: 40px;
    left: 50%;
    width: 128px;
    height: 246px;
    border-radius: 26px;
  }

  .phone-mock strong {
    font-size: 12px;
  }

  .phone-mock > span {
    font-size: 11px;
  }

  .play-button {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .coin {
    right: 10px;
    bottom: 30px;
    width: 40px;
    height: 40px;
  }

  .orbit-line {
    top: 86px;
    width: 124px;
    height: 112px;
    opacity: 0.7;
  }

  .orbit-left {
    left: 26px;
  }

  .orbit-right {
    right: 26px;
  }

  .bubble-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .orbit-node {
    gap: 6px;
  }

  .orbit-node strong {
    max-width: 82px;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
  }

  .node-upload {
    top: 112px;
    left: 0;
  }

  .node-user {
    top: 112px;
    right: 0;
  }

  .node-income {
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .app-shell,
  .dashboard-grid,
  .dashboard-preview-grid,
  .stat-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .channel-grid,
  .mini-card-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .app-main,
  .page,
  .table-card,
  .panel,
  .stat-card,
  .vuexy-section-card,
  .channel-card,
  .card,
  .stats-strip {
    max-width: 100%;
    min-width: 0;
  }

  .sidebar {
    position: static;
    width: 100%;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(219, 218, 222, 0.7);
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
    margin: 12px;
  }

  .search {
    min-width: 0;
    width: 100%;
  }

  .page {
    padding: 18px 12px 24px;
  }

  .page-head {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Rosy Vuexy refinement: lighter borders, softer surfaces, warmer accent. */
:root {
  --bg: #fbf5fa;
  --surface: #ffffff;
  --surface-soft: #fff7fb;
  --text: #625d6f;
  --heading: #2f2b3d;
  --muted: #777286;
  --muted-2: #a7a2b2;
  --border: rgba(47, 43, 61, 0.085);
  --border-soft: rgba(47, 43, 61, 0.055);
  --primary: #7367f0;
  --primary-dark: #6658e8;
  --primary-soft: #f1efff;
  --rose: #e83e8c;
  --rose-dark: #d63384;
  --rose-soft: #fff0f7;
  --cyan: #00bad1;
  --green: #28c76f;
  --amber: #ff9f43;
  --red: #ea5455;
  --shadow-xs: 0 0.125rem 0.5rem rgba(47, 43, 61, 0.045);
  --shadow: 0 0.45rem 1.4rem rgba(47, 43, 61, 0.065);
  --shadow-lg: 0 1rem 2.75rem rgba(47, 43, 61, 0.095);
  --radius: 8px;
}

html {
  background: #fff6fa;
}

body {
  background: linear-gradient(112deg, #f5f1ff 0%, #fff4fa 52%, #fff2ef 100%) fixed;
  color: var(--text);
}

.site-header {
  border-bottom-color: rgba(47, 43, 61, 0.055);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
  backdrop-filter: saturate(160%) blur(18px);
}

.brand-logo strong,
.brand > span:last-child,
.brand-logo strong,
.brand-mark + span {
  color: var(--heading);
}

.brand-logo small,
.brand small {
  color: var(--muted-2);
}

.logo-glyph,
.brand-mark {
  border-radius: 9px;
  background: linear-gradient(135deg, #7367f0 0%, #9c5de8 45%, #ea5455 100%);
  box-shadow: 0 0.7rem 1.4rem rgba(232, 62, 140, 0.2);
}

.nav-links {
  color: var(--text);
}

.nav-links a {
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose);
  background: rgba(232, 62, 140, 0.075);
}

.nav-links a.active::after {
  background: linear-gradient(90deg, var(--primary), var(--rose));
  border-radius: 999px;
}

.btn {
  border-color: var(--border-soft);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xs);
  font-weight: 600;
}

.btn:hover {
  box-shadow: var(--shadow);
}

.btn-primary,
.tab.active,
.side-link.active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #7367f0 0%, #a855d8 46%, #ea5455 100%);
  box-shadow: 0 0.45rem 1.1rem rgba(232, 62, 140, 0.28);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-soft:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #6658e8 0%, #d63384 100%);
}

.btn-outline {
  border-color: rgba(232, 62, 140, 0.18);
  color: var(--rose);
  background: rgba(255, 255, 255, 0.68);
}

.btn-soft {
  border-color: rgba(115, 103, 240, 0.1);
  color: var(--primary);
  background: rgba(115, 103, 240, 0.1);
}

.vuexy-hero {
  background: linear-gradient(112deg, #f2efff 0%, #fff3fa 54%, #fff0eb 100%);
}

.hero-copy h1,
.login-visual h1 {
  color: transparent;
  background: linear-gradient(96deg, #6658e8 0%, #8e55d8 38%, #d63384 68%, #ea5455 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy p,
.center-title p,
.section-title p,
.page-head p,
.card p,
.panel p {
  color: var(--muted);
}

.phone-mock {
  border: 1px solid rgba(47, 43, 61, 0.065);
  outline: 7px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fff7fb);
  box-shadow: 0 1.15rem 2.7rem rgba(47, 43, 61, 0.1);
}

.phone-mock strong {
  position: absolute;
  top: 84px;
  right: 16px;
  left: 16px;
  align-self: auto;
}

.phone-mock > span {
  position: absolute;
  top: 112px;
  right: 16px;
  left: 16px;
  align-self: auto;
  margin-top: 0;
}

.play-button,
.coin {
  background: linear-gradient(135deg, #7367f0, #ea5455);
  box-shadow: 0 0.65rem 1.45rem rgba(232, 62, 140, 0.24);
}

.play-button {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-52%);
}

.orbit-line {
  border-color: rgba(115, 103, 240, 0.18);
  opacity: 0.75;
}

.bubble-icon {
  border-color: var(--border-soft);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.bubble-icon.primary {
  color: var(--rose);
  background: var(--rose-soft);
}

.bubble-icon.cyan {
  color: var(--cyan);
  background: rgba(0, 186, 209, 0.1);
}

.vuexy-section-card,
.stats-strip,
.admin-mini,
.card,
.panel,
.stat-card,
.table-card,
.split-card,
.login-card,
.channel-card,
.process-card,
.mini-stat,
.flowstep,
.metric,
.division-node {
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.vuexy-section-card,
.panel,
.table-card,
.login-card {
  backdrop-filter: saturate(150%) blur(10px);
}

.card:hover,
.channel-card:hover,
.process-card:hover,
.stat-card:hover {
  border-color: rgba(232, 62, 140, 0.16);
  box-shadow: var(--shadow-lg);
}

.center-title h2,
.section-title h2,
.page-head h1,
.table-head h2,
.card h3,
.panel h3 {
  color: var(--heading);
}

.process-card {
  min-height: 132px;
}

.process-icon,
.stat-dot.primary,
.stat-top .icon,
.timeline-item .icon,
.flowstep .icon {
  color: #fff;
  background: linear-gradient(135deg, #7367f0 0%, #e83e8c 100%);
  box-shadow: 0 0.55rem 1.2rem rgba(232, 62, 140, 0.18);
}

.process-icon.green,
.stat-card:nth-child(2) .stat-top .icon {
  color: #008e54;
  background: rgba(40, 199, 111, 0.13);
  box-shadow: none;
}

.stat-card:nth-child(3) .stat-top .icon,
.channel-logo.wechat {
  color: #0098aa;
  background: rgba(0, 186, 209, 0.12);
  box-shadow: none;
}

.stat-card:nth-child(4) .stat-top .icon {
  color: #b85d00;
  background: rgba(255, 159, 67, 0.14);
  box-shadow: none;
}

.channel-logo {
  border-radius: 12px;
  box-shadow: none;
}

.channel-logo.douyin,
.channel-logo.kuaishou {
  background: var(--rose-soft);
  color: var(--rose);
}

.stats-strip {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-xs);
}

.app-shell,
.login-page {
  background: linear-gradient(112deg, #f5f1ff 0%, #fff5fa 56%, #fff4ef 100%);
}

.sidebar {
  border-right-color: rgba(47, 43, 61, 0.055);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  backdrop-filter: saturate(150%) blur(14px);
}

.side-section {
  color: var(--muted-2);
}

.side-link {
  border-radius: 8px;
  color: var(--text);
}

.side-link:hover {
  color: var(--rose);
  background: rgba(232, 62, 140, 0.075);
}

.side-link .icon {
  background: transparent;
}

.topbar {
  border-color: var(--border-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: saturate(150%) blur(14px);
}

.search,
.field input,
.field select,
.field textarea {
  border-color: var(--border-soft);
  border-radius: 8px;
  background: rgba(255, 250, 253, 0.82);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(232, 62, 140, 0.34);
  box-shadow: 0 0 0 0.18rem rgba(232, 62, 140, 0.1);
}

.table-head {
  border-bottom-color: var(--border-soft);
}

th,
td {
  border-bottom-color: rgba(47, 43, 61, 0.055);
}

th {
  background: #fff8fc;
  color: var(--muted);
}

tbody tr:hover {
  background: rgba(255, 240, 247, 0.5);
}

.badge {
  border-radius: 8px;
  color: var(--primary);
  background: var(--primary-soft);
}

.badge.red {
  color: #bf2f62;
  background: rgba(232, 62, 140, 0.12);
}

.tab {
  border-color: transparent;
  border-radius: 8px;
  background: rgba(47, 43, 61, 0.055);
}

.flow-tabs span {
  border-radius: 8px;
  color: var(--muted);
  background: rgba(47, 43, 61, 0.055);
}

.flow-tabs .active {
  background: linear-gradient(135deg, #7367f0, #ea5455);
}

.division-node {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-xs);
}

.division-node b {
  color: var(--rose);
}

.division-node.primary {
  border-color: rgba(115, 103, 240, 0.12);
  background: rgba(115, 103, 240, 0.08);
}

.division-node.promoter {
  border-color: rgba(232, 62, 140, 0.14);
  background: rgba(232, 62, 140, 0.08);
}

.settlement-list div {
  border-bottom-color: var(--border-soft);
}

.line-chart {
  border-bottom-color: var(--border-soft);
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 37px, rgba(47, 43, 61, 0.055) 38px);
}

.login-card {
  box-shadow: var(--shadow-lg);
}

.login-visual {
  background: linear-gradient(112deg, #f1eeff 0%, #fff2f8 52%, #fff0ea 100%);
}

.proof-item {
  border-color: var(--border-soft);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-xs);
}

@media (max-width: 760px) {
  .nav {
    gap: 12px;
    padding: 14px 0 12px;
  }

  .logo-glyph,
  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .nav-links {
    display: flex !important;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

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

  .nav-links a {
    flex: 0 0 auto;
    min-width: auto;
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.62);
    font-size: 13px;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-actions .btn {
    min-height: 42px;
  }

  .vuexy-hero {
    padding-top: 38px;
  }

  .phone-mock {
    outline-width: 5px;
  }

  .phone-mock strong {
    top: 88px;
  }

  .phone-mock > span {
    top: 111px;
  }

  .play-button {
    bottom: 52px;
  }

  .sidebar {
    border-bottom-color: rgba(47, 43, 61, 0.055);
  }
}

/* Flatter product pages and final surface tuning. */
:root {
  --shadow-xs: 0 1px 0 rgba(47, 43, 61, 0.035);
  --shadow: 0 1px 0 rgba(47, 43, 61, 0.045);
  --shadow-lg: 0 12px 32px rgba(47, 43, 61, 0.065);
  --border: rgba(47, 43, 61, 0.07);
  --border-soft: rgba(47, 43, 61, 0.045);
}

.vuexy-section-card,
.stats-strip,
.card,
.panel,
.stat-card,
.table-card,
.split-card,
.login-card,
.channel-card,
.process-card,
.mini-stat,
.flowstep,
.division-node,
.topbar {
  border-color: var(--border-soft);
  box-shadow: var(--shadow);
}

.card:hover,
.channel-card:hover,
.process-card:hover,
.stat-card:hover,
.feature-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 43, 61, 0.06);
}

.btn-primary {
  box-shadow: 0 8px 18px rgba(232, 62, 140, 0.18);
}

.solution-page {
  min-height: 100vh;
  background: linear-gradient(112deg, #f6f2ff 0%, #fff7fb 52%, #fff4ef 100%) fixed;
}

.solution-page .site-header {
  background: rgba(255, 255, 255, 0.72);
}

.solution-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 42px;
}

.solution-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.64fr);
  gap: 68px;
  align-items: center;
}

.solution-copy {
  min-width: 0;
}

.solution-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--rose);
  background: rgba(232, 62, 140, 0.085);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.solution-copy h1 {
  max-width: 760px;
  margin: 0;
  color: transparent;
  background: linear-gradient(96deg, #6658e8 0%, #8d56dc 38%, #d63384 72%, #ea5455 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.05;
  font-weight: 800;
}

.solution-copy p {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.solution-preview {
  display: grid;
  gap: 16px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-lg);
  backdrop-filter: saturate(155%) blur(14px);
}

.preview-top {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
}

.preview-top .icon,
.feature-tile .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #7367f0, #e83e8c);
  box-shadow: none;
  font-size: 24px;
}

.preview-top strong,
.feature-tile h3,
.solution-stat-row strong {
  color: var(--heading);
}

.preview-top small,
.preview-row span,
.solution-stat-row span,
.library-list span,
.agency-stack span {
  color: var(--muted);
}

.preview-top b {
  color: var(--heading);
  font-size: 24px;
}

.preview-bars {
  display: grid;
  height: 150px;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: end;
  border-radius: 8px;
  padding: 16px;
  background: rgba(115, 103, 240, 0.06);
}

.preview-bars span {
  display: block;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #7367f0, #ea5455);
}

.preview-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border-soft);
  padding-top: 13px;
}

.agency-stack,
.library-list {
  display: grid;
  gap: 10px;
}

.agency-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agency-stack div,
.library-list div,
.promo-path {
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 247, 251, 0.78);
}

.agency-stack strong,
.library-list strong {
  display: block;
  margin-top: 5px;
  color: var(--heading);
  font-size: 20px;
}

.library-list strong {
  margin: 0 0 4px;
  font-size: 16px;
}

.promo-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--rose);
  font-weight: 800;
}

.promo-path span {
  color: var(--heading);
}

.solution-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.solution-stat-row div {
  min-height: 112px;
  padding: 22px;
  border-radius: 8px;
  background: #f3efff;
}

.solution-stat-row div:nth-child(2) { background: #fff0f7; }
.solution-stat-row div:nth-child(3) { background: #eefbfe; }
.solution-stat-row div:nth-child(4) { background: #fff6ea; }

.solution-stat-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.solution-stat-row span {
  line-height: 1.65;
}

.solution-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-tile {
  min-height: 220px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-tile h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.onboard-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  border-radius: 8px;
  padding: 30px;
  background: linear-gradient(112deg, rgba(115, 103, 240, 0.1), rgba(232, 62, 140, 0.1));
}

.onboard-band h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(26px, 3vw, 38px);
}

.onboard-band p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1040px) {
  .solution-hero-grid,
  .solution-stat-row,
  .solution-feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .solution-preview {
    max-width: 620px;
  }

  .agency-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .solution-hero {
    padding: 42px 0 22px;
  }

  .solution-hero-grid {
    gap: 28px;
  }

  .solution-copy h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .solution-copy p {
    font-size: 16px;
  }

  .solution-preview,
  .onboard-band,
  .feature-tile,
  .solution-stat-row div {
    padding: 18px;
  }

  .preview-top {
    grid-template-columns: 44px 1fr;
  }

  .preview-top b {
    grid-column: 1 / -1;
  }

  .agency-stack,
  .solution-stat-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .promo-path {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-path i {
    transform: rotate(90deg);
  }

  .onboard-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .onboard-band .btn {
    width: 100%;
  }
}

/* Vuexy-style flat flow strip: one floating band, no boxed process cards. */
.flow-selector-panel {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: -6px;
}

.flow-selector-note {
  display: grid;
  justify-items: start;
  gap: 4px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.flow-selector-note i {
  color: rgba(115, 103, 240, 0.62);
  font-size: 42px;
  transform: rotate(8deg);
}

.flow-selector-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(47, 43, 61, 0.08);
  backdrop-filter: saturate(160%) blur(14px);
}

.flow-selector-item {
  display: grid;
  min-height: 104px;
  place-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 10px;
  color: var(--heading);
  background: transparent;
}

.flow-selector-item.active {
  background: #f2efff;
}

.flow-selector-item strong {
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}

.flow-selector-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 24px;
}

.flow-selector-icon.upload { background: linear-gradient(135deg, #ff9f43, #ea5455); }
.flow-selector-icon.pay { background: linear-gradient(135deg, #7367f0, #8f85ff); }
.flow-selector-icon.promote { background: linear-gradient(135deg, #e83e8c, #ea5455); }
.flow-selector-icon.split { background: linear-gradient(135deg, #00bad1, #7367f0); }
.flow-selector-icon.settle { background: linear-gradient(135deg, #28c76f, #00bad1); }
.flow-selector-icon.data { background: linear-gradient(135deg, #8f85ff, #e83e8c); }

.process-card {
  border: 0;
  box-shadow: none;
}

/* Color-block modules: flat surfaces distinguish sections without wireframes. */
.solution-feature-grid,
.grid-3,
.channel-grid {
  gap: 18px;
}

.feature-tile,
.grid-3 > .card,
.channel-card {
  border: 0;
  box-shadow: none;
}

.feature-tile {
  background: #f3efff;
}

.feature-tile:nth-child(2) { background: #fff0f7; }
.feature-tile:nth-child(3) { background: #eefbfe; }
.feature-tile:nth-child(4) { background: #fff6ea; }
.feature-tile:nth-child(5) { background: #effaf4; }
.feature-tile:nth-child(6) { background: #f6f3ff; }

.grid-3 > .card {
  min-height: 188px;
  background: #f3efff;
}

.grid-3 > .card:nth-child(2) { background: #fff0f7; }
.grid-3 > .card:nth-child(3) { background: #eefbfe; }
.grid-3 > .card:nth-child(4) { background: #fff6ea; }
.grid-3 > .card:nth-child(5) { background: #effaf4; }
.grid-3 > .card:nth-child(6) { background: #f7f4ff; }

.channel-card:nth-child(1) { background: #fff0f7; }
.channel-card:nth-child(2) { background: #f3efff; }
.channel-card:nth-child(3) { background: #eefbfe; }

.feature-tile .icon,
.grid-3 > .card .icon,
.channel-logo {
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.feature-tile .icon,
.grid-3 > .card .icon {
  color: var(--rose);
}

.feature-tile:nth-child(3) .icon,
.grid-3 > .card:nth-child(3) .icon,
.channel-card:nth-child(3) .channel-logo {
  color: var(--cyan);
}

.feature-tile:nth-child(4) .icon,
.grid-3 > .card:nth-child(4) .icon {
  color: #d76d00;
}

.feature-tile:nth-child(5) .icon,
.grid-3 > .card:nth-child(5) .icon {
  color: #15965a;
}

.card:hover,
.channel-card:hover,
.feature-tile:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.vuexy-section-card {
  border: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1040px) {
  .flow-selector-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .flow-selector-note {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .flow-selector-note i {
    transform: rotate(0deg);
  }

  .flow-selector-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .flow-selector-panel {
    gap: 12px;
  }

  .flow-selector-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
  }

  .flow-selector-item {
    min-height: 92px;
    padding: 10px 6px;
  }
}

/* Feature detail pages: match Vuexy demo-live-preview rhythm. */
.module-live-preview {
  position: relative;
  margin-top: 0;
  padding: 0 0 78px;
  background: #f7f7fb;
}

.solution-page .solution-hero {
  padding-bottom: 104px;
}

.solution-copy > .solution-eyebrow {
  display: none;
}

.feature-live-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 178px minmax(0, 760px);
  gap: 24px;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.feature-live-label {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: var(--muted);
  font-size: 16px;
}

.feature-live-label i {
  color: rgba(115, 103, 240, 0.58);
  font-size: 42px;
  transform: rotate(8deg);
}

.feature-live-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(47, 43, 61, 0.1);
}

.feature-live-item {
  display: grid;
  min-height: 94px;
  place-items: center;
  gap: 8px;
  border-radius: 8px;
  color: var(--heading);
  font-weight: 800;
}

.feature-live-item.active {
  background: #f2efff;
}

.feature-live-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 23px;
}

.feature-live-icon.upload { background: linear-gradient(135deg, #ff9f43, #ea5455); }
.feature-live-icon.settle { background: linear-gradient(135deg, #28c76f, #00bad1); }
.feature-live-icon.agency { background: linear-gradient(135deg, #7367f0, #00bad1); }
.feature-live-icon.library { background: linear-gradient(135deg, #ff9f43, #e83e8c); }
.feature-live-icon.promote { background: linear-gradient(135deg, #e83e8c, #ea5455); }

.live-preview-title {
  max-width: 760px;
  margin: -8px auto 34px;
  text-align: center;
}

.live-preview-title h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.15;
}

.live-preview-title p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.function-zone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.function-zone-panel {
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  padding: 18px;
  box-shadow: none;
}

.zone-lilac { background: #f2efff; }
.zone-rose { background: #fff0f7; }
.zone-cyan { background: #eefbfe; }
.zone-amber { background: #fff6ea; }

.zone-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 4px 18px;
}

.zone-panel-head h3 {
  margin: 0;
  color: var(--heading);
  font-size: 20px;
}

.zone-panel-head a {
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.zone-ui-preview {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  min-height: 250px;
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.zone-side {
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(115, 103, 240, 0.9), rgba(232, 62, 140, 0.72));
}

.zone-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.zone-main span,
.zone-main b,
.zone-list-preview span {
  display: block;
  border-radius: 8px;
  background: rgba(115, 103, 240, 0.12);
}

.zone-main span {
  height: 72px;
}

.zone-main b {
  height: 126px;
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(115, 103, 240, 0.16), rgba(232, 62, 140, 0.14));
}

.zone-chart-preview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  min-height: 250px;
}

.zone-chart-preview i {
  display: block;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #7367f0, #ea5455);
}

.zone-list-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
  align-content: center;
}

.zone-list-preview span {
  height: 44px;
  background: rgba(255, 255, 255, 0.76);
}

.zone-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.zone-chip-row span {
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--heading);
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.module-live-preview + .section {
  background: linear-gradient(112deg, #f6f2ff 0%, #fff7fb 52%, #fff4ef 100%);
}

@media (max-width: 1040px) {
  .feature-live-rail {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    transform: translateY(-34px);
  }

  .feature-live-label {
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
  }

  .feature-live-label i {
    transform: rotate(0deg);
  }

  .function-zone-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .module-live-preview {
    padding-bottom: 46px;
  }

  .feature-live-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-live-item {
    min-height: 78px;
  }

  .live-preview-title {
    margin-top: -10px;
  }

  .function-zone-panel {
    min-height: auto;
    padding: 14px;
  }

  .zone-ui-preview {
    grid-template-columns: minmax(0, 1fr);
    min-height: 220px;
  }

  .zone-side {
    display: none;
  }

  .zone-chart-preview {
    min-height: 220px;
  }
}

/* Vuexy flat refinement v4: smaller type, lighter buttons, white surfaces, clearer watermelon blocks. */
:root {
  --watermelon: #ff4f76;
  --watermelon-deep: #e43f6f;
  --watermelon-soft: #ffe1e8;
  --vuexy-page: #ffffff;
  --vuexy-soft: #f8f7fa;
}

html,
body {
  background: var(--vuexy-page);
}

body {
  letter-spacing: 0;
}

.site-header {
  border-bottom-color: rgba(235, 234, 240, 0.82);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 8px rgba(47, 43, 61, 0.04);
}

.logo-glyph,
.brand-mark {
  background: linear-gradient(135deg, #7367f0 0%, var(--watermelon) 100%);
  box-shadow: 0 4px 12px rgba(115, 103, 240, 0.16);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(115, 103, 240, 0.075);
}

.btn,
button.btn {
  min-height: 36px;
  border-color: #ebeaf0;
  border-radius: 6px;
  padding: 8px 15px;
  color: #5d596c;
  background: #fff;
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
}

.btn:hover,
button.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(47, 43, 61, 0.07);
}

.btn-primary,
button.btn-primary {
  border-color: #7367f0;
  color: #fff;
  background: #7367f0;
  box-shadow: 0 3px 8px rgba(115, 103, 240, 0.24);
}

.btn-primary:hover,
button.btn-primary:hover {
  border-color: #655bd3;
  background: #655bd3;
  box-shadow: 0 5px 12px rgba(115, 103, 240, 0.24);
}

.btn-outline {
  border-color: rgba(115, 103, 240, 0.22);
  color: #7367f0;
  background: #fff;
  box-shadow: none;
}

.btn-outline:hover {
  border-color: rgba(115, 103, 240, 0.32);
  color: #7367f0;
  background: #f3f1ff;
  box-shadow: none;
}

.vuexy-hero,
.solution-hero {
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 79, 118, 0.09), transparent 26%),
    linear-gradient(108deg, #f1eeff 0%, #fff3f7 62%, #fff7f2 100%);
}

.vuexy-hero {
  padding: 58px 0 96px;
}

.vuexy-hero-grid {
  min-height: 368px;
  gap: 48px;
}

.solution-hero {
  padding: 58px 0 102px;
}

.solution-hero-grid {
  gap: 54px;
}

.hero-copy h1,
.solution-copy h1 {
  max-width: 720px;
  margin: 0;
  color: transparent;
  background: linear-gradient(96deg, #6f5ff2 0%, #8d56dc 38%, #c94696 66%, var(--watermelon-deep) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy p,
.solution-copy p {
  max-width: 640px;
  margin-top: 18px;
  color: #6f6b7d;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 24px;
}

.solution-preview {
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(47, 43, 61, 0.08);
}

.preview-top .icon,
.feature-tile .icon {
  border-radius: 9px;
  background: linear-gradient(135deg, #7367f0, var(--watermelon));
  box-shadow: none;
}

.preview-bars,
.zone-ui-preview {
  background: #f7f6fb;
}

.preview-bars span,
.zone-chart-preview i {
  background: linear-gradient(180deg, #7367f0 0%, var(--watermelon) 100%);
}

#workflow {
  position: relative;
  z-index: 3;
  margin-top: -58px;
  padding-top: 0;
  background: transparent;
}

.flow-selector-panel,
.feature-live-rail {
  grid-template-columns: 172px minmax(0, 760px);
}

.flow-selector-note,
.feature-live-label {
  color: #8a8798;
  font-size: 14px;
  font-weight: 500;
}

.flow-selector-note i,
.feature-live-label i {
  color: rgba(115, 103, 240, 0.52);
  font-size: 36px;
}

.flow-selector-strip,
.feature-live-strip {
  gap: 10px;
  border-radius: 7px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(47, 43, 61, 0.09);
}

.flow-selector-item,
.feature-live-item {
  min-height: 70px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
}

.flow-selector-item.active,
.feature-live-item.active {
  background: #f1efff;
}

.flow-selector-icon,
.feature-live-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  font-size: 19px;
}

.flow-selector-icon.promote,
.feature-live-icon.promote,
.feature-live-icon.library {
  background: linear-gradient(135deg, var(--watermelon), var(--watermelon-deep));
}

.flow-selector-icon.upload,
.feature-live-icon.upload {
  background: linear-gradient(135deg, #ff8b58, var(--watermelon));
}

#channels,
#features,
.module-live-preview,
.module-live-preview + .section,
.section {
  background: #fff;
}

#channels {
  padding-top: 56px;
}

.vuexy-section-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.center-title h2,
.section-title h2,
.live-preview-title h2,
.onboard-band h2 {
  color: var(--heading);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
}

.center-title p,
.section-title p,
.live-preview-title p,
.onboard-band p {
  color: #6f6b7d;
  font-size: 15px;
  line-height: 1.7;
}

.channel-grid,
.grid-3,
.solution-feature-grid {
  gap: 20px;
}

.channel-card,
.grid-3 > .card,
.feature-tile {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.channel-card {
  min-height: 236px;
  padding: 24px;
}

.grid-3 > .card,
.feature-tile {
  min-height: 180px;
  padding: 24px;
}

.channel-card:nth-child(1),
.grid-3 > .card:nth-child(2),
.feature-tile:nth-child(2),
.solution-stat-row div:nth-child(2) {
  background: linear-gradient(135deg, #fff0f4 0%, #ffd9e3 48%, #ff7a95 100%);
}

.channel-card:nth-child(2),
.grid-3 > .card,
.grid-3 > .card:nth-child(6),
.feature-tile,
.zone-lilac {
  background: #fff;
}

.channel-card:nth-child(3),
.grid-3 > .card:nth-child(3),
.feature-tile:nth-child(3),
.zone-cyan {
  background: #ebfbff;
}

.grid-3 > .card:nth-child(4),
.feature-tile:nth-child(4),
.zone-amber {
  background: #fff4e8;
}

.grid-3 > .card:nth-child(5),
.feature-tile:nth-child(5) {
  background: #effaf4;
}

.feature-tile .icon,
.grid-3 > .card .icon,
.channel-logo {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.stats-strip {
  border: 0;
  border-radius: 0;
  padding: 18px 0;
  background: #fff;
  box-shadow: none;
}

.stats-strip div {
  border-right: 1px solid #f0eff4;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

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

.stats-strip strong {
  font-size: 22px;
}

.module-live-preview {
  padding-bottom: 70px;
}

.feature-live-rail {
  transform: translateY(-50%);
}

.live-preview-title {
  margin: -12px auto 30px;
}

.function-zone-grid {
  gap: 24px;
}

.function-zone-panel {
  min-height: 390px;
  border: 0;
  border-radius: 8px;
  padding: 18px;
  box-shadow: none;
}

.function-zone-panel:not(.zone-rose) {
  background: #fff;
}

.zone-rose {
  background: linear-gradient(135deg, #fff0f4 0%, #ffd8e3 46%, #ff6f8d 100%);
}

.zone-panel-head {
  padding: 3px 4px 16px;
}

.zone-panel-head h3 {
  font-size: 18px;
  line-height: 1.3;
}

.zone-panel-head a {
  border-radius: 6px;
  padding: 7px 11px;
  color: #7367f0;
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.function-zone-panel:not(.zone-rose) .zone-panel-head a {
  background: #f3f1ff;
}

.zone-ui-preview {
  min-height: 230px;
  border-radius: 8px;
}

.zone-side {
  background: linear-gradient(180deg, #7367f0, var(--watermelon));
}

.zone-main span,
.zone-main b {
  background: rgba(115, 103, 240, 0.1);
}

.zone-main b {
  background: linear-gradient(135deg, rgba(115, 103, 240, 0.14), rgba(255, 79, 118, 0.13));
}

.zone-chip-row span {
  border-radius: 6px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.function-zone-panel:not(.zone-rose) .zone-chip-row span {
  background: #f8f7fa;
}

.onboard-band {
  border: 0;
  border-radius: 8px;
  background: #f8f7fa;
  box-shadow: none;
}

@media (max-width: 1040px) {
  .vuexy-hero {
    padding-bottom: 84px;
  }

  .vuexy-hero-grid,
  .solution-hero-grid {
    gap: 34px;
  }

  .flow-selector-panel,
  .feature-live-rail {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .vuexy-hero,
  .solution-hero {
    padding-top: 42px;
  }

  .hero-copy h1,
  .solution-copy h1 {
    font-size: 32px;
    line-height: 1.16;
  }

  .hero-copy p,
  .solution-copy p {
    font-size: 15px;
  }

  #workflow {
    margin-top: -42px;
  }

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

  .flow-selector-item,
  .feature-live-item {
    min-height: 68px;
  }

  .center-title h2,
  .section-title h2,
  .live-preview-title h2,
  .onboard-band h2 {
    font-size: 24px;
  }

  .function-zone-panel {
    min-height: auto;
  }

  .zone-ui-preview {
    min-height: 208px;
  }
}

/* Vuexy v5: line-based content blocks and two-state landing navigation. */
:root {
  --line-card-border: #e5e3ec;
  --line-card-muted: #747185;
  --line-card-icon: #f7f7fb;
}

.site-header {
  min-height: 82px;
  border-bottom: 0;
  background:
    linear-gradient(108deg, #f1eeff 0%, #fff3f7 62%, #fff7f2 100%);
  box-shadow: none;
  backdrop-filter: none;
  transition: min-height 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header .nav {
  min-height: 82px;
  transition: min-height 0.2s ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  border-bottom: 1px solid rgba(47, 43, 61, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(47, 43, 61, 0.045);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .nav {
  min-height: 72px;
}

.nav-links {
  gap: 24px;
  color: #3f3b4e;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a {
  border-radius: 0;
  padding: 4px 0;
  background: transparent;
  line-height: 1.3;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2f2b3d;
  background: transparent;
}

.nav-links a.active::after {
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #7367f0, var(--watermelon));
}

.site-header.is-scrolled .nav-links {
  font-size: 15px;
}

.site-header.is-scrolled .nav-links a.active::after {
  bottom: -18px;
}

.site-header .btn-primary {
  min-height: 42px;
  padding-right: 18px;
  padding-left: 18px;
  box-shadow: 0 5px 14px rgba(115, 103, 240, 0.24);
}

section {
  scroll-margin-top: 96px;
}

#channels {
  padding-top: 74px;
  padding-bottom: 18px;
}

#channels .center-title {
  margin-bottom: 46px;
}

#channels .center-title h2 {
  font-size: 30px;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-card-border);
  border-radius: 8px;
  background: #fff;
}

.channel-card,
.channel-card:nth-child(1),
.channel-card:nth-child(2),
.channel-card:nth-child(3) {
  min-height: 260px;
  border: 0;
  border-right: 1px solid var(--line-card-border);
  border-radius: 0;
  padding: 32px;
  background: #fff;
  box-shadow: none;
}

.channel-card:last-child {
  border-right: 0;
}

.channel-card:hover {
  transform: none;
  background: #fcfcfe;
  box-shadow: none;
}

.channel-card > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.channel-logo {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--line-card-icon);
  box-shadow: none;
  font-size: 24px;
}

.channel-card h3 {
  margin: 0;
  color: #2f2b3d;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.channel-card ul {
  margin-top: 24px;
  color: var(--line-card-muted);
  font-size: 15px;
  line-height: 1.75;
}

.channel-card .btn {
  display: none;
}

.ecosystem-section {
  padding-top: 70px;
  background:
    linear-gradient(108deg, rgba(241, 238, 255, 0.55) 0%, rgba(255, 243, 247, 0.48) 62%, rgba(255, 247, 242, 0.52) 100%);
}

.ecosystem-title {
  justify-content: center;
  text-align: center;
}

.ecosystem-title > div {
  max-width: 780px;
  margin: 0 auto;
}

.ecosystem-grid,
.contact-line-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-card-border);
  border-radius: 8px;
  background: #fff;
}

.ecosystem-card,
.line-card {
  min-height: 220px;
  border-right: 1px solid var(--line-card-border);
  border-bottom: 1px solid var(--line-card-border);
  padding: 32px;
  background: #fff;
  transition: background 0.18s ease;
}

.ecosystem-card:nth-child(3n),
.line-card:nth-child(3n) {
  border-right: 0;
}

.ecosystem-card:nth-last-child(-n + 3),
.line-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.ecosystem-card:hover,
.line-card:hover {
  background: #fcfcfe;
}

.ecosystem-card .icon,
.line-card .icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  color: #7367f0;
  background: var(--line-card-icon);
  font-size: 22px;
}

.ecosystem-card h3,
.line-card h3 {
  margin: 28px 0 12px;
  color: #2f2b3d;
  font-size: 19px;
  line-height: 1.35;
}

.ecosystem-card p,
.line-card p {
  margin: 0;
  color: var(--line-card-muted);
  font-size: 15px;
  line-height: 1.75;
}

.subpage-hero {
  padding: 86px 0 42px;
  background:
    linear-gradient(108deg, rgba(241, 238, 255, 0.66) 0%, rgba(255, 243, 247, 0.56) 62%, rgba(255, 247, 242, 0.58) 100%);
}

.subpage-hero h1 {
  margin: 0;
  color: #2f2b3d;
  font-size: 38px;
  line-height: 1.2;
}

.faq-list {
  border: 1px solid var(--line-card-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--line-card-border);
  border-radius: 0;
  box-shadow: none;
}

.faq-item:last-child {
  border-bottom: 0;
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 14px;
    font-size: 14px;
  }

  .channel-grid,
  .ecosystem-grid,
  .contact-line-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .channel-card,
  .ecosystem-card,
  .line-card,
  .ecosystem-card:nth-last-child(-n + 3),
  .line-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line-card-border);
  }

  .channel-card:nth-child(2n),
  .ecosystem-card:nth-child(2n),
  .line-card:nth-child(2n) {
    border-right: 0;
  }

  .channel-card:nth-child(3n),
  .ecosystem-card:nth-child(3n),
  .line-card:nth-child(3n) {
    border-right: 1px solid var(--line-card-border);
  }

  .channel-card:nth-last-child(-n + 1),
  .ecosystem-card:nth-last-child(-n + 2),
  .line-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled {
    min-height: auto;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(47, 43, 61, 0.045);
    backdrop-filter: blur(12px);
  }

  .site-header .nav,
  .site-header.is-scrolled .nav {
    min-height: auto;
  }

  .nav-links {
    gap: 8px;
    font-size: 13px;
  }

  .nav-links a {
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(115, 103, 240, 0.06);
  }

  .channel-grid,
  .ecosystem-grid,
  .contact-line-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .channel-card,
  .channel-card:nth-child(1),
  .channel-card:nth-child(2),
  .channel-card:nth-child(3),
  .ecosystem-card,
  .line-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-card-border);
    padding: 24px;
  }

  .channel-card:last-child,
  .ecosystem-card:last-child,
  .line-card:last-child {
    border-bottom: 0;
  }

  .ecosystem-card:nth-last-child(-n + 3),
  .line-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line-card-border);
  }

  .ecosystem-card:last-child,
  .line-card:last-child {
    border-bottom: 0;
  }
}

/* Client revision 2026-07-04: hero proof placement, brand cleanup, transparent card grids. */
.site-header .brand-logo {
  gap: 14px;
}

.site-header .logo-glyph {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  font-size: 30px;
}

.site-header .brand-logo strong {
  font-size: 22px;
  line-height: 1;
}

.site-header .brand-logo small {
  display: none;
}

.site-header.is-scrolled {
  border-bottom: 0;
  box-shadow: none;
}

.hero-copy {
  max-width: 760px;
}

.vuexy-hero {
  padding-top: 30px;
  padding-bottom: 78px;
}

.vuexy-hero-grid {
  min-height: 470px;
  align-items: center;
}

.ecosystem-visual {
  position: relative;
  min-height: 460px;
  isolation: isolate;
}

.ecosystem-orbit-ring {
  position: absolute;
  inset: 54px 42px;
  border: 2px dashed rgba(115, 103, 240, 0.16);
  border-radius: 48% 52% 52% 48% / 46% 44% 56% 54%;
  transform: rotate(-7deg);
}

.ecosystem-orbit-ring::before,
.ecosystem-orbit-ring::after {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 79, 118, 0.12), transparent 62%);
  content: "";
}

.ecosystem-orbit-ring::before {
  top: -70px;
  right: 42px;
  width: 210px;
  height: 210px;
}

.ecosystem-orbit-ring::after {
  bottom: -58px;
  left: 32px;
  width: 180px;
  height: 180px;
}

.ecosystem-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 174px;
  height: 174px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 24px 56px rgba(115, 103, 240, 0.14);
  backdrop-filter: blur(12px);
  text-align: center;
  z-index: 2;
}

.core-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #7367f0 0%, #9c5de8 45%, #ea5455 100%);
  font-size: 30px;
}

.core-mark-img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 90%;
  border-radius: 12px;
  object-fit: contain;
}

.ecosystem-core strong,
.role-node strong {
  color: #2f2b3d;
  font-weight: 800;
}

.ecosystem-core strong {
  margin-top: 4px;
  font-size: 20px;
}

.ecosystem-core small,
.role-node small {
  color: #6f6b7d;
  font-weight: 600;
}

.role-node {
  position: absolute;
  display: grid;
  min-width: 146px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 34px rgba(47, 43, 61, 0.08);
  backdrop-filter: blur(10px);
  z-index: 3;
}

.role-node span {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  place-items: center;
  border-radius: 10px;
  color: #7367f0;
  background: #f1efff;
  font-size: 22px;
}

.role-node strong,
.role-node small {
  line-height: 1.2;
}

.role-creator {
  top: 82px;
  left: 40px;
}

.role-mcn {
  top: 52px;
  right: 24px;
}

.role-author {
  right: 42px;
  bottom: 70px;
}

.role-promoter {
  bottom: 54px;
  left: 58px;
}

.role-mcn span {
  color: #00a8bf;
  background: rgba(0, 207, 232, 0.13);
}

.role-author span {
  color: #d76d00;
  background: rgba(255, 159, 67, 0.16);
}

.role-promoter span {
  color: #e83e8c;
  background: rgba(255, 79, 118, 0.14);
}

.ecosystem-flow-chip {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 8px 14px;
  color: #7367f0;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 10px 24px rgba(47, 43, 61, 0.06);
  font-size: 13px;
  font-weight: 800;
  z-index: 3;
}

.chip-revenue {
  top: 212px;
  left: 38px;
}

.chip-settle {
  right: 54px;
  bottom: 202px;
}

.hero-actions {
  justify-content: center;
  width: min(420px, 100%);
  margin-top: 28px;
}

.hero-actions .btn {
  min-width: 142px;
  min-height: 50px;
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(132px, 1fr));
  gap: 22px;
  width: min(760px, 100%);
  margin-top: 54px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-stats div {
  display: block;
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  padding: 15px 22px 14px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  backdrop-filter: blur(8px);
  text-align: left;
}

.hero-stats strong {
  display: block;
  color: #2f2b3d;
  font-size: 28px;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-stats p {
  margin: 5px 0 0;
  color: #6f6b7d;
  font-size: 15px;
  line-height: 1.28;
  white-space: nowrap;
}

.hero-stats .stat-dot {
  display: none;
}

#workflow {
  margin-top: -56px;
}

.flow-selector-panel {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

.flow-selector-strip {
  width: 100%;
}

#channels {
  padding-top: 108px;
  padding-bottom: 86px;
  background: #f8f7fa;
}

#channels .center-title {
  margin-bottom: 46px;
}

.channel-grid {
  gap: 28px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.channel-card,
.channel-card:nth-child(1),
.channel-card:nth-child(2),
.channel-card:nth-child(3) {
  min-height: 292px;
  border: 0;
  border-radius: 8px;
  padding: 28px 28px 34px;
  background: #f3f2f7;
  box-shadow: none;
}

.channel-card:last-child,
.channel-card:nth-child(3n) {
  border-right: 0;
}

.channel-card > div {
  margin-top: 28px;
}

.channel-card:hover {
  background: #f0eff5;
}

.ecosystem-section {
  padding-top: 96px;
  padding-bottom: 88px;
  background:
    linear-gradient(108deg, rgba(241, 238, 255, 0.54) 0%, rgba(255, 243, 247, 0.46) 62%, rgba(255, 247, 242, 0.5) 100%);
}

.ecosystem-grid {
  position: relative;
  gap: 24px;
  align-items: stretch;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.ecosystem-grid::before {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 103, 240, 0.2), transparent);
  content: "";
}

.ecosystem-card,
.ecosystem-card:nth-child(3n),
.ecosystem-card:nth-last-child(-n + 3) {
  position: relative;
  min-height: 206px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 32px 30px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 16px 40px rgba(47, 43, 61, 0.055);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.ecosystem-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 48px rgba(47, 43, 61, 0.075);
}

.ecosystem-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.5);
}

.ecosystem-card h3 {
  margin-top: 26px;
}

.ecosystem-card p {
  max-width: 29ch;
}

.ecosystem-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 46px;
}

.ecosystem-hub-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 44px 40px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 79, 118, 0.16), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(115, 103, 240, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 48px rgba(47, 43, 61, 0.07);
  backdrop-filter: blur(12px);
}

.ecosystem-hub-panel::after {
  position: absolute;
  right: -64px;
  bottom: -72px;
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(115, 103, 240, 0.24);
  border-radius: 999px;
  content: "";
}

.ecosystem-hub-panel h3 {
  margin: 26px 0 14px;
  color: #2f2b3d;
  font-size: 28px;
  line-height: 1.2;
}

.ecosystem-hub-panel p {
  max-width: 35ch;
  margin: 0;
  color: #6f6b7d;
  font-size: 16px;
  line-height: 1.78;
}

.ecosystem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.ecosystem-tags span {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 8px 13px;
  color: #7367f0;
  background: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 800;
}

.ecosystem-role-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ecosystem-role-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 40px rgba(47, 43, 61, 0.055);
  backdrop-filter: blur(10px);
}

.ecosystem-role-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 22px 48px rgba(47, 43, 61, 0.075);
}

.ecosystem-role-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #f1efff;
}

.ecosystem-role-card:nth-child(2) .icon {
  color: #00a8bf;
  background: rgba(0, 207, 232, 0.13);
}

.ecosystem-role-card:nth-child(3) .icon {
  color: #d76d00;
  background: rgba(255, 159, 67, 0.16);
}

.ecosystem-role-card:nth-child(4) .icon {
  color: #e83e8c;
  background: rgba(255, 79, 118, 0.14);
}

.ecosystem-role-card h3 {
  margin: 0 0 8px;
  color: #2f2b3d;
  font-size: 19px;
  line-height: 1.3;
}

.ecosystem-role-card p {
  margin: 0;
  color: #6f6b7d;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1040px) {
  .site-header .logo-glyph {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }

  .site-header .brand-logo strong {
    font-size: 20px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(620px, 100%);
  }

  .hero-stats div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.86);
  }

  .hero-stats div:nth-child(-n + 2) {
    padding-bottom: 16px;
  }

  .hero-stats div:nth-child(n + 3) {
    padding-top: 15px;
  }

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

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

  .ecosystem-visual {
    min-height: 420px;
  }

  .ecosystem-story {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .vuexy-hero {
    padding-top: 42px;
    padding-bottom: 76px;
  }

  .vuexy-hero-grid {
    min-height: auto;
  }

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

  .ecosystem-orbit-ring,
  .ecosystem-flow-chip {
    display: none;
  }

  .ecosystem-core,
  .role-node {
    position: static;
    transform: none;
  }

  .ecosystem-core {
    width: 100%;
    height: auto;
    min-height: 118px;
    grid-template-columns: 54px minmax(0, 1fr);
    justify-items: start;
    padding: 18px;
    text-align: left;
  }

  .ecosystem-core small {
    grid-column: 2;
  }

  .role-node {
    width: 100%;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-actions .btn {
    min-width: 0;
    min-height: 46px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 15px;
  }

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

  .hero-stats div,
  .hero-stats div:nth-child(2),
  .hero-stats div:nth-child(-n + 2),
  .hero-stats div:nth-child(n + 3) {
    border-right: 0;
    padding: 14px 18px;
  }

  .hero-stats div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.86);
  }

  #workflow {
    margin-top: -34px;
  }

  #channels {
    padding-top: 72px;
    padding-bottom: 58px;
  }

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

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

  .ecosystem-grid::before {
    display: none;
  }

  .ecosystem-story,
  .ecosystem-role-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .ecosystem-hub-panel,
  .ecosystem-role-card {
    padding: 24px;
  }
}

#channels {
  background: #ffffff !important;
}

/* Client revision 2026-07-04: role login strip and monetization flow. */
.login-selector-panel {
  max-width: 1088px;
}

.login-selector-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(219, 218, 222, 0.62);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 32px rgba(47, 43, 61, 0.06);
}

.login-selector-item {
  position: relative;
  min-height: 79px;
  gap: 5px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 20px;
  color: #2f2b3d;
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.login-selector-item::after {
  content: none;
}

.login-selector-item:hover,
.login-selector-item:focus-visible {
  color: #2f2b3d;
  border-color: rgba(115, 103, 240, 0.22);
  background: rgba(115, 103, 240, 0.06);
  outline: 0;
}

.login-selector-item.active {
  background: transparent;
}

.login-selector-item strong {
  color: #2f2b3d;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.login-selector-item .flow-selector-icon {
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  font-size: 29px;
}

.flow-selector-icon.login-creator {
  color: #8278e8;
}

.flow-selector-icon.login-mcn {
  color: #36a7d8;
}

.flow-selector-icon.login-author {
  color: #f1874d;
}

.flow-selector-icon.login-distribute {
  color: #24b99a;
}

.flow-selector-icon.login-material {
  color: #a16ad8;
}

.monetization-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(116px, 1fr));
  gap: 20px;
  align-items: stretch;
  max-width: 1080px;
  margin: -18px auto 54px;
  padding: 24px;
  border: 1px solid rgba(219, 218, 222, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 250, 0.92));
  box-shadow: 0 20px 54px rgba(47, 43, 61, 0.08);
}

.monetization-flow::before {
  position: absolute;
  top: 57px;
  right: 72px;
  left: 72px;
  height: 2px;
  background: linear-gradient(90deg, rgba(115, 103, 240, 0.2), rgba(0, 186, 209, 0.22), rgba(234, 84, 85, 0.18));
  content: "";
}

.monetization-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  min-height: 120px;
  padding: 10px 8px 8px;
  color: #2f2b3d;
  text-align: center;
}

.monetization-step .flow-selector-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 4px solid #fff;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(47, 43, 61, 0.12);
}

.monetization-step strong {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.25;
}

.monetization-step small {
  color: #8a8798;
  font-size: 13px;
  font-weight: 600;
}

.monetization-arrow {
  display: none;
}

@media (min-width: 1041px) {
  .monetization-step:not(:last-child)::after {
    position: absolute;
    top: 37px;
    right: -18px;
    z-index: 2;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(115, 103, 240, 0.16);
    border-radius: 50%;
    color: #7367f0;
    background: #fff;
    content: "\ea1f";
    font-family: tabler-icons;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(47, 43, 61, 0.08);
  }
}

@media (max-width: 1040px) {
  .login-selector-panel {
    max-width: 760px;
  }

  .monetization-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -6px;
  }

  .monetization-flow::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .login-selector-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .login-selector-item {
    min-height: 74px;
    padding: 8px 10px;
  }

  .login-selector-item strong {
    font-size: 14px;
    line-height: 21px;
  }

  .login-selector-item .flow-selector-icon {
    width: 30px;
    height: 30px;
    font-size: 27px;
  }

  .monetization-flow {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 38px;
    padding: 14px;
  }

  .monetization-step {
    grid-template-columns: 44px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    min-height: 76px;
    padding: 12px;
    text-align: left;
  }

  .monetization-step small {
    grid-column: 2;
    margin-top: -8px;
  }
}

/* Client revision 2026-07-04: keep monetization flow below title without framing. */
#channels .center-title {
  margin-bottom: 24px;
}

.monetization-flow {
  max-width: 1080px;
  margin: 0 auto 54px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.monetization-flow::before,
.monetization-step:not(:last-child)::after {
  display: none;
  content: none;
}

.monetization-step .flow-selector-icon {
  border-color: #fff;
}

@media (max-width: 1040px) {
  .monetization-flow {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  #channels .center-title {
    margin-bottom: 18px;
  }

  .monetization-flow {
    margin-bottom: 38px;
    padding: 0;
  }
}

/* Client revision 2026-07-04: tighter Vuexy-like hero rhythm and title brush accents. */
.title-brush {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
}

.hero-copy h1 .title-brush,
.solution-copy h1 .title-brush {
  color: transparent;
  background: linear-gradient(96deg, #6f5ff2 0%, #8d56dc 38%, #c94696 66%, var(--watermelon-deep) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.title-brush::before,
.title-brush::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.title-brush::before {
  right: 1%;
  bottom: 0.04em;
  left: 5%;
  height: 0.36em;
  border-radius: 999px 70% 80% 999px;
  background:
    linear-gradient(90deg, rgba(255, 112, 156, 0.18), rgba(115, 103, 240, 0.17) 52%, rgba(0, 186, 209, 0.1));
  transform: rotate(-1.2deg);
}

.title-brush::after {
  right: 6%;
  bottom: -0.02em;
  left: 12%;
  height: 0.1em;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 159, 67, 0.18), rgba(234, 84, 85, 0.2), rgba(115, 103, 240, 0.16));
  transform: rotate(0.6deg);
}

#channels {
  padding-top: 64px;
}

#channels .center-title {
  margin-bottom: 28px;
}

.monetization-flow {
  margin-bottom: 42px;
}

@media (max-width: 1040px) {
  #channels {
    padding-top: 58px;
  }
}

@media (max-width: 760px) {
  .title-brush {
    white-space: normal;
  }

  #channels {
    padding-top: 48px;
  }

  .monetization-flow {
    margin-bottom: 32px;
  }
}

/* Client revision 2026-07-04: top quick-login dropdown. */
.site-header .nav-actions {
  position: relative;
  z-index: 80;
}

.nav-login-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-login-menu::before {
  position: absolute;
  top: 100%;
  right: -12px;
  left: -12px;
  height: 14px;
  content: "";
}

.nav-login-trigger {
  min-width: 142px;
  min-height: 50px;
  border-color: rgba(115, 103, 240, 0.36);
  padding: 12px 24px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0.125rem 0.375rem rgba(47, 43, 61, 0.05);
  font-size: 17px;
  font-weight: 800;
}

.nav-login-trigger .ti-login-2 {
  font-size: 16px;
}

.nav-login-trigger .ti-chevron-down {
  font-size: 15px;
  transition: transform 0.18s ease;
}

.nav-login-trigger:hover,
.nav-login-menu:focus-within .nav-login-trigger {
  color: var(--primary);
  border-color: rgba(115, 103, 240, 0.55);
  background: #fff;
  box-shadow: 0 0.25rem 0.875rem rgba(115, 103, 240, 0.12);
}

.nav-login-menu:hover .nav-login-trigger .ti-chevron-down,
.nav-login-menu:focus-within .nav-login-trigger .ti-chevron-down {
  transform: rotate(180deg);
}

.nav-login-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 90;
  width: 246px;
  padding: 8px;
  border: 1px solid rgba(219, 218, 222, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1.25rem 3rem rgba(47, 43, 61, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
}

@supports (backdrop-filter: blur(12px)) {
  .nav-login-dropdown {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
  }
}

.nav-login-dropdown::before {
  position: absolute;
  top: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(219, 218, 222, 0.78);
  border-left: 1px solid rgba(219, 218, 222, 0.78);
  background: inherit;
  content: "";
  transform: rotate(45deg);
}

.nav-login-menu:hover .nav-login-dropdown,
.nav-login-menu:focus-within .nav-login-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.nav-login-item {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  border-radius: 7px;
  padding: 7px 9px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-login-item:hover,
.nav-login-item:focus-visible {
  color: var(--heading);
  background: rgba(115, 103, 240, 0.055);
  transform: translateX(2px);
}

.nav-login-item:focus-visible {
  outline: 2px solid rgba(115, 103, 240, 0.28);
  outline-offset: 2px;
}

.nav-login-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 8px;
  font-size: 21px;
}

.nav-login-icon.login-creator {
  color: #7367f0;
  background: rgba(115, 103, 240, 0.11);
}

.nav-login-icon.login-mcn {
  color: #00a9c0;
  background: rgba(0, 207, 232, 0.12);
}

.nav-login-icon.login-author {
  color: #f1874d;
  background: rgba(255, 159, 67, 0.14);
}

.nav-login-icon.login-distribute {
  color: #20ad8f;
  background: rgba(40, 199, 111, 0.13);
}

.nav-login-icon.login-material {
  color: #8a64d6;
  background: rgba(161, 106, 216, 0.12);
}

@media (max-width: 760px) {
  .site-header .nav-actions {
    display: flex;
    grid-template-columns: none;
    width: 100% !important;
  }

  .nav-login-menu {
    width: 100%;
  }

  .nav-actions .nav-login-trigger {
    width: 100%;
    min-height: 46px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 15px;
  }

  .nav-login-dropdown {
    right: auto;
    left: 0;
    width: min(100%, 280px);
    transform-origin: top left;
  }

  .nav-login-dropdown::before {
    right: auto;
    left: 24px;
  }
}

/* Client revision 2026-07-04: feature pages become flat auth/onboarding screens. */
.solution-auth-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: #fff;
}

.solution-auth-page main {
  flex: 1;
}

.solution-auth-page .site-header {
  background: rgba(255, 255, 255, 0.96);
}

.solution-auth-page .solution-auth-hero {
  display: flex;
  min-height: calc(100vh - 82px - 95px);
  align-items: center;
  padding: 64px 0 72px;
}

.solution-auth-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.72fr);
  gap: 84px;
  align-items: center;
}

.solution-auth-page .solution-copy h1 {
  max-width: 720px;
  font-size: 42px;
  line-height: 1.18;
}

.solution-auth-page .solution-copy p {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.75;
}

.solution-path-note {
  max-width: 760px;
  margin-top: 30px;
}

.solution-path-note .solution-eyebrow {
  margin-bottom: 16px;
  padding: 8px 16px;
  color: #e83e8c;
  background: rgba(232, 62, 140, 0.1);
  font-size: 14px;
  line-height: 1.2;
}

.solution-path-note h2 {
  max-width: 760px;
  margin: 0;
  color: var(--heading);
  font-size: 34px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
}

.solution-path-note p {
  max-width: 760px;
  margin-top: 14px;
  color: #6f6b7d;
  font-size: 16px;
  line-height: 1.72;
}

.solution-auth-panel {
  width: min(100%, 560px);
  justify-self: end;
}

.solution-auth-shell {
  width: 100%;
  border: 1px solid rgba(219, 218, 222, 0.9);
  border-radius: 18px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(47, 43, 61, 0.1);
}

.solution-auth-modes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  border-radius: 10px;
  padding: 6px;
  background: #f8f7fa;
}

.solution-auth-modes .tab {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0.62rem 1rem;
  color: #6f6b7d;
  background: transparent;
  box-shadow: none;
  font-size: 15px;
  font-weight: 700;
}

.solution-auth-modes .tab.active {
  color: #7367f0;
  background: #fff;
  box-shadow: 0 0.25rem 0.875rem rgba(47, 43, 61, 0.08);
}

.solution-auth-card {
  padding: 30px 24px 20px;
  color: var(--heading);
}

.solution-auth-head {
  margin-bottom: 28px;
}

.solution-auth-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #8a8798;
  font-size: 13px;
  font-weight: 700;
}

.solution-auth-head h2 {
  margin: 0;
  color: var(--heading);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.solution-auth-head p {
  margin: 10px 0 0;
  color: #6f6b7d;
  font-size: 16px;
  line-height: 1.5;
}

.auth-field {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 500;
}

.auth-field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #dbdade;
  border-radius: 8px;
  padding: 0 16px;
  color: var(--heading);
  background: #fff;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.auth-field input::placeholder {
  color: #a8aaae;
  font-weight: 400;
}

.auth-field input:focus {
  border-color: #7367f0;
  box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.14), 0 0.35rem 0.875rem rgba(115, 103, 240, 0.16);
}

.auth-password-field {
  position: relative;
}

.auth-password-field input {
  padding-right: 54px;
}

.auth-password-field > i {
  position: absolute;
  right: 16px;
  bottom: 15px;
  color: #4b465c;
  font-size: 23px;
  pointer-events: none;
}

.auth-inline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0 28px;
}

.auth-mini-check,
.auth-check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  font-size: 16px;
  line-height: 1.45;
}

.auth-mini-check {
  margin: 0;
}

.auth-inline-link {
  color: #7367f0;
  font-size: 16px;
  font-weight: 500;
}

.auth-mini-check input,
.auth-check input {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid #c9c8d0;
  accent-color: #7367f0;
}

.auth-check {
  margin: 24px 0 28px;
}

.solution-auth-submit {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff !important;
  background: #7367f0;
  box-shadow: 0 0.375rem 0.875rem rgba(115, 103, 240, 0.25);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.solution-auth-submit:visited {
  color: #fff !important;
}

.solution-auth-submit:hover,
.solution-auth-submit:focus-visible {
  color: #fff !important;
  background: #655bd3;
  box-shadow: 0 0.5rem 1.125rem rgba(115, 103, 240, 0.28);
  transform: translateY(-1px);
}

.auth-switch {
  margin: 24px 0 0;
  color: #6f6b7d;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.auth-switch-link,
.auth-switch a {
  border: 0;
  padding: 0;
  color: #7367f0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
}

.solution-auth-page .footer {
  border-top: 0;
  padding: 22px 0;
  background: #fff;
  box-shadow: none;
}

.footer .container {
  min-height: 46px;
  align-items: center;
  color: #6f6b7d;
  font-size: 14px;
}

.footer-brand-mini,
.footer-copy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-brand-mini {
  color: #6f6b7d;
  font-weight: 600;
}

.footer-mini-logo {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #7367f0 0%, #ff4f76 100%);
  box-shadow: 0 0.25rem 0.75rem rgba(115, 103, 240, 0.2);
  font-size: 17px;
}

.footer-mini-logo-img {
  display: block;
  height: 28px;
  width: auto;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: contain;
}

.footer-copy {
  justify-content: flex-end;
  color: #6f6b7d;
  text-align: right;
}

.footer-copy strong {
  color: #7367f0;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .solution-auth-page .solution-auth-hero {
    min-height: auto;
    padding: 52px 0 64px;
  }

  .solution-auth-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .solution-auth-panel {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .solution-auth-page .solution-auth-hero {
    padding: 40px 0 52px;
  }

  .solution-auth-grid {
    gap: 36px;
  }

  .solution-path-note {
    margin-top: 26px;
  }

  .solution-path-note .solution-eyebrow {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .solution-path-note h2 {
    font-size: 24px;
  }

  .solution-path-note p,
  .solution-auth-page .solution-copy p {
    font-size: 15px;
  }

  .solution-auth-shell {
    border-radius: 14px;
    padding: 10px;
  }

  .solution-auth-modes {
    gap: 4px;
    padding: 4px;
  }

  .solution-auth-modes .tab {
    min-height: 38px;
    font-size: 14px;
  }

  .solution-auth-card {
    padding: 22px 16px 16px;
  }

  .solution-auth-head {
    margin-bottom: 24px;
  }

  .solution-auth-kicker {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .solution-auth-head h2 {
    font-size: 24px;
  }

  .solution-auth-head p {
    font-size: 15px;
  }

  .auth-field {
    margin-top: 18px;
    font-size: 15px;
  }

  .auth-field input {
    min-height: 52px;
    font-size: 15px;
  }

  .auth-password-field > i {
    bottom: 14px;
  }

  .auth-inline-row {
    align-items: flex-start;
    flex-direction: column;
    margin: 20px 0 24px;
  }

  .auth-mini-check,
  .auth-check {
    align-items: flex-start;
    margin: 22px 0 24px;
    font-size: 14px;
  }

  .auth-inline-link {
    font-size: 14px;
  }

  .solution-auth-submit {
    min-height: 52px;
    font-size: 16px;
  }

  .auth-switch {
    font-size: 15px;
  }
}
