:root {
  --blue: #0966ff;
  --blue-2: #1f7cff;
  --cyan: #eaf5ff;
  --ink: #071126;
  --muted: #66738b;
  --line: #dbe7fb;
  --green: #20aa78;
  --orange: #ff9f32;
  --gold: #f4b63f;
  --red: #f06a4d;
  --purple: #8067ff;
  --surface: #ffffff;
  --shadow: 0 18px 45px rgba(12, 63, 142, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", Arial, sans-serif;
  background: #fff;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite {
  display: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 88px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 231, 251, 0.75);
}

.nav-wrap {
  height: 100%;
  display: grid;
  grid-template-columns: 350px 1fr auto;
  gap: 24px;
  align-items: center;
}

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

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 68px;
  max-width: none;
  transform: translateY(5px);
}

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

.brand small {
  display: block;
  margin-top: 6px;
  color: #0c1a33;
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 40px);
  color: #0b1830;
  font-size: 16px;
}

.nav-links a {
  position: relative;
  padding: 34px 0 31px;
  white-space: nowrap;
}

.nav-links a.active {
  color: var(--blue);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 32px;
  height: 4px;
  border-radius: 99px;
  background: var(--blue);
  transform: translateX(-50%);
}

.nav-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  border-radius: 8px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0b6dff, #0051e8);
  box-shadow: 0 12px 24px rgba(0, 95, 255, 0.22);
}

.btn-ghost,
.btn-outline {
  color: var(--blue);
  border-color: var(--blue);
  background: #fff;
}

.btn-large {
  min-height: 60px;
  min-width: 218px;
  font-size: 17px;
}

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

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: 640px;
  padding: 70px 0 54px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(234, 245, 255, 0.8) 50%, rgba(245, 255, 250, 0.9) 100%),
    linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
  gap: 48px;
  align-items: center;
}

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

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 22px;
  color: #1264e8;
  background: #e8f2ff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
}

.hero h1 {
  margin: 34px 0 24px;
  font-size: clamp(44px, 4.3vw, 58px);
  line-height: 1.24;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero h1 span {
  color: var(--blue);
  white-space: nowrap;
}

.hero-subtitle {
  width: min(680px, 100%);
  margin: 0 0 40px;
  color: #41516b;
  font-size: 20px;
  line-height: 1.85;
}

.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  margin-top: 44px;
  color: #1b335f;
  font-size: 15px;
}

.capabilities span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.capabilities .icon {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 475px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -80px -130px -80px -40px;
  background:
    linear-gradient(135deg, rgba(232, 242, 255, 0.72), rgba(239, 255, 248, 0.5));
  pointer-events: none;
  z-index: 0;
}

.hero-banner-art {
  position: absolute;
  right: -86px;
  top: -8px;
  width: min(900px, 128%);
  max-width: none;
  clip-path: inset(3.5% 0 6% 0);
  filter: drop-shadow(0 26px 42px rgba(12, 67, 142, 0.18));
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.08) 6%, rgba(0, 0, 0, 0.72) 16%, #000 30%, #000 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.75) 10%, #000 22%, #000 78%, rgba(0, 0, 0, 0.75) 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.08) 6%, rgba(0, 0, 0, 0.72) 16%, #000 30%, #000 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.75) 10%, #000 22%, #000 78%, rgba(0, 0, 0, 0.75) 90%, transparent 100%);
  mask-composite: intersect;
}

.hero-proof {
  position: absolute;
  z-index: 2;
  width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(219, 231, 251, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(12, 63, 142, 0.14);
}

.hero-proof b {
  display: block;
  color: #0b54cf;
  font-size: 18px;
  line-height: 1.3;
}

.hero-proof small {
  display: block;
  margin-top: 6px;
  color: #53637a;
  font-size: 13px;
  line-height: 1.55;
}

.proof-left {
  left: -12px;
  bottom: 42px;
}

.proof-right {
  right: 8px;
  top: 58px;
}

.phone {
  position: absolute;
  right: 0;
  top: 56px;
  width: 210px;
  aspect-ratio: 1179 / 2556;
  padding: 6px;
  border-radius: 34px;
  background: #0c1420;
  box-shadow: 0 22px 38px rgba(5, 38, 85, 0.22);
}

.phone::before {
  display: none;
}

.phone-shot-frame {
  overflow: hidden;
  border-radius: 26px;
  background: #0c1420;
}

.phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 27px;
}

.section {
  padding: 44px 0;
}

.parent-concerns {
  background: #fff;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 0 36px;
  text-align: center;
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.35;
}

.section-title span {
  width: 32px;
  height: 2px;
  background: #b9c8dc;
}

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

.concern-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 12px 32px rgba(12, 63, 142, 0.08);
}

