/*
  Public site theme. Source of truth for generated public HTML.
  Keep account widget styling in assets/account-widget.css.
*/

/* tokens */
:root {
  --ink: #111827;
  --muted: #667085;
  --subtle: #8a94a6;
  --line: #e4e7ec;
  --soft: #f7f8fa;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --page-bg: #ffffff;
  --accent: #c21868;
  --accent-2: #7f8a9a;
  --accent-3: #a42a62;
  --warn: #c21868;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.055);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 20px;
}

/* base */
body.site-public,
body.site-public * {
  box-sizing: border-box;
}

body.site-public {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(148, 163, 184, 0.08), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(226, 232, 240, 0.78), transparent 34%),
    var(--page-bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

body.site-public a {
  color: inherit;
  text-decoration: none;
}

/* page source: index.html */
body.site-home :where(:not(.xmp-account-slot):not(.xmp-account-slot *):not(.xmp-account-dialog-backdrop):not(.xmp-account-dialog-backdrop *):not(.xmp-chat-panel):not(.xmp-chat-panel *):not(.xmp-preview):not(.xmp-preview *)) {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root {
  --ink:#111827;
  --muted:#5b6472;
  --line:#e4e7ec;
  --soft:#f7f5fb;
  --accent:#d41472;
  --accent-2:#6d2bd2;
  --warn:#9d246d;
}

body.site-home {
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.65;
  overflow-x:hidden;
}

body.site-home a {
  text-decoration:none;
  color:inherit;
}

body.site-home .nav {
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 6vw;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}

body.site-home .brand {
  display:flex;
  align-items:center;
  gap:11px;
  font-weight:850;
  letter-spacing:.04em;
}

body.site-home .brand-logo {
  display:block;
  width:38px;
  height:24px;
  object-fit:contain;
  flex:0 0 auto;
}

body.site-home .nav-actions {
  display:flex;
  gap:18px;
  align-items:center;
}

body.site-home .link {
  font-size:14px;
  color:var(--muted);
  transition:color .2s;
}

body.site-home .link:hover {
  color:var(--ink);
}

body.site-home .btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  border:1px solid var(--ink);
  border-radius:8px;
  padding:10px 16px;
  background:var(--ink);
  color:#fff;
  font-weight:760;
  cursor:pointer;
}

body.site-home .btn.secondary {
  background:#fff;
  color:var(--ink);
  border-color:var(--line);
}

body.site-home .hero {
  position:relative;
  max-width:100vw;
  min-height:calc(100vh - 70px);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:96px 6vw 72px;
  text-align:center;
  isolation:isolate;
  background:
    radial-gradient(circle at 50% 38%,rgba(255,255,255,.78),transparent 32%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}

body.site-home .hero::before {
  content:"";
  position:absolute;
  inset:12% 9% auto;
  z-index:0;
  height:46%;
  border-radius:999px;
  background:
    radial-gradient(circle at 34% 52%,rgba(219,39,119,.16),transparent 32%),
    radial-gradient(circle at 66% 46%,rgba(124,58,237,.12),transparent 34%),
    linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.78),rgba(255,255,255,0));
  filter:blur(28px);
  opacity:.9;
  transform:translate3d(0,0,0);
  pointer-events:none;
}

body.site-home .hero-motion {
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  pointer-events:none;
  opacity:.92;
}

body.site-home .hero-inner {
  position:relative;
  z-index:3;
  display:grid;
  justify-items:center;
  width:min(100%,960px);
  max-width:960px;
  padding:34px 28px;
  border-radius:34px;
  background:linear-gradient(180deg,rgba(255,255,255,.64),rgba(255,255,255,.28));
  backdrop-filter:blur(2px);
}

body.site-home .hero-side {
  position:absolute;
  z-index:2;
  width:260px;
  height:320px;
  opacity:.32;
  pointer-events:none;
}

body.site-home .hero-side-left {
  left:-42px;
  bottom:20px;
}

body.site-home .hero-side-right {
  right:-30px;
  top:60px;
}

body.site-home .hero-side span {
  position:absolute;
  display:block;
  border:1px solid rgba(148,163,184,.28);
  background:linear-gradient(145deg,rgba(255,255,255,.82),rgba(240,244,250,.72));
  box-shadow:0 28px 70px rgba(15,23,42,.08);
  transform:skewY(-24deg) rotate(12deg);
  animation:studyFloat 8s ease-in-out infinite;
}

body.site-home .hero-side span:nth-child(2) {
  animation-delay:-2.5s;
}

body.site-home .hero-side span:nth-child(3) {
  animation-delay:-5s;
}

body.site-home .hero-side span:nth-child(1) {
  width:118px;
  height:118px;
  left:42px;
  top:58px;
  border-radius:22px;
}

body.site-home .hero-side span:nth-child(2) {
  width:78px;
  height:78px;
  left:150px;
  top:146px;
  border-radius:18px;
  background:linear-gradient(145deg,rgba(219,39,119,.2),rgba(255,255,255,.76));
}

body.site-home .hero-side span:nth-child(3) {
  width:150px;
  height:72px;
  left:70px;
  top:236px;
  border-radius:18px;
}

body.site-home .eyebrow {
  display:inline-flex;
  gap:9px;
  align-items:center;
  margin-bottom:18px;
  color:var(--accent-2);
  font-size:13px;
  font-weight:820;
  letter-spacing:.12em;
  text-transform:uppercase;
}

body.site-home .eyebrow-logo {
  width:34px;
  height:18px;
  object-fit:contain;
}

body.site-home h1 {
  max-width:1160px;
  font-size:clamp(42px,5.2vw,70px);
  line-height:1.04;
  letter-spacing:0;
  margin-bottom:22px;
  overflow-wrap:anywhere;
  word-break:break-word;
  white-space:nowrap;
}

body.site-home h1 span {
  display:block;
}

body.site-home .lead {
  max-width:720px;
  color:#344054;
  font-size:21px;
  margin-bottom:34px;
  overflow-wrap:anywhere;
  word-break:break-word;
}

body.site-home .lead span {
  display:inline;
}

body.site-home .hero-actions {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-bottom:0;
}

body.site-home .section {
  padding:76px 6vw;
}

body.site-home .section.alt {
  background:var(--soft);
}

body.site-home .section-grid {
  display:grid;
  grid-template-columns:minmax(250px,.42fr) 1fr;
  gap:44px;
  align-items:start;
}

body.site-home .section h2 {
  font-size:34px;
  line-height:1.18;
  margin-bottom:14px;
}

body.site-home .section-intro {
  color:var(--muted);
  max-width:680px;
}

body.site-home .feature-section {
  display:grid;
  grid-template-columns:minmax(280px,.45fr) minmax(0,1fr);
  gap:56px;
  align-items:center;
  min-height:520px;
}

body.site-home .feature-copy {
  min-width:0;
  max-width:560px;
}

body.site-home .feature-copy h2 {
  font-size:clamp(34px,4.2vw,58px);
  line-height:1.08;
  margin-bottom:18px;
}

body.site-home .feature-copy p {
  color:#4b5565;
  font-size:18px;
  line-height:1.85;
  overflow-wrap:anywhere;
}

