:root {
  color-scheme: light;
  --paper: #f5f8fa;
  --surface: #ffffff;
  --surface-soft: #edf4f8;
  --surface-accent: #e0eef6;
  --surface-strong: #d2e5f0;
  --ink: #26343d;
  --muted: #60717b;
  --line: #d3dfe5;
  --line-strong: #b7cedb;
  --accent: #327ba4;
  --accent-dark: #205d7e;
  --accent-contrast: #f8fcff;
  --shadow: 0 24px 70px rgba(48, 80, 98, 0.12);
  --shadow-hover: 0 30px 84px rgba(48, 80, 98, 0.18);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --glass-line: rgba(255, 255, 255, 0.58);
  --ambient-one: rgba(83, 164, 205, 0.24);
  --ambient-two: rgba(139, 196, 220, 0.22);
  --ambient-three: rgba(96, 137, 178, 0.16);
  --radius-card: 18px;
  --radius-panel: 24px;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --site-header-height: 66px;
  --anchor-clearance: 0px;
  --anchor-offset: calc(var(--site-header-height) + var(--anchor-clearance));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

main,
.site-header,
.mobile-drawer,
.mobile-drawer-backdrop {
  position: relative;
  z-index: 1;
}

.ambient-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb,
.ambient-ring {
  position: absolute;
  display: block;
  will-change: transform;
}

.ambient-orb {
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.72;
}

.ambient-orb-one {
  top: -18vw;
  right: -12vw;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--ambient-one), transparent 68%);
}

.ambient-orb-two {
  top: 36%;
  left: -18vw;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--ambient-two), transparent 70%);
}

.ambient-orb-three {
  right: -14vw;
  bottom: -20vw;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--ambient-three), transparent 68%);
}

.ambient-ring {
  border: 1px solid rgba(50, 123, 164, 0.12);
  border-radius: 50%;
  opacity: 0.7;
}

.ambient-ring-one {
  top: 14%;
  right: 4%;
  width: min(32vw, 450px);
  aspect-ratio: 1;
}

.ambient-ring-two {
  left: 7%;
  bottom: 9%;
  width: min(22vw, 320px);
  aspect-ratio: 1;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 30;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: var(--accent-contrast);
  font-size: 13px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  height: var(--site-header-height);
  margin-inline: 0;
  border-bottom: 1px solid rgba(183, 206, 219, 0.34);
  background: rgba(245, 248, 250, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.site-header::before {
  content: none;
}

.header-inner {
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
}

.wordmark {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  width: clamp(116px, 12vw, 156px);
  height: auto;
}

.primary-nav,
.drawer-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.primary-nav {
  justify-self: center;
}

.primary-nav a,
.drawer-nav a,
.parent-entry,
.nav-cta,
.button,
.text-link,
.more-link {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease;
}

.primary-nav a:hover,
.drawer-nav a:hover,
.parent-entry:hover,
.text-link:hover,
.more-link:hover {
  color: var(--accent-dark);
}

.parent-entry {
  justify-self: end;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.nav-cta {
  justify-self: end;
  padding: 10px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: var(--surface-accent);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(183, 206, 219, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: rgba(21, 37, 46, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-drawer-backdrop[hidden],
.mobile-drawer[hidden] {
  display: none;
}

.mobile-drawer {
  position: fixed;
  top: calc(76px + env(safe-area-inset-top));
  right: 14px;
  z-index: 19;
  width: min(260px, calc(100vw - 28px));
}

.drawer-card {
  overflow: hidden;
  border: 1px solid rgba(183, 206, 219, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 56px rgba(38, 52, 61, 0.18);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.drawer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 760;
}

.drawer-close {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.drawer-nav {
  display: grid;
  gap: 0;
  padding: 4px 10px 10px;
}

.drawer-nav a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 10px;
  border-radius: 14px;
  color: var(--ink);
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  background: var(--surface-soft);
}

.drawer-nav strong {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.drawer-nav span {
  font-size: 14px;
  font-weight: 720;
}

.story-screen {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: calc(100dvh - var(--site-header-height));
  scroll-margin-top: var(--anchor-offset);
}

#top,
#evaluation,
#consult,
#hero-content,
#evaluation-content,
#consult-content,
#service,
#contact {
  scroll-margin-top: var(--anchor-offset);
}

.story-screen::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(50, 123, 164, 0.1);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.86) translate3d(0, 28px, 0);
  transition: opacity 1.1s ease, transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-screen.is-active::after {
  opacity: 0.7;
  transform: scale(1) translate3d(0, 0, 0);
}

.section-motion-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.motion-blob,
.motion-line {
  position: absolute;
  display: block;
  will-change: transform, opacity;
}

.motion-blob {
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.72), transparent 0 16%),
    radial-gradient(circle, rgba(143, 188, 230, 0.34), rgba(231, 164, 125, 0.12) 48%, transparent 70%);
  filter: blur(9px);
  opacity: 0;
}

.motion-blob-one {
  right: -9%;
  top: 9%;
}

.motion-blob-two {
  left: -10%;
  top: 18%;
}

.motion-line {
  width: min(46vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(50, 123, 164, 0.32), transparent);
  opacity: 0;
}

.motion-line-one {
  right: 5%;
  bottom: 18%;
  transform: rotate(-10deg);
}

.motion-line-two {
  left: 12%;
  bottom: 20%;
  transform: rotate(12deg);
}

.story-screen.is-active .motion-blob {
  opacity: 0.72;
}

.story-screen.is-active .motion-line {
  opacity: 1;
}

.first-screen::after {
  top: 9%;
  right: -8%;
}

.method-screen::after {
  left: -12%;
  bottom: 4%;
}

.trust-screen::after {
  top: 8%;
  right: -10%;
}

.first-screen {
  min-height: calc(100dvh - 66px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px) 0 26px;
}

.hero-layout {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.045em;
}

.hero-copy h1 {
  max-width: 590px;
  font-size: clamp(46px, 5.25vw, 70px);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.75;
}

.hero-actions,
.offer-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 740;
  white-space: nowrap;
}

.button-primary {
  background: var(--accent-dark);
  color: var(--accent-contrast);
  box-shadow: 0 12px 28px rgba(32, 93, 126, 0.2);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #174c68;
}

.button:active,
.nav-cta:active {
  transform: translateY(1px) scale(0.99);
}

.text-link,
.more-link {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(32, 93, 126, 0.28);
  text-underline-offset: 5px;
}

.fit-note {
  max-width: 500px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.assessment-map {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 90% 5%, rgba(50, 123, 164, 0.15), transparent 31%),
    linear-gradient(145deg, var(--glass-strong), var(--glass));
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  box-shadow:
    inset 0 1px 0 var(--glass-line),
    var(--shadow);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease, border-color 0.45s ease;
}

.assessment-map:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 123, 164, 0.42);
  box-shadow:
    inset 0 1px 0 var(--glass-line),
    var(--shadow-hover);
}

.assessment-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 74px;
  height: 3px;
  background: var(--accent);
}