.concern-card .icon {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.concern-card:nth-child(2) .icon {
  color: var(--green);
}

.concern-card:nth-child(3) .icon {
  color: var(--orange);
}

.concern-card:nth-child(4) .icon {
  color: var(--red);
}

.concern-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.concern-card p {
  margin: 0;
  color: #53637a;
  font-size: 15px;
  line-height: 1.75;
}

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

.scene-card {
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.scene-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.scene-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 8px;
  font-size: 28px;
  box-shadow: 0 12px 22px rgba(0, 96, 255, 0.2);
}

.scene-icon.blue {
  background: linear-gradient(135deg, #267fff, #005ff1);
}

.scene-icon.green {
  background: linear-gradient(135deg, #48caa0, #12a374);
}

.scene-head h3 {
  margin: 0;
  font-size: 22px;
}

.scene-head p {
  margin: 8px 0 0;
  color: #58677f;
  font-size: 15px;
}

.scene-copy {
  min-height: 78px;
  margin: 0 0 20px;
  color: #53637a;
  font-size: 15px;
  line-height: 1.72;
}

.scene-preview {
  min-height: 150px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbff, #edf5ff);
  border: 1px solid #dce8fa;
}

.image-preview {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 0;
  background: #f6fbff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.dual {
  padding-top: 0;
}

.dual-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.role-card {
  position: relative;
  overflow: hidden;
  min-height: 355px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.teacher-card {
  background: linear-gradient(180deg, #f6fffb, #fff);
}

.role-copy {
  position: relative;
  z-index: 2;
  width: 52%;
}

.role-copy h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 30px;
}

.teacher-card .role-copy h2 {
  color: #0b875d;
}

.role-copy p {
  margin: 0 0 34px;
  color: #1264e8;
  font-size: 18px;
  font-weight: 700;
}

.teacher-card .role-copy p {
  color: #0b875d;
}

.check-items {
  display: grid;
  gap: 23px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #273b5d;
  font-size: 17px;
}

.check-items li {
  position: relative;
  padding-left: 34px;
}

.check-items li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 2px solid currentColor;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 900;
}

.check-items.green li::before {
  color: var(--green);
}

.role-phone {
  position: absolute;
  top: 26px;
  right: 56px;
  transform: scale(1.03);
}

.switch-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 86, 180, 0.14);
  transform: translate(-50%, -50%);
  font-size: 26px;
  font-weight: 900;
}

.teacher-workspace-art {
  position: absolute;
  right: 28px;
  top: 44px;
  width: 50%;
  min-width: 340px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: #f7fbf8;
  box-shadow: 0 20px 34px rgba(19, 72, 54, 0.16);
}

.teacher-workspace-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

.loop {
  padding-top: 6px;
}

.section-title.compact {
  margin-bottom: 26px;
}

.loop-flow {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr 42px 1fr;
  gap: 6px;
  align-items: center;
  margin: 0 auto 32px;
}

.loop-flow > i {
  height: 2px;
  background: var(--blue);
  position: relative;
}

.loop-flow > i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  border-left: 8px solid var(--blue);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.flow-step {
  min-height: 88px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid #cfe0f7;
  border-radius: 12px;
  background: #fff;
}

.flow-step span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 2px solid #d8e7fb;
  border-radius: 50%;
  font-size: 22px;
}

.flow-step b {
  font-size: 16px;
}

.flow-step small {
  color: #607189;
  font-size: 13px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  padding: 22px 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f6fbff, #edf5ff);
}

.metrics div {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid #d7e4f5;
}

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

.metrics-lead {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.metrics span {
  grid-row: 1 / 3;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.metrics b {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
}

.metrics small {
  color: #4f6078;
  font-size: 13px;
  line-height: 1.4;
}

.final-cta {
  padding: 0 0 36px;
}

.site-footer {
  position: relative;
  padding: 44px 0 26px;
  color: var(--muted);
  background: linear-gradient(180deg, #fbfdff 0%, #f2f7ff 100%);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.footer-inner {
  position: relative;
  display: grid;
  gap: 26px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px 48px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(219, 231, 251, 0.9);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.footer-brand .brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(12, 63, 142, 0.08);
}

.footer-brand .brand-mark img {
  width: 46px;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.footer-brand-text strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  color: var(--ink);
}

.footer-brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
}

.footer-contacts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
}

.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(9, 102, 255, 0.08);
  border: 1px solid rgba(9, 102, 255, 0.14);
}

.footer-contacts .icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

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

.footer-contact-body em {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 1px;
  color: #97a3b8;
}