body.site-home .feature-visual,
body.site-home .matrix-board,
body.site-home .asset-grid {
  min-width:0;
  max-width:100%;
  box-sizing:border-box;
  min-height:320px;
  border:1px solid rgba(185,198,216,.72);
  border-radius:28px;
  padding:30px;
  background:
    radial-gradient(circle at 20% 10%,rgba(219,39,119,.12),transparent 32%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  box-shadow:0 30px 80px rgba(15,23,42,.08);
}

body.site-home .feature-visual {
  display:grid;
  align-content:center;
  gap:22px;
}

body.site-home .signal-line {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

body.site-home .signal-line span {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:110px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.86);
  color:var(--ink);
  font-weight:780;
  text-align:center;
  box-shadow:0 12px 28px rgba(15,23,42,.05);
}

body.site-home .feature-note {
  display:grid;
  gap:6px;
  border:1px solid rgba(219,39,119,.18);
  border-radius:18px;
  padding:16px 18px;
  background:rgba(255,255,255,.76);
}

body.site-home .feature-note b,
body.site-home .asset-grid small {
  color:var(--accent);
  font-size:13px;
  font-weight:860;
  letter-spacing:.08em;
}

body.site-home .feature-note span {
  color:#475467;
  line-height:1.65;
}

body.site-home .matrix-board {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

body.site-home .matrix-board div,
body.site-home .asset-grid article {
  min-width:0;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  background:rgba(255,255,255,.88);
  box-shadow:0 12px 28px rgba(15,23,42,.045);
}

body.site-home .matrix-board b {
  display:block;
  color:var(--ink);
  font-size:20px;
  margin-bottom:10px;
}

body.site-home .matrix-board span,
body.site-home .asset-grid p {
  color:#5d6678;
  line-height:1.7;
}

body.site-home .asset-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

body.site-home .asset-grid h3 {
  font-size:21px;
  margin:10px 0 10px;
}

body.site-home .course-strip {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  background:#fff;
}

body.site-home .course-strip-copy {
  max-width:760px;
}

body.site-home .course-strip-copy h2 {
  font-size:clamp(30px,3.6vw,48px);
  line-height:1.12;
  margin-bottom:12px;
}

body.site-home .course-strip-copy p {
  color:#4b5565;
  font-size:18px;
  line-height:1.75;
}

body.site-home .grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

body.site-home .grid.two {
  grid-template-columns:repeat(2,minmax(0,1fr));
}

body.site-home .card {
  border:1px solid var(--line);
  border-radius:10px;
  padding:18px;
  background:#fff;
}

body.site-home .card small {
  display:block;
  color:var(--accent);
  font-weight:850;
  margin-bottom:8px;
}

body.site-home .card h3 {
  font-size:18px;
  margin-bottom:8px;
}

body.site-home .card p,
body.site-home .card li {
  color:var(--muted);
  font-size:14px;
}

body.site-home .list {
  padding-left:18px;
}

body.site-home .list li {
  margin:8px 0;
}

body.site-home .path {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}

body.site-home .step {
  min-height:148px;
  border:1px solid var(--line);
  border-radius:10px;
  padding:16px;
  background:#fff;
}

body.site-home .step b {
  display:block;
  color:var(--warn);
  margin-bottom:8px;
}

body.site-home .step span {
  color:var(--muted);
  font-size:14px;
}

body.site-home .flow-strip {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

body.site-home .flow-strip span {
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:46px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 18px;
  background:#fff;
  color:var(--ink);
  font-weight:760;
  box-shadow:0 10px 24px rgba(15,23,42,.045);
}

body.site-home .flow-strip span:not(:last-child)::after {
  content:"";
  width:6px;
  height:6px;
  margin-left:14px;
  border-top:2px solid var(--accent);
  border-right:2px solid var(--accent);
  transform:rotate(45deg);
  opacity:.72;
}

body.site-home .sample-grid,
body.site-home .info-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

body.site-home .sample-card,
body.site-home .info-item {
  min-width:0;
  border:1px solid var(--line);
  border-radius:10px;
  padding:18px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.04);
}

body.site-home .sample-card small {
  display:block;
  color:var(--accent);
  font-weight:850;
  margin-bottom:8px;
}

body.site-home .sample-card h3 {
  font-size:18px;
  margin-bottom:12px;
}

body.site-home .mini-table {
  display:grid;
  gap:0;
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  background:#fff;
}

body.site-home .mini-table div {
  display:grid;
  grid-template-columns:minmax(72px,.34fr) minmax(0,1fr);
  gap:12px;
  padding:10px 12px;
  border-bottom:1px solid var(--line);
  font-size:13px;
  line-height:1.45;
}

body.site-home .mini-table div:last-child {
  border-bottom:0;
}

body.site-home .mini-table b {
  color:var(--ink);
  font-weight:760;
}

body.site-home .mini-table span {
  min-width:0;
  color:var(--muted);
  overflow-wrap:anywhere;
}

body.site-home .info-grid {
  grid-template-columns:repeat(2,minmax(0,1fr));
}

body.site-home .info-item {
  display:grid;
  gap:6px;
  min-height:104px;
}

body.site-home .info-item b {
  color:var(--accent);
  font-size:13px;
  letter-spacing:.08em;
}

body.site-home .info-item span {
  color:var(--ink);
  font-size:17px;
  font-weight:720;
  line-height:1.45;
}

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

body.site-home .faq-item {
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  padding:18px;
}

body.site-home .faq-item h3 {
  font-size:17px;
  margin-bottom:8px;
}

body.site-home .faq-item p {
  color:var(--muted);
  font-size:14px;
}

body.site-home .notice {
  border-left:4px solid #f59e0b;
  background:#fffbeb;
  border-radius:10px;
  padding:18px;
  color:#78350f;
}

body.site-home .notice b {
  color:#5f2b00;
}

body.site-home .site-footer {
  padding:36px 6vw;
  color:var(--muted);
  border-top:1px solid var(--line);
  font-size:13px;
  background:#fff;
}

body.site-home .footer-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-bottom:24px;
}

body.site-home .footer-col h2 {
  font-size:14px;
  color:var(--ink);
  margin-bottom:10px;
}

body.site-home .footer-col a {
  display:block;
  margin:7px 0;
  color:var(--muted);
}

body.site-home .footer-col a:hover {
  color:var(--ink);
}

body.site-home .footer-bottom {
  border-top:1px solid var(--line);
  padding-top:18px;
}
@media(max-width:960px){
body.site-home .feature-section,
body.site-home .section-grid,
body.site-home .grid,
body.site-home .grid.two,
body.site-home .path,
body.site-home .sample-grid,
body.site-home .info-grid,
body.site-home .asset-grid,
body.site-home .footer-grid {
  grid-template-columns:1fr;
}

body.site-home .feature-section {
  min-height:auto;
  gap:28px;
  justify-items:center;
}

body.site-home .feature-copy,
body.site-home .feature-visual,
body.site-home .matrix-board,
body.site-home .asset-grid,
body.site-home .course-strip-copy {
  width:100%;
  max-width:350px;
}

body.site-home .feature-visual,
body.site-home .matrix-board,
body.site-home .asset-grid {
  min-height:auto;
  border-radius:22px;
  padding:18px;
}

body.site-home .signal-line,
body.site-home .matrix-board {
  grid-template-columns:1fr;
}

body.site-home .signal-line span {
  min-height:72px;
}

body.site-home .course-strip {
  align-items:flex-start;
  flex-direction:column;
}

body.site-home .hero {
  min-height:auto;
  padding:82px 20px 76px;
}

body.site-home .hero-inner {
  width:100%;
  padding:28px 18px;
  border-radius:26px;
}

body.site-home .hero-side {
  display:none;
}

body.site-home .hero::before {
  inset:18% -12% auto;
  height:48%;
  filter:blur(24px);
}

body.site-home .hero-motion {
  opacity:.68;
}

body.site-home .section {
  padding:54px 20px;
}

body.site-home .nav {
  padding:12px 20px;
}

body.site-home .brand-logo {
  width:34px;
  height:22px;
}

body.site-home .nav .link:not(.course-link) {
  display:none;
}

body.site-home h1 {
  font-size:34px;
  max-width:340px;
  white-space:normal;
  word-break:break-all;
}

body.site-home .lead {
  font-size:17px;
  max-width:300px;
  white-space:normal;
  word-break:break-all;
}

body.site-home .lead span {
  display:block;
}

body.site-home .feature-copy h2,
body.site-home .feature-copy p,
body.site-home .feature-note span,
body.site-home .matrix-board span,
body.site-home .asset-grid p,
body.site-home .course-strip-copy p {
  white-space:normal;
  word-break:break-all;
}

body.site-home .flow-strip {
  display:grid;
  grid-template-columns:1fr;
}

body.site-home .flow-strip span {
  justify-content:space-between;
}

body.site-home .flow-strip span:not(:last-child)::after {
  margin-left:18px;
}

body.site-home .mini-table div {
  grid-template-columns:1fr;
  gap:4px;
}

body.site-home .site-footer {
  padding:34px 20px;
}
}

/* page source: study.html */
body.site-study :where(:not(.xmp-account-slot):not(.xmp-account-slot *):not(.xmp-account-dialog-backdrop):not(.xmp-account-dialog-backdrop *):not(.xmp-chat-panel):not(.xmp-chat-panel *):not(.xmp-preview):not(.xmp-preview *)) {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root {
  --ink:#111827;
  --muted:#5b6472;
  --subtle:#8a94a6;
  --line:#e4e7ec;
  --soft:#f7f5fb;
  --panel:#fff;
  --accent:#d41472;
  --accent-2:#6d2bd2;
  --warn:#9d246d;
}

body.site-study {
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.65;
}

body.site-study a {
  text-decoration:none;
  color:inherit;
}

body.site-study .nav {
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 6vw;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}

body.site-study .brand {
  display:flex;
  align-items:center;
  gap:11px;
  font-weight:850;
  letter-spacing:.04em;
}

body.site-study .brand-logo {
  display:block;
  width:38px;
  height:24px;
  object-fit:contain;
  flex:0 0 auto;
}

body.site-study .nav-actions {
  display:flex;
  gap:18px;
  align-items:center;
}

body.site-study .link {
  font-size:14px;
  color:var(--muted);
  transition:color .2s;
}

body.site-study .link:hover {
  color:var(--ink);
}

body.site-study .btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  border:1px solid var(--ink);
  border-radius:8px;
  padding:10px 16px;
  background:var(--ink);
  color:#fff;
  font-weight:760;
  cursor:pointer;
}

body.site-study .btn.secondary {
  background:#fff;
  color:var(--ink);
  border-color:var(--line);
}

body.site-study .btn:disabled {
  opacity:.58;
  cursor:not-allowed;
}

body.site-study .hero {
  min-height:calc(100vh - 70px);
  padding:96px 6vw 56px;
  background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}

body.site-study .eyebrow {
  display:inline-flex;
  gap:9px;
  align-items:center;
  margin-bottom:18px;
  color:var(--accent-2);
  font-size:13px;
  font-weight:820;
  letter-spacing:.12em;
  text-transform:uppercase;
}

body.site-study .eyebrow-logo {
  width:34px;
  height:18px;
  object-fit:contain;
}

body.site-study h1 {
  max-width:830px;
  font-size:clamp(42px,6vw,78px);
  line-height:1.02;
  letter-spacing:0;
  margin-bottom:22px;
}

body.site-study .lead {
  max-width:720px;
  color:#344054;
  font-size:19px;
  margin-bottom:28px;
}

body.site-study .hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}

