:root {
  /* Figma: JwH8xeX94YtuMhpc78LCZ1 画板 1440，内容区 120px + 1200 + 120 */
  --design-canvas: 1440px;
  --content-max: 1200px;
  --card-gap: 28px;
  --card-radius: 29px;
  --card-shadow: 0 4px 38.3px rgba(190, 201, 233, 0.25);
  --fig-title: #002b48;
  --fig-body: #4a4e69;
  --fig-num: #cec6ff;
  --fig-stat-num: #323f60;
  --fig-stat-label: #595959;
  --fig-sub: #6b7280;
  --purple: #5b4fd6;
  --purple-dark: #4338b8;
  --purple-light: #8b7cf8;
  --blue: #6eb5ff;
  --bg: #f6f4ff;
  --bg-card: #ffffff;
  --text: #1a1f36;
  --text-muted: #5c6378;
  --yellow: #ffe566;
  --yellow-deep: #f5b800;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 12px 40px rgba(67, 56, 184, 0.12);
  --header-h: 70px;
  --font: "Noto Sans SC", "PingFang SC", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
}

main {
  width: 100%;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--purple);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--content-max), calc(100% - 32px));
  margin-inline: auto;
}

/* Header — 毛玻璃浅蓝底 + 顶栏亮蓝线 + 居中宽间距导航 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(
    180deg,
    rgba(200, 220, 255, 0.55) 0%,
    rgba(220, 235, 255, 0.42) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(110, 181, 255, 0.15);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(80, 160, 255, 0.6) 0%,
    #4da3ff 35%,
    #6eb5ff 50%,
    #4da3ff 65%,
    rgba(80, 160, 255, 0.6) 100%
  );
  z-index: 1;
}

.site-header--hero {
  background: linear-gradient(
    180deg,
    rgba(195, 218, 255, 0.48) 0%,
    rgba(210, 228, 255, 0.32) 100%
  );
  box-shadow: none;
}

.site-header:not(.site-header--hero) {
  background: linear-gradient(
    180deg,
    rgba(200, 220, 255, 0.72) 0%,
    rgba(230, 238, 255, 0.85) 100%
  );
  box-shadow: 0 4px 24px rgba(110, 150, 220, 0.08);
}

.site-header--hero .brand--scrolled {
  opacity: 0;
  pointer-events: none;
  width: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.site-header:not(.site-header--hero) .brand--scrolled {
  opacity: 1;
  pointer-events: auto;
  width: auto;
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-h);
}

.header-inner--hero {
  justify-content: center;
}

.site-header:not(.site-header--hero) .header-inner--hero {
  justify-content: center;
}

.site-header:not(.site-header--hero) .brand--scrolled {
  position: absolute;
  left: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #141c32;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav--center {
  justify-content: center;
  gap: clamp(40px, 6vw, 72px);
}

.site-nav a {
  color: #4a5568;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 4px 2px 10px;
  white-space: nowrap;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: #2d3748;
}

.site-nav a.active {
  color: #1a202c;
  font-weight: 600;
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: #3d4a5c;
  border-radius: 2px;
}

.nav-toggle span {
  background: #4a5568;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
#top,
#advantages,
#process,
#universities,
#more-universities,
#stats,
#partner {
  scroll-margin-top: var(--header-h);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: calc(var(--header-h) + 48px) 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero > .container {
  width: min(var(--content-max), calc(100% - 32px));
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(210, 228, 255, 0.55) 0%,
      rgba(185, 210, 255, 0.72) 35%,
      rgba(200, 218, 255, 0.78) 70%,
      rgba(230, 238, 255, 0.85) 100%
    ),
    url("../images/头图.png") center 30% / cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 16px;
}

/* 品牌区：星星 + 文案块（Figma 色值 #002b5c / 英文略浅） */
.hero-brand {
  --hero-brand-navy: #002b5c;
  --hero-brand-en: #4a6d8f;
  display: flex;
  justify-content: center;
  margin-bottom: 46px;
  padding-left: 8px;
}

.hero-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  text-align: left;
}

.hero-star {
  flex-shrink: 0;
  width: 116px;
  height: 116px;
  margin-top: -14px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(255, 200, 80, 0.45));
}

.hero-brand-copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding-top: 0;
}