.map-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.map-heading span,
.report-heading span,
.contact-copy > span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 760;
}

.map-heading strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(25px, 2.7vw, 35px);
  letter-spacing: -0.035em;
}

.map-heading small {
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.map-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  overflow: hidden;
}

.map-flow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.72;
  transform: translate3d(-120%, 0, 0);
}

.map-flow article {
  min-height: 160px;
  padding: 22px 18px;
  border-left: 1px solid var(--line-strong);
}

.map-flow article:first-child {
  border-left: 0;
}

.map-flow span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
}

.map-flow h2 {
  margin-top: 18px;
  font-size: 20px;
}

.map-flow p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.map-output {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 22px;
  padding-top: 22px;
}

.map-output > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.map-output small {
  color: var(--muted);
  font-size: 10px;
}

.map-output strong {
  font-size: 15px;
}

.map-output > p {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.service-glance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-glance div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  border-left: 1px solid var(--line);
}

.service-glance div:first-child {
  border-left: 0;
}

.service-glance strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 16px;
}

.service-glance span {
  color: var(--muted);
  font-size: 12px;
}

.method-screen {
  display: flex;
  align-items: center;
  padding: 46px 0;
  border-top: 1px solid rgba(183, 206, 219, 0.34);
  border-bottom: 1px solid rgba(183, 206, 219, 0.34);
  background: rgba(237, 244, 248, 0.7);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(44px, 6vw, 82px);
}

.section-heading h2 {
  max-width: 650px;
  font-size: clamp(36px, 4vw, 53px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 560px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.method-list {
  margin-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.method-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.28s ease, padding-left 0.28s ease;
}

.method-list article:hover {
  transform: translateX(5px);
  padding-left: 6px;
}

.method-index {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 760;
}

.method-list h3 {
  font-size: 17px;
}

.method-list p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.report-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-panel);
  background: linear-gradient(145deg, var(--glass-strong), var(--glass));
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  box-shadow:
    inset 0 1px 0 var(--glass-line),
    var(--shadow);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease, border-color 0.45s ease;
}

.report-panel::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -34%;
  width: 28%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0;
  transform: rotate(12deg) translate3d(-220%, 0, 0);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.report-panel:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 123, 164, 0.42);
  box-shadow:
    inset 0 1px 0 var(--glass-line),
    var(--shadow-hover);
}

.report-panel:hover::after,
.contact-card:hover::after {
  opacity: 0.68;
  transform: rotate(12deg) translate3d(620%, 0, 0);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.report-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}