body.site-study .metrics {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  max-width:720px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}

body.site-study .metric {
  padding:16px 18px;
  border-right:1px solid var(--line);
}

body.site-study .metric:last-child {
  border-right:0;
}

body.site-study .metric b {
  display:block;
  font-size:22px;
}

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

body.site-study .section {
  padding:76px 6vw;
}

body.site-study .section.alt {
  background:var(--soft);
}

body.site-study .section-grid {
  display:grid;
  grid-template-columns:minmax(250px,.42fr) 1fr;
  gap:44px;
  align-items:start;
}

body.site-study .section h2 {
  font-size:34px;
  line-height:1.18;
  margin-bottom:14px;
}

body.site-study .section-intro {
  color:var(--muted);
  max-width:680px;
}

body.site-study .path {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
}

body.site-study .step {
  min-height:148px;
  border:1px solid var(--line);
  border-radius:10px;
  padding:16px;
  background:#fff;
}

body.site-study .step b {
  display:block;
  color:var(--warn);
  margin-bottom:8px;
}

body.site-study .step span {
  color:var(--muted);
  font-size:14px;
}

body.site-study .grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

body.site-study .card {
  border:1px solid var(--line);
  border-radius:10px;
  padding:18px;
  background:#fff;
}

body.site-study a.card {
  display:block;
  color:inherit;
  text-decoration:none;
}

body.site-study .module-link {
  min-height:154px;
}

body.site-study .module-link h3,
body.site-study .module-link p {
  color:inherit;
}

body.site-study .module-link p {
  color:var(--muted);
}

body.site-study .card small {
  display:block;
  color:var(--accent);
  font-weight:850;
  margin-bottom:8px;
}

body.site-study .card h3 {
  font-size:18px;
  margin-bottom:8px;
}

body.site-study .card p,
body.site-study .card li {
  color:var(--muted);
  font-size:14px;
}

body.site-study .timeline {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

body.site-study .list {
  padding-left:18px;
}

body.site-study .list li {
  margin:8px 0;
}

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

body.site-study .faq-item {
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  padding:18px;
}

body.site-study .faq-item h3 {
  font-size:17px;
  margin-bottom:8px;
}

body.site-study .faq-item p {
  color:var(--muted);
  font-size:14px;
}

body.site-study .notice {
  border-left:4px solid #f59e0b;
  background:#fffbeb;
  border-radius:10px;
  padding:18px;
  color:#78350f;
}

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

body.site-study .before-item {
  display:grid;
  gap:8px;
  min-width:0;
  border:1px solid var(--line);
  border-radius:10px;
  padding:18px;
  background:#fff;
}

body.site-study .before-item b {
  color:var(--accent);
  font-size:14px;
}

body.site-study .before-item span {
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

body.site-study .site-footer {
  padding:36px 6vw;
  color:var(--muted);
  border-top:1px solid var(--line);
  font-size:13px;
  background:#fff;
}

body.site-study .footer-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-bottom:24px;
}

body.site-study .footer-col h2 {
  font-size:14px;
  color:var(--ink);
  margin-bottom:10px;
}

body.site-study .footer-col a {
  display:block;
  margin:7px 0;
  color:var(--muted);
}

body.site-study .footer-col a:hover {
  color:var(--ink);
}

body.site-study .footer-bottom {
  border-top:1px solid var(--line);
  padding-top:18px;
}
@media(max-width:960px){
body.site-study .section-grid {
  grid-template-columns:1fr;
}

body.site-study .hero {
  min-height:auto;
  padding:54px 20px 30px;
}

body.site-study .section {
  padding:54px 20px;
}

body.site-study .grid,
body.site-study .timeline,
body.site-study .path,
body.site-study .before-grid,
body.site-study .metrics,
body.site-study .footer-grid {
  grid-template-columns:1fr;
}

body.site-study .metric {
  border-right:0;
  border-bottom:1px solid var(--line);
}

body.site-study .metric:last-child {
  border-bottom:0;
}

body.site-study .nav {
  padding:12px 20px;
}

body.site-study .brand-logo {
  width:34px;
  height:22px;
}

body.site-study .nav .link:not(.course-link) {
  display:none;
}

body.site-study h1 {
  font-size:40px;
}

body.site-study .lead {
  font-size:17px;
}

body.site-study .site-footer {
  padding:34px 20px;
}
}

body.site-study {
  overflow-x:hidden;
}

body.site-study .hero {
  position:relative;
  max-width:100vw;
  min-height:calc(100vh - 70px);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:96px 6vw 72px;
  text-align:center;
  isolation:isolate;
  background:
    radial-gradient(circle at 50% 38%,rgba(255,255,255,.78),transparent 32%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}

body.site-study .hero::before {
  content:"";
  position:absolute;
  inset:12% 9% auto;
  z-index:0;
  height:46%;
  border-radius:999px;
  background:
    radial-gradient(circle at 34% 52%,rgba(219,39,119,.16),transparent 32%),
    radial-gradient(circle at 66% 46%,rgba(124,58,237,.12),transparent 34%),
    linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.78),rgba(255,255,255,0));
  filter:blur(28px);
  opacity:.9;
  transform:translate3d(0,0,0);
  pointer-events:none;
}

body.site-study .hero-motion {
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  pointer-events:none;
  opacity:.92;
}

body.site-study .hero-inner {
  position:relative;
  z-index:3;
  display:grid;
  justify-items:center;
  width:min(100%,960px);
  max-width:960px;
  padding:34px 28px;
  border-radius:34px;
  background:linear-gradient(180deg,rgba(255,255,255,.64),rgba(255,255,255,.28));
  backdrop-filter:blur(2px);
}

body.site-study .hero-side {
  position:absolute;
  z-index:2;
  width:260px;
  height:320px;
  opacity:.32;
  pointer-events:none;
}

body.site-study .hero-side-left {
  left:-42px;
  bottom:20px;
}

body.site-study .hero-side-right {
  right:-30px;
  top:60px;
}

body.site-study .hero-side span {
  position:absolute;
  display:block;
  border:1px solid rgba(148,163,184,.28);
  background:linear-gradient(145deg,rgba(255,255,255,.82),rgba(240,244,250,.72));
  box-shadow:0 28px 70px rgba(15,23,42,.08);
  transform:skewY(-24deg) rotate(12deg);
  animation:studyFloat 8s ease-in-out infinite;
}

body.site-study .hero-side span:nth-child(2) {
  animation-delay:-2.5s;
}

body.site-study .hero-side span:nth-child(3) {
  animation-delay:-5s;
}

body.site-study .hero-side span:nth-child(1) {
  width:118px;
  height:118px;
  left:42px;
  top:58px;
  border-radius:22px;
}

body.site-study .hero-side span:nth-child(2) {
  width:78px;
  height:78px;
  left:150px;
  top:146px;
  border-radius:18px;
  background:linear-gradient(145deg,rgba(219,39,119,.2),rgba(255,255,255,.76));
}

body.site-study .hero-side span:nth-child(3) {
  width:150px;
  height:72px;
  left:70px;
  top:236px;
  border-radius:18px;
}

@keyframes studyFloat {
  0%,
  100% {
    transform:skewY(-24deg) rotate(12deg) translate3d(0,0,0);
  }
  50% {
    transform:skewY(-24deg) rotate(12deg) translate3d(0,-14px,0);
  }
}

body.site-study h1 {
  max-width:820px;
  font-size:clamp(34px,4.2vw,54px);
  line-height:1.12;
  overflow-wrap:anywhere;
  word-break:break-word;
}

body.site-study h1 span,
body.site-study .lead span {
  display:block;
}

body.site-study .lead {
  max-width:680px;
  font-size:19px;
  margin-bottom:30px;
  overflow-wrap:anywhere;
  word-break:break-word;
}

body.site-study .hero-actions {
  justify-content:center;
  margin-bottom:12px;
}

body.site-study .hero-cta-note {
  max-width:520px;
  color:#7a8496;
  font-size:14px;
  line-height:1.7;
  margin:0;
  overflow-wrap:anywhere;
}

body.site-study .feature-section {
  display:grid;
  grid-template-columns:minmax(280px,.45fr) minmax(0,1fr);
  gap:56px;
  align-items:center;
  min-height:520px;
}

body.site-study .feature-copy {
  min-width:0;
  max-width:560px;
}

body.site-study .feature-copy h2 {
  font-size:clamp(34px,4.2vw,58px);
  line-height:1.08;
  margin-bottom:18px;
}

body.site-study .feature-copy p {
  color:#4b5565;
  font-size:18px;
  line-height:1.85;
  overflow-wrap:anywhere;
}