.hero-brand-title {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 0;
}

.hero-name {
  font-size: clamp(1.55rem, 2.65vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--hero-brand-navy);
  white-space: nowrap;
  padding-right: 14px;
}

.hero-vline {
  flex-shrink: 0;
  align-self: stretch;
  width: 1px;
  min-height: 2.55em;
  margin: 0 14px 0 0;
  background: var(--hero-brand-navy);
  opacity: 0.28;
}

.hero-slogan-en {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  line-height: 1.1;
  padding-top: 1px;
}

.hero-slogan-en-line {
  display: block;
  font-size: clamp(0.6rem, 1vw, 0.7rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--hero-brand-en);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-slogan-cn {
  display: flex;
  justify-content: space-between;
  align-self: stretch;
  margin: 0;
  width: 100%;
  font-size: clamp(0.94rem, 1.5vw, 1.06rem);
  font-weight: 500;
  color: var(--hero-brand-navy);
  line-height: 1.4;
  letter-spacing: 0;
  text-indent: 0;
}

.hero-slogan-cn span {
  flex: 0 0 auto;
}

.hero-headline {
  font-size: clamp(1.55rem, 3.8vw, 2.35rem);
  font-weight: 800;
  max-width: 920px;
  margin: 0 auto 18px;
  line-height: 1.45;
  color: #002b5c;
  letter-spacing: 0.03em;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  font-weight: 500;
  color: #002b5c;
  letter-spacing: 0.04em;
}

.hero-features-sep {
  margin: 0 1.1em;
  font-weight: 400;
  color: #4a6d8f;
}

.hero-actions-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  justify-content: center;
}