.report-heading h2 {
  max-width: 450px;
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.report-heading > strong {
  align-self: end;
  min-width: 176px;
  padding-bottom: 3px;
  text-align: right;
  font-family: var(--mono);
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.report-heading small {
  margin-right: 4px;
  color: var(--muted);
  font-size: 16px;
}

.report-outline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 26px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.report-outline article {
  position: relative;
  overflow: hidden;
  min-height: 116px;
  padding: 18px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.report-outline article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(143, 188, 230, 0.14), transparent 38%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.report-outline article:hover::after {
  opacity: 1;
}

.report-outline span {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 760;
}

.report-outline p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.service-boundary {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface-soft);
  font-size: 12px;
  line-height: 1.65;
}

.service-boundary strong {
  color: var(--accent-dark);
}

.service-boundary p {
  color: var(--muted);
}

.offer-actions {
  margin-top: 20px;
}

.trust-screen {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 18px;
  background: rgba(245, 248, 250, 0.38);
}

.trust-layout {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 6vw, 78px);
  padding-bottom: 34px;
}

.compact-heading h2 {
  max-width: 720px;
  font-size: clamp(32px, 3.5vw, 46px);
}

.professional-basis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.professional-basis div {
  position: relative;
  overflow: hidden;
  padding: 17px 14px;
  border-left: 1px solid var(--line);
}

.professional-basis div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(143, 188, 230, 0.12), transparent);
  opacity: 0;
  transform: translateX(-100%);
}

.professional-basis div:first-child {
  border-left: 0;
}

.professional-basis strong,
.professional-basis span {
  display: block;
}

.professional-basis strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 17px;
}

.professional-basis span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.trust-list article {
  padding-left: 14px;
  border-left: 2px solid var(--line-strong);
}

.trust-list strong {
  font-size: 14px;
}

.trust-list p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.faq-list {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 620px;
  padding: 0 34px 12px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.4vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 100% 0%, rgba(50, 123, 164, 0.15), transparent 33%),
    linear-gradient(145deg, var(--glass-strong), var(--glass));
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  box-shadow:
    inset 0 1px 0 var(--glass-line),
    var(--shadow);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease, border-color 0.45s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 38px;
  width: 88px;
  height: 3px;
  background: var(--accent);
}

.contact-copy h2 {
  max-width: 500px;
  margin-top: 9px;
  font-size: clamp(29px, 3.35vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.contact-copy p {
  max-width: 440px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.qr-wrap {
  display: grid;
  grid-template-columns: 146px 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.wechat-qr {
  width: 146px;
  aspect-ratio: 1;
  border: 7px solid var(--surface);
  border-radius: 16px;
  background: var(--surface);
  object-fit: contain;
  box-shadow: 0 12px 30px rgba(48, 80, 98, 0.12);
}

.qr-wrap strong {
  font-size: 15px;
}

.qr-wrap p {
  max-width: 250px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.contact-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-status span {
  padding: 11px 8px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-align: center;
}

.contact-status span:first-child {
  border-left: 0;
}

html.has-js .reveal-item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html.has-js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.has-js .method-list .reveal-item:nth-child(2),
html.has-js .trust-list .reveal-item:nth-child(2) {
  transition-delay: 0.05s;
}

html.has-js .method-list .reveal-item:nth-child(3),
html.has-js .trust-list .reveal-item:nth-child(3) {
  transition-delay: 0.1s;
}

html.has-js .method-list .reveal-item:nth-child(4) {
  transition-delay: 0.15s;
}

@keyframes ambient-drift-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-7vw, 7vh, 0) scale(1.08);
  }
}

@keyframes ambient-drift-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(9vw, -6vh, 0) scale(1.12);
  }
}

@keyframes ambient-drift-three {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-6vw, -7vh, 0) scale(1.06);
  }
}

@keyframes ambient-ring-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.42;
  }
  50% {
    transform: translate3d(0, -24px, 0) scale(1.04);
    opacity: 0.76;
  }
}

@keyframes map-signal {
  0%,
  12% {
    transform: translate3d(-120%, 0, 0);
    opacity: 0;
  }
  22% {
    opacity: 0.72;
  }
  72% {
    opacity: 0.72;
  }
  84%,
  100% {
    transform: translate3d(420%, 0, 0);
    opacity: 0;
  }
}