body.site-study .feature-visual,
body.site-study .matrix-board,
body.site-study .asset-grid,
body.site-study .module-stack {
  min-width:0;
  max-width:100%;
  box-sizing:border-box;
  min-height:320px;
  border:1px solid rgba(185,198,216,.72);
  border-radius:28px;
  padding:30px;
  background:radial-gradient(circle at 20% 10%,rgba(219,39,119,.12),transparent 32%),linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  box-shadow:0 30px 80px rgba(15,23,42,.08);
}

body.site-study .feature-visual {
  display:grid;
  align-content:center;
  gap:22px;
}

body.site-study .signal-line {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

body.site-study .signal-line span,
body.site-study .module-stack a,
body.site-study .module-stack article {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:92px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.86);
  color:var(--ink);
  font-weight:780;
  text-align:center;
  box-shadow:0 12px 28px rgba(15,23,42,.05);
}

body.site-study .feature-note {
  display:grid;
  gap:6px;
  border:1px solid rgba(219,39,119,.18);
  border-radius:18px;
  padding:16px 18px;
  background:rgba(255,255,255,.76);
}

body.site-study .feature-note b,
body.site-study .asset-grid small,
body.site-study .module-stack small {
  color:var(--accent);
  font-size:13px;
  font-weight:860;
  letter-spacing:.08em;
}

body.site-study .feature-note span,
body.site-study .matrix-board span,
body.site-study .asset-grid p,
body.site-study .course-strip-copy p {
  color:#5d6678;
  line-height:1.7;
}