.hero-promo {
  margin: 18px 0 0;
  padding: 0 12px;
  font-size: clamp(0.78rem, 1.6vw, 0.875rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
  text-align: center;
  text-shadow: 0 1px 8px rgba(30, 50, 100, 0.4);
  max-width: 680px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(91, 79, 214, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.95);
  color: var(--purple-dark);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Hero 按钮：Figma 1:251 — 185×53 胶囊，文字 20px */
.btn-hero-ghost,
.btn-hero-gradient {
  width: 185px;
  height: 53px;
  padding: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.btn-hero-ghost {
  background: rgba(233, 236, 239, 0.29);
  border: 1px solid #fff;
  border-radius: 123px;
  box-shadow: 0 0 4px #bec9e9;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-hero-gradient {
  background: linear-gradient(114.66deg, #79c7ff 5%, #8ca5ff 97%);
  border: none;
  border-radius: 141px;
  box-shadow: 0 4px 4.3px rgba(55, 60, 77, 0.25);
}

.btn-gift {
  margin-right: 4px;
}

a.btn-hero-ghost {
  text-decoration: none;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-xs {
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
  border: none;
}

.btn-light {
  background: #fff;
  color: var(--purple-dark);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 12px;
  color: var(--text);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
}

/* 核心优势 */
.section-advantages {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-advantages::before,
.section-advantages::after {
  content: "";
  position: absolute;
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section-advantages::before {
  left: 0;
  bottom: -25%;
  transform: translateX(-35%);
  background: radial-gradient(circle, rgba(210, 220, 255, 0.55) 0%, transparent 68%);
}

.section-advantages::after {
  right: 0;
  bottom: -25%;
  transform: translateX(35%);
  background: radial-gradient(circle, rgba(225, 210, 255, 0.45) 0%, transparent 68%);
}

.section-advantages .container {
  position: relative;
  z-index: 1;
}

.section-head--lined h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--fig-title);
  letter-spacing: 0.04em;
}

.section-title-bar {
  display: block;
  width: 82px;
  height: 3px;
  margin: 0 auto 20px;
  background: var(--fig-title);
  border-radius: 2px;
}

.section-head--lined p {
  color: var(--fig-sub);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* 核心优势：Figma 三卡同宽同高，用 flex 行拉伸（比 grid 更稳定） */
.advantage-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: var(--card-gap);
}

.advantage-grid > .advantage-card {
  flex: 1 1 0;
  min-width: 0;
}

/* 使用流程 — 设计稿：顶区浅蓝紫晕、标题居中、星星下缘贴卡片顶 */
.section-process {
  background: linear-gradient(180deg, #f2f5fc 0%, #fafbff 22%, #ffffff 48%);
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding-top: 64px;
  padding-bottom: 80px;
}

.section-process::before,
.section-process::after {
  content: "";
  position: absolute;
  width: min(520px, 55vw);
  height: min(420px, 50vw);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section-process::before {
  left: 0;
  top: 0;
  transform: translate(-38%, -28%);
  background: radial-gradient(circle, rgba(195, 218, 255, 0.55) 0%, transparent 70%);
}

.section-process::after {
  right: 0;
  top: 0;
  transform: translate(38%, -22%);
  background: radial-gradient(circle, rgba(220, 205, 255, 0.48) 0%, transparent 70%);
}

.section-process .container {
  position: relative;
}

/* 使用流程 — 效果图：标题/副标题居中，星星贴第三卡右上，下缘搭卡片顶 */
.process-shell {
  position: relative;
}

.process-header {
  text-align: center;
  margin-bottom: 0;
}

.process-header.section-head--process h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 700;
}

.process-header .section-title-bar {
  width: 72px;
  height: 4px;
  margin-bottom: 16px;
}

.process-tagline {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 16px;
  color: #5c6f8f;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.process-stage {
  position: relative;
  margin-top: 26px;
}

/* 星星右缘对齐第三张卡，下缘约 1/4 落入卡顶（与效果图一致） */
.process-mascot-wrap {
  position: absolute;
  right: 168px;
  bottom: 100%;
  width: 264px;
  height: 230px;
  margin-bottom: -32px;
  z-index: 4;
  pointer-events: none;
}

.process-mascot {
  display: block;
  width: 264px;
  height: 230px;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 10px 24px rgba(255, 200, 80, 0.4));
}

.process-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: var(--card-gap);
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.process-grid > .process-card {
  flex: 1 1 0;
  min-width: 0;
}

/* 使用流程卡：Figma 382×499 */
.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 499px;
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: 159px 35px 36px;
  box-shadow: var(--card-shadow);
  text-align: left;
}

/* 核心优势卡：Figma 382×538，圆角 29，左内边距 37，标题区 140px 起 */
.advantage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 538px;
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: 140px 37px 36px;
  box-shadow: var(--card-shadow);
  text-align: left;
}

/* —— 数字 01/02/03 —— */
.advantage-card .card-num {
  position: absolute;
  top: 44px;
  left: 37px;
  font-size: 64px;
  font-weight: 500;
  color: var(--fig-num);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.01em;
}

.process-card .card-num {
  position: absolute;
  top: 48px;
  left: 35px;
  font-size: 48px;
  font-weight: 500;
  color: var(--fig-num);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.01em;
}

/* —— 右上角图标：PNG 自带圆角渐变底，直接铺图 —— */
.advantage-card .card-logo {
  position: absolute;
  top: 38px;
  right: 37px;
  display: block;
  width: 68px;
  height: 67px;
  object-fit: contain;
  pointer-events: none;
}

/* —— 标题：固定两行高度 92px，单行标题底部对齐，使分隔线/正文跨卡对齐 —— */
.advantage-card h3 {
  margin: 0;
  height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 26px;
  font-weight: 500;
  line-height: 46px;
  color: var(--fig-title);
}

.advantage-card .card-title-divider {
  display: block;
  width: 55px;
  height: 2px;
  margin: 28px 0 0;
  background: var(--fig-title);
  border-radius: 1px;
  flex-shrink: 0;
}

.advantage-card p {
  margin: 28px 0 0;
  color: var(--fig-body);
  font-size: 20px;
  line-height: 37px;
}

.process-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  color: var(--fig-title);
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.process-card .card-title-divider {
  display: block;
  width: 54px;
  height: 2px;
  margin: 35px 0 0;
  background: var(--fig-title);
  border-radius: 1px;
  flex-shrink: 0;
}

.process-card p {
  margin: 45px 0 0;
  color: var(--fig-body);
  font-size: 20px;
  line-height: 31px;
}

.process-card .card-logo--process {
  position: absolute;
  top: 40px;
  right: 29px;
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  pointer-events: none;
}

@media (min-width: 1025px) {
  .process-card {
    height: 499px;
    min-height: 499px;
    max-height: 499px;
  }

  .process-stage {
    margin-top: 28px;
  }

  .process-mascot-wrap {
    right: 172px;
    margin-bottom: -34px;
  }
}

.section-more-uni {
  padding-top: 24px;
  background: #ffffff;
}

/* 高校入驻 */
.section-universities {
  background: linear-gradient(
    100deg,
    #ffffff 0%,
    #ffffff 50%,
    #f5f7ff 78%,
    #eceeff 100%
  );
}

/* Figma 高校入驻：1199×517，单卡 280×517，列间距 26 */
.uni-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  max-width: 1199px;
}

.uni-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  height: 517px;
  justify-self: center;
  box-shadow: 0 14px 40px rgba(55, 70, 120, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.uni-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(55, 70, 120, 0.22);
}

.uni-card-bg {
  position: absolute;
  inset: 0;
  background-color: #8b9cf8;
  background-image: var(--uni-img, none);
  background-size: cover;
  background-position: center;
}

.uni-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 45%,
    rgba(20, 28, 50, 0.35) 72%,
    rgba(12, 18, 40, 0.78) 100%
  );
}