@keyframes hero-enter-left {
  from {
    opacity: 0;
    transform: translate3d(-24px, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-enter-right {
  from {
    opacity: 0;
    transform: translate3d(24px, 20px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes glance-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .ambient-orb-one {
    animation: ambient-drift-one 18s ease-in-out infinite;
  }

  .ambient-orb-two {
    animation: ambient-drift-two 22s ease-in-out infinite;
  }

  .ambient-orb-three {
    animation: ambient-drift-three 20s ease-in-out infinite;
  }

  .ambient-ring-one {
    animation: ambient-ring-float 15s ease-in-out infinite;
  }

  .ambient-ring-two {
    animation: ambient-ring-float 18s ease-in-out 2s infinite reverse;
  }

  .map-flow::after {
    animation: map-signal 6.5s ease-in-out 1.1s infinite;
  }

  .hero-copy {
    animation: hero-enter-left 0.85s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  .assessment-map {
    animation: hero-enter-right 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.08s backwards;
  }

  .service-glance {
    animation: glance-enter 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.22s backwards;
  }
}

.compact-footer {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
}

.footer-row > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-row > div strong {
  color: var(--ink);
  font-size: 15px;
}

.footer-row nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
}

.footer-row > span {
  justify-self: end;
  text-align: right;
}

.mobile-booking {
  display: none;
}

/* Secondary information pages */
.subpage-body {
  background: var(--paper);
}

.subpage-header {
  border-bottom: 1px solid var(--line);
  background: rgba(245, 248, 250, 0.94);
}

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

.back-link {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.subpage-main {
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
  padding: 72px 0 90px;
}

.subpage-intro {
  max-width: 760px;
}

.subpage-intro h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.subpage-intro p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.draft-label {
  width: fit-content;
  margin: 0 0 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-accent);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 760;
}

.subpage-intro .draft-label {
  margin-top: 0;
  color: var(--accent-dark);
  line-height: 1.3;
}

.info-section {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.info-section h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -0.03em;
}

.info-section > p {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.info-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.info-grid h3 {
  font-size: 18px;
}

.info-grid p,
.info-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.info-grid p {
  margin-top: 9px;
}

.info-list {
  max-width: 760px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.info-list li + li {
  margin-top: 10px;
}

.notice-box,
.review-box {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.review-box {
  max-width: 920px;
  margin-top: 34px;
}

.review-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.subpage-faq {
  margin-top: 36px;
}

.subpage-faq details {
  border-bottom: 1px solid var(--line);
}

.subpage-faq summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 720;
  list-style: none;
}

.subpage-faq summary::-webkit-details-marker {
  display: none;
}

.subpage-faq summary span {
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
}

.subpage-faq details[open] summary span {
  transform: rotate(45deg);
}

.subpage-faq p {
  max-width: 760px;
  padding: 0 36px 22px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.subpage-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.subpage-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.subpage-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
}

@media (max-width: 980px) {
  .header-inner {
    width: min(calc(100% - 36px), 980px);
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
  }

  .header-inner > .primary-nav {
    display: flex;
    gap: 18px;
    font-size: 13px;
  }

  .brand-logo {
    width: clamp(104px, 12vw, 132px);
  }

  .parent-entry {
    font-size: 13px;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 12px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    gap: 32px;
  }

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

  .method-layout,
  .trust-layout {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .method-screen,
  .trust-screen {
    min-height: auto;
  }

  .trust-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .footer-row nav {
    grid-column: 1 / -1;
    justify-content: center;
    order: 3;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-inner > .primary-nav,
  .nav-cta {
    display: none;
  }

  .parent-entry {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }
}

@media (max-width: 720px) {
  :root {
    --site-header-height: calc(60px + env(safe-area-inset-top));
  }

  .ambient-orb {
    filter: blur(10px);
    opacity: 0.5;
  }

  .ambient-ring {
    display: none;
  }

  .story-screen::after {
    width: 78vw;
    opacity: 0;
  }

  .motion-line {
    display: none;
  }

  .motion-blob {
    width: 72vw;
    filter: blur(13px);
    opacity: 0.36;
  }

  .story-screen.is-active .motion-blob {
    opacity: 0.42;
  }

  .shell {
    width: min(calc(100% - 28px), 640px);
  }

  .site-header {
    height: calc(60px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    border-bottom-color: rgba(183, 206, 219, 0.52);
    background:
      linear-gradient(90deg, rgba(245, 248, 250, 0.97), rgba(238, 246, 250, 0.94)),
      var(--paper);
    box-shadow: 0 10px 28px rgba(48, 80, 98, 0.1);
  }

  .header-inner {
    width: 100%;
    height: 60px;
    align-items: center;
    gap: 10px;
    padding-inline: max(14px, env(safe-area-inset-left)) max(14px, env(safe-area-inset-right));
  }

  .wordmark {
    max-width: 138px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .brand-logo {
    width: 128px;
  }

  .story-screen {
    min-height: auto;
    scroll-margin-top: var(--anchor-offset);
  }

  #top,
  #evaluation,
  #consult,
  #hero-content,
  #evaluation-content,
  #consult-content,
  #service,
  #contact {
    scroll-margin-top: var(--anchor-offset);
  }

  .first-screen {
    min-height: calc(100dvh - 60px - env(safe-area-inset-top));
    padding: 24px 0 18px;
  }

  .hero-layout,
  .method-layout,
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy {
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 11px;
    font-size: 11px;
  }

  .hero-copy h1 {
    max-width: 540px;
    font-size: clamp(37px, 10.2vw, 48px);
    line-height: 1.1;
  }

  .hero-intro {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

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

  .button {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .text-link {
    font-size: 12px;
  }

  .fit-note {
    margin-top: 18px;
    padding-top: 13px;
    font-size: 11px;
  }

  .assessment-map {
    padding: 20px;
    border-radius: 20px;
  }

  .map-heading strong {
    font-size: 25px;
  }

  .map-heading small {
    font-size: 8px;
  }

  .map-flow {
    margin-top: 20px;
  }

  .map-flow article {
    min-height: 124px;
    padding: 15px 10px;
  }

  .map-flow span {
    font-size: 9px;
  }

  .map-flow h2 {
    margin-top: 12px;
    font-size: 14px;
  }

  .map-flow p {
    margin-top: 7px;
    font-size: 9px;
  }

  .map-output {
    gap: 12px;
    padding-top: 15px;
  }

  .map-output strong {
    font-size: 12px;
  }

  .map-output > p {
    font-size: 9px;
  }

  .service-glance {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
  }

  .service-glance div {
    justify-content: flex-start;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
  }

  .service-glance div:nth-child(3) {
    border-left: 0;
  }

  .service-glance div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .service-glance strong {
    font-size: 13px;
  }

  .service-glance span {
    font-size: 10px;
  }

  .method-screen {
    padding: 34px 0;
  }

  .section-heading h2,
  .compact-heading h2 {
    font-size: 30px;
    line-height: 1.22;
  }

  .section-heading > p {
    margin-top: 11px;
    font-size: 12px;
    line-height: 1.65;
  }

  .method-list {
    margin-top: 19px;
  }

  .method-list article {
    grid-template-columns: 38px 1fr;
    gap: 13px;
    padding: 12px 0;
  }

  .method-index {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 11px;
  }

  .method-list h3 {
    font-size: 14px;
  }

  .method-list p {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.55;
  }

  .report-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .report-heading {
    gap: 14px;
  }

  .report-heading h2 {
    font-size: 23px;
  }

  .report-heading > strong {
    min-width: auto;
    font-size: 38px;
  }

  .report-outline {
    margin-top: 18px;
  }

  .report-outline article {
    min-height: 104px;
    padding: 13px;
  }

  .report-outline span {
    font-size: 12px;
  }

  .report-outline p {
    font-size: 9px;
  }

  .service-boundary {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 13px;
    padding: 11px 12px;
    font-size: 9px;
  }

  .offer-actions {
    margin-top: 14px;
    gap: 13px;
  }

  .trust-screen {
    padding-top: 34px;
  }

  .trust-layout {
    padding-bottom: 26px;
  }

  .professional-basis {
    margin-top: 18px;
  }

  .professional-basis div {
    padding: 12px 8px;
  }

  .professional-basis strong {
    font-size: 13px;
  }

  .professional-basis span {
    font-size: 8px;
  }

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 17px;
  }

  .trust-list article {
    padding-left: 8px;
  }

  .trust-list strong {
    font-size: 11px;
  }

  .trust-list p {
    display: none;
  }

  .faq-list {
    margin-top: 14px;
  }

  .faq-list summary {
    min-height: 42px;
    font-size: 11px;
  }

  .faq-list details > p {
    padding-bottom: 11px;
    font-size: 10px;
  }

  .contact-card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .contact-copy h2 {
    font-size: 27px;
  }

  .contact-copy p {
    font-size: 10px;
  }

  .qr-wrap {
    grid-template-columns: 126px 1fr;
    gap: 14px;
    margin-top: 17px;
  }

  .wechat-qr {
    width: 126px;
    border-width: 5px;
    border-radius: 14px;
  }

  .qr-wrap strong {
    font-size: 12px;
  }

  .qr-wrap p {
    margin-top: 5px;
    font-size: 8px;
  }

.contact-status {
  margin-top: 16px;
}

.contact-status span {
  padding: 9px 4px;
  font-size: 8px;
}

.parent-card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(32, 93, 126, 0.25);
  text-underline-offset: 5px;
}

  .compact-footer {
    padding: 14px 0 76px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    gap: 7px;
    font-size: 9px;
    text-align: center;
  }

  .footer-row > div {
    justify-content: center;
  }

  .footer-row > span {
    justify-self: center;
    text-align: center;
  }

  .mobile-booking {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 20;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent-dark);
    color: var(--accent-contrast);
    font-size: 14px;
    font-weight: 740;
    box-shadow: 0 14px 34px rgba(32, 93, 126, 0.28);
  }

  .subpage-header .shell {
    min-height: 58px;
  }

  .subpage-main {
    width: min(calc(100% - 28px), 640px);
    padding: 44px 0 70px;
  }

  .subpage-intro h1 {
    font-size: 38px;
  }

  .subpage-intro p {
    margin-top: 14px;
    font-size: 14px;
  }

  .info-section {
    margin-top: 38px;
    padding-top: 24px;
  }

  .info-section h2 {
    font-size: 26px;
  }

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

  .subpage-faq summary {
    min-height: 60px;
    font-size: 15px;
  }

  .subpage-footer .shell {
    flex-direction: column;
    text-align: center;
  }

  .subpage-footer nav {
    max-width: 260px;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-actions,
  .offer-actions {
    gap: 10px;
  }

  .map-heading {
    gap: 12px;
  }

  .map-heading small {
    padding: 5px 7px;
  }

  .report-panel {
    padding: 18px;
  }

  .report-outline article {
    padding: 11px;
  }

  .qr-wrap {
    grid-template-columns: 112px 1fr;
  }

  .wechat-qr {
    width: 112px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .method-screen,
  .assessment-map,
  .report-panel,
  .contact-card,
  .service-glance {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header {
    background: var(--paper);
  }

  .method-screen {
    background: var(--surface-soft);
  }

  .assessment-map,
  .report-panel,
  .contact-card {
    background: var(--surface);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Homepage visual refresh */
.visual-hero {
  min-height: calc(100dvh - 66px);
  justify-content: flex-end;
  padding: 0 0 24px;
  background: #1f3039;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 48%;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 34, 42, 0.82) 0%, rgba(20, 34, 42, 0.58) 38%, rgba(20, 34, 42, 0.08) 78%),
    linear-gradient(0deg, rgba(245, 248, 250, 0.96) 0%, rgba(245, 248, 250, 0) 23%);
}

.visual-hero .hero-layout {
  min-height: clamp(470px, 68dvh, 690px);
  display: flex;
  align-items: center;
}

.visual-hero .hero-copy {
  max-width: 650px;
  color: #f8fcff;
}

.visual-hero .eyebrow,
.visual-hero .hero-intro,
.visual-hero .text-link {
  color: rgba(248, 252, 255, 0.88);
}

.visual-hero .hero-copy h1 {
  max-width: 620px;
  letter-spacing: -0.045em;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.visual-hero .hero-intro {
  max-width: 470px;
}

.visual-hero .button-primary {
  background: #f8fcff;
  color: #1d5c7e;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.visual-hero .button-primary:hover {
  background: #ffffff;
}

.visual-hero .text-link {
  text-decoration-color: rgba(248, 252, 255, 0.45);
}

.visual-hero .service-glance {
  position: relative;
  z-index: 1;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 54px rgba(34, 70, 88, 0.16);
}

.visual-hero .service-glance strong,
.report-panel,
.contact-card,
.contact-card h2,
.qr-wrap strong,
.contact-status span:first-child {
  color: #26343d;
}

.visual-hero .service-glance span,
.report-outline p,
.service-boundary p,
.contact-copy p,
.qr-wrap p,
.contact-status span {
  color: #60717b;
}

.report-heading span,
.report-outline span,
.service-boundary strong,
.contact-copy > span {
  color: #205d7e;
}

.visual-section {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.9), rgba(226, 240, 247, 0.72)),
    var(--surface-soft);
}

.visual-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.98fr) minmax(460px, 1.02fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.scene-panel {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.scene-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.habit-scene img {
  object-position: 44% 50%;
}

.learning-scene img {
  object-position: 56% 50%;
}

.scene-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(21, 37, 46, 0.58), rgba(21, 37, 46, 0));
  pointer-events: none;
}

.scene-panel figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  max-width: 520px;
  color: #ffffff;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 760;
  line-height: 1.28;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.report-panel {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(237, 246, 250, 0.78)),
    var(--surface);
}

.concise-outline article {
  min-height: 98px;
}

.concise-outline p {
  font-size: 13px;
}

.visual-close {
  background: #f6f9fb;
}

.visual-close .trust-layout {
  grid-template-columns: minmax(470px, 1.08fr) minmax(390px, 0.92fr);
}

.trust-stack {
  display: grid;
  gap: 18px;
}

.trust-stack .professional-basis {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-panel);
  overflow: hidden;
}

.compact-trust {
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}

.compact-trust article {
  padding: 0 0 0 14px;
}

.trust-stack .contact-card {
  padding: clamp(22px, 2.3vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 251, 0.9)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(48, 80, 98, 0.13);
}

.trust-stack .contact-copy h2 {
  font-size: clamp(27px, 2.7vw, 36px);
}

.trust-stack .qr-wrap {
  grid-template-columns: 122px 1fr;
  gap: 17px;
  margin-top: 18px;
}

.trust-stack .wechat-qr {
  width: 122px;
}

.trust-stack .contact-status {
  margin-top: 17px;
}

@media (prefers-reduced-motion: no-preference) {
  .visual-hero .hero-photo {
    animation: hero-photo-breathe 13s ease-in-out infinite alternate;
  }

  .story-screen.is-active .motion-blob-one {
    animation: section-blob-drift 14s ease-in-out infinite alternate;
  }

  .story-screen.is-active .motion-blob-two {
    animation: section-blob-drift-reverse 16s ease-in-out infinite alternate;
  }

  .story-screen.is-active .motion-line-one {
    animation: section-line-sweep 7.5s ease-in-out infinite;
  }

  .story-screen.is-active .motion-line-two {
    animation: section-line-sweep-reverse 8.5s ease-in-out infinite;
  }

  .story-screen.is-active .scene-panel {
    animation: panel-float 7.5s ease-in-out infinite alternate;
  }

  .story-screen.is-active .report-panel,
  .story-screen.is-active .contact-card {
    animation: card-breathe 8s ease-in-out infinite alternate;
  }

  .story-screen.is-active .report-outline article {
    animation: tile-rise 0.68s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .story-screen.is-active .report-outline article:nth-child(2) {
    animation-delay: 0.08s;
  }

  .story-screen.is-active .report-outline article:nth-child(3) {
    animation-delay: 0.16s;
  }

  .story-screen.is-active .report-outline article:nth-child(4) {
    animation-delay: 0.24s;
  }

  .story-screen.is-active .professional-basis div::after {
    animation: metric-shine 4.8s ease-in-out infinite;
  }

  .story-screen.is-active .professional-basis div:nth-child(2)::after {
    animation-delay: 0.45s;
  }

  .story-screen.is-active .professional-basis div:nth-child(3)::after {
    animation-delay: 0.9s;
  }

  .scene-panel:hover img {
    transform: scale(1.025);
  }

  .scene-panel.reveal-item.is-visible {
    transition-duration: 0.7s;
  }
}

@keyframes hero-photo-breathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

@keyframes section-blob-drift {
  from {
    transform: translate3d(0, 0, 0) scale(0.96);
  }
  to {
    transform: translate3d(-7vw, 5vh, 0) scale(1.08);
  }
}

@keyframes section-blob-drift-reverse {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(8vw, -4vh, 0) scale(1.06);
  }
}

@keyframes section-line-sweep {
  0%,
  100% {
    transform: translateX(-12%) rotate(-10deg);
    opacity: 0.3;
  }
  50% {
    transform: translateX(18%) rotate(-10deg);
    opacity: 1;
  }
}

@keyframes section-line-sweep-reverse {
  0%,
  100% {
    transform: translateX(12%) rotate(12deg);
    opacity: 0.28;
  }
  50% {
    transform: translateX(-18%) rotate(12deg);
    opacity: 0.86;
  }
}

@keyframes panel-float {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes card-breathe {
  from {
    box-shadow:
      inset 0 1px 0 var(--glass-line),
      0 18px 44px rgba(48, 80, 98, 0.13);
  }
  to {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      0 28px 66px rgba(48, 80, 98, 0.19);
  }
}

@keyframes tile-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes metric-shine {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-100%);
  }
  76% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@media (max-width: 980px) {
  .visual-hero .hero-layout {
    display: flex;
    min-height: clamp(430px, 64dvh, 620px);
  }

  .visual-layout,
  .visual-close .trust-layout {
    grid-template-columns: 1fr;
  }

  .scene-panel img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .trust-stack {
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .visual-hero {
    min-height: calc(100dvh - 60px - env(safe-area-inset-top));
    padding: 0 0 14px;
  }

  .hero-photo {
    object-position: 28% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20, 34, 42, 0.78), rgba(20, 34, 42, 0.34)),
      linear-gradient(0deg, rgba(245, 248, 250, 0.96) 0%, rgba(245, 248, 250, 0) 24%);
  }

  .visual-hero .hero-layout {
    min-height: 62dvh;
    align-items: center;
    padding-bottom: 20px;
  }

  .visual-hero .hero-copy h1 {
    max-width: 7em;
    font-size: clamp(42px, 12vw, 54px);
    letter-spacing: 0;
  }

  .visual-hero .hero-intro {
    max-width: 290px;
  }

  .visual-hero .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .visual-hero .service-glance {
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
    margin-bottom: 0;
  }

  .visual-hero .service-glance div {
    min-height: 58px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    padding: 10px 13px;
  }

  .visual-hero .service-glance div:nth-child(odd) {
    border-left: 0;
  }

  .visual-hero .service-glance div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .visual-hero .service-glance strong {
    font-size: 14px;
  }

  .visual-hero .service-glance span {
    font-size: 10px;
  }

  .method-screen {
    padding: 28px 0;
  }

  .visual-layout {
    gap: 18px;
  }

  .scene-panel {
    border-radius: 18px;
  }

  .scene-panel img {
    aspect-ratio: 4 / 3;
  }

  .habit-scene img {
    object-position: 37% 50%;
  }

  .learning-scene img {
    object-position: 58% 50%;
  }

  .scene-panel figcaption {
    left: 18px;
    right: 18px;
    bottom: 16px;
    font-size: 20px;
  }

  .report-heading h2,
  .contact-copy h2 {
    font-size: 26px;
    letter-spacing: -0.02em;
  }

  .report-heading > strong {
    min-width: auto;
    font-size: 40px;
  }

  .concise-outline {
    grid-template-columns: 1fr 1fr;
  }

  .concise-outline article {
    min-height: 88px;
    padding: 13px;
  }

  .concise-outline p {
    font-size: 10px;
  }

  .visual-close {
    padding-top: 28px;
  }

  .visual-close .trust-layout {
    gap: 18px;
  }

  .trust-stack .professional-basis {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .compact-trust {
    grid-template-columns: 1fr 1fr;
  }

  .compact-trust p {
    display: block;
    font-size: 10px;
  }

  .qr-wrap {
    grid-template-columns: 112px 1fr;
  }

  .trust-stack .qr-wrap {
    grid-template-columns: 112px 1fr;
  }

  .trust-stack .wechat-qr {
    width: 112px;
  }

  .mobile-booking {
    display: none;
  }
}

@media (max-width: 390px) {
  .visual-hero .hero-copy h1 {
    font-size: 38px;
  }

  .concise-outline,
  .compact-trust {
    grid-template-columns: 1fr;
  }

  .trust-stack .professional-basis {
    grid-template-columns: 1fr;
  }
}

/* Parent portal */
.auth-body {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 14% 12%, rgba(139, 196, 220, 0.28), transparent 30%),
    linear-gradient(135deg, #f7fbfd 0%, #eaf2f8 52%, #f7fbfd 100%);
}

.auth-header {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 48px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-inline: auto;
}

.auth-main,
.dashboard-main {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 48px));
  min-height: calc(100dvh - 76px);
  display: grid;
  align-items: center;
  gap: 42px;
  margin-inline: auto;
  padding: 48px 0 72px;
}

.auth-main {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
}

.auth-hero span,
.dashboard-welcome span,
.auth-card-heading p,
.dashboard-card span {
  color: var(--accent-dark);
  font-weight: 780;
}

.auth-hero h1,
.dashboard-welcome h1 {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.auth-hero p,
.dashboard-welcome p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.auth-card,
.dashboard-card,
.dashboard-note {
  border: 1px solid rgba(183, 206, 219, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.auth-card {
  padding: 34px;
}

.auth-card-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.auth-card-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.auth-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.auth-input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(183, 206, 219, 0.88);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(50, 123, 164, 0.14);
}

.auth-error {
  margin: -4px 0 0;
  color: #9d342e;
  font-size: 13px;
  line-height: 1.5;
}

.auth-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.auth-secondary-actions {
  display: grid;
  gap: 12px;
}

.button-secondary,
.wechat-login,
.code-button {
  border: 1px solid rgba(183, 206, 219, 0.88);
  background: rgba(255, 255, 255, 0.64);
  color: var(--accent-dark);
}

.button-secondary:hover,
.wechat-login:hover,
.code-button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: var(--surface-accent);
}

.wechat-login {
  min-height: 56px;
  display: grid;
  place-items: center;
  gap: 2px;
  border-radius: 18px;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
}

.wechat-login small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
}

.wechat-login-wide {
  width: 100%;
  margin-top: 24px;
}

.code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.code-button {
  min-width: 112px;
  border-radius: 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}

.code-button:disabled {
  cursor: default;
  opacity: 0.72;
}

.auth-notice {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(224, 238, 246, 0.58);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.logout-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dashboard-main {
  display: block;
}

.dashboard-welcome {
  padding-top: 34px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.dashboard-card {
  min-height: 220px;
  padding: 26px;
}

.dashboard-card h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

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

.dashboard-note {
  margin-top: 18px;
  padding: 22px 26px;
}

.dashboard-note strong {
  color: var(--accent-dark);
}

.dashboard-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1fr);
  gap: 28px;
  margin-top: 18px;
  padding: 26px;
  border: 1px solid rgba(183, 206, 219, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.dashboard-profile span {
  color: var(--accent-dark);
  font-weight: 780;
}

.dashboard-profile h2 {
  margin: 10px 0 0;
  font-size: 30px;
  letter-spacing: -0.035em;
}

.dashboard-profile p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.dashboard-profile-form {
  margin-top: 0;
}

.dashboard-profile-wide {
  grid-column: 1 / -1;
}

.dashboard-profile textarea.auth-input {
  min-height: 110px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.65;
}

.parent-card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(32, 93, 126, 0.25);
  text-underline-offset: 5px;
}

@media (max-width: 980px) {
  .auth-main {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .auth-hero h1,
  .dashboard-welcome h1 {
    max-width: 720px;
  }

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

@media (max-width: 720px) {
  .parent-entry {
    display: none;
  }

  .auth-header,
  .auth-main,
  .dashboard-main {
    width: min(calc(100% - 28px), 640px);
  }

  .auth-header {
    min-height: calc(64px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
  }

  .auth-main,
  .dashboard-main {
    min-height: calc(100dvh - 64px - env(safe-area-inset-top));
    padding: 24px 0 42px;
  }

  .auth-hero h1,
  .dashboard-welcome h1 {
    font-size: clamp(34px, 11vw, 46px);
    letter-spacing: -0.035em;
  }

  .auth-hero p,
  .dashboard-welcome p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.7;
  }

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

  .auth-card-heading h2 {
    font-size: 24px;
  }

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

  .code-button {
    min-height: 44px;
  }

  .dashboard-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .dashboard-profile {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 22px;
  }

  .dashboard-card h2 {
    font-size: 23px;
  }
}