.footer-contact-body a,
.footer-contact-body span {
  color: #3a4b66;
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact-note {
  color: var(--muted);
  font-size: 13px;
}

.footer-contact-body a {
  transition: color 0.2s ease;
}

.footer-contact-body a:hover {
  color: var(--blue);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  color: #8a97ad;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.footer-legal a {
  color: #8a97ad;
  transition: color 0.2s ease;
}

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

.cta-panel {
  position: relative;
  z-index: 5;
  min-height: 120px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  overflow: visible;
  padding: 0 52px 0 28px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #0a72ff, #0053e8);
}

.cta-actions {
  position: relative;
  z-index: 6;
}

.cta-panel img {
  width: 145px;
  align-self: end;
  margin-bottom: -20px;
  filter: drop-shadow(0 10px 16px rgba(0, 34, 97, 0.26));
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.35;
}

.cta-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    gap: 22px;
    font-size: 14px;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .hero-banner-art {
    right: 50%;
    width: min(980px, 118%);
    transform: translateX(50%);
  }

  .proof-left {
    left: 24px;
  }

  .proof-right {
    right: 24px;
  }

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

  .scene-grid,
  .dual-grid {
    grid-template-columns: 1fr;
  }

  .scene-card {
    min-height: 0;
  }

  .scene-copy {
    min-height: 0;
  }

  .switch-badge {
    display: none;
  }

  .loop-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .loop-flow > i {
    width: 2px;
    height: 22px;
    justify-self: center;
  }

  .loop-flow > i::after {
    left: -4px;
    right: auto;
    top: auto;
    bottom: -1px;
    border-top: 8px solid var(--blue);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 0;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .metrics div {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .site-header {
    height: auto;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark img {
    width: 58px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    margin-top: 4px;
    font-size: 12px;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 10px;
  }

  .nav-actions .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 6px;
    scrollbar-width: none;
  }

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

  .nav-links a {
    padding: 8px 12px;
    border: 1px solid #dbe7fb;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
  }

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

  .hero {
    min-height: 0;
    padding: 34px 0 38px;
  }

  .hero-grid {
    gap: 30px;
  }

  .eyebrow {
    min-height: 36px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero h1 {
    margin: 22px 0 16px;
    font-size: clamp(36px, 7.6vw, 46px);
  }

  .hero-subtitle {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.75;
  }

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

  .btn-large {
    min-width: 0;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    font-size: 16px;
  }

  .capabilities {
    gap: 16px 24px;
    margin-top: 28px;
  }

  .hero-visual {
    min-height: 0;
    overflow: hidden;
    padding-bottom: 0;
  }

  .hero-visual::before {
    inset: -24px -16px;
  }

  .hero-banner-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 760px);
    max-width: 100%;
    margin: 0 auto;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
    clip-path: inset(1% 0 2% 0);
  }

  .hero-proof {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin-top: 12px;
  }

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

  .hero-banner-art {
    grid-column: 1 / -1;
  }

  .role-copy {
    width: 100%;
  }

  .role-card {
    display: grid;
    gap: 28px;
    padding: 32px;
    min-height: 0;
  }

  .role-copy p {
    margin-bottom: 24px;
  }

  .check-items {
    gap: 16px;
  }

  .role-phone {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(230px, 68vw);
    justify-self: center;
    transform: none;
  }

  .teacher-workspace-art {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 10;
  }

  .loop-flow {
    max-width: 560px;
  }

  .metrics {
    padding: 18px;
  }

  .metrics div {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
  }

  .cta-panel {
    grid-template-columns: 100px 1fr;
    padding: 18px 22px 0;
  }

  .cta-panel img {
    width: 105px;
  }

  .cta-actions {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    padding-bottom: 22px;
  }
}

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

  .nav-wrap {
    grid-template-columns: 1fr;
  }

  .brand strong {
    font-size: 21px;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    margin: 0 -14px;
    padding: 2px 14px 7px;
  }

  .nav-links a {
    padding: 7px 11px;
    font-size: 13px;
  }

  .hero {
    padding-top: 28px;
  }

  .eyebrow {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.32;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .btn {
    min-height: 44px;
  }

  .btn-large {
    min-height: 50px;
    font-size: 15px;
  }

  .section-title {
    display: block;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 25px;
    line-height: 1.35;
  }

  .section-title span {
    display: none;
  }

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

  .capabilities span {
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid #dbe7fb;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.68);
    white-space: normal;
  }

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

  .concern-card {
    min-height: 0;
    padding: 22px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-banner-art {
    width: 112%;
    max-width: none;
    margin-left: -6%;
    filter: drop-shadow(0 16px 24px rgba(12, 67, 142, 0.14));
  }

  .section {
    padding: 34px 0;
  }

  .scene-card {
    min-height: 0;
    padding: 20px;
    border-radius: 12px;
  }

  .scene-head {
    gap: 14px;
    margin-bottom: 18px;
  }

  .scene-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    font-size: 23px;
  }

  .scene-head h3 {
    font-size: 20px;
  }

  .scene-head p {
    font-size: 14px;
  }

  .image-preview img {
    transform: scale(1.02);
  }

  .role-card {
    padding: 22px;
    border-radius: 8px;
  }

  .role-copy h2 {
    font-size: 26px;
  }

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

  .check-items {
    font-size: 15px;
  }

  .teacher-workspace-art {
    border-radius: 12px;
  }

  /* 移动端：竖向时间轴样式 */
  .loop-flow {
    gap: 0;
    margin-bottom: 24px;
  }

  .flow-step {
    position: relative;
    min-height: 0;
    column-gap: 14px;
    padding: 16px 16px 16px 18px;
    border-color: #e2ecfb;
    border-radius: 14px;
    box-shadow:
      inset 3px 0 0 var(--blue),
      0 8px 20px rgba(12, 63, 142, 0.06);
  }

  .flow-step span {
    width: 46px;
    height: 46px;
    border: 0;
    color: var(--blue);
    background: linear-gradient(180deg, #eaf3ff, #d6e7ff);
    box-shadow:
      0 0 0 4px #fff,
      0 0 0 5px rgba(9, 102, 255, 0.18);
    font-size: 22px;
    z-index: 1;
  }

  .flow-step b {
    font-size: 17px;
    line-height: 1.3;
  }

  .flow-step small {
    font-size: 13px;
  }

  /* 连接线：对齐节点圆心（16 内边距 + 46/2 = 39px），在卡片间隙内贯穿 */
  .loop-flow > i {
    width: 2px;
    height: 22px;
    justify-self: start;
    margin-left: 40px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(9, 102, 255, 0.3), var(--blue));
  }

  .loop-flow > i::after {
    display: none;
  }

  .metrics {
    gap: 12px;
    padding: 12px;
    grid-template-columns: 1fr;
  }

  .metrics div {
    grid-template-columns: 42px 1fr;
    padding: 12px;
  }

  .metrics span {
    font-size: 28px;
  }

  .metrics b {
    font-size: 16px;
  }

  .cta-panel {
    display: block;
    padding: 22px;
    text-align: center;
  }

  .cta-panel img {
    width: 120px;
    margin: 0 auto 10px;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    padding-bottom: 0;
  }

  .cta-actions > .btn,
  .cta-actions .qr-hover,
  .cta-actions .qr-hover .btn {
    width: 100%;
  }

  .cta-actions .qr-hover {
    display: flex;
  }
}

.qr-hover {
  position: relative;
  z-index: 50;
  display: inline-flex;
  align-items: center;
}

.qr-hover:hover,
.qr-hover:focus-within {
  z-index: 1000;
}

.qr-hover .btn {
  cursor: default;
}

.qr-popover {
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 200px;
  padding: 14px 14px 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.qr-popover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  width: 12px;
  height: 12px;
  background: #fff;
  box-shadow: -2px 2px 6px rgba(15, 23, 42, 0.06);
  transform: translateY(-50%) rotate(45deg);
}

.qr-popover-left {
  left: auto;
  right: calc(100% + 14px);
  transform: translateY(-50%) translateX(6px);
}

.qr-popover-left::before {
  left: auto;
  right: -6px;
  box-shadow: 2px -2px 6px rgba(15, 23, 42, 0.06);
}

.qr-popover-bottom {
  top: calc(100% + 12px);
  left: auto;
  right: 0;
  transform: translateY(-6px);
}

.qr-popover-bottom::before {
  top: -6px;
  left: auto;
  right: 28px;
  box-shadow: -2px -2px 6px rgba(15, 23, 42, 0.06);
  transform: rotate(45deg);
}

.qr-popover img {
  display: block;
  width: 180px;
  height: 180px;
}

.qr-popover p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.qr-hover:hover .qr-popover,
.qr-hover:focus-within .qr-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.qr-hover:hover .qr-popover-bottom,
.qr-hover:focus-within .qr-popover-bottom {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .qr-popover,
  .qr-popover-left {
    top: calc(100% + 12px);
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-6px);
  }

  .qr-popover::before,
  .qr-popover-left::before {
    top: -6px;
    left: 50%;
    right: auto;
    box-shadow: -2px -2px 6px rgba(15, 23, 42, 0.06);
    transform: translateX(-50%) rotate(45deg);
  }

  .qr-hover:hover .qr-popover,
  .qr-hover:focus-within .qr-popover,
  .qr-hover:hover .qr-popover-left,
  .qr-hover:focus-within .qr-popover-left {
    transform: translateX(-50%) translateY(0);
  }
}