.uni-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 0 24px 24px;
  color: #fff;
  text-align: left;
}

.uni-card-overlay h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.uni-pinyin {
  margin: 0 0 14px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.92;
  line-height: 1.4;
}

.btn-uni-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  background: #ffffff;
  color: #141c32;
  border: none;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s, background 0.15s;
}

.btn-uni-join:hover {
  transform: scale(1.03);
  background: #f8f9ff;
}

/* 更多高校：每屏 4×2 共 8 个，轮播切换 */
.logo-panel {
  padding: 8px 0 32px;
}

.logo-panel-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  contain: inline-size;
}

.logo-panel-track {
  display: flex;
  width: 100%;
  min-width: 0;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-panel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo-panel-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

/* 285×112 整图；素材画布留白较多，格子内放大裁切以视觉铺满 */
.logo-panel-cell {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 285 / 112;
}

.logo-panel-cell--static {
  cursor: default;
}

.logo-panel-hit {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.logo-panel-hit:hover {
  transform: scale(1.03);
}

.logo-panel-hit:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 3px;
}

.logo-panel-tile {
  --logo-tile-zoom: 1.42;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--logo-tile-zoom));
  transform-origin: center center;
}

.logo-panel-tile--fallback {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 285 / 112;
  min-height: 0;
  transform: none;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef1ff 0%, #f8f9ff 100%);
  color: #141c32;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.logo-panel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.logo-panel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d1d5e8;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.logo-panel-dot.is-active {
  background: var(--purple);
  transform: scale(1.15);
}

/* 数据展示 — Figma 1:134：玻璃拟态卡 + 背后黄色五角星 */
.section-stats {
  position: relative;
  padding: 72px 0 96px;
  background: #ffffff;
  overflow: hidden;
}

.stats-decoration {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.stats-star {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(570px, 80vw);
  height: auto;
  max-height: min(570px, 80vw);
  transform: translate(-50%, -48%);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  /* PNG 若带黑底，避免在白底上晕出灰黑渐变 */
  mix-blend-mode: lighten;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
  align-items: stretch;
}

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 353px;
  padding: 41px 24px 40px;
  background: #ffffff;
  border-radius: 29px;
  box-shadow: 0 0 37.9px #d7d8dc;
  text-align: center;
}

.stat-logo {
  display: block;
  width: 98px;
  height: 98px;
  object-fit: contain;
  pointer-events: none;
}

.stat-num {
  display: block;
  margin: 38px 0 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fig-stat-num);
  letter-spacing: 0.01em;
}

.stat-caption {
  display: block;
  margin-top: 10px;
  color: var(--fig-stat-label);
  font-size: 24px;
}

/* 渠道合作 CTA：收窄白卡 + 左 slide 略溢出 + 按钮在文案下方 */
.section-partner {
  padding: 56px 0 clamp(120px, 14vw, 176px);
  background: #ffffff;
  overflow: visible;
}

.section-partner > .container {
  width: min(var(--content-max), calc(100% - 32px));
  max-width: var(--content-max);
  overflow: visible;
}

.partner-card {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  text-align: left;
  background: #ffffff;
  border-radius: 29px;
  box-shadow: var(--card-shadow);
  overflow: visible;
  min-height: 220px;
  padding-left: clamp(120px, 13vw, 180px);
}