body.site-study .matrix-board {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

body.site-study .matrix-board div,
body.site-study .asset-grid article,
body.site-study .faq-item {
  min-width:0;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  background:rgba(255,255,255,.88);
  box-shadow:0 12px 28px rgba(15,23,42,.045);
}

body.site-study .matrix-board b {
  display:block;
  color:var(--ink);
  font-size:20px;
  margin-bottom:10px;
}

body.site-study .asset-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

body.site-study .asset-grid h3 {
  font-size:21px;
  margin:10px 0;
}

body.site-study .module-stack {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

body.site-study .module-stack a,
body.site-study .module-stack article {
  justify-content:flex-start;
  gap:14px;
  min-height:74px;
  padding:16px 18px;
  text-decoration:none;
}

body.site-study .module-stack span {
  text-align:left;
}

body.site-study .course-strip {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  background:#fff;
}

body.site-study .course-strip-copy {
  max-width:760px;
}

body.site-study .course-strip-copy h2 {
  font-size:clamp(30px,3.6vw,48px);
  line-height:1.12;
  margin-bottom:12px;
}

body.site-study .faq-list {
  gap:14px;
}

@media(max-width:960px){
body.site-study .feature-section,
body.site-study .signal-line,
body.site-study .matrix-board,
body.site-study .asset-grid,
body.site-study .module-stack {
  grid-template-columns:1fr;
}

body.site-study .hero {
  min-height:auto;
  padding:82px 20px 76px;
}

body.site-study .hero-inner {
  width:100%;
  padding:28px 18px;
  border-radius:26px;
}

body.site-study .hero-side {
  display:none;
}

body.site-study .hero::before {
  inset:18% -12% auto;
  height:48%;
  filter:blur(24px);
}

body.site-study .hero-motion {
  opacity:.68;
}

body.site-study h1 {
  font-size:30px;
  max-width:310px;
  word-break:break-all;
}

body.site-study .lead {
  font-size:17px;
  max-width:300px;
  word-break:break-all;
}

body.site-study .feature-section {
  min-height:auto;
  gap:28px;
  justify-items:center;
}

body.site-study .feature-copy,
body.site-study .feature-visual,
body.site-study .matrix-board,
body.site-study .asset-grid,
body.site-study .module-stack,
body.site-study .course-strip-copy {
  width:100%;
  max-width:320px;
}

body.site-study .feature-visual,
body.site-study .matrix-board,
body.site-study .asset-grid,
body.site-study .module-stack {
  min-height:auto;
  border-radius:22px;
  padding:18px;
}

body.site-study .signal-line span {
  min-height:72px;
}

body.site-study .course-strip {
  align-items:flex-start;
  flex-direction:column;
}
}

@media(prefers-reduced-motion:reduce){
body.site-home .hero-side span,
body.site-study .hero-side span {
  animation:none;
}
}

/* page source: contact.html */
body.site-contact :where(:not(.xmp-account-slot):not(.xmp-account-slot *):not(.xmp-account-dialog-backdrop):not(.xmp-account-dialog-backdrop *):not(.xmp-chat-panel):not(.xmp-chat-panel *):not(.xmp-preview):not(.xmp-preview *)) {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root {
  --ink:#111827;
  --muted:#5b6472;
  --line:#e4e7ec;
  --soft:#f8fafc;
  --accent:#d41472;
  --accent-2:#6d2bd2;
}

body.site-contact {
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.65;
}

body.site-contact a {
  text-decoration:none;
  color:inherit;
}

body.site-contact .nav {
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 6vw;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}

body.site-contact .brand {
  display:flex;
  align-items:center;
  gap:11px;
  font-weight:850;
  letter-spacing:.04em;
}

body.site-contact .brand-logo {
  display:block;
  width:38px;
  height:24px;
  object-fit:contain;
  flex:0 0 auto;
}

body.site-contact .nav-actions {
  display:flex;
  gap:18px;
  align-items:center;
}

body.site-contact .link {
  font-size:14px;
  color:var(--muted);
  transition:color .2s;
}

body.site-contact .link:hover {
  color:var(--ink);
}

body.site-contact .page {
  min-height:calc(100vh - 70px);
  padding:72px 6vw;
  background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}

body.site-contact .wrap {
  max-width:980px;
  margin:0 auto;
}

body.site-contact .eyebrow {
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:18px;
  color:var(--accent-2);
  font-size:13px;
  font-weight:820;
  letter-spacing:.12em;
  text-transform:uppercase;
}

body.site-contact .eyebrow-logo {
  width:34px;
  height:18px;
  object-fit:contain;
}

body.site-contact h1 {
  font-size:clamp(42px,6vw,68px);
  line-height:1.05;
  letter-spacing:0;
  margin-bottom:18px;
}

body.site-contact .lead {
  max-width:680px;
  color:#344054;
  font-size:18px;
  margin-bottom:34px;
}

body.site-contact .contact-card {
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  box-shadow:0 18px 56px rgba(15,23,42,.07);
  overflow:hidden;
}

body.site-contact .contact-head {
  padding:28px 32px;
  border-bottom:1px solid var(--line);
}

body.site-contact .contact-head h2 {
  font-size:24px;
  margin-bottom:6px;
}

body.site-contact .contact-head p {
  color:var(--muted);
}

body.site-contact .contact-list {
  display:grid;
}

body.site-contact .contact-row {
  display:grid;
  grid-template-columns:180px minmax(0,1fr);
  gap:22px;
  padding:22px 32px;
  border-bottom:1px solid var(--line);
}

body.site-contact .contact-row:last-child {
  border-bottom:0;
}

body.site-contact .contact-row b {
  font-size:15px;
}

body.site-contact .contact-row span,
body.site-contact .contact-row a {
  color:var(--muted);
  font-size:15px;
  word-break:break-word;
}

body.site-contact .contact-row a {
  color:var(--accent);
  font-weight:760;
}

body.site-contact .wecom-contact {
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

body.site-contact .wecom-qr {
  width:142px;
  height:142px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  padding:8px;
  object-fit:contain;
}

body.site-contact .wecom-note {
  display:grid;
  gap:4px;
  max-width:420px;
}

body.site-contact .wecom-note strong {
  font-size:15px;
  color:var(--ink);
}

body.site-contact .wecom-note span {
  line-height:1.65;
}

body.site-contact .site-footer {
  padding:36px 6vw;
  color:var(--muted);
  border-top:1px solid var(--line);
  font-size:13px;
  background:#fff;
}

body.site-contact .footer-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-bottom:24px;
}

body.site-contact .footer-col h2 {
  font-size:14px;
  color:var(--ink);
  margin-bottom:10px;
}

body.site-contact .footer-col a {
  display:block;
  margin:7px 0;
  color:var(--muted);
}

body.site-contact .footer-col a:hover {
  color:var(--ink);
}

body.site-contact .footer-bottom {
  border-top:1px solid var(--line);
  padding-top:18px;
}
@media(max-width:960px){
body.site-contact .page {
  padding:54px 20px;
}

body.site-contact .contact-row {
  grid-template-columns:1fr;
  gap:6px;
  padding:20px;
}

body.site-contact .contact-head {
  padding:24px 20px;
}

body.site-contact .wecom-contact {
  align-items:flex-start;
}

body.site-contact .wecom-qr {
  width:132px;
  height:132px;
}

body.site-contact .footer-grid {
  grid-template-columns:1fr;
}

body.site-contact .nav {
  padding:12px 20px;
}

body.site-contact .brand-logo {
  width:34px;
  height:22px;
}

body.site-contact .nav .link:not(.course-link) {
  display:none;
}

body.site-contact h1 {
  font-size:40px;
}

body.site-contact .lead {
  font-size:17px;
}

body.site-contact .site-footer {
  padding:34px 20px;
}
}

/* page source: consult.html */
body.site-consult :where(:not(.xmp-account-slot):not(.xmp-account-slot *):not(.xmp-account-dialog-backdrop):not(.xmp-account-dialog-backdrop *):not(.xmp-chat-panel):not(.xmp-chat-panel *):not(.xmp-preview):not(.xmp-preview *)) {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root {
  --ink:#111827;
  --muted:#5b6472;
  --line:#e4e7ec;
  --soft:#f8fafc;
  --accent:#d41472;
  --accent-2:#6d2bd2;
}

body.site-consult {
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.65;
}

body.site-consult a {
  text-decoration:none;
  color:inherit;
}

body.site-consult .nav {
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 6vw;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}

body.site-consult .brand {
  display:flex;
  align-items:center;
  gap:11px;
  font-weight:850;
  letter-spacing:.04em;
}

body.site-consult .brand-logo {
  display:block;
  width:38px;
  height:24px;
  object-fit:contain;
  flex:0 0 auto;
}

body.site-consult .nav-actions {
  display:flex;
  gap:18px;
  align-items:center;
}

body.site-consult .link {
  font-size:14px;
  color:var(--muted);
  transition:color .2s;
}

body.site-consult .link:hover {
  color:var(--ink);
}

body.site-consult .page {
  min-height:calc(100vh - 70px);
  padding:42px 6vw 56px;
  background:#fff;
}

body.site-consult .wrap {
  max-width:980px;
  margin:0 auto;
}

body.site-consult .breadcrumb {
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:24px;
  color:var(--muted);
  font-size:14px;
}

body.site-consult .breadcrumb a {
  color:var(--muted);
}

body.site-consult .breadcrumb a:hover {
  color:var(--ink);
}

body.site-consult .breadcrumb span {
  color:#98a2b3;
}

body.site-consult h1 {
  font-size:clamp(30px,4vw,42px);
  line-height:1.16;
  margin-bottom:10px;
  font-weight:760;
}

body.site-consult .lead {
  max-width:760px;
  color:#5b6472;
  font-size:16px;
  margin-bottom:24px;
}

body.site-consult .chat-shell {
  max-width:920px;
  margin:0 auto;
}

body.site-consult .chat-note {
  margin-bottom:16px;
  border:1px solid rgba(212,20,114,.18);
  border-radius:12px;
  background:#fff;
  padding:16px 18px;
  color:#5b6472;
  font-size:14px;
}

body.site-consult .site-footer {
  padding:36px 6vw;
  color:var(--muted);
  border-top:1px solid var(--line);
  font-size:13px;
  background:#fff;
}

body.site-consult .footer-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-bottom:24px;
}

body.site-consult .footer-col h2 {
  font-size:14px;
  color:var(--ink);
  margin-bottom:10px;
}

body.site-consult .footer-col a {
  display:block;
  margin:7px 0;
  color:var(--muted);
}

body.site-consult .footer-col a:hover {
  color:var(--ink);
}

body.site-consult .footer-bottom {
  border-top:1px solid var(--line);
  padding-top:18px;
}
@media(max-width:960px){
body.site-consult .page {
  padding:34px 20px 44px;
}

body.site-consult .footer-grid {
  grid-template-columns:1fr;
}

body.site-consult .nav {
  padding:12px 20px;
}

body.site-consult .brand-logo {
  width:34px;
  height:22px;
}

body.site-consult .nav .link:not(.course-link) {
  display:none;
}

body.site-consult h1 {
  font-size:32px;
}

body.site-consult .lead {
  font-size:16px;
}

body.site-consult .site-footer {
  padding:34px 20px;
}
}
body.site-consult.xmp-doc-page {
  overflow-x:hidden;
}

body.site-consult.xmp-doc-page .wrap {
  width:min(100%,980px);
  max-width:980px;
  margin:0 auto;
  padding:0;
}

body.site-consult.xmp-doc-page h1 {
  font-size:clamp(30px,4vw,42px);
  line-height:1.16;
}

body.site-consult.xmp-doc-page .chat-shell,
body.site-consult.xmp-doc-page [data-xmp-chat-embed] {
  min-width:0;
  max-width:100%;
}

body.site-consult.xmp-doc-page .site-footer {
  width:auto;
  margin-left:0;
  margin-right:0;
}
@media(max-width:960px){
body.site-consult.xmp-doc-page .page {
  padding:34px 20px 44px;
}

body.site-consult.xmp-doc-page .wrap {
  width:100%;
  max-width:100%;
  margin:0;
  padding:0;
}

body.site-consult.xmp-doc-page h1 {
  font-size:32px;
}

body.site-consult.xmp-doc-page .lead,
body.site-consult.xmp-doc-page .chat-note {
  overflow-wrap:anywhere;
}

body.site-consult.xmp-doc-page .site-footer {
  padding:34px 20px;
}
}

/* page source: help.html */
body.site-help :where(:not(.xmp-account-slot):not(.xmp-account-slot *):not(.xmp-account-dialog-backdrop):not(.xmp-account-dialog-backdrop *):not(.xmp-chat-panel):not(.xmp-chat-panel *):not(.xmp-preview):not(.xmp-preview *)) {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root {
  --ink:#202123;
  --muted:#5f6368;
  --subtle:#8a8f98;
  --line:#d8d8d8;
  --soft:#f7f7f8;
  --panel:#fff;
  --accent:#c21868;
}

html:has(body.site-help) {
  background:#fff;
}

body.site-help {
  min-height:100vh;
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

body.site-help a {
  color:inherit;
  text-decoration:none;
}

body.site-help .nav {
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 6vw;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}

body.site-help .nav-actions {
  display:flex;
  align-items:center;
  gap:18px;
}

body.site-help .nav .link {
  color:var(--muted);
  font-size:14px;
}

body.site-help .brand-logo {
  display:block;
  width:38px;
  height:24px;
  object-fit:contain;
  flex:0 0 auto;
}

body.site-help .page-shell {
  width:min(100% - 40px,1024px);
  margin:0 auto;
}

body.site-help .topbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:34px 0 44px;
}

body.site-help .brand {
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:26px;
  font-weight:780;
  letter-spacing:-.02em;
}

body.site-help .brand img {
  width:42px;
  height:26px;
  object-fit:contain;
}

body.site-help .top-actions {
  display:flex;
  align-items:center;
  gap:18px;
  color:#2f3033;
  font-size:14px;
}

body.site-help .top-link {
  color:#2f3033;
  text-decoration:underline;
  text-underline-offset:3px;
}

body.site-help .search-wrap {
  position:relative;
  margin-bottom:64px;
}

body.site-help .search-icon {
  position:absolute;
  left:16px;
  top:50%;
  width:21px;
  height:21px;
  transform:translateY(-50%);
  color:#202123;
}

body.site-help .search-input {
  width:100%;
  height:62px;
  border:0;
  border-bottom:1px solid #202123;
  border-radius:0;
  background:#fff;
  color:#202123;
  padding:0 12px 0 48px;
  font:400 18px/1.2 inherit;
  outline:none;
}

body.site-help .search-input::placeholder {
  color:#4f5358;
}

body.site-help .search-input:focus {
  border-bottom-width:2px;
}

body.site-help .crumbs {
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:24px;
  color:#3e4146;
  font-size:13px;
}

body.site-help .crumbs a:hover {
  text-decoration:underline;
  text-underline-offset:3px;
}

body.site-help .chevron {
  color:#767b82;
  font-size:20px;
  line-height:1;
}

body.site-help .collection-head {
  display:grid;
  grid-template-columns:96px minmax(0,1fr);
  align-items:center;
  gap:16px;
  margin-bottom:48px;
}

body.site-help .collection-icon {
  width:96px;
  height:96px;
  border-radius:4px;
  background:#191919;
  display:grid;
  place-items:center;
}

body.site-help .collection-icon img {
  width:58px;
  height:36px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

body.site-help h1 {
  font-size:32px;
  line-height:1.08;
  font-weight:760;
  letter-spacing:-.03em;
  margin-bottom:6px;
}

body.site-help .subtitle {
  color:#666a70;
  font-size:16px;
}

body.site-help .article-list {
  border:1px solid var(--line);
  border-radius:15px;
  background:#fff;
  overflow:hidden;
  margin-bottom:72px;
}

body.site-help .article-row {
  display:grid;
  grid-template-columns:minmax(0,1fr) 28px;
  gap:20px;
  align-items:center;
  min-height:66px;
  padding:18px 23px;
  border-top:1px solid var(--line);
  background:#fff;
  transition:background .15s;
}

body.site-help .article-row:first-child {
  border-top:0;
}

body.site-help .article-row:hover {
  background:#fafafa;
}

body.site-help .article-row.expanded {
  background:#fafafa;
}

body.site-help .article-title {
  display:block;
  color:#202123;
  font-size:15.5px;
  font-weight:520;
  letter-spacing:-.01em;
}

body.site-help .article-desc {
  display:block;
  margin-top:5px;
  color:#4f5358;
  font-size:13.5px;
  line-height:1.45;
}

body.site-help .article-arrow {
  justify-self:end;
  color:#202123;
  font-size:30px;
  font-weight:300;
  line-height:1;
  transition:transform .15s;
}

body.site-help .article-row.expanded .article-arrow {
  transform:rotate(90deg);
}

body.site-help .article-answer {
  display:none;
  padding:0 23px 22px 23px;
  background:#fafafa;
  color:#40444a;
  font-size:14px;
  line-height:1.8;
}

body.site-help .article-answer.open {
  display:block;
}

body.site-help .article-answer p + p {
  margin-top:10px;
}

body.site-help .article-answer a {
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:3px;
}

body.site-help .empty-state {
  display:none;
  border:1px solid var(--line);
  border-radius:15px;
  padding:24px;
  color:#5f6368;
  margin-bottom:72px;
}

body.site-help .site-footer {
  width:min(100% - 40px,1024px);
  margin:0 auto;
  padding:0 0 34px;
  color:#6f747b;
  font-size:13px;
}

body.site-help .footer-line {
  border-top:1px solid #ececec;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:18px;
}

body.site-help .footer-links {
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

body.site-help .footer-links a:hover {
  text-decoration:underline;
  text-underline-offset:3px;
}

body.site-help mark {
  background:#fff2f7;
  color:inherit;
  padding:0 2px;
  border-radius:3px;
}
@media(max-width:720px){
body.site-help .page-shell,
body.site-help .site-footer {
  width:min(100% - 32px,1024px);
}

body.site-help .topbar {
  padding:22px 0 34px;
}

body.site-help .brand {
  font-size:20px;
}

body.site-help .brand img {
  width:34px;
  height:22px;
}

body.site-help .top-actions {
  gap:12px;
}

body.site-help .search-wrap {
  margin-bottom:48px;
}

body.site-help .search-input {
  height:58px;
  font-size:17px;
}

body.site-help .collection-head {
  grid-template-columns:72px minmax(0,1fr);
  gap:14px;
  margin-bottom:34px;
}

body.site-help .collection-icon {
  width:72px;
  height:72px;
}

body.site-help .collection-icon img {
  width:44px;
  height:28px;
}

body.site-help h1 {
  font-size:30px;
}

body.site-help .subtitle {
  font-size:15px;
}

body.site-help .article-row {
  min-height:64px;
  padding:17px 18px;
}

body.site-help .article-title {
  font-size:15px;
}

body.site-help .article-desc {
  font-size:13px;
}

body.site-help .footer-line {
  display:block;
}

body.site-help .footer-links {
  margin-top:12px;
}

body.site-help .nav {
  padding:12px 20px;
}

body.site-help .brand-logo {
  width:34px;
  height:22px;
}

body.site-help .nav .link:not(.course-link) {
  display:none;
}
}

/* page source: account.html */
body.site-account :where(:not(.xmp-account-slot):not(.xmp-account-slot *):not(.xmp-account-dialog-backdrop):not(.xmp-account-dialog-backdrop *):not(.xmp-chat-panel):not(.xmp-chat-panel *):not(.xmp-preview):not(.xmp-preview *)) {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root {
  --ink:#111827;
  --muted:#5b6472;
  --line:#e4e7ec;
  --soft:#f7f8fb;
  --accent:#d41472;
  --accent-2:#7f8a9a;
  --ok:#047857;
  --warn:#b45309;
  --bad:#dc2626;
}

body.site-account {
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.65;
  overflow-x:hidden;
}

body.site-account a {
  text-decoration:none;
  color:inherit;
}

body.site-account .nav {
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 6vw;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}

body.site-account .brand {
  display:flex;
  align-items:center;
  gap:11px;
  font-weight:850;
  letter-spacing:.04em;
}

body.site-account .brand-logo {
  display:block;
  width:38px;
  height:24px;
  object-fit:contain;
  flex:0 0 auto;
}

body.site-account .nav-actions {
  display:flex;
  gap:18px;
  align-items:center;
}

body.site-account .link {
  font-size:14px;
  color:var(--muted);
  transition:color .2s;
}

body.site-account .link:hover {
  color:var(--ink);
}

body.site-account .btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  border:1px solid var(--ink);
  border-radius:999px;
  padding:10px 18px;
  background:var(--ink);
  color:#fff;
  font-weight:760;
  cursor:pointer;
}

body.site-account .btn.secondary {
  background:#fff;
  color:var(--ink);
  border-color:var(--line);
}

body.site-account .btn.warn {
  background:#fff7ed;
  color:#9a3412;
  border-color:#fed7aa;
}

body.site-account .btn:disabled {
  opacity:.55;
  cursor:not-allowed;
}

body.site-account .account-page {
  min-height:calc(100vh - 70px);
  display:grid;
  align-items:center;
  padding:56px 20px;
  background:#f8fafc;
}

body.site-account .auth-shell {
  width:100%;
  max-width:760px;
  min-width:0;
  margin:0 auto;
}

body.site-account .auth-panel {
  width:100%;
  border:1px solid rgba(17,24,39,.08);
  border-radius:12px;
  background:#fff;
  box-shadow:0 18px 56px rgba(15,23,42,.08);
  overflow:hidden;
}

body.site-account .panel-head {
  padding:54px 64px 24px;
  text-align:center;
}

body.site-account .panel-brand {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  color:var(--muted);
  font-size:14px;
  font-weight:760;
  margin-bottom:18px;
}

body.site-account .panel-brand img {
  width:42px;
  height:28px;
  object-fit:contain;
}

body.site-account .panel-title-wrap {
  padding-top:0;
}

body.site-account .panel-head h1 {
  font-size:clamp(36px,6vw,54px);
  line-height:1.08;
  font-weight:760;
  letter-spacing:0;
  margin-bottom:16px;
}

body.site-account .panel-head p {
  max-width:460px;
  margin:0 auto;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
}

body.site-account .panel-footnote {
  display:none;
}

body.site-account .panel-body {
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
  padding:10px 64px 54px;
}

body.site-account .mode-note {
  display:none;
  margin-bottom:18px;
  border:1px solid rgba(194,24,104,.18);
  border-radius:14px;
  padding:12px 14px;
  background:rgba(194,24,104,.05);
  color:#8b174c;
  font-size:13px;
}

body.site-account .mode-note.show {
  display:block;
}

body.site-account .form {
  display:grid;
  gap:18px;
}

body.site-account .form.hidden {
  display:none;
}

body.site-account .form-section-title {
  font-size:20px;
  font-weight:760;
  margin:4px 0 2px;
}

body.site-account .field-label {
  display:grid;
  gap:9px;
  color:var(--muted);
  font-size:15px;
  font-weight:680;
}

body.site-account .field-label-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

body.site-account .field {
  width:100%;
  min-height:62px;
  border:1px solid rgba(17,24,39,.18);
  border-radius:8px;
  padding:16px 18px;
  font-size:18px;
  background:#fff;
  outline:none;
  transition:border-color .2s,box-shadow .2s;
}

body.site-account .field:focus {
  border-color:rgba(17,24,39,.54);
  box-shadow:0 0 0 3px rgba(17,24,39,.07);
}

body.site-account .err {
  min-height:20px;
  color:var(--bad);
  font-size:13px;
}

body.site-account .helper {
  margin-top:14px;
  color:var(--muted);
  font-size:13px;
}

body.site-account .password-field {
  position:relative;
  display:block;
}

body.site-account .password-field .field {
  padding-right:52px;
}

body.site-account .password-toggle {
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:#667085;
  cursor:pointer;
  transition:background .2s,color .2s;
}

body.site-account .password-toggle:hover {
  background:#f2f4f7;
  color:var(--ink);
}

body.site-account .password-toggle:focus-visible {
  outline:2px solid rgba(212,20,114,.34);
  outline-offset:2px;
}

body.site-account .password-toggle svg {
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body.site-account .password-toggle .eye-off {
  display:none;
}

body.site-account .password-toggle.is-visible .eye {
  display:none;
}

body.site-account .password-toggle.is-visible .eye-off {
  display:block;
}

body.site-account .inline {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:8px;
}

body.site-account .link-btn {
  border:0;
  background:transparent;
  color:var(--accent);
  font-weight:760;
  cursor:pointer;
  text-align:left;
}

body.site-account .form-actions {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  margin-top:10px;
}

body.site-account .form-actions .btn {
  width:100%;
  min-height:62px;
  border-color:var(--accent);
  background:var(--accent);
  font-size:20px;
  border-radius:8px;
}

body.site-account .auth-switch-footer {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:108px;
  padding:24px 32px;
  border-top:1px solid var(--line);
  background:#fbfcfe;
  color:var(--muted);
  font-size:18px;
}

body.site-account .auth-switch-footer .link-btn {
  font-size:18px;
}

body.site-account .site-footer {
  padding:36px 6vw;
  color:var(--muted);
  border-top:1px solid var(--line);
  font-size:13px;
  background:#fff;
}

body.site-account .footer-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-bottom:24px;
}

body.site-account .footer-col h2 {
  font-size:14px;
  color:var(--ink);
  margin-bottom:10px;
}

body.site-account .footer-col a {
  display:block;
  margin:7px 0;
  color:var(--muted);
}

body.site-account .footer-col a:hover {
  color:var(--ink);
}

body.site-account .footer-bottom {
  border-top:1px solid var(--line);
  padding-top:18px;
}
@media(max-width:960px){
body.site-account .footer-grid {
  grid-template-columns:1fr;
}

body.site-account .account-page {
  display:block;
  padding:28px 16px 48px;
}

body.site-account .auth-panel {
  border-radius:12px;
}

body.site-account .panel-head {
  padding:34px 24px 18px;
}

body.site-account .panel-head h1 {
  font-size:38px;
}

body.site-account .panel-body {
  padding:8px 24px 34px;
}

body.site-account .nav {
  padding:12px 20px;
}

body.site-account .brand-logo {
  width:34px;
  height:22px;
}

body.site-account .nav .link:not(.course-link),
body.site-account .nav .btn {
  display:none;
}

body.site-account .inline {
  grid-template-columns:1fr;
}

body.site-account .auth-switch-footer {
  min-height:auto;
  padding:22px 18px;
  flex-wrap:wrap;
  font-size:16px;
}

body.site-account .auth-switch-footer .link-btn {
  font-size:16px;
}

body.site-account .site-footer {
  padding:34px 20px;
}
}

/* shared polish layer */
:root {
  --ink: #111827;
  --muted: #667085;
  --subtle: #8a94a6;
  --line: #e4e7ec;
  --soft: #f7f8fa;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --page-bg: #ffffff;
  --accent: #c21868;
  --accent-2: #7f8a9a;
  --accent-3: #a42a62;
  --warn: #c21868;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.055);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 20px;
}

html:has(body.site-public) {
  background: var(--page-bg);
}

body.site-public {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(148, 163, 184, 0.08), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(226, 232, 240, 0.78), transparent 34%),
    var(--page-bg);
}

body.site-public a {
  color: inherit;
}

body.site-public .nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

body.site-public .brand,
body.site-public .footer-col h2,
body.site-public h1,
body.site-public h2,
body.site-public h3,
body.site-public .card h3,
body.site-public .panel h2,
body.site-public .feature b,
body.site-public .contact-item b,
body.site-public .account-row b,
body.site-public .section-title {
  color: var(--ink);
}

body.site-public .link,
body.site-public .lead,
body.site-public .section-intro,
body.site-public .card p,
body.site-public .card li,
body.site-public .panel p,
body.site-public .feature p,
body.site-public .step span,
body.site-public .contact-item span,
body.site-public .contact-item a,
body.site-public .helper,
body.site-public .muted,
body.site-public .small,
body.site-public .row span,
body.site-public .footer-col a,
body.site-public .footer-bottom {
  color: var(--muted);
}

body.site-public .step b {
  color: var(--accent);
}

body.site-public .link:hover,
body.site-public .footer-col a:hover {
  color: var(--ink);
}

body.site-public .btn {
  min-height: 36px;
  padding: 8px 14px;
  border-color: rgba(194, 24, 104, 0.36);
  background: rgba(194, 24, 104, 0.5);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(194, 24, 104, 0.12);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 760;
}

body.site-public .btn:hover {
  border-color: rgba(194, 24, 104, 0.5);
  background: rgba(194, 24, 104, 0.62);
}

body.site-public .btn.secondary,
body.site-public .btn.ghost {
  border-color: rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  border-radius: 999px;
  box-shadow: none;
}

body.site-public .btn.secondary:hover,
body.site-public .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(17, 24, 39, 0.16);
}

body.site-public .btn.warn {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #b45309;
  box-shadow: none;
}

body.site-public .btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

body.site-public .hero {
  width: min(100%, 1180px);
  min-height: auto;
  margin: 58px auto 22px;
  padding: 54px 0 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.site-public:has(.wrap) .hero {
  margin-top: 0;
}

body.site-public .eyebrow,
body.site-public .card small,
body.site-public .category-card small,
body.site-public .dashboard-kicker {
  color: var(--accent-3);
}

body.site-public .eyebrow {
  letter-spacing: 0.08em;
}

body.site-public .hero h1,
body.site-public h1 {
  letter-spacing: 0;
}

body.site-public .hero h1 {
  max-width: 780px;
  font-size: clamp(28px, 2.7vw, 36px);
  line-height: 1.18;
  font-weight: 700;
}

body.site-public .lead {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.85;
}

body.site-public .hero-actions,
body.site-public .actions,
body.site-public .contact-actions {
  gap: 12px;
}

body.site-public .metrics,
body.site-public .summary {
  max-width: 760px;
  border-color: var(--line);
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

body.site-public .metric,
body.site-public .summary div {
  border-color: var(--line);
}

body.site-public .metric b,
body.site-public .summary b,
body.site-public .amount {
  color: var(--ink);
  font-weight: 680;
}

body.site-public .section {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 58px 0;
}

body.site-public .section.alt {
  width: 100%;
  max-width: none;
  padding: 64px max(40px, calc((100vw - 1180px) / 2));
  background: #fafbfc;
}

body.site-public .section-grid,
body.site-public .contact-grid,
body.site-public .features,
body.site-public .grid,
body.site-public .timeline,
body.site-public .path,
body.site-public .category-grid,
body.site-public .steps,
body.site-public .faq-list,
body.site-public .overview-support-grid {
  gap: 20px;
}

body.site-public .section h2 {
  font-size: clamp(21px, 1.75vw, 26px);
  line-height: 1.22;
  font-weight: 680;
}

body.site-public .card,
body.site-public .panel,
body.site-public .feature,
body.site-public .step,
body.site-public .faq-item,
body.site-public .category-card,
body.site-public .contact-item,
body.site-public .access-panel,
body.site-public .status,
body.site-public .course-overview-block,
body.site-public .qr,
body.site-public .empty {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

body.site-public .card,
body.site-public .panel,
body.site-public .feature,
body.site-public .step,
body.site-public .faq-item,
body.site-public .category-card {
  padding: 20px;
}

body.site-public .card:hover,
body.site-public .category-card:hover {
  border-color: rgba(148, 163, 184, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

body.site-public .statement,
body.site-public .note,
body.site-public .notice,
body.site-public .tips {
  border-left-color: #94a3b8;
  background: #f8fafc;
  color: #475467;
  border-radius: var(--radius-md);
}

body.site-public .wrap {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 40px;
}

body.site-public .wrap > .card {
  background: var(--panel);
}

body.site-public:has(.wrap > .card:only-child) .wrap {
  min-height: calc(100vh - 70px);
}

body.site-public:has(.wrap > .card:only-child) .wrap > .card {
  width: min(600px, 100%);
}

body.site-public .head {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

body.site-public .body {
  background: transparent;
}

body.site-public .field,
body.site-public input,
body.site-public select,
body.site-public textarea {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

body.site-public .field::placeholder,
body.site-public input::placeholder,
body.site-public textarea::placeholder {
  color: var(--subtle);
}

body.site-public .field:focus,
body.site-public input:focus,
body.site-public select:focus,
body.site-public textarea:focus {
  outline: none;
  border-color: rgba(194, 24, 104, 0.72);
  box-shadow: 0 0 0 3px rgba(194, 24, 104, 0.12);
}

body.site-public .tabs {
  background: var(--soft);
  border-color: var(--line);
}

body.site-public .tab {
  color: var(--muted);
}

body.site-public .tab.active {
  background: var(--accent);
  color: #fff;
}

body.site-public .row,
body.site-public .account-row {
  border-color: var(--line);
}

body.site-public .badge.pending {
  background: #fff7ed;
  color: #9a3412;
}

body.site-public .badge.review {
  background: #eff6ff;
  color: #1d4ed8;
}

body.site-public .badge.paid,
body.site-public .status.ok {
  background: #f0fdf4;
  color: #047857;
}

body.site-public .badge.bad,
body.site-public .err,
body.site-public .msg {
  color: #dc2626;
}

body.site-public .site-footer {
  width: min(100%, 1180px);
  margin: 16px auto 0;
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
  background: transparent;
}

body.site-public .footer-grid {
  gap: 20px;
}

body.site-public .footer-col {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
}

body.site-public .footer-bottom {
  border-top: 1px solid var(--line);
}
@media (max-width: 1220px) {
body.site-public .hero,
body.site-public .section,
body.site-public .site-footer {
  width: auto;
  margin-left: 40px;
  margin-right: 40px;
}
}
@media (max-width: 960px) {
body.site-public .hero,
body.site-public .section,
body.site-public .section.alt,
body.site-public .site-footer,
body.site-public .wrap {
  width: auto;
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
}

body.site-public .hero {
  padding: 34px 0 22px;
}

body.site-public .section,
body.site-public .section.alt {
  padding-top: 44px;
  padding-bottom: 44px;
}

body.site-public .nav {
  padding: 12px 20px;
}

body.site-public .wrap {
  padding-top: 40px;
  padding-bottom: 40px;
}

body.site-public h1 {
  font-size: 28px;
}

body.site-public .footer-col {
  padding: 16px;
}
}

/* high-specificity public component finalization */
body.site-public .btn,
body.site-public .form-actions .btn {
  min-height: 36px;
  padding: 8px 14px;
  border-color: rgba(194, 24, 104, 0.36);
  background: rgba(194, 24, 104, 0.5);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(194, 24, 104, 0.12);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 760;
}

body.site-public .btn.secondary,
body.site-public .btn.ghost {
  border-color: rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  box-shadow: none;
}

body.site-account .form-actions .btn {
  width: 100%;
  min-height: 62px;
  font-size: 20px;
}

body.site-consult {
  overflow-x: hidden;
}

body.site-consult .wrap {
  width: min(100%, 980px);
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
}

body.site-consult .chat-shell,
body.site-consult [data-xmp-chat-embed] {
  min-width: 0;
  max-width: 100%;
}

body.site-consult .site-footer {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 960px) {
  body.site-consult .page {
    padding: 34px 20px 44px;
  }

  body.site-consult .wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  body.site-consult h1 {
    font-size: 32px;
  }

  body.site-consult .lead,
  body.site-consult .chat-note {
    overflow-wrap: anywhere;
  }

  body.site-consult .site-footer {
    padding: 34px 20px;
  }
}

body.site-public .nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

body.site-public .nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

@media (max-width: 960px) {
  body.site-public .nav {
    position: sticky;
    flex-wrap: wrap;
    gap: 10px;
  }

  body.site-public .brand {
    min-width: 0;
  }

  body.site-public .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  body.site-public .nav-actions {
    display: none;
    width: 100%;
    padding: 10px 0 2px;
    border-top: 1px solid var(--line);
  }

  body.site-public .nav[data-menu-open="true"] .nav-actions {
    display: flex;
    align-items: stretch;
    gap: 8px;
  }

  body.site-public .nav[data-menu-open="true"] .link,
  body.site-public .nav[data-menu-open="true"] .link:not(.course-link) {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 2px;
  }

  body.site-public .nav[data-menu-open="true"] .xmp-account-slot {
    padding-top: 4px;
  }
}

body.site-public.site-study .hero h1 {
  max-width:820px;
  font-size:clamp(34px,4.2vw,54px);
  line-height:1.12;
}

body.site-public.site-study .lead {
  max-width:680px;
  font-size:19px;
}

body.site-public.site-study .feature-copy h2 span {
  display:block;
}

@media(max-width:960px){
body.site-public.site-study .hero h1 {
  max-width:300px;
  font-size:26px;
  line-height:1.18;
  word-break:break-all;
  overflow-wrap:anywhere;
}

body.site-public.site-study .lead {
  max-width:min(260px,calc(100vw - 104px));
  font-size:17px;
  word-break:break-all;
  overflow-wrap:anywhere;
}

body.site-public.site-study .feature-copy,
body.site-public.site-study .feature-visual,
body.site-public.site-study .matrix-board,
body.site-public.site-study .asset-grid,
body.site-public.site-study .module-stack,
body.site-public.site-study .course-strip-copy {
  width:100%;
  max-width:min(280px,calc(100vw - 88px));
}

body.site-public.site-study .feature-copy h2,
body.site-public.site-study .feature-copy p,
body.site-public.site-study .course-strip-copy h2,
body.site-public.site-study .course-strip-copy p {
  overflow-wrap:anywhere;
  word-break:break-all;
}
}

@media(max-width:960px){
body.site-public.site-home .hero h1 {
  max-width:min(280px,calc(100vw - 88px));
  font-size:30px;
  overflow-wrap:anywhere;
  word-break:break-all;
  white-space:normal;
}

body.site-public.site-home .lead {
  max-width:min(260px,calc(100vw - 104px));
  font-size:17px;
  overflow-wrap:anywhere;
  word-break:break-all;
}

body.site-public.site-home .feature-copy,
body.site-public.site-home .feature-visual,
body.site-public.site-home .matrix-board,
body.site-public.site-home .asset-grid {
  width:100%;
  max-width:min(280px,calc(100vw - 88px));
}

body.site-public.site-home .feature-copy h2,
body.site-public.site-home .feature-copy p,
body.site-public.site-home .feature-note span,
body.site-public.site-home .matrix-board span,
body.site-public.site-home .asset-grid p {
  overflow-wrap:anywhere;
  word-break:break-all;
}
}

body.site-about .advanced-hero h1 {
  max-width:980px;
  white-space:normal;
}

body.site-about .advanced-hero .lead span {
  display:block;
}

body.site-about .price-focus {
  display:inline-grid;
  grid-template-columns:auto auto auto;
  gap:8px;
  align-items:end;
  margin:0 0 22px;
  border:1px solid rgba(219,39,119,.18);
  border-radius:22px;
  padding:16px 22px;
  background:rgba(255,255,255,.76);
  box-shadow:0 22px 56px rgba(219,39,119,.12);
}

body.site-about .price-focus span {
  grid-column:1 / -1;
  color:#6b7280;
  font-size:14px;
}

body.site-about .price-focus b {
  color:var(--ink);
  font-size:54px;
  line-height:.9;
  letter-spacing:0;
}

body.site-about .price-focus small {
  color:#4b5565;
  font-size:16px;
  font-weight:760;
}

body.site-about .advanced-tags,
body.site-about .advanced-band {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

body.site-about .advanced-tags {
  width:min(760px,100%);
  margin-top:22px;
}

body.site-about .advanced-tags span,
body.site-about .advanced-band article,
body.site-about .timeline-grid article,
body.site-about .course-offer-card {
  min-width:0;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.86);
  box-shadow:0 12px 28px rgba(15,23,42,.045);
}

body.site-about .advanced-tags span {
  padding:13px 14px;
  color:#344054;
  font-weight:780;
  text-align:center;
}

body.site-about .advanced-signal {
  grid-template-columns:repeat(2,minmax(0,1fr));
}

body.site-about .advanced-band {
  border:1px solid rgba(185,198,216,.72);
  border-radius:28px;
  padding:26px;
  background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  box-shadow:0 30px 80px rgba(15,23,42,.08);
}

body.site-about .advanced-band article {
  display:grid;
  gap:8px;
  padding:22px;
  text-align:center;
}

body.site-about .advanced-band b {
  color:var(--ink);
  font-size:19px;
}

body.site-about .advanced-band span,
body.site-about .timeline-grid p,
body.site-about .course-offer-card p {
  color:#5d6678;
  line-height:1.7;
}

body.site-about .course-offer-card {
  display:grid;
  justify-items:start;
  gap:12px;
  border-color:rgba(219,39,119,.18);
  padding:34px;
  background:radial-gradient(circle at 80% 0%,rgba(219,39,119,.12),transparent 34%),linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}

body.site-about .course-offer-card small,
body.site-about .timeline-grid small {
  color:var(--accent);
  font-size:13px;
  font-weight:860;
  letter-spacing:.08em;
}

body.site-about .course-offer-card b {
  color:var(--ink);
  font-size:62px;
  line-height:.95;
}

body.site-about .course-offer-card > span {
  color:#4b5565;
  font-weight:780;
}

body.site-about .timeline-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

body.site-about .timeline-grid article {
  padding:24px;
}

body.site-about .timeline-grid h3 {
  color:var(--ink);
  font-size:22px;
  line-height:1.25;
  margin:10px 0;
}

body.site-about .advanced-info {
  grid-template-columns:repeat(2,minmax(0,1fr));
}

body.site-about .advanced-info .info-item {
  border-radius:22px;
}

@media(max-width:960px){
body.site-about .advanced-hero h1 {
  max-width:min(300px,calc(100vw - 72px));
  font-size:30px;
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-all;
}

body.site-about .advanced-hero .eyebrow {
  max-width:min(300px,calc(100vw - 72px));
  font-size:12px;
  overflow-wrap:anywhere;
  word-break:break-all;
}

body.site-about .advanced-hero .lead {
  max-width:min(250px,calc(100vw - 112px));
  overflow-wrap:anywhere;
  word-break:break-all;
}

body.site-about .price-focus {
  grid-template-columns:auto auto;
  padding:14px 18px;
}

body.site-about .price-focus b {
  font-size:44px;
}

body.site-about .advanced-tags,
body.site-about .advanced-band,
body.site-about .advanced-signal,
body.site-about .timeline-grid,
body.site-about .advanced-info {
  grid-template-columns:1fr;
}

body.site-about .advanced-tags,
body.site-about .advanced-band,
body.site-about .timeline-grid,
body.site-about .course-offer-card,
body.site-about .advanced-info {
  width:100%;
  max-width:min(280px,calc(100vw - 88px));
  margin-left:auto;
  margin-right:auto;
}

body.site-about .advanced-band,
body.site-about .course-offer-card {
  padding:18px;
}

body.site-about .advanced-tags span,
body.site-about .advanced-band span,
body.site-about .timeline-grid h3,
body.site-about .timeline-grid p,
body.site-about .course-offer-card p,
body.site-about .advanced-info span {
  overflow-wrap:anywhere;
  word-break:break-all;
}
}