.partner-card-deco {
  position: absolute;
  left: clamp(-48px, -3.5vw, -24px);
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: calc(100% + 90px);
  width: auto;
  max-width: clamp(160px, 18vw, 240px);
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.partner-card-main {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 40px 44px 40px 12px;
}

.partner-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}

.partner-card-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: var(--fig-title);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.partner-lead {
  margin: 0 0 24px;
  color: var(--fig-body);
  font-size: 0.9375rem;
  line-height: 1.85;
}

.partner-card-copy .btn-partner {
  margin: 0;
}

.btn-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: rgba(215, 220, 255, 0.55);
  color: #4a3f9e;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(140, 150, 210, 0.2);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-partner:hover {
  background: rgba(205, 212, 255, 0.75);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(140, 150, 210, 0.28);
}

.field-label::after,
.field-group.field-required > legend::after {
  content: "*";
  margin-left: 3px;
  color: #e53935;
  font-weight: 600;
}

.field-label {
  display: inline-block;
  margin-bottom: 0;
}

.lead-form > label:not(.legal-consent):not(.radio-chip):not(.radio-line) {
  display: block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.lead-form > label.field-required > .field-label {
  display: block;
  margin-bottom: 6px;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form textarea,
.lead-form select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid #e2e4ef;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  box-sizing: border-box;
}

.lead-form input[type="text"]:focus,
.lead-form input[type="tel"]:focus,
.lead-form input[type="email"]:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(91, 79, 214, 0.15);
}

.lead-form input[type="radio"],
.lead-form input[type="checkbox"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  vertical-align: middle;
  accent-color: #5b4fd6;
  cursor: pointer;
}

.field-hint {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
}

.field-group {
  margin: 0 0 16px;
  padding: 0;
  border: none;
}

.field-group legend {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  padding: 0;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.radio-chip,
.radio-line {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  background: #fafbff;
  border: 1px solid #e8eaf4;
  border-radius: 10px;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s;
}

.radio-row .radio-chip {
  flex: 1 1 calc(50% - 5px);
  min-width: 100px;
  justify-content: center;
  align-items: center;
}

.radio-stack .radio-line,
.radio-stack--grid .radio-line {
  width: 100%;
}

.radio-chip:hover,
.radio-line:hover {
  border-color: #d4d9f0;
}

.radio-chip:has(input:checked),
.radio-line:has(input:checked) {
  border-color: #8b7cf8;
  background: #f3f0ff;
}

.radio-chip input,
.radio-line input {
  margin-top: 2px;
}

.legal-consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 16px;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
}

.legal-consent input[type="checkbox"] {
  margin-top: 3px;
}

.legal-consent a {
  color: var(--purple);
  text-decoration: underline;
}

.legal-consent a:hover {
  color: var(--purple-light);
}

#beta-submit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.modal-dialog--beta {
  width: min(560px, 100%);
}

@media (max-width: 520px) {
  .radio-stack--grid {
    grid-template-columns: 1fr;
  }

  .radio-row .radio-chip {
    flex: 1 1 100%;
  }
}

/* 页脚 — Figma：左 185×185 星星骑线，右水印，下二维码+导航 */
.site-footer {
  --footer-mascot: 185px;
  --footer-mascot-overhang: calc(var(--footer-mascot) / 2);
  position: relative;
  z-index: 2;
  overflow: visible;
  background: #eceeff;
  padding: 0 0 36px;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 72px);
  align-items: start;
  min-height: calc(var(--footer-mascot) + 200px);
  padding: var(--footer-mascot-overhang) 0 48px 0;
}

/* 星星中心对齐页脚顶边：上半在白区、下半在淡紫底上 */
.footer-mascot-slot {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: var(--footer-mascot);
  height: var(--footer-mascot);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  pointer-events: none;
}

.footer-col {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.footer-col--qr {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-col--nav,
.footer-col--contact,
.footer-col--legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-col--contact {
  padding-top: 4px;
}

.footer-mascot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* 图1：XING XING 仅在淡紫底内（与星星下半对齐），字号适中 */
.footer-brand-watermark {
  position: absolute;
  left: calc(var(--footer-mascot) + 5px);
  top: calc(var(--footer-mascot-overhang) - 115px);
  height: var(--footer-mascot-overhang);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #9da2d1;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.footer-qr {
  width: 160px;
  max-width: 100%;
  min-height: 88px;
}

.footer-qr-img {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-qr-placeholder {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.38;
  color: #141c32;
}

.footer-site-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
  flex-shrink: 0;
}

.footer-site-nav a {
  color: #374151;
  font-size: 0.9375rem;
  line-height: 1.35;
  text-decoration: none;
}

.footer-site-nav a:hover {
  color: var(--purple);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-line {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #374151;
}

.footer-contact-label {
  color: inherit;
}

.footer-email {
  color: #374151;
  font-weight: 500;
  text-decoration: none;
}

.footer-email:hover {
  color: var(--purple);
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.footer-legal a {
  color: #374151;
  font-size: 0.9375rem;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

.footer-legal a:hover {
  color: var(--purple);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.8125rem;
  color: #9ca3af;
  text-align: center;
}

.footer-copy {
  margin: 0;
  color: inherit;
}

.footer-icp {
  color: inherit;
  font-size: 0.75rem;
  text-decoration: none;
}

.footer-disclaimer {
  margin: 0;
  color: inherit;
  font-size: 0.625rem;
}

.footer-icp:hover {
  color: #6b7280;
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 54, 0.45);
}

.modal-dialog {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(91, 79, 214, 0.45) rgba(91, 79, 214, 0.08);
  box-shadow: 0 24px 64px rgba(67, 56, 184, 0.25);
}

.modal-dialog::-webkit-scrollbar {
  width: 8px;
}

.modal-dialog::-webkit-scrollbar-track {
  margin: 12px 0;
  background: transparent;
  border-radius: 999px;
}

.modal-dialog::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(139, 124, 248, 0.55), rgba(91, 79, 214, 0.7));
  border-radius: 999px;
  border: 2px solid #fff;
  background-clip: padding-box;
}

.modal-dialog::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(139, 124, 248, 0.75), rgba(91, 79, 214, 0.9));
  background-clip: padding-box;
}

.modal-dialog h2 {
  font-size: 1.15rem;
  margin: 0 32px 12px 0;
  line-height: 1.4;
  color: var(--text);
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0 0 20px;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 300;
  pointer-events: none;
}

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

/* 法律文档页 — 白底居中栏，参照效果图 */
.page-legal {
  background: #ffffff;
}

.legal-page {
  padding: calc(var(--header-h) + 40px) 0 72px;
  background: #ffffff;
}

.legal-container {
  max-width: 900px;
}

.legal-doc {
  background: #ffffff;
  padding: 0 8px 24px;
}

.legal-doc__title {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #2c5282;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.35;
  color: #2c5282;
}

.legal-doc__meta {
  margin-bottom: 28px;
}

.legal-doc__meta p {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
}

.legal-doc__body {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
}

.legal-doc__body p {
  margin: 0 0 1rem;
}

.legal-lead {
  font-weight: 700;
  color: #374151;
}

.legal-h2 {
  margin: 2.25rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  color: #334155;
}

.legal-h3 {
  margin: 1.35rem 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.45;
  color: #3b82f6;
}

.legal-list {
  margin: 0 0 1rem;
  padding-left: 1.35em;
}

.legal-list li {
  margin-bottom: 0.65rem;
  line-height: 1.75;
}

.legal-list--plain {
  list-style: none;
  padding-left: 0;
}

.legal-doc__body a {
  color: #4488cc;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-doc__body a:hover {
  color: #2563eb;
}

.legal-doc__body strong {
  font-weight: 700;
  color: #374151;
}

.legal-doc__divider {
  margin: 48px 0 24px;
  border: none;
  border-top: 1px solid #e5e7eb;
}

.legal-doc__foot {
  padding-bottom: 8px;
}

.legal-back {
  display: inline-block;
  font-size: 0.9375rem;
  color: #4488cc;
  text-decoration: none;
}

.legal-back:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* Admin */
body.admin-page {
  background: #f0f2f8;
}

.admin-wrap {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}

.admin-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login .admin-card {
  width: min(400px, 100%);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-tabs a {
  padding: 8px 16px;
  border-radius: 8px;
  margin-right: 8px;
  background: var(--bg);
  color: var(--text-muted);
  text-decoration: none;
}

.admin-tabs a.active {
  background: var(--purple);
  color: #fff;
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.admin-filters input,
.admin-filters button {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e2e4ef;
  font-family: inherit;
}

.admin-filters button {
  background: var(--purple);
  color: #fff;
  border: none;
  cursor: pointer;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.data-table th {
  background: var(--bg);
  font-weight: 600;
}

.flash {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.flash.error {
  background: #fee;
  color: #c33;
}

/* Responsive */
@media (max-width: 1024px) {
  .uni-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    justify-content: stretch;
    max-width: none;
  }

  .uni-card {
    width: 100%;
    height: auto;
    aspect-ratio: 280 / 517;
    border-radius: 20px;
  }

  .logo-panel-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .logo-panel-slide {
    gap: 10px;
  }

  .advantage-grid {
    flex-direction: column;
  }

  .advantage-grid > .advantage-card {
    flex: 1 1 auto;
    min-height: 0;
  }

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

  .stats-star {
    width: min(395px, 85vw);
    max-height: min(395px, 85vw);
    transform: translate(-50%, -50%);
  }

  .process-grid {
    flex-direction: column;
  }

  .site-footer {
    --footer-mascot: 150px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 24px;
    padding-left: 0;
    min-height: auto;
  }

  .footer-brand-watermark {
    left: calc(var(--footer-mascot) + 10px);
    font-size: 1.5rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    --footer-mascot: 120px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-top: calc(var(--footer-mascot-overhang) + 8px);
  }

  .footer-brand-watermark {
    display: none;
  }

}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(220, 235, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    padding: 20px 24px 28px;
    gap: 8px;
    box-shadow: 0 12px 32px rgba(100, 120, 180, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .site-nav--center {
    gap: 4px;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px 8px;
    width: 100%;
    text-align: center;
  }

  .header-inner {
    justify-content: flex-end;
  }

  .site-header:not(.site-header--hero) .brand--scrolled {
    position: static;
  }

  .hero-brand {
    margin-bottom: 32px;
    padding-left: 0;
  }

  .hero-brand-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .hero-star {
    margin-top: 0;
  }

  .hero-brand-copy {
    align-items: stretch;
    gap: 11px;
  }

  .hero-brand-title {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
  }

  .hero-name {
    padding-right: 0;
  }

  .hero-vline {
    margin: 0 10px;
  }

  .hero-slogan-cn {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .hero-headline {
    margin-bottom: 14px;
  }

  .hero-features {
    margin-bottom: 28px;
    font-size: 0.95rem;
  }

  .hero-features-sep {
    margin: 0 0.75em;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f5;
  }

  .section-partner {
    padding-top: 40px;
    padding-bottom: clamp(88px, 18vw, 128px);
  }

  .partner-card {
    max-width: 100%;
    padding-left: 0;
    padding-top: 0;
    min-height: 0;
  }

  .partner-card-deco {
    display: none;
  }

  .partner-card-main {
    padding: 32px 24px 36px;
  }

  .partner-card-copy .btn-partner {
    align-self: center;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }

  .legal-doc {
    padding: 0 4px 16px;
  }

  .legal-doc__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .advantage-grid {
    flex-wrap: wrap;
  }

  .advantage-grid > .advantage-card {
    flex: 1 1 calc(50% - var(--card-gap) / 2);
  }

  .advantage-grid > .advantage-card:last-child {
    flex: 1 1 100%;
  }

  .process-grid {
    flex-wrap: wrap;
  }

  .process-grid > .process-card {
    flex: 1 1 calc(50% - var(--card-gap) / 2);
  }

  .process-grid > .process-card:last-child {
    flex: 1 1 100%;
  }

  .process-mascot-wrap {
    width: 220px;
    height: 192px;
    right: 132px;
    margin-bottom: -28px;
  }

  .process-mascot {
    width: 220px;
    height: 192px;
  }

  .process-tagline {
    font-size: 1.375rem;
  }
}

@media (max-width: 900px) {
  .process-mascot-wrap {
    display: none;
  }

  .process-tagline {
    white-space: normal;
  }

  .process-stage {
    margin-top: 20px;
  }

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

@media (max-width: 640px) {
  .logo-panel-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
